From da32c22f0c74ee8c242eec4ff3a3933ec85e4392 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 16 Feb 2016 13:17:50 +0800 Subject: [PATCH 01/15] Added initial cut at Python 3.5.1 support. --- LICENSE | 2 +- Makefile | 8 +- patch/Python/Python.patch | 16504 ++++++++++++++-------------------- patch/Python/Setup.embedded | 1 - 4 files changed, 6553 insertions(+), 9962 deletions(-) diff --git a/LICENSE b/LICENSE index be2bd37..7c54523 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 Russell Keith-Magee. +Copyright (c) 2014-2016 Russell Keith-Magee. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index a230537..7a4d8cb 100644 --- a/Makefile +++ b/Makefile @@ -15,14 +15,14 @@ # Current director PROJECT_DIR=$(shell pwd) -BUILD_NUMBER=4 +BUILD_NUMBER=1 # Version of packages that will be compiled by this meta-package -PYTHON_VERSION=3.4.2 +PYTHON_VERSION=3.5.1 PYTHON_VER= $(basename $(PYTHON_VERSION)) OPENSSL_VERSION_NUMBER=1.0.2 -OPENSSL_REVISION=e +OPENSSL_REVISION=f OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION) # Supported OS @@ -175,6 +175,8 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST # Apply target Python patches cd $$(PYTHON_DIR-$1) && patch -p1 <$(PROJECT_DIR)/patch/Python/Python.patch cp -f $(PROJECT_DIR)/patch/Python/Setup.embedded $$(PYTHON_DIR-$1)/Modules/Setup.embedded + # Copy in the host _freeze_importlib + cp $(PYTHON_DIR-host)/Programs/_freeze_importlib $$(PYTHON_DIR-$1)/iOS/_freeze_importlib # Configure target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) ./configure \ CC="$$(CC-$1)" LD="$$(CC-$1)" \ diff --git a/patch/Python/Python.patch b/patch/Python/Python.patch index d114418..12efa62 100644 --- a/patch/Python/Python.patch +++ b/patch/Python/Python.patch @@ -1,6 +1,6 @@ diff -Nru orig/Include/datetime.h modified/Include/datetime.h ---- orig/Include/datetime.h 2015-02-03 19:49:02.000000000 +0800 -+++ modified/Include/datetime.h 2015-04-27 13:51:52.000000000 +0800 +--- orig/Include/datetime.h 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Include/datetime.h 2016-02-14 10:29:10.000000000 +0800 @@ -166,6 +166,11 @@ #define PyDateTime_CAPSULE_NAME "datetime.datetime_CAPI" @@ -27,8 +27,8 @@ diff -Nru orig/Include/datetime.h modified/Include/datetime.h #define PyDate_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->DateType) #define PyDate_CheckExact(op) (Py_TYPE(op) == PyDateTimeAPI->DateType) diff -Nru orig/Lib/ctypes/test/test_as_parameter.py modified/Lib/ctypes/test/test_as_parameter.py ---- orig/Lib/ctypes/test/test_as_parameter.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_as_parameter.py 2015-06-28 21:35:59.000000000 +0800 +--- orig/Lib/ctypes/test/test_as_parameter.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_as_parameter.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,9 +1,11 @@ +import os import unittest @@ -51,8 +51,8 @@ diff -Nru orig/Lib/ctypes/test/test_as_parameter.py modified/Lib/ctypes/test/tes def wrap(self, param): return param diff -Nru orig/Lib/ctypes/test/test_bitfields.py modified/Lib/ctypes/test/test_bitfields.py ---- orig/Lib/ctypes/test/test_bitfields.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_bitfields.py 2015-06-28 21:36:06.000000000 +0800 +--- orig/Lib/ctypes/test/test_bitfields.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_bitfields.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,11 +1,12 @@ from ctypes import * from ctypes.test import need_symbol @@ -77,8 +77,8 @@ diff -Nru orig/Lib/ctypes/test/test_bitfields.py modified/Lib/ctypes/test/test_b ##for n in "ABCDEFGHIMNOPQRS": diff -Nru orig/Lib/ctypes/test/test_buffers.py modified/Lib/ctypes/test/test_buffers.py ---- orig/Lib/ctypes/test/test_buffers.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_buffers.py 2015-04-27 21:02:18.000000000 +0800 +--- orig/Lib/ctypes/test/test_buffers.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_buffers.py 2016-02-14 10:29:10.000000000 +0800 @@ -2,6 +2,7 @@ from ctypes.test import need_symbol import unittest @@ -88,8 +88,8 @@ diff -Nru orig/Lib/ctypes/test/test_buffers.py modified/Lib/ctypes/test/test_buf def test_buffer(self): diff -Nru orig/Lib/ctypes/test/test_callbacks.py modified/Lib/ctypes/test/test_callbacks.py ---- orig/Lib/ctypes/test/test_callbacks.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_callbacks.py 2015-06-28 21:36:18.000000000 +0800 +--- orig/Lib/ctypes/test/test_callbacks.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_callbacks.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,8 +1,10 @@ +import os import unittest @@ -129,8 +129,8 @@ diff -Nru orig/Lib/ctypes/test/test_callbacks.py modified/Lib/ctypes/test/test_c c_double, c_double) # All this function does is call the callback with its args squared diff -Nru orig/Lib/ctypes/test/test_cfuncs.py modified/Lib/ctypes/test/test_cfuncs.py ---- orig/Lib/ctypes/test/test_cfuncs.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_cfuncs.py 2015-06-28 21:36:25.000000000 +0800 +--- orig/Lib/ctypes/test/test_cfuncs.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_cfuncs.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,17 +1,20 @@ # A lot of failures in these tests on Mac OS X. # Byte order related? @@ -163,8 +163,8 @@ diff -Nru orig/Lib/ctypes/test/test_cfuncs.py modified/Lib/ctypes/test/test_cfun if __name__ == '__main__': unittest.main() diff -Nru orig/Lib/ctypes/test/test_checkretval.py modified/Lib/ctypes/test/test_checkretval.py ---- orig/Lib/ctypes/test/test_checkretval.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_checkretval.py 2015-06-28 21:36:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_checkretval.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_checkretval.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,8 +1,10 @@ +import os import unittest @@ -186,8 +186,8 @@ diff -Nru orig/Lib/ctypes/test/test_checkretval.py modified/Lib/ctypes/test/test dll._testfunc_p_p.restype = CHECKED diff -Nru orig/Lib/ctypes/test/test_funcptr.py modified/Lib/ctypes/test/test_funcptr.py ---- orig/Lib/ctypes/test/test_funcptr.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_funcptr.py 2015-06-28 21:36:31.000000000 +0800 +--- orig/Lib/ctypes/test/test_funcptr.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_funcptr.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,4 +1,5 @@ -import os, unittest +import os @@ -208,8 +208,8 @@ diff -Nru orig/Lib/ctypes/test/test_funcptr.py modified/Lib/ctypes/test/test_fun class CFuncPtrTestCase(unittest.TestCase): def test_basic(self): diff -Nru orig/Lib/ctypes/test/test_functions.py modified/Lib/ctypes/test/test_functions.py ---- orig/Lib/ctypes/test/test_functions.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_functions.py 2015-06-28 21:36:38.000000000 +0800 +--- orig/Lib/ctypes/test/test_functions.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_functions.py 2016-02-14 10:29:10.000000000 +0800 @@ -7,7 +7,9 @@ from ctypes import * @@ -246,8 +246,8 @@ diff -Nru orig/Lib/ctypes/test/test_functions.py modified/Lib/ctypes/test/test_f def test_mro(self): diff -Nru orig/Lib/ctypes/test/test_libc.py modified/Lib/ctypes/test/test_libc.py ---- orig/Lib/ctypes/test/test_libc.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_libc.py 2015-06-28 21:36:41.000000000 +0800 +--- orig/Lib/ctypes/test/test_libc.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_libc.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,14 +1,18 @@ +import os import unittest @@ -269,8 +269,8 @@ diff -Nru orig/Lib/ctypes/test/test_libc.py modified/Lib/ctypes/test/test_libc.p def test_sqrt(self): lib.my_sqrt.argtypes = c_double, diff -Nru orig/Lib/ctypes/test/test_parameters.py modified/Lib/ctypes/test/test_parameters.py ---- orig/Lib/ctypes/test/test_parameters.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_parameters.py 2015-06-28 21:36:45.000000000 +0800 +--- orig/Lib/ctypes/test/test_parameters.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_parameters.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,6 +1,9 @@ -import unittest, sys +import os @@ -292,8 +292,8 @@ diff -Nru orig/Lib/ctypes/test/test_parameters.py modified/Lib/ctypes/test/test_ # TypeError: has no from_param method self.assertRaises(TypeError, setattr, func, "argtypes", (object,)) diff -Nru orig/Lib/ctypes/test/test_pickling.py modified/Lib/ctypes/test/test_pickling.py ---- orig/Lib/ctypes/test/test_pickling.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_pickling.py 2015-06-28 21:36:49.000000000 +0800 +--- orig/Lib/ctypes/test/test_pickling.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_pickling.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,8 +1,11 @@ -import unittest import pickle @@ -309,8 +309,8 @@ diff -Nru orig/Lib/ctypes/test/test_pickling.py modified/Lib/ctypes/test/test_pi class X(Structure): _fields_ = [("a", c_int), ("b", c_double)] diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_pointers.py ---- orig/Lib/ctypes/test/test_pointers.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_pointers.py 2015-06-28 21:38:12.000000000 +0800 +--- orig/Lib/ctypes/test/test_pointers.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_pointers.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,4 +1,6 @@ -import unittest, sys +import os @@ -334,9 +334,9 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po - dll = CDLL(_ctypes_test.__file__) + dll = CDLL(getattr(_ctypes_test, '__file__', os.environ['TEST_EXECUTABLE'])) func = dll._testfunc_p_p - func.restype = c_long - -@@ -35,7 +38,7 @@ + if sizeof(c_longlong) == sizeof(c_void_p): + func.restype = c_longlong +@@ -38,7 +41,7 @@ self.assertEqual(res[0], 12345678) def test_change_pointers(self): @@ -345,7 +345,7 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po func = dll._testfunc_p_p i = c_int(87654) -@@ -70,7 +73,7 @@ +@@ -73,7 +76,7 @@ return 0 callback = PROTOTYPE(func) @@ -354,7 +354,7 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po # This function expects a function pointer, # and calls this with an integer pointer as parameter. # The int pointer points to a table containing the numbers 1..10 -@@ -135,7 +138,7 @@ +@@ -138,7 +141,7 @@ def test_charpp(self): """Test that a character pointer-to-pointer is correctly passed""" @@ -364,8 +364,8 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po func.restype = c_char_p argv = (c_char_p * 2)() diff -Nru orig/Lib/ctypes/test/test_prototypes.py modified/Lib/ctypes/test/test_prototypes.py ---- orig/Lib/ctypes/test/test_prototypes.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_prototypes.py 2015-06-28 21:37:34.000000000 +0800 +--- orig/Lib/ctypes/test/test_prototypes.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_prototypes.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,6 +1,7 @@ +import os +import unittest @@ -387,8 +387,8 @@ diff -Nru orig/Lib/ctypes/test/test_prototypes.py modified/Lib/ctypes/test/test_ # Return machine address `a` as a (possibly long) non-negative integer. # Starting with Python 2.5, id(anything) is always non-negative, and diff -Nru orig/Lib/ctypes/test/test_refcounts.py modified/Lib/ctypes/test/test_refcounts.py ---- orig/Lib/ctypes/test/test_refcounts.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_refcounts.py 2015-06-28 21:37:38.000000000 +0800 +--- orig/Lib/ctypes/test/test_refcounts.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_refcounts.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,13 +1,17 @@ -import unittest -from test import support @@ -411,8 +411,8 @@ diff -Nru orig/Lib/ctypes/test/test_refcounts.py modified/Lib/ctypes/test/test_r class RefcountTestCase(unittest.TestCase): diff -Nru orig/Lib/ctypes/test/test_returnfuncptrs.py modified/Lib/ctypes/test/test_returnfuncptrs.py ---- orig/Lib/ctypes/test/test_returnfuncptrs.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_returnfuncptrs.py 2015-06-28 21:37:45.000000000 +0800 +--- orig/Lib/ctypes/test/test_returnfuncptrs.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_returnfuncptrs.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,15 +1,16 @@ +import os import unittest @@ -467,8 +467,8 @@ diff -Nru orig/Lib/ctypes/test/test_returnfuncptrs.py modified/Lib/ctypes/test/t self.assertEqual(strchr(b"abcdef", b"x"), None) self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0) diff -Nru orig/Lib/ctypes/test/test_slicing.py modified/Lib/ctypes/test/test_slicing.py ---- orig/Lib/ctypes/test/test_slicing.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_slicing.py 2015-06-28 21:37:52.000000000 +0800 +--- orig/Lib/ctypes/test/test_slicing.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_slicing.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,3 +1,4 @@ +import os import unittest @@ -502,8 +502,8 @@ diff -Nru orig/Lib/ctypes/test/test_slicing.py modified/Lib/ctypes/test/test_sli dll.my_wcsdup.argtypes = POINTER(c_wchar), dll.my_free.restype = None diff -Nru orig/Lib/ctypes/test/test_stringptr.py modified/Lib/ctypes/test/test_stringptr.py ---- orig/Lib/ctypes/test/test_stringptr.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_stringptr.py 2015-06-28 21:37:55.000000000 +0800 +--- orig/Lib/ctypes/test/test_stringptr.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_stringptr.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,10 +1,12 @@ +import os import unittest @@ -519,8 +519,8 @@ diff -Nru orig/Lib/ctypes/test/test_stringptr.py modified/Lib/ctypes/test/test_s class StringPtrTestCase(unittest.TestCase): diff -Nru orig/Lib/ctypes/test/test_unicode.py modified/Lib/ctypes/test/test_unicode.py ---- orig/Lib/ctypes/test/test_unicode.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_unicode.py 2015-06-28 21:37:59.000000000 +0800 +--- orig/Lib/ctypes/test/test_unicode.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_unicode.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,13 +1,15 @@ +import os import unittest @@ -548,8 +548,8 @@ diff -Nru orig/Lib/ctypes/test/test_unicode.py modified/Lib/ctypes/test/test_uni class StringTestCase(UnicodeTestCase): def setUp(self): diff -Nru orig/Lib/ctypes/test/test_values.py modified/Lib/ctypes/test/test_values.py ---- orig/Lib/ctypes/test/test_values.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_values.py 2015-06-28 21:38:03.000000000 +0800 +--- orig/Lib/ctypes/test/test_values.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_values.py 2016-02-14 10:29:10.000000000 +0800 @@ -2,18 +2,20 @@ A testcase which accesses *values* in a dll. """ @@ -586,8 +586,8 @@ diff -Nru orig/Lib/ctypes/test/test_values.py modified/Lib/ctypes/test/test_valu class Win_ValuesTestCase(unittest.TestCase): """This test only works when python itself is a dll/shared library""" diff -Nru orig/Lib/ctypes/test/test_win32.py modified/Lib/ctypes/test/test_win32.py ---- orig/Lib/ctypes/test/test_win32.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/test/test_win32.py 2015-06-28 21:38:08.000000000 +0800 +--- orig/Lib/ctypes/test/test_win32.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/test/test_win32.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,7 +1,9 @@ # Windows specific tests @@ -606,12 +606,12 @@ diff -Nru orig/Lib/ctypes/test/test_win32.py modified/Lib/ctypes/test/test_win32 - dll = CDLL(_ctypes_test.__file__) + dll = CDLL(getattr(_ctypes_test, '__file__', os.environ['TEST_EXECUTABLE'])) - pt = POINT(10, 10) - rect = RECT(0, 0, 20, 20) + pt = POINT(15, 25) + left = c_long.in_dll(dll, 'left') diff -Nru orig/Lib/ctypes/util.py modified/Lib/ctypes/util.py ---- orig/Lib/ctypes/util.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/ctypes/util.py 2015-02-28 19:22:12.000000000 +0800 -@@ -70,7 +70,7 @@ +--- orig/Lib/ctypes/util.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/ctypes/util.py 2016-02-14 10:29:10.000000000 +0800 +@@ -76,7 +76,7 @@ def find_library(name): return name @@ -621,17 +621,17 @@ diff -Nru orig/Lib/ctypes/util.py modified/Lib/ctypes/util.py def find_library(name): possible = ['lib%s.dylib' % name, diff -Nru orig/Lib/distutils/tests/test_build_ext.py modified/Lib/distutils/tests/test_build_ext.py ---- orig/Lib/distutils/tests/test_build_ext.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_ext.py 2015-05-03 00:00:04.000000000 +0800 -@@ -37,6 +37,7 @@ - from distutils.command import build_ext - build_ext.USER_BASE = site.USER_BASE +--- orig/Lib/distutils/tests/test_build_ext.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_ext.py 2016-02-14 10:29:10.000000000 +0800 +@@ -40,6 +40,7 @@ + def build_ext(self, *args, **kwargs): + return build_ext(*args, **kwargs) + @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_build_ext(self): global ALREADY_TESTED copy_xxmodule_c(self.tmp_dir) -@@ -285,6 +286,7 @@ +@@ -288,6 +289,7 @@ cmd.run() self.assertEqual(cmd.compiler, 'unix') @@ -640,8 +640,8 @@ diff -Nru orig/Lib/distutils/tests/test_build_ext.py modified/Lib/distutils/test tmp_dir = self.mkdtemp() c_file = os.path.join(tmp_dir, 'foo.c') diff -Nru orig/Lib/distutils/tests/test_build_py.py modified/Lib/distutils/tests/test_build_py.py ---- orig/Lib/distutils/tests/test_build_py.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_py.py 2015-05-03 00:00:35.000000000 +0800 +--- orig/Lib/distutils/tests/test_build_py.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_py.py 2016-02-14 10:29:10.000000000 +0800 @@ -106,6 +106,7 @@ ['boiledeggs.%s.pyc' % sys.implementation.cache_tag]) @@ -651,8 +651,8 @@ diff -Nru orig/Lib/distutils/tests/test_build_py.py modified/Lib/distutils/tests project_dir, dist = self.create_dist(py_modules=['boiledeggs']) os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_config_cmd.py modified/Lib/distutils/tests/test_config_cmd.py ---- orig/Lib/distutils/tests/test_config_cmd.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_config_cmd.py 2015-05-03 00:01:43.000000000 +0800 +--- orig/Lib/distutils/tests/test_config_cmd.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_config_cmd.py 2016-02-14 10:29:10.000000000 +0800 @@ -38,6 +38,7 @@ self.assertEqual(len(self._logs), numlines+1) @@ -662,8 +662,8 @@ diff -Nru orig/Lib/distutils/tests/test_config_cmd.py modified/Lib/distutils/tes pkg_dir, dist = self.create_dist() cmd = config(dist) diff -Nru orig/Lib/distutils/tests/test_cygwinccompiler.py modified/Lib/distutils/tests/test_cygwinccompiler.py ---- orig/Lib/distutils/tests/test_cygwinccompiler.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_cygwinccompiler.py 2015-04-30 08:21:03.000000000 +0800 +--- orig/Lib/distutils/tests/test_cygwinccompiler.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_cygwinccompiler.py 2016-02-14 10:29:10.000000000 +0800 @@ -3,16 +3,19 @@ import sys import os @@ -708,9 +708,9 @@ diff -Nru orig/Lib/distutils/tests/test_cygwinccompiler.py modified/Lib/distutil self.assertEqual(get_msvcr(), None) diff -Nru orig/Lib/distutils/tests/test_install.py modified/Lib/distutils/tests/test_install.py ---- orig/Lib/distutils/tests/test_install.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install.py 2015-05-02 23:58:59.000000000 +0800 -@@ -197,6 +197,7 @@ +--- orig/Lib/distutils/tests/test_install.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install.py 2016-02-14 10:29:10.000000000 +0800 +@@ -195,6 +195,7 @@ 'UNKNOWN-0.0.0-py%s.%s.egg-info' % sys.version_info[:2]] self.assertEqual(found, expected) @@ -719,8 +719,8 @@ diff -Nru orig/Lib/distutils/tests/test_install.py modified/Lib/distutils/tests/ install_dir = self.mkdtemp() project_dir, dist = self.create_dist(ext_modules=[ diff -Nru orig/Lib/distutils/tests/test_install_lib.py modified/Lib/distutils/tests/test_install_lib.py ---- orig/Lib/distutils/tests/test_install_lib.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install_lib.py 2015-05-03 00:02:08.000000000 +0800 +--- orig/Lib/distutils/tests/test_install_lib.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install_lib.py 2016-02-14 10:29:10.000000000 +0800 @@ -35,6 +35,7 @@ self.assertEqual(cmd.optimize, 2) @@ -730,8 +730,8 @@ diff -Nru orig/Lib/distutils/tests/test_install_lib.py modified/Lib/distutils/te project_dir, dist = self.create_dist() os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/test_spawn.py ---- orig/Lib/distutils/tests/test_spawn.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_spawn.py 2015-05-03 00:03:50.000000000 +0800 +--- orig/Lib/distutils/tests/test_spawn.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_spawn.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,14 +1,14 @@ """Tests for distutils.spawn.""" import unittest @@ -770,8 +770,8 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te return unittest.makeSuite(SpawnTestCase) diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/tests/test_sysconfig.py ---- orig/Lib/distutils/tests/test_sysconfig.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_sysconfig.py 2015-05-04 14:42:47.000000000 +0800 +--- orig/Lib/distutils/tests/test_sysconfig.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-14 10:29:10.000000000 +0800 @@ -11,6 +11,7 @@ from distutils.tests import support from test.support import TESTFN, run_unittest, check_warnings @@ -789,8 +789,8 @@ diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/test # Issue #21923: test that a Distribution compiler # instance can be called without an explicit call to diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/test_util.py ---- orig/Lib/distutils/tests/test_util.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/distutils/tests/test_util.py 2015-05-03 00:04:32.000000000 +0800 +--- orig/Lib/distutils/tests/test_util.py 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Lib/distutils/tests/test_util.py 2016-02-14 10:29:10.000000000 +0800 @@ -10,12 +10,13 @@ check_environ, split_quoted, strtobool, rfc822_escape, byte_compile, @@ -814,9 +814,9 @@ diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/tes def test_check_environ(self): util._environ_checked = 0 if 'HOME' in os.environ: -diff -Nru orig/Lib/importlib/_bootstrap.py modified/Lib/importlib/_bootstrap.py ---- orig/Lib/importlib/_bootstrap.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/importlib/_bootstrap.py 2015-05-02 11:56:09.000000000 +0800 +diff -Nru orig/Lib/importlib/_bootstrap_external.py modified/Lib/importlib/_bootstrap_external.py +--- orig/Lib/importlib/_bootstrap_external.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/importlib/_bootstrap_external.py 2016-02-14 11:00:13.000000000 +0800 @@ -22,7 +22,7 @@ # Bootstrap-related code ###################################################### @@ -828,7 +828,7 @@ diff -Nru orig/Lib/importlib/_bootstrap.py modified/Lib/importlib/_bootstrap.py def _make_relax_case(): diff -Nru orig/Lib/plat-ios/IN.py modified/Lib/plat-ios/IN.py --- orig/Lib/plat-ios/IN.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Lib/plat-ios/IN.py 2015-07-04 14:09:06.000000000 +0800 ++++ modified/Lib/plat-ios/IN.py 2016-02-14 10:29:10.000000000 +0800 @@ -0,0 +1,8269 @@ +# Generated by h2py from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/usr/include/netinet/in.h + @@ -9101,15 +9101,15 @@ diff -Nru orig/Lib/plat-ios/IN.py modified/Lib/plat-ios/IN.py +IPV6CTL_MAXID = 51 diff -Nru orig/Lib/plat-ios/regen modified/Lib/plat-ios/regen --- orig/Lib/plat-ios/regen 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Lib/plat-ios/regen 2015-04-26 09:08:15.000000000 +0800 ++++ modified/Lib/plat-ios/regen 2016-02-14 10:29:10.000000000 +0800 @@ -0,0 +1,3 @@ +#! /bin/sh +set -v +include=`xcrun --sdk iphoneos --show-sdk-path`/usr/include python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' `xcrun --sdk iphoneos --show-sdk-path`/usr/include/netinet/in.h diff -Nru orig/Lib/platform.py modified/Lib/platform.py ---- orig/Lib/platform.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/platform.py 2015-02-28 19:30:28.000000000 +0800 -@@ -841,7 +841,7 @@ +--- orig/Lib/platform.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/platform.py 2016-02-14 10:29:10.000000000 +0800 +@@ -810,7 +810,7 @@ """ Interface to the system's uname command. """ @@ -9118,7 +9118,7 @@ diff -Nru orig/Lib/platform.py modified/Lib/platform.py # XXX Others too ? return default try: -@@ -864,7 +864,7 @@ +@@ -833,7 +833,7 @@ default in case the command should fail. """ @@ -9128,8 +9128,8 @@ diff -Nru orig/Lib/platform.py modified/Lib/platform.py return default target = _follow_symlinks(target) diff -Nru orig/Lib/site.py modified/Lib/site.py ---- orig/Lib/site.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/site.py 2015-07-04 21:19:43.000000000 +0800 +--- orig/Lib/site.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/site.py 2016-02-14 10:29:10.000000000 +0800 @@ -266,6 +266,9 @@ if get_config_var('PYTHONFRAMEWORK'): USER_SITE = get_path('purelib', 'osx_framework_user') @@ -9141,17 +9141,28 @@ diff -Nru orig/Lib/site.py modified/Lib/site.py USER_SITE = get_path('purelib', '%s_user' % os.name) return USER_SITE diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py ---- orig/Lib/subprocess.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/subprocess.py 2015-06-28 20:16:04.000000000 +0800 -@@ -423,1268 +423,1269 @@ +--- orig/Lib/subprocess.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/subprocess.py 2016-02-14 11:07:15.000000000 +0800 +@@ -357,6 +357,7 @@ + + import sys + _mswindows = (sys.platform == "win32") ++_ios = (sys.platform == "ios") + + import io + import os +@@ -455,1320 +456,1324 @@ else: _PopenSelector = selectors.SelectSelector - -__all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", -- "getoutput", "check_output", "CalledProcessError", "DEVNULL"] +- "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", +- "SubprocessError", "TimeoutExpired", "CompletedProcess"] +- # NOTE: We intentionally exclude list2cmdline as it is +- # considered an internal implementation detail. issue10838. - --if mswindows: +-if _mswindows: - from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, - STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, - STD_ERROR_HANDLE, SW_HIDE, @@ -9177,15 +9188,11 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - raise ValueError("already closed") - - def __repr__(self): -- return "Handle(%d)" % int(self) +- return "%s(%d)" % (self.__class__.__name__, int(self)) - - __del__ = Close - __str__ = __repr__ - --try: -- MAXFD = os.sysconf("SC_OPEN_MAX") --except: -- MAXFD = 256 - -# This lists holds Popen instances for which the underlying process had not -# exited at the time its __del__ method got called: those processes are wait()ed @@ -9208,22 +9215,17 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py STDOUT = -2 DEVNULL = -3 -+if sys.platform == 'ios': ++if _ios: + # iOS doesn't support subprocesses; however, some modules still import + # subprocess, so it's helpful to retain the symbols in the namespace. + __all__ = ["PIPE", "STDOUT", "DEVNULL", "CalledProcessError"] +else: + __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", -+ "getoutput", "check_output", "CalledProcessError", "DEVNULL"] ++ "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", ++ "SubprocessError", "TimeoutExpired", "CompletedProcess"] ++ # NOTE: We intentionally exclude list2cmdline as it is ++ # considered an internal implementation detail. issue10838. --def _eintr_retry_call(func, *args): -- while True: -- try: -- return func(*args) -- except InterruptedError: -- continue -- -- -# XXX This function is only used by multiprocessing and the test suite, -# but it's here so that it can be imported when Python is compiled without -# threads. @@ -9260,174 +9262,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py -def call(*popenargs, timeout=None, **kwargs): - """Run command with arguments. Wait for command to complete or - timeout, then return the returncode attribute. -- -- The arguments are the same as for the Popen constructor. Example: -- -- retcode = call(["ls", "-l"]) -- """ -- with Popen(*popenargs, **kwargs) as p: -- try: -- return p.wait(timeout=timeout) -- except: -- p.kill() -- p.wait() -- raise -- -- --def check_call(*popenargs, **kwargs): -- """Run command with arguments. Wait for command to complete. If -- the exit code was zero then return, otherwise raise -- CalledProcessError. The CalledProcessError object will have the -- return code in the returncode attribute. -- -- The arguments are the same as for the call function. Example: -- -- check_call(["ls", "-l"]) -- """ -- retcode = call(*popenargs, **kwargs) -- if retcode: -- cmd = kwargs.get("args") -- if cmd is None: -- cmd = popenargs[0] -- raise CalledProcessError(retcode, cmd) -- return 0 -- -- --def check_output(*popenargs, timeout=None, **kwargs): -- r"""Run command with arguments and return its output. -- -- If the exit code was non-zero it raises a CalledProcessError. The -- CalledProcessError object will have the return code in the returncode -- attribute and output in the output attribute. -- -- The arguments are the same as for the Popen constructor. Example: -- -- >>> check_output(["ls", "-l", "/dev/null"]) -- b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' -- -- The stdout argument is not allowed as it is used internally. -- To capture standard error in the result, use stderr=STDOUT. -- -- >>> check_output(["/bin/sh", "-c", -- ... "ls -l non_existent_file ; exit 0"], -- ... stderr=STDOUT) -- b'ls: non_existent_file: No such file or directory\n' -- -- There is an additional optional argument, "input", allowing you to -- pass a string to the subprocess's stdin. If you use this argument -- you may not also use the Popen constructor's "stdin" argument, as -- it too will be used internally. Example: -- -- >>> check_output(["sed", "-e", "s/foo/bar/"], -- ... input=b"when in the course of fooman events\n") -- b'when in the course of barman events\n' -- -- If universal_newlines=True is passed, the return value will be a -- string rather than bytes. -- """ -- if 'stdout' in kwargs: -- raise ValueError('stdout argument not allowed, it will be overridden.') -- if 'input' in kwargs: -- if 'stdin' in kwargs: -- raise ValueError('stdin and input arguments may not both be used.') -- inputdata = kwargs['input'] -- del kwargs['input'] -- kwargs['stdin'] = PIPE -- else: -- inputdata = None -- with Popen(*popenargs, stdout=PIPE, **kwargs) as process: -- try: -- output, unused_err = process.communicate(inputdata, timeout=timeout) -- except TimeoutExpired: -- process.kill() -- output, unused_err = process.communicate() -- raise TimeoutExpired(process.args, timeout, output=output) -- except: -- process.kill() -- process.wait() -- raise -- retcode = process.poll() -- if retcode: -- raise CalledProcessError(retcode, process.args, output=output) -- return output -- -- --def list2cmdline(seq): -- """ -- Translate a sequence of arguments into a command line -- string, using the same rules as the MS C runtime: -- -- 1) Arguments are delimited by white space, which is either a -- space or a tab. -- -- 2) A string surrounded by double quotation marks is -- interpreted as a single argument, regardless of white space -- contained within. A quoted string can be embedded in an -- argument. -- -- 3) A double quotation mark preceded by a backslash is -- interpreted as a literal double quotation mark. -- -- 4) Backslashes are interpreted literally, unless they -- immediately precede a double quotation mark. -- -- 5) If backslashes immediately precede a double quotation mark, -- every pair of backslashes is interpreted as a literal -- backslash. If the number of backslashes is odd, the last -- backslash escapes the next double quotation mark as -- described in rule 3. -- """ -- -- # See -- # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx -- # or search http://msdn.microsoft.com for -- # "Parsing C++ Command-Line Arguments" -- result = [] -- needquote = False -- for arg in seq: -- bs_buf = [] -- -- # Add a space to separate this argument from the others -- if result: -- result.append(' ') -- -- needquote = (" " in arg) or ("\t" in arg) or not arg -- if needquote: -- result.append('"') -- -- for c in arg: -- if c == '\\': -- # Don't know if we need to double yet. -- bs_buf.append(c) -- elif c == '"': -- # Double backslashes. -- result.append('\\' * len(bs_buf)*2) -- bs_buf = [] -- result.append('\\"') -- else: -- # Normal char -- if bs_buf: -- result.extend(bs_buf) -- bs_buf = [] -- result.append(c) -- -- # Add remaining backslashes, if any. -- if bs_buf: -- result.extend(bs_buf) -- -- if needquote: -- result.extend(bs_buf) -- result.append('"') -- -- return ''.join(result) -- -- --# Various tools for executing commands and looking at their output and status. --# -- --def getstatusoutput(cmd): -- """ Return (status, output) of executing cmd in a shell. -+ if mswindows: ++ if _mswindows: + from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, + STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, + STD_ERROR_HANDLE, SW_HIDE, @@ -9451,82 +9286,13 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + self.closed = True + return int(self) + raise ValueError("already closed") - -- Execute the string 'cmd' in a shell with 'check_output' and -- return a 2-tuple (status, output). Universal newlines mode is used, -- meaning that the result with be decoded to a string. ++ + def __repr__(self): -+ return "Handle(%d)" % int(self) - -- A trailing newline is stripped from the output. -- The exit status for the command can be interpreted -- according to the rules for the function 'wait'. Example: ++ return "%s(%d)" % (self.__class__.__name__, int(self)) ++ + __del__ = Close + __str__ = __repr__ - -- >>> import subprocess -- >>> subprocess.getstatusoutput('ls /bin/ls') -- (0, '/bin/ls') -- >>> subprocess.getstatusoutput('cat /bin/junk') -- (256, 'cat: /bin/junk: No such file or directory') -- >>> subprocess.getstatusoutput('/bin/junk') -- (256, 'sh: /bin/junk: not found') -- """ - try: -- data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) -- status = 0 -- except CalledProcessError as ex: -- data = ex.output -- status = ex.returncode -- if data[-1:] == '\n': -- data = data[:-1] -- return status, data -- --def getoutput(cmd): -- """Return output (stdout or stderr) of executing cmd in a shell. -- -- Like getstatusoutput(), except the exit status is ignored and the return -- value is a string containing the command's output. Example: -- -- >>> import subprocess -- >>> subprocess.getoutput('ls /bin/ls') -- '/bin/ls' -- """ -- return getstatusoutput(cmd)[1] -- -- --_PLATFORM_DEFAULT_CLOSE_FDS = object() -- -- --class Popen(object): -- -- _child_created = False # Set here since __del__ checks it -- -- def __init__(self, args, bufsize=-1, executable=None, -- stdin=None, stdout=None, stderr=None, -- preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, -- shell=False, cwd=None, env=None, universal_newlines=False, -- startupinfo=None, creationflags=0, -- restore_signals=True, start_new_session=False, -- pass_fds=()): -- """Create new Popen instance.""" -- _cleanup() -- # Held while anything is calling waitpid before returncode has been -- # updated to prevent clobbering returncode if wait() or poll() are -- # called from multiple threads at once. After acquiring the lock, -- # code must re-check self.returncode to see if another thread just -- # finished a waitpid() call. -- self._waitpid_lock = threading.Lock() -- -- self._input = None -- self._communication_started = False -- if bufsize is None: -- bufsize = -1 # Restore default -- if not isinstance(bufsize, int): -- raise TypeError("bufsize must be an integer") -+ MAXFD = os.sysconf("SC_OPEN_MAX") -+ except: -+ MAXFD = 256 ++ + + # This lists holds Popen instances for which the underlying process had not + # exited at the time its __del__ method got called: those processes are wait()ed @@ -9545,23 +9311,24 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # It's harmless that it was already removed, so ignore. + pass -- if mswindows: -- if preexec_fn is not None: -- raise ValueError("preexec_fn is not supported on Windows " -- "platforms") -- any_stdio_set = (stdin is not None or stdout is not None or -- stderr is not None) -- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: -- if any_stdio_set: -- close_fds = False -+ def _eintr_retry_call(func, *args): -+ while True: -+ try: -+ return func(*args) -+ except InterruptedError: -+ continue -+ -+ +- The arguments are the same as for the Popen constructor. Example: + +- retcode = call(["ls", "-l"]) +- """ +- with Popen(*popenargs, **kwargs) as p: +- try: +- return p.wait(timeout=timeout) +- except: +- p.kill() +- p.wait() +- raise +- +- +-def check_call(*popenargs, **kwargs): +- """Run command with arguments. Wait for command to complete. If +- the exit code was zero then return, otherwise raise +- CalledProcessError. The CalledProcessError object will have the +- return code in the returncode attribute. + # XXX This function is only used by multiprocessing and the test suite, + # but it's here so that it can be imported when Python is compiled without + # threads. @@ -9598,9 +9365,49 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + def call(*popenargs, timeout=None, **kwargs): + """Run command with arguments. Wait for command to complete or + timeout, then return the returncode attribute. -+ + +- The arguments are the same as for the call function. Example: + The arguments are the same as for the Popen constructor. Example: -+ + +- check_call(["ls", "-l"]) +- """ +- retcode = call(*popenargs, **kwargs) +- if retcode: +- cmd = kwargs.get("args") +- if cmd is None: +- cmd = popenargs[0] +- raise CalledProcessError(retcode, cmd) +- return 0 +- +- +-def check_output(*popenargs, timeout=None, **kwargs): +- r"""Run command with arguments and return its output. +- +- If the exit code was non-zero it raises a CalledProcessError. The +- CalledProcessError object will have the return code in the returncode +- attribute and output in the output attribute. +- +- The arguments are the same as for the Popen constructor. Example: +- +- >>> check_output(["ls", "-l", "/dev/null"]) +- b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' +- +- The stdout argument is not allowed as it is used internally. +- To capture standard error in the result, use stderr=STDOUT. +- +- >>> check_output(["/bin/sh", "-c", +- ... "ls -l non_existent_file ; exit 0"], +- ... stderr=STDOUT) +- b'ls: non_existent_file: No such file or directory\n' +- +- There is an additional optional argument, "input", allowing you to +- pass a string to the subprocess's stdin. If you use this argument +- you may not also use the Popen constructor's "stdin" argument, as +- it too will be used internally. Example: +- +- >>> check_output(["sed", "-e", "s/foo/bar/"], +- ... input=b"when in the course of fooman events\n") +- b'when in the course of barman events\n' + retcode = call(["ls", "-l"]) + """ + with Popen(*popenargs, **kwargs) as p: @@ -9617,9 +9424,18 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + the exit code was zero then return, otherwise raise + CalledProcessError. The CalledProcessError object will have the + return code in the returncode attribute. -+ + +- If universal_newlines=True is passed, the "input" argument must be a +- string and the return value will be a string rather than bytes. +- """ +- if 'stdout' in kwargs: +- raise ValueError('stdout argument not allowed, it will be overridden.') + The arguments are the same as for the call function. Example: -+ + +- if 'input' in kwargs and kwargs['input'] is None: +- # Explicitly passing input=None was previously equivalent to passing an +- # empty string. That is maintained here for backwards compatibility. +- kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b'' + check_call(["ls", "-l"]) + """ + retcode = call(*popenargs, **kwargs) @@ -9659,45 +9475,293 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + >>> check_output(["sed", "-e", "s/foo/bar/"], + ... input=b"when in the course of fooman events\n") + b'when in the course of barman events\n' -+ -+ If universal_newlines=True is passed, the return value will be a -+ string rather than bytes. + +- return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, +- **kwargs).stdout ++ If universal_newlines=True is passed, the "input" argument must be a ++ string and the return value will be a string rather than bytes. + """ + if 'stdout' in kwargs: + raise ValueError('stdout argument not allowed, it will be overridden.') -+ if 'input' in kwargs: + ++ if 'input' in kwargs and kwargs['input'] is None: ++ # Explicitly passing input=None was previously equivalent to passing an ++ # empty string. That is maintained here for backwards compatibility. ++ kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b'' + +-class CompletedProcess(object): +- """A process that has finished running. ++ return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ++ **kwargs).stdout + +- This is returned by run(). + +- Attributes: +- args: The list or str args passed to run(). +- returncode: The exit code of the process, negative for signals. +- stdout: The standard output (None if not captured). +- stderr: The standard error (None if not captured). +- """ +- def __init__(self, args, returncode, stdout=None, stderr=None): +- self.args = args +- self.returncode = returncode +- self.stdout = stdout +- self.stderr = stderr ++ class CompletedProcess(object): ++ """A process that has finished running. + +- def __repr__(self): +- args = ['args={!r}'.format(self.args), +- 'returncode={!r}'.format(self.returncode)] +- if self.stdout is not None: +- args.append('stdout={!r}'.format(self.stdout)) +- if self.stderr is not None: +- args.append('stderr={!r}'.format(self.stderr)) +- return "{}({})".format(type(self).__name__, ', '.join(args)) +- +- def check_returncode(self): +- """Raise CalledProcessError if the exit code is non-zero.""" +- if self.returncode: +- raise CalledProcessError(self.returncode, self.args, self.stdout, +- self.stderr) +- +- +-def run(*popenargs, input=None, timeout=None, check=False, **kwargs): +- """Run command with arguments and return a CompletedProcess instance. +- +- The returned instance will have attributes args, returncode, stdout and +- stderr. By default, stdout and stderr are not captured, and those attributes +- will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. +- +- If check is True and the exit code was non-zero, it raises a +- CalledProcessError. The CalledProcessError object will have the return code +- in the returncode attribute, and output & stderr attributes if those streams +- were captured. +- +- If timeout is given, and the process takes too long, a TimeoutExpired +- exception will be raised. +- +- There is an optional argument "input", allowing you to +- pass a string to the subprocess's stdin. If you use this argument +- you may not also use the Popen constructor's "stdin" argument, as +- it will be used internally. +- +- The other arguments are the same as for the Popen constructor. +- +- If universal_newlines=True is passed, the "input" argument must be a +- string and stdout/stderr in the returned object will be strings rather than +- bytes. +- """ +- if input is not None: +- if 'stdin' in kwargs: +- raise ValueError('stdin and input arguments may not both be used.') +- kwargs['stdin'] = PIPE ++ This is returned by run(). + +- with Popen(*popenargs, **kwargs) as process: +- try: +- stdout, stderr = process.communicate(input, timeout=timeout) +- except TimeoutExpired: +- process.kill() +- stdout, stderr = process.communicate() +- raise TimeoutExpired(process.args, timeout, output=stdout, +- stderr=stderr) +- except: +- process.kill() +- process.wait() +- raise +- retcode = process.poll() +- if check and retcode: +- raise CalledProcessError(retcode, process.args, +- output=stdout, stderr=stderr) +- return CompletedProcess(process.args, retcode, stdout, stderr) ++ Attributes: ++ args: The list or str args passed to run(). ++ returncode: The exit code of the process, negative for signals. ++ stdout: The standard output (None if not captured). ++ stderr: The standard error (None if not captured). ++ """ ++ def __init__(self, args, returncode, stdout=None, stderr=None): ++ self.args = args ++ self.returncode = returncode ++ self.stdout = stdout ++ self.stderr = stderr + ++ def __repr__(self): ++ args = ['args={!r}'.format(self.args), ++ 'returncode={!r}'.format(self.returncode)] ++ if self.stdout is not None: ++ args.append('stdout={!r}'.format(self.stdout)) ++ if self.stderr is not None: ++ args.append('stderr={!r}'.format(self.stderr)) ++ return "{}({})".format(type(self).__name__, ', '.join(args)) + +-def list2cmdline(seq): +- """ +- Translate a sequence of arguments into a command line +- string, using the same rules as the MS C runtime: ++ def check_returncode(self): ++ """Raise CalledProcessError if the exit code is non-zero.""" ++ if self.returncode: ++ raise CalledProcessError(self.returncode, self.args, self.stdout, ++ self.stderr) + +- 1) Arguments are delimited by white space, which is either a +- space or a tab. + +- 2) A string surrounded by double quotation marks is +- interpreted as a single argument, regardless of white space +- contained within. A quoted string can be embedded in an +- argument. +- +- 3) A double quotation mark preceded by a backslash is +- interpreted as a literal double quotation mark. +- +- 4) Backslashes are interpreted literally, unless they +- immediately precede a double quotation mark. +- +- 5) If backslashes immediately precede a double quotation mark, +- every pair of backslashes is interpreted as a literal +- backslash. If the number of backslashes is odd, the last +- backslash escapes the next double quotation mark as +- described in rule 3. +- """ ++ def run(*popenargs, input=None, timeout=None, check=False, **kwargs): ++ """Run command with arguments and return a CompletedProcess instance. + +- # See +- # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx +- # or search http://msdn.microsoft.com for +- # "Parsing C++ Command-Line Arguments" +- result = [] +- needquote = False +- for arg in seq: +- bs_buf = [] +- +- # Add a space to separate this argument from the others +- if result: +- result.append(' ') +- +- needquote = (" " in arg) or ("\t" in arg) or not arg +- if needquote: +- result.append('"') +- +- for c in arg: +- if c == '\\': +- # Don't know if we need to double yet. +- bs_buf.append(c) +- elif c == '"': +- # Double backslashes. +- result.append('\\' * len(bs_buf)*2) +- bs_buf = [] +- result.append('\\"') +- else: +- # Normal char +- if bs_buf: +- result.extend(bs_buf) +- bs_buf = [] +- result.append(c) ++ The returned instance will have attributes args, returncode, stdout and ++ stderr. By default, stdout and stderr are not captured, and those attributes ++ will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. + +- # Add remaining backslashes, if any. +- if bs_buf: +- result.extend(bs_buf) ++ If check is True and the exit code was non-zero, it raises a ++ CalledProcessError. The CalledProcessError object will have the return code ++ in the returncode attribute, and output & stderr attributes if those streams ++ were captured. + +- if needquote: +- result.extend(bs_buf) +- result.append('"') ++ If timeout is given, and the process takes too long, a TimeoutExpired ++ exception will be raised. + +- return ''.join(result) ++ There is an optional argument "input", allowing you to ++ pass a string to the subprocess's stdin. If you use this argument ++ you may not also use the Popen constructor's "stdin" argument, as ++ it will be used internally. + ++ The other arguments are the same as for the Popen constructor. + +-# Various tools for executing commands and looking at their output and status. +-# ++ If universal_newlines=True is passed, the "input" argument must be a ++ string and stdout/stderr in the returned object will be strings rather than ++ bytes. ++ """ ++ if input is not None: + if 'stdin' in kwargs: + raise ValueError('stdin and input arguments may not both be used.') -+ inputdata = kwargs['input'] -+ del kwargs['input'] + kwargs['stdin'] = PIPE -+ else: -+ inputdata = None -+ with Popen(*popenargs, stdout=PIPE, **kwargs) as process: + +-def getstatusoutput(cmd): +- """ Return (status, output) of executing cmd in a shell. ++ with Popen(*popenargs, **kwargs) as process: + try: -+ output, unused_err = process.communicate(inputdata, timeout=timeout) ++ stdout, stderr = process.communicate(input, timeout=timeout) + except TimeoutExpired: + process.kill() -+ output, unused_err = process.communicate() -+ raise TimeoutExpired(process.args, timeout, output=output) ++ stdout, stderr = process.communicate() ++ raise TimeoutExpired(process.args, timeout, output=stdout, ++ stderr=stderr) + except: + process.kill() + process.wait() + raise + retcode = process.poll() -+ if retcode: -+ raise CalledProcessError(retcode, process.args, output=output) -+ return output -+ -+ ++ if check and retcode: ++ raise CalledProcessError(retcode, process.args, ++ output=stdout, stderr=stderr) ++ return CompletedProcess(process.args, retcode, stdout, stderr) + +- Execute the string 'cmd' in a shell with 'check_output' and +- return a 2-tuple (status, output). Universal newlines mode is used, +- meaning that the result with be decoded to a string. + +- A trailing newline is stripped from the output. +- The exit status for the command can be interpreted +- according to the rules for the function 'wait'. Example: + def list2cmdline(seq): + """ + Translate a sequence of arguments into a command line + string, using the same rules as the MS C runtime: -+ + +- >>> import subprocess +- >>> subprocess.getstatusoutput('ls /bin/ls') +- (0, '/bin/ls') +- >>> subprocess.getstatusoutput('cat /bin/junk') +- (256, 'cat: /bin/junk: No such file or directory') +- >>> subprocess.getstatusoutput('/bin/junk') +- (256, 'sh: /bin/junk: not found') +- """ +- try: +- data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) +- status = 0 +- except CalledProcessError as ex: +- data = ex.output +- status = ex.returncode +- if data[-1:] == '\n': +- data = data[:-1] +- return status, data +- +-def getoutput(cmd): +- """Return output (stdout or stderr) of executing cmd in a shell. +- +- Like getstatusoutput(), except the exit status is ignored and the return +- value is a string containing the command's output. Example: +- +- >>> import subprocess +- >>> subprocess.getoutput('ls /bin/ls') +- '/bin/ls' +- """ +- return getstatusoutput(cmd)[1] + 1) Arguments are delimited by white space, which is either a + space or a tab. -+ + + 2) A string surrounded by double quotation marks is + interpreted as a single argument, regardless of white space + contained within. A quoted string can be embedded in an @@ -9715,7 +9779,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + backslash escapes the next double quotation mark as + described in rule 3. + """ -+ + +-_PLATFORM_DEFAULT_CLOSE_FDS = object() + # See + # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx + # or search http://msdn.microsoft.com for @@ -9742,7 +9807,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + result.append('\\' * len(bs_buf)*2) + bs_buf = [] + result.append('\\"') - else: ++ else: + # Normal char + if bs_buf: + result.extend(bs_buf) @@ -9803,9 +9868,46 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + '/bin/ls' + """ + return getstatusoutput(cmd)[1] -+ + + +-class Popen(object): + _PLATFORM_DEFAULT_CLOSE_FDS = object() -+ + +- _child_created = False # Set here since __del__ checks it +- +- def __init__(self, args, bufsize=-1, executable=None, +- stdin=None, stdout=None, stderr=None, +- preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, +- shell=False, cwd=None, env=None, universal_newlines=False, +- startupinfo=None, creationflags=0, +- restore_signals=True, start_new_session=False, +- pass_fds=()): +- """Create new Popen instance.""" +- _cleanup() +- # Held while anything is calling waitpid before returncode has been +- # updated to prevent clobbering returncode if wait() or poll() are +- # called from multiple threads at once. After acquiring the lock, +- # code must re-check self.returncode to see if another thread just +- # finished a waitpid() call. +- self._waitpid_lock = threading.Lock() +- +- self._input = None +- self._communication_started = False +- if bufsize is None: +- bufsize = -1 # Restore default +- if not isinstance(bufsize, int): +- raise TypeError("bufsize must be an integer") + +- if _mswindows: +- if preexec_fn is not None: +- raise ValueError("preexec_fn is not supported on Windows " +- "platforms") +- any_stdio_set = (stdin is not None or stdout is not None or +- stderr is not None) +- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: +- if any_stdio_set: +- close_fds = False +- else: + class Popen(object): + + _child_created = False # Set here since __del__ checks it @@ -9833,7 +9935,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + if not isinstance(bufsize, int): + raise TypeError("bufsize must be an integer") + -+ if mswindows: ++ if _mswindows: + if preexec_fn is not None: + raise ValueError("preexec_fn is not supported on Windows " + "platforms") @@ -9941,7 +10043,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # quickly terminating child could make our fds unwrappable + # (see #8458). + -+ if mswindows: ++ if _mswindows: + if p2cwrite != -1: + p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) + if c2pread != -1: @@ -9949,12 +10051,13 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + if errread != -1: + errread = msvcrt.open_osfhandle(errread.Detach(), 0) -- if mswindows: +- if _mswindows: if p2cwrite != -1: - p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) + self.stdin = io.open(p2cwrite, 'wb', bufsize) + if universal_newlines: -+ self.stdin = io.TextIOWrapper(self.stdin, write_through=True) ++ self.stdin = io.TextIOWrapper(self.stdin, write_through=True, ++ line_buffering=(bufsize == 1)) if c2pread != -1: - c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) + self.stdout = io.open(c2pread, 'rb', bufsize) @@ -9966,7 +10069,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - if p2cwrite != -1: - self.stdin = io.open(p2cwrite, 'wb', bufsize) - if universal_newlines: -- self.stdin = io.TextIOWrapper(self.stdin, write_through=True) +- self.stdin = io.TextIOWrapper(self.stdin, write_through=True, +- line_buffering=(bufsize == 1)) - if c2pread != -1: - self.stdout = io.open(c2pread, 'rb', bufsize) - if universal_newlines: @@ -10024,9 +10128,10 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + f.close() except OSError: - pass +- +- raise + pass # Ignore EBADF or other errors. -- raise + if not self._closed_child_pipe_fds: + to_close = [] + if stdin == PIPE: @@ -10043,8 +10148,6 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + except OSError: + pass -+ raise - - def _translate_newlines(self, data, encoding): - data = data.decode(encoding) - return data.replace("\r\n", "\n").replace("\r", "\n") @@ -10057,10 +10160,12 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - self.stdout.close() - if self.stderr: - self.stderr.close() -- if self.stdin: -- self.stdin.close() -- # Wait for the process to terminate, to avoid zombies. -- self.wait() +- try: # Flushing a BufferedWriter may raise an error +- if self.stdin: +- self.stdin.close() +- finally: +- # Wait for the process to terminate, to avoid zombies. +- self.wait() - - def __del__(self, _maxsize=sys.maxsize): - if not self._child_created: @@ -10077,18 +10182,45 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - self._devnull = os.open(os.devnull, os.O_RDWR) - return self._devnull - +- def _stdin_write(self, input): +- if input: +- try: +- self.stdin.write(input) +- except BrokenPipeError: +- # communicate() must ignore broken pipe error +- pass +- except OSError as e: +- if e.errno == errno.EINVAL and self.poll() is not None: +- # Issue #19612: On Windows, stdin.write() fails with EINVAL +- # if the process already exited before the write +- pass +- else: +- raise +- self.stdin.close() ++ raise + - def communicate(self, input=None, timeout=None): - """Interact with process: Send data to stdin. Read data from - stdout and stderr, until end-of-file is reached. Wait for -- process to terminate. The optional input argument should be -- bytes to be sent to the child process, or None, if no data -- should be sent to the child. -- -- communicate() returns a tuple (stdout, stderr).""" +- process to terminate. - +- The optional "input" argument should be data to be sent to the +- child process (if self.universal_newlines is True, this should +- be a string; if it is False, "input" should be bytes), or +- None, if no data should be sent to the child. + +- communicate() returns a tuple (stdout, stderr). These will be +- bytes or, if self.universal_newlines was True, a string. +- """ ++ def _translate_newlines(self, data, encoding): ++ data = data.decode(encoding) ++ return data.replace("\r\n", "\n").replace("\r", "\n") + - if self._communication_started and input: - raise ValueError("Cannot send input after starting communication") -- ++ def __enter__(self): ++ return self + - # Optimization: If we are not worried about timeouts, we haven't - # started communicating, and we have one or zero pipes, using select() - # or threads is unnecessary. @@ -10097,49 +10229,34 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - stdout = None - stderr = None - if self.stdin: -- if input: -- try: -- self.stdin.write(input) -- except OSError as e: -- if e.errno != errno.EPIPE and e.errno != errno.EINVAL: -- raise -- self.stdin.close() +- self._stdin_write(input) - elif self.stdout: -- stdout = _eintr_retry_call(self.stdout.read) -- self.stdout.close() +- stdout = self.stdout.read() ++ def __exit__(self, type, value, traceback): ++ if self.stdout: + self.stdout.close() - elif self.stderr: -- stderr = _eintr_retry_call(self.stderr.read) -- self.stderr.close() +- stderr = self.stderr.read() ++ if self.stderr: + self.stderr.close() - self.wait() - else: - if timeout is not None: - endtime = _time() + timeout - else: - endtime = None - +- - try: - stdout, stderr = self._communicate(input, endtime, timeout) -- finally: ++ try: # Flushing a BufferedWriter may raise an error ++ if self.stdin: ++ self.stdin.close() + finally: - self._communication_started = True -+ def _translate_newlines(self, data, encoding): -+ data = data.decode(encoding) -+ return data.replace("\r\n", "\n").replace("\r", "\n") ++ # Wait for the process to terminate, to avoid zombies. ++ self.wait() - sts = self.wait(timeout=self._remaining_time(endtime)) -+ def __enter__(self): -+ return self - -- return (stdout, stderr) -+ def __exit__(self, type, value, traceback): -+ if self.stdout: -+ self.stdout.close() -+ if self.stderr: -+ self.stderr.close() -+ if self.stdin: -+ self.stdin.close() -+ # Wait for the process to terminate, to avoid zombies. -+ self.wait() - + def __del__(self, _maxsize=sys.maxsize): + if not self._child_created: + # We didn't get to successfully create a child process. @@ -10154,19 +10271,49 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + if not hasattr(self, '_devnull'): + self._devnull = os.open(os.devnull, os.O_RDWR) + return self._devnull -+ + +- return (stdout, stderr) ++ def _stdin_write(self, input): ++ if input: ++ try: ++ self.stdin.write(input) ++ except BrokenPipeError: ++ # communicate() must ignore broken pipe error ++ pass ++ except OSError as e: ++ if e.errno == errno.EINVAL and self.poll() is not None: ++ # Issue #19612: On Windows, stdin.write() fails with EINVAL ++ # if the process already exited before the write ++ pass ++ else: ++ raise ++ self.stdin.close() + + def communicate(self, input=None, timeout=None): + """Interact with process: Send data to stdin. Read data from + stdout and stderr, until end-of-file is reached. Wait for -+ process to terminate. The optional input argument should be -+ bytes to be sent to the child process, or None, if no data -+ should be sent to the child. -+ -+ communicate() returns a tuple (stdout, stderr).""" ++ process to terminate. + ++ The optional "input" argument should be data to be sent to the ++ child process (if self.universal_newlines is True, this should ++ be a string; if it is False, "input" should be bytes), or ++ None, if no data should be sent to the child. + +- def poll(self): +- return self._internal_poll() ++ communicate() returns a tuple (stdout, stderr). These will be ++ bytes or, if self.universal_newlines was True, a string. ++ """ + + if self._communication_started and input: + raise ValueError("Cannot send input after starting communication") -+ + +- def _remaining_time(self, endtime): +- """Convenience for _communicate when computing timeouts.""" +- if endtime is None: +- return None +- else: +- return endtime - _time() + # Optimization: If we are not worried about timeouts, we haven't + # started communicating, and we have one or zero pipes, using select() + # or threads is unnecessary. @@ -10175,18 +10322,12 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + stdout = None + stderr = None + if self.stdin: -+ if input: -+ try: -+ self.stdin.write(input) -+ except OSError as e: -+ if e.errno != errno.EPIPE and e.errno != errno.EINVAL: -+ raise -+ self.stdin.close() ++ self._stdin_write(input) + elif self.stdout: -+ stdout = _eintr_retry_call(self.stdout.read) ++ stdout = self.stdout.read() + self.stdout.close() + elif self.stderr: -+ stderr = _eintr_retry_call(self.stderr.read) ++ stderr = self.stderr.read() + self.stderr.close() + self.wait() + else: @@ -10195,35 +10336,22 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + else: + endtime = None -- def poll(self): -- return self._internal_poll() + try: + stdout, stderr = self._communicate(input, endtime, timeout) + finally: + self._communication_started = True -+ sts = self.wait(timeout=self._remaining_time(endtime)) - -- def _remaining_time(self, endtime): -- """Convenience for _communicate when computing timeouts.""" -- if endtime is None: -- return None -- else: -- return endtime - _time() -+ return (stdout, stderr) - - - def _check_timeout(self, endtime, orig_timeout): - """Convenience for checking if a timeout has expired.""" - if endtime is None: - return - if _time() > endtime: - raise TimeoutExpired(self.args, orig_timeout) -+ def poll(self): -+ return self._internal_poll() ++ sts = self.wait(timeout=self._remaining_time(endtime)) ++ return (stdout, stderr) -- if mswindows: +- if _mswindows: - # - # Windows methods - # @@ -10233,7 +10361,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - """ - if stdin is None and stdout is None and stderr is None: - return (-1, -1, -1, -1, -1, -1) -- + - p2cread, p2cwrite = -1, -1 - c2pread, c2pwrite = -1, -1 - errread, errwrite = -1, -1 @@ -10251,11 +10379,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - p2cread = msvcrt.get_osfhandle(self._get_devnull()) - elif isinstance(stdin, int): - p2cread = msvcrt.get_osfhandle(stdin) -+ def _remaining_time(self, endtime): -+ """Convenience for _communicate when computing timeouts.""" -+ if endtime is None: -+ return None - else: +- else: - # Assuming file-like object - p2cread = msvcrt.get_osfhandle(stdin.fileno()) - p2cread = self._make_inheritable(p2cread) @@ -10340,7 +10464,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - startupinfo.wShowWindow = _winapi.SW_HIDE - comspec = os.environ.get("COMSPEC", "cmd.exe") - args = '{} /c "{}"'.format (comspec, args) -+ return endtime - _time() ++ def poll(self): ++ return self._internal_poll() - # Start the process - try: @@ -10380,17 +10505,29 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - _GetExitCodeProcess=_winapi.GetExitCodeProcess): - """Check if child process has terminated. Returns returncode - attribute. -- + - This method is called by __del__, so it can only refer to objects - in its local scope. -- ++ def _remaining_time(self, endtime): ++ """Convenience for _communicate when computing timeouts.""" ++ if endtime is None: ++ return None ++ else: ++ return endtime - _time() + - """ - if self.returncode is None: - if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: - self.returncode = _GetExitCodeProcess(self._handle) - return self.returncode -- -- + ++ def _check_timeout(self, endtime, orig_timeout): ++ """Convenience for checking if a timeout has expired.""" ++ if endtime is None: ++ return ++ if _time() > endtime: ++ raise TimeoutExpired(self.args, orig_timeout) + - def wait(self, timeout=None, endtime=None): - """Wait for child process to terminate. Returns returncode - attribute.""" @@ -10431,30 +10568,10 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - args=(self.stderr, self._stderr_buff)) - self.stderr_thread.daemon = True - self.stderr_thread.start() - +- - if self.stdin: -- if input is not None: -- try: -- self.stdin.write(input) -- except OSError as e: -- if e.errno == errno.EPIPE: -- # communicate() should ignore pipe full error -- pass -- elif (e.errno == errno.EINVAL -- and self.poll() is not None): -- # Issue #19612: stdin.write() fails with EINVAL -- # if the process already exited before the write -- pass -- else: -- raise -- self.stdin.close() -+ def _check_timeout(self, endtime, orig_timeout): -+ """Convenience for checking if a timeout has expired.""" -+ if endtime is None: -+ return -+ if _time() > endtime: -+ raise TimeoutExpired(self.args, orig_timeout) - +- self._stdin_write(input) +- - # Wait for the reader threads, or time out. If we time out, the - # threads remain reading and the fds left open in case the user - # calls communicate again. @@ -10483,7 +10600,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - stdout = stdout[0] - if stderr is not None: - stderr = stderr[0] -+ if mswindows: ++ if _mswindows: + # + # Windows methods + # @@ -10647,8 +10764,10 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + return self.returncode - def send_signal(self, sig): -- """Send a signal to the process -- """ +- """Send a signal to the process.""" +- # Don't signal a process that we know has already died. +- if self.returncode is not None: +- return - if sig == signal.SIGTERM: - self.terminate() - elif sig == signal.CTRL_C_EVENT: @@ -10659,8 +10778,10 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - raise ValueError("Unsupported signal: {}".format(sig)) - def terminate(self): -- """Terminates the process -- """ +- """Terminates the process.""" +- # Don't terminate a process that we know has already died. +- if self.returncode is not None: +- return - try: - _winapi.TerminateProcess(self._handle, 1) - except PermissionError: @@ -10734,6 +10855,21 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + args=(self.stderr, self._stderr_buff)) + self.stderr_thread.daemon = True + self.stderr_thread.start() ++ ++ if self.stdin: ++ self._stdin_write(input) ++ ++ # Wait for the reader threads, or time out. If we time out, the ++ # threads remain reading and the fds left open in case the user ++ # calls communicate again. ++ if self.stdout is not None: ++ self.stdout_thread.join(self._remaining_time(endtime)) ++ if self.stdout_thread.is_alive(): ++ raise TimeoutExpired(self.args, orig_timeout) ++ if self.stderr is not None: ++ self.stderr_thread.join(self._remaining_time(endtime)) ++ if self.stderr_thread.is_alive(): ++ raise TimeoutExpired(self.args, orig_timeout) - if stdout is None: - pass @@ -10746,22 +10882,16 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - else: - # Assuming file-like object - c2pwrite = stdout.fileno() -+ if self.stdin: -+ if input is not None: -+ try: -+ self.stdin.write(input) -+ except OSError as e: -+ if e.errno == errno.EPIPE: -+ # communicate() should ignore pipe full error -+ pass -+ elif (e.errno == errno.EINVAL -+ and self.poll() is not None): -+ # Issue #19612: stdin.write() fails with EINVAL -+ # if the process already exited before the write -+ pass -+ else: -+ raise -+ self.stdin.close() ++ # Collect the output from and close both pipes, now that we know ++ # both have been read successfully. ++ stdout = None ++ stderr = None ++ if self.stdout: ++ stdout = self._stdout_buff ++ self.stdout.close() ++ if self.stderr: ++ stderr = self._stderr_buff ++ self.stderr.close() - if stderr is None: - pass @@ -10776,33 +10906,17 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - else: - # Assuming file-like object - errwrite = stderr.fileno() -+ # Wait for the reader threads, or time out. If we time out, the -+ # threads remain reading and the fds left open in case the user -+ # calls communicate again. -+ if self.stdout is not None: -+ self.stdout_thread.join(self._remaining_time(endtime)) -+ if self.stdout_thread.is_alive(): -+ raise TimeoutExpired(self.args, orig_timeout) -+ if self.stderr is not None: -+ self.stderr_thread.join(self._remaining_time(endtime)) -+ if self.stderr_thread.is_alive(): -+ raise TimeoutExpired(self.args, orig_timeout) ++ # All data exchanged. Translate lists into strings. ++ if stdout is not None: ++ stdout = stdout[0] ++ if stderr is not None: ++ stderr = stderr[0] - return (p2cread, p2cwrite, - c2pread, c2pwrite, - errread, errwrite) - - -- def _close_fds(self, fds_to_keep): -- start_fd = 3 -- for fd in sorted(fds_to_keep): -- if fd >= start_fd: -- os.closerange(start_fd, fd) -- start_fd = fd + 1 -- if start_fd <= MAXFD: -- os.closerange(start_fd, MAXFD) -- -- - def _execute_child(self, args, executable, preexec_fn, close_fds, - pass_fds, cwd, env, - startupinfo, creationflags, shell, @@ -10811,26 +10925,25 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - errread, errwrite, - restore_signals, start_new_session): - """Execute program (POSIX version)""" -+ # Collect the output from and close both pipes, now that we know -+ # both have been read successfully. -+ stdout = None -+ stderr = None -+ if self.stdout: -+ stdout = self._stdout_buff -+ self.stdout.close() -+ if self.stderr: -+ stderr = self._stderr_buff -+ self.stderr.close() ++ return (stdout, stderr) - if isinstance(args, (str, bytes)): - args = [args] - else: - args = list(args) -+ # All data exchanged. Translate lists into strings. -+ if stdout is not None: -+ stdout = stdout[0] -+ if stderr is not None: -+ stderr = stderr[0] ++ def send_signal(self, sig): ++ """Send a signal to the process.""" ++ # Don't signal a process that we know has already died. ++ if self.returncode is not None: ++ return ++ if sig == signal.SIGTERM: ++ self.terminate() ++ elif sig == signal.CTRL_C_EVENT: ++ os.kill(self.pid, signal.CTRL_C_EVENT) ++ elif sig == signal.CTRL_BREAK_EVENT: ++ os.kill(self.pid, signal.CTRL_BREAK_EVENT) ++ else: ++ raise ValueError("Unsupported signal: {}".format(sig)) - if shell: - args = ["/bin/sh", "-c"] + args @@ -10853,7 +10966,12 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - for low_fd in low_fds_to_close: - os.close(low_fd) - try: -- try: ++ def terminate(self): ++ """Terminates the process.""" ++ # Don't terminate a process that we know has already died. ++ if self.returncode is not None: ++ return + try: - # We must avoid complex work that could involve - # malloc or free in the child process to avoid - # potential deadlocks, thus we do all this here. @@ -10885,7 +11003,14 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - finally: - # be sure the FD is closed no matter what - os.close(errpipe_write) -+ return (stdout, stderr) ++ _winapi.TerminateProcess(self._handle, 1) ++ except PermissionError: ++ # ERROR_ACCESS_DENIED (winerror 5) is received when the ++ # process already died. ++ rc = _winapi.GetExitCodeProcess(self._handle) ++ if rc == _winapi.STILL_ACTIVE: ++ raise ++ self.returncode = rc - # self._devnull is not always defined. - devnull_fd = getattr(self, '_devnull', None) @@ -10904,40 +11029,33 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - # exception (limited in size) - errpipe_data = bytearray() - while True: -- part = _eintr_retry_call(os.read, errpipe_read, 50000) +- part = os.read(errpipe_read, 50000) - errpipe_data += part - if not part or len(errpipe_data) > 50000: - break - finally: - # be sure the FD is closed no matter what - os.close(errpipe_read) -+ def send_signal(self, sig): -+ """Send a signal to the process -+ """ -+ if sig == signal.SIGTERM: -+ self.terminate() -+ elif sig == signal.CTRL_C_EVENT: -+ os.kill(self.pid, signal.CTRL_C_EVENT) -+ elif sig == signal.CTRL_BREAK_EVENT: -+ os.kill(self.pid, signal.CTRL_BREAK_EVENT) -+ else: -+ raise ValueError("Unsupported signal: {}".format(sig)) ++ kill = terminate - if errpipe_data: -+ def terminate(self): -+ """Terminates the process +- try: +- os.waitpid(self.pid, 0) +- except ChildProcessError: ++ else: ++ # ++ # POSIX methods ++ # ++ def _get_handles(self, stdin, stdout, stderr): ++ """Construct and return tuple with IO objects: ++ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite + """ - try: -- _eintr_retry_call(os.waitpid, self.pid, 0) -- except OSError as e: -- if e.errno != errno.ECHILD: -+ _winapi.TerminateProcess(self._handle, 1) -+ except PermissionError: -+ # ERROR_ACCESS_DENIED (winerror 5) is received when the -+ # process already died. -+ rc = _winapi.GetExitCodeProcess(self._handle) -+ if rc == _winapi.STILL_ACTIVE: - raise ++ p2cread, p2cwrite = -1, -1 ++ c2pread, c2pwrite = -1, -1 ++ errread, errwrite = -1, -1 ++ ++ if stdin is None: + pass - try: - exception_name, hex_errno, err_msg = ( - errpipe_data.split(b':', 2)) @@ -10965,10 +11083,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - err_msg += ': ' + repr(orig_executable) - raise child_exception_type(errno_num, err_msg) - raise child_exception_type(err_msg) -+ self.returncode = rc - -+ kill = terminate - +- +- - def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, - _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, - _WEXITSTATUS=os.WEXITSTATUS): @@ -10982,20 +11098,6 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - else: - # Should never happen - raise SubprocessError("Unknown child exit status!") -+ else: -+ # -+ # POSIX methods -+ # -+ def _get_handles(self, stdin, stdout, stderr): -+ """Construct and return tuple with IO objects: -+ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite -+ """ -+ p2cread, p2cwrite = -1, -1 -+ c2pread, c2pwrite = -1, -1 -+ errread, errwrite = -1, -1 -+ -+ if stdin is None: -+ pass + elif stdin == PIPE: + p2cread, p2cwrite = os.pipe() + elif stdin == DEVNULL: @@ -11005,7 +11107,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + else: + # Assuming file-like object + p2cread = stdin.fileno() -+ + + if stdout is None: + pass + elif stdout == PIPE: @@ -11032,21 +11134,15 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # Assuming file-like object + errwrite = stderr.fileno() +- def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, +- _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): +- """Check if child process has terminated. Returns returncode +- attribute. + return (p2cread, p2cwrite, + c2pread, c2pwrite, + errread, errwrite) + + -+ def _close_fds(self, fds_to_keep): -+ start_fd = 3 -+ for fd in sorted(fds_to_keep): -+ if fd >= start_fd: -+ os.closerange(start_fd, fd) -+ start_fd = fd + 1 -+ if start_fd <= MAXFD: -+ os.closerange(start_fd, MAXFD) -+ -+ + def _execute_child(self, args, executable, preexec_fn, close_fds, + pass_fds, cwd, env, + startupinfo, creationflags, shell, @@ -11056,25 +11152,19 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + restore_signals, start_new_session): + """Execute program (POSIX version)""" -- def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, -- _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): -- """Check if child process has terminated. Returns returncode -- attribute. -- - This method is called by __del__, so it cannot reference anything - outside of the local scope (nor can any methods it calls). -- ++ if isinstance(args, (str, bytes)): ++ args = [args] ++ else: ++ args = list(args) + - """ - if self.returncode is None: - if not self._waitpid_lock.acquire(False): - # Something else is busy calling waitpid. Don't allow two - # at once. We know nothing yet. - return None -+ if isinstance(args, (str, bytes)): -+ args = [args] -+ else: -+ args = list(args) -+ + if shell: + args = ["/bin/sh", "-c"] + args + if executable: @@ -11161,22 +11251,33 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # exception (limited in size) + errpipe_data = bytearray() + while True: -+ part = _eintr_retry_call(os.read, errpipe_read, 50000) ++ part = os.read(errpipe_read, 50000) + errpipe_data += part + if not part or len(errpipe_data) > 50000: + break finally: - self._waitpid_lock.release() - return self.returncode +- + # be sure the FD is closed no matter what + os.close(errpipe_read) -+ + +- def _try_wait(self, wait_flags): +- """All callers to this function MUST hold self._waitpid_lock.""" +- try: +- (pid, sts) = os.waitpid(self.pid, wait_flags) +- except ChildProcessError: +- # This happens if SIGCLD is set to be ignored or waiting +- # for child processes has otherwise been disabled for our +- # process. This child is dead, we can't get the status. +- pid = self.pid +- sts = 0 +- return (pid, sts) + if errpipe_data: + try: -+ _eintr_retry_call(os.waitpid, self.pid, 0) -+ except OSError as e: -+ if e.errno != errno.ECHILD: -+ raise ++ os.waitpid(self.pid, 0) ++ except ChildProcessError: ++ pass + try: + exception_name, hex_errno, err_msg = ( + errpipe_data.split(b':', 2)) @@ -11204,28 +11305,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + err_msg += ': ' + repr(orig_executable) + raise child_exception_type(errno_num, err_msg) + raise child_exception_type(err_msg) - - -- def _try_wait(self, wait_flags): -- """All callers to this function MUST hold self._waitpid_lock.""" -- try: -- (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags) -- except OSError as e: -- if e.errno != errno.ECHILD: -- raise -- # This happens if SIGCLD is set to be ignored or waiting -- # for child processes has otherwise been disabled for our -- # process. This child is dead, we can't get the status. -- pid = self.pid -- sts = 0 -- return (pid, sts) -- -- -- def wait(self, timeout=None, endtime=None): -- """Wait for child process to terminate. Returns returncode -- attribute.""" -- if self.returncode is not None: -- return self.returncode ++ ++ + def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, + _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, + _WEXITSTATUS=os.WEXITSTATUS): @@ -11240,38 +11321,11 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # Should never happen + raise SubprocessError("Unknown child exit status!") -- # endtime is preferred to timeout. timeout is only used for -- # printing. -- if endtime is not None or timeout is not None: -- if endtime is None: -- endtime = _time() + timeout -- elif timeout is None: -- timeout = self._remaining_time(endtime) -- if endtime is not None: -- # Enter a busy loop if we have a timeout. This busy loop was -- # cribbed from Lib/threading.py in Thread.wait() at r71065. -- delay = 0.0005 # 500 us -> initial delay of 1 ms -- while True: -- if self._waitpid_lock.acquire(False): -- try: -- if self.returncode is not None: -- break # Another thread waited. -- (pid, sts) = self._try_wait(os.WNOHANG) -- assert pid == self.pid or pid == 0 -- if pid == self.pid: -- self._handle_exitstatus(sts) -- break -- finally: -- self._waitpid_lock.release() -- remaining = self._remaining_time(endtime) -- if remaining <= 0: -- raise TimeoutExpired(self.args, timeout) -- delay = min(delay * 2, remaining, .05) -- time.sleep(delay) -- else: -- while self.returncode is None: -- with self._waitpid_lock: +- def wait(self, timeout=None, endtime=None): +- """Wait for child process to terminate. Returns returncode +- attribute.""" +- if self.returncode is not None: + def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, + _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): + """Check if child process has terminated. Returns returncode @@ -11287,29 +11341,11 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + # at once. We know nothing yet. + return None + try: - if self.returncode is not None: -- break # Another thread waited. -- (pid, sts) = self._try_wait(0) -- # Check the pid and loop as waitpid has been known to -- # return 0 even without WNOHANG in odd situations. -- # http://bugs.python.org/issue14396. ++ if self.returncode is not None: + return self.returncode # Another thread waited. + pid, sts = _waitpid(self.pid, _WNOHANG) - if pid == self.pid: - self._handle_exitstatus(sts) -- return self.returncode -- -- -- def _communicate(self, input, endtime, orig_timeout): -- if self.stdin and not self._communication_started: -- # Flush stdio buffer. This might block, if the user has -- # been writing to .stdin in an uncontrolled fashion. -- self.stdin.flush() -- if not input: -- self.stdin.close() -- -- stdout = None -- stderr = None ++ if pid == self.pid: ++ self._handle_exitstatus(sts) + except OSError as e: + if _deadstate is not None: + self.returncode = _deadstate @@ -11322,27 +11358,28 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + self.returncode = 0 + finally: + self._waitpid_lock.release() -+ return self.returncode + return self.returncode -- # Only create this mapping if we haven't already. -- if not self._communication_started: -- self._fileobj2output = {} -- if self.stdout: -- self._fileobj2output[self.stdout] = [] -- if self.stderr: -- self._fileobj2output[self.stderr] = [] +- # endtime is preferred to timeout. timeout is only used for +- # printing. +- if endtime is not None or timeout is not None: +- if endtime is None: +- endtime = _time() + timeout +- elif timeout is None: +- timeout = self._remaining_time(endtime) -- if self.stdout: -- stdout = self._fileobj2output[self.stdout] -- if self.stderr: -- stderr = self._fileobj2output[self.stderr] +- if endtime is not None: +- # Enter a busy loop if we have a timeout. This busy loop was +- # cribbed from Lib/threading.py in Thread.wait() at r71065. +- delay = 0.0005 # 500 us -> initial delay of 1 ms +- while True: +- if self._waitpid_lock.acquire(False): +- try: + def _try_wait(self, wait_flags): + """All callers to this function MUST hold self._waitpid_lock.""" + try: -+ (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags) -+ except OSError as e: -+ if e.errno != errno.ECHILD: -+ raise ++ (pid, sts) = os.waitpid(self.pid, wait_flags) ++ except ChildProcessError: + # This happens if SIGCLD is set to be ignored or waiting + # for child processes has otherwise been disabled for our + # process. This child is dead, we can't get the status. @@ -11389,14 +11426,61 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + else: + while self.returncode is None: + with self._waitpid_lock: -+ if self.returncode is not None: -+ break # Another thread waited. + if self.returncode is not None: + break # Another thread waited. +- (pid, sts) = self._try_wait(os.WNOHANG) +- assert pid == self.pid or pid == 0 + (pid, sts) = self._try_wait(0) + # Check the pid and loop as waitpid has been known to + # return 0 even without WNOHANG in odd situations. + # http://bugs.python.org/issue14396. -+ if pid == self.pid: -+ self._handle_exitstatus(sts) + if pid == self.pid: + self._handle_exitstatus(sts) +- break +- finally: +- self._waitpid_lock.release() +- remaining = self._remaining_time(endtime) +- if remaining <= 0: +- raise TimeoutExpired(self.args, timeout) +- delay = min(delay * 2, remaining, .05) +- time.sleep(delay) +- else: +- while self.returncode is None: +- with self._waitpid_lock: +- if self.returncode is not None: +- break # Another thread waited. +- (pid, sts) = self._try_wait(0) +- # Check the pid and loop as waitpid has been known to +- # return 0 even without WNOHANG in odd situations. +- # http://bugs.python.org/issue14396. +- if pid == self.pid: +- self._handle_exitstatus(sts) +- return self.returncode +- +- +- def _communicate(self, input, endtime, orig_timeout): +- if self.stdin and not self._communication_started: +- # Flush stdio buffer. This might block, if the user has +- # been writing to .stdin in an uncontrolled fashion. +- self.stdin.flush() +- if not input: +- self.stdin.close() +- +- stdout = None +- stderr = None +- +- # Only create this mapping if we haven't already. +- if not self._communication_started: +- self._fileobj2output = {} +- if self.stdout: +- self._fileobj2output[self.stdout] = [] +- if self.stderr: +- self._fileobj2output[self.stderr] = [] +- +- if self.stdout: +- stdout = self._fileobj2output[self.stdout] +- if self.stderr: +- stderr = self._fileobj2output[self.stderr] + return self.returncode - self._save_input(input) @@ -11430,13 +11514,13 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + stdout = self._fileobj2output[self.stdout] if self.stderr: - selector.register(self.stderr, selectors.EVENT_READ) -+ stderr = self._fileobj2output[self.stderr] - +- - while selector.get_map(): - timeout = self._remaining_time(endtime) - if timeout is not None and timeout < 0: - raise TimeoutExpired(self.args, orig_timeout) -- ++ stderr = self._fileobj2output[self.stderr] + - ready = selector.select(timeout) - self._check_timeout(endtime, orig_timeout) + self._save_input(input) @@ -11452,10 +11536,11 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - self._input_offset + _PIPE_BUF] - try: - self._input_offset += os.write(key.fd, chunk) -- except OSError as e: -- if e.errno == errno.EPIPE: -- selector.unregister(key.fileobj) -- key.fileobj.close() +- except BrokenPipeError: +- selector.unregister(key.fileobj) +- key.fileobj.close() +- else: +- if self._input_offset >= len(self._input): + with _PopenSelector() as selector: + if self.stdin and input: + selector.register(self.stdin, selectors.EVENT_WRITE) @@ -11481,22 +11566,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + self._input_offset + _PIPE_BUF] + try: + self._input_offset += os.write(key.fd, chunk) -+ except OSError as e: -+ if e.errno == errno.EPIPE: -+ selector.unregister(key.fileobj) -+ key.fileobj.close() -+ else: -+ raise - else: -- raise -- else: -- if self._input_offset >= len(self._input): -+ if self._input_offset >= len(self._input): -+ selector.unregister(key.fileobj) -+ key.fileobj.close() -+ elif key.fileobj in (self.stdout, self.stderr): -+ data = os.read(key.fd, 32768) -+ if not data: ++ except BrokenPipeError: selector.unregister(key.fileobj) key.fileobj.close() - elif key.fileobj in (self.stdout, self.stderr): @@ -11523,16 +11593,19 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - if stderr is not None: - stderr = self._translate_newlines(stderr, - self.stderr.encoding) -+ self._fileobj2output[key.fileobj].append(data) - +- - return (stdout, stderr) -+ self.wait(timeout=self._remaining_time(endtime)) - -+ # All data exchanged. Translate lists into strings. -+ if stdout is not None: -+ stdout = b''.join(stdout) -+ if stderr is not None: -+ stderr = b''.join(stderr) +- ++ else: ++ if self._input_offset >= len(self._input): ++ selector.unregister(key.fileobj) ++ key.fileobj.close() ++ elif key.fileobj in (self.stdout, self.stderr): ++ data = os.read(key.fd, 32768) ++ if not data: ++ selector.unregister(key.fileobj) ++ key.fileobj.close() ++ self._fileobj2output[key.fileobj].append(data) - def _save_input(self, input): - # This method is called from the _communicate_with_*() methods @@ -11546,15 +11619,22 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py - - - def send_signal(self, sig): -- """Send a signal to the process -- """ -- os.kill(self.pid, sig) -- +- """Send a signal to the process.""" +- # Skip signalling a process that we know has already died. +- if self.returncode is None: +- os.kill(self.pid, sig) ++ self.wait(timeout=self._remaining_time(endtime)) + - def terminate(self): - """Terminate the process with SIGTERM - """ - self.send_signal(signal.SIGTERM) -- ++ # All data exchanged. Translate lists into strings. ++ if stdout is not None: ++ stdout = b''.join(stdout) ++ if stderr is not None: ++ stderr = b''.join(stderr) + - def kill(self): - """Kill the process with SIGKILL - """ @@ -11584,9 +11664,10 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + + + def send_signal(self, sig): -+ """Send a signal to the process -+ """ -+ os.kill(self.pid, sig) ++ """Send a signal to the process.""" ++ # Skip signalling a process that we know has already died. ++ if self.returncode is None: ++ os.kill(self.pid, sig) + + def terminate(self): + """Terminate the process with SIGTERM @@ -11598,8 +11679,8 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py + """ + self.send_signal(signal.SIGKILL) diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py ---- orig/Lib/sysconfig.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/sysconfig.py 2015-07-04 21:18:58.000000000 +0800 +--- orig/Lib/sysconfig.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/sysconfig.py 2016-02-14 10:29:10.000000000 +0800 @@ -78,6 +78,15 @@ 'scripts': '{userbase}/bin', 'data': '{userbase}', @@ -11616,7 +11697,7 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py } _SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include', -@@ -181,6 +190,8 @@ +@@ -174,6 +183,8 @@ if os.name == 'posix': # the default scheme for posix is posix_prefix return 'posix_prefix' @@ -11625,7 +11706,7 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py return os.name -@@ -205,6 +216,11 @@ +@@ -198,6 +209,11 @@ else: return joinuser("~", "Library", framework, "%d.%d" % sys.version_info[:2]) @@ -11638,8 +11719,8 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py if env_base: return env_base diff -Nru orig/Lib/test/__main__.py modified/Lib/test/__main__.py ---- orig/Lib/test/__main__.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/__main__.py 2015-05-04 07:57:38.000000000 +0800 +--- orig/Lib/test/__main__.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/__main__.py 2016-02-14 10:29:10.000000000 +0800 @@ -1,3 +1,5 @@ +import sys from test import regrtest @@ -11648,9 +11729,9 @@ diff -Nru orig/Lib/test/__main__.py modified/Lib/test/__main__.py +result = regrtest.main_in_temp_cwd() +sys.exit(result) diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py ---- orig/Lib/test/regrtest.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/regrtest.py 2015-05-04 07:58:07.000000000 +0800 -@@ -538,7 +538,7 @@ +--- orig/Lib/test/regrtest.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/regrtest.py 2016-02-14 10:29:10.000000000 +0800 +@@ -551,7 +551,7 @@ sys.stdout.flush() print() # Force a newline (just in case) print(json.dumps(result)) @@ -11659,7 +11740,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py good = [] bad = [] -@@ -678,7 +678,7 @@ +@@ -693,7 +693,7 @@ from threading import Thread except ImportError: print("Multiprocess option requires thread support") @@ -11668,7 +11749,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py from queue import Queue debug_output_pat = re.compile(r"\[\d+ refs, \d+ blocks\]$") output = Queue() -@@ -840,7 +840,7 @@ +@@ -863,7 +863,7 @@ if ns.runleaks: os.system("leaks %d" % os.getpid()) @@ -11677,7 +11758,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py # small set of tests to determine if we have a basically functioning interpreter -@@ -1561,7 +1561,9 @@ +@@ -1588,7 +1588,9 @@ # change the CWD, the original CWD will be used. The original CWD is # available from support.SAVEDCWD. with support.temp_cwd(test_cwd, quiet=True): @@ -11688,98 +11769,17 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py if __name__ == '__main__': -@@ -1586,4 +1588,5 @@ +@@ -1613,4 +1615,5 @@ # sanity check assert __file__ == os.path.abspath(sys.argv[0]) - main_in_temp_cwd() + result = main_in_temp_cwd() + sys.exit(retval) -diff -Nru orig/Lib/test/script_helper.py modified/Lib/test/script_helper.py ---- orig/Lib/test/script_helper.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/script_helper.py 2015-05-04 14:42:40.000000000 +0800 -@@ -10,12 +10,15 @@ - import py_compile - import contextlib - import shutil -+import unittest - import zipfile - - from importlib.util import source_from_cache - from test.support import make_legacy_pyc, strip_python_stderr, temp_dir - -+ - # Executing the interpreter in a subprocess -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") - def _assert_python(expected_success, *args, **env_vars): - if '__isolated' in env_vars: - isolated = env_vars.pop('__isolated') -@@ -55,6 +58,7 @@ - "stderr follows:\n%s" % (rc, err.decode('ascii', 'ignore'))) - return rc, out, err - -+ - def assert_python_ok(*args, **env_vars): - """ - Assert that running the interpreter with `args` and optional environment -@@ -68,6 +72,7 @@ - """ - return _assert_python(True, *args, **env_vars) - -+ - def assert_python_failure(*args, **env_vars): - """ - Assert that running the interpreter with `args` and optional environment -@@ -78,6 +83,8 @@ - """ - return _assert_python(False, *args, **env_vars) - -+ -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") - def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): - """Run a Python subprocess with the given arguments. - -@@ -98,6 +105,7 @@ - stdout=stdout, stderr=stderr, - **kw) - -+ - def kill_python(p): - """Run the given Popen process until completion and return stdout.""" - p.stdin.close() -@@ -109,6 +117,7 @@ - subprocess._cleanup() - return data - -+ - def make_script(script_dir, script_basename, source, omit_suffix=False): - script_filename = script_basename - if not omit_suffix: -@@ -121,6 +130,7 @@ - importlib.invalidate_caches() - return script_name - -+ - def make_zip_script(zip_dir, zip_basename, script_name, name_in_zip=None): - zip_filename = zip_basename+os.extsep+'zip' - zip_name = os.path.join(zip_dir, zip_filename) -@@ -142,10 +152,12 @@ - # zip_file.close() - return zip_name, os.path.join(zip_name, name_in_zip) - -+ - def make_pkg(pkg_dir, init_source=''): - os.mkdir(pkg_dir) - make_script(pkg_dir, '__init__', init_source) - -+ - def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, - source, depth=1, compiled=False): - unlink = [] diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.py ---- orig/Lib/test/support/__init__.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/support/__init__.py 2015-05-04 13:16:34.000000000 +0800 -@@ -778,8 +778,8 @@ +--- orig/Lib/test/support/__init__.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/support/__init__.py 2016-02-14 10:29:37.000000000 +0800 +@@ -788,8 +788,8 @@ # TESTFN_UNICODE is a non-ascii filename TESTFN_UNICODE = TESTFN + "-\xe0\xf2\u0258\u0141\u011f" @@ -11790,7 +11790,7 @@ diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.p # decomposed Unicode, encoded using UTF-8. See QA1173: # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html import unicodedata -@@ -805,8 +805,8 @@ +@@ -815,8 +815,8 @@ 'Unicode filename tests may not be effective' % (TESTFN_UNENCODABLE, TESTFN_ENCODING)) TESTFN_UNENCODABLE = None @@ -11801,38 +11801,68 @@ diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.p try: # ascii and utf-8 cannot encode the byte 0xff b'\xff'.decode(TESTFN_ENCODING) +diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/script_helper.py +--- orig/Lib/test/support/script_helper.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/support/script_helper.py 2016-02-15 18:25:31.000000000 +0800 +@@ -11,6 +11,7 @@ + import py_compile + import contextlib + import shutil ++import unittest + import zipfile + + from importlib.util import source_from_cache +@@ -20,6 +21,8 @@ + # Cached result of the expensive test performed in the function below. + __cached_interp_requires_environment = None + ++ ++@unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") + def interpreter_requires_environment(): + """ + Returns True if our sys.executable interpreter requires environment +@@ -92,6 +95,8 @@ + err = strip_python_stderr(err) + return _PythonRunResult(rc, out, err), cmd_line + ++ ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def _assert_python(expected_success, *args, **env_vars): + res, cmd_line = run_python_until_end(*args, **env_vars) + if (res.rc and expected_success) or (not res.rc and not expected_success): +@@ -144,6 +149,8 @@ + """ + return _assert_python(False, *args, **env_vars) + ++ ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): + """Run a Python subprocess with the given arguments. + diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py ---- orig/Lib/test/test_base64.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_base64.py 2015-05-04 14:42:53.000000000 +0800 -@@ -5,7 +5,6 @@ +--- orig/Lib/test/test_base64.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_base64.py 2016-02-15 18:35:22.000000000 +0800 +@@ -3,6 +3,7 @@ + import base64 + import binascii import os - import sys - import subprocess --import struct ++import subprocess from array import array + from test.support import script_helper - -@@ -622,7 +621,7 @@ +@@ -619,7 +620,7 @@ + def test_ErrorHeritage(self): self.assertTrue(issubclass(binascii.Error, ValueError)) - - +@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") class TestMain(unittest.TestCase): def tearDown(self): if os.path.exists(support.TESTFN): -@@ -658,7 +657,6 @@ - self.assertEqual(output.rstrip(), b'a\xffb') - - -- - def test_main(): - support.run_unittest(__name__) - diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py ---- orig/Lib/test/test_capi.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_capi.py 2015-05-04 14:42:39.000000000 +0800 -@@ -44,6 +44,7 @@ +--- orig/Lib/test/test_capi.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_capi.py 2016-02-14 10:29:37.000000000 +0800 +@@ -49,6 +49,7 @@ self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test") @unittest.skipUnless(threading, 'Threading required for this test.') @@ -11840,7 +11870,7 @@ diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py def test_no_FatalError_infinite_loop(self): with support.SuppressCrashReport(): p = subprocess.Popen([sys.executable, "-c", -@@ -433,6 +434,7 @@ +@@ -520,6 +521,7 @@ self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords, (), {}, b'', [42]) @@ -11849,17 +11879,17 @@ diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py class TestThreadState(unittest.TestCase): diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py ---- orig/Lib/test/test_cmd_line.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_cmd_line.py 2015-05-04 14:43:14.000000000 +0800 -@@ -56,6 +56,7 @@ +--- orig/Lib/test/test_cmd_line.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_cmd_line.py 2016-02-14 10:29:37.000000000 +0800 +@@ -57,6 +57,7 @@ rc, out, err = assert_python_ok('-vv') self.assertNotIn(b'stack overflow', err) + @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_xoptions(self): def get_xoptions(*args): - # use subprocess module directly because test.script_helper adds -@@ -72,6 +73,7 @@ + # use subprocess module directly because test.support.script_helper adds +@@ -73,6 +74,7 @@ opts = get_xoptions('-Xa', '-Xb=c,d=e') self.assertEqual(opts, {'a': True, 'b': 'c,d=e'}) @@ -11867,7 +11897,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py def test_showrefcount(self): def run_python(*args): # this is similar to assert_python_ok but doesn't strip -@@ -145,6 +147,7 @@ +@@ -146,6 +148,7 @@ # arguments as unicode (using wmain() instead of main()). @unittest.skipIf(sys.platform == 'win32', 'Windows has a native unicode API') @@ -11875,7 +11905,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py def test_undecodable_code(self): undecodable = b"\xff" env = os.environ.copy() -@@ -209,6 +212,7 @@ +@@ -210,6 +213,7 @@ ) check_output(text) @@ -11883,15 +11913,15 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py def test_unbuffered_output(self): # Test expected operation of the '-u' switch for stream in ('stdout', 'stderr'): -@@ -268,6 +272,7 @@ +@@ -269,6 +273,7 @@ # for empty and unset PYTHONPATH self.assertEqual(out1, out2) + @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_displayhook_unencodable(self): for encoding in ('ascii', 'latin-1', 'utf-8'): - env = os.environ.copy() -@@ -286,6 +291,7 @@ + # We are testing a PYTHON environment variable here, so we can't +@@ -291,6 +296,7 @@ escaped = repr(text).encode(encoding, 'backslashreplace') self.assertIn(escaped, data) @@ -11899,7 +11929,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py def check_input(self, code, expected): with tempfile.NamedTemporaryFile("wb+") as stdin: sep = os.linesep.encode('ASCII') -@@ -357,6 +363,7 @@ +@@ -363,6 +369,7 @@ # Issue #7111: Python should work without standard streams @unittest.skipIf(os.name != 'posix', "test needs POSIX semantics") @@ -11907,10 +11937,23 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py def _test_no_stdio(self, streams): code = """if 1: import os, sys +diff -Nru orig/Lib/test/test_compileall.py modified/Lib/test/test_compileall.py +--- orig/Lib/test/test_compileall.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_compileall.py 2016-02-16 11:42:28.000000000 +0800 +@@ -120,7 +120,8 @@ + compileall.compile_dir(self.directory, quiet=True, workers=5) + self.assertTrue(pool_mock.called) + +- def test_compile_workers_non_positive(self): ++ @mock.patch('compileall.ProcessPoolExecutor') ++ def test_compile_workers_non_positive(self, pool_mock): + with self.assertRaisesRegex(ValueError, + "workers must be greater or equal to 0"): + compileall.compile_dir(self.directory, workers=-1) diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py ---- orig/Lib/test/test_doctest.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_doctest.py 2015-04-27 21:32:27.000000000 +0800 -@@ -2657,7 +2657,12 @@ +--- orig/Lib/test/test_doctest.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_doctest.py 2016-02-14 10:29:37.000000000 +0800 +@@ -2707,7 +2707,12 @@ TestResults(failed=1, attempted=1) """ @@ -11924,18 +11967,21 @@ diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py The doctest module can be used to run doctests against an arbitrary file. These tests test this CLI functionality. +diff -Nru orig/Lib/test/test_eintr.py modified/Lib/test/test_eintr.py +--- orig/Lib/test/test_eintr.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_eintr.py 2016-02-15 18:30:29.000000000 +0800 +@@ -9,6 +9,7 @@ + + + @unittest.skipUnless(os.name == "posix", "only supported on Unix") ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + class EINTRTests(unittest.TestCase): + + @unittest.skipUnless(hasattr(signal, "setitimer"), "requires setitimer()") diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler.py ---- orig/Lib/test/test_faulthandler.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_faulthandler.py 2015-05-04 14:45:25.000000000 +0800 -@@ -7,7 +7,6 @@ - import subprocess - import sys - from test import support, script_helper --from test.script_helper import assert_python_ok - import tempfile - import unittest - from textwrap import dedent -@@ -20,6 +19,7 @@ +--- orig/Lib/test/test_faulthandler.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_faulthandler.py 2016-02-14 10:29:37.000000000 +0800 +@@ -24,6 +24,7 @@ TIMEOUT = 0.5 @@ -11943,7 +11989,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler def expected_traceback(lineno1, lineno2, header, min_count=1): regex = header regex += ' File "", line %s in func\n' % lineno1 -@@ -29,6 +29,7 @@ +@@ -33,6 +34,7 @@ else: return '^' + regex + '$' @@ -11951,15 +11997,15 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler @contextmanager def temporary_filename(): filename = tempfile.mktemp() -@@ -37,6 +38,7 @@ +@@ -41,6 +43,7 @@ finally: support.unlink(filename) + class FaultHandlerTests(unittest.TestCase): - def get_output(self, code, filename=None): + def get_output(self, code, filename=None, fd=None): """ -@@ -247,6 +249,7 @@ +@@ -282,6 +285,7 @@ finally: sys.stderr = orig_stderr @@ -11967,16 +12013,16 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler def test_disabled_by_default(self): # By default, the module should be disabled code = "import faulthandler; print(faulthandler.is_enabled())" -@@ -255,6 +258,7 @@ - output = subprocess.check_output(args) +@@ -294,6 +298,7 @@ + output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"False") + @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_sys_xoptions(self): # Test python -X faulthandler code = "import faulthandler; print(faulthandler.is_enabled())" -@@ -263,6 +267,7 @@ - output = subprocess.check_output(args) +@@ -306,6 +311,7 @@ + output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"True") + @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") @@ -11984,8 +12030,8 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler # empty env var code = "import faulthandler; print(faulthandler.is_enabled())" diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py ---- orig/Lib/test/test_fcntl.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_fcntl.py 2015-04-27 21:44:57.000000000 +0800 +--- orig/Lib/test/test_fcntl.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_fcntl.py 2016-02-14 10:29:37.000000000 +0800 @@ -23,7 +23,7 @@ start_len = "qq" @@ -12012,9 +12058,9 @@ diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py def setUp(self): diff -Nru orig/Lib/test/test_file_eintr.py modified/Lib/test/test_file_eintr.py ---- orig/Lib/test/test_file_eintr.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_file_eintr.py 2015-05-04 14:42:38.000000000 +0800 -@@ -68,6 +68,7 @@ +--- orig/Lib/test/test_file_eintr.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_file_eintr.py 2016-02-14 10:29:37.000000000 +0800 +@@ -69,6 +69,7 @@ self.fail('Error from IO process %s:\nSTDOUT:\n%sSTDERR:\n%s\n' % (why, stdout.decode(), stderr.decode())) @@ -12023,9 +12069,9 @@ diff -Nru orig/Lib/test/test_file_eintr.py modified/Lib/test/test_file_eintr.py """Generic buffered read method test harness to validate EINTR behavior. diff -Nru orig/Lib/test/test_gc.py modified/Lib/test/test_gc.py ---- orig/Lib/test/test_gc.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_gc.py 2015-05-04 14:42:37.000000000 +0800 -@@ -633,6 +633,8 @@ +--- orig/Lib/test/test_gc.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_gc.py 2016-02-14 10:29:37.000000000 +0800 +@@ -650,6 +650,8 @@ del x gc.set_debug(%s) """ @@ -12035,21 +12081,36 @@ diff -Nru orig/Lib/test/test_gc.py modified/Lib/test/test_gc.py p = subprocess.Popen([sys.executable, "-Wd", "-c", code], stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py ---- orig/Lib/test/test_gdb.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_gdb.py 2015-05-03 00:05:45.000000000 +0800 -@@ -28,6 +28,9 @@ - # This is what "no gdb" looks like. There may, however, be other - # errors that manifest this way too. - raise unittest.SkipTest("Couldn't find gdb on the path") -+except AttributeError: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") +--- orig/Lib/test/test_gdb.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_gdb.py 2016-02-14 11:22:03.000000000 +0800 +@@ -5,7 +5,6 @@ + + import os + import re +-import pprint + import subprocess + import sys + import sysconfig +@@ -21,6 +20,7 @@ + from test import support + from test.support import run_unittest, findfile, python_is_optimized + + - gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) - gdb_major_version = int(gdb_version_number.group(1)) - gdb_minor_version = int(gdb_version_number.group(2)) + def get_gdb_version(): + try: + proc = subprocess.Popen(["gdb", "-nx", "--version"], +@@ -32,6 +32,8 @@ + # This is what "no gdb" looks like. There may, however, be other + # errors that manifest this way too. + raise unittest.SkipTest("Couldn't find gdb on the path") ++ except AttributeError: ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") + + # Regex to parse: + # 'GNU gdb (GDB; SUSE Linux Enterprise 12) 7.7\n' -> 7.7 diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py ---- orig/Lib/test/test_getpass.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_getpass.py 2015-05-02 22:48:44.000000000 +0800 +--- orig/Lib/test/test_getpass.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_getpass.py 2016-02-14 10:29:37.000000000 +0800 @@ -1,5 +1,6 @@ import getpass import os @@ -12066,8 +12127,8 @@ diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py class GetpassGetuserTest(unittest.TestCase): diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.py ---- orig/Lib/test/test_httpservers.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_httpservers.py 2015-06-28 20:16:12.000000000 +0800 +--- orig/Lib/test/test_httpservers.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_httpservers.py 2016-02-14 10:29:37.000000000 +0800 @@ -16,6 +16,7 @@ import urllib.parse import html @@ -12076,7 +12137,7 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p import tempfile from io import BytesIO -@@ -277,11 +278,11 @@ +@@ -331,11 +332,11 @@ with open(os.path.join(self.tempdir, filename), 'wb') as f: f.write(support.TESTFN_UNDECODABLE) response = self.request(self.tempdir_name + '/') @@ -12089,8 +12150,8 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p + if name != 'test': # Ignore a filename created in setUp(). filename = name break - body = self.check_status_and_reason(response, 200) -@@ -362,6 +363,7 @@ + body = self.check_status_and_reason(response, HTTPStatus.OK) +@@ -438,6 +439,7 @@ @unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, "This test can't be run reliably as root (issue #13308).") @@ -12098,15 +12159,15 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p class CGIHTTPServerTestCase(BaseTestCase): class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler): pass -@@ -550,6 +552,7 @@ +@@ -653,6 +655,7 @@ def log_message(self, format, *args): pass + class RejectingSocketlessRequestHandler(SocketlessRequestHandler): def handle_expect_100(self): - self.send_error(417) -@@ -580,7 +583,7 @@ + self.send_error(HTTPStatus.EXPECTATION_FAILED) +@@ -683,7 +686,7 @@ HTTPResponseMatch = re.compile(b'HTTP/1.[0-9]+ 200 OK') @@ -12115,18 +12176,18 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p self.handler = SocketlessRequestHandler() def send_typical_request(self, message): -@@ -731,6 +734,7 @@ - self.assertEqual(result[0], b'HTTP/1.1 400 Line too long\r\n') - self.assertFalse(self.handler.get_called) +@@ -873,6 +876,7 @@ + self.handler.handle() + self.assertRaises(StopIteration, next, close_values) + class SimpleHTTPRequestHandlerTestCase(unittest.TestCase): """ Test url parsing """ def setUp(self): diff -Nru orig/Lib/test/test_imp.py modified/Lib/test/test_imp.py ---- orig/Lib/test/test_imp.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_imp.py 2015-04-30 10:07:30.000000000 +0800 -@@ -19,7 +19,7 @@ +--- orig/Lib/test/test_imp.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_imp.py 2016-02-14 10:29:37.000000000 +0800 +@@ -20,7 +20,7 @@ """Decorator to skip a test if not running under CPython or lacking imp.load_dynamic().""" meth = support.cpython_only(meth) @@ -12135,10 +12196,10 @@ diff -Nru orig/Lib/test/test_imp.py modified/Lib/test/test_imp.py 'imp.load_dynamic() required')(meth) -diff -Nru orig/Lib/test/test_import.py modified/Lib/test/test_import.py ---- orig/Lib/test/test_import.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_import.py 2015-07-04 22:52:30.000000000 +0800 -@@ -280,6 +280,7 @@ +diff -Nru orig/Lib/test/test_import/__init__.py modified/Lib/test/test_import/__init__.py +--- orig/Lib/test/test_import/__init__.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_import/__init__.py 2016-02-15 19:36:49.000000000 +0800 +@@ -278,6 +278,7 @@ """)) script_helper.assert_python_ok(testfn) @@ -12147,11 +12208,11 @@ diff -Nru orig/Lib/test/test_import.py modified/Lib/test/test_import.py # A modification timestamp larger than 2**32 should not be a problem # when importing a module (issue #11235). diff -Nru orig/Lib/test/test_importlib/extension/test_finder.py modified/Lib/test/test_importlib/extension/test_finder.py ---- orig/Lib/test/test_importlib/extension/test_finder.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_importlib/extension/test_finder.py 2015-04-30 22:06:18.000000000 +0800 -@@ -4,11 +4,13 @@ +--- orig/Lib/test/test_importlib/extension/test_finder.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_importlib/extension/test_finder.py 2016-02-14 10:29:41.000000000 +0800 +@@ -3,11 +3,13 @@ - machinery = test_util.import_importlib('importlib.machinery') + machinery = util.import_importlib('importlib.machinery') +import sys import unittest @@ -12164,46 +12225,29 @@ diff -Nru orig/Lib/test/test_importlib/extension/test_finder.py modified/Lib/tes """Test the finder for extension modules.""" diff -Nru orig/Lib/test/test_importlib/extension/test_loader.py modified/Lib/test/test_importlib/extension/test_loader.py ---- orig/Lib/test/test_importlib/extension/test_loader.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_importlib/extension/test_loader.py 2015-04-30 21:52:11.000000000 +0800 -@@ -10,6 +10,7 @@ - import unittest +--- orig/Lib/test/test_importlib/extension/test_loader.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_importlib/extension/test_loader.py 2016-02-15 20:18:13.000000000 +0800 +@@ -11,6 +11,7 @@ + import importlib +@unittest.skipIf(sys.platform == 'ios', 'iOS does not support dynamic loading') class LoaderTests(abc.LoaderTests): """Test load_module() for extension modules.""" -diff -Nru orig/Lib/test/test_importlib/source/test_case_sensitivity.py modified/Lib/test/test_importlib/source/test_case_sensitivity.py ---- orig/Lib/test/test_importlib/source/test_case_sensitivity.py 2015-02-03 19:49:03.000000000 +0800 -+++ modified/Lib/test/test_importlib/source/test_case_sensitivity.py 2015-05-02 19:23:40.000000000 +0800 -@@ -63,18 +63,22 @@ - self.assertIsNotNone(insensitive) - self.assertIn(self.name, insensitive.get_filename(self.name)) - -+ - class CaseSensitivityTestPEP302(CaseSensitivityTest): - def find(self, finder): - return finder.find_module(self.name) - -+ - Frozen_CaseSensitivityTestPEP302, Source_CaseSensitivityTestPEP302 = util.test_both( - CaseSensitivityTestPEP302, importlib=importlib, machinery=machinery) - -+ - class CaseSensitivityTestPEP451(CaseSensitivityTest): - def find(self, finder): - found = finder.find_spec(self.name) - return found.loader if found is not None else found +@@ -82,6 +83,8 @@ + Source_LoaderTests + ) = util.test_both(LoaderTests, machinery=machinery) + - Frozen_CaseSensitivityTestPEP451, Source_CaseSensitivityTestPEP451 = util.test_both( - CaseSensitivityTestPEP451, importlib=importlib, machinery=machinery) - ++@unittest.skipIf(sys.platform == 'ios', 'iOS does not support dynamic loading') + class MultiPhaseExtensionModuleTests(abc.LoaderTests): + """Test loading extension modules with multi-phase initialization (PEP 489) + """ diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py ---- orig/Lib/test/test_io.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_io.py 2015-05-04 10:09:23.000000000 +0800 -@@ -420,7 +420,7 @@ +--- orig/Lib/test/test_io.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_io.py 2016-02-14 10:29:41.000000000 +0800 +@@ -416,7 +416,7 @@ # On Windows and Mac OSX this test comsumes large resources; It takes # a long time to build the >2GB file and takes >2GB of disk space # therefore the resource must be enabled to run this test. @@ -12212,26 +12256,26 @@ diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py support.requires( 'largefile', 'test requires %s bytes and a long time to run' % self.LARGE) -@@ -688,6 +688,7 @@ +@@ -715,6 +715,7 @@ support.gc_collect() - self.assertTrue(wr() is None, wr) + self.assertIsNone(wr(), wr) + class PyIOTest(IOTest): pass diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_tool.py ---- orig/Lib/test/test_json/test_tool.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_json/test_tool.py 2015-05-04 14:42:37.000000000 +0800 -@@ -6,6 +6,7 @@ - from test import support - from test.script_helper import assert_python_ok +--- orig/Lib/test/test_json/test_tool.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_json/test_tool.py 2016-02-14 10:29:41.000000000 +0800 +@@ -7,6 +7,7 @@ + from test.support.script_helper import assert_python_ok + + class TestTool(unittest.TestCase): data = """ -@@ -37,6 +38,7 @@ +@@ -60,6 +61,7 @@ ] """) @@ -12240,8 +12284,8 @@ diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_ with subprocess.Popen( (sys.executable, '-m', 'json.tool'), diff -Nru orig/Lib/test/test_keyword.py modified/Lib/test/test_keyword.py ---- orig/Lib/test/test_keyword.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_keyword.py 2015-05-04 14:42:36.000000000 +0800 +--- orig/Lib/test/test_keyword.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_keyword.py 2016-02-14 10:29:41.000000000 +0800 @@ -46,6 +46,7 @@ fp.writelines(lines[:lines.index(b"#--start keywords--" + nl) + 1]) fp.writelines(lines[lines.index(b"#--end keywords--" + nl):]) @@ -12251,9 +12295,9 @@ diff -Nru orig/Lib/test/test_keyword.py modified/Lib/test/test_keyword.py proc = subprocess.Popen([sys.executable, KEYWORD_FILE, diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py ---- orig/Lib/test/test_logging.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_logging.py 2015-07-04 22:52:40.000000000 +0800 -@@ -1460,9 +1460,20 @@ +--- orig/Lib/test/test_logging.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_logging.py 2016-02-14 10:29:41.000000000 +0800 +@@ -1452,9 +1452,20 @@ # just need a name - file can't be present, or we'll get an # 'address already in use' error. os.remove(fn) @@ -12274,7 +12318,7 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py @unittest.skipUnless(threading, 'Threading required for this test.') class UnixSocketHandlerTest(SocketHandlerTest): -@@ -1535,6 +1546,7 @@ +@@ -1527,6 +1538,7 @@ self.assertEqual(self.log_output, "spam\neggs\n") @unittest.skipUnless(hasattr(socket, "AF_UNIX"), "Unix sockets required") @@ -12282,7 +12326,7 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py @unittest.skipUnless(threading, 'Threading required for this test.') class UnixDatagramHandlerTest(DatagramHandlerTest): -@@ -1610,6 +1622,7 @@ +@@ -1602,6 +1614,7 @@ self.assertEqual(self.log_output, b'<11>h\xc3\xa4m-sp\xc3\xa4m') @unittest.skipUnless(hasattr(socket, "AF_UNIX"), "Unix sockets required") @@ -12291,8 +12335,8 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py class UnixSysLogHandlerTest(SysLogHandlerTest): diff -Nru orig/Lib/test/test_mailcap.py modified/Lib/test/test_mailcap.py ---- orig/Lib/test/test_mailcap.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_mailcap.py 2015-05-04 14:35:55.000000000 +0800 +--- orig/Lib/test/test_mailcap.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_mailcap.py 2016-02-14 10:29:41.000000000 +0800 @@ -1,6 +1,7 @@ import mailcap import os @@ -12311,11 +12355,11 @@ diff -Nru orig/Lib/test/test_mailcap.py modified/Lib/test/test_mailcap.py # findmatch() will automatically check any "test" conditions and skip # the entry if the check fails. diff -Nru orig/Lib/test/test_marshal.py modified/Lib/test/test_marshal.py ---- orig/Lib/test/test_marshal.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_marshal.py 2015-05-04 10:29:33.000000000 +0800 -@@ -190,7 +190,10 @@ +--- orig/Lib/test/test_marshal.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_marshal.py 2016-02-14 10:29:41.000000000 +0800 +@@ -195,7 +195,10 @@ if os.name == 'nt' and hasattr(sys, 'gettotalrefcount'): - MAX_MARSHAL_STACK_DEPTH = 1500 + MAX_MARSHAL_STACK_DEPTH = 1000 else: - MAX_MARSHAL_STACK_DEPTH = 2000 + if sys.platform == 'ios': @@ -12326,8 +12370,8 @@ diff -Nru orig/Lib/test/test_marshal.py modified/Lib/test/test_marshal.py last.append([0]) last = last[-1] diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py ---- orig/Lib/test/test_mmap.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_mmap.py 2015-05-04 13:15:53.000000000 +0800 +--- orig/Lib/test/test_mmap.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_mmap.py 2016-02-14 10:29:41.000000000 +0800 @@ -229,7 +229,7 @@ with open(TESTFN, "r+b") as f: self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, access=4) @@ -12337,7 +12381,7 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py # Try incompatible flags, prot and access parameters. with open(TESTFN, "r+b") as f: self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, -@@ -718,7 +718,7 @@ +@@ -722,7 +722,7 @@ unlink(TESTFN) def _make_test_file(self, num_zeroes, tail): @@ -12347,9 +12391,9 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py 'test requires %s bytes and a long time to run' % str(0x180000000)) f = open(TESTFN, 'w+b') diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py ---- orig/Lib/test/test_os.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_os.py 2015-05-04 14:42:36.000000000 +0800 -@@ -555,6 +555,7 @@ +--- orig/Lib/test/test_os.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_os.py 2016-02-15 18:29:10.000000000 +0800 +@@ -657,6 +657,7 @@ # Bug 1110478 @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') @@ -12357,7 +12401,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_update2(self): os.environ.clear() os.environ.update(HELLO="World") -@@ -563,6 +564,7 @@ +@@ -665,6 +666,7 @@ self.assertEqual(value, "World") @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') @@ -12365,7 +12409,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_os_popen_iter(self): with os.popen( "/bin/sh -c 'echo \"line1\nline2\nline3\"'") as popen: -@@ -1147,6 +1149,7 @@ +@@ -1343,6 +1345,7 @@ os.execve = orig_execve os.defpath = orig_defpath @@ -12373,7 +12417,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py class ExecTests(unittest.TestCase): @unittest.skipIf(USING_LINUXTHREADS, "avoid triggering a linuxthreads bug: see issue #4970") -@@ -1398,6 +1401,7 @@ +@@ -1604,6 +1607,7 @@ self.assertRaises(OverflowError, os.setreuid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()') @@ -12381,7 +12425,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_setreuid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -1406,6 +1410,7 @@ +@@ -1612,6 +1616,7 @@ 'import os,sys;os.setreuid(-1,-1);sys.exit(0)']) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') @@ -12389,7 +12433,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_setregid(self): if os.getuid() != 0 and not HAVE_WHEEL_GROUP: self.assertRaises(OSError, os.setregid, 0, 0) -@@ -1413,6 +1418,7 @@ +@@ -1619,6 +1624,7 @@ self.assertRaises(OverflowError, os.setregid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') @@ -12397,7 +12441,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_setregid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -1838,6 +1844,7 @@ +@@ -2075,6 +2081,7 @@ class PidTests(unittest.TestCase): @unittest.skipUnless(hasattr(os, 'getppid'), "test needs os.getppid") @@ -12405,7 +12449,16 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py def test_getppid(self): p = subprocess.Popen([sys.executable, '-c', 'import os; print(os.getppid())'], -@@ -2295,6 +2302,7 @@ +@@ -2083,6 +2090,8 @@ + # We are the parent of our subprocess + self.assertEqual(int(stdout), os.getpid()) + ++ @unittest.skipUnless(hasattr(os, 'spawnv'), "test needs os.spawnv") ++ @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid") + def test_waitpid(self): + args = [sys.executable, '-c', 'pass'] + pid = os.spawnv(os.P_NOWAIT, args[0], args) +@@ -2548,6 +2557,7 @@ self.assertGreaterEqual(size.columns, 0) self.assertGreaterEqual(size.lines, 0) @@ -12414,9 +12467,9 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py """Check if stty returns the same results diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py ---- orig/Lib/test/test_pdb.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_pdb.py 2015-05-04 14:42:35.000000000 +0800 -@@ -910,6 +910,7 @@ +--- orig/Lib/test/test_pdb.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_pdb.py 2016-02-14 10:29:41.000000000 +0800 +@@ -914,6 +914,7 @@ class PdbTestCase(unittest.TestCase): @@ -12424,7 +12477,7 @@ diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py def run_pdb(self, script, commands): """Run 'script' lines with pdb and the pdb 'commands'.""" filename = 'main.py' -@@ -957,6 +958,7 @@ +@@ -962,6 +963,7 @@ ('bar', 4), ) @@ -12432,7 +12485,7 @@ diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py def test_issue7964(self): # open the file as binary so we can force \r\n newline with open(support.TESTFN, 'wb') as f: -@@ -1008,6 +1010,7 @@ +@@ -1013,6 +1015,7 @@ any('main.py(5)foo()->None' in l for l in stdout.splitlines()), 'Fail to step into the caller after a return') @@ -12441,8 +12494,8 @@ diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py # invoking "continue" on a non-main thread triggered an exception # inside signal.signal diff -Nru orig/Lib/test/test_pep277.py modified/Lib/test/test_pep277.py ---- orig/Lib/test/test_pep277.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_pep277.py 2015-05-04 13:16:06.000000000 +0800 +--- orig/Lib/test/test_pep277.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_pep277.py 2016-02-14 10:29:41.000000000 +0800 @@ -27,7 +27,7 @@ # these normal forms. For example, HFS Plus uses a variant of Normal Form D # in which U+2000 through U+2FFF, U+F900 through U+FAFF, and U+2F800 through @@ -12480,8 +12533,8 @@ diff -Nru orig/Lib/test/test_pep277.py modified/Lib/test/test_pep277.py sf0 = set(self.files) with warnings.catch_warnings(): diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py ---- orig/Lib/test/test_pipes.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_pipes.py 2015-05-02 21:03:07.000000000 +0800 +--- orig/Lib/test/test_pipes.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_pipes.py 2016-02-14 10:29:41.000000000 +0800 @@ -1,17 +1,21 @@ import pipes import os @@ -12505,8 +12558,8 @@ diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py def tearDown(self): for f in (TESTFN, TESTFN2): diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py ---- orig/Lib/test/test_platform.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_platform.py 2015-05-04 14:43:41.000000000 +0800 +--- orig/Lib/test/test_platform.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_platform.py 2016-02-14 10:29:41.000000000 +0800 @@ -9,11 +9,13 @@ from test import support @@ -12538,7 +12591,7 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py @unittest.skipUnless(sys.platform == 'darwin', "OSX only test") def test_mac_ver_with_fork(self): # Issue7895: platform.mac_ver() crashes when using fork without exec -@@ -265,6 +266,7 @@ +@@ -272,6 +273,7 @@ ): self.assertEqual(platform._parse_release_file(input), output) @@ -12547,8 +12600,8 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py mswindows = (sys.platform == "win32") diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py ---- orig/Lib/test/test_poll.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_poll.py 2015-05-04 14:43:49.000000000 +0800 +--- orig/Lib/test/test_poll.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_poll.py 2016-02-14 10:29:41.000000000 +0800 @@ -25,6 +25,7 @@ match.append(fd) return match @@ -12566,8 +12619,8 @@ diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py ---- orig/Lib/test/test_popen.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_popen.py 2015-05-04 14:42:34.000000000 +0800 +--- orig/Lib/test/test_popen.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_popen.py 2016-02-14 10:29:41.000000000 +0800 @@ -5,7 +5,9 @@ import unittest @@ -12597,19 +12650,11 @@ diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py self.assertEqual(got, expected) def test_popen(self): -@@ -57,6 +61,7 @@ - with os.popen("echo hello") as f: - self.assertEqual(list(f), ["hello\n"]) - -+ - def test_main(): - support.run_unittest(PopenTest) - diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py ---- orig/Lib/test/test_posix.py 2015-05-02 23:43:12.000000000 +0800 -+++ modified/Lib/test/test_posix.py 2015-05-04 14:42:33.000000000 +0800 -@@ -12,8 +12,8 @@ - import fcntl +--- orig/Lib/test/test_posix.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_posix.py 2016-02-14 10:29:41.000000000 +0800 +@@ -11,8 +11,8 @@ + import os import platform import pwd -import shutil @@ -12618,7 +12663,7 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py import tempfile import unittest import warnings -@@ -21,6 +21,7 @@ +@@ -20,6 +20,7 @@ _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(), support.TESTFN + '-dummy-symlink') @@ -12626,7 +12671,7 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py class PosixTester(unittest.TestCase): def setUp(self): -@@ -492,9 +493,10 @@ +@@ -529,9 +530,10 @@ check_stat(uid, gid) self.assertRaises(OSError, chown_func, first_param, 0, -1) check_stat(uid, gid) @@ -12640,7 +12685,7 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py # test illegal types for t in str, float: self.assertRaises(TypeError, chown_func, first_param, t(uid), gid) -@@ -754,8 +756,8 @@ +@@ -791,8 +793,8 @@ group = pwd.getpwuid(os.getuid())[3] self.assertIn(group, posix.getgrouplist(user, group)) @@ -12651,9 +12696,9 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py with os.popen('id -G 2>/dev/null') as idg: groups = idg.read().strip() diff -Nru orig/Lib/test/test_pty.py modified/Lib/test/test_pty.py ---- orig/Lib/test/test_pty.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_pty.py 2015-05-04 14:42:26.000000000 +0800 -@@ -110,7 +110,7 @@ +--- orig/Lib/test/test_pty.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_pty.py 2016-02-14 10:29:41.000000000 +0800 +@@ -111,7 +111,7 @@ os.close(slave_fd) os.close(master_fd) @@ -12663,9 +12708,9 @@ diff -Nru orig/Lib/test/test_pty.py modified/Lib/test/test_pty.py debug("calling pty.fork()") pid, master_fd = pty.fork() diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py ---- orig/Lib/test/test_quopri.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_quopri.py 2015-05-04 14:42:33.000000000 +0800 -@@ -174,6 +174,7 @@ +--- orig/Lib/test/test_quopri.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_quopri.py 2016-02-14 10:29:41.000000000 +0800 +@@ -180,6 +180,7 @@ for p, e in self.HSTRINGS: self.assertEqual(quopri.decodestring(e, header=True), p) @@ -12673,7 +12718,7 @@ diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py def test_scriptencode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri"], -@@ -190,6 +191,7 @@ +@@ -196,6 +197,7 @@ self.assertEqual(cout[i], e[i]) self.assertEqual(cout, e) @@ -12681,9 +12726,52 @@ diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py def test_scriptdecode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri", "-d"], +diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_helper.py +--- orig/Lib/test/test_script_helper.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_script_helper.py 2016-02-15 19:02:46.000000000 +0800 +@@ -34,6 +34,7 @@ + self.assertIn('import sys; sys.exit(0)', error_msg, + msg='unexpected command line.') + ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + @mock.patch('subprocess.Popen') + def test_assert_python_isolated_when_env_not_required(self, mock_popen): + with mock.patch.object(script_helper, +@@ -52,6 +53,7 @@ + self.assertIn('-I', popen_command) + self.assertNotIn('-E', popen_command) # -I overrides this + ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + @mock.patch('subprocess.Popen') + def test_assert_python_not_isolated_when_env_is_required(self, mock_popen): + """Ensure that -I is not passed when the environment is required.""" +@@ -81,6 +83,7 @@ + # Reset the private cached state. + script_helper.__dict__['__cached_interp_requires_environment'] = None + ++ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") + @mock.patch('subprocess.check_call') + def test_interpreter_requires_environment_true(self, mock_check_call): + mock_check_call.side_effect = subprocess.CalledProcessError('', '') +@@ -88,6 +91,7 @@ + self.assertTrue(script_helper.interpreter_requires_environment()) + self.assertEqual(1, mock_check_call.call_count) + ++ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") + @mock.patch('subprocess.check_call') + def test_interpreter_requires_environment_false(self, mock_check_call): + # The mocked subprocess.check_call fakes a no-error process. +@@ -95,6 +99,7 @@ + self.assertFalse(script_helper.interpreter_requires_environment()) + self.assertEqual(1, mock_check_call.call_count) + ++ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") + @mock.patch('subprocess.check_call') + def test_interpreter_requires_environment_details(self, mock_check_call): + script_helper.interpreter_requires_environment() diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py ---- orig/Lib/test/test_select.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_select.py 2015-05-04 14:42:32.000000000 +0800 +--- orig/Lib/test/test_select.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_select.py 2016-02-14 10:29:41.000000000 +0800 @@ -1,11 +1,13 @@ import errno import os @@ -12708,17 +12796,17 @@ diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' p = os.popen(cmd, 'r') diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py ---- orig/Lib/test/test_shutil.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_shutil.py 2015-07-04 22:52:47.000000000 +0800 -@@ -48,6 +48,7 @@ +--- orig/Lib/test/test_shutil.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_shutil.py 2016-02-14 10:29:41.000000000 +0800 +@@ -51,6 +51,7 @@ except ImportError: - ZIP_SUPPORT = find_executable('zip') + ZIP_SUPPORT = shutil.which('zip') + def _fake_rename(*args, **kwargs): # Pretend the destination path is on a different filesystem. raise OSError(getattr(errno, 'EXDEV', 18), "Invalid cross-device link") -@@ -1318,6 +1319,7 @@ +@@ -1373,6 +1374,7 @@ self.assertEqual(['foo'], os.listdir(rv)) @@ -12726,7 +12814,7 @@ diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py class TestWhich(unittest.TestCase): def setUp(self): -@@ -1741,6 +1743,7 @@ +@@ -1814,6 +1816,7 @@ self.assertEqual(size.lines, 888) @unittest.skipUnless(os.isatty(sys.__stdout__.fileno()), "not on tty") @@ -12735,9 +12823,9 @@ diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py """Check if stty returns the same results ignoring env diff -Nru orig/Lib/test/test_signal.py modified/Lib/test/test_signal.py ---- orig/Lib/test/test_signal.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_signal.py 2015-05-04 14:42:31.000000000 +0800 -@@ -135,6 +135,7 @@ +--- orig/Lib/test/test_signal.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_signal.py 2016-02-14 10:29:41.000000000 +0800 +@@ -158,6 +158,7 @@ @unittest.skipIf(sys.platform=='freebsd6', 'inter process signals not reliable (do not mix well with threading) ' 'on freebsd6') @@ -12746,8 +12834,8 @@ diff -Nru orig/Lib/test/test_signal.py modified/Lib/test/test_signal.py # This function spawns a child process to insulate the main # test-running process from all the signals. It then diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py ---- orig/Lib/test/test_site.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_site.py 2015-07-04 21:21:33.000000000 +0800 +--- orig/Lib/test/test_site.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_site.py 2016-02-14 10:29:41.000000000 +0800 @@ -31,6 +31,7 @@ os.makedirs(site.USER_SITE) site.addsitedir(site.USER_SITE) @@ -12773,7 +12861,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py # OS X framework builds site.PREFIXES = ['Python.framework'] dirs = site.getsitepackages() -@@ -322,6 +324,7 @@ +@@ -320,6 +322,7 @@ """Restore sys.path""" sys.path[:] = self.sys_path @@ -12781,7 +12869,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py def test_abs_paths(self): # Make sure all imported modules have their __file__ and __cached__ # attributes as absolute paths. Arranging to put the Lib directory on -@@ -432,6 +435,7 @@ +@@ -435,6 +438,7 @@ class StartupImportTests(unittest.TestCase): @@ -12790,9 +12878,9 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py # This tests checks which modules are loaded by Python when it # initially starts upon startup. diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py ---- orig/Lib/test/test_socket.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_socket.py 2015-07-04 22:53:12.000000000 +0800 -@@ -530,6 +530,7 @@ +--- orig/Lib/test/test_socket.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_socket.py 2016-02-15 19:36:34.000000000 +0800 +@@ -532,6 +532,7 @@ sock.bind(path) self.addCleanup(support.unlink, path) @@ -12800,7 +12888,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py class UnixStreamBase(UnixSocketTestBase): """Base class for Unix-domain SOCK_STREAM tests.""" -@@ -774,8 +775,7 @@ +@@ -783,8 +784,7 @@ self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqhn, repr(all_host_names))) def test_host_resolution(self): @@ -12810,7 +12898,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py self.assertRaises(OSError, socket.gethostbyname, addr) self.assertRaises(OSError, socket.gethostbyaddr, addr) -@@ -787,6 +787,12 @@ +@@ -796,6 +796,12 @@ for host in [support.HOST]: self.assertIn(host, socket.gethostbyaddr(host)[2]) @@ -12823,52 +12911,52 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(hasattr(socket, 'sethostname'), "test needs socket.sethostname()") @unittest.skipUnless(hasattr(socket, 'gethostname'), "test needs socket.gethostname()") def test_sethostname(self): -@@ -1286,7 +1292,7 @@ - # these should all be successful - socket.gethostbyname('испытание.python.org') - socket.gethostbyname_ex('испытание.python.org') -- socket.getaddrinfo('испытание.python.org',0,socket.AF_UNSPEC,socket.SOCK_STREAM) -+ socket.getaddrinfo('испытание.python.org', 0, socket.AF_UNSPEC, socket.SOCK_STREAM) - # this may not work if the forward lookup choses the IPv6 address, as that doesn't - # have a reverse entry yet - # socket.gethostbyaddr('испытание.python.org') -@@ -2727,7 +2733,7 @@ +@@ -896,7 +902,7 @@ + # I've ordered this by protocols that have both a tcp and udp + # protocol, at least for modern Linuxes. + if (sys.platform.startswith(('freebsd', 'netbsd', 'gnukfreebsd')) +- or sys.platform in ('linux', 'darwin')): ++ or sys.platform in ('linux', 'darwin', 'ios')): + # avoid the 'echo' service on this platform, as there is an + # assumption breaking non-standard port/protocol entry + services = ('daytime', 'qotd', 'domain') +@@ -2748,7 +2754,7 @@ def _testFDPassCMSG_LEN(self): self.createAndSendFDs(1) - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") + @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") @requireAttrs(socket, "CMSG_SPACE") def testFDPassSeparate(self): - # Pass two FDs in two separate arrays. Arrays may be combined -@@ -2737,7 +2743,7 @@ +@@ -2759,7 +2765,7 @@ maxcmsgs=2) @testFDPassSeparate.client_skip - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") + @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") def _testFDPassSeparate(self): fd0, fd1 = self.newFDs(2) - self.assertEqual( -@@ -2749,7 +2755,7 @@ +@@ -2772,7 +2778,7 @@ array.array("i", [fd1]))]), len(MSG)) - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") + @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") @requireAttrs(socket, "CMSG_SPACE") def testFDPassSeparateMinSpace(self): - # Pass two FDs in two separate arrays, receiving them into the -@@ -2761,7 +2767,7 @@ +@@ -2785,7 +2791,7 @@ maxcmsgs=2, ignoreflags=socket.MSG_CTRUNC) @testFDPassSeparateMinSpace.client_skip - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") + @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") def _testFDPassSeparateMinSpace(self): fd0, fd1 = self.newFDs(2) - self.assertEqual( -@@ -3532,12 +3538,14 @@ +@@ -3557,12 +3563,14 @@ @requireAttrs(socket.socket, "sendmsg") @requireAttrs(socket, "AF_UNIX") @@ -12883,7 +12971,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(thread, 'Threading required for this test.') class RecvmsgUnixStreamTest(RecvmsgTests, RecvmsgGenericStreamTests, SendrecvmsgUnixStreamTestBase): -@@ -3545,6 +3553,7 @@ +@@ -3570,6 +3578,7 @@ @requireAttrs(socket.socket, "recvmsg_into") @requireAttrs(socket, "AF_UNIX") @@ -12891,7 +12979,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(thread, 'Threading required for this test.') class RecvmsgIntoUnixStreamTest(RecvmsgIntoTests, RecvmsgGenericStreamTests, SendrecvmsgUnixStreamTestBase): -@@ -3552,12 +3561,14 @@ +@@ -3577,12 +3586,14 @@ @requireAttrs(socket.socket, "sendmsg", "recvmsg") @requireAttrs(socket, "AF_UNIX", "SOL_SOCKET", "SCM_RIGHTS") @@ -12907,9 +12995,9 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py class RecvmsgIntoSCMRightsStreamTest(RecvmsgIntoMixin, SCMRightsTest, SendrecvmsgUnixStreamTestBase): diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver.py ---- orig/Lib/test/test_socketserver.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_socketserver.py 2015-07-04 22:53:26.000000000 +0800 -@@ -8,7 +8,7 @@ +--- orig/Lib/test/test_socketserver.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_socketserver.py 2016-02-14 10:29:41.000000000 +0800 +@@ -7,7 +7,7 @@ import select import signal import socket @@ -12918,7 +13006,7 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver import errno import tempfile import unittest -@@ -32,6 +32,7 @@ +@@ -31,6 +31,7 @@ HAVE_FORKING = hasattr(os, "fork") requires_forking = unittest.skipUnless(HAVE_FORKING, 'requires forking') @@ -12942,8 +13030,8 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver self.run_server(socketserver.ThreadingUnixStreamServer, socketserver.StreamRequestHandler, diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_encoding.py ---- orig/Lib/test/test_source_encoding.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_source_encoding.py 2015-05-04 14:44:09.000000000 +0800 +--- orig/Lib/test/test_source_encoding.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_source_encoding.py 2016-02-14 10:29:41.000000000 +0800 @@ -7,6 +7,7 @@ import sys import subprocess @@ -12961,8 +13049,8 @@ diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_en sub = subprocess.Popen([sys.executable, os.path.join(os.path.dirname(__file__), diff -Nru orig/Lib/test/test_subprocess.py modified/Lib/test/test_subprocess.py ---- orig/Lib/test/test_subprocess.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_subprocess.py 2015-05-02 21:04:07.000000000 +0800 +--- orig/Lib/test/test_subprocess.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_subprocess.py 2016-02-14 10:58:22.000000000 +0800 @@ -26,6 +26,9 @@ mswindows = (sys.platform == "win32") @@ -12974,8 +13062,8 @@ diff -Nru orig/Lib/test/test_subprocess.py modified/Lib/test/test_subprocess.py # Depends on the following external programs: Python # diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py ---- orig/Lib/test/test_sundry.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_sundry.py 2015-04-30 10:12:55.000000000 +0800 +--- orig/Lib/test/test_sundry.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_sundry.py 2016-02-14 10:29:41.000000000 +0800 @@ -20,7 +20,8 @@ import distutils.bcppcompiler @@ -12984,11 +13072,11 @@ diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py + if sys.platform.startswith('win'): + import distutils.cygwinccompiler import distutils.filelist - if sys.platform.startswith('win'): - import distutils.msvccompiler + import distutils.text_file + import distutils.unixccompiler diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py ---- orig/Lib/test/test_sys.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_sys.py 2015-05-04 14:44:19.000000000 +0800 +--- orig/Lib/test/test_sys.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_sys.py 2016-02-15 18:27:32.000000000 +0800 @@ -20,6 +20,7 @@ except ImportError: threading = None @@ -12997,7 +13085,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py class SysModuleTest(unittest.TestCase): def setUp(self): -@@ -216,6 +217,7 @@ +@@ -255,6 +256,7 @@ finally: sys.setrecursionlimit(oldlimit) @@ -13005,7 +13093,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_recursionlimit_fatalerror(self): # A fatal error occurs if a second recursion limit is hit when recovering # from a first one. -@@ -542,6 +544,7 @@ +@@ -582,6 +584,7 @@ def test_clear_type_cache(self): sys._clear_type_cache() @@ -13013,7 +13101,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_ioencoding(self): env = dict(os.environ) -@@ -587,6 +590,7 @@ +@@ -627,6 +630,7 @@ @unittest.skipUnless(test.support.FS_NONASCII, 'requires OS support of non-ASCII encodings') @@ -13021,7 +13109,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_ioencoding_nonascii(self): env = dict(os.environ) -@@ -599,6 +603,7 @@ +@@ -639,6 +643,7 @@ @unittest.skipIf(sys.base_prefix != sys.prefix, 'Test is not venv-compatible') @@ -13029,9 +13117,17 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_executable(self): # sys.executable should be absolute self.assertEqual(os.path.abspath(sys.executable), sys.executable) +@@ -675,6 +680,7 @@ + expected = None + self.check_fsencoding(fs_encoding, expected) + ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def c_locale_get_error_handler(self, isolated=False, encoding=None): + # Force the POSIX locale + env = os.environ.copy() diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py ---- orig/Lib/test/test_sysconfig.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_sysconfig.py 2015-07-04 22:53:33.000000000 +0800 +--- orig/Lib/test/test_sysconfig.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_sysconfig.py 2016-02-14 10:29:41.000000000 +0800 @@ -15,6 +15,7 @@ get_scheme_names, get_config_var, _main) import _osx_support @@ -13055,8 +13151,8 @@ diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py ---- orig/Lib/test/test_thread.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_thread.py 2015-05-04 14:44:49.000000000 +0800 +--- orig/Lib/test/test_thread.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_thread.py 2016-02-14 10:29:41.000000000 +0800 @@ -14,12 +14,14 @@ _print_mutex = thread.allocate_lock() @@ -13081,9 +13177,9 @@ diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py def test_forkinthread(self): def thread1(): diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py ---- orig/Lib/test/test_threading.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_threading.py 2015-05-02 16:19:47.000000000 +0800 -@@ -825,6 +825,7 @@ +--- orig/Lib/test/test_threading.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_threading.py 2016-02-14 10:29:41.000000000 +0800 +@@ -824,6 +824,7 @@ class SubinterpThreadingTests(BaseTestCase): @@ -13091,7 +13187,7 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py def test_threads_join(self): # Non-daemon threads should be joined at subinterpreter shutdown # (issue #18808) -@@ -848,6 +849,7 @@ +@@ -847,6 +848,7 @@ # The thread was joined properly. self.assertEqual(os.read(r, 1), b"x") @@ -13100,17 +13196,17 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py # Same as above, but a delay gets introduced after the thread's # Python code returned but before the thread state is deleted. diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py ---- orig/Lib/test/test_traceback.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_traceback.py 2015-05-04 14:42:29.000000000 +0800 -@@ -1,6 +1,7 @@ - """Test cases for traceback module""" - - from io import StringIO -+import subprocess +--- orig/Lib/test/test_traceback.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_traceback.py 2016-02-15 19:04:24.000000000 +0800 +@@ -6,6 +6,7 @@ import sys import unittest import re -@@ -101,11 +102,12 @@ ++import subprocess + from test import support + from test.support import TESTFN, Error, captured_output, unlink, cpython_only + from test.support.script_helper import assert_python_ok +@@ -110,11 +111,12 @@ err = traceback.format_exception_only(None, None) self.assertEqual(err, ['None\n']) @@ -13125,9 +13221,17 @@ diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py # The spawned subprocess has its stdout redirected to a PIPE, and its # encoding may be different from the current interpreter, on Windows diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.py ---- orig/Lib/test/test_unicodedata.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_unicodedata.py 2015-05-04 14:42:28.000000000 +0800 -@@ -222,8 +222,10 @@ +--- orig/Lib/test/test_unicodedata.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_unicodedata.py 2016-02-15 18:24:13.000000000 +0800 +@@ -9,6 +9,7 @@ + import sys + import unittest + import hashlib ++import subprocess + from test.support import script_helper + + encoding = 'utf-8' +@@ -222,8 +223,10 @@ self.assertEqual(eaw('\u2010'), 'A') self.assertEqual(eaw('\U00020000'), 'W') @@ -13139,56 +13243,47 @@ diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.p # Issue 4367 # Decoding \N escapes requires the unicodedata module. If it can't be diff -Nru orig/Lib/test/test_urllib2net.py modified/Lib/test/test_urllib2net.py ---- orig/Lib/test/test_urllib2net.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_urllib2net.py 2015-05-04 13:16:45.000000000 +0800 -@@ -156,6 +156,7 @@ +--- orig/Lib/test/test_urllib2net.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_urllib2net.py 2016-02-15 18:20:45.000000000 +0800 +@@ -7,6 +7,10 @@ + import urllib.error + import urllib.request + import sys ++try: ++ import ssl ++except ImportError: ++ ssl = None + + support.requires("network") + +@@ -148,6 +152,7 @@ ## self._test_urls(urls, self._extra_handlers()+[bauth, dauth]) + @unittest.skipIf(ssl is None, 'test requires ssl module') def test_urlwithfrag(self): - urlwith_frag = "https://docs.python.org/2/glossary.html#glossary" + urlwith_frag = "http://www.pythontest.net/index.html#frag" with support.transient_internet(urlwith_frag): -@@ -164,6 +165,7 @@ +@@ -156,6 +161,7 @@ self.assertEqual(res.geturl(), - "https://docs.python.org/2/glossary.html#glossary") + "http://www.pythontest.net/index.html#frag") + @unittest.skipIf(ssl is None, 'test requires ssl module') def test_redirect_url_withfrag(self): - redirect_url_with_frag = "http://bit.ly/1iSHToT" + redirect_url_with_frag = "http://www.pythontest.net/redir/with_frag/" with support.transient_internet(redirect_url_with_frag): diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py ---- orig/Lib/test/test_uuid.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_uuid.py 2015-05-04 14:44:34.000000000 +0800 -@@ -3,9 +3,11 @@ - import builtins - import io - import os -+import subprocess - import shutil - import uuid - -+ - def importable(name): - try: - __import__(name) -@@ -13,6 +15,7 @@ +--- orig/Lib/test/test_uuid.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_uuid.py 2016-02-15 18:18:31.000000000 +0800 +@@ -14,6 +14,7 @@ except: return False + class TestUUID(unittest.TestCase): - last_node = None - source2node = {} -@@ -314,6 +317,7 @@ - TestUUID.last_node = node - - @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") - def test_ifconfig_getnode(self): - node = uuid._ifconfig_getnode() - if node is not None: -@@ -472,6 +476,7 @@ + def test_UUID(self): + equal = self.assertEqual +@@ -388,6 +389,7 @@ equal(str(u), v) @unittest.skipUnless(os.name == 'posix', 'requires Posix') @@ -13196,18 +13291,42 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py def testIssue8621(self): # On at least some versions of OSX uuid.uuid4 generates # the same sequence of UUIDs in the parent and any -diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py ---- orig/Lib/test/test_venv.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_venv.py 2015-05-04 14:44:42.000000000 +0800 -@@ -15,7 +15,6 @@ - import tempfile - from test.support import (captured_stdout, captured_stderr, run_unittest, - can_symlink, EnvironmentVarGuard) --import textwrap - import unittest - import venv +@@ -412,6 +414,7 @@ + + class TestInternals(unittest.TestCase): + @unittest.skipUnless(os.name == 'posix', 'requires Posix') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def test_find_mac(self): + data = ''' + fake hwaddr +@@ -449,6 +452,7 @@ + "%s is not an RFC 4122 node ID" % hex) + + @unittest.skipUnless(os.name == 'posix', 'requires Posix') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def test_ifconfig_getnode(self): + node = uuid._ifconfig_getnode() + self.check_node(node, 'ifconfig', True) +@@ -459,6 +463,7 @@ + self.check_node(node, 'ip', True) + + @unittest.skipUnless(os.name == 'posix', 'requires Posix') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def test_arp_getnode(self): + node = uuid._arp_getnode() + self.check_node(node, 'arp', True) +@@ -469,6 +474,7 @@ + self.check_node(node, 'lanscan', True) -@@ -36,6 +35,7 @@ + @unittest.skipUnless(os.name == 'posix', 'requires Posix') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def test_netstat_getnode(self): + node = uuid._netstat_getnode() + self.check_node(node, 'netstat', True) +diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py +--- orig/Lib/test/test_venv.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_venv.py 2016-02-14 10:29:41.000000000 +0800 +@@ -35,6 +35,7 @@ def failsOnWindows(f): return f @@ -13215,7 +13334,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py class BaseTest(unittest.TestCase): """Base class for venv tests.""" -@@ -112,6 +112,7 @@ +@@ -111,6 +112,7 @@ self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) @skipInVenv @@ -13223,7 +13342,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py def test_prefixes(self): """ Test that the prefix values are as expected. -@@ -250,6 +251,7 @@ +@@ -249,6 +251,7 @@ # point to the venv being used to run the test, and we lose the link # to the source build - so Python can't initialise properly. @skipInVenv @@ -13231,7 +13350,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py def test_executable(self): """ Test that the sys.executable value is as expected. -@@ -264,6 +266,7 @@ +@@ -263,6 +266,7 @@ self.assertEqual(out.strip(), envpy.encode()) @unittest.skipUnless(can_symlink(), 'Needs symlinks') @@ -13239,7 +13358,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py def test_executable_symlinks(self): """ Test that the sys.executable value is as expected. -@@ -282,6 +285,7 @@ +@@ -281,6 +285,7 @@ @skipInVenv class EnsurePipTest(BaseTest): """Test venv module installation of pip.""" @@ -13247,17 +13366,17 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py def assert_pip_not_installed(self): envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) -@@ -320,6 +324,7 @@ +@@ -319,6 +324,7 @@ # Requesting pip fails without SSL (http://bugs.python.org/issue19744) @unittest.skipIf(ssl is None, ensurepip._MISSING_SSL_MESSAGE) + @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_with_pip(self): - shutil.rmtree(self.env_dir) + rmtree(self.env_dir) with EnvironmentVarGuard() as envvars: diff -Nru orig/Lib/test/test_webbrowser.py modified/Lib/test/test_webbrowser.py ---- orig/Lib/test/test_webbrowser.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_webbrowser.py 2015-04-30 10:04:24.000000000 +0800 +--- orig/Lib/test/test_webbrowser.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_webbrowser.py 2016-02-14 10:29:41.000000000 +0800 @@ -2,8 +2,11 @@ import unittest import subprocess @@ -13271,17 +13390,17 @@ diff -Nru orig/Lib/test/test_webbrowser.py modified/Lib/test/test_webbrowser.py URL = 'http://www.example.com' CMD_NAME = 'test' diff -Nru orig/Lib/test/test_zipfile.py modified/Lib/test/test_zipfile.py ---- orig/Lib/test/test_zipfile.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/test/test_zipfile.py 2015-07-04 22:53:46.000000000 +0800 -@@ -583,6 +583,7 @@ - if name + 'o' not in namelist: - self.assertIn(name + 'c', namelist) +--- orig/Lib/test/test_zipfile.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_zipfile.py 2016-02-14 10:29:41.000000000 +0800 +@@ -692,6 +692,7 @@ + self.skipTest('requires write access to the installed location') + unlink(filename) + @unittest.skipIf(sys.dont_write_bytecode, "Test requires ability to write bytecode") def test_write_pyfile(self): + self.requiresWriteAccess(os.path.dirname(__file__)) with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: - fn = __file__ -@@ -625,6 +626,7 @@ +@@ -736,6 +737,7 @@ self.assertCompiledIn('email/__init__.py', names) self.assertCompiledIn('email/mime/text.py', names) @@ -13290,8 +13409,8 @@ diff -Nru orig/Lib/test/test_zipfile.py modified/Lib/test/test_zipfile.py import test packagedir = os.path.dirname(test.__file__) diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_break.py ---- orig/Lib/unittest/test/test_break.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/unittest/test/test_break.py 2015-04-27 09:20:54.000000000 +0800 +--- orig/Lib/unittest/test/test_break.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/unittest/test/test_break.py 2016-02-14 10:29:41.000000000 +0800 @@ -9,7 +9,7 @@ @@ -13302,9 +13421,9 @@ diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_b "if threads have been used") class TestBreak(unittest.TestCase): diff -Nru orig/Lib/unittest/test/test_runner.py modified/Lib/unittest/test/test_runner.py ---- orig/Lib/unittest/test/test_runner.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/unittest/test/test_runner.py 2015-05-04 14:42:27.000000000 +0800 -@@ -270,6 +270,7 @@ +--- orig/Lib/unittest/test/test_runner.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/unittest/test/test_runner.py 2016-02-14 10:29:41.000000000 +0800 +@@ -274,6 +274,7 @@ expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY) self.assertEqual(runner._makeResult(), expectedresult) @@ -13313,8 +13432,8 @@ diff -Nru orig/Lib/unittest/test/test_runner.py modified/Lib/unittest/test/test_ """ Check that warnings argument of TextTestRunner correctly affects the diff -Nru orig/Lib/webbrowser.py modified/Lib/webbrowser.py ---- orig/Lib/webbrowser.py 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Lib/webbrowser.py 2015-03-15 00:57:57.000000000 +0800 +--- orig/Lib/webbrowser.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/webbrowser.py 2016-02-14 10:29:41.000000000 +0800 @@ -602,6 +602,57 @@ register("firefox", None, MacOSXOSAScript('firefox'), -1) register("MacOSX", None, MacOSXOSAScript('default'), -1) @@ -13373,10 +13492,51 @@ diff -Nru orig/Lib/webbrowser.py modified/Lib/webbrowser.py # OK, now that we know what the default preference orders for each # platform are, allow user to override them with the BROWSER variable. +diff -Nru orig/Makefile.pre.in modified/Makefile.pre.in +--- orig/Makefile.pre.in 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Makefile.pre.in 2016-02-15 15:50:35.000000000 +0800 +@@ -712,11 +712,11 @@ + $(LINKCC) $(PY_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) + + Python/importlib_external.h: $(srcdir)/Lib/importlib/_bootstrap_external.py Programs/_freeze_importlib +- ./Programs/_freeze_importlib \ ++ ./iOS/_freeze_importlib \ + $(srcdir)/Lib/importlib/_bootstrap_external.py Python/importlib_external.h + + Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Programs/_freeze_importlib +- ./Programs/_freeze_importlib \ ++ ./iOS/_freeze_importlib \ + $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h + + +@@ -777,10 +777,12 @@ + + $(IO_OBJS): $(IO_H) + +-$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGEN) ++$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS) + @$(MKDIR_P) Include ++ $(MAKE) $(PGEN) + $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C) +-$(GRAMMAR_C): $(GRAMMAR_H) ++$(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS) ++ $(MAKE) $(GRAMMAR_H) + touch $(GRAMMAR_C) + + $(PGEN): $(PGENOBJS) +@@ -862,7 +864,7 @@ + + Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h + +-Python/frozen.o: Python/importlib.h Python/importlib_external.h ++Python/frozen.o: Python/importlib.h Python/importlib_external.h + + Objects/typeobject.o: Objects/typeslots.inc + Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded --- orig/Modules/Setup.embedded 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.embedded 2015-07-04 23:36:43.000000000 +0800 -@@ -0,0 +1,91 @@ ++++ modified/Modules/Setup.embedded 2016-02-14 12:15:08.000000000 +0800 +@@ -0,0 +1,90 @@ +##################################################################### +# Static compilation instructions for all binary modules. +##################################################################### @@ -13438,7 +13598,6 @@ diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded +select selectmodule.c +syslog syslogmodule.c +termios termios.c -+time timemodule.c +unicodedata unicodedata.c +zlib zlibmodule.c -I$(prefix)/include -lz + @@ -13470,7 +13629,7 @@ diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded +#spwd spwdmodule.c diff -Nru orig/Modules/Setup.ios-aarch64 modified/Modules/Setup.ios-aarch64 --- orig/Modules/Setup.ios-aarch64 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-aarch64 2015-12-20 23:03:15.000000000 +0800 ++++ modified/Modules/Setup.ios-aarch64 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -13509,7 +13668,7 @@ diff -Nru orig/Modules/Setup.ios-aarch64 modified/Modules/Setup.ios-aarch64 + -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 diff -Nru orig/Modules/Setup.ios-arm modified/Modules/Setup.ios-arm --- orig/Modules/Setup.ios-arm 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-arm 2015-12-20 23:02:39.000000000 +0800 ++++ modified/Modules/Setup.ios-arm 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,36 @@ + +##################################################################### @@ -13549,7 +13708,7 @@ diff -Nru orig/Modules/Setup.ios-arm modified/Modules/Setup.ios-arm + -DCONFIG_32=1 -DANSI=1 diff -Nru orig/Modules/Setup.ios-i386 modified/Modules/Setup.ios-i386 --- orig/Modules/Setup.ios-i386 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-i386 2015-12-20 23:01:44.000000000 +0800 ++++ modified/Modules/Setup.ios-i386 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -13588,7 +13747,7 @@ diff -Nru orig/Modules/Setup.ios-i386 modified/Modules/Setup.ios-i386 + -DCONFIG_32=1 -DANSI=1 diff -Nru orig/Modules/Setup.ios-x86_64 modified/Modules/Setup.ios-x86_64 --- orig/Modules/Setup.ios-x86_64 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-x86_64 2015-12-20 23:01:43.000000000 +0800 ++++ modified/Modules/Setup.ios-x86_64 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -13627,7 +13786,7 @@ diff -Nru orig/Modules/Setup.ios-x86_64 modified/Modules/Setup.ios-x86_64 + -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 diff -Nru orig/Modules/_ctypes/libffi_ios/LICENSE modified/Modules/_ctypes/libffi_ios/LICENSE --- orig/Modules/_ctypes/libffi_ios/LICENSE 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/LICENSE 2015-04-26 07:29:16.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/LICENSE 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,21 @@ +libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others. +See source files for details. @@ -13652,7 +13811,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/LICENSE modified/Modules/_ctypes/libff +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff -Nru orig/Modules/_ctypes/libffi_ios/README modified/Modules/_ctypes/libffi_ios/README --- orig/Modules/_ctypes/libffi_ios/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/README 2015-12-21 09:55:54.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/README 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,450 @@ +Status +====== @@ -14106,7 +14265,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/README modified/Modules/_ctypes/libffi +libffi-discuss@sourceware.org. diff -Nru orig/Modules/_ctypes/libffi_ios/README.python modified/Modules/_ctypes/libffi_ios/README.python --- orig/Modules/_ctypes/libffi_ios/README.python 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/README.python 2015-12-20 18:48:11.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/README.python 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,14 @@ +This directory contains the generated source code for running libffi +on iOS platforms (physical and simulator). It contains support for @@ -14124,7 +14283,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/README.python modified/Modules/_ctypes +and patched verion of libffi 4. diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c --- orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 2015-12-20 22:04:51.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,934 @@ +#ifdef __arm64__ + @@ -15063,7 +15222,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/internal.h modified/Modules/_ctypes/libffi_ios/aarch64/internal.h --- orig/Modules/_ctypes/libffi_ios/aarch64/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/internal.h 2015-12-20 19:03:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/internal.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,67 @@ +/* +Permission is hereby granted, free of charge, to any person obtaining @@ -15134,7 +15293,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/internal.h modified/Modules/_c +#define CALL_CONTEXT_SIZE (N_V_ARG_REG * 16 + N_X_ARG_REG * 8) diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S --- orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 2015-12-20 22:31:37.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,443 @@ +#ifdef __arm64__ + @@ -15582,7 +15741,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S modified/Modules/ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c --- orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 2015-12-20 22:05:17.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,813 @@ +#ifdef __arm__ + @@ -16400,7 +16559,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c modified/Modules/_ctyp \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/internal.h modified/Modules/_ctypes/libffi_ios/arm/internal.h --- orig/Modules/_ctypes/libffi_ios/arm/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/internal.h 2015-12-20 19:03:21.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/internal.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,7 @@ +#define ARM_TYPE_VFP_S 0 +#define ARM_TYPE_VFP_D 1 @@ -16411,7 +16570,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/internal.h modified/Modules/_ctype +#define ARM_TYPE_STRUCT 6 diff -Nru orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S --- orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 2015-12-20 22:31:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,388 @@ +#ifdef __arm__ + @@ -16804,7 +16963,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S modified/Modules/_cty \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S --- orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 2015-12-20 18:50:24.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,5 @@ +#ifdef __arm__ + @@ -16814,7 +16973,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S modified/Module \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/closures.c modified/Modules/_ctypes/libffi_ios/closures.c --- orig/Modules/_ctypes/libffi_ios/closures.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/closures.c 2015-12-20 22:04:37.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/closures.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,925 @@ +/* ----------------------------------------------------------------------- + closures.c - Copyright (c) 2007, 2009, 2010 Red Hat, Inc. @@ -17743,7 +17902,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/closures.c modified/Modules/_ctypes/li +#endif /* FFI_CLOSURES */ diff -Nru orig/Modules/_ctypes/libffi_ios/debug.c modified/Modules/_ctypes/libffi_ios/debug.c --- orig/Modules/_ctypes/libffi_ios/debug.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/debug.c 2015-12-20 22:33:34.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/debug.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,64 @@ +/* ----------------------------------------------------------------------- + debug.c - Copyright (c) 1996 Red Hat, Inc. @@ -17811,7 +17970,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/debug.c modified/Modules/_ctypes/libff +} diff -Nru orig/Modules/_ctypes/libffi_ios/dlmalloc.c modified/Modules/_ctypes/libffi_ios/dlmalloc.c --- orig/Modules/_ctypes/libffi_ios/dlmalloc.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/dlmalloc.c 2015-12-20 18:49:03.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/dlmalloc.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,5161 @@ +/* + This is a version (aka dlmalloc) of malloc/free/realloc written by @@ -22976,7 +23135,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/dlmalloc.c modified/Modules/_ctypes/li +*/ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi.h modified/Modules/_ctypes/libffi_ios/include/ffi.h --- orig/Modules/_ctypes/libffi_ios/include/ffi.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi.h 2015-12-20 18:55:19.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -23004,7 +23163,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi.h modified/Modules/_ctypes +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __arm64__ + @@ -23517,7 +23676,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __arm__ + @@ -24030,7 +24189,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 2015-12-20 18:55:19.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,55 @@ +/* ----------------------------------------------------------------------- + ffi_cfi.h - Copyright (c) 2014 Red Hat, Inc. @@ -24089,7 +24248,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h modified/Modules/_ct +#endif /* FFI_CFI_H */ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_common.h modified/Modules/_ctypes/libffi_ios/include/ffi_common.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_common.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_common.h 2015-12-20 18:55:19.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_common.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,132 @@ +/* ----------------------------------------------------------------------- + ffi_common.h - Copyright (C) 2011, 2012, 2013 Anthony Green @@ -24225,7 +24384,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_common.h modified/Modules/ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __i386__ + @@ -24738,7 +24897,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h modified/Modules/_c \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __x86_64__ + @@ -25251,7 +25410,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h modified/Modules/ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig.h modified/Modules/_ctypes/libffi_ios/include/fficonfig.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig.h 2015-12-20 18:55:19.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -25279,7 +25438,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig.h modified/Modules/_ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __arm64__ + @@ -25498,7 +25657,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __arm__ + @@ -25717,7 +25876,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __i386__ + @@ -25936,7 +26095,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h modified/Modu \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __x86_64__ + @@ -26155,7 +26314,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h modified/Mo \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget.h modified/Modules/_ctypes/libffi_ios/include/ffitarget.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget.h 2015-12-20 18:55:19.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -26183,7 +26342,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget.h modified/Modules/_ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 2015-12-20 22:05:32.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,85 @@ +#ifdef __arm64__ + @@ -26273,7 +26432,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 2015-12-20 22:05:39.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,87 @@ +#ifdef __arm__ + @@ -26365,7 +26524,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,144 @@ +#ifdef __i386__ + @@ -26514,7 +26673,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h modified/Modu \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 2015-12-20 18:55:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,144 @@ +#ifdef __x86_64__ + @@ -26663,7 +26822,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h modified/Mo \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/java_raw_api.c modified/Modules/_ctypes/libffi_ios/java_raw_api.c --- orig/Modules/_ctypes/libffi_ios/java_raw_api.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/java_raw_api.c 2015-12-20 18:49:11.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/java_raw_api.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,374 @@ +/* ----------------------------------------------------------------------- + java_raw_api.c - Copyright (c) 1999, 2007, 2008 Red Hat, Inc. @@ -27041,7 +27200,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/java_raw_api.c modified/Modules/_ctype +#endif /* !NO_JAVA_RAW_API */ diff -Nru orig/Modules/_ctypes/libffi_ios/prep_cif.c modified/Modules/_ctypes/libffi_ios/prep_cif.c --- orig/Modules/_ctypes/libffi_ios/prep_cif.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/prep_cif.c 2015-12-20 18:49:22.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/prep_cif.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,242 @@ +/* ----------------------------------------------------------------------- + prep_cif.c - Copyright (c) 2011, 2012 Anthony Green @@ -27287,7 +27446,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/prep_cif.c modified/Modules/_ctypes/li +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/raw_api.c modified/Modules/_ctypes/libffi_ios/raw_api.c --- orig/Modules/_ctypes/libffi_ios/raw_api.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/raw_api.c 2015-12-20 18:49:26.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/raw_api.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,267 @@ +/* ----------------------------------------------------------------------- + raw_api.c - Copyright (c) 1999, 2008 Red Hat, Inc. @@ -27558,11 +27717,11 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/raw_api.c modified/Modules/_ctypes/lib +#endif /* !FFI_NO_RAW_API */ diff -Nru orig/Modules/_ctypes/libffi_ios/types.c modified/Modules/_ctypes/libffi_ios/types.c --- orig/Modules/_ctypes/libffi_ios/types.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/types.c 2015-12-20 18:49:29.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/types.c 2016-02-14 12:09:55.000000000 +0800 @@ -0,0 +1,106 @@ +/* ----------------------------------------------------------------------- + types.c - Copyright (c) 1996, 1998 Red Hat, Inc. -+ ++ + Predefined ffi_types needed by libffi. + + Permission is hereby granted, free of charge, to any person obtaining @@ -27621,54 +27780,54 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/types.c modified/Modules/_ctypes/libff + (ffi_type **)ffi_elements_complex_##name \ +} + -+/* Size and alignment are fake here. They must not be 0. */ -+const ffi_type ffi_type_void = { -+ 1, 1, FFI_TYPE_VOID, NULL -+}; -+ -+FFI_TYPEDEF(uint8, UINT8, FFI_TYPE_UINT8, const); -+FFI_TYPEDEF(sint8, SINT8, FFI_TYPE_SINT8, const); -+FFI_TYPEDEF(uint16, UINT16, FFI_TYPE_UINT16, const); -+FFI_TYPEDEF(sint16, SINT16, FFI_TYPE_SINT16, const); -+FFI_TYPEDEF(uint32, UINT32, FFI_TYPE_UINT32, const); -+FFI_TYPEDEF(sint32, SINT32, FFI_TYPE_SINT32, const); -+FFI_TYPEDEF(uint64, UINT64, FFI_TYPE_UINT64, const); -+FFI_TYPEDEF(sint64, SINT64, FFI_TYPE_SINT64, const); -+ -+FFI_TYPEDEF(pointer, void*, FFI_TYPE_POINTER, const); -+ -+FFI_TYPEDEF(float, float, FFI_TYPE_FLOAT, const); -+FFI_TYPEDEF(double, double, FFI_TYPE_DOUBLE, const); -+ -+#if !defined HAVE_LONG_DOUBLE_VARIANT || defined __alpha__ -+#define FFI_LDBL_CONST const -+#else -+#define FFI_LDBL_CONST -+#endif -+ -+#ifdef __alpha__ -+/* Even if we're not configured to default to 128-bit long double, -+ maintain binary compatibility, as -mlong-double-128 can be used -+ at any time. */ -+/* Validate the hard-coded number below. */ -+# if defined(__LONG_DOUBLE_128__) && FFI_TYPE_LONGDOUBLE != 4 -+# error FFI_TYPE_LONGDOUBLE out of date -+# endif -+const ffi_type ffi_type_longdouble = { 16, 16, 4, NULL }; -+#elif FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE -+FFI_TYPEDEF(longdouble, long double, FFI_TYPE_LONGDOUBLE, FFI_LDBL_CONST); -+#endif -+ -+#ifdef FFI_TARGET_HAS_COMPLEX_TYPE -+FFI_COMPLEX_TYPEDEF(float, float, const); -+FFI_COMPLEX_TYPEDEF(double, double, const); -+#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE -+FFI_COMPLEX_TYPEDEF(longdouble, long double, FFI_LDBL_CONST); -+#endif -+#endif ++// /* Size and alignment are fake here. They must not be 0. */ ++// const ffi_type ffi_type_void = { ++// 1, 1, FFI_TYPE_VOID, NULL ++// }; ++ ++// FFI_TYPEDEF(uint8, UINT8, FFI_TYPE_UINT8, const); ++// FFI_TYPEDEF(sint8, SINT8, FFI_TYPE_SINT8, const); ++// FFI_TYPEDEF(uint16, UINT16, FFI_TYPE_UINT16, const); ++// FFI_TYPEDEF(sint16, SINT16, FFI_TYPE_SINT16, const); ++// FFI_TYPEDEF(uint32, UINT32, FFI_TYPE_UINT32, const); ++// FFI_TYPEDEF(sint32, SINT32, FFI_TYPE_SINT32, const); ++// FFI_TYPEDEF(uint64, UINT64, FFI_TYPE_UINT64, const); ++// FFI_TYPEDEF(sint64, SINT64, FFI_TYPE_SINT64, const); ++ ++// FFI_TYPEDEF(pointer, void*, FFI_TYPE_POINTER, const); ++ ++// FFI_TYPEDEF(float, float, FFI_TYPE_FLOAT, const); ++// FFI_TYPEDEF(double, double, FFI_TYPE_DOUBLE, const); ++ ++// #if !defined HAVE_LONG_DOUBLE_VARIANT || defined __alpha__ ++// #define FFI_LDBL_CONST const ++// #else ++// #define FFI_LDBL_CONST ++// #endif ++ ++// #ifdef __alpha__ ++// /* Even if we're not configured to default to 128-bit long double, ++// maintain binary compatibility, as -mlong-double-128 can be used ++// at any time. */ ++// /* Validate the hard-coded number below. */ ++// # if defined(__LONG_DOUBLE_128__) && FFI_TYPE_LONGDOUBLE != 4 ++// # error FFI_TYPE_LONGDOUBLE out of date ++// # endif ++// const ffi_type ffi_type_longdouble = { 16, 16, 4, NULL }; ++// #elif FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE ++// FFI_TYPEDEF(longdouble, long double, FFI_TYPE_LONGDOUBLE, FFI_LDBL_CONST); ++// #endif ++ ++// #ifdef FFI_TARGET_HAS_COMPLEX_TYPE ++// FFI_COMPLEX_TYPEDEF(float, float, const); ++// FFI_COMPLEX_TYPEDEF(double, double, const); ++// #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE ++// FFI_COMPLEX_TYPEDEF(longdouble, long double, FFI_LDBL_CONST); ++// #endif ++// #endif diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c --- orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 2015-12-20 18:53:04.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,829 @@ +#ifdef __x86_64__ + @@ -28502,7 +28661,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c modified/Modules/_c \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c --- orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 2015-12-20 18:53:04.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,734 @@ +#ifdef __i386__ + @@ -29241,7 +29400,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c modified/Modules/_ctype \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal.h modified/Modules/_ctypes/libffi_ios/x86/internal.h --- orig/Modules/_ctypes/libffi_ios/x86/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/internal.h 2015-12-20 19:03:47.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/internal.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,29 @@ +#define X86_RET_FLOAT 0 +#define X86_RET_DOUBLE 1 @@ -29274,7 +29433,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal.h modified/Modules/_ctype +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal64.h modified/Modules/_ctypes/libffi_ios/x86/internal64.h --- orig/Modules/_ctypes/libffi_ios/x86/internal64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/internal64.h 2015-12-20 19:03:50.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/internal64.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,22 @@ +#define UNIX64_RET_VOID 0 +#define UNIX64_RET_UINT8 1 @@ -29300,7 +29459,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal64.h modified/Modules/_cty +#define UNIX64_SIZE_SHIFT 12 diff -Nru orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S --- orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 2015-12-20 18:53:04.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,1045 @@ +#ifdef __i386__ + @@ -30350,7 +30509,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S modified/Modules/_ctyp \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S --- orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 2015-12-20 18:53:04.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,551 @@ +#ifdef __x86_64__ + @@ -30905,9 +31064,9 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S modified/Modules/_ +#endif \ No newline at end of file diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c ---- orig/Modules/_posixsubprocess.c 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Modules/_posixsubprocess.c 2015-12-21 13:03:32.000000000 +0800 -@@ -479,11 +479,15 @@ +--- orig/Modules/_posixsubprocess.c 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Modules/_posixsubprocess.c 2016-02-14 10:29:41.000000000 +0800 +@@ -490,11 +490,15 @@ saved_errno = 0; for (i = 0; exec_array[i] != NULL; ++i) { const char *executable = exec_array[i]; @@ -30923,7 +31082,7 @@ diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c if (errno != ENOENT && errno != ENOTDIR && saved_errno == 0) { saved_errno = errno; } -@@ -646,7 +650,12 @@ +@@ -662,7 +666,12 @@ cwd_obj2 = NULL; } @@ -30937,8 +31096,8 @@ diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c /* Child process */ /* diff -Nru orig/Modules/makesetup modified/Modules/makesetup ---- orig/Modules/makesetup 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Modules/makesetup 2015-06-28 14:39:04.000000000 +0800 +--- orig/Modules/makesetup 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Modules/makesetup 2016-02-14 10:29:41.000000000 +0800 @@ -128,7 +128,7 @@ # Output DEFS in reverse order so first definition overrides @@ -30979,18 +31138,9 @@ diff -Nru orig/Modules/makesetup modified/Modules/makesetup *.m) obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C *) continue;; esac -@@ -266,7 +271,7 @@ - *) sed -e " - 1i$NL/* Generated automatically from $config by makesetup. */ - /MARKER 1/i$NL$EXTDECLS -- -+ - /MARKER 2/i$NL$INITBITS - - " $config >config.c diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c ---- orig/Modules/mathmodule.c 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Modules/mathmodule.c 2015-05-04 13:53:01.000000000 +0800 +--- orig/Modules/mathmodule.c 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Modules/mathmodule.c 2016-02-14 10:29:41.000000000 +0800 @@ -55,6 +55,10 @@ #include "Python.h" #include "_math.h" @@ -31002,7 +31152,7 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c /* sin(pi*x), giving accurate results for all finite x (especially x integral or close to an integer). This is here for use in the -@@ -1746,6 +1750,16 @@ +@@ -1810,6 +1814,16 @@ return PyFloat_FromDouble(fabs(x)); if (Py_IS_INFINITY(y)) return PyFloat_FromDouble(fabs(y)); @@ -31020,8 +31170,8 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c PyFPE_START_PROTECT("in math_hypot", return 0); r = hypot(x, y); diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c ---- orig/Modules/posixmodule.c 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Modules/posixmodule.c 2015-12-21 13:03:32.000000000 +0800 +--- orig/Modules/posixmodule.c 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Modules/posixmodule.c 2016-02-14 10:41:08.000000000 +0800 @@ -20,6 +20,8 @@ # pragma weak statvfs # pragma weak fstatvfs @@ -31031,8 +31181,8 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* __APPLE__ */ #define PY_SSIZE_T_CLEAN -@@ -180,6 +182,23 @@ - #endif /* __BORLANDC__ */ +@@ -175,6 +177,23 @@ + #endif /* _MSC_VER */ #endif /* ! __WATCOMC__ || __QNX__ */ +// iOS *defines* a number of POSIX functions, but you can't use them @@ -31054,8 +31204,8 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c +#endif /* TARGET_OS_IPHONE */ /*[clinic input] - module os -@@ -1178,7 +1197,9 @@ + # one of the few times we lie about this name! +@@ -1127,7 +1146,9 @@ #include static char **environ; #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) @@ -31065,7 +31215,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* !_MSC_VER */ static PyObject * -@@ -1229,7 +1250,7 @@ +@@ -1178,7 +1199,7 @@ Py_DECREF(k); Py_DECREF(v); } @@ -31074,22 +31224,22 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c if (environ == NULL) return d; /* This part ignores errors */ -@@ -4444,7 +4465,12 @@ - - command = PyBytes_AsString(command_obj); +@@ -4285,7 +4306,12 @@ + long result; + char *bytes = PyBytes_AsString(command); Py_BEGIN_ALLOW_THREADS +#if defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) || defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) -+ sts = -1; ++ result = -1; + errno = ENOTSUP; +#else - sts = system(command); + result = system(bytes); +#endif Py_END_ALLOW_THREADS - Py_DECREF(command_obj); - #endif + return result; + } diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c ---- orig/Modules/pwdmodule.c 2015-02-03 19:49:04.000000000 +0800 -+++ modified/Modules/pwdmodule.c 2015-05-02 23:37:06.000000000 +0800 +--- orig/Modules/pwdmodule.c 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Modules/pwdmodule.c 2016-02-14 10:29:41.000000000 +0800 @@ -1,6 +1,10 @@ /* UNIX password file access module */ @@ -31101,7 +31251,7 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c #include "Python.h" #include "posixmodule.h" -@@ -105,6 +109,21 @@ +@@ -118,6 +122,21 @@ return NULL; } if ((p = getpwuid(uid)) == NULL) { @@ -31123,7 +31273,7 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c PyObject *uid_obj = _PyLong_FromUid(uid); if (uid_obj == NULL) return NULL; -@@ -136,6 +155,22 @@ +@@ -153,6 +172,22 @@ if (PyBytes_AsStringAndSize(bytes, &name, NULL) == -1) goto out; if ((p = getpwnam(name)) == NULL) { @@ -31146,18 +31296,18 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c PyErr_Format(PyExc_KeyError, "getpwnam(): name not found: %s", name); goto out; -@@ -176,6 +211,7 @@ +@@ -196,6 +231,7 @@ } #endif + static PyMethodDef pwd_methods[] = { - {"getpwuid", pwd_getpwuid, METH_VARARGS, pwd_getpwuid__doc__}, - {"getpwnam", pwd_getpwnam, METH_VARARGS, pwd_getpwnam__doc__}, + PWD_GETPWUID_METHODDEF + PWD_GETPWNAM_METHODDEF diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c ---- orig/Objects/bytesobject.c 2015-02-03 19:49:05.000000000 +0800 -+++ modified/Objects/bytesobject.c 2015-08-03 12:54:33.000000000 +0800 -@@ -199,8 +199,8 @@ +--- orig/Objects/bytesobject.c 2015-12-07 09:39:10.000000000 +0800 ++++ modified/Objects/bytesobject.c 2016-02-14 10:29:41.000000000 +0800 +@@ -201,8 +201,8 @@ int c = va_arg(count, int); if (c < 0 || c > 255) { PyErr_SetString(PyExc_OverflowError, @@ -31168,14 +31318,14 @@ diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c return NULL; } n++; -diff -Nru orig/Python/importlib.h modified/Python/importlib.h ---- orig/Python/importlib.h 2015-02-03 19:49:05.000000000 +0800 -+++ modified/Python/importlib.h 2015-05-02 11:58:42.000000000 +0800 -@@ -2,84 +2,84 @@ - const unsigned char _Py_M__importlib[] = { +diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h +--- orig/Python/importlib_external.h 2015-12-07 09:39:11.000000000 +0800 ++++ modified/Python/importlib_external.h 2016-02-16 11:35:20.000000000 +0800 +@@ -2,52 +2,52 @@ + const unsigned char _Py_M__importlib_external[] = { 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, - 0,64,0,0,0,115,228,4,0,0,100,0,0,90,0,0, -- 100,163,0,90,1,0,100,4,0,100,5,0,132,0,0,90, + 0,64,0,0,0,115,228,2,0,0,100,0,0,90,0,0, +- 100,96,0,90,1,0,100,4,0,100,5,0,132,0,0,90, - 2,0,100,6,0,100,7,0,132,0,0,90,3,0,100,8, - 0,100,9,0,132,0,0,90,4,0,100,10,0,100,11,0, - 132,0,0,90,5,0,100,12,0,100,13,0,132,0,0,90, @@ -31183,40 +31333,7 @@ diff -Nru orig/Python/importlib.h modified/Python/importlib.h - 0,100,17,0,132,0,0,90,8,0,100,18,0,100,19,0, - 132,0,0,90,9,0,100,20,0,100,21,0,132,0,0,90, - 10,0,100,22,0,100,23,0,100,24,0,132,1,0,90,11, -- 0,100,25,0,100,26,0,132,0,0,90,12,0,100,27,0, -- 100,28,0,132,0,0,90,13,0,101,14,0,101,12,0,106, -- 15,0,131,1,0,90,16,0,71,100,29,0,100,30,0,132, -- 0,0,100,30,0,131,2,0,90,17,0,105,0,0,90,18, -- 0,105,0,0,90,19,0,71,100,31,0,100,32,0,132,0, -- 0,100,32,0,101,20,0,131,3,0,90,21,0,71,100,33, -- 0,100,34,0,132,0,0,100,34,0,131,2,0,90,22,0, -- 71,100,35,0,100,36,0,132,0,0,100,36,0,131,2,0, -- 90,23,0,71,100,37,0,100,38,0,132,0,0,100,38,0, -- 131,2,0,90,24,0,100,39,0,100,40,0,132,0,0,90, -- 25,0,100,41,0,100,42,0,132,0,0,90,26,0,100,43, -- 0,100,44,0,132,0,0,90,27,0,100,45,0,106,28,0, -- 100,46,0,100,47,0,131,2,0,100,48,0,23,90,29,0, -- 101,30,0,106,31,0,101,29,0,100,47,0,131,2,0,90, -- 32,0,100,49,0,90,33,0,100,50,0,103,1,0,90,34, -- 0,100,51,0,103,1,0,90,35,0,100,52,0,103,1,0, -- 90,36,0,100,53,0,100,54,0,100,55,0,132,1,0,90, -- 37,0,100,56,0,100,57,0,132,0,0,90,38,0,100,58, -- 0,100,59,0,132,0,0,90,39,0,100,60,0,100,61,0, -- 132,0,0,90,40,0,100,62,0,100,63,0,100,64,0,100, -- 65,0,132,0,1,90,41,0,100,66,0,100,67,0,132,0, -- 0,90,42,0,100,68,0,100,69,0,132,0,0,90,43,0, -- 100,70,0,100,71,0,132,0,0,90,44,0,100,72,0,100, -- 73,0,132,0,0,90,45,0,100,74,0,100,75,0,132,0, -- 0,90,46,0,100,53,0,100,53,0,100,53,0,100,76,0, -- 100,77,0,132,3,0,90,47,0,100,53,0,100,53,0,100, -- 53,0,100,78,0,100,79,0,132,3,0,90,48,0,100,80, -- 0,100,80,0,100,81,0,100,82,0,132,2,0,90,49,0, -- 100,83,0,100,84,0,132,0,0,90,50,0,100,85,0,100, -- 86,0,132,0,0,90,51,0,71,100,87,0,100,88,0,132, -- 0,0,100,88,0,131,2,0,90,52,0,71,100,89,0,100, -- 90,0,132,0,0,100,90,0,131,2,0,90,53,0,100,91, -- 0,100,53,0,100,92,0,100,53,0,100,93,0,100,94,0, -+ 100,164,0,90,1,0,100,5,0,100,6,0,132,0,0,90, ++ 100,97,0,90,1,0,100,5,0,100,6,0,132,0,0,90, + 2,0,100,7,0,100,8,0,132,0,0,90,3,0,100,9, + 0,100,10,0,132,0,0,90,4,0,100,11,0,100,12,0, + 132,0,0,90,5,0,100,13,0,100,14,0,132,0,0,90, @@ -31224,4476 +31341,2021 @@ diff -Nru orig/Python/importlib.h modified/Python/importlib.h + 0,100,18,0,132,0,0,90,8,0,100,19,0,100,20,0, + 132,0,0,90,9,0,100,21,0,100,22,0,132,0,0,90, + 10,0,100,23,0,100,24,0,100,25,0,132,1,0,90,11, -+ 0,100,26,0,100,27,0,132,0,0,90,12,0,100,28,0, -+ 100,29,0,132,0,0,90,13,0,101,14,0,101,12,0,106, -+ 15,0,131,1,0,90,16,0,71,100,30,0,100,31,0,132, -+ 0,0,100,31,0,131,2,0,90,17,0,105,0,0,90,18, -+ 0,105,0,0,90,19,0,71,100,32,0,100,33,0,132,0, -+ 0,100,33,0,101,20,0,131,3,0,90,21,0,71,100,34, -+ 0,100,35,0,132,0,0,100,35,0,131,2,0,90,22,0, -+ 71,100,36,0,100,37,0,132,0,0,100,37,0,131,2,0, -+ 90,23,0,71,100,38,0,100,39,0,132,0,0,100,39,0, -+ 131,2,0,90,24,0,100,40,0,100,41,0,132,0,0,90, -+ 25,0,100,42,0,100,43,0,132,0,0,90,26,0,100,44, -+ 0,100,45,0,132,0,0,90,27,0,100,46,0,106,28,0, -+ 100,47,0,100,48,0,131,2,0,100,49,0,23,90,29,0, -+ 101,30,0,106,31,0,101,29,0,100,48,0,131,2,0,90, -+ 32,0,100,50,0,90,33,0,100,51,0,103,1,0,90,34, -+ 0,100,52,0,103,1,0,90,35,0,100,53,0,103,1,0, -+ 90,36,0,100,54,0,100,55,0,100,56,0,132,1,0,90, -+ 37,0,100,57,0,100,58,0,132,0,0,90,38,0,100,59, -+ 0,100,60,0,132,0,0,90,39,0,100,61,0,100,62,0, -+ 132,0,0,90,40,0,100,63,0,100,64,0,100,65,0,100, -+ 66,0,132,0,1,90,41,0,100,67,0,100,68,0,132,0, -+ 0,90,42,0,100,69,0,100,70,0,132,0,0,90,43,0, -+ 100,71,0,100,72,0,132,0,0,90,44,0,100,73,0,100, -+ 74,0,132,0,0,90,45,0,100,75,0,100,76,0,132,0, -+ 0,90,46,0,100,54,0,100,54,0,100,54,0,100,77,0, -+ 100,78,0,132,3,0,90,47,0,100,54,0,100,54,0,100, -+ 54,0,100,79,0,100,80,0,132,3,0,90,48,0,100,81, -+ 0,100,81,0,100,82,0,100,83,0,132,2,0,90,49,0, -+ 100,84,0,100,85,0,132,0,0,90,50,0,100,86,0,100, -+ 87,0,132,0,0,90,51,0,71,100,88,0,100,89,0,132, -+ 0,0,100,89,0,131,2,0,90,52,0,71,100,90,0,100, -+ 91,0,132,0,0,100,91,0,131,2,0,90,53,0,100,92, -+ 0,100,54,0,100,93,0,100,54,0,100,94,0,100,95,0, - 132,0,2,90,54,0,101,55,0,131,0,0,90,56,0,100, -- 53,0,100,95,0,100,53,0,100,96,0,101,56,0,100,97, -- 0,100,98,0,132,1,2,90,57,0,100,53,0,100,53,0, -- 100,99,0,100,100,0,132,2,0,90,58,0,71,100,101,0, -- 100,102,0,132,0,0,100,102,0,131,2,0,90,59,0,100, -- 53,0,100,103,0,100,104,0,132,1,0,90,60,0,71,100, -- 105,0,100,106,0,132,0,0,100,106,0,131,2,0,90,61, -- 0,71,100,107,0,100,108,0,132,0,0,100,108,0,131,2, -- 0,90,62,0,71,100,109,0,100,110,0,132,0,0,100,110, -- 0,131,2,0,90,63,0,71,100,111,0,100,112,0,132,0, -- 0,100,112,0,131,2,0,90,64,0,71,100,113,0,100,114, -- 0,132,0,0,100,114,0,101,64,0,131,3,0,90,65,0, -- 71,100,115,0,100,116,0,132,0,0,100,116,0,131,2,0, -- 90,66,0,71,100,117,0,100,118,0,132,0,0,100,118,0, -- 101,66,0,101,65,0,131,4,0,90,67,0,71,100,119,0, -- 100,120,0,132,0,0,100,120,0,101,66,0,101,64,0,131, -- 4,0,90,68,0,103,0,0,90,69,0,71,100,121,0,100, -- 122,0,132,0,0,100,122,0,131,2,0,90,70,0,71,100, -- 123,0,100,124,0,132,0,0,100,124,0,131,2,0,90,71, -- 0,71,100,125,0,100,126,0,132,0,0,100,126,0,131,2, -- 0,90,72,0,71,100,127,0,100,128,0,132,0,0,100,128, -- 0,131,2,0,90,73,0,71,100,129,0,100,130,0,132,0, -- 0,100,130,0,131,2,0,90,74,0,71,100,131,0,100,132, -- 0,132,0,0,100,132,0,131,2,0,90,75,0,100,133,0, -- 100,134,0,132,0,0,90,76,0,100,135,0,100,136,0,132, -- 0,0,90,77,0,100,53,0,100,137,0,100,138,0,132,1, -- 0,90,78,0,100,139,0,100,140,0,132,0,0,90,79,0, -- 100,141,0,90,80,0,101,80,0,100,142,0,23,90,81,0, -- 100,143,0,100,144,0,132,0,0,90,82,0,100,145,0,100, -- 146,0,132,0,0,90,83,0,100,53,0,100,80,0,100,147, -- 0,100,148,0,132,2,0,90,84,0,100,149,0,100,150,0, -- 132,0,0,90,85,0,100,151,0,100,152,0,132,0,0,90, -- 86,0,100,153,0,100,154,0,132,0,0,90,87,0,100,53, -- 0,100,53,0,102,0,0,100,80,0,100,155,0,100,156,0, -- 132,4,0,90,88,0,100,157,0,100,158,0,132,0,0,90, -- 89,0,100,159,0,100,160,0,132,0,0,90,90,0,100,161, -- 0,100,162,0,132,0,0,90,91,0,100,53,0,83,41,164, -+ 54,0,100,96,0,100,54,0,100,97,0,101,56,0,100,98, -+ 0,100,99,0,132,1,2,90,57,0,100,54,0,100,54,0, -+ 100,100,0,100,101,0,132,2,0,90,58,0,71,100,102,0, -+ 100,103,0,132,0,0,100,103,0,131,2,0,90,59,0,100, -+ 54,0,100,104,0,100,105,0,132,1,0,90,60,0,71,100, -+ 106,0,100,107,0,132,0,0,100,107,0,131,2,0,90,61, -+ 0,71,100,108,0,100,109,0,132,0,0,100,109,0,131,2, -+ 0,90,62,0,71,100,110,0,100,111,0,132,0,0,100,111, -+ 0,131,2,0,90,63,0,71,100,112,0,100,113,0,132,0, -+ 0,100,113,0,131,2,0,90,64,0,71,100,114,0,100,115, -+ 0,132,0,0,100,115,0,101,64,0,131,3,0,90,65,0, -+ 71,100,116,0,100,117,0,132,0,0,100,117,0,131,2,0, -+ 90,66,0,71,100,118,0,100,119,0,132,0,0,100,119,0, -+ 101,66,0,101,65,0,131,4,0,90,67,0,71,100,120,0, -+ 100,121,0,132,0,0,100,121,0,101,66,0,101,64,0,131, -+ 4,0,90,68,0,103,0,0,90,69,0,71,100,122,0,100, -+ 123,0,132,0,0,100,123,0,131,2,0,90,70,0,71,100, -+ 124,0,100,125,0,132,0,0,100,125,0,131,2,0,90,71, -+ 0,71,100,126,0,100,127,0,132,0,0,100,127,0,131,2, -+ 0,90,72,0,71,100,128,0,100,129,0,132,0,0,100,129, -+ 0,131,2,0,90,73,0,71,100,130,0,100,131,0,132,0, -+ 0,100,131,0,131,2,0,90,74,0,71,100,132,0,100,133, -+ 0,132,0,0,100,133,0,131,2,0,90,75,0,100,134,0, -+ 100,135,0,132,0,0,90,76,0,100,136,0,100,137,0,132, -+ 0,0,90,77,0,100,54,0,100,138,0,100,139,0,132,1, -+ 0,90,78,0,100,140,0,100,141,0,132,0,0,90,79,0, -+ 100,142,0,90,80,0,101,80,0,100,143,0,23,90,81,0, -+ 100,144,0,100,145,0,132,0,0,90,82,0,100,146,0,100, -+ 147,0,132,0,0,90,83,0,100,54,0,100,81,0,100,148, -+ 0,100,149,0,132,2,0,90,84,0,100,150,0,100,151,0, -+ 132,0,0,90,85,0,100,152,0,100,153,0,132,0,0,90, -+ 86,0,100,154,0,100,155,0,132,0,0,90,87,0,100,54, -+ 0,100,54,0,102,0,0,100,81,0,100,156,0,100,157,0, -+ 132,4,0,90,88,0,100,158,0,100,159,0,132,0,0,90, -+ 89,0,100,160,0,100,161,0,132,0,0,90,90,0,100,162, -+ 0,100,163,0,132,0,0,90,91,0,100,54,0,83,41,165, - 97,83,1,0,0,67,111,114,101,32,105,109,112,108,101,109, - 101,110,116,97,116,105,111,110,32,111,102,32,105,109,112,111, - 114,116,46,10,10,84,104,105,115,32,109,111,100,117,108,101, -@@ -102,2102 +102,3127 @@ - 32,112,117,98,108,105,99,45,102,97,99,105,110,103,32,118, - 101,114,115,105,111,110,32,111,102,32,116,104,105,115,32,109, - 111,100,117,108,101,46,10,10,218,3,119,105,110,218,6,99, -- 121,103,119,105,110,218,6,100,97,114,119,105,110,99,0,0, -- 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, -- 0,0,115,49,0,0,0,116,0,0,106,1,0,106,2,0, -- 116,3,0,131,1,0,114,33,0,100,1,0,100,2,0,132, -- 0,0,125,0,0,110,12,0,100,3,0,100,2,0,132,0, -- 0,125,0,0,124,0,0,83,41,4,78,99,0,0,0,0, -- 0,0,0,0,0,0,0,0,2,0,0,0,83,0,0,0, -- 115,13,0,0,0,100,1,0,116,0,0,106,1,0,107,6, -- 0,83,41,2,122,53,84,114,117,101,32,105,102,32,102,105, -- 108,101,110,97,109,101,115,32,109,117,115,116,32,98,101,32, -- 99,104,101,99,107,101,100,32,99,97,115,101,45,105,110,115, -- 101,110,115,105,116,105,118,101,108,121,46,115,12,0,0,0, -- 80,89,84,72,79,78,67,65,83,69,79,75,41,2,218,3, -- 95,111,115,90,7,101,110,118,105,114,111,110,169,0,114,4, -- 0,0,0,114,4,0,0,0,250,29,60,102,114,111,122,101, -- 110,32,105,109,112,111,114,116,108,105,98,46,95,98,111,111, -- 116,115,116,114,97,112,62,218,11,95,114,101,108,97,120,95, -- 99,97,115,101,30,0,0,0,115,2,0,0,0,0,2,122, -- 37,95,109,97,107,101,95,114,101,108,97,120,95,99,97,115, -- 101,46,60,108,111,99,97,108,115,62,46,95,114,101,108,97, -- 120,95,99,97,115,101,99,0,0,0,0,0,0,0,0,0, -- 0,0,0,1,0,0,0,83,0,0,0,115,4,0,0,0, -- 100,1,0,83,41,2,122,53,84,114,117,101,32,105,102,32, -- 102,105,108,101,110,97,109,101,115,32,109,117,115,116,32,98, -- 101,32,99,104,101,99,107,101,100,32,99,97,115,101,45,105, -- 110,115,101,110,115,105,116,105,118,101,108,121,46,70,114,4, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,6,0,0,0,34,0,0,0, -- 115,2,0,0,0,0,2,41,4,218,3,115,121,115,218,8, -- 112,108,97,116,102,111,114,109,218,10,115,116,97,114,116,115, -- 119,105,116,104,218,27,95,67,65,83,69,95,73,78,83,69, -- 78,83,73,84,73,86,69,95,80,76,65,84,70,79,82,77, -- 83,41,1,114,6,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,16,95,109,97,107,101,95,114, -- 101,108,97,120,95,99,97,115,101,28,0,0,0,115,8,0, -- 0,0,0,1,18,1,15,4,12,3,114,11,0,0,0,99, -- 1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0, -- 67,0,0,0,115,26,0,0,0,116,0,0,124,0,0,131, -- 1,0,100,1,0,64,106,1,0,100,2,0,100,3,0,131, -- 2,0,83,41,4,122,42,67,111,110,118,101,114,116,32,97, -- 32,51,50,45,98,105,116,32,105,110,116,101,103,101,114,32, -- 116,111,32,108,105,116,116,108,101,45,101,110,100,105,97,110, -- 46,108,3,0,0,0,255,127,255,127,3,0,233,4,0,0, -- 0,218,6,108,105,116,116,108,101,41,2,218,3,105,110,116, -- 218,8,116,111,95,98,121,116,101,115,41,1,218,1,120,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,7, -- 95,119,95,108,111,110,103,40,0,0,0,115,2,0,0,0, -- 0,2,114,17,0,0,0,99,1,0,0,0,0,0,0,0, -- 1,0,0,0,3,0,0,0,67,0,0,0,115,16,0,0, -- 0,116,0,0,106,1,0,124,0,0,100,1,0,131,2,0, -- 83,41,2,122,47,67,111,110,118,101,114,116,32,52,32,98, -- 121,116,101,115,32,105,110,32,108,105,116,116,108,101,45,101, -- 110,100,105,97,110,32,116,111,32,97,110,32,105,110,116,101, -- 103,101,114,46,114,13,0,0,0,41,2,114,14,0,0,0, -- 218,10,102,114,111,109,95,98,121,116,101,115,41,1,90,9, -- 105,110,116,95,98,121,116,101,115,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,7,95,114,95,108,111,110, -- 103,45,0,0,0,115,2,0,0,0,0,2,114,19,0,0, -- 0,99,0,0,0,0,0,0,0,0,1,0,0,0,3,0, -- 0,0,71,0,0,0,115,26,0,0,0,116,0,0,106,1, -- 0,100,1,0,100,2,0,132,0,0,124,0,0,68,131,1, -- 0,131,1,0,83,41,3,122,31,82,101,112,108,97,99,101, -- 109,101,110,116,32,102,111,114,32,111,115,46,112,97,116,104, -- 46,106,111,105,110,40,41,46,99,1,0,0,0,0,0,0, -- 0,2,0,0,0,4,0,0,0,83,0,0,0,115,37,0, -- 0,0,103,0,0,124,0,0,93,27,0,125,1,0,124,1, -- 0,114,6,0,124,1,0,106,0,0,116,1,0,131,1,0, -- 145,2,0,113,6,0,83,114,4,0,0,0,41,2,218,6, -- 114,115,116,114,105,112,218,15,112,97,116,104,95,115,101,112, -- 97,114,97,116,111,114,115,41,2,218,2,46,48,218,4,112, -- 97,114,116,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,250,10,60,108,105,115,116,99,111,109,112,62,52,0, -- 0,0,115,2,0,0,0,9,1,122,30,95,112,97,116,104, -- 95,106,111,105,110,46,60,108,111,99,97,108,115,62,46,60, -- 108,105,115,116,99,111,109,112,62,41,2,218,8,112,97,116, -- 104,95,115,101,112,218,4,106,111,105,110,41,1,218,10,112, -- 97,116,104,95,112,97,114,116,115,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,10,95,112,97,116,104,95, -- 106,111,105,110,50,0,0,0,115,4,0,0,0,0,2,15, -- 1,114,28,0,0,0,99,1,0,0,0,0,0,0,0,5, -- 0,0,0,5,0,0,0,67,0,0,0,115,134,0,0,0, -- 116,0,0,116,1,0,131,1,0,100,1,0,107,2,0,114, -- 52,0,124,0,0,106,2,0,116,3,0,131,1,0,92,3, -- 0,125,1,0,125,2,0,125,3,0,124,1,0,124,3,0, -- 102,2,0,83,120,69,0,116,4,0,124,0,0,131,1,0, -- 68,93,55,0,125,4,0,124,4,0,116,1,0,107,6,0, -- 114,65,0,124,0,0,106,5,0,124,4,0,100,2,0,100, -- 1,0,131,1,1,92,2,0,125,1,0,125,3,0,124,1, -- 0,124,3,0,102,2,0,83,113,65,0,87,100,3,0,124, -- 0,0,102,2,0,83,41,4,122,32,82,101,112,108,97,99, -- 101,109,101,110,116,32,102,111,114,32,111,115,46,112,97,116, -- 104,46,115,112,108,105,116,40,41,46,233,1,0,0,0,90, -- 8,109,97,120,115,112,108,105,116,218,0,41,6,218,3,108, -- 101,110,114,21,0,0,0,218,10,114,112,97,114,116,105,116, -- 105,111,110,114,25,0,0,0,218,8,114,101,118,101,114,115, -- 101,100,218,6,114,115,112,108,105,116,41,5,218,4,112,97, -- 116,104,90,5,102,114,111,110,116,218,1,95,218,4,116,97, -- 105,108,114,16,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,11,95,112,97,116,104,95,115,112, -- 108,105,116,56,0,0,0,115,16,0,0,0,0,2,18,1, -- 24,1,10,1,19,1,12,1,27,1,14,1,114,38,0,0, -- 0,99,1,0,0,0,0,0,0,0,1,0,0,0,2,0, -- 0,0,67,0,0,0,115,13,0,0,0,116,0,0,106,1, -- 0,124,0,0,131,1,0,83,41,1,122,126,83,116,97,116, -- 32,116,104,101,32,112,97,116,104,46,10,10,32,32,32,32, -- 77,97,100,101,32,97,32,115,101,112,97,114,97,116,101,32, -- 102,117,110,99,116,105,111,110,32,116,111,32,109,97,107,101, -- 32,105,116,32,101,97,115,105,101,114,32,116,111,32,111,118, -- 101,114,114,105,100,101,32,105,110,32,101,120,112,101,114,105, -- 109,101,110,116,115,10,32,32,32,32,40,101,46,103,46,32, -- 99,97,99,104,101,32,115,116,97,116,32,114,101,115,117,108, -- 116,115,41,46,10,10,32,32,32,32,41,2,114,3,0,0, -- 0,90,4,115,116,97,116,41,1,114,35,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,10,95, -- 112,97,116,104,95,115,116,97,116,68,0,0,0,115,2,0, -- 0,0,0,7,114,39,0,0,0,99,2,0,0,0,0,0, -- 0,0,3,0,0,0,11,0,0,0,67,0,0,0,115,58, -- 0,0,0,121,16,0,116,0,0,124,0,0,131,1,0,125, -- 2,0,87,110,22,0,4,116,1,0,107,10,0,114,40,0, -- 1,1,1,100,1,0,83,89,110,1,0,88,124,2,0,106, -- 2,0,100,2,0,64,124,1,0,107,2,0,83,41,3,122, -- 49,84,101,115,116,32,119,104,101,116,104,101,114,32,116,104, -- 101,32,112,97,116,104,32,105,115,32,116,104,101,32,115,112, -- 101,99,105,102,105,101,100,32,109,111,100,101,32,116,121,112, -- 101,46,70,105,0,240,0,0,41,3,114,39,0,0,0,218, -- 7,79,83,69,114,114,111,114,218,7,115,116,95,109,111,100, -- 101,41,3,114,35,0,0,0,218,4,109,111,100,101,90,9, -- 115,116,97,116,95,105,110,102,111,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,18,95,112,97,116,104,95, -- 105,115,95,109,111,100,101,95,116,121,112,101,78,0,0,0, -- 115,10,0,0,0,0,2,3,1,16,1,13,1,9,1,114, -- 43,0,0,0,99,1,0,0,0,0,0,0,0,1,0,0, -- 0,3,0,0,0,67,0,0,0,115,13,0,0,0,116,0, -- 0,124,0,0,100,1,0,131,2,0,83,41,2,122,31,82, -- 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, -- 115,46,112,97,116,104,46,105,115,102,105,108,101,46,105,0, -- 128,0,0,41,1,114,43,0,0,0,41,1,114,35,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,12,95,112,97,116,104,95,105,115,102,105,108,101,87,0, -- 0,0,115,2,0,0,0,0,2,114,44,0,0,0,99,1, -- 0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,67, -- 0,0,0,115,34,0,0,0,124,0,0,115,21,0,116,0, -- 0,106,1,0,131,0,0,125,0,0,110,0,0,116,2,0, -- 124,0,0,100,1,0,131,2,0,83,41,2,122,30,82,101, -- 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, -- 46,112,97,116,104,46,105,115,100,105,114,46,105,0,64,0, -- 0,41,3,114,3,0,0,0,218,6,103,101,116,99,119,100, -- 114,43,0,0,0,41,1,114,35,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,11,95,112,97, -- 116,104,95,105,115,100,105,114,92,0,0,0,115,6,0,0, -- 0,0,2,6,1,15,1,114,46,0,0,0,105,182,1,0, -- 0,99,3,0,0,0,0,0,0,0,6,0,0,0,17,0, -- 0,0,67,0,0,0,115,192,0,0,0,100,1,0,106,0, -- 0,124,0,0,116,1,0,124,0,0,131,1,0,131,2,0, -- 125,3,0,116,2,0,106,3,0,124,3,0,116,2,0,106, -- 4,0,116,2,0,106,5,0,66,116,2,0,106,6,0,66, -- 124,2,0,100,2,0,64,131,3,0,125,4,0,121,60,0, -- 116,7,0,106,8,0,124,4,0,100,3,0,131,2,0,143, -- 20,0,125,5,0,124,5,0,106,9,0,124,1,0,131,1, -- 0,1,87,100,4,0,81,88,116,2,0,106,10,0,124,3, -- 0,124,0,0,131,2,0,1,87,110,59,0,4,116,11,0, -- 107,10,0,114,187,0,1,1,1,121,17,0,116,2,0,106, -- 12,0,124,3,0,131,1,0,1,87,110,18,0,4,116,11, -- 0,107,10,0,114,179,0,1,1,1,89,110,1,0,88,130, -- 0,0,89,110,1,0,88,100,4,0,83,41,5,122,162,66, -- 101,115,116,45,101,102,102,111,114,116,32,102,117,110,99,116, -- 105,111,110,32,116,111,32,119,114,105,116,101,32,100,97,116, -- 97,32,116,111,32,97,32,112,97,116,104,32,97,116,111,109, -- 105,99,97,108,108,121,46,10,32,32,32,32,66,101,32,112, -- 114,101,112,97,114,101,100,32,116,111,32,104,97,110,100,108, -- 101,32,97,32,70,105,108,101,69,120,105,115,116,115,69,114, -- 114,111,114,32,105,102,32,99,111,110,99,117,114,114,101,110, -- 116,32,119,114,105,116,105,110,103,32,111,102,32,116,104,101, -- 10,32,32,32,32,116,101,109,112,111,114,97,114,121,32,102, -- 105,108,101,32,105,115,32,97,116,116,101,109,112,116,101,100, -- 46,122,5,123,125,46,123,125,105,182,1,0,0,90,2,119, -- 98,78,41,13,218,6,102,111,114,109,97,116,218,2,105,100, -- 114,3,0,0,0,90,4,111,112,101,110,90,6,79,95,69, -- 88,67,76,90,7,79,95,67,82,69,65,84,90,8,79,95, -- 87,82,79,78,76,89,218,3,95,105,111,218,6,70,105,108, -- 101,73,79,218,5,119,114,105,116,101,218,7,114,101,112,108, -- 97,99,101,114,40,0,0,0,90,6,117,110,108,105,110,107, -- 41,6,114,35,0,0,0,218,4,100,97,116,97,114,42,0, -- 0,0,90,8,112,97,116,104,95,116,109,112,90,2,102,100, -- 218,4,102,105,108,101,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,13,95,119,114,105,116,101,95,97,116, -- 111,109,105,99,99,0,0,0,115,26,0,0,0,0,5,24, -- 1,9,1,33,1,3,3,21,1,19,1,20,1,13,1,3, -- 1,17,1,13,1,5,1,114,55,0,0,0,99,2,0,0, -- 0,0,0,0,0,3,0,0,0,7,0,0,0,67,0,0, -- 0,115,95,0,0,0,120,69,0,100,1,0,100,2,0,100, -- 3,0,100,4,0,103,4,0,68,93,49,0,125,2,0,116, -- 0,0,124,1,0,124,2,0,131,2,0,114,19,0,116,1, -- 0,124,0,0,124,2,0,116,2,0,124,1,0,124,2,0, -- 131,2,0,131,3,0,1,113,19,0,113,19,0,87,124,0, -- 0,106,3,0,106,4,0,124,1,0,106,3,0,131,1,0, -- 1,100,5,0,83,41,6,122,47,83,105,109,112,108,101,32, -- 115,117,98,115,116,105,116,117,116,101,32,102,111,114,32,102, -- 117,110,99,116,111,111,108,115,46,117,112,100,97,116,101,95, -- 119,114,97,112,112,101,114,46,218,10,95,95,109,111,100,117, -- 108,101,95,95,218,8,95,95,110,97,109,101,95,95,218,12, -- 95,95,113,117,97,108,110,97,109,101,95,95,218,7,95,95, -- 100,111,99,95,95,78,41,5,218,7,104,97,115,97,116,116, -- 114,218,7,115,101,116,97,116,116,114,218,7,103,101,116,97, -- 116,116,114,218,8,95,95,100,105,99,116,95,95,218,6,117, -- 112,100,97,116,101,41,3,90,3,110,101,119,90,3,111,108, -- 100,114,52,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,5,95,119,114,97,112,121,0,0,0, -- 115,8,0,0,0,0,2,25,1,15,1,32,1,114,65,0, -- 0,0,99,1,0,0,0,0,0,0,0,1,0,0,0,2, -- 0,0,0,67,0,0,0,115,16,0,0,0,116,0,0,116, -- 1,0,131,1,0,124,0,0,131,1,0,83,41,1,78,41, -- 2,218,4,116,121,112,101,114,7,0,0,0,41,1,218,4, -- 110,97,109,101,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,11,95,110,101,119,95,109,111,100,117,108,101, -- 129,0,0,0,115,2,0,0,0,0,1,114,68,0,0,0, -+ 121,103,119,105,110,218,6,100,97,114,119,105,110,218,3,105, -+ 111,115,99,0,0,0,0,0,0,0,0,1,0,0,0,2, -+ 0,0,0,67,0,0,0,115,49,0,0,0,116,0,0,106, -+ 1,0,106,2,0,116,3,0,131,1,0,114,33,0,100,1, -+ 0,100,2,0,132,0,0,125,0,0,110,12,0,100,3,0, -+ 100,2,0,132,0,0,125,0,0,124,0,0,83,41,4,78, - 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, -- 0,64,0,0,0,115,58,0,0,0,101,0,0,90,1,0, -- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, -- 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, -- 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, -- 100,8,0,83,41,9,218,13,95,77,97,110,97,103,101,82, -- 101,108,111,97,100,122,63,77,97,110,97,103,101,115,32,116, -- 104,101,32,112,111,115,115,105,98,108,101,32,99,108,101,97, -- 110,45,117,112,32,111,102,32,115,121,115,46,109,111,100,117, -- 108,101,115,32,102,111,114,32,108,111,97,100,95,109,111,100, -- 117,108,101,40,41,46,99,2,0,0,0,0,0,0,0,2, -+ 0,83,0,0,0,115,13,0,0,0,100,1,0,116,0,0, -+ 106,1,0,107,6,0,83,41,2,122,53,84,114,117,101,32, -+ 105,102,32,102,105,108,101,110,97,109,101,115,32,109,117,115, -+ 116,32,98,101,32,99,104,101,99,107,101,100,32,99,97,115, -+ 101,45,105,110,115,101,110,115,105,116,105,118,101,108,121,46, -+ 115,12,0,0,0,80,89,84,72,79,78,67,65,83,69,79, -+ 75,41,2,218,3,95,111,115,90,7,101,110,118,105,114,111, -+ 110,169,0,114,5,0,0,0,114,5,0,0,0,250,29,60, -+ 102,114,111,122,101,110,32,105,109,112,111,114,116,108,105,98, -+ 46,95,98,111,111,116,115,116,114,97,112,62,218,11,95,114, -+ 101,108,97,120,95,99,97,115,101,30,0,0,0,115,2,0, -+ 0,0,0,2,122,37,95,109,97,107,101,95,114,101,108,97, -+ 120,95,99,97,115,101,46,60,108,111,99,97,108,115,62,46, -+ 95,114,101,108,97,120,95,99,97,115,101,99,0,0,0,0, -+ 0,0,0,0,0,0,0,0,1,0,0,0,83,0,0,0, -+ 115,4,0,0,0,100,1,0,83,41,2,122,53,84,114,117, -+ 101,32,105,102,32,102,105,108,101,110,97,109,101,115,32,109, -+ 117,115,116,32,98,101,32,99,104,101,99,107,101,100,32,99, -+ 97,115,101,45,105,110,115,101,110,115,105,116,105,118,101,108, -+ 121,46,70,114,5,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,7,0,0, -+ 0,34,0,0,0,115,2,0,0,0,0,2,41,4,218,3, -+ 115,121,115,218,8,112,108,97,116,102,111,114,109,218,10,115, -+ 116,97,114,116,115,119,105,116,104,218,27,95,67,65,83,69, -+ 95,73,78,83,69,78,83,73,84,73,86,69,95,80,76,65, -+ 84,70,79,82,77,83,41,1,114,7,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,16,95,109, -+ 97,107,101,95,114,101,108,97,120,95,99,97,115,101,28,0, -+ 0,0,115,8,0,0,0,0,1,18,1,15,4,12,3,114, -+ 12,0,0,0,99,1,0,0,0,0,0,0,0,1,0,0, -+ 0,3,0,0,0,67,0,0,0,115,26,0,0,0,116,0, -+ 0,124,0,0,131,1,0,100,1,0,64,106,1,0,100,2, -+ 0,100,3,0,131,2,0,83,41,4,122,42,67,111,110,118, -+ 101,114,116,32,97,32,51,50,45,98,105,116,32,105,110,116, -+ 101,103,101,114,32,116,111,32,108,105,116,116,108,101,45,101, -+ 110,100,105,97,110,46,108,3,0,0,0,255,127,255,127,3, -+ 0,233,4,0,0,0,218,6,108,105,116,116,108,101,41,2, -+ 218,3,105,110,116,218,8,116,111,95,98,121,116,101,115,41, -+ 1,218,1,120,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,7,95,119,95,108,111,110,103,40,0,0,0, -+ 115,2,0,0,0,0,2,114,18,0,0,0,99,1,0,0, -+ 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, -+ 0,115,16,0,0,0,116,0,0,106,1,0,124,0,0,100, -+ 1,0,131,2,0,83,41,2,122,47,67,111,110,118,101,114, -+ 116,32,52,32,98,121,116,101,115,32,105,110,32,108,105,116, -+ 116,108,101,45,101,110,100,105,97,110,32,116,111,32,97,110, -+ 32,105,110,116,101,103,101,114,46,114,14,0,0,0,41,2, -+ 114,15,0,0,0,218,10,102,114,111,109,95,98,121,116,101, -+ 115,41,1,90,9,105,110,116,95,98,121,116,101,115,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,7,95, -+ 114,95,108,111,110,103,45,0,0,0,115,2,0,0,0,0, -+ 2,114,20,0,0,0,99,0,0,0,0,0,0,0,0,1, -+ 0,0,0,3,0,0,0,71,0,0,0,115,26,0,0,0, -+ 116,0,0,106,1,0,100,1,0,100,2,0,132,0,0,124, -+ 0,0,68,131,1,0,131,1,0,83,41,3,122,31,82,101, -+ 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, -+ 46,112,97,116,104,46,106,111,105,110,40,41,46,99,1,0, -+ 0,0,0,0,0,0,2,0,0,0,4,0,0,0,83,0, -+ 0,0,115,37,0,0,0,103,0,0,124,0,0,93,27,0, -+ 125,1,0,124,1,0,114,6,0,124,1,0,106,0,0,116, -+ 1,0,131,1,0,145,2,0,113,6,0,83,114,5,0,0, -+ 0,41,2,218,6,114,115,116,114,105,112,218,15,112,97,116, -+ 104,95,115,101,112,97,114,97,116,111,114,115,41,2,218,2, -+ 46,48,218,4,112,97,114,116,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,250,10,60,108,105,115,116,99,111, -+ 109,112,62,52,0,0,0,115,2,0,0,0,9,1,122,30, -+ 95,112,97,116,104,95,106,111,105,110,46,60,108,111,99,97, -+ 108,115,62,46,60,108,105,115,116,99,111,109,112,62,41,2, -+ 218,8,112,97,116,104,95,115,101,112,218,4,106,111,105,110, -+ 41,1,218,10,112,97,116,104,95,112,97,114,116,115,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,10,95, -+ 112,97,116,104,95,106,111,105,110,50,0,0,0,115,4,0, -+ 0,0,0,2,15,1,114,29,0,0,0,99,1,0,0,0, -+ 0,0,0,0,5,0,0,0,5,0,0,0,67,0,0,0, -+ 115,134,0,0,0,116,0,0,116,1,0,131,1,0,100,1, -+ 0,107,2,0,114,52,0,124,0,0,106,2,0,116,3,0, -+ 131,1,0,92,3,0,125,1,0,125,2,0,125,3,0,124, -+ 1,0,124,3,0,102,2,0,83,120,69,0,116,4,0,124, -+ 0,0,131,1,0,68,93,55,0,125,4,0,124,4,0,116, -+ 1,0,107,6,0,114,65,0,124,0,0,106,5,0,124,4, -+ 0,100,2,0,100,1,0,131,1,1,92,2,0,125,1,0, -+ 125,3,0,124,1,0,124,3,0,102,2,0,83,113,65,0, -+ 87,100,3,0,124,0,0,102,2,0,83,41,4,122,32,82, -+ 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, -+ 115,46,112,97,116,104,46,115,112,108,105,116,40,41,46,233, -+ 1,0,0,0,90,8,109,97,120,115,112,108,105,116,218,0, -+ 41,6,218,3,108,101,110,114,22,0,0,0,218,10,114,112, -+ 97,114,116,105,116,105,111,110,114,26,0,0,0,218,8,114, -+ 101,118,101,114,115,101,100,218,6,114,115,112,108,105,116,41, -+ 5,218,4,112,97,116,104,90,5,102,114,111,110,116,218,1, -+ 95,218,4,116,97,105,108,114,17,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,11,95,112,97, -+ 116,104,95,115,112,108,105,116,56,0,0,0,115,16,0,0, -+ 0,0,2,18,1,24,1,10,1,19,1,12,1,27,1,14, -+ 1,114,39,0,0,0,99,1,0,0,0,0,0,0,0,1, - 0,0,0,2,0,0,0,67,0,0,0,115,13,0,0,0, -- 124,1,0,124,0,0,95,0,0,100,0,0,83,41,1,78, -- 41,1,218,5,95,110,97,109,101,41,2,218,4,115,101,108, -- 102,114,67,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,8,95,95,105,110,105,116,95,95,141, -- 0,0,0,115,2,0,0,0,0,1,122,22,95,77,97,110, -- 97,103,101,82,101,108,111,97,100,46,95,95,105,110,105,116, -- 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2, -- 0,0,0,67,0,0,0,115,25,0,0,0,124,0,0,106, -- 0,0,116,1,0,106,2,0,107,6,0,124,0,0,95,3, -- 0,100,0,0,83,41,1,78,41,4,114,70,0,0,0,114, -- 7,0,0,0,218,7,109,111,100,117,108,101,115,218,10,95, -- 105,115,95,114,101,108,111,97,100,41,1,114,71,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, -- 9,95,95,101,110,116,101,114,95,95,144,0,0,0,115,2, -- 0,0,0,0,1,122,23,95,77,97,110,97,103,101,82,101, -- 108,111,97,100,46,95,95,101,110,116,101,114,95,95,99,1, -- 0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,71, -- 0,0,0,115,80,0,0,0,116,0,0,100,1,0,100,2, -- 0,132,0,0,124,1,0,68,131,1,0,131,1,0,114,76, -- 0,124,0,0,106,1,0,12,114,76,0,121,17,0,116,2, -- 0,106,3,0,124,0,0,106,4,0,61,87,113,76,0,4, -- 116,5,0,107,10,0,114,72,0,1,1,1,89,113,76,0, -- 88,110,0,0,100,0,0,83,41,3,78,99,1,0,0,0, -- 0,0,0,0,2,0,0,0,3,0,0,0,115,0,0,0, -- 115,27,0,0,0,124,0,0,93,17,0,125,1,0,124,1, -- 0,100,0,0,107,9,0,86,1,113,3,0,100,0,0,83, -- 41,1,78,114,4,0,0,0,41,2,114,22,0,0,0,218, -- 3,97,114,103,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,250,9,60,103,101,110,101,120,112,114,62,148,0, -- 0,0,115,2,0,0,0,6,0,122,41,95,77,97,110,97, -- 103,101,82,101,108,111,97,100,46,95,95,101,120,105,116,95, -- 95,46,60,108,111,99,97,108,115,62,46,60,103,101,110,101, -- 120,112,114,62,41,6,218,3,97,110,121,114,74,0,0,0, -- 114,7,0,0,0,114,73,0,0,0,114,70,0,0,0,218, -- 8,75,101,121,69,114,114,111,114,41,2,114,71,0,0,0, -- 218,4,97,114,103,115,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,8,95,95,101,120,105,116,95,95,147, -- 0,0,0,115,10,0,0,0,0,1,35,1,3,1,17,1, -- 13,1,122,22,95,77,97,110,97,103,101,82,101,108,111,97, -- 100,46,95,95,101,120,105,116,95,95,78,41,7,114,57,0, -- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, -- 0,114,72,0,0,0,114,75,0,0,0,114,81,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,69,0,0,0,137,0,0,0,115,8,0, -- 0,0,12,2,6,2,12,3,12,3,114,69,0,0,0,99, -- 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, -- 64,0,0,0,115,16,0,0,0,101,0,0,90,1,0,100, -- 0,0,90,2,0,100,1,0,83,41,2,218,14,95,68,101, -- 97,100,108,111,99,107,69,114,114,111,114,78,41,3,114,57, -- 0,0,0,114,56,0,0,0,114,58,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,82,0,0,0,162,0,0,0,115,2,0,0,0,12, -- 1,114,82,0,0,0,99,0,0,0,0,0,0,0,0,0, -- 0,0,0,2,0,0,0,64,0,0,0,115,82,0,0,0, -- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, -- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, -- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, -- 132,0,0,90,6,0,100,8,0,100,9,0,132,0,0,90, -- 7,0,100,10,0,100,11,0,132,0,0,90,8,0,100,12, -- 0,83,41,13,218,11,95,77,111,100,117,108,101,76,111,99, -- 107,122,169,65,32,114,101,99,117,114,115,105,118,101,32,108, -- 111,99,107,32,105,109,112,108,101,109,101,110,116,97,116,105, -- 111,110,32,119,104,105,99,104,32,105,115,32,97,98,108,101, -- 32,116,111,32,100,101,116,101,99,116,32,100,101,97,100,108, -- 111,99,107,115,10,32,32,32,32,40,101,46,103,46,32,116, -- 104,114,101,97,100,32,49,32,116,114,121,105,110,103,32,116, -- 111,32,116,97,107,101,32,108,111,99,107,115,32,65,32,116, -- 104,101,110,32,66,44,32,97,110,100,32,116,104,114,101,97, -- 100,32,50,32,116,114,121,105,110,103,32,116,111,10,32,32, -- 32,32,116,97,107,101,32,108,111,99,107,115,32,66,32,116, -- 104,101,110,32,65,41,46,10,32,32,32,32,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, -- 0,115,70,0,0,0,116,0,0,106,1,0,131,0,0,124, -- 0,0,95,2,0,116,0,0,106,1,0,131,0,0,124,0, -- 0,95,3,0,124,1,0,124,0,0,95,4,0,100,0,0, -- 124,0,0,95,5,0,100,1,0,124,0,0,95,6,0,100, -- 1,0,124,0,0,95,7,0,100,0,0,83,41,2,78,233, -- 0,0,0,0,41,8,218,7,95,116,104,114,101,97,100,90, -- 13,97,108,108,111,99,97,116,101,95,108,111,99,107,218,4, -- 108,111,99,107,218,6,119,97,107,101,117,112,114,67,0,0, -- 0,218,5,111,119,110,101,114,218,5,99,111,117,110,116,218, -- 7,119,97,105,116,101,114,115,41,2,114,71,0,0,0,114, -- 67,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,72,0,0,0,172,0,0,0,115,12,0,0, -- 0,0,1,15,1,15,1,9,1,9,1,9,1,122,20,95, -- 77,111,100,117,108,101,76,111,99,107,46,95,95,105,110,105, -- 116,95,95,99,1,0,0,0,0,0,0,0,4,0,0,0, -- 2,0,0,0,67,0,0,0,115,87,0,0,0,116,0,0, -- 106,1,0,131,0,0,125,1,0,124,0,0,106,2,0,125, -- 2,0,120,59,0,116,3,0,106,4,0,124,2,0,131,1, -- 0,125,3,0,124,3,0,100,0,0,107,8,0,114,55,0, -- 100,1,0,83,124,3,0,106,2,0,125,2,0,124,2,0, -- 124,1,0,107,2,0,114,24,0,100,2,0,83,113,24,0, -- 100,0,0,83,41,3,78,70,84,41,5,114,85,0,0,0, -- 218,9,103,101,116,95,105,100,101,110,116,114,88,0,0,0, -- 218,12,95,98,108,111,99,107,105,110,103,95,111,110,218,3, -- 103,101,116,41,4,114,71,0,0,0,218,2,109,101,218,3, -- 116,105,100,114,86,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,12,104,97,115,95,100,101,97, -- 100,108,111,99,107,180,0,0,0,115,18,0,0,0,0,2, -- 12,1,9,1,3,1,15,1,12,1,4,1,9,1,12,1, -- 122,24,95,77,111,100,117,108,101,76,111,99,107,46,104,97, -- 115,95,100,101,97,100,108,111,99,107,99,1,0,0,0,0, -- 0,0,0,2,0,0,0,17,0,0,0,67,0,0,0,115, -- 214,0,0,0,116,0,0,106,1,0,131,0,0,125,1,0, -- 124,0,0,116,2,0,124,1,0,60,122,177,0,120,170,0, -- 124,0,0,106,3,0,143,130,0,1,124,0,0,106,4,0, -- 100,1,0,107,2,0,115,68,0,124,0,0,106,5,0,124, -- 1,0,107,2,0,114,96,0,124,1,0,124,0,0,95,5, -- 0,124,0,0,4,106,4,0,100,2,0,55,2,95,4,0, -- 100,3,0,83,124,0,0,106,6,0,131,0,0,114,127,0, -- 116,7,0,100,4,0,124,0,0,22,131,1,0,130,1,0, -- 110,0,0,124,0,0,106,8,0,106,9,0,100,5,0,131, -- 1,0,114,163,0,124,0,0,4,106,10,0,100,2,0,55, -- 2,95,10,0,110,0,0,87,100,6,0,81,88,124,0,0, -- 106,8,0,106,9,0,131,0,0,1,124,0,0,106,8,0, -- 106,11,0,131,0,0,1,113,28,0,87,100,6,0,116,2, -- 0,124,1,0,61,88,100,6,0,83,41,7,122,185,10,32, -- 32,32,32,32,32,32,32,65,99,113,117,105,114,101,32,116, -- 104,101,32,109,111,100,117,108,101,32,108,111,99,107,46,32, -- 32,73,102,32,97,32,112,111,116,101,110,116,105,97,108,32, -- 100,101,97,100,108,111,99,107,32,105,115,32,100,101,116,101, -- 99,116,101,100,44,10,32,32,32,32,32,32,32,32,97,32, -- 95,68,101,97,100,108,111,99,107,69,114,114,111,114,32,105, -- 115,32,114,97,105,115,101,100,46,10,32,32,32,32,32,32, -- 32,32,79,116,104,101,114,119,105,115,101,44,32,116,104,101, -- 32,108,111,99,107,32,105,115,32,97,108,119,97,121,115,32, -- 97,99,113,117,105,114,101,100,32,97,110,100,32,84,114,117, -- 101,32,105,115,32,114,101,116,117,114,110,101,100,46,10,32, -- 32,32,32,32,32,32,32,114,84,0,0,0,114,29,0,0, -- 0,84,122,23,100,101,97,100,108,111,99,107,32,100,101,116, -- 101,99,116,101,100,32,98,121,32,37,114,70,78,41,12,114, -- 85,0,0,0,114,91,0,0,0,114,92,0,0,0,114,86, -- 0,0,0,114,89,0,0,0,114,88,0,0,0,114,96,0, -- 0,0,114,82,0,0,0,114,87,0,0,0,218,7,97,99, -- 113,117,105,114,101,114,90,0,0,0,218,7,114,101,108,101, -- 97,115,101,41,2,114,71,0,0,0,114,95,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,97, -- 0,0,0,192,0,0,0,115,32,0,0,0,0,6,12,1, -- 10,1,3,1,3,1,10,1,30,1,9,1,15,1,4,1, -- 12,1,19,1,18,1,24,2,13,1,20,2,122,19,95,77, -- 111,100,117,108,101,76,111,99,107,46,97,99,113,117,105,114, -- 101,99,1,0,0,0,0,0,0,0,2,0,0,0,10,0, -- 0,0,67,0,0,0,115,165,0,0,0,116,0,0,106,1, -- 0,131,0,0,125,1,0,124,0,0,106,2,0,143,138,0, -- 1,124,0,0,106,3,0,124,1,0,107,3,0,114,52,0, -- 116,4,0,100,1,0,131,1,0,130,1,0,110,0,0,124, -- 0,0,106,5,0,100,2,0,107,4,0,115,73,0,116,6, -- 0,130,1,0,124,0,0,4,106,5,0,100,3,0,56,2, -- 95,5,0,124,0,0,106,5,0,100,2,0,107,2,0,114, -- 155,0,100,0,0,124,0,0,95,3,0,124,0,0,106,7, -- 0,114,155,0,124,0,0,4,106,7,0,100,3,0,56,2, -- 95,7,0,124,0,0,106,8,0,106,9,0,131,0,0,1, -- 113,155,0,110,0,0,87,100,0,0,81,88,100,0,0,83, -- 41,4,78,122,31,99,97,110,110,111,116,32,114,101,108,101, -- 97,115,101,32,117,110,45,97,99,113,117,105,114,101,100,32, -- 108,111,99,107,114,84,0,0,0,114,29,0,0,0,41,10, -- 114,85,0,0,0,114,91,0,0,0,114,86,0,0,0,114, -- 88,0,0,0,218,12,82,117,110,116,105,109,101,69,114,114, -- 111,114,114,89,0,0,0,218,14,65,115,115,101,114,116,105, -- 111,110,69,114,114,111,114,114,90,0,0,0,114,87,0,0, -- 0,114,98,0,0,0,41,2,114,71,0,0,0,114,95,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,98,0,0,0,217,0,0,0,115,22,0,0,0,0, -- 1,12,1,10,1,15,1,15,1,21,1,15,1,15,1,9, -- 1,9,1,15,1,122,19,95,77,111,100,117,108,101,76,111, -- 99,107,46,114,101,108,101,97,115,101,99,1,0,0,0,0, -- 0,0,0,1,0,0,0,4,0,0,0,67,0,0,0,115, -- 25,0,0,0,100,1,0,106,0,0,124,0,0,106,1,0, -- 116,2,0,124,0,0,131,1,0,131,2,0,83,41,2,78, -- 122,23,95,77,111,100,117,108,101,76,111,99,107,40,123,33, -- 114,125,41,32,97,116,32,123,125,41,3,114,47,0,0,0, -- 114,67,0,0,0,114,48,0,0,0,41,1,114,71,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,8,95,95,114,101,112,114,95,95,230,0,0,0,115,2, -- 0,0,0,0,1,122,20,95,77,111,100,117,108,101,76,111, -- 99,107,46,95,95,114,101,112,114,95,95,78,41,9,114,57, -- 0,0,0,114,56,0,0,0,114,58,0,0,0,114,59,0, -- 0,0,114,72,0,0,0,114,96,0,0,0,114,97,0,0, -- 0,114,98,0,0,0,114,101,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 83,0,0,0,166,0,0,0,115,12,0,0,0,12,4,6, -- 2,12,8,12,12,12,25,12,13,114,83,0,0,0,99,0, -- 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,64, -- 0,0,0,115,70,0,0,0,101,0,0,90,1,0,100,0, -- 0,90,2,0,100,1,0,90,3,0,100,2,0,100,3,0, -- 132,0,0,90,4,0,100,4,0,100,5,0,132,0,0,90, -- 5,0,100,6,0,100,7,0,132,0,0,90,6,0,100,8, -- 0,100,9,0,132,0,0,90,7,0,100,10,0,83,41,11, -- 218,16,95,68,117,109,109,121,77,111,100,117,108,101,76,111, -- 99,107,122,86,65,32,115,105,109,112,108,101,32,95,77,111, -- 100,117,108,101,76,111,99,107,32,101,113,117,105,118,97,108, -- 101,110,116,32,102,111,114,32,80,121,116,104,111,110,32,98, -- 117,105,108,100,115,32,119,105,116,104,111,117,116,10,32,32, -- 32,32,109,117,108,116,105,45,116,104,114,101,97,100,105,110, -- 103,32,115,117,112,112,111,114,116,46,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, -- 22,0,0,0,124,1,0,124,0,0,95,0,0,100,1,0, -- 124,0,0,95,1,0,100,0,0,83,41,2,78,114,84,0, -- 0,0,41,2,114,67,0,0,0,114,89,0,0,0,41,2, -- 114,71,0,0,0,114,67,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,72,0,0,0,238,0, -- 0,0,115,4,0,0,0,0,1,9,1,122,25,95,68,117, -- 109,109,121,77,111,100,117,108,101,76,111,99,107,46,95,95, -- 105,110,105,116,95,95,99,1,0,0,0,0,0,0,0,1, -- 0,0,0,3,0,0,0,67,0,0,0,115,19,0,0,0, -- 124,0,0,4,106,0,0,100,1,0,55,2,95,0,0,100, -- 2,0,83,41,3,78,114,29,0,0,0,84,41,1,114,89, -- 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,97,0,0,0,242,0, -- 0,0,115,4,0,0,0,0,1,15,1,122,24,95,68,117, -- 109,109,121,77,111,100,117,108,101,76,111,99,107,46,97,99, -- 113,117,105,114,101,99,1,0,0,0,0,0,0,0,1,0, -- 0,0,3,0,0,0,67,0,0,0,115,49,0,0,0,124, -- 0,0,106,0,0,100,1,0,107,2,0,114,30,0,116,1, -- 0,100,2,0,131,1,0,130,1,0,110,0,0,124,0,0, -- 4,106,0,0,100,3,0,56,2,95,0,0,100,0,0,83, -- 41,4,78,114,84,0,0,0,122,31,99,97,110,110,111,116, -+ 116,0,0,106,1,0,124,0,0,131,1,0,83,41,1,122, -+ 126,83,116,97,116,32,116,104,101,32,112,97,116,104,46,10, -+ 10,32,32,32,32,77,97,100,101,32,97,32,115,101,112,97, -+ 114,97,116,101,32,102,117,110,99,116,105,111,110,32,116,111, -+ 32,109,97,107,101,32,105,116,32,101,97,115,105,101,114,32, -+ 116,111,32,111,118,101,114,114,105,100,101,32,105,110,32,101, -+ 120,112,101,114,105,109,101,110,116,115,10,32,32,32,32,40, -+ 101,46,103,46,32,99,97,99,104,101,32,115,116,97,116,32, -+ 114,101,115,117,108,116,115,41,46,10,10,32,32,32,32,41, -+ 2,114,4,0,0,0,90,4,115,116,97,116,41,1,114,36, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,218,10,95,112,97,116,104,95,115,116,97,116,68,0, -+ 0,0,115,2,0,0,0,0,7,114,40,0,0,0,99,2, -+ 0,0,0,0,0,0,0,3,0,0,0,11,0,0,0,67, -+ 0,0,0,115,58,0,0,0,121,16,0,116,0,0,124,0, -+ 0,131,1,0,125,2,0,87,110,22,0,4,116,1,0,107, -+ 10,0,114,40,0,1,1,1,100,1,0,83,89,110,1,0, -+ 88,124,2,0,106,2,0,100,2,0,64,124,1,0,107,2, -+ 0,83,41,3,122,49,84,101,115,116,32,119,104,101,116,104, -+ 101,114,32,116,104,101,32,112,97,116,104,32,105,115,32,116, -+ 104,101,32,115,112,101,99,105,102,105,101,100,32,109,111,100, -+ 101,32,116,121,112,101,46,70,105,0,240,0,0,41,3,114, -+ 40,0,0,0,218,7,79,83,69,114,114,111,114,218,7,115, -+ 116,95,109,111,100,101,41,3,114,36,0,0,0,218,4,109, -+ 111,100,101,90,9,115,116,97,116,95,105,110,102,111,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,18,95, -+ 112,97,116,104,95,105,115,95,109,111,100,101,95,116,121,112, -+ 101,78,0,0,0,115,10,0,0,0,0,2,3,1,16,1, -+ 13,1,9,1,114,44,0,0,0,99,1,0,0,0,0,0, -+ 0,0,1,0,0,0,3,0,0,0,67,0,0,0,115,13, -+ 0,0,0,116,0,0,124,0,0,100,1,0,131,2,0,83, -+ 41,2,122,31,82,101,112,108,97,99,101,109,101,110,116,32, -+ 102,111,114,32,111,115,46,112,97,116,104,46,105,115,102,105, -+ 108,101,46,105,0,128,0,0,41,1,114,44,0,0,0,41, -+ 1,114,36,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,12,95,112,97,116,104,95,105,115,102, -+ 105,108,101,87,0,0,0,115,2,0,0,0,0,2,114,45, -+ 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, -+ 3,0,0,0,67,0,0,0,115,34,0,0,0,124,0,0, -+ 115,21,0,116,0,0,106,1,0,131,0,0,125,0,0,110, -+ 0,0,116,2,0,124,0,0,100,1,0,131,2,0,83,41, -+ 2,122,30,82,101,112,108,97,99,101,109,101,110,116,32,102, -+ 111,114,32,111,115,46,112,97,116,104,46,105,115,100,105,114, -+ 46,105,0,64,0,0,41,3,114,4,0,0,0,218,6,103, -+ 101,116,99,119,100,114,44,0,0,0,41,1,114,36,0,0, + 0,101,12,0,101,11,0,106,13,0,131,1,0,90,14,0, +- 100,25,0,106,15,0,100,26,0,100,27,0,131,2,0,100, +- 28,0,23,90,16,0,101,17,0,106,18,0,101,16,0,100, +- 27,0,131,2,0,90,19,0,100,29,0,90,20,0,100,30, +- 0,90,21,0,100,31,0,103,1,0,90,22,0,100,32,0, ++ 100,26,0,106,15,0,100,27,0,100,28,0,131,2,0,100, ++ 29,0,23,90,16,0,101,17,0,106,18,0,101,16,0,100, ++ 28,0,131,2,0,90,19,0,100,30,0,90,20,0,100,31, ++ 0,90,21,0,100,32,0,103,1,0,90,22,0,100,33,0, + 103,1,0,90,23,0,101,23,0,4,90,24,0,90,25,0, +- 100,33,0,100,34,0,100,33,0,100,35,0,100,36,0,132, +- 1,1,90,26,0,100,37,0,100,38,0,132,0,0,90,27, +- 0,100,39,0,100,40,0,132,0,0,90,28,0,100,41,0, +- 100,42,0,132,0,0,90,29,0,100,43,0,100,44,0,132, +- 0,0,90,30,0,100,45,0,100,46,0,100,47,0,100,48, +- 0,132,0,1,90,31,0,100,49,0,100,50,0,132,0,0, +- 90,32,0,100,51,0,100,52,0,132,0,0,90,33,0,100, +- 33,0,100,33,0,100,33,0,100,53,0,100,54,0,132,3, +- 0,90,34,0,100,33,0,100,33,0,100,33,0,100,55,0, +- 100,56,0,132,3,0,90,35,0,100,57,0,100,57,0,100, +- 58,0,100,59,0,132,2,0,90,36,0,100,60,0,100,61, ++ 100,34,0,100,35,0,100,34,0,100,36,0,100,37,0,132, ++ 1,1,90,26,0,100,38,0,100,39,0,132,0,0,90,27, ++ 0,100,40,0,100,41,0,132,0,0,90,28,0,100,42,0, ++ 100,43,0,132,0,0,90,29,0,100,44,0,100,45,0,132, ++ 0,0,90,30,0,100,46,0,100,47,0,100,48,0,100,49, ++ 0,132,0,1,90,31,0,100,50,0,100,51,0,132,0,0, ++ 90,32,0,100,52,0,100,53,0,132,0,0,90,33,0,100, ++ 34,0,100,34,0,100,34,0,100,54,0,100,55,0,132,3, ++ 0,90,34,0,100,34,0,100,34,0,100,34,0,100,56,0, ++ 100,57,0,132,3,0,90,35,0,100,58,0,100,58,0,100, ++ 59,0,100,60,0,132,2,0,90,36,0,100,61,0,100,62, + 0,132,0,0,90,37,0,101,38,0,131,0,0,90,39,0, +- 100,33,0,100,62,0,100,33,0,100,63,0,101,39,0,100, +- 64,0,100,65,0,132,1,2,90,40,0,71,100,66,0,100, +- 67,0,132,0,0,100,67,0,131,2,0,90,41,0,71,100, +- 68,0,100,69,0,132,0,0,100,69,0,131,2,0,90,42, +- 0,71,100,70,0,100,71,0,132,0,0,100,71,0,101,42, +- 0,131,3,0,90,43,0,71,100,72,0,100,73,0,132,0, +- 0,100,73,0,131,2,0,90,44,0,71,100,74,0,100,75, +- 0,132,0,0,100,75,0,101,44,0,101,43,0,131,4,0, +- 90,45,0,71,100,76,0,100,77,0,132,0,0,100,77,0, ++ 100,34,0,100,63,0,100,34,0,100,64,0,101,39,0,100, ++ 65,0,100,66,0,132,1,2,90,40,0,71,100,67,0,100, ++ 68,0,132,0,0,100,68,0,131,2,0,90,41,0,71,100, ++ 69,0,100,70,0,132,0,0,100,70,0,131,2,0,90,42, ++ 0,71,100,71,0,100,72,0,132,0,0,100,72,0,101,42, ++ 0,131,3,0,90,43,0,71,100,73,0,100,74,0,132,0, ++ 0,100,74,0,131,2,0,90,44,0,71,100,75,0,100,76, ++ 0,132,0,0,100,76,0,101,44,0,101,43,0,131,4,0, ++ 90,45,0,71,100,77,0,100,78,0,132,0,0,100,78,0, + 101,44,0,101,42,0,131,4,0,90,46,0,103,0,0,90, +- 47,0,71,100,78,0,100,79,0,132,0,0,100,79,0,101, +- 44,0,101,42,0,131,4,0,90,48,0,71,100,80,0,100, +- 81,0,132,0,0,100,81,0,131,2,0,90,49,0,71,100, +- 82,0,100,83,0,132,0,0,100,83,0,131,2,0,90,50, +- 0,71,100,84,0,100,85,0,132,0,0,100,85,0,131,2, +- 0,90,51,0,71,100,86,0,100,87,0,132,0,0,100,87, +- 0,131,2,0,90,52,0,100,33,0,100,88,0,100,89,0, +- 132,1,0,90,53,0,100,90,0,100,91,0,132,0,0,90, +- 54,0,100,92,0,100,93,0,132,0,0,90,55,0,100,94, +- 0,100,95,0,132,0,0,90,56,0,100,33,0,83,41,97, ++ 47,0,71,100,79,0,100,80,0,132,0,0,100,80,0,101, ++ 44,0,101,42,0,131,4,0,90,48,0,71,100,81,0,100, ++ 82,0,132,0,0,100,82,0,131,2,0,90,49,0,71,100, ++ 83,0,100,84,0,132,0,0,100,84,0,131,2,0,90,50, ++ 0,71,100,85,0,100,86,0,132,0,0,100,86,0,131,2, ++ 0,90,51,0,71,100,87,0,100,88,0,132,0,0,100,88, ++ 0,131,2,0,90,52,0,100,34,0,100,89,0,100,90,0, ++ 132,1,0,90,53,0,100,91,0,100,92,0,132,0,0,90, ++ 54,0,100,93,0,100,94,0,132,0,0,90,55,0,100,95, ++ 0,100,96,0,132,0,0,90,56,0,100,34,0,83,41,98, + 97,94,1,0,0,67,111,114,101,32,105,109,112,108,101,109, + 101,110,116,97,116,105,111,110,32,111,102,32,112,97,116,104, + 45,98,97,115,101,100,32,105,109,112,111,114,116,46,10,10, +@@ -71,2527 +71,2528 @@ + 105,99,45,102,97,99,105,110,103,32,118,101,114,115,105,111, + 110,32,111,102,32,116,104,105,115,32,109,111,100,117,108,101, + 46,10,10,218,3,119,105,110,218,6,99,121,103,119,105,110, +- 218,6,100,97,114,119,105,110,99,0,0,0,0,0,0,0, +- 0,1,0,0,0,2,0,0,0,67,0,0,0,115,49,0, +- 0,0,116,0,0,106,1,0,106,2,0,116,3,0,131,1, +- 0,114,33,0,100,1,0,100,2,0,132,0,0,125,0,0, +- 110,12,0,100,3,0,100,2,0,132,0,0,125,0,0,124, +- 0,0,83,41,4,78,99,0,0,0,0,0,0,0,0,0, +- 0,0,0,2,0,0,0,83,0,0,0,115,13,0,0,0, +- 100,1,0,116,0,0,106,1,0,107,6,0,83,41,2,122, ++ 218,6,100,97,114,119,105,110,218,3,105,111,115,99,0,0, ++ 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, ++ 0,0,115,49,0,0,0,116,0,0,106,1,0,106,2,0, ++ 116,3,0,131,1,0,114,33,0,100,1,0,100,2,0,132, ++ 0,0,125,0,0,110,12,0,100,3,0,100,2,0,132,0, ++ 0,125,0,0,124,0,0,83,41,4,78,99,0,0,0,0, ++ 0,0,0,0,0,0,0,0,2,0,0,0,83,0,0,0, ++ 115,13,0,0,0,100,1,0,116,0,0,106,1,0,107,6, ++ 0,83,41,2,122,53,84,114,117,101,32,105,102,32,102,105, ++ 108,101,110,97,109,101,115,32,109,117,115,116,32,98,101,32, ++ 99,104,101,99,107,101,100,32,99,97,115,101,45,105,110,115, ++ 101,110,115,105,116,105,118,101,108,121,46,115,12,0,0,0, ++ 80,89,84,72,79,78,67,65,83,69,79,75,41,2,218,3, ++ 95,111,115,90,7,101,110,118,105,114,111,110,169,0,114,5, ++ 0,0,0,114,5,0,0,0,250,38,60,102,114,111,122,101, ++ 110,32,105,109,112,111,114,116,108,105,98,46,95,98,111,111, ++ 116,115,116,114,97,112,95,101,120,116,101,114,110,97,108,62, ++ 218,11,95,114,101,108,97,120,95,99,97,115,101,30,0,0, ++ 0,115,2,0,0,0,0,2,122,37,95,109,97,107,101,95, ++ 114,101,108,97,120,95,99,97,115,101,46,60,108,111,99,97, ++ 108,115,62,46,95,114,101,108,97,120,95,99,97,115,101,99, ++ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, ++ 83,0,0,0,115,4,0,0,0,100,1,0,83,41,2,122, + 53,84,114,117,101,32,105,102,32,102,105,108,101,110,97,109, + 101,115,32,109,117,115,116,32,98,101,32,99,104,101,99,107, + 101,100,32,99,97,115,101,45,105,110,115,101,110,115,105,116, +- 105,118,101,108,121,46,115,12,0,0,0,80,89,84,72,79, +- 78,67,65,83,69,79,75,41,2,218,3,95,111,115,90,7, +- 101,110,118,105,114,111,110,169,0,114,4,0,0,0,114,4, +- 0,0,0,250,38,60,102,114,111,122,101,110,32,105,109,112, +- 111,114,116,108,105,98,46,95,98,111,111,116,115,116,114,97, +- 112,95,101,120,116,101,114,110,97,108,62,218,11,95,114,101, +- 108,97,120,95,99,97,115,101,30,0,0,0,115,2,0,0, +- 0,0,2,122,37,95,109,97,107,101,95,114,101,108,97,120, +- 95,99,97,115,101,46,60,108,111,99,97,108,115,62,46,95, +- 114,101,108,97,120,95,99,97,115,101,99,0,0,0,0,0, +- 0,0,0,0,0,0,0,1,0,0,0,83,0,0,0,115, +- 4,0,0,0,100,1,0,83,41,2,122,53,84,114,117,101, +- 32,105,102,32,102,105,108,101,110,97,109,101,115,32,109,117, +- 115,116,32,98,101,32,99,104,101,99,107,101,100,32,99,97, +- 115,101,45,105,110,115,101,110,115,105,116,105,118,101,108,121, +- 46,70,114,4,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,6,0,0,0, +- 34,0,0,0,115,2,0,0,0,0,2,41,4,218,3,115, +- 121,115,218,8,112,108,97,116,102,111,114,109,218,10,115,116, +- 97,114,116,115,119,105,116,104,218,27,95,67,65,83,69,95, +- 73,78,83,69,78,83,73,84,73,86,69,95,80,76,65,84, +- 70,79,82,77,83,41,1,114,6,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,16,95,109,97, +- 107,101,95,114,101,108,97,120,95,99,97,115,101,28,0,0, +- 0,115,8,0,0,0,0,1,18,1,15,4,12,3,114,11, +- 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, +- 3,0,0,0,67,0,0,0,115,26,0,0,0,116,0,0, +- 124,0,0,131,1,0,100,1,0,64,106,1,0,100,2,0, +- 100,3,0,131,2,0,83,41,4,122,42,67,111,110,118,101, +- 114,116,32,97,32,51,50,45,98,105,116,32,105,110,116,101, +- 103,101,114,32,116,111,32,108,105,116,116,108,101,45,101,110, +- 100,105,97,110,46,108,3,0,0,0,255,127,255,127,3,0, +- 233,4,0,0,0,218,6,108,105,116,116,108,101,41,2,218, +- 3,105,110,116,218,8,116,111,95,98,121,116,101,115,41,1, +- 218,1,120,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,218,7,95,119,95,108,111,110,103,40,0,0,0,115, +- 2,0,0,0,0,2,114,17,0,0,0,99,1,0,0,0, +- 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, +- 115,16,0,0,0,116,0,0,106,1,0,124,0,0,100,1, +- 0,131,2,0,83,41,2,122,47,67,111,110,118,101,114,116, +- 32,52,32,98,121,116,101,115,32,105,110,32,108,105,116,116, +- 108,101,45,101,110,100,105,97,110,32,116,111,32,97,110,32, +- 105,110,116,101,103,101,114,46,114,13,0,0,0,41,2,114, +- 14,0,0,0,218,10,102,114,111,109,95,98,121,116,101,115, +- 41,1,90,9,105,110,116,95,98,121,116,101,115,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,7,95,114, +- 95,108,111,110,103,45,0,0,0,115,2,0,0,0,0,2, +- 114,19,0,0,0,99,0,0,0,0,0,0,0,0,1,0, +- 0,0,3,0,0,0,71,0,0,0,115,26,0,0,0,116, +- 0,0,106,1,0,100,1,0,100,2,0,132,0,0,124,0, +- 0,68,131,1,0,131,1,0,83,41,3,122,31,82,101,112, +- 108,97,99,101,109,101,110,116,32,102,111,114,32,111,115,46, +- 112,97,116,104,46,106,111,105,110,40,41,46,99,1,0,0, +- 0,0,0,0,0,2,0,0,0,4,0,0,0,83,0,0, +- 0,115,37,0,0,0,103,0,0,124,0,0,93,27,0,125, +- 1,0,124,1,0,114,6,0,124,1,0,106,0,0,116,1, +- 0,131,1,0,145,2,0,113,6,0,83,114,4,0,0,0, +- 41,2,218,6,114,115,116,114,105,112,218,15,112,97,116,104, +- 95,115,101,112,97,114,97,116,111,114,115,41,2,218,2,46, +- 48,218,4,112,97,114,116,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,250,10,60,108,105,115,116,99,111,109, +- 112,62,52,0,0,0,115,2,0,0,0,9,1,122,30,95, +- 112,97,116,104,95,106,111,105,110,46,60,108,111,99,97,108, +- 115,62,46,60,108,105,115,116,99,111,109,112,62,41,2,218, +- 8,112,97,116,104,95,115,101,112,218,4,106,111,105,110,41, +- 1,218,10,112,97,116,104,95,112,97,114,116,115,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,112, +- 97,116,104,95,106,111,105,110,50,0,0,0,115,4,0,0, +- 0,0,2,15,1,114,28,0,0,0,99,1,0,0,0,0, +- 0,0,0,5,0,0,0,5,0,0,0,67,0,0,0,115, +- 134,0,0,0,116,0,0,116,1,0,131,1,0,100,1,0, +- 107,2,0,114,52,0,124,0,0,106,2,0,116,3,0,131, ++ 105,118,101,108,121,46,70,114,5,0,0,0,114,5,0,0, + 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,11,95,112,97,116,104,95,105,115,100,105,114,92,0,0, -+ 0,115,6,0,0,0,0,2,6,1,15,1,114,47,0,0, -+ 0,105,182,1,0,0,99,3,0,0,0,0,0,0,0,6, -+ 0,0,0,17,0,0,0,67,0,0,0,115,192,0,0,0, -+ 100,1,0,106,0,0,124,0,0,116,1,0,124,0,0,131, -+ 1,0,131,2,0,125,3,0,116,2,0,106,3,0,124,3, -+ 0,116,2,0,106,4,0,116,2,0,106,5,0,66,116,2, -+ 0,106,6,0,66,124,2,0,100,2,0,64,131,3,0,125, -+ 4,0,121,60,0,116,7,0,106,8,0,124,4,0,100,3, -+ 0,131,2,0,143,20,0,125,5,0,124,5,0,106,9,0, -+ 124,1,0,131,1,0,1,87,100,4,0,81,88,116,2,0, -+ 106,10,0,124,3,0,124,0,0,131,2,0,1,87,110,59, -+ 0,4,116,11,0,107,10,0,114,187,0,1,1,1,121,17, -+ 0,116,2,0,106,12,0,124,3,0,131,1,0,1,87,110, -+ 18,0,4,116,11,0,107,10,0,114,179,0,1,1,1,89, -+ 110,1,0,88,130,0,0,89,110,1,0,88,100,4,0,83, -+ 41,5,122,162,66,101,115,116,45,101,102,102,111,114,116,32, -+ 102,117,110,99,116,105,111,110,32,116,111,32,119,114,105,116, -+ 101,32,100,97,116,97,32,116,111,32,97,32,112,97,116,104, -+ 32,97,116,111,109,105,99,97,108,108,121,46,10,32,32,32, -+ 32,66,101,32,112,114,101,112,97,114,101,100,32,116,111,32, -+ 104,97,110,100,108,101,32,97,32,70,105,108,101,69,120,105, -+ 115,116,115,69,114,114,111,114,32,105,102,32,99,111,110,99, -+ 117,114,114,101,110,116,32,119,114,105,116,105,110,103,32,111, -+ 102,32,116,104,101,10,32,32,32,32,116,101,109,112,111,114, -+ 97,114,121,32,102,105,108,101,32,105,115,32,97,116,116,101, -+ 109,112,116,101,100,46,122,5,123,125,46,123,125,105,182,1, -+ 0,0,90,2,119,98,78,41,13,218,6,102,111,114,109,97, -+ 116,218,2,105,100,114,4,0,0,0,90,4,111,112,101,110, -+ 90,6,79,95,69,88,67,76,90,7,79,95,67,82,69,65, -+ 84,90,8,79,95,87,82,79,78,76,89,218,3,95,105,111, -+ 218,6,70,105,108,101,73,79,218,5,119,114,105,116,101,218, -+ 7,114,101,112,108,97,99,101,114,41,0,0,0,90,6,117, -+ 110,108,105,110,107,41,6,114,36,0,0,0,218,4,100,97, -+ 116,97,114,43,0,0,0,90,8,112,97,116,104,95,116,109, -+ 112,90,2,102,100,218,4,102,105,108,101,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,13,95,119,114,105, -+ 116,101,95,97,116,111,109,105,99,99,0,0,0,115,26,0, -+ 0,0,0,5,24,1,9,1,33,1,3,3,21,1,19,1, -+ 20,1,13,1,3,1,17,1,13,1,5,1,114,56,0,0, -+ 0,99,2,0,0,0,0,0,0,0,3,0,0,0,7,0, -+ 0,0,67,0,0,0,115,95,0,0,0,120,69,0,100,1, -+ 0,100,2,0,100,3,0,100,4,0,103,4,0,68,93,49, -+ 0,125,2,0,116,0,0,124,1,0,124,2,0,131,2,0, -+ 114,19,0,116,1,0,124,0,0,124,2,0,116,2,0,124, -+ 1,0,124,2,0,131,2,0,131,3,0,1,113,19,0,113, -+ 19,0,87,124,0,0,106,3,0,106,4,0,124,1,0,106, -+ 3,0,131,1,0,1,100,5,0,83,41,6,122,47,83,105, -+ 109,112,108,101,32,115,117,98,115,116,105,116,117,116,101,32, -+ 102,111,114,32,102,117,110,99,116,111,111,108,115,46,117,112, -+ 100,97,116,101,95,119,114,97,112,112,101,114,46,218,10,95, -+ 95,109,111,100,117,108,101,95,95,218,8,95,95,110,97,109, -+ 101,95,95,218,12,95,95,113,117,97,108,110,97,109,101,95, -+ 95,218,7,95,95,100,111,99,95,95,78,41,5,218,7,104, -+ 97,115,97,116,116,114,218,7,115,101,116,97,116,116,114,218, -+ 7,103,101,116,97,116,116,114,218,8,95,95,100,105,99,116, -+ 95,95,218,6,117,112,100,97,116,101,41,3,90,3,110,101, -+ 119,90,3,111,108,100,114,53,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,5,95,119,114,97, -+ 112,121,0,0,0,115,8,0,0,0,0,2,25,1,15,1, -+ 32,1,114,66,0,0,0,99,1,0,0,0,0,0,0,0, -+ 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, -+ 0,116,0,0,116,1,0,131,1,0,124,0,0,131,1,0, -+ 83,41,1,78,41,2,218,4,116,121,112,101,114,8,0,0, -+ 0,41,1,218,4,110,97,109,101,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,11,95,110,101,119,95,109, -+ 111,100,117,108,101,129,0,0,0,115,2,0,0,0,0,1, -+ 114,69,0,0,0,99,0,0,0,0,0,0,0,0,0,0, -+ 0,0,2,0,0,0,64,0,0,0,115,58,0,0,0,101, -+ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, -+ 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, -+ 100,5,0,132,0,0,90,5,0,100,6,0,100,7,0,132, -+ 0,0,90,6,0,100,8,0,83,41,9,218,13,95,77,97, -+ 110,97,103,101,82,101,108,111,97,100,122,63,77,97,110,97, -+ 103,101,115,32,116,104,101,32,112,111,115,115,105,98,108,101, -+ 32,99,108,101,97,110,45,117,112,32,111,102,32,115,121,115, -+ 46,109,111,100,117,108,101,115,32,102,111,114,32,108,111,97, -+ 100,95,109,111,100,117,108,101,40,41,46,99,2,0,0,0, -+ 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, -+ 115,13,0,0,0,124,1,0,124,0,0,95,0,0,100,0, -+ 0,83,41,1,78,41,1,218,5,95,110,97,109,101,41,2, -+ 218,4,115,101,108,102,114,68,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,8,95,95,105,110, -+ 105,116,95,95,141,0,0,0,115,2,0,0,0,0,1,122, -+ 22,95,77,97,110,97,103,101,82,101,108,111,97,100,46,95, -+ 95,105,110,105,116,95,95,99,1,0,0,0,0,0,0,0, -+ 1,0,0,0,2,0,0,0,67,0,0,0,115,25,0,0, -+ 0,124,0,0,106,0,0,116,1,0,106,2,0,107,6,0, -+ 124,0,0,95,3,0,100,0,0,83,41,1,78,41,4,114, -+ 71,0,0,0,114,8,0,0,0,218,7,109,111,100,117,108, -+ 101,115,218,10,95,105,115,95,114,101,108,111,97,100,41,1, -+ 114,72,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,218,9,95,95,101,110,116,101,114,95,95,144, -+ 0,0,0,115,2,0,0,0,0,1,122,23,95,77,97,110, -+ 97,103,101,82,101,108,111,97,100,46,95,95,101,110,116,101, -+ 114,95,95,99,1,0,0,0,0,0,0,0,2,0,0,0, -+ 11,0,0,0,71,0,0,0,115,80,0,0,0,116,0,0, -+ 100,1,0,100,2,0,132,0,0,124,1,0,68,131,1,0, -+ 131,1,0,114,76,0,124,0,0,106,1,0,12,114,76,0, -+ 121,17,0,116,2,0,106,3,0,124,0,0,106,4,0,61, -+ 87,113,76,0,4,116,5,0,107,10,0,114,72,0,1,1, -+ 1,89,113,76,0,88,110,0,0,100,0,0,83,41,3,78, -+ 99,1,0,0,0,0,0,0,0,2,0,0,0,3,0,0, -+ 0,115,0,0,0,115,27,0,0,0,124,0,0,93,17,0, -+ 125,1,0,124,1,0,100,0,0,107,9,0,86,1,113,3, -+ 0,100,0,0,83,41,1,78,114,5,0,0,0,41,2,114, -+ 23,0,0,0,218,3,97,114,103,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,250,9,60,103,101,110,101,120, -+ 112,114,62,148,0,0,0,115,2,0,0,0,6,0,122,41, -+ 95,77,97,110,97,103,101,82,101,108,111,97,100,46,95,95, -+ 101,120,105,116,95,95,46,60,108,111,99,97,108,115,62,46, -+ 60,103,101,110,101,120,112,114,62,41,6,218,3,97,110,121, -+ 114,75,0,0,0,114,8,0,0,0,114,74,0,0,0,114, -+ 71,0,0,0,218,8,75,101,121,69,114,114,111,114,41,2, -+ 114,72,0,0,0,218,4,97,114,103,115,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,8,95,95,101,120, -+ 105,116,95,95,147,0,0,0,115,10,0,0,0,0,1,35, -+ 1,3,1,17,1,13,1,122,22,95,77,97,110,97,103,101, -+ 82,101,108,111,97,100,46,95,95,101,120,105,116,95,95,78, -+ 41,7,114,58,0,0,0,114,57,0,0,0,114,59,0,0, -+ 0,114,60,0,0,0,114,73,0,0,0,114,76,0,0,0, -+ 114,82,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,70,0,0,0,137,0, -+ 0,0,115,8,0,0,0,12,2,6,2,12,3,12,3,114, -+ 70,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, -+ 0,1,0,0,0,64,0,0,0,115,16,0,0,0,101,0, -+ 0,90,1,0,100,0,0,90,2,0,100,1,0,83,41,2, -+ 218,14,95,68,101,97,100,108,111,99,107,69,114,114,111,114, -+ 78,41,3,114,58,0,0,0,114,57,0,0,0,114,59,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,83,0,0,0,162,0,0,0,115, -+ 2,0,0,0,12,1,114,83,0,0,0,99,0,0,0,0, -+ 0,0,0,0,0,0,0,0,2,0,0,0,64,0,0,0, -+ 115,82,0,0,0,101,0,0,90,1,0,100,0,0,90,2, -+ 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, -+ 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, -+ 6,0,100,7,0,132,0,0,90,6,0,100,8,0,100,9, -+ 0,132,0,0,90,7,0,100,10,0,100,11,0,132,0,0, -+ 90,8,0,100,12,0,83,41,13,218,11,95,77,111,100,117, -+ 108,101,76,111,99,107,122,169,65,32,114,101,99,117,114,115, -+ 105,118,101,32,108,111,99,107,32,105,109,112,108,101,109,101, -+ 110,116,97,116,105,111,110,32,119,104,105,99,104,32,105,115, -+ 32,97,98,108,101,32,116,111,32,100,101,116,101,99,116,32, -+ 100,101,97,100,108,111,99,107,115,10,32,32,32,32,40,101, -+ 46,103,46,32,116,104,114,101,97,100,32,49,32,116,114,121, -+ 105,110,103,32,116,111,32,116,97,107,101,32,108,111,99,107, -+ 115,32,65,32,116,104,101,110,32,66,44,32,97,110,100,32, -+ 116,104,114,101,97,100,32,50,32,116,114,121,105,110,103,32, -+ 116,111,10,32,32,32,32,116,97,107,101,32,108,111,99,107, -+ 115,32,66,32,116,104,101,110,32,65,41,46,10,32,32,32, -+ 32,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, -+ 0,0,67,0,0,0,115,70,0,0,0,116,0,0,106,1, -+ 0,131,0,0,124,0,0,95,2,0,116,0,0,106,1,0, -+ 131,0,0,124,0,0,95,3,0,124,1,0,124,0,0,95, -+ 4,0,100,0,0,124,0,0,95,5,0,100,1,0,124,0, -+ 0,95,6,0,100,1,0,124,0,0,95,7,0,100,0,0, -+ 83,41,2,78,233,0,0,0,0,41,8,218,7,95,116,104, -+ 114,101,97,100,90,13,97,108,108,111,99,97,116,101,95,108, -+ 111,99,107,218,4,108,111,99,107,218,6,119,97,107,101,117, -+ 112,114,68,0,0,0,218,5,111,119,110,101,114,218,5,99, -+ 111,117,110,116,218,7,119,97,105,116,101,114,115,41,2,114, -+ 72,0,0,0,114,68,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,73,0,0,0,172,0,0, -+ 0,115,12,0,0,0,0,1,15,1,15,1,9,1,9,1, -+ 9,1,122,20,95,77,111,100,117,108,101,76,111,99,107,46, -+ 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, -+ 0,4,0,0,0,2,0,0,0,67,0,0,0,115,87,0, -+ 0,0,116,0,0,106,1,0,131,0,0,125,1,0,124,0, -+ 0,106,2,0,125,2,0,120,59,0,116,3,0,106,4,0, -+ 124,2,0,131,1,0,125,3,0,124,3,0,100,0,0,107, -+ 8,0,114,55,0,100,1,0,83,124,3,0,106,2,0,125, -+ 2,0,124,2,0,124,1,0,107,2,0,114,24,0,100,2, -+ 0,83,113,24,0,100,0,0,83,41,3,78,70,84,41,5, -+ 114,86,0,0,0,218,9,103,101,116,95,105,100,101,110,116, -+ 114,89,0,0,0,218,12,95,98,108,111,99,107,105,110,103, -+ 95,111,110,218,3,103,101,116,41,4,114,72,0,0,0,218, -+ 2,109,101,218,3,116,105,100,114,87,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,12,104,97, -+ 115,95,100,101,97,100,108,111,99,107,180,0,0,0,115,18, -+ 0,0,0,0,2,12,1,9,1,3,1,15,1,12,1,4, -+ 1,9,1,12,1,122,24,95,77,111,100,117,108,101,76,111, -+ 99,107,46,104,97,115,95,100,101,97,100,108,111,99,107,99, -+ 1,0,0,0,0,0,0,0,2,0,0,0,16,0,0,0, -+ 67,0,0,0,115,214,0,0,0,116,0,0,106,1,0,131, -+ 0,0,125,1,0,124,0,0,116,2,0,124,1,0,60,122, -+ 177,0,120,170,0,124,0,0,106,3,0,143,130,0,1,124, -+ 0,0,106,4,0,100,1,0,107,2,0,115,68,0,124,0, -+ 0,106,5,0,124,1,0,107,2,0,114,96,0,124,1,0, -+ 124,0,0,95,5,0,124,0,0,4,106,4,0,100,2,0, -+ 55,2,95,4,0,100,3,0,83,124,0,0,106,6,0,131, -+ 0,0,114,127,0,116,7,0,100,4,0,124,0,0,22,131, -+ 1,0,130,1,0,110,0,0,124,0,0,106,8,0,106,9, -+ 0,100,5,0,131,1,0,114,163,0,124,0,0,4,106,10, -+ 0,100,2,0,55,2,95,10,0,110,0,0,87,100,6,0, -+ 81,88,124,0,0,106,8,0,106,9,0,131,0,0,1,124, -+ 0,0,106,8,0,106,11,0,131,0,0,1,113,28,0,87, -+ 100,6,0,116,2,0,124,1,0,61,88,100,6,0,83,41, -+ 7,122,185,10,32,32,32,32,32,32,32,32,65,99,113,117, -+ 105,114,101,32,116,104,101,32,109,111,100,117,108,101,32,108, -+ 111,99,107,46,32,32,73,102,32,97,32,112,111,116,101,110, -+ 116,105,97,108,32,100,101,97,100,108,111,99,107,32,105,115, -+ 32,100,101,116,101,99,116,101,100,44,10,32,32,32,32,32, -+ 32,32,32,97,32,95,68,101,97,100,108,111,99,107,69,114, -+ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,32, -+ 32,32,32,32,32,32,32,79,116,104,101,114,119,105,115,101, -+ 44,32,116,104,101,32,108,111,99,107,32,105,115,32,97,108, -+ 119,97,121,115,32,97,99,113,117,105,114,101,100,32,97,110, -+ 100,32,84,114,117,101,32,105,115,32,114,101,116,117,114,110, -+ 101,100,46,10,32,32,32,32,32,32,32,32,114,85,0,0, -+ 0,114,30,0,0,0,84,122,23,100,101,97,100,108,111,99, -+ 107,32,100,101,116,101,99,116,101,100,32,98,121,32,37,114, -+ 70,78,41,12,114,86,0,0,0,114,92,0,0,0,114,93, -+ 0,0,0,114,87,0,0,0,114,90,0,0,0,114,89,0, -+ 0,0,114,97,0,0,0,114,83,0,0,0,114,88,0,0, -+ 0,218,7,97,99,113,117,105,114,101,114,91,0,0,0,218, -+ 7,114,101,108,101,97,115,101,41,2,114,72,0,0,0,114, -+ 96,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,98,0,0,0,192,0,0,0,115,32,0,0, -+ 0,0,6,12,1,10,1,3,1,3,1,10,1,30,1,9, -+ 1,15,1,4,1,12,1,19,1,18,1,24,2,13,1,20, -+ 2,122,19,95,77,111,100,117,108,101,76,111,99,107,46,97, -+ 99,113,117,105,114,101,99,1,0,0,0,0,0,0,0,2, -+ 0,0,0,10,0,0,0,67,0,0,0,115,165,0,0,0, -+ 116,0,0,106,1,0,131,0,0,125,1,0,124,0,0,106, -+ 2,0,143,138,0,1,124,0,0,106,3,0,124,1,0,107, -+ 3,0,114,52,0,116,4,0,100,1,0,131,1,0,130,1, -+ 0,110,0,0,124,0,0,106,5,0,100,2,0,107,4,0, -+ 115,73,0,116,6,0,130,1,0,124,0,0,4,106,5,0, -+ 100,3,0,56,2,95,5,0,124,0,0,106,5,0,100,2, -+ 0,107,2,0,114,155,0,100,0,0,124,0,0,95,3,0, -+ 124,0,0,106,7,0,114,155,0,124,0,0,4,106,7,0, -+ 100,3,0,56,2,95,7,0,124,0,0,106,8,0,106,9, -+ 0,131,0,0,1,113,155,0,110,0,0,87,100,0,0,81, -+ 88,100,0,0,83,41,4,78,122,31,99,97,110,110,111,116, - 32,114,101,108,101,97,115,101,32,117,110,45,97,99,113,117, -- 105,114,101,100,32,108,111,99,107,114,29,0,0,0,41,2, -- 114,89,0,0,0,114,99,0,0,0,41,1,114,71,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 114,98,0,0,0,246,0,0,0,115,6,0,0,0,0,1, -- 15,1,15,1,122,24,95,68,117,109,109,121,77,111,100,117, -- 108,101,76,111,99,107,46,114,101,108,101,97,115,101,99,1, -- 0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,67, -- 0,0,0,115,25,0,0,0,100,1,0,106,0,0,124,0, -- 0,106,1,0,116,2,0,124,0,0,131,1,0,131,2,0, -- 83,41,2,78,122,28,95,68,117,109,109,121,77,111,100,117, -- 108,101,76,111,99,107,40,123,33,114,125,41,32,97,116,32, -- 123,125,41,3,114,47,0,0,0,114,67,0,0,0,114,48, -- 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,101,0,0,0,251,0, -- 0,0,115,2,0,0,0,0,1,122,25,95,68,117,109,109, -- 121,77,111,100,117,108,101,76,111,99,107,46,95,95,114,101, -- 112,114,95,95,78,41,8,114,57,0,0,0,114,56,0,0, -- 0,114,58,0,0,0,114,59,0,0,0,114,72,0,0,0, -- 114,97,0,0,0,114,98,0,0,0,114,101,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,102,0,0,0,234,0,0,0,115,10,0,0, -- 0,12,2,6,2,12,4,12,4,12,5,114,102,0,0,0, -- 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, -- 0,64,0,0,0,115,52,0,0,0,101,0,0,90,1,0, -- 100,0,0,90,2,0,100,1,0,100,2,0,132,0,0,90, -- 3,0,100,3,0,100,4,0,132,0,0,90,4,0,100,5, -- 0,100,6,0,132,0,0,90,5,0,100,7,0,83,41,8, -- 218,18,95,77,111,100,117,108,101,76,111,99,107,77,97,110, -- 97,103,101,114,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,2,0,0,0,67,0,0,0,115,22,0,0,0,124,1, -- 0,124,0,0,95,0,0,100,0,0,124,0,0,95,1,0, -- 100,0,0,83,41,1,78,41,2,114,70,0,0,0,218,5, -- 95,108,111,99,107,41,2,114,71,0,0,0,114,67,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 114,72,0,0,0,1,1,0,0,115,4,0,0,0,0,1, -- 9,1,122,27,95,77,111,100,117,108,101,76,111,99,107,77, -- 97,110,97,103,101,114,46,95,95,105,110,105,116,95,95,99, -- 1,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0, -- 67,0,0,0,115,53,0,0,0,122,22,0,116,0,0,124, -- 0,0,106,1,0,131,1,0,124,0,0,95,2,0,87,100, -- 0,0,116,3,0,106,4,0,131,0,0,1,88,124,0,0, -- 106,2,0,106,5,0,131,0,0,1,100,0,0,83,41,1, -- 78,41,6,218,16,95,103,101,116,95,109,111,100,117,108,101, -- 95,108,111,99,107,114,70,0,0,0,114,104,0,0,0,218, -- 4,95,105,109,112,218,12,114,101,108,101,97,115,101,95,108, -- 111,99,107,114,97,0,0,0,41,1,114,71,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,75, -- 0,0,0,5,1,0,0,115,8,0,0,0,0,1,3,1, -- 22,2,11,1,122,28,95,77,111,100,117,108,101,76,111,99, -- 107,77,97,110,97,103,101,114,46,95,95,101,110,116,101,114, -- 95,95,99,1,0,0,0,0,0,0,0,3,0,0,0,1, -- 0,0,0,79,0,0,0,115,17,0,0,0,124,0,0,106, -- 0,0,106,1,0,131,0,0,1,100,0,0,83,41,1,78, -- 41,2,114,104,0,0,0,114,98,0,0,0,41,3,114,71, -- 0,0,0,114,80,0,0,0,218,6,107,119,97,114,103,115, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 81,0,0,0,12,1,0,0,115,2,0,0,0,0,1,122, -- 27,95,77,111,100,117,108,101,76,111,99,107,77,97,110,97, -- 103,101,114,46,95,95,101,120,105,116,95,95,78,41,6,114, -- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,72, -- 0,0,0,114,75,0,0,0,114,81,0,0,0,114,4,0, ++ 114,7,0,0,0,34,0,0,0,115,2,0,0,0,0,2, ++ 41,4,218,3,115,121,115,218,8,112,108,97,116,102,111,114, ++ 109,218,10,115,116,97,114,116,115,119,105,116,104,218,27,95, ++ 67,65,83,69,95,73,78,83,69,78,83,73,84,73,86,69, ++ 95,80,76,65,84,70,79,82,77,83,41,1,114,7,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,16,95,109,97,107,101,95,114,101,108,97,120,95,99,97, ++ 115,101,28,0,0,0,115,8,0,0,0,0,1,18,1,15, ++ 4,12,3,114,12,0,0,0,99,1,0,0,0,0,0,0, ++ 0,1,0,0,0,3,0,0,0,67,0,0,0,115,26,0, ++ 0,0,116,0,0,124,0,0,131,1,0,100,1,0,64,106, ++ 1,0,100,2,0,100,3,0,131,2,0,83,41,4,122,42, ++ 67,111,110,118,101,114,116,32,97,32,51,50,45,98,105,116, ++ 32,105,110,116,101,103,101,114,32,116,111,32,108,105,116,116, ++ 108,101,45,101,110,100,105,97,110,46,108,3,0,0,0,255, ++ 127,255,127,3,0,233,4,0,0,0,218,6,108,105,116,116, ++ 108,101,41,2,218,3,105,110,116,218,8,116,111,95,98,121, ++ 116,101,115,41,1,218,1,120,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,218,7,95,119,95,108,111,110,103, ++ 40,0,0,0,115,2,0,0,0,0,2,114,18,0,0,0, ++ 99,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0, ++ 0,67,0,0,0,115,16,0,0,0,116,0,0,106,1,0, ++ 124,0,0,100,1,0,131,2,0,83,41,2,122,47,67,111, ++ 110,118,101,114,116,32,52,32,98,121,116,101,115,32,105,110, ++ 32,108,105,116,116,108,101,45,101,110,100,105,97,110,32,116, ++ 111,32,97,110,32,105,110,116,101,103,101,114,46,114,14,0, ++ 0,0,41,2,114,15,0,0,0,218,10,102,114,111,109,95, ++ 98,121,116,101,115,41,1,90,9,105,110,116,95,98,121,116, ++ 101,115,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,7,95,114,95,108,111,110,103,45,0,0,0,115,2, ++ 0,0,0,0,2,114,20,0,0,0,99,0,0,0,0,0, ++ 0,0,0,1,0,0,0,3,0,0,0,71,0,0,0,115, ++ 26,0,0,0,116,0,0,106,1,0,100,1,0,100,2,0, ++ 132,0,0,124,0,0,68,131,1,0,131,1,0,83,41,3, ++ 122,31,82,101,112,108,97,99,101,109,101,110,116,32,102,111, ++ 114,32,111,115,46,112,97,116,104,46,106,111,105,110,40,41, ++ 46,99,1,0,0,0,0,0,0,0,2,0,0,0,4,0, ++ 0,0,83,0,0,0,115,37,0,0,0,103,0,0,124,0, ++ 0,93,27,0,125,1,0,124,1,0,114,6,0,124,1,0, ++ 106,0,0,116,1,0,131,1,0,145,2,0,113,6,0,83, ++ 114,5,0,0,0,41,2,218,6,114,115,116,114,105,112,218, ++ 15,112,97,116,104,95,115,101,112,97,114,97,116,111,114,115, ++ 41,2,218,2,46,48,218,4,112,97,114,116,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,250,10,60,108,105, ++ 115,116,99,111,109,112,62,52,0,0,0,115,2,0,0,0, ++ 9,1,122,30,95,112,97,116,104,95,106,111,105,110,46,60, ++ 108,111,99,97,108,115,62,46,60,108,105,115,116,99,111,109, ++ 112,62,41,2,218,8,112,97,116,104,95,115,101,112,218,4, ++ 106,111,105,110,41,1,218,10,112,97,116,104,95,112,97,114, ++ 116,115,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,10,95,112,97,116,104,95,106,111,105,110,50,0,0, ++ 0,115,4,0,0,0,0,2,15,1,114,29,0,0,0,99, ++ 1,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, ++ 67,0,0,0,115,134,0,0,0,116,0,0,116,1,0,131, ++ 1,0,100,1,0,107,2,0,114,52,0,124,0,0,106,2, ++ 0,116,3,0,131,1,0,92,3,0,125,1,0,125,2,0, ++ 125,3,0,124,1,0,124,3,0,102,2,0,83,120,69,0, ++ 116,4,0,124,0,0,131,1,0,68,93,55,0,125,4,0, ++ 124,4,0,116,1,0,107,6,0,114,65,0,124,0,0,106, ++ 5,0,124,4,0,100,2,0,100,1,0,131,1,1,92,2, ++ 0,125,1,0,125,3,0,124,1,0,124,3,0,102,2,0, ++ 83,113,65,0,87,100,3,0,124,0,0,102,2,0,83,41, ++ 4,122,32,82,101,112,108,97,99,101,109,101,110,116,32,102, ++ 111,114,32,111,115,46,112,97,116,104,46,115,112,108,105,116, ++ 40,41,46,233,1,0,0,0,90,8,109,97,120,115,112,108, ++ 105,116,218,0,41,6,218,3,108,101,110,114,22,0,0,0, ++ 218,10,114,112,97,114,116,105,116,105,111,110,114,26,0,0, ++ 0,218,8,114,101,118,101,114,115,101,100,218,6,114,115,112, ++ 108,105,116,41,5,218,4,112,97,116,104,90,5,102,114,111, ++ 110,116,218,1,95,218,4,116,97,105,108,114,17,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 11,95,112,97,116,104,95,115,112,108,105,116,56,0,0,0, ++ 115,16,0,0,0,0,2,18,1,24,1,10,1,19,1,12, ++ 1,27,1,14,1,114,39,0,0,0,99,1,0,0,0,0, ++ 0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,115, ++ 13,0,0,0,116,0,0,106,1,0,124,0,0,131,1,0, ++ 83,41,1,122,126,83,116,97,116,32,116,104,101,32,112,97, ++ 116,104,46,10,10,32,32,32,32,77,97,100,101,32,97,32, ++ 115,101,112,97,114,97,116,101,32,102,117,110,99,116,105,111, ++ 110,32,116,111,32,109,97,107,101,32,105,116,32,101,97,115, ++ 105,101,114,32,116,111,32,111,118,101,114,114,105,100,101,32, ++ 105,110,32,101,120,112,101,114,105,109,101,110,116,115,10,32, ++ 32,32,32,40,101,46,103,46,32,99,97,99,104,101,32,115, ++ 116,97,116,32,114,101,115,117,108,116,115,41,46,10,10,32, ++ 32,32,32,41,2,114,4,0,0,0,90,4,115,116,97,116, ++ 41,1,114,36,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,218,10,95,112,97,116,104,95,115,116, ++ 97,116,68,0,0,0,115,2,0,0,0,0,7,114,40,0, ++ 0,0,99,2,0,0,0,0,0,0,0,3,0,0,0,11, ++ 0,0,0,67,0,0,0,115,58,0,0,0,121,16,0,116, ++ 0,0,124,0,0,131,1,0,125,2,0,87,110,22,0,4, ++ 116,1,0,107,10,0,114,40,0,1,1,1,100,1,0,83, ++ 89,110,1,0,88,124,2,0,106,2,0,100,2,0,64,124, ++ 1,0,107,2,0,83,41,3,122,49,84,101,115,116,32,119, ++ 104,101,116,104,101,114,32,116,104,101,32,112,97,116,104,32, ++ 105,115,32,116,104,101,32,115,112,101,99,105,102,105,101,100, ++ 32,109,111,100,101,32,116,121,112,101,46,70,105,0,240,0, ++ 0,41,3,114,40,0,0,0,218,7,79,83,69,114,114,111, ++ 114,218,7,115,116,95,109,111,100,101,41,3,114,36,0,0, ++ 0,218,4,109,111,100,101,90,9,115,116,97,116,95,105,110, ++ 102,111,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,18,95,112,97,116,104,95,105,115,95,109,111,100,101, ++ 95,116,121,112,101,78,0,0,0,115,10,0,0,0,0,2, ++ 3,1,16,1,13,1,9,1,114,44,0,0,0,99,1,0, ++ 0,0,0,0,0,0,1,0,0,0,3,0,0,0,67,0, ++ 0,0,115,13,0,0,0,116,0,0,124,0,0,100,1,0, ++ 131,2,0,83,41,2,122,31,82,101,112,108,97,99,101,109, ++ 101,110,116,32,102,111,114,32,111,115,46,112,97,116,104,46, ++ 105,115,102,105,108,101,46,105,0,128,0,0,41,1,114,44, ++ 0,0,0,41,1,114,36,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,12,95,112,97,116,104, ++ 95,105,115,102,105,108,101,87,0,0,0,115,2,0,0,0, ++ 0,2,114,45,0,0,0,99,1,0,0,0,0,0,0,0, ++ 1,0,0,0,3,0,0,0,67,0,0,0,115,31,0,0, ++ 0,124,0,0,115,18,0,116,0,0,106,1,0,131,0,0, ++ 125,0,0,116,2,0,124,0,0,100,1,0,131,2,0,83, ++ 41,2,122,30,82,101,112,108,97,99,101,109,101,110,116,32, ++ 102,111,114,32,111,115,46,112,97,116,104,46,105,115,100,105, ++ 114,46,105,0,64,0,0,41,3,114,4,0,0,0,218,6, ++ 103,101,116,99,119,100,114,44,0,0,0,41,1,114,36,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,11,95,112,97,116,104,95,105,115,100,105,114,92,0, ++ 0,0,115,6,0,0,0,0,2,6,1,12,1,114,47,0, ++ 0,0,105,182,1,0,0,99,3,0,0,0,0,0,0,0, ++ 6,0,0,0,17,0,0,0,67,0,0,0,115,193,0,0, ++ 0,100,1,0,106,0,0,124,0,0,116,1,0,124,0,0, ++ 131,1,0,131,2,0,125,3,0,116,2,0,106,3,0,124, ++ 3,0,116,2,0,106,4,0,116,2,0,106,5,0,66,116, ++ 2,0,106,6,0,66,124,2,0,100,2,0,64,131,3,0, ++ 125,4,0,121,61,0,116,7,0,106,8,0,124,4,0,100, ++ 3,0,131,2,0,143,20,0,125,5,0,124,5,0,106,9, ++ 0,124,1,0,131,1,0,1,87,100,4,0,81,82,88,116, ++ 2,0,106,10,0,124,3,0,124,0,0,131,2,0,1,87, ++ 110,59,0,4,116,11,0,107,10,0,114,188,0,1,1,1, ++ 121,17,0,116,2,0,106,12,0,124,3,0,131,1,0,1, ++ 87,110,18,0,4,116,11,0,107,10,0,114,180,0,1,1, ++ 1,89,110,1,0,88,130,0,0,89,110,1,0,88,100,4, ++ 0,83,41,5,122,162,66,101,115,116,45,101,102,102,111,114, ++ 116,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114, ++ 105,116,101,32,100,97,116,97,32,116,111,32,97,32,112,97, ++ 116,104,32,97,116,111,109,105,99,97,108,108,121,46,10,32, ++ 32,32,32,66,101,32,112,114,101,112,97,114,101,100,32,116, ++ 111,32,104,97,110,100,108,101,32,97,32,70,105,108,101,69, ++ 120,105,115,116,115,69,114,114,111,114,32,105,102,32,99,111, ++ 110,99,117,114,114,101,110,116,32,119,114,105,116,105,110,103, ++ 32,111,102,32,116,104,101,10,32,32,32,32,116,101,109,112, ++ 111,114,97,114,121,32,102,105,108,101,32,105,115,32,97,116, ++ 116,101,109,112,116,101,100,46,122,5,123,125,46,123,125,105, ++ 182,1,0,0,90,2,119,98,78,41,13,218,6,102,111,114, ++ 109,97,116,218,2,105,100,114,4,0,0,0,90,4,111,112, ++ 101,110,90,6,79,95,69,88,67,76,90,7,79,95,67,82, ++ 69,65,84,90,8,79,95,87,82,79,78,76,89,218,3,95, ++ 105,111,218,6,70,105,108,101,73,79,218,5,119,114,105,116, ++ 101,218,7,114,101,112,108,97,99,101,114,41,0,0,0,90, ++ 6,117,110,108,105,110,107,41,6,114,36,0,0,0,218,4, ++ 100,97,116,97,114,43,0,0,0,90,8,112,97,116,104,95, ++ 116,109,112,90,2,102,100,218,4,102,105,108,101,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,13,95,119, ++ 114,105,116,101,95,97,116,111,109,105,99,99,0,0,0,115, ++ 26,0,0,0,0,5,24,1,9,1,33,1,3,3,21,1, ++ 20,1,20,1,13,1,3,1,17,1,13,1,5,1,114,56, ++ 0,0,0,105,22,13,0,0,233,2,0,0,0,114,14,0, ++ 0,0,115,2,0,0,0,13,10,90,11,95,95,112,121,99, ++ 97,99,104,101,95,95,122,4,111,112,116,45,122,3,46,112, ++ 121,122,4,46,112,121,99,78,218,12,111,112,116,105,109,105, ++ 122,97,116,105,111,110,99,2,0,0,0,1,0,0,0,11, ++ 0,0,0,6,0,0,0,67,0,0,0,115,87,1,0,0, ++ 124,1,0,100,1,0,107,9,0,114,76,0,116,0,0,106, ++ 1,0,100,2,0,116,2,0,131,2,0,1,124,2,0,100, ++ 1,0,107,9,0,114,58,0,100,3,0,125,3,0,116,3, ++ 0,124,3,0,131,1,0,130,1,0,124,1,0,114,70,0, ++ 100,4,0,110,3,0,100,5,0,125,2,0,116,4,0,124, ++ 0,0,131,1,0,92,2,0,125,4,0,125,5,0,124,5, ++ 0,106,5,0,100,6,0,131,1,0,92,3,0,125,6,0, ++ 125,7,0,125,8,0,116,6,0,106,7,0,106,8,0,125, ++ 9,0,124,9,0,100,1,0,107,8,0,114,154,0,116,9, ++ 0,100,7,0,131,1,0,130,1,0,100,4,0,106,10,0, ++ 124,6,0,114,172,0,124,6,0,110,3,0,124,8,0,124, ++ 7,0,124,9,0,103,3,0,131,1,0,125,10,0,124,2, ++ 0,100,1,0,107,8,0,114,241,0,116,6,0,106,11,0, ++ 106,12,0,100,8,0,107,2,0,114,229,0,100,4,0,125, ++ 2,0,110,12,0,116,6,0,106,11,0,106,12,0,125,2, ++ 0,116,13,0,124,2,0,131,1,0,125,2,0,124,2,0, ++ 100,4,0,107,3,0,114,63,1,124,2,0,106,14,0,131, ++ 0,0,115,42,1,116,15,0,100,9,0,106,16,0,124,2, ++ 0,131,1,0,131,1,0,130,1,0,100,10,0,106,16,0, ++ 124,10,0,116,17,0,124,2,0,131,3,0,125,10,0,116, ++ 18,0,124,4,0,116,19,0,124,10,0,116,20,0,100,8, ++ 0,25,23,131,3,0,83,41,11,97,254,2,0,0,71,105, ++ 118,101,110,32,116,104,101,32,112,97,116,104,32,116,111,32, ++ 97,32,46,112,121,32,102,105,108,101,44,32,114,101,116,117, ++ 114,110,32,116,104,101,32,112,97,116,104,32,116,111,32,105, ++ 116,115,32,46,112,121,99,32,102,105,108,101,46,10,10,32, ++ 32,32,32,84,104,101,32,46,112,121,32,102,105,108,101,32, ++ 100,111,101,115,32,110,111,116,32,110,101,101,100,32,116,111, ++ 32,101,120,105,115,116,59,32,116,104,105,115,32,115,105,109, ++ 112,108,121,32,114,101,116,117,114,110,115,32,116,104,101,32, ++ 112,97,116,104,32,116,111,32,116,104,101,10,32,32,32,32, ++ 46,112,121,99,32,102,105,108,101,32,99,97,108,99,117,108, ++ 97,116,101,100,32,97,115,32,105,102,32,116,104,101,32,46, ++ 112,121,32,102,105,108,101,32,119,101,114,101,32,105,109,112, ++ 111,114,116,101,100,46,10,10,32,32,32,32,84,104,101,32, ++ 39,111,112,116,105,109,105,122,97,116,105,111,110,39,32,112, ++ 97,114,97,109,101,116,101,114,32,99,111,110,116,114,111,108, ++ 115,32,116,104,101,32,112,114,101,115,117,109,101,100,32,111, ++ 112,116,105,109,105,122,97,116,105,111,110,32,108,101,118,101, ++ 108,32,111,102,10,32,32,32,32,116,104,101,32,98,121,116, ++ 101,99,111,100,101,32,102,105,108,101,46,32,73,102,32,39, ++ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,105,115, ++ 32,110,111,116,32,78,111,110,101,44,32,116,104,101,32,115, ++ 116,114,105,110,103,32,114,101,112,114,101,115,101,110,116,97, ++ 116,105,111,110,10,32,32,32,32,111,102,32,116,104,101,32, ++ 97,114,103,117,109,101,110,116,32,105,115,32,116,97,107,101, ++ 110,32,97,110,100,32,118,101,114,105,102,105,101,100,32,116, ++ 111,32,98,101,32,97,108,112,104,97,110,117,109,101,114,105, ++ 99,32,40,101,108,115,101,32,86,97,108,117,101,69,114,114, ++ 111,114,10,32,32,32,32,105,115,32,114,97,105,115,101,100, ++ 41,46,10,10,32,32,32,32,84,104,101,32,100,101,98,117, ++ 103,95,111,118,101,114,114,105,100,101,32,112,97,114,97,109, ++ 101,116,101,114,32,105,115,32,100,101,112,114,101,99,97,116, ++ 101,100,46,32,73,102,32,100,101,98,117,103,95,111,118,101, ++ 114,114,105,100,101,32,105,115,32,110,111,116,32,78,111,110, ++ 101,44,10,32,32,32,32,97,32,84,114,117,101,32,118,97, ++ 108,117,101,32,105,115,32,116,104,101,32,115,97,109,101,32, ++ 97,115,32,115,101,116,116,105,110,103,32,39,111,112,116,105, ++ 109,105,122,97,116,105,111,110,39,32,116,111,32,116,104,101, ++ 32,101,109,112,116,121,32,115,116,114,105,110,103,10,32,32, ++ 32,32,119,104,105,108,101,32,97,32,70,97,108,115,101,32, ++ 118,97,108,117,101,32,105,115,32,101,113,117,105,118,97,108, ++ 101,110,116,32,116,111,32,115,101,116,116,105,110,103,32,39, ++ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,116,111, ++ 32,39,49,39,46,10,10,32,32,32,32,73,102,32,115,121, ++ 115,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110, ++ 46,99,97,99,104,101,95,116,97,103,32,105,115,32,78,111, ++ 110,101,32,116,104,101,110,32,78,111,116,73,109,112,108,101, ++ 109,101,110,116,101,100,69,114,114,111,114,32,105,115,32,114, ++ 97,105,115,101,100,46,10,10,32,32,32,32,78,122,70,116, ++ 104,101,32,100,101,98,117,103,95,111,118,101,114,114,105,100, ++ 101,32,112,97,114,97,109,101,116,101,114,32,105,115,32,100, ++ 101,112,114,101,99,97,116,101,100,59,32,117,115,101,32,39, ++ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,105,110, ++ 115,116,101,97,100,122,50,100,101,98,117,103,95,111,118,101, ++ 114,114,105,100,101,32,111,114,32,111,112,116,105,109,105,122, ++ 97,116,105,111,110,32,109,117,115,116,32,98,101,32,115,101, ++ 116,32,116,111,32,78,111,110,101,114,31,0,0,0,114,30, ++ 0,0,0,218,1,46,122,36,115,121,115,46,105,109,112,108, ++ 101,109,101,110,116,97,116,105,111,110,46,99,97,99,104,101, ++ 95,116,97,103,32,105,115,32,78,111,110,101,233,0,0,0, ++ 0,122,24,123,33,114,125,32,105,115,32,110,111,116,32,97, ++ 108,112,104,97,110,117,109,101,114,105,99,122,7,123,125,46, ++ 123,125,123,125,41,21,218,9,95,119,97,114,110,105,110,103, ++ 115,218,4,119,97,114,110,218,18,68,101,112,114,101,99,97, ++ 116,105,111,110,87,97,114,110,105,110,103,218,9,84,121,112, ++ 101,69,114,114,111,114,114,39,0,0,0,114,33,0,0,0, ++ 114,8,0,0,0,218,14,105,109,112,108,101,109,101,110,116, ++ 97,116,105,111,110,218,9,99,97,99,104,101,95,116,97,103, ++ 218,19,78,111,116,73,109,112,108,101,109,101,110,116,101,100, ++ 69,114,114,111,114,114,27,0,0,0,218,5,102,108,97,103, ++ 115,218,8,111,112,116,105,109,105,122,101,218,3,115,116,114, ++ 218,7,105,115,97,108,110,117,109,218,10,86,97,108,117,101, ++ 69,114,114,111,114,114,48,0,0,0,218,4,95,79,80,84, ++ 114,29,0,0,0,218,8,95,80,89,67,65,67,72,69,218, ++ 17,66,89,84,69,67,79,68,69,95,83,85,70,70,73,88, ++ 69,83,41,11,114,36,0,0,0,90,14,100,101,98,117,103, ++ 95,111,118,101,114,114,105,100,101,114,58,0,0,0,218,7, ++ 109,101,115,115,97,103,101,218,4,104,101,97,100,114,38,0, ++ 0,0,90,4,98,97,115,101,218,3,115,101,112,218,4,114, ++ 101,115,116,90,3,116,97,103,90,15,97,108,109,111,115,116, ++ 95,102,105,108,101,110,97,109,101,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,17,99,97,99,104,101,95, ++ 102,114,111,109,95,115,111,117,114,99,101,243,0,0,0,115, ++ 46,0,0,0,0,18,12,1,9,1,7,1,12,1,6,1, ++ 12,1,18,1,18,1,24,1,12,1,12,1,12,1,36,1, ++ 12,1,18,1,9,2,12,1,12,1,12,1,12,1,21,1, ++ 21,1,114,80,0,0,0,99,1,0,0,0,0,0,0,0, ++ 8,0,0,0,5,0,0,0,67,0,0,0,115,62,1,0, ++ 0,116,0,0,106,1,0,106,2,0,100,1,0,107,8,0, ++ 114,30,0,116,3,0,100,2,0,131,1,0,130,1,0,116, ++ 4,0,124,0,0,131,1,0,92,2,0,125,1,0,125,2, ++ 0,116,4,0,124,1,0,131,1,0,92,2,0,125,1,0, ++ 125,3,0,124,3,0,116,5,0,107,3,0,114,102,0,116, ++ 6,0,100,3,0,106,7,0,116,5,0,124,0,0,131,2, ++ 0,131,1,0,130,1,0,124,2,0,106,8,0,100,4,0, ++ 131,1,0,125,4,0,124,4,0,100,11,0,107,7,0,114, ++ 153,0,116,6,0,100,7,0,106,7,0,124,2,0,131,1, ++ 0,131,1,0,130,1,0,110,125,0,124,4,0,100,6,0, ++ 107,2,0,114,22,1,124,2,0,106,9,0,100,4,0,100, ++ 5,0,131,2,0,100,12,0,25,125,5,0,124,5,0,106, ++ 10,0,116,11,0,131,1,0,115,223,0,116,6,0,100,8, ++ 0,106,7,0,116,11,0,131,1,0,131,1,0,130,1,0, ++ 124,5,0,116,12,0,116,11,0,131,1,0,100,1,0,133, ++ 2,0,25,125,6,0,124,6,0,106,13,0,131,0,0,115, ++ 22,1,116,6,0,100,9,0,106,7,0,124,5,0,131,1, ++ 0,131,1,0,130,1,0,124,2,0,106,14,0,100,4,0, ++ 131,1,0,100,10,0,25,125,7,0,116,15,0,124,1,0, ++ 124,7,0,116,16,0,100,10,0,25,23,131,2,0,83,41, ++ 13,97,110,1,0,0,71,105,118,101,110,32,116,104,101,32, ++ 112,97,116,104,32,116,111,32,97,32,46,112,121,99,46,32, ++ 102,105,108,101,44,32,114,101,116,117,114,110,32,116,104,101, ++ 32,112,97,116,104,32,116,111,32,105,116,115,32,46,112,121, ++ 32,102,105,108,101,46,10,10,32,32,32,32,84,104,101,32, ++ 46,112,121,99,32,102,105,108,101,32,100,111,101,115,32,110, ++ 111,116,32,110,101,101,100,32,116,111,32,101,120,105,115,116, ++ 59,32,116,104,105,115,32,115,105,109,112,108,121,32,114,101, ++ 116,117,114,110,115,32,116,104,101,32,112,97,116,104,32,116, ++ 111,10,32,32,32,32,116,104,101,32,46,112,121,32,102,105, ++ 108,101,32,99,97,108,99,117,108,97,116,101,100,32,116,111, ++ 32,99,111,114,114,101,115,112,111,110,100,32,116,111,32,116, ++ 104,101,32,46,112,121,99,32,102,105,108,101,46,32,32,73, ++ 102,32,112,97,116,104,32,100,111,101,115,10,32,32,32,32, ++ 110,111,116,32,99,111,110,102,111,114,109,32,116,111,32,80, ++ 69,80,32,51,49,52,55,47,52,56,56,32,102,111,114,109, ++ 97,116,44,32,86,97,108,117,101,69,114,114,111,114,32,119, ++ 105,108,108,32,98,101,32,114,97,105,115,101,100,46,32,73, ++ 102,10,32,32,32,32,115,121,115,46,105,109,112,108,101,109, ++ 101,110,116,97,116,105,111,110,46,99,97,99,104,101,95,116, ++ 97,103,32,105,115,32,78,111,110,101,32,116,104,101,110,32, ++ 78,111,116,73,109,112,108,101,109,101,110,116,101,100,69,114, ++ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,10, ++ 32,32,32,32,78,122,36,115,121,115,46,105,109,112,108,101, ++ 109,101,110,116,97,116,105,111,110,46,99,97,99,104,101,95, ++ 116,97,103,32,105,115,32,78,111,110,101,122,37,123,125,32, ++ 110,111,116,32,98,111,116,116,111,109,45,108,101,118,101,108, ++ 32,100,105,114,101,99,116,111,114,121,32,105,110,32,123,33, ++ 114,125,114,59,0,0,0,114,57,0,0,0,233,3,0,0, ++ 0,122,33,101,120,112,101,99,116,101,100,32,111,110,108,121, ++ 32,50,32,111,114,32,51,32,100,111,116,115,32,105,110,32, ++ 123,33,114,125,122,57,111,112,116,105,109,105,122,97,116,105, ++ 111,110,32,112,111,114,116,105,111,110,32,111,102,32,102,105, ++ 108,101,110,97,109,101,32,100,111,101,115,32,110,111,116,32, ++ 115,116,97,114,116,32,119,105,116,104,32,123,33,114,125,122, ++ 52,111,112,116,105,109,105,122,97,116,105,111,110,32,108,101, ++ 118,101,108,32,123,33,114,125,32,105,115,32,110,111,116,32, ++ 97,110,32,97,108,112,104,97,110,117,109,101,114,105,99,32, ++ 118,97,108,117,101,114,60,0,0,0,62,2,0,0,0,114, ++ 57,0,0,0,114,81,0,0,0,233,254,255,255,255,41,17, ++ 114,8,0,0,0,114,65,0,0,0,114,66,0,0,0,114, ++ 67,0,0,0,114,39,0,0,0,114,74,0,0,0,114,72, ++ 0,0,0,114,48,0,0,0,218,5,99,111,117,110,116,114, ++ 35,0,0,0,114,10,0,0,0,114,73,0,0,0,114,32, ++ 0,0,0,114,71,0,0,0,218,9,112,97,114,116,105,116, ++ 105,111,110,114,29,0,0,0,218,15,83,79,85,82,67,69, ++ 95,83,85,70,70,73,88,69,83,41,8,114,36,0,0,0, ++ 114,77,0,0,0,90,16,112,121,99,97,99,104,101,95,102, ++ 105,108,101,110,97,109,101,90,7,112,121,99,97,99,104,101, ++ 90,9,100,111,116,95,99,111,117,110,116,114,58,0,0,0, ++ 90,9,111,112,116,95,108,101,118,101,108,90,13,98,97,115, ++ 101,95,102,105,108,101,110,97,109,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,17,115,111,117,114,99, ++ 101,95,102,114,111,109,95,99,97,99,104,101,31,1,0,0, ++ 115,44,0,0,0,0,9,18,1,12,1,18,1,18,1,12, ++ 1,9,1,15,1,15,1,12,1,9,1,15,1,12,1,22, ++ 1,15,1,9,1,12,1,22,1,12,1,9,1,12,1,19, ++ 1,114,86,0,0,0,99,1,0,0,0,0,0,0,0,5, ++ 0,0,0,12,0,0,0,67,0,0,0,115,164,0,0,0, ++ 116,0,0,124,0,0,131,1,0,100,1,0,107,2,0,114, ++ 22,0,100,2,0,83,124,0,0,106,1,0,100,3,0,131, + 1,0,92,3,0,125,1,0,125,2,0,125,3,0,124,1, +- 0,124,3,0,102,2,0,83,120,69,0,116,4,0,124,0, +- 0,131,1,0,68,93,55,0,125,4,0,124,4,0,116,1, +- 0,107,6,0,114,65,0,124,0,0,106,5,0,124,4,0, +- 100,2,0,100,1,0,131,1,1,92,2,0,125,1,0,125, +- 3,0,124,1,0,124,3,0,102,2,0,83,113,65,0,87, +- 100,3,0,124,0,0,102,2,0,83,41,4,122,32,82,101, +- 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, +- 46,112,97,116,104,46,115,112,108,105,116,40,41,46,233,1, +- 0,0,0,90,8,109,97,120,115,112,108,105,116,218,0,41, +- 6,218,3,108,101,110,114,21,0,0,0,218,10,114,112,97, +- 114,116,105,116,105,111,110,114,25,0,0,0,218,8,114,101, +- 118,101,114,115,101,100,218,6,114,115,112,108,105,116,41,5, +- 218,4,112,97,116,104,90,5,102,114,111,110,116,218,1,95, +- 218,4,116,97,105,108,114,16,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,11,95,112,97,116, +- 104,95,115,112,108,105,116,56,0,0,0,115,16,0,0,0, +- 0,2,18,1,24,1,10,1,19,1,12,1,27,1,14,1, +- 114,38,0,0,0,99,1,0,0,0,0,0,0,0,1,0, +- 0,0,2,0,0,0,67,0,0,0,115,13,0,0,0,116, +- 0,0,106,1,0,124,0,0,131,1,0,83,41,1,122,126, +- 83,116,97,116,32,116,104,101,32,112,97,116,104,46,10,10, +- 32,32,32,32,77,97,100,101,32,97,32,115,101,112,97,114, +- 97,116,101,32,102,117,110,99,116,105,111,110,32,116,111,32, +- 109,97,107,101,32,105,116,32,101,97,115,105,101,114,32,116, +- 111,32,111,118,101,114,114,105,100,101,32,105,110,32,101,120, +- 112,101,114,105,109,101,110,116,115,10,32,32,32,32,40,101, +- 46,103,46,32,99,97,99,104,101,32,115,116,97,116,32,114, +- 101,115,117,108,116,115,41,46,10,10,32,32,32,32,41,2, +- 114,3,0,0,0,90,4,115,116,97,116,41,1,114,35,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,103,0,0,0,255,0,0,0,115,6,0,0,0,12, -- 2,12,4,12,7,114,103,0,0,0,99,1,0,0,0,0, -- 0,0,0,3,0,0,0,11,0,0,0,3,0,0,0,115, -- 142,0,0,0,100,1,0,125,1,0,121,17,0,116,0,0, -- 136,0,0,25,131,0,0,125,1,0,87,110,18,0,4,116, -- 1,0,107,10,0,114,43,0,1,1,1,89,110,1,0,88, -- 124,1,0,100,1,0,107,8,0,114,138,0,116,2,0,100, -- 1,0,107,8,0,114,83,0,116,3,0,136,0,0,131,1, -- 0,125,1,0,110,12,0,116,4,0,136,0,0,131,1,0, -- 125,1,0,135,0,0,102,1,0,100,2,0,100,3,0,134, -- 0,0,125,2,0,116,5,0,106,6,0,124,1,0,124,2, -- 0,131,2,0,116,0,0,136,0,0,60,110,0,0,124,1, -- 0,83,41,4,122,109,71,101,116,32,111,114,32,99,114,101, -- 97,116,101,32,116,104,101,32,109,111,100,117,108,101,32,108, -+ 105,114,101,100,32,108,111,99,107,114,85,0,0,0,114,30, -+ 0,0,0,41,10,114,86,0,0,0,114,92,0,0,0,114, -+ 87,0,0,0,114,89,0,0,0,218,12,82,117,110,116,105, -+ 109,101,69,114,114,111,114,114,90,0,0,0,218,14,65,115, -+ 115,101,114,116,105,111,110,69,114,114,111,114,114,91,0,0, -+ 0,114,88,0,0,0,114,99,0,0,0,41,2,114,72,0, -+ 0,0,114,96,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,99,0,0,0,217,0,0,0,115, -+ 22,0,0,0,0,1,12,1,10,1,15,1,15,1,21,1, -+ 15,1,15,1,9,1,9,1,15,1,122,19,95,77,111,100, -+ 117,108,101,76,111,99,107,46,114,101,108,101,97,115,101,99, -+ 1,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0, -+ 67,0,0,0,115,25,0,0,0,100,1,0,106,0,0,124, -+ 0,0,106,1,0,116,2,0,124,0,0,131,1,0,131,2, -+ 0,83,41,2,78,122,23,95,77,111,100,117,108,101,76,111, -+ 99,107,40,123,33,114,125,41,32,97,116,32,123,125,41,3, -+ 114,48,0,0,0,114,68,0,0,0,114,49,0,0,0,41, -+ 1,114,72,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,8,95,95,114,101,112,114,95,95,230, -+ 0,0,0,115,2,0,0,0,0,1,122,20,95,77,111,100, -+ 117,108,101,76,111,99,107,46,95,95,114,101,112,114,95,95, -+ 78,41,9,114,58,0,0,0,114,57,0,0,0,114,59,0, -+ 0,0,114,60,0,0,0,114,73,0,0,0,114,97,0,0, -+ 0,114,98,0,0,0,114,99,0,0,0,114,102,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,84,0,0,0,166,0,0,0,115,12,0, -+ 0,0,12,4,6,2,12,8,12,12,12,25,12,13,114,84, -+ 0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, -+ 2,0,0,0,64,0,0,0,115,70,0,0,0,101,0,0, -+ 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, -+ 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, -+ 0,132,0,0,90,5,0,100,6,0,100,7,0,132,0,0, -+ 90,6,0,100,8,0,100,9,0,132,0,0,90,7,0,100, -+ 10,0,83,41,11,218,16,95,68,117,109,109,121,77,111,100, -+ 117,108,101,76,111,99,107,122,86,65,32,115,105,109,112,108, -+ 101,32,95,77,111,100,117,108,101,76,111,99,107,32,101,113, -+ 117,105,118,97,108,101,110,116,32,102,111,114,32,80,121,116, -+ 104,111,110,32,98,117,105,108,100,115,32,119,105,116,104,111, -+ 117,116,10,32,32,32,32,109,117,108,116,105,45,116,104,114, -+ 101,97,100,105,110,103,32,115,117,112,112,111,114,116,46,99, -+ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, -+ 67,0,0,0,115,22,0,0,0,124,1,0,124,0,0,95, -+ 0,0,100,1,0,124,0,0,95,1,0,100,0,0,83,41, -+ 2,78,114,85,0,0,0,41,2,114,68,0,0,0,114,90, -+ 0,0,0,41,2,114,72,0,0,0,114,68,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,73, -+ 0,0,0,238,0,0,0,115,4,0,0,0,0,1,9,1, -+ 122,25,95,68,117,109,109,121,77,111,100,117,108,101,76,111, -+ 99,107,46,95,95,105,110,105,116,95,95,99,1,0,0,0, -+ 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, -+ 115,19,0,0,0,124,0,0,4,106,0,0,100,1,0,55, -+ 2,95,0,0,100,2,0,83,41,3,78,114,30,0,0,0, -+ 84,41,1,114,90,0,0,0,41,1,114,72,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,98, -+ 0,0,0,242,0,0,0,115,4,0,0,0,0,1,15,1, -+ 122,24,95,68,117,109,109,121,77,111,100,117,108,101,76,111, -+ 99,107,46,97,99,113,117,105,114,101,99,1,0,0,0,0, -+ 0,0,0,1,0,0,0,3,0,0,0,67,0,0,0,115, -+ 49,0,0,0,124,0,0,106,0,0,100,1,0,107,2,0, -+ 114,30,0,116,1,0,100,2,0,131,1,0,130,1,0,110, -+ 0,0,124,0,0,4,106,0,0,100,3,0,56,2,95,0, -+ 0,100,0,0,83,41,4,78,114,85,0,0,0,122,31,99, -+ 97,110,110,111,116,32,114,101,108,101,97,115,101,32,117,110, -+ 45,97,99,113,117,105,114,101,100,32,108,111,99,107,114,30, -+ 0,0,0,41,2,114,90,0,0,0,114,100,0,0,0,41, -+ 1,114,72,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,114,99,0,0,0,246,0,0,0,115,6, -+ 0,0,0,0,1,15,1,15,1,122,24,95,68,117,109,109, -+ 121,77,111,100,117,108,101,76,111,99,107,46,114,101,108,101, -+ 97,115,101,99,1,0,0,0,0,0,0,0,1,0,0,0, -+ 4,0,0,0,67,0,0,0,115,25,0,0,0,100,1,0, -+ 106,0,0,124,0,0,106,1,0,116,2,0,124,0,0,131, -+ 1,0,131,2,0,83,41,2,78,122,28,95,68,117,109,109, -+ 121,77,111,100,117,108,101,76,111,99,107,40,123,33,114,125, -+ 41,32,97,116,32,123,125,41,3,114,48,0,0,0,114,68, -+ 0,0,0,114,49,0,0,0,41,1,114,72,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,102, -+ 0,0,0,251,0,0,0,115,2,0,0,0,0,1,122,25, -+ 95,68,117,109,109,121,77,111,100,117,108,101,76,111,99,107, -+ 46,95,95,114,101,112,114,95,95,78,41,8,114,58,0,0, -+ 0,114,57,0,0,0,114,59,0,0,0,114,60,0,0,0, -+ 114,73,0,0,0,114,98,0,0,0,114,99,0,0,0,114, -+ 102,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,103,0,0,0,234,0,0, -+ 0,115,10,0,0,0,12,2,6,2,12,4,12,4,12,5, -+ 114,103,0,0,0,99,0,0,0,0,0,0,0,0,0,0, -+ 0,0,2,0,0,0,64,0,0,0,115,52,0,0,0,101, -+ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,100,2, -+ 0,132,0,0,90,3,0,100,3,0,100,4,0,132,0,0, -+ 90,4,0,100,5,0,100,6,0,132,0,0,90,5,0,100, -+ 7,0,83,41,8,218,18,95,77,111,100,117,108,101,76,111, -+ 99,107,77,97,110,97,103,101,114,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,22, -+ 0,0,0,124,1,0,124,0,0,95,0,0,100,0,0,124, -+ 0,0,95,1,0,100,0,0,83,41,1,78,41,2,114,71, -+ 0,0,0,218,5,95,108,111,99,107,41,2,114,72,0,0, -+ 0,114,68,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,114,73,0,0,0,1,1,0,0,115,4, -+ 0,0,0,0,1,9,1,122,27,95,77,111,100,117,108,101, -+ 76,111,99,107,77,97,110,97,103,101,114,46,95,95,105,110, -+ 105,116,95,95,99,1,0,0,0,0,0,0,0,1,0,0, -+ 0,10,0,0,0,67,0,0,0,115,53,0,0,0,122,22, -+ 0,116,0,0,124,0,0,106,1,0,131,1,0,124,0,0, -+ 95,2,0,87,100,0,0,116,3,0,106,4,0,131,0,0, -+ 1,88,124,0,0,106,2,0,106,5,0,131,0,0,1,100, -+ 0,0,83,41,1,78,41,6,218,16,95,103,101,116,95,109, -+ 111,100,117,108,101,95,108,111,99,107,114,71,0,0,0,114, -+ 105,0,0,0,218,4,95,105,109,112,218,12,114,101,108,101, -+ 97,115,101,95,108,111,99,107,114,98,0,0,0,41,1,114, -+ 72,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,76,0,0,0,5,1,0,0,115,8,0,0, -+ 0,0,1,3,1,22,2,11,1,122,28,95,77,111,100,117, -+ 108,101,76,111,99,107,77,97,110,97,103,101,114,46,95,95, -+ 101,110,116,101,114,95,95,99,1,0,0,0,0,0,0,0, -+ 3,0,0,0,1,0,0,0,79,0,0,0,115,17,0,0, -+ 0,124,0,0,106,0,0,106,1,0,131,0,0,1,100,0, -+ 0,83,41,1,78,41,2,114,105,0,0,0,114,99,0,0, -+ 0,41,3,114,72,0,0,0,114,81,0,0,0,218,6,107, -+ 119,97,114,103,115,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,82,0,0,0,12,1,0,0,115,2,0, -+ 0,0,0,1,122,27,95,77,111,100,117,108,101,76,111,99, -+ 107,77,97,110,97,103,101,114,46,95,95,101,120,105,116,95, -+ 95,78,41,6,114,58,0,0,0,114,57,0,0,0,114,59, -+ 0,0,0,114,73,0,0,0,114,76,0,0,0,114,82,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,104,0,0,0,255,0,0,0,115, -+ 6,0,0,0,12,2,12,4,12,7,114,104,0,0,0,99, -+ 1,0,0,0,0,0,0,0,3,0,0,0,11,0,0,0, -+ 3,0,0,0,115,142,0,0,0,100,1,0,125,1,0,121, -+ 17,0,116,0,0,136,0,0,25,131,0,0,125,1,0,87, -+ 110,18,0,4,116,1,0,107,10,0,114,43,0,1,1,1, -+ 89,110,1,0,88,124,1,0,100,1,0,107,8,0,114,138, -+ 0,116,2,0,100,1,0,107,8,0,114,83,0,116,3,0, -+ 136,0,0,131,1,0,125,1,0,110,12,0,116,4,0,136, -+ 0,0,131,1,0,125,1,0,135,0,0,102,1,0,100,2, -+ 0,100,3,0,134,0,0,125,2,0,116,5,0,106,6,0, -+ 124,1,0,124,2,0,131,2,0,116,0,0,136,0,0,60, -+ 110,0,0,124,1,0,83,41,4,122,109,71,101,116,32,111, -+ 114,32,99,114,101,97,116,101,32,116,104,101,32,109,111,100, -+ 117,108,101,32,108,111,99,107,32,102,111,114,32,97,32,103, -+ 105,118,101,110,32,109,111,100,117,108,101,32,110,97,109,101, -+ 46,10,10,32,32,32,32,83,104,111,117,108,100,32,111,110, -+ 108,121,32,98,101,32,99,97,108,108,101,100,32,119,105,116, -+ 104,32,116,104,101,32,105,109,112,111,114,116,32,108,111,99, -+ 107,32,116,97,107,101,110,46,78,99,1,0,0,0,0,0, -+ 0,0,1,0,0,0,2,0,0,0,19,0,0,0,115,11, -+ 0,0,0,116,0,0,136,0,0,61,100,0,0,83,41,1, -+ 78,41,1,218,13,95,109,111,100,117,108,101,95,108,111,99, -+ 107,115,41,1,114,37,0,0,0,41,1,114,68,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,2,99,98,32,1, -+ 0,0,115,2,0,0,0,0,1,122,28,95,103,101,116,95, -+ 109,111,100,117,108,101,95,108,111,99,107,46,60,108,111,99, -+ 97,108,115,62,46,99,98,41,7,114,110,0,0,0,114,80, -+ 0,0,0,114,86,0,0,0,114,103,0,0,0,114,84,0, -+ 0,0,218,8,95,119,101,97,107,114,101,102,90,3,114,101, -+ 102,41,3,114,68,0,0,0,114,87,0,0,0,114,111,0, -+ 0,0,114,5,0,0,0,41,1,114,68,0,0,0,114,6, -+ 0,0,0,114,106,0,0,0,18,1,0,0,115,24,0,0, -+ 0,0,4,6,1,3,1,17,1,13,1,5,1,12,1,12, -+ 1,15,2,12,1,18,2,25,1,114,106,0,0,0,99,1, -+ 0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,67, -+ 0,0,0,115,71,0,0,0,116,0,0,124,0,0,131,1, -+ 0,125,1,0,116,1,0,106,2,0,131,0,0,1,121,14, -+ 0,124,1,0,106,3,0,131,0,0,1,87,110,18,0,4, -+ 116,4,0,107,10,0,114,56,0,1,1,1,89,110,11,0, -+ 88,124,1,0,106,5,0,131,0,0,1,100,1,0,83,41, -+ 2,97,21,1,0,0,82,101,108,101,97,115,101,32,116,104, -+ 101,32,103,108,111,98,97,108,32,105,109,112,111,114,116,32, -+ 108,111,99,107,44,32,97,110,100,32,97,99,113,117,105,114, -+ 101,115,32,116,104,101,110,32,114,101,108,101,97,115,101,32, -+ 116,104,101,10,32,32,32,32,109,111,100,117,108,101,32,108, - 111,99,107,32,102,111,114,32,97,32,103,105,118,101,110,32, -- 109,111,100,117,108,101,32,110,97,109,101,46,10,10,32,32, -- 32,32,83,104,111,117,108,100,32,111,110,108,121,32,98,101, -- 32,99,97,108,108,101,100,32,119,105,116,104,32,116,104,101, -- 32,105,109,112,111,114,116,32,108,111,99,107,32,116,97,107, -- 101,110,46,78,99,1,0,0,0,0,0,0,0,1,0,0, -- 0,2,0,0,0,19,0,0,0,115,11,0,0,0,116,0, -- 0,136,0,0,61,100,0,0,83,41,1,78,41,1,218,13, -- 95,109,111,100,117,108,101,95,108,111,99,107,115,41,1,114, -- 36,0,0,0,41,1,114,67,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,2,99,98,32,1,0,0,115,2,0, -- 0,0,0,1,122,28,95,103,101,116,95,109,111,100,117,108, -- 101,95,108,111,99,107,46,60,108,111,99,97,108,115,62,46, -- 99,98,41,7,114,109,0,0,0,114,79,0,0,0,114,85, -- 0,0,0,114,102,0,0,0,114,83,0,0,0,218,8,95, -- 119,101,97,107,114,101,102,90,3,114,101,102,41,3,114,67, -- 0,0,0,114,86,0,0,0,114,110,0,0,0,114,4,0, -- 0,0,41,1,114,67,0,0,0,114,5,0,0,0,114,105, -- 0,0,0,18,1,0,0,115,24,0,0,0,0,4,6,1, -- 3,1,17,1,13,1,5,1,12,1,12,1,15,2,12,1, -- 18,2,25,1,114,105,0,0,0,99,1,0,0,0,0,0, -- 0,0,2,0,0,0,11,0,0,0,67,0,0,0,115,71, -- 0,0,0,116,0,0,124,0,0,131,1,0,125,1,0,116, -- 1,0,106,2,0,131,0,0,1,121,14,0,124,1,0,106, -- 3,0,131,0,0,1,87,110,18,0,4,116,4,0,107,10, -- 0,114,56,0,1,1,1,89,110,11,0,88,124,1,0,106, -- 5,0,131,0,0,1,100,1,0,83,41,2,97,21,1,0, -- 0,82,101,108,101,97,115,101,32,116,104,101,32,103,108,111, -- 98,97,108,32,105,109,112,111,114,116,32,108,111,99,107,44, -- 32,97,110,100,32,97,99,113,117,105,114,101,115,32,116,104, -- 101,110,32,114,101,108,101,97,115,101,32,116,104,101,10,32, -- 32,32,32,109,111,100,117,108,101,32,108,111,99,107,32,102, -- 111,114,32,97,32,103,105,118,101,110,32,109,111,100,117,108, -- 101,32,110,97,109,101,46,10,32,32,32,32,84,104,105,115, -- 32,105,115,32,117,115,101,100,32,116,111,32,101,110,115,117, -- 114,101,32,97,32,109,111,100,117,108,101,32,105,115,32,99, -- 111,109,112,108,101,116,101,108,121,32,105,110,105,116,105,97, -- 108,105,122,101,100,44,32,105,110,32,116,104,101,10,32,32, -- 32,32,101,118,101,110,116,32,105,116,32,105,115,32,98,101, -- 105,110,103,32,105,109,112,111,114,116,101,100,32,98,121,32, -- 97,110,111,116,104,101,114,32,116,104,114,101,97,100,46,10, -- 10,32,32,32,32,83,104,111,117,108,100,32,111,110,108,121, -- 32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32, -- 116,104,101,32,105,109,112,111,114,116,32,108,111,99,107,32, -- 116,97,107,101,110,46,78,41,6,114,105,0,0,0,114,106, -- 0,0,0,114,107,0,0,0,114,97,0,0,0,114,82,0, -- 0,0,114,98,0,0,0,41,2,114,67,0,0,0,114,86, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,218,19,95,108,111,99,107,95,117,110,108,111,99,107, -- 95,109,111,100,117,108,101,37,1,0,0,115,14,0,0,0, -- 0,7,12,1,10,1,3,1,14,1,13,3,5,2,114,112, -- 0,0,0,99,1,0,0,0,0,0,0,0,3,0,0,0, -- 3,0,0,0,79,0,0,0,115,13,0,0,0,124,0,0, -- 124,1,0,124,2,0,142,0,0,83,41,1,97,46,1,0, -- 0,114,101,109,111,118,101,95,105,109,112,111,114,116,108,105, -- 98,95,102,114,97,109,101,115,32,105,110,32,105,109,112,111, -- 114,116,46,99,32,119,105,108,108,32,97,108,119,97,121,115, -- 32,114,101,109,111,118,101,32,115,101,113,117,101,110,99,101, -- 115,10,32,32,32,32,111,102,32,105,109,112,111,114,116,108, -- 105,98,32,102,114,97,109,101,115,32,116,104,97,116,32,101, -- 110,100,32,119,105,116,104,32,97,32,99,97,108,108,32,116, -- 111,32,116,104,105,115,32,102,117,110,99,116,105,111,110,10, -- 10,32,32,32,32,85,115,101,32,105,116,32,105,110,115,116, -- 101,97,100,32,111,102,32,97,32,110,111,114,109,97,108,32, -- 99,97,108,108,32,105,110,32,112,108,97,99,101,115,32,119, -- 104,101,114,101,32,105,110,99,108,117,100,105,110,103,32,116, -- 104,101,32,105,109,112,111,114,116,108,105,98,10,32,32,32, -- 32,102,114,97,109,101,115,32,105,110,116,114,111,100,117,99, -- 101,115,32,117,110,119,97,110,116,101,100,32,110,111,105,115, -- 101,32,105,110,116,111,32,116,104,101,32,116,114,97,99,101, -- 98,97,99,107,32,40,101,46,103,46,32,119,104,101,110,32, -- 101,120,101,99,117,116,105,110,103,10,32,32,32,32,109,111, -- 100,117,108,101,32,99,111,100,101,41,10,32,32,32,32,114, -- 4,0,0,0,41,3,218,1,102,114,80,0,0,0,90,4, -- 107,119,100,115,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,25,95,99,97,108,108,95,119,105,116,104,95, -- 102,114,97,109,101,115,95,114,101,109,111,118,101,100,57,1, -- 0,0,115,2,0,0,0,0,8,114,114,0,0,0,105,238, -- 12,0,0,233,2,0,0,0,114,13,0,0,0,115,2,0, +- 0,218,10,95,112,97,116,104,95,115,116,97,116,68,0,0, +- 0,115,2,0,0,0,0,7,114,39,0,0,0,99,2,0, +- 0,0,0,0,0,0,3,0,0,0,11,0,0,0,67,0, +- 0,0,115,58,0,0,0,121,16,0,116,0,0,124,0,0, +- 131,1,0,125,2,0,87,110,22,0,4,116,1,0,107,10, +- 0,114,40,0,1,1,1,100,1,0,83,89,110,1,0,88, +- 124,2,0,106,2,0,100,2,0,64,124,1,0,107,2,0, +- 83,41,3,122,49,84,101,115,116,32,119,104,101,116,104,101, +- 114,32,116,104,101,32,112,97,116,104,32,105,115,32,116,104, +- 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,101, +- 32,116,121,112,101,46,70,105,0,240,0,0,41,3,114,39, +- 0,0,0,218,7,79,83,69,114,114,111,114,218,7,115,116, +- 95,109,111,100,101,41,3,114,35,0,0,0,218,4,109,111, +- 100,101,90,9,115,116,97,116,95,105,110,102,111,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,18,95,112, +- 97,116,104,95,105,115,95,109,111,100,101,95,116,121,112,101, +- 78,0,0,0,115,10,0,0,0,0,2,3,1,16,1,13, +- 1,9,1,114,43,0,0,0,99,1,0,0,0,0,0,0, +- 0,1,0,0,0,3,0,0,0,67,0,0,0,115,13,0, +- 0,0,116,0,0,124,0,0,100,1,0,131,2,0,83,41, +- 2,122,31,82,101,112,108,97,99,101,109,101,110,116,32,102, +- 111,114,32,111,115,46,112,97,116,104,46,105,115,102,105,108, +- 101,46,105,0,128,0,0,41,1,114,43,0,0,0,41,1, +- 114,35,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,12,95,112,97,116,104,95,105,115,102,105, +- 108,101,87,0,0,0,115,2,0,0,0,0,2,114,44,0, +- 0,0,99,1,0,0,0,0,0,0,0,1,0,0,0,3, +- 0,0,0,67,0,0,0,115,31,0,0,0,124,0,0,115, +- 18,0,116,0,0,106,1,0,131,0,0,125,0,0,116,2, +- 0,124,0,0,100,1,0,131,2,0,83,41,2,122,30,82, +- 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, +- 115,46,112,97,116,104,46,105,115,100,105,114,46,105,0,64, +- 0,0,41,3,114,3,0,0,0,218,6,103,101,116,99,119, +- 100,114,43,0,0,0,41,1,114,35,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,11,95,112, +- 97,116,104,95,105,115,100,105,114,92,0,0,0,115,6,0, +- 0,0,0,2,6,1,12,1,114,46,0,0,0,105,182,1, +- 0,0,99,3,0,0,0,0,0,0,0,6,0,0,0,17, +- 0,0,0,67,0,0,0,115,193,0,0,0,100,1,0,106, +- 0,0,124,0,0,116,1,0,124,0,0,131,1,0,131,2, +- 0,125,3,0,116,2,0,106,3,0,124,3,0,116,2,0, +- 106,4,0,116,2,0,106,5,0,66,116,2,0,106,6,0, +- 66,124,2,0,100,2,0,64,131,3,0,125,4,0,121,61, +- 0,116,7,0,106,8,0,124,4,0,100,3,0,131,2,0, +- 143,20,0,125,5,0,124,5,0,106,9,0,124,1,0,131, +- 1,0,1,87,100,4,0,81,82,88,116,2,0,106,10,0, +- 124,3,0,124,0,0,131,2,0,1,87,110,59,0,4,116, +- 11,0,107,10,0,114,188,0,1,1,1,121,17,0,116,2, +- 0,106,12,0,124,3,0,131,1,0,1,87,110,18,0,4, +- 116,11,0,107,10,0,114,180,0,1,1,1,89,110,1,0, +- 88,130,0,0,89,110,1,0,88,100,4,0,83,41,5,122, +- 162,66,101,115,116,45,101,102,102,111,114,116,32,102,117,110, +- 99,116,105,111,110,32,116,111,32,119,114,105,116,101,32,100, +- 97,116,97,32,116,111,32,97,32,112,97,116,104,32,97,116, +- 111,109,105,99,97,108,108,121,46,10,32,32,32,32,66,101, +- 32,112,114,101,112,97,114,101,100,32,116,111,32,104,97,110, +- 100,108,101,32,97,32,70,105,108,101,69,120,105,115,116,115, +- 69,114,114,111,114,32,105,102,32,99,111,110,99,117,114,114, +- 101,110,116,32,119,114,105,116,105,110,103,32,111,102,32,116, +- 104,101,10,32,32,32,32,116,101,109,112,111,114,97,114,121, +- 32,102,105,108,101,32,105,115,32,97,116,116,101,109,112,116, +- 101,100,46,122,5,123,125,46,123,125,105,182,1,0,0,90, +- 2,119,98,78,41,13,218,6,102,111,114,109,97,116,218,2, +- 105,100,114,3,0,0,0,90,4,111,112,101,110,90,6,79, +- 95,69,88,67,76,90,7,79,95,67,82,69,65,84,90,8, +- 79,95,87,82,79,78,76,89,218,3,95,105,111,218,6,70, +- 105,108,101,73,79,218,5,119,114,105,116,101,218,7,114,101, +- 112,108,97,99,101,114,40,0,0,0,90,6,117,110,108,105, +- 110,107,41,6,114,35,0,0,0,218,4,100,97,116,97,114, +- 42,0,0,0,90,8,112,97,116,104,95,116,109,112,90,2, +- 102,100,218,4,102,105,108,101,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,13,95,119,114,105,116,101,95, +- 97,116,111,109,105,99,99,0,0,0,115,26,0,0,0,0, +- 5,24,1,9,1,33,1,3,3,21,1,20,1,20,1,13, +- 1,3,1,17,1,13,1,5,1,114,55,0,0,0,105,22, +- 13,0,0,233,2,0,0,0,114,13,0,0,0,115,2,0, - 0,0,13,10,90,11,95,95,112,121,99,97,99,104,101,95, -- 95,122,3,46,112,121,122,4,46,112,121,99,122,4,46,112, -- 121,111,78,99,2,0,0,0,0,0,0,0,11,0,0,0, -- 6,0,0,0,67,0,0,0,115,180,0,0,0,124,1,0, -- 100,1,0,107,8,0,114,25,0,116,0,0,106,1,0,106, -- 2,0,12,110,3,0,124,1,0,125,2,0,124,2,0,114, -- 46,0,116,3,0,125,3,0,110,6,0,116,4,0,125,3, -- 0,116,5,0,124,0,0,131,1,0,92,2,0,125,4,0, -- 125,5,0,124,5,0,106,6,0,100,2,0,131,1,0,92, -- 3,0,125,6,0,125,7,0,125,8,0,116,0,0,106,7, -- 0,106,8,0,125,9,0,124,9,0,100,1,0,107,8,0, -- 114,133,0,116,9,0,100,3,0,131,1,0,130,1,0,110, -- 0,0,100,4,0,106,10,0,124,6,0,124,7,0,124,9, -- 0,124,3,0,100,5,0,25,103,4,0,131,1,0,125,10, -- 0,116,11,0,124,4,0,116,12,0,124,10,0,131,3,0, -- 83,41,6,97,244,1,0,0,71,105,118,101,110,32,116,104, -- 101,32,112,97,116,104,32,116,111,32,97,32,46,112,121,32, -- 102,105,108,101,44,32,114,101,116,117,114,110,32,116,104,101, -- 32,112,97,116,104,32,116,111,32,105,116,115,32,46,112,121, -- 99,47,46,112,121,111,32,102,105,108,101,46,10,10,32,32, -- 32,32,84,104,101,32,46,112,121,32,102,105,108,101,32,100, -- 111,101,115,32,110,111,116,32,110,101,101,100,32,116,111,32, -- 101,120,105,115,116,59,32,116,104,105,115,32,115,105,109,112, -- 108,121,32,114,101,116,117,114,110,115,32,116,104,101,32,112, -- 97,116,104,32,116,111,32,116,104,101,10,32,32,32,32,46, -- 112,121,99,47,46,112,121,111,32,102,105,108,101,32,99,97, -- 108,99,117,108,97,116,101,100,32,97,115,32,105,102,32,116, -- 104,101,32,46,112,121,32,102,105,108,101,32,119,101,114,101, -- 32,105,109,112,111,114,116,101,100,46,32,32,84,104,101,32, -- 101,120,116,101,110,115,105,111,110,10,32,32,32,32,119,105, -- 108,108,32,98,101,32,46,112,121,99,32,117,110,108,101,115, -- 115,32,115,121,115,46,102,108,97,103,115,46,111,112,116,105, -- 109,105,122,101,32,105,115,32,110,111,110,45,122,101,114,111, -- 44,32,116,104,101,110,32,105,116,32,119,105,108,108,32,98, -- 101,32,46,112,121,111,46,10,10,32,32,32,32,73,102,32, -- 100,101,98,117,103,95,111,118,101,114,114,105,100,101,32,105, -- 115,32,110,111,116,32,78,111,110,101,44,32,116,104,101,110, -- 32,105,116,32,109,117,115,116,32,98,101,32,97,32,98,111, -- 111,108,101,97,110,32,97,110,100,32,105,115,32,117,115,101, -- 100,32,105,110,10,32,32,32,32,112,108,97,99,101,32,111, -- 102,32,115,121,115,46,102,108,97,103,115,46,111,112,116,105, -- 109,105,122,101,46,10,10,32,32,32,32,73,102,32,115,121, -- 115,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110, -- 46,99,97,99,104,101,95,116,97,103,32,105,115,32,78,111, -- 110,101,32,116,104,101,110,32,78,111,116,73,109,112,108,101, -- 109,101,110,116,101,100,69,114,114,111,114,32,105,115,32,114, -- 97,105,115,101,100,46,10,10,32,32,32,32,78,218,1,46, +- 95,122,4,111,112,116,45,122,3,46,112,121,122,4,46,112, +- 121,99,78,218,12,111,112,116,105,109,105,122,97,116,105,111, +- 110,99,2,0,0,0,1,0,0,0,11,0,0,0,6,0, +- 0,0,67,0,0,0,115,87,1,0,0,124,1,0,100,1, +- 0,107,9,0,114,76,0,116,0,0,106,1,0,100,2,0, +- 116,2,0,131,2,0,1,124,2,0,100,1,0,107,9,0, +- 114,58,0,100,3,0,125,3,0,116,3,0,124,3,0,131, +- 1,0,130,1,0,124,1,0,114,70,0,100,4,0,110,3, +- 0,100,5,0,125,2,0,116,4,0,124,0,0,131,1,0, +- 92,2,0,125,4,0,125,5,0,124,5,0,106,5,0,100, +- 6,0,131,1,0,92,3,0,125,6,0,125,7,0,125,8, +- 0,116,6,0,106,7,0,106,8,0,125,9,0,124,9,0, +- 100,1,0,107,8,0,114,154,0,116,9,0,100,7,0,131, +- 1,0,130,1,0,100,4,0,106,10,0,124,6,0,114,172, +- 0,124,6,0,110,3,0,124,8,0,124,7,0,124,9,0, +- 103,3,0,131,1,0,125,10,0,124,2,0,100,1,0,107, +- 8,0,114,241,0,116,6,0,106,11,0,106,12,0,100,8, +- 0,107,2,0,114,229,0,100,4,0,125,2,0,110,12,0, +- 116,6,0,106,11,0,106,12,0,125,2,0,116,13,0,124, +- 2,0,131,1,0,125,2,0,124,2,0,100,4,0,107,3, +- 0,114,63,1,124,2,0,106,14,0,131,0,0,115,42,1, +- 116,15,0,100,9,0,106,16,0,124,2,0,131,1,0,131, +- 1,0,130,1,0,100,10,0,106,16,0,124,10,0,116,17, +- 0,124,2,0,131,3,0,125,10,0,116,18,0,124,4,0, +- 116,19,0,124,10,0,116,20,0,100,8,0,25,23,131,3, +- 0,83,41,11,97,254,2,0,0,71,105,118,101,110,32,116, +- 104,101,32,112,97,116,104,32,116,111,32,97,32,46,112,121, +- 32,102,105,108,101,44,32,114,101,116,117,114,110,32,116,104, +- 101,32,112,97,116,104,32,116,111,32,105,116,115,32,46,112, +- 121,99,32,102,105,108,101,46,10,10,32,32,32,32,84,104, +- 101,32,46,112,121,32,102,105,108,101,32,100,111,101,115,32, +- 110,111,116,32,110,101,101,100,32,116,111,32,101,120,105,115, +- 116,59,32,116,104,105,115,32,115,105,109,112,108,121,32,114, +- 101,116,117,114,110,115,32,116,104,101,32,112,97,116,104,32, +- 116,111,32,116,104,101,10,32,32,32,32,46,112,121,99,32, +- 102,105,108,101,32,99,97,108,99,117,108,97,116,101,100,32, +- 97,115,32,105,102,32,116,104,101,32,46,112,121,32,102,105, +- 108,101,32,119,101,114,101,32,105,109,112,111,114,116,101,100, +- 46,10,10,32,32,32,32,84,104,101,32,39,111,112,116,105, +- 109,105,122,97,116,105,111,110,39,32,112,97,114,97,109,101, +- 116,101,114,32,99,111,110,116,114,111,108,115,32,116,104,101, +- 32,112,114,101,115,117,109,101,100,32,111,112,116,105,109,105, +- 122,97,116,105,111,110,32,108,101,118,101,108,32,111,102,10, +- 32,32,32,32,116,104,101,32,98,121,116,101,99,111,100,101, +- 32,102,105,108,101,46,32,73,102,32,39,111,112,116,105,109, +- 105,122,97,116,105,111,110,39,32,105,115,32,110,111,116,32, +- 78,111,110,101,44,32,116,104,101,32,115,116,114,105,110,103, +- 32,114,101,112,114,101,115,101,110,116,97,116,105,111,110,10, +- 32,32,32,32,111,102,32,116,104,101,32,97,114,103,117,109, +- 101,110,116,32,105,115,32,116,97,107,101,110,32,97,110,100, +- 32,118,101,114,105,102,105,101,100,32,116,111,32,98,101,32, +- 97,108,112,104,97,110,117,109,101,114,105,99,32,40,101,108, +- 115,101,32,86,97,108,117,101,69,114,114,111,114,10,32,32, +- 32,32,105,115,32,114,97,105,115,101,100,41,46,10,10,32, +- 32,32,32,84,104,101,32,100,101,98,117,103,95,111,118,101, +- 114,114,105,100,101,32,112,97,114,97,109,101,116,101,114,32, +- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,73, +- 102,32,100,101,98,117,103,95,111,118,101,114,114,105,100,101, +- 32,105,115,32,110,111,116,32,78,111,110,101,44,10,32,32, +- 32,32,97,32,84,114,117,101,32,118,97,108,117,101,32,105, +- 115,32,116,104,101,32,115,97,109,101,32,97,115,32,115,101, +- 116,116,105,110,103,32,39,111,112,116,105,109,105,122,97,116, +- 105,111,110,39,32,116,111,32,116,104,101,32,101,109,112,116, +- 121,32,115,116,114,105,110,103,10,32,32,32,32,119,104,105, +- 108,101,32,97,32,70,97,108,115,101,32,118,97,108,117,101, +- 32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116, +- 111,32,115,101,116,116,105,110,103,32,39,111,112,116,105,109, +- 105,122,97,116,105,111,110,39,32,116,111,32,39,49,39,46, +- 10,10,32,32,32,32,73,102,32,115,121,115,46,105,109,112, +- 108,101,109,101,110,116,97,116,105,111,110,46,99,97,99,104, +- 101,95,116,97,103,32,105,115,32,78,111,110,101,32,116,104, +- 101,110,32,78,111,116,73,109,112,108,101,109,101,110,116,101, +- 100,69,114,114,111,114,32,105,115,32,114,97,105,115,101,100, +- 46,10,10,32,32,32,32,78,122,70,116,104,101,32,100,101, +- 98,117,103,95,111,118,101,114,114,105,100,101,32,112,97,114, +- 97,109,101,116,101,114,32,105,115,32,100,101,112,114,101,99, +- 97,116,101,100,59,32,117,115,101,32,39,111,112,116,105,109, +- 105,122,97,116,105,111,110,39,32,105,110,115,116,101,97,100, +- 122,50,100,101,98,117,103,95,111,118,101,114,114,105,100,101, +- 32,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110, +- 32,109,117,115,116,32,98,101,32,115,101,116,32,116,111,32, +- 78,111,110,101,114,30,0,0,0,114,29,0,0,0,218,1, +- 46,122,36,115,121,115,46,105,109,112,108,101,109,101,110,116, +- 97,116,105,111,110,46,99,97,99,104,101,95,116,97,103,32, +- 105,115,32,78,111,110,101,233,0,0,0,0,122,24,123,33, +- 114,125,32,105,115,32,110,111,116,32,97,108,112,104,97,110, +- 117,109,101,114,105,99,122,7,123,125,46,123,125,123,125,41, +- 21,218,9,95,119,97,114,110,105,110,103,115,218,4,119,97, +- 114,110,218,18,68,101,112,114,101,99,97,116,105,111,110,87, +- 97,114,110,105,110,103,218,9,84,121,112,101,69,114,114,111, +- 114,114,38,0,0,0,114,32,0,0,0,114,7,0,0,0, +- 218,14,105,109,112,108,101,109,101,110,116,97,116,105,111,110, +- 218,9,99,97,99,104,101,95,116,97,103,218,19,78,111,116, +- 73,109,112,108,101,109,101,110,116,101,100,69,114,114,111,114, +- 114,26,0,0,0,218,5,102,108,97,103,115,218,8,111,112, +- 116,105,109,105,122,101,218,3,115,116,114,218,7,105,115,97, +- 108,110,117,109,218,10,86,97,108,117,101,69,114,114,111,114, +- 114,47,0,0,0,218,4,95,79,80,84,114,28,0,0,0, +- 218,8,95,80,89,67,65,67,72,69,218,17,66,89,84,69, +- 67,79,68,69,95,83,85,70,70,73,88,69,83,41,11,114, +- 35,0,0,0,90,14,100,101,98,117,103,95,111,118,101,114, +- 114,105,100,101,114,57,0,0,0,218,7,109,101,115,115,97, +- 103,101,218,4,104,101,97,100,114,37,0,0,0,90,4,98, +- 97,115,101,218,3,115,101,112,218,4,114,101,115,116,90,3, +- 116,97,103,90,15,97,108,109,111,115,116,95,102,105,108,101, +- 110,97,109,101,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,17,99,97,99,104,101,95,102,114,111,109,95, +- 115,111,117,114,99,101,243,0,0,0,115,46,0,0,0,0, +- 18,12,1,9,1,7,1,12,1,6,1,12,1,18,1,18, +- 1,24,1,12,1,12,1,12,1,36,1,12,1,18,1,9, +- 2,12,1,12,1,12,1,12,1,21,1,21,1,114,79,0, +- 0,0,99,1,0,0,0,0,0,0,0,8,0,0,0,5, +- 0,0,0,67,0,0,0,115,62,1,0,0,116,0,0,106, +- 1,0,106,2,0,100,1,0,107,8,0,114,30,0,116,3, +- 0,100,2,0,131,1,0,130,1,0,116,4,0,124,0,0, +- 131,1,0,92,2,0,125,1,0,125,2,0,116,4,0,124, +- 1,0,131,1,0,92,2,0,125,1,0,125,3,0,124,3, +- 0,116,5,0,107,3,0,114,102,0,116,6,0,100,3,0, +- 106,7,0,116,5,0,124,0,0,131,2,0,131,1,0,130, +- 1,0,124,2,0,106,8,0,100,4,0,131,1,0,125,4, +- 0,124,4,0,100,11,0,107,7,0,114,153,0,116,6,0, +- 100,7,0,106,7,0,124,2,0,131,1,0,131,1,0,130, +- 1,0,110,125,0,124,4,0,100,6,0,107,2,0,114,22, +- 1,124,2,0,106,9,0,100,4,0,100,5,0,131,2,0, +- 100,12,0,25,125,5,0,124,5,0,106,10,0,116,11,0, +- 131,1,0,115,223,0,116,6,0,100,8,0,106,7,0,116, +- 11,0,131,1,0,131,1,0,130,1,0,124,5,0,116,12, +- 0,116,11,0,131,1,0,100,1,0,133,2,0,25,125,6, +- 0,124,6,0,106,13,0,131,0,0,115,22,1,116,6,0, +- 100,9,0,106,7,0,124,5,0,131,1,0,131,1,0,130, +- 1,0,124,2,0,106,14,0,100,4,0,131,1,0,100,10, +- 0,25,125,7,0,116,15,0,124,1,0,124,7,0,116,16, +- 0,100,10,0,25,23,131,2,0,83,41,13,97,110,1,0, +- 0,71,105,118,101,110,32,116,104,101,32,112,97,116,104,32, +- 116,111,32,97,32,46,112,121,99,46,32,102,105,108,101,44, +- 32,114,101,116,117,114,110,32,116,104,101,32,112,97,116,104, +- 32,116,111,32,105,116,115,32,46,112,121,32,102,105,108,101, +- 46,10,10,32,32,32,32,84,104,101,32,46,112,121,99,32, +- 102,105,108,101,32,100,111,101,115,32,110,111,116,32,110,101, +- 101,100,32,116,111,32,101,120,105,115,116,59,32,116,104,105, +- 115,32,115,105,109,112,108,121,32,114,101,116,117,114,110,115, +- 32,116,104,101,32,112,97,116,104,32,116,111,10,32,32,32, +- 32,116,104,101,32,46,112,121,32,102,105,108,101,32,99,97, +- 108,99,117,108,97,116,101,100,32,116,111,32,99,111,114,114, +- 101,115,112,111,110,100,32,116,111,32,116,104,101,32,46,112, +- 121,99,32,102,105,108,101,46,32,32,73,102,32,112,97,116, +- 104,32,100,111,101,115,10,32,32,32,32,110,111,116,32,99, +- 111,110,102,111,114,109,32,116,111,32,80,69,80,32,51,49, +- 52,55,47,52,56,56,32,102,111,114,109,97,116,44,32,86, +- 97,108,117,101,69,114,114,111,114,32,119,105,108,108,32,98, +- 101,32,114,97,105,115,101,100,46,32,73,102,10,32,32,32, +- 32,115,121,115,46,105,109,112,108,101,109,101,110,116,97,116, +- 105,111,110,46,99,97,99,104,101,95,116,97,103,32,105,115, +- 32,78,111,110,101,32,116,104,101,110,32,78,111,116,73,109, +- 112,108,101,109,101,110,116,101,100,69,114,114,111,114,32,105, +- 115,32,114,97,105,115,101,100,46,10,10,32,32,32,32,78, - 122,36,115,121,115,46,105,109,112,108,101,109,101,110,116,97, - 116,105,111,110,46,99,97,99,104,101,95,116,97,103,32,105, -- 115,32,78,111,110,101,114,30,0,0,0,114,84,0,0,0, -- 41,13,114,7,0,0,0,218,5,102,108,97,103,115,218,8, -- 111,112,116,105,109,105,122,101,218,23,68,69,66,85,71,95, -- 66,89,84,69,67,79,68,69,95,83,85,70,70,73,88,69, -- 83,218,27,79,80,84,73,77,73,90,69,68,95,66,89,84, -- 69,67,79,68,69,95,83,85,70,70,73,88,69,83,114,38, -- 0,0,0,218,9,112,97,114,116,105,116,105,111,110,218,14, -- 105,109,112,108,101,109,101,110,116,97,116,105,111,110,218,9, -- 99,97,99,104,101,95,116,97,103,218,19,78,111,116,73,109, -- 112,108,101,109,101,110,116,101,100,69,114,114,111,114,114,26, -- 0,0,0,114,28,0,0,0,218,8,95,80,89,67,65,67, -- 72,69,41,11,114,35,0,0,0,90,14,100,101,98,117,103, -- 95,111,118,101,114,114,105,100,101,218,5,100,101,98,117,103, -- 218,8,115,117,102,102,105,120,101,115,218,4,104,101,97,100, -- 114,37,0,0,0,218,13,98,97,115,101,95,102,105,108,101, -- 110,97,109,101,218,3,115,101,112,114,36,0,0,0,90,3, -- 116,97,103,218,8,102,105,108,101,110,97,109,101,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,17,99,97, -- 99,104,101,95,102,114,111,109,95,115,111,117,114,99,101,181, -- 1,0,0,115,22,0,0,0,0,13,31,1,6,1,9,2, -- 6,1,18,1,24,1,12,1,12,1,15,1,31,1,114,132, -+ 109,111,100,117,108,101,32,110,97,109,101,46,10,32,32,32, -+ 32,84,104,105,115,32,105,115,32,117,115,101,100,32,116,111, -+ 32,101,110,115,117,114,101,32,97,32,109,111,100,117,108,101, -+ 32,105,115,32,99,111,109,112,108,101,116,101,108,121,32,105, -+ 110,105,116,105,97,108,105,122,101,100,44,32,105,110,32,116, -+ 104,101,10,32,32,32,32,101,118,101,110,116,32,105,116,32, -+ 105,115,32,98,101,105,110,103,32,105,109,112,111,114,116,101, -+ 100,32,98,121,32,97,110,111,116,104,101,114,32,116,104,114, -+ 101,97,100,46,10,10,32,32,32,32,83,104,111,117,108,100, -+ 32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32, -+ 119,105,116,104,32,116,104,101,32,105,109,112,111,114,116,32, -+ 108,111,99,107,32,116,97,107,101,110,46,78,41,6,114,106, -+ 0,0,0,114,107,0,0,0,114,108,0,0,0,114,98,0, -+ 0,0,114,83,0,0,0,114,99,0,0,0,41,2,114,68, -+ 0,0,0,114,87,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,218,19,95,108,111,99,107,95,117, -+ 110,108,111,99,107,95,109,111,100,117,108,101,37,1,0,0, -+ 115,14,0,0,0,0,7,12,1,10,1,3,1,14,1,13, -+ 3,5,2,114,113,0,0,0,99,1,0,0,0,0,0,0, -+ 0,3,0,0,0,3,0,0,0,79,0,0,0,115,13,0, -+ 0,0,124,0,0,124,1,0,124,2,0,142,0,0,83,41, -+ 1,97,46,1,0,0,114,101,109,111,118,101,95,105,109,112, -+ 111,114,116,108,105,98,95,102,114,97,109,101,115,32,105,110, -+ 32,105,109,112,111,114,116,46,99,32,119,105,108,108,32,97, -+ 108,119,97,121,115,32,114,101,109,111,118,101,32,115,101,113, -+ 117,101,110,99,101,115,10,32,32,32,32,111,102,32,105,109, -+ 112,111,114,116,108,105,98,32,102,114,97,109,101,115,32,116, -+ 104,97,116,32,101,110,100,32,119,105,116,104,32,97,32,99, -+ 97,108,108,32,116,111,32,116,104,105,115,32,102,117,110,99, -+ 116,105,111,110,10,10,32,32,32,32,85,115,101,32,105,116, -+ 32,105,110,115,116,101,97,100,32,111,102,32,97,32,110,111, -+ 114,109,97,108,32,99,97,108,108,32,105,110,32,112,108,97, -+ 99,101,115,32,119,104,101,114,101,32,105,110,99,108,117,100, -+ 105,110,103,32,116,104,101,32,105,109,112,111,114,116,108,105, -+ 98,10,32,32,32,32,102,114,97,109,101,115,32,105,110,116, -+ 114,111,100,117,99,101,115,32,117,110,119,97,110,116,101,100, -+ 32,110,111,105,115,101,32,105,110,116,111,32,116,104,101,32, -+ 116,114,97,99,101,98,97,99,107,32,40,101,46,103,46,32, -+ 119,104,101,110,32,101,120,101,99,117,116,105,110,103,10,32, -+ 32,32,32,109,111,100,117,108,101,32,99,111,100,101,41,10, -+ 32,32,32,32,114,5,0,0,0,41,3,218,1,102,114,81, -+ 0,0,0,90,4,107,119,100,115,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,25,95,99,97,108,108,95, -+ 119,105,116,104,95,102,114,97,109,101,115,95,114,101,109,111, -+ 118,101,100,57,1,0,0,115,2,0,0,0,0,8,114,115, -+ 0,0,0,105,238,12,0,0,233,2,0,0,0,114,14,0, -+ 0,0,115,2,0,0,0,13,10,90,11,95,95,112,121,99, -+ 97,99,104,101,95,95,122,3,46,112,121,122,4,46,112,121, -+ 99,122,4,46,112,121,111,78,99,2,0,0,0,0,0,0, -+ 0,11,0,0,0,6,0,0,0,67,0,0,0,115,180,0, -+ 0,0,124,1,0,100,1,0,107,8,0,114,25,0,116,0, -+ 0,106,1,0,106,2,0,12,110,3,0,124,1,0,125,2, -+ 0,124,2,0,114,46,0,116,3,0,125,3,0,110,6,0, -+ 116,4,0,125,3,0,116,5,0,124,0,0,131,1,0,92, -+ 2,0,125,4,0,125,5,0,124,5,0,106,6,0,100,2, -+ 0,131,1,0,92,3,0,125,6,0,125,7,0,125,8,0, -+ 116,0,0,106,7,0,106,8,0,125,9,0,124,9,0,100, -+ 1,0,107,8,0,114,133,0,116,9,0,100,3,0,131,1, -+ 0,130,1,0,110,0,0,100,4,0,106,10,0,124,6,0, -+ 124,7,0,124,9,0,124,3,0,100,5,0,25,103,4,0, -+ 131,1,0,125,10,0,116,11,0,124,4,0,116,12,0,124, -+ 10,0,131,3,0,83,41,6,97,244,1,0,0,71,105,118, -+ 101,110,32,116,104,101,32,112,97,116,104,32,116,111,32,97, -+ 32,46,112,121,32,102,105,108,101,44,32,114,101,116,117,114, -+ 110,32,116,104,101,32,112,97,116,104,32,116,111,32,105,116, -+ 115,32,46,112,121,99,47,46,112,121,111,32,102,105,108,101, -+ 46,10,10,32,32,32,32,84,104,101,32,46,112,121,32,102, -+ 105,108,101,32,100,111,101,115,32,110,111,116,32,110,101,101, -+ 100,32,116,111,32,101,120,105,115,116,59,32,116,104,105,115, -+ 32,115,105,109,112,108,121,32,114,101,116,117,114,110,115,32, -+ 116,104,101,32,112,97,116,104,32,116,111,32,116,104,101,10, -+ 32,32,32,32,46,112,121,99,47,46,112,121,111,32,102,105, -+ 108,101,32,99,97,108,99,117,108,97,116,101,100,32,97,115, -+ 32,105,102,32,116,104,101,32,46,112,121,32,102,105,108,101, -+ 32,119,101,114,101,32,105,109,112,111,114,116,101,100,46,32, -+ 32,84,104,101,32,101,120,116,101,110,115,105,111,110,10,32, -+ 32,32,32,119,105,108,108,32,98,101,32,46,112,121,99,32, -+ 117,110,108,101,115,115,32,115,121,115,46,102,108,97,103,115, -+ 46,111,112,116,105,109,105,122,101,32,105,115,32,110,111,110, -+ 45,122,101,114,111,44,32,116,104,101,110,32,105,116,32,119, -+ 105,108,108,32,98,101,32,46,112,121,111,46,10,10,32,32, -+ 32,32,73,102,32,100,101,98,117,103,95,111,118,101,114,114, -+ 105,100,101,32,105,115,32,110,111,116,32,78,111,110,101,44, -+ 32,116,104,101,110,32,105,116,32,109,117,115,116,32,98,101, -+ 32,97,32,98,111,111,108,101,97,110,32,97,110,100,32,105, -+ 115,32,117,115,101,100,32,105,110,10,32,32,32,32,112,108, -+ 97,99,101,32,111,102,32,115,121,115,46,102,108,97,103,115, -+ 46,111,112,116,105,109,105,122,101,46,10,10,32,32,32,32, -+ 73,102,32,115,121,115,46,105,109,112,108,101,109,101,110,116, -+ 97,116,105,111,110,46,99,97,99,104,101,95,116,97,103,32, -+ 105,115,32,78,111,110,101,32,116,104,101,110,32,78,111,116, -+ 73,109,112,108,101,109,101,110,116,101,100,69,114,114,111,114, -+ 32,105,115,32,114,97,105,115,101,100,46,10,10,32,32,32, -+ 32,78,218,1,46,122,36,115,121,115,46,105,109,112,108,101, -+ 109,101,110,116,97,116,105,111,110,46,99,97,99,104,101,95, -+ 116,97,103,32,105,115,32,78,111,110,101,114,31,0,0,0, -+ 114,85,0,0,0,41,13,114,8,0,0,0,218,5,102,108, -+ 97,103,115,218,8,111,112,116,105,109,105,122,101,218,23,68, -+ 69,66,85,71,95,66,89,84,69,67,79,68,69,95,83,85, -+ 70,70,73,88,69,83,218,27,79,80,84,73,77,73,90,69, -+ 68,95,66,89,84,69,67,79,68,69,95,83,85,70,70,73, -+ 88,69,83,114,39,0,0,0,218,9,112,97,114,116,105,116, -+ 105,111,110,218,14,105,109,112,108,101,109,101,110,116,97,116, -+ 105,111,110,218,9,99,97,99,104,101,95,116,97,103,218,19, -+ 78,111,116,73,109,112,108,101,109,101,110,116,101,100,69,114, -+ 114,111,114,114,27,0,0,0,114,29,0,0,0,218,8,95, -+ 80,89,67,65,67,72,69,41,11,114,36,0,0,0,90,14, -+ 100,101,98,117,103,95,111,118,101,114,114,105,100,101,218,5, -+ 100,101,98,117,103,218,8,115,117,102,102,105,120,101,115,218, -+ 4,104,101,97,100,114,38,0,0,0,218,13,98,97,115,101, -+ 95,102,105,108,101,110,97,109,101,218,3,115,101,112,114,37, -+ 0,0,0,90,3,116,97,103,218,8,102,105,108,101,110,97, -+ 109,101,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,17,99,97,99,104,101,95,102,114,111,109,95,115,111, -+ 117,114,99,101,181,1,0,0,115,22,0,0,0,0,13,31, -+ 1,6,1,9,2,6,1,18,1,24,1,12,1,12,1,15, -+ 1,31,1,114,133,0,0,0,99,1,0,0,0,0,0,0, -+ 0,5,0,0,0,5,0,0,0,67,0,0,0,115,193,0, -+ 0,0,116,0,0,106,1,0,106,2,0,100,1,0,107,8, -+ 0,114,33,0,116,3,0,100,2,0,131,1,0,130,1,0, -+ 110,0,0,116,4,0,124,0,0,131,1,0,92,2,0,125, -+ 1,0,125,2,0,116,4,0,124,1,0,131,1,0,92,2, -+ 0,125,1,0,125,3,0,124,3,0,116,5,0,107,3,0, -+ 114,108,0,116,6,0,100,3,0,106,7,0,116,5,0,124, -+ 0,0,131,2,0,131,1,0,130,1,0,110,0,0,124,2, -+ 0,106,8,0,100,4,0,131,1,0,100,5,0,107,3,0, -+ 114,153,0,116,6,0,100,6,0,106,7,0,124,2,0,131, -+ 1,0,131,1,0,130,1,0,110,0,0,124,2,0,106,9, -+ 0,100,4,0,131,1,0,100,7,0,25,125,4,0,116,10, -+ 0,124,1,0,124,4,0,116,11,0,100,7,0,25,23,131, -+ 2,0,83,41,8,97,121,1,0,0,71,105,118,101,110,32, -+ 116,104,101,32,112,97,116,104,32,116,111,32,97,32,46,112, -+ 121,99,46,47,46,112,121,111,32,102,105,108,101,44,32,114, -+ 101,116,117,114,110,32,116,104,101,32,112,97,116,104,32,116, -+ 111,32,105,116,115,32,46,112,121,32,102,105,108,101,46,10, -+ 10,32,32,32,32,84,104,101,32,46,112,121,99,47,46,112, -+ 121,111,32,102,105,108,101,32,100,111,101,115,32,110,111,116, -+ 32,110,101,101,100,32,116,111,32,101,120,105,115,116,59,32, -+ 116,104,105,115,32,115,105,109,112,108,121,32,114,101,116,117, -+ 114,110,115,32,116,104,101,32,112,97,116,104,32,116,111,10, -+ 32,32,32,32,116,104,101,32,46,112,121,32,102,105,108,101, -+ 32,99,97,108,99,117,108,97,116,101,100,32,116,111,32,99, -+ 111,114,114,101,115,112,111,110,100,32,116,111,32,116,104,101, -+ 32,46,112,121,99,47,46,112,121,111,32,102,105,108,101,46, -+ 32,32,73,102,32,112,97,116,104,32,100,111,101,115,10,32, -+ 32,32,32,110,111,116,32,99,111,110,102,111,114,109,32,116, -+ 111,32,80,69,80,32,51,49,52,55,32,102,111,114,109,97, -+ 116,44,32,86,97,108,117,101,69,114,114,111,114,32,119,105, -+ 108,108,32,98,101,32,114,97,105,115,101,100,46,32,73,102, -+ 10,32,32,32,32,115,121,115,46,105,109,112,108,101,109,101, -+ 110,116,97,116,105,111,110,46,99,97,99,104,101,95,116,97, -+ 103,32,105,115,32,78,111,110,101,32,116,104,101,110,32,78, -+ 111,116,73,109,112,108,101,109,101,110,116,101,100,69,114,114, -+ 111,114,32,105,115,32,114,97,105,115,101,100,46,10,10,32, -+ 32,32,32,78,122,36,115,121,115,46,105,109,112,108,101,109, -+ 101,110,116,97,116,105,111,110,46,99,97,99,104,101,95,116, -+ 97,103,32,105,115,32,78,111,110,101,122,37,123,125,32,110, -+ 111,116,32,98,111,116,116,111,109,45,108,101,118,101,108,32, -+ 100,105,114,101,99,116,111,114,121,32,105,110,32,123,33,114, -+ 125,114,117,0,0,0,114,116,0,0,0,122,28,101,120,112, -+ 101,99,116,101,100,32,111,110,108,121,32,50,32,100,111,116, -+ 115,32,105,110,32,123,33,114,125,114,85,0,0,0,41,12, -+ 114,8,0,0,0,114,123,0,0,0,114,124,0,0,0,114, -+ 125,0,0,0,114,39,0,0,0,114,126,0,0,0,218,10, -+ 86,97,108,117,101,69,114,114,111,114,114,48,0,0,0,114, -+ 90,0,0,0,114,122,0,0,0,114,29,0,0,0,218,15, -+ 83,79,85,82,67,69,95,83,85,70,70,73,88,69,83,41, -+ 5,114,36,0,0,0,114,129,0,0,0,90,16,112,121,99, -+ 97,99,104,101,95,102,105,108,101,110,97,109,101,90,7,112, -+ 121,99,97,99,104,101,114,130,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,17,115,111,117,114, -+ 99,101,95,102,114,111,109,95,99,97,99,104,101,208,1,0, -+ 0,115,24,0,0,0,0,9,18,1,15,1,18,1,18,1, -+ 12,1,3,1,24,1,21,1,3,1,21,1,19,1,114,136, - 0,0,0,99,1,0,0,0,0,0,0,0,5,0,0,0, -- 5,0,0,0,67,0,0,0,115,193,0,0,0,116,0,0, -- 106,1,0,106,2,0,100,1,0,107,8,0,114,33,0,116, -- 3,0,100,2,0,131,1,0,130,1,0,110,0,0,116,4, -- 0,124,0,0,131,1,0,92,2,0,125,1,0,125,2,0, -- 116,4,0,124,1,0,131,1,0,92,2,0,125,1,0,125, -- 3,0,124,3,0,116,5,0,107,3,0,114,108,0,116,6, -- 0,100,3,0,106,7,0,116,5,0,124,0,0,131,2,0, -- 131,1,0,130,1,0,110,0,0,124,2,0,106,8,0,100, -- 4,0,131,1,0,100,5,0,107,3,0,114,153,0,116,6, -- 0,100,6,0,106,7,0,124,2,0,131,1,0,131,1,0, -- 130,1,0,110,0,0,124,2,0,106,9,0,100,4,0,131, -- 1,0,100,7,0,25,125,4,0,116,10,0,124,1,0,124, -- 4,0,116,11,0,100,7,0,25,23,131,2,0,83,41,8, -- 97,121,1,0,0,71,105,118,101,110,32,116,104,101,32,112, -- 97,116,104,32,116,111,32,97,32,46,112,121,99,46,47,46, -- 112,121,111,32,102,105,108,101,44,32,114,101,116,117,114,110, -- 32,116,104,101,32,112,97,116,104,32,116,111,32,105,116,115, -- 32,46,112,121,32,102,105,108,101,46,10,10,32,32,32,32, -- 84,104,101,32,46,112,121,99,47,46,112,121,111,32,102,105, -- 108,101,32,100,111,101,115,32,110,111,116,32,110,101,101,100, -- 32,116,111,32,101,120,105,115,116,59,32,116,104,105,115,32, -- 115,105,109,112,108,121,32,114,101,116,117,114,110,115,32,116, -- 104,101,32,112,97,116,104,32,116,111,10,32,32,32,32,116, -- 104,101,32,46,112,121,32,102,105,108,101,32,99,97,108,99, -- 117,108,97,116,101,100,32,116,111,32,99,111,114,114,101,115, -- 112,111,110,100,32,116,111,32,116,104,101,32,46,112,121,99, -- 47,46,112,121,111,32,102,105,108,101,46,32,32,73,102,32, -- 112,97,116,104,32,100,111,101,115,10,32,32,32,32,110,111, -- 116,32,99,111,110,102,111,114,109,32,116,111,32,80,69,80, -- 32,51,49,52,55,32,102,111,114,109,97,116,44,32,86,97, -- 108,117,101,69,114,114,111,114,32,119,105,108,108,32,98,101, -- 32,114,97,105,115,101,100,46,32,73,102,10,32,32,32,32, -- 115,121,115,46,105,109,112,108,101,109,101,110,116,97,116,105, -- 111,110,46,99,97,99,104,101,95,116,97,103,32,105,115,32, -- 78,111,110,101,32,116,104,101,110,32,78,111,116,73,109,112, -- 108,101,109,101,110,116,101,100,69,114,114,111,114,32,105,115, -- 32,114,97,105,115,101,100,46,10,10,32,32,32,32,78,122, -- 36,115,121,115,46,105,109,112,108,101,109,101,110,116,97,116, -- 105,111,110,46,99,97,99,104,101,95,116,97,103,32,105,115, -- 32,78,111,110,101,122,37,123,125,32,110,111,116,32,98,111, -- 116,116,111,109,45,108,101,118,101,108,32,100,105,114,101,99, -- 116,111,114,121,32,105,110,32,123,33,114,125,114,116,0,0, -- 0,114,115,0,0,0,122,28,101,120,112,101,99,116,101,100, -- 32,111,110,108,121,32,50,32,100,111,116,115,32,105,110,32, -- 123,33,114,125,114,84,0,0,0,41,12,114,7,0,0,0, -- 114,122,0,0,0,114,123,0,0,0,114,124,0,0,0,114, -- 38,0,0,0,114,125,0,0,0,218,10,86,97,108,117,101, -- 69,114,114,111,114,114,47,0,0,0,114,89,0,0,0,114, -- 121,0,0,0,114,28,0,0,0,218,15,83,79,85,82,67, -- 69,95,83,85,70,70,73,88,69,83,41,5,114,35,0,0, -- 0,114,128,0,0,0,90,16,112,121,99,97,99,104,101,95, -- 102,105,108,101,110,97,109,101,90,7,112,121,99,97,99,104, -- 101,114,129,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,17,115,111,117,114,99,101,95,102,114, -- 111,109,95,99,97,99,104,101,208,1,0,0,115,24,0,0, -- 0,0,9,18,1,15,1,18,1,18,1,12,1,3,1,24, -- 1,21,1,3,1,21,1,19,1,114,135,0,0,0,99,1, -- 0,0,0,0,0,0,0,5,0,0,0,13,0,0,0,67, -- 0,0,0,115,164,0,0,0,116,0,0,124,0,0,131,1, -- 0,100,1,0,107,2,0,114,22,0,100,2,0,83,124,0, -- 0,106,1,0,100,3,0,131,1,0,92,3,0,125,1,0, -- 125,2,0,125,3,0,124,1,0,12,115,81,0,124,3,0, -- 106,2,0,131,0,0,100,7,0,100,8,0,133,2,0,25, -- 100,6,0,107,3,0,114,85,0,124,0,0,83,121,16,0, -- 116,3,0,124,0,0,131,1,0,125,4,0,87,110,40,0, -- 4,116,4,0,116,5,0,102,2,0,107,10,0,114,143,0, -- 1,1,1,124,0,0,100,2,0,100,9,0,133,2,0,25, -- 125,4,0,89,110,1,0,88,116,6,0,124,4,0,131,1, -- 0,114,160,0,124,4,0,83,124,0,0,83,41,10,122,188, -- 67,111,110,118,101,114,116,32,97,32,98,121,116,101,99,111, -- 100,101,32,102,105,108,101,32,112,97,116,104,32,116,111,32, -- 97,32,115,111,117,114,99,101,32,112,97,116,104,32,40,105, -- 102,32,112,111,115,115,105,98,108,101,41,46,10,10,32,32, -- 32,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32, -- 101,120,105,115,116,115,32,112,117,114,101,108,121,32,102,111, -- 114,32,98,97,99,107,119,97,114,100,115,45,99,111,109,112, -- 97,116,105,98,105,108,105,116,121,32,102,111,114,10,32,32, -- 32,32,80,121,73,109,112,111,114,116,95,69,120,101,99,67, -- 111,100,101,77,111,100,117,108,101,87,105,116,104,70,105,108, -- 101,110,97,109,101,115,40,41,32,105,110,32,116,104,101,32, -- 67,32,65,80,73,46,10,10,32,32,32,32,114,84,0,0, -- 0,78,114,116,0,0,0,233,3,0,0,0,114,29,0,0, -- 0,90,2,112,121,233,253,255,255,255,233,255,255,255,255,114, -- 138,0,0,0,41,7,114,31,0,0,0,114,32,0,0,0, -- 218,5,108,111,119,101,114,114,135,0,0,0,114,124,0,0, -- 0,114,133,0,0,0,114,44,0,0,0,41,5,218,13,98, -- 121,116,101,99,111,100,101,95,112,97,116,104,90,4,114,101, -- 115,116,114,36,0,0,0,90,9,101,120,116,101,110,115,105, -- 111,110,218,11,115,111,117,114,99,101,95,112,97,116,104,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,15, -- 95,103,101,116,95,115,111,117,114,99,101,102,105,108,101,231, -- 1,0,0,115,20,0,0,0,0,7,18,1,4,1,24,1, -- 35,1,4,1,3,1,16,1,19,1,21,1,114,142,0,0, -- 0,99,1,0,0,0,0,0,0,0,2,0,0,0,11,0, -- 0,0,67,0,0,0,115,60,0,0,0,121,19,0,116,0, -- 0,124,0,0,131,1,0,106,1,0,125,1,0,87,110,24, -- 0,4,116,2,0,107,10,0,114,45,0,1,1,1,100,1, -- 0,125,1,0,89,110,1,0,88,124,1,0,100,2,0,79, -- 125,1,0,124,1,0,83,41,3,122,51,67,97,108,99,117, -- 108,97,116,101,32,116,104,101,32,109,111,100,101,32,112,101, -- 114,109,105,115,115,105,111,110,115,32,102,111,114,32,97,32, -- 98,121,116,101,99,111,100,101,32,102,105,108,101,46,105,182, -- 1,0,0,233,128,0,0,0,41,3,114,39,0,0,0,114, -- 41,0,0,0,114,40,0,0,0,41,2,114,35,0,0,0, -- 114,42,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,10,95,99,97,108,99,95,109,111,100,101, -- 250,1,0,0,115,12,0,0,0,0,2,3,1,19,1,13, -- 1,11,3,10,1,114,144,0,0,0,218,9,118,101,114,98, -- 111,115,105,116,121,114,29,0,0,0,99,1,0,0,0,1, -- 0,0,0,3,0,0,0,4,0,0,0,71,0,0,0,115, -- 81,0,0,0,116,0,0,106,1,0,106,2,0,124,1,0, -- 107,5,0,114,77,0,124,0,0,106,3,0,100,6,0,131, -- 1,0,115,46,0,100,3,0,124,0,0,23,125,0,0,110, -- 0,0,116,4,0,124,0,0,106,5,0,124,2,0,140,0, -- 0,100,4,0,116,0,0,106,6,0,131,1,1,1,110,0, -- 0,100,5,0,83,41,7,122,61,80,114,105,110,116,32,116, -- 104,101,32,109,101,115,115,97,103,101,32,116,111,32,115,116, -- 100,101,114,114,32,105,102,32,45,118,47,80,89,84,72,79, -- 78,86,69,82,66,79,83,69,32,105,115,32,116,117,114,110, -- 101,100,32,111,110,46,250,1,35,250,7,105,109,112,111,114, -- 116,32,122,2,35,32,114,54,0,0,0,78,41,2,114,146, -- 0,0,0,114,147,0,0,0,41,7,114,7,0,0,0,114, -- 117,0,0,0,218,7,118,101,114,98,111,115,101,114,9,0, -- 0,0,218,5,112,114,105,110,116,114,47,0,0,0,218,6, -- 115,116,100,101,114,114,41,3,218,7,109,101,115,115,97,103, -- 101,114,145,0,0,0,114,80,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,16,95,118,101,114, -- 98,111,115,101,95,109,101,115,115,97,103,101,6,2,0,0, -- 115,8,0,0,0,0,2,18,1,15,1,13,1,114,152,0, -- 0,0,99,1,0,0,0,0,0,0,0,2,0,0,0,4, -- 0,0,0,3,0,0,0,115,38,0,0,0,100,1,0,135, -- 0,0,102,1,0,100,2,0,100,3,0,134,1,0,125,1, -- 0,116,0,0,124,1,0,136,0,0,131,2,0,1,124,1, -- 0,83,41,4,122,252,68,101,99,111,114,97,116,111,114,32, -- 116,111,32,118,101,114,105,102,121,32,116,104,97,116,32,116, -- 104,101,32,109,111,100,117,108,101,32,98,101,105,110,103,32, -- 114,101,113,117,101,115,116,101,100,32,109,97,116,99,104,101, -- 115,32,116,104,101,32,111,110,101,32,116,104,101,10,32,32, -- 32,32,108,111,97,100,101,114,32,99,97,110,32,104,97,110, -- 100,108,101,46,10,10,32,32,32,32,84,104,101,32,102,105, -- 114,115,116,32,97,114,103,117,109,101,110,116,32,40,115,101, -- 108,102,41,32,109,117,115,116,32,100,101,102,105,110,101,32, -- 95,110,97,109,101,32,119,104,105,99,104,32,116,104,101,32, -- 115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32, -- 105,115,10,32,32,32,32,99,111,109,112,97,114,101,100,32, -- 97,103,97,105,110,115,116,46,32,73,102,32,116,104,101,32, -- 99,111,109,112,97,114,105,115,111,110,32,102,97,105,108,115, -- 32,116,104,101,110,32,73,109,112,111,114,116,69,114,114,111, -- 114,32,105,115,32,114,97,105,115,101,100,46,10,10,32,32, -- 32,32,78,99,2,0,0,0,0,0,0,0,4,0,0,0, -- 5,0,0,0,31,0,0,0,115,83,0,0,0,124,1,0, -- 100,0,0,107,8,0,114,24,0,124,0,0,106,0,0,125, -- 1,0,110,40,0,124,0,0,106,0,0,124,1,0,107,3, -- 0,114,64,0,116,1,0,100,1,0,124,1,0,22,100,2, -- 0,124,1,0,131,1,1,130,1,0,110,0,0,136,0,0, -- 124,0,0,124,1,0,124,2,0,124,3,0,142,2,0,83, -- 41,3,78,122,23,108,111,97,100,101,114,32,99,97,110,110, -- 111,116,32,104,97,110,100,108,101,32,37,115,114,67,0,0, -- 0,41,2,114,67,0,0,0,218,11,73,109,112,111,114,116, -- 69,114,114,111,114,41,4,114,71,0,0,0,114,67,0,0, -- 0,114,80,0,0,0,114,108,0,0,0,41,1,218,6,109, -- 101,116,104,111,100,114,4,0,0,0,114,5,0,0,0,218, -- 19,95,99,104,101,99,107,95,110,97,109,101,95,119,114,97, -- 112,112,101,114,22,2,0,0,115,10,0,0,0,0,1,12, -- 1,12,1,15,1,25,1,122,40,95,99,104,101,99,107,95, -- 110,97,109,101,46,60,108,111,99,97,108,115,62,46,95,99, -- 104,101,99,107,95,110,97,109,101,95,119,114,97,112,112,101, -- 114,41,1,114,65,0,0,0,41,2,114,154,0,0,0,114, -- 155,0,0,0,114,4,0,0,0,41,1,114,154,0,0,0, -- 114,5,0,0,0,218,11,95,99,104,101,99,107,95,110,97, -- 109,101,14,2,0,0,115,6,0,0,0,0,8,21,6,13, -- 1,114,156,0,0,0,99,1,0,0,0,0,0,0,0,2, -- 0,0,0,3,0,0,0,3,0,0,0,115,35,0,0,0, -- 135,0,0,102,1,0,100,1,0,100,2,0,134,0,0,125, -- 1,0,116,0,0,124,1,0,136,0,0,131,2,0,1,124, -- 1,0,83,41,3,122,49,68,101,99,111,114,97,116,111,114, -- 32,116,111,32,118,101,114,105,102,121,32,116,104,101,32,110, -- 97,109,101,100,32,109,111,100,117,108,101,32,105,115,32,98, -- 117,105,108,116,45,105,110,46,99,2,0,0,0,0,0,0, -- 0,2,0,0,0,4,0,0,0,19,0,0,0,115,58,0, -- 0,0,124,1,0,116,0,0,106,1,0,107,7,0,114,45, -- 0,116,2,0,100,1,0,106,3,0,124,1,0,131,1,0, -- 100,2,0,124,1,0,131,1,1,130,1,0,110,0,0,136, -- 0,0,124,0,0,124,1,0,131,2,0,83,41,3,78,122, -- 29,123,33,114,125,32,105,115,32,110,111,116,32,97,32,98, -- 117,105,108,116,45,105,110,32,109,111,100,117,108,101,114,67, -- 0,0,0,41,4,114,7,0,0,0,218,20,98,117,105,108, -- 116,105,110,95,109,111,100,117,108,101,95,110,97,109,101,115, -- 114,153,0,0,0,114,47,0,0,0,41,2,114,71,0,0, -- 0,218,8,102,117,108,108,110,97,109,101,41,1,218,3,102, -- 120,110,114,4,0,0,0,114,5,0,0,0,218,25,95,114, -- 101,113,117,105,114,101,115,95,98,117,105,108,116,105,110,95, -- 119,114,97,112,112,101,114,34,2,0,0,115,8,0,0,0, -- 0,1,15,1,18,1,12,1,122,52,95,114,101,113,117,105, -- 114,101,115,95,98,117,105,108,116,105,110,46,60,108,111,99, -- 97,108,115,62,46,95,114,101,113,117,105,114,101,115,95,98, -- 117,105,108,116,105,110,95,119,114,97,112,112,101,114,41,1, -- 114,65,0,0,0,41,2,114,159,0,0,0,114,160,0,0, -- 0,114,4,0,0,0,41,1,114,159,0,0,0,114,5,0, -- 0,0,218,17,95,114,101,113,117,105,114,101,115,95,98,117, -- 105,108,116,105,110,32,2,0,0,115,6,0,0,0,0,2, -- 18,5,13,1,114,161,0,0,0,99,1,0,0,0,0,0, -- 0,0,2,0,0,0,3,0,0,0,3,0,0,0,115,35, -- 0,0,0,135,0,0,102,1,0,100,1,0,100,2,0,134, -- 0,0,125,1,0,116,0,0,124,1,0,136,0,0,131,2, -- 0,1,124,1,0,83,41,3,122,47,68,101,99,111,114,97, -- 116,111,114,32,116,111,32,118,101,114,105,102,121,32,116,104, -- 101,32,110,97,109,101,100,32,109,111,100,117,108,101,32,105, -- 115,32,102,114,111,122,101,110,46,99,2,0,0,0,0,0, -- 0,0,2,0,0,0,4,0,0,0,19,0,0,0,115,58, -- 0,0,0,116,0,0,106,1,0,124,1,0,131,1,0,115, -- 45,0,116,2,0,100,1,0,106,3,0,124,1,0,131,1, -- 0,100,2,0,124,1,0,131,1,1,130,1,0,110,0,0, -- 136,0,0,124,0,0,124,1,0,131,2,0,83,41,3,78, -- 122,27,123,33,114,125,32,105,115,32,110,111,116,32,97,32, -- 102,114,111,122,101,110,32,109,111,100,117,108,101,114,67,0, -- 0,0,41,4,114,106,0,0,0,218,9,105,115,95,102,114, -- 111,122,101,110,114,153,0,0,0,114,47,0,0,0,41,2, -- 114,71,0,0,0,114,158,0,0,0,41,1,114,159,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,24,95,114,101, -- 113,117,105,114,101,115,95,102,114,111,122,101,110,95,119,114, -- 97,112,112,101,114,45,2,0,0,115,8,0,0,0,0,1, -- 15,1,18,1,12,1,122,50,95,114,101,113,117,105,114,101, -- 115,95,102,114,111,122,101,110,46,60,108,111,99,97,108,115, -- 62,46,95,114,101,113,117,105,114,101,115,95,102,114,111,122, -- 101,110,95,119,114,97,112,112,101,114,41,1,114,65,0,0, -- 0,41,2,114,159,0,0,0,114,163,0,0,0,114,4,0, -- 0,0,41,1,114,159,0,0,0,114,5,0,0,0,218,16, -- 95,114,101,113,117,105,114,101,115,95,102,114,111,122,101,110, -- 43,2,0,0,115,6,0,0,0,0,2,18,5,13,1,114, -- 164,0,0,0,99,2,0,0,0,0,0,0,0,5,0,0, -- 0,5,0,0,0,67,0,0,0,115,87,0,0,0,124,0, +- 115,32,78,111,110,101,122,37,123,125,32,110,111,116,32,98, +- 111,116,116,111,109,45,108,101,118,101,108,32,100,105,114,101, +- 99,116,111,114,121,32,105,110,32,123,33,114,125,114,58,0, +- 0,0,114,56,0,0,0,233,3,0,0,0,122,33,101,120, +- 112,101,99,116,101,100,32,111,110,108,121,32,50,32,111,114, +- 32,51,32,100,111,116,115,32,105,110,32,123,33,114,125,122, +- 57,111,112,116,105,109,105,122,97,116,105,111,110,32,112,111, +- 114,116,105,111,110,32,111,102,32,102,105,108,101,110,97,109, +- 101,32,100,111,101,115,32,110,111,116,32,115,116,97,114,116, +- 32,119,105,116,104,32,123,33,114,125,122,52,111,112,116,105, +- 109,105,122,97,116,105,111,110,32,108,101,118,101,108,32,123, +- 33,114,125,32,105,115,32,110,111,116,32,97,110,32,97,108, +- 112,104,97,110,117,109,101,114,105,99,32,118,97,108,117,101, +- 114,59,0,0,0,62,2,0,0,0,114,56,0,0,0,114, +- 80,0,0,0,233,254,255,255,255,41,17,114,7,0,0,0, +- 114,64,0,0,0,114,65,0,0,0,114,66,0,0,0,114, +- 38,0,0,0,114,73,0,0,0,114,71,0,0,0,114,47, +- 0,0,0,218,5,99,111,117,110,116,114,34,0,0,0,114, +- 9,0,0,0,114,72,0,0,0,114,31,0,0,0,114,70, +- 0,0,0,218,9,112,97,114,116,105,116,105,111,110,114,28, +- 0,0,0,218,15,83,79,85,82,67,69,95,83,85,70,70, +- 73,88,69,83,41,8,114,35,0,0,0,114,76,0,0,0, +- 90,16,112,121,99,97,99,104,101,95,102,105,108,101,110,97, +- 109,101,90,7,112,121,99,97,99,104,101,90,9,100,111,116, +- 95,99,111,117,110,116,114,57,0,0,0,90,9,111,112,116, +- 95,108,101,118,101,108,90,13,98,97,115,101,95,102,105,108, +- 101,110,97,109,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,17,115,111,117,114,99,101,95,102,114,111, +- 109,95,99,97,99,104,101,31,1,0,0,115,44,0,0,0, +- 0,9,18,1,12,1,18,1,18,1,12,1,9,1,15,1, +- 15,1,12,1,9,1,15,1,12,1,22,1,15,1,9,1, +- 12,1,22,1,12,1,9,1,12,1,19,1,114,85,0,0, +- 0,99,1,0,0,0,0,0,0,0,5,0,0,0,12,0, +- 0,0,67,0,0,0,115,164,0,0,0,116,0,0,124,0, +- 0,131,1,0,100,1,0,107,2,0,114,22,0,100,2,0, +- 83,124,0,0,106,1,0,100,3,0,131,1,0,92,3,0, +- 125,1,0,125,2,0,125,3,0,124,1,0,12,115,81,0, +- 124,3,0,106,2,0,131,0,0,100,7,0,100,8,0,133, +- 2,0,25,100,6,0,107,3,0,114,85,0,124,0,0,83, +- 121,16,0,116,3,0,124,0,0,131,1,0,125,4,0,87, +- 110,40,0,4,116,4,0,116,5,0,102,2,0,107,10,0, +- 114,143,0,1,1,1,124,0,0,100,2,0,100,9,0,133, +- 2,0,25,125,4,0,89,110,1,0,88,116,6,0,124,4, +- 0,131,1,0,114,160,0,124,4,0,83,124,0,0,83,41, +- 10,122,188,67,111,110,118,101,114,116,32,97,32,98,121,116, +- 101,99,111,100,101,32,102,105,108,101,32,112,97,116,104,32, +- 116,111,32,97,32,115,111,117,114,99,101,32,112,97,116,104, +- 32,40,105,102,32,112,111,115,115,105,98,108,101,41,46,10, +- 10,32,32,32,32,84,104,105,115,32,102,117,110,99,116,105, +- 111,110,32,101,120,105,115,116,115,32,112,117,114,101,108,121, +- 32,102,111,114,32,98,97,99,107,119,97,114,100,115,45,99, +- 111,109,112,97,116,105,98,105,108,105,116,121,32,102,111,114, +- 10,32,32,32,32,80,121,73,109,112,111,114,116,95,69,120, +- 101,99,67,111,100,101,77,111,100,117,108,101,87,105,116,104, +- 70,105,108,101,110,97,109,101,115,40,41,32,105,110,32,116, +- 104,101,32,67,32,65,80,73,46,10,10,32,32,32,32,114, +- 59,0,0,0,78,114,58,0,0,0,114,80,0,0,0,114, +- 29,0,0,0,90,2,112,121,233,253,255,255,255,233,255,255, +- 255,255,114,87,0,0,0,41,7,114,31,0,0,0,114,32, +- 0,0,0,218,5,108,111,119,101,114,114,85,0,0,0,114, +- 66,0,0,0,114,71,0,0,0,114,44,0,0,0,41,5, +- 218,13,98,121,116,101,99,111,100,101,95,112,97,116,104,114, +- 78,0,0,0,114,36,0,0,0,90,9,101,120,116,101,110, +- 115,105,111,110,218,11,115,111,117,114,99,101,95,112,97,116, +- 104,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,15,95,103,101,116,95,115,111,117,114,99,101,102,105,108, +- 101,64,1,0,0,115,20,0,0,0,0,7,18,1,4,1, +- 24,1,35,1,4,1,3,1,16,1,19,1,21,1,114,91, +- 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, +- 11,0,0,0,67,0,0,0,115,92,0,0,0,124,0,0, +- 106,0,0,116,1,0,116,2,0,131,1,0,131,1,0,114, +- 59,0,121,14,0,116,3,0,124,0,0,131,1,0,83,87, +- 113,88,0,4,116,4,0,107,10,0,114,55,0,1,1,1, +- 89,113,88,0,88,110,29,0,124,0,0,106,0,0,116,1, +- 0,116,5,0,131,1,0,131,1,0,114,84,0,124,0,0, +- 83,100,0,0,83,100,0,0,83,41,1,78,41,6,218,8, +- 101,110,100,115,119,105,116,104,218,5,116,117,112,108,101,114, +- 84,0,0,0,114,79,0,0,0,114,66,0,0,0,114,74, +- 0,0,0,41,1,218,8,102,105,108,101,110,97,109,101,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,11, +- 95,103,101,116,95,99,97,99,104,101,100,83,1,0,0,115, +- 16,0,0,0,0,1,21,1,3,1,14,1,13,1,8,1, +- 21,1,4,2,114,95,0,0,0,99,1,0,0,0,0,0, +- 0,0,2,0,0,0,11,0,0,0,67,0,0,0,115,60, +- 0,0,0,121,19,0,116,0,0,124,0,0,131,1,0,106, +- 1,0,125,1,0,87,110,24,0,4,116,2,0,107,10,0, +- 114,45,0,1,1,1,100,1,0,125,1,0,89,110,1,0, +- 88,124,1,0,100,2,0,79,125,1,0,124,1,0,83,41, +- 3,122,51,67,97,108,99,117,108,97,116,101,32,116,104,101, +- 32,109,111,100,101,32,112,101,114,109,105,115,115,105,111,110, +- 115,32,102,111,114,32,97,32,98,121,116,101,99,111,100,101, +- 32,102,105,108,101,46,105,182,1,0,0,233,128,0,0,0, +- 41,3,114,39,0,0,0,114,41,0,0,0,114,40,0,0, +- 0,41,2,114,35,0,0,0,114,42,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,99, +- 97,108,99,95,109,111,100,101,95,1,0,0,115,12,0,0, +- 0,0,2,3,1,19,1,13,1,11,3,10,1,114,97,0, +- 0,0,218,9,118,101,114,98,111,115,105,116,121,114,29,0, +- 0,0,99,1,0,0,0,1,0,0,0,3,0,0,0,4, +- 0,0,0,71,0,0,0,115,75,0,0,0,116,0,0,106, +- 1,0,106,2,0,124,1,0,107,5,0,114,71,0,124,0, +- 0,106,3,0,100,6,0,131,1,0,115,43,0,100,3,0, +- 124,0,0,23,125,0,0,116,4,0,124,0,0,106,5,0, +- 124,2,0,140,0,0,100,4,0,116,0,0,106,6,0,131, +- 1,1,1,100,5,0,83,41,7,122,61,80,114,105,110,116, +- 32,116,104,101,32,109,101,115,115,97,103,101,32,116,111,32, +- 115,116,100,101,114,114,32,105,102,32,45,118,47,80,89,84, +- 72,79,78,86,69,82,66,79,83,69,32,105,115,32,116,117, +- 114,110,101,100,32,111,110,46,250,1,35,250,7,105,109,112, +- 111,114,116,32,122,2,35,32,114,54,0,0,0,78,41,2, +- 114,99,0,0,0,114,100,0,0,0,41,7,114,7,0,0, +- 0,114,67,0,0,0,218,7,118,101,114,98,111,115,101,114, +- 9,0,0,0,218,5,112,114,105,110,116,114,47,0,0,0, +- 218,6,115,116,100,101,114,114,41,3,114,75,0,0,0,114, +- 98,0,0,0,218,4,97,114,103,115,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,16,95,118,101,114,98, +- 111,115,101,95,109,101,115,115,97,103,101,107,1,0,0,115, +- 8,0,0,0,0,2,18,1,15,1,10,1,114,105,0,0, +- 0,99,1,0,0,0,0,0,0,0,3,0,0,0,11,0, +- 0,0,3,0,0,0,115,84,0,0,0,100,1,0,135,0, +- 0,102,1,0,100,2,0,100,3,0,134,1,0,125,1,0, +- 121,13,0,116,0,0,106,1,0,125,2,0,87,110,30,0, +- 4,116,2,0,107,10,0,114,66,0,1,1,1,100,4,0, +- 100,5,0,132,0,0,125,2,0,89,110,1,0,88,124,2, +- 0,124,1,0,136,0,0,131,2,0,1,124,1,0,83,41, +- 6,122,252,68,101,99,111,114,97,116,111,114,32,116,111,32, +- 118,101,114,105,102,121,32,116,104,97,116,32,116,104,101,32, +- 109,111,100,117,108,101,32,98,101,105,110,103,32,114,101,113, +- 117,101,115,116,101,100,32,109,97,116,99,104,101,115,32,116, +- 104,101,32,111,110,101,32,116,104,101,10,32,32,32,32,108, +- 111,97,100,101,114,32,99,97,110,32,104,97,110,100,108,101, +- 46,10,10,32,32,32,32,84,104,101,32,102,105,114,115,116, +- 32,97,114,103,117,109,101,110,116,32,40,115,101,108,102,41, +- 32,109,117,115,116,32,100,101,102,105,110,101,32,95,110,97, +- 109,101,32,119,104,105,99,104,32,116,104,101,32,115,101,99, +- 111,110,100,32,97,114,103,117,109,101,110,116,32,105,115,10, +- 32,32,32,32,99,111,109,112,97,114,101,100,32,97,103,97, +- 105,110,115,116,46,32,73,102,32,116,104,101,32,99,111,109, +- 112,97,114,105,115,111,110,32,102,97,105,108,115,32,116,104, +- 101,110,32,73,109,112,111,114,116,69,114,114,111,114,32,105, +- 115,32,114,97,105,115,101,100,46,10,10,32,32,32,32,78, +- 99,2,0,0,0,0,0,0,0,4,0,0,0,5,0,0, +- 0,31,0,0,0,115,89,0,0,0,124,1,0,100,0,0, +- 107,8,0,114,24,0,124,0,0,106,0,0,125,1,0,110, +- 46,0,124,0,0,106,0,0,124,1,0,107,3,0,114,70, +- 0,116,1,0,100,1,0,124,0,0,106,0,0,124,1,0, +- 102,2,0,22,100,2,0,124,1,0,131,1,1,130,1,0, +- 136,0,0,124,0,0,124,1,0,124,2,0,124,3,0,142, +- 2,0,83,41,3,78,122,30,108,111,97,100,101,114,32,102, +- 111,114,32,37,115,32,99,97,110,110,111,116,32,104,97,110, +- 100,108,101,32,37,115,218,4,110,97,109,101,41,2,114,106, +- 0,0,0,218,11,73,109,112,111,114,116,69,114,114,111,114, +- 41,4,218,4,115,101,108,102,114,106,0,0,0,114,104,0, +- 0,0,90,6,107,119,97,114,103,115,41,1,218,6,109,101, +- 116,104,111,100,114,4,0,0,0,114,5,0,0,0,218,19, +- 95,99,104,101,99,107,95,110,97,109,101,95,119,114,97,112, +- 112,101,114,123,1,0,0,115,12,0,0,0,0,1,12,1, +- 12,1,15,1,6,1,25,1,122,40,95,99,104,101,99,107, +- 95,110,97,109,101,46,60,108,111,99,97,108,115,62,46,95, +- 99,104,101,99,107,95,110,97,109,101,95,119,114,97,112,112, +- 101,114,99,2,0,0,0,0,0,0,0,3,0,0,0,7, +- 0,0,0,83,0,0,0,115,92,0,0,0,120,66,0,100, +- 1,0,100,2,0,100,3,0,100,4,0,103,4,0,68,93, +- 46,0,125,2,0,116,0,0,124,1,0,124,2,0,131,2, +- 0,114,19,0,116,1,0,124,0,0,124,2,0,116,2,0, +- 124,1,0,124,2,0,131,2,0,131,3,0,1,113,19,0, +- 87,124,0,0,106,3,0,106,4,0,124,1,0,106,3,0, +- 131,1,0,1,100,0,0,83,41,5,78,218,10,95,95,109, +- 111,100,117,108,101,95,95,218,8,95,95,110,97,109,101,95, +- 95,218,12,95,95,113,117,97,108,110,97,109,101,95,95,218, +- 7,95,95,100,111,99,95,95,41,5,218,7,104,97,115,97, +- 116,116,114,218,7,115,101,116,97,116,116,114,218,7,103,101, +- 116,97,116,116,114,218,8,95,95,100,105,99,116,95,95,218, +- 6,117,112,100,97,116,101,41,3,90,3,110,101,119,90,3, +- 111,108,100,114,52,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,5,95,119,114,97,112,134,1, +- 0,0,115,8,0,0,0,0,1,25,1,15,1,29,1,122, +- 26,95,99,104,101,99,107,95,110,97,109,101,46,60,108,111, +- 99,97,108,115,62,46,95,119,114,97,112,41,3,218,10,95, +- 98,111,111,116,115,116,114,97,112,114,120,0,0,0,218,9, +- 78,97,109,101,69,114,114,111,114,41,3,114,109,0,0,0, +- 114,110,0,0,0,114,120,0,0,0,114,4,0,0,0,41, +- 1,114,109,0,0,0,114,5,0,0,0,218,11,95,99,104, +- 101,99,107,95,110,97,109,101,115,1,0,0,115,14,0,0, +- 0,0,8,21,7,3,1,13,1,13,2,17,5,13,1,114, +- 123,0,0,0,99,2,0,0,0,0,0,0,0,5,0,0, +- 0,4,0,0,0,67,0,0,0,115,84,0,0,0,124,0, - 0,106,0,0,124,1,0,131,1,0,92,2,0,125,2,0, -- 125,3,0,124,2,0,100,1,0,107,8,0,114,83,0,116, -- 1,0,124,3,0,131,1,0,114,83,0,100,2,0,125,4, +- 125,3,0,124,2,0,100,1,0,107,8,0,114,80,0,116, +- 1,0,124,3,0,131,1,0,114,80,0,100,2,0,125,4, - 0,116,2,0,106,3,0,124,4,0,106,4,0,124,3,0, -- 100,3,0,25,131,1,0,116,5,0,131,2,0,1,110,0, -- 0,124,2,0,83,41,4,122,155,84,114,121,32,116,111,32, -- 102,105,110,100,32,97,32,108,111,97,100,101,114,32,102,111, -- 114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, -- 109,111,100,117,108,101,32,98,121,32,100,101,108,101,103,97, -- 116,105,110,103,32,116,111,10,32,32,32,32,115,101,108,102, -- 46,102,105,110,100,95,108,111,97,100,101,114,40,41,46,10, -- 10,32,32,32,32,84,104,105,115,32,109,101,116,104,111,100, -- 32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,105, -- 110,32,102,97,118,111,114,32,111,102,32,102,105,110,100,101, -- 114,46,102,105,110,100,95,115,112,101,99,40,41,46,10,10, -- 32,32,32,32,78,122,44,78,111,116,32,105,109,112,111,114, -- 116,105,110,103,32,100,105,114,101,99,116,111,114,121,32,123, -- 125,58,32,109,105,115,115,105,110,103,32,95,95,105,110,105, -- 116,95,95,114,84,0,0,0,41,6,218,11,102,105,110,100, -- 95,108,111,97,100,101,114,114,31,0,0,0,218,9,95,119, -- 97,114,110,105,110,103,115,218,4,119,97,114,110,114,47,0, -- 0,0,218,13,73,109,112,111,114,116,87,97,114,110,105,110, -- 103,41,5,114,71,0,0,0,114,158,0,0,0,218,6,108, -- 111,97,100,101,114,218,8,112,111,114,116,105,111,110,115,218, -- 3,109,115,103,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,17,95,102,105,110,100,95,109,111,100,117,108, -- 101,95,115,104,105,109,54,2,0,0,115,10,0,0,0,0, -- 10,21,1,24,1,6,1,32,1,114,172,0,0,0,99,2, -- 0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,67, -- 0,0,0,115,93,0,0,0,116,0,0,124,1,0,124,0, -- 0,131,2,0,125,2,0,116,1,0,124,2,0,131,1,0, -- 125,3,0,124,1,0,116,2,0,106,3,0,107,6,0,114, -- 79,0,116,2,0,106,3,0,124,1,0,25,125,4,0,124, -- 3,0,106,4,0,124,4,0,131,1,0,1,116,2,0,106, -- 3,0,124,1,0,25,83,124,3,0,106,5,0,131,0,0, -- 83,100,1,0,83,41,2,122,128,76,111,97,100,32,116,104, -- 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,117, -- 108,101,32,105,110,116,111,32,115,121,115,46,109,111,100,117, -- 108,101,115,32,97,110,100,32,114,101,116,117,114,110,32,105, -- 116,46,10,10,32,32,32,32,84,104,105,115,32,109,101,116, -- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, -- 100,46,32,32,85,115,101,32,108,111,97,100,101,114,46,101, -- 120,101,99,95,109,111,100,117,108,101,32,105,110,115,116,101, -- 97,100,46,10,10,32,32,32,32,78,41,6,218,16,115,112, -- 101,99,95,102,114,111,109,95,108,111,97,100,101,114,218,12, -- 95,83,112,101,99,77,101,116,104,111,100,115,114,7,0,0, -- 0,114,73,0,0,0,218,4,101,120,101,99,218,4,108,111, -- 97,100,41,5,114,71,0,0,0,114,158,0,0,0,218,4, -- 115,112,101,99,218,7,109,101,116,104,111,100,115,218,6,109, -- 111,100,117,108,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,17,95,108,111,97,100,95,109,111,100,117, -- 108,101,95,115,104,105,109,71,2,0,0,115,14,0,0,0, -- 0,6,15,1,12,1,15,1,13,1,13,1,11,2,114,180, -- 0,0,0,99,4,0,0,0,0,0,0,0,11,0,0,0, -- 19,0,0,0,67,0,0,0,115,243,1,0,0,105,0,0, -- 125,4,0,124,2,0,100,1,0,107,9,0,114,31,0,124, -- 2,0,124,4,0,100,2,0,60,110,6,0,100,3,0,125, -- 2,0,124,3,0,100,1,0,107,9,0,114,62,0,124,3, -- 0,124,4,0,100,4,0,60,110,0,0,124,0,0,100,1, -- 0,100,5,0,133,2,0,25,125,5,0,124,0,0,100,5, -- 0,100,6,0,133,2,0,25,125,6,0,124,0,0,100,6, -- 0,100,7,0,133,2,0,25,125,7,0,124,5,0,116,0, -- 0,107,3,0,114,168,0,100,8,0,106,1,0,124,2,0, -- 124,5,0,131,2,0,125,8,0,116,2,0,124,8,0,131, -- 1,0,1,116,3,0,124,8,0,124,4,0,141,1,0,130, -- 1,0,110,116,0,116,4,0,124,6,0,131,1,0,100,5, -- 0,107,3,0,114,226,0,100,9,0,106,1,0,124,2,0, -- 131,1,0,125,8,0,116,2,0,124,8,0,131,1,0,1, -- 116,5,0,124,8,0,131,1,0,130,1,0,110,58,0,116, -- 4,0,124,7,0,131,1,0,100,5,0,107,3,0,114,28, -- 1,100,10,0,106,1,0,124,2,0,131,1,0,125,8,0, -- 116,2,0,124,8,0,131,1,0,1,116,5,0,124,8,0, -- 131,1,0,130,1,0,110,0,0,124,1,0,100,1,0,107, -- 9,0,114,229,1,121,20,0,116,6,0,124,1,0,100,11, -- 0,25,131,1,0,125,9,0,87,110,18,0,4,116,7,0, -- 107,10,0,114,80,1,1,1,1,89,110,62,0,88,116,8, -- 0,124,6,0,131,1,0,124,9,0,107,3,0,114,142,1, -- 100,12,0,106,1,0,124,2,0,131,1,0,125,8,0,116, -- 2,0,124,8,0,131,1,0,1,116,3,0,124,8,0,124, -- 4,0,141,1,0,130,1,0,110,0,0,121,18,0,124,1, -- 0,100,13,0,25,100,14,0,64,125,10,0,87,110,18,0, -- 4,116,7,0,107,10,0,114,180,1,1,1,1,89,113,229, -- 1,88,116,8,0,124,7,0,131,1,0,124,10,0,107,3, -- 0,114,229,1,116,3,0,100,12,0,106,1,0,124,2,0, -- 131,1,0,124,4,0,141,1,0,130,1,0,113,229,1,110, -- 0,0,124,0,0,100,7,0,100,1,0,133,2,0,25,83, -- 41,15,97,122,1,0,0,86,97,108,105,100,97,116,101,32, -- 116,104,101,32,104,101,97,100,101,114,32,111,102,32,116,104, -- 101,32,112,97,115,115,101,100,45,105,110,32,98,121,116,101, -- 99,111,100,101,32,97,103,97,105,110,115,116,32,115,111,117, -- 114,99,101,95,115,116,97,116,115,32,40,105,102,10,32,32, -- 32,32,103,105,118,101,110,41,32,97,110,100,32,114,101,116, -- 117,114,110,105,110,103,32,116,104,101,32,98,121,116,101,99, -- 111,100,101,32,116,104,97,116,32,99,97,110,32,98,101,32, -- 99,111,109,112,105,108,101,100,32,98,121,32,99,111,109,112, -- 105,108,101,40,41,46,10,10,32,32,32,32,65,108,108,32, -- 111,116,104,101,114,32,97,114,103,117,109,101,110,116,115,32, -- 97,114,101,32,117,115,101,100,32,116,111,32,101,110,104,97, -- 110,99,101,32,101,114,114,111,114,32,114,101,112,111,114,116, -- 105,110,103,46,10,10,32,32,32,32,73,109,112,111,114,116, -- 69,114,114,111,114,32,105,115,32,114,97,105,115,101,100,32, -- 119,104,101,110,32,116,104,101,32,109,97,103,105,99,32,110, -- 117,109,98,101,114,32,105,115,32,105,110,99,111,114,114,101, -- 99,116,32,111,114,32,116,104,101,32,98,121,116,101,99,111, -- 100,101,32,105,115,10,32,32,32,32,102,111,117,110,100,32, -- 116,111,32,98,101,32,115,116,97,108,101,46,32,69,79,70, -- 69,114,114,111,114,32,105,115,32,114,97,105,115,101,100,32, -- 119,104,101,110,32,116,104,101,32,100,97,116,97,32,105,115, -- 32,102,111,117,110,100,32,116,111,32,98,101,10,32,32,32, -- 32,116,114,117,110,99,97,116,101,100,46,10,10,32,32,32, -- 32,78,114,67,0,0,0,122,10,60,98,121,116,101,99,111, -- 100,101,62,114,35,0,0,0,114,12,0,0,0,233,8,0, -- 0,0,233,12,0,0,0,122,30,98,97,100,32,109,97,103, -- 105,99,32,110,117,109,98,101,114,32,105,110,32,123,33,114, -- 125,58,32,123,33,114,125,122,43,114,101,97,99,104,101,100, -- 32,69,79,70,32,119,104,105,108,101,32,114,101,97,100,105, -- 110,103,32,116,105,109,101,115,116,97,109,112,32,105,110,32, -- 123,33,114,125,122,48,114,101,97,99,104,101,100,32,69,79, -- 70,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32, -- 115,105,122,101,32,111,102,32,115,111,117,114,99,101,32,105, -- 110,32,123,33,114,125,218,5,109,116,105,109,101,122,26,98, -- 121,116,101,99,111,100,101,32,105,115,32,115,116,97,108,101, -- 32,102,111,114,32,123,33,114,125,218,4,115,105,122,101,108, -- 3,0,0,0,255,127,255,127,3,0,41,9,218,12,77,65, -- 71,73,67,95,78,85,77,66,69,82,114,47,0,0,0,114, -- 152,0,0,0,114,153,0,0,0,114,31,0,0,0,218,8, -- 69,79,70,69,114,114,111,114,114,14,0,0,0,114,79,0, -- 0,0,114,19,0,0,0,41,11,114,53,0,0,0,218,12, -- 115,111,117,114,99,101,95,115,116,97,116,115,114,67,0,0, -- 0,114,35,0,0,0,90,11,101,120,99,95,100,101,116,97, -- 105,108,115,90,5,109,97,103,105,99,90,13,114,97,119,95, -- 116,105,109,101,115,116,97,109,112,90,8,114,97,119,95,115, -- 105,122,101,114,151,0,0,0,218,12,115,111,117,114,99,101, -- 95,109,116,105,109,101,218,11,115,111,117,114,99,101,95,115, -- 105,122,101,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,218,25,95,118,97,108,105,100,97,116,101,95,98,121, -- 116,101,99,111,100,101,95,104,101,97,100,101,114,87,2,0, -- 0,115,76,0,0,0,0,11,6,1,12,1,13,3,6,1, -- 12,1,13,1,16,1,16,1,16,1,12,1,18,1,10,1, -- 18,1,18,1,15,1,10,1,15,1,18,1,15,1,10,1, -- 15,1,12,1,3,1,20,1,13,1,5,2,18,1,15,1, -- 10,1,18,1,3,1,18,1,13,1,5,2,18,1,15,1, -- 15,1,114,190,0,0,0,99,4,0,0,0,0,0,0,0, -- 5,0,0,0,6,0,0,0,67,0,0,0,115,115,0,0, -- 0,116,0,0,106,1,0,124,0,0,131,1,0,125,4,0, -- 116,2,0,124,4,0,116,3,0,131,2,0,114,78,0,116, -- 4,0,100,1,0,124,2,0,131,2,0,1,124,3,0,100, -- 2,0,107,9,0,114,74,0,116,5,0,106,6,0,124,4, -- 0,124,3,0,131,2,0,1,110,0,0,124,4,0,83,116, -- 7,0,100,3,0,106,8,0,124,2,0,131,1,0,100,4, -- 0,124,1,0,100,5,0,124,2,0,131,1,2,130,1,0, -- 100,2,0,83,41,6,122,60,67,111,109,112,105,108,101,32, -- 98,121,116,101,99,111,100,101,32,97,115,32,114,101,116,117, -- 114,110,101,100,32,98,121,32,95,118,97,108,105,100,97,116, -- 101,95,98,121,116,101,99,111,100,101,95,104,101,97,100,101, -- 114,40,41,46,122,21,99,111,100,101,32,111,98,106,101,99, -- 116,32,102,114,111,109,32,123,33,114,125,78,122,23,78,111, -- 110,45,99,111,100,101,32,111,98,106,101,99,116,32,105,110, -- 32,123,33,114,125,114,67,0,0,0,114,35,0,0,0,41, -- 9,218,7,109,97,114,115,104,97,108,90,5,108,111,97,100, -- 115,218,10,105,115,105,110,115,116,97,110,99,101,218,10,95, -- 99,111,100,101,95,116,121,112,101,114,152,0,0,0,114,106, -- 0,0,0,90,16,95,102,105,120,95,99,111,95,102,105,108, -- 101,110,97,109,101,114,153,0,0,0,114,47,0,0,0,41, -- 5,114,53,0,0,0,114,67,0,0,0,114,140,0,0,0, -- 114,141,0,0,0,218,4,99,111,100,101,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,17,95,99,111,109, -- 112,105,108,101,95,98,121,116,101,99,111,100,101,142,2,0, -- 0,115,16,0,0,0,0,2,15,1,15,1,13,1,12,1, -- 19,1,4,2,18,1,114,195,0,0,0,114,84,0,0,0, -- 99,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0, -- 0,67,0,0,0,115,76,0,0,0,116,0,0,116,1,0, -- 131,1,0,125,3,0,124,3,0,106,2,0,116,3,0,124, -- 1,0,131,1,0,131,1,0,1,124,3,0,106,2,0,116, -- 3,0,124,2,0,131,1,0,131,1,0,1,124,3,0,106, -- 2,0,116,4,0,106,5,0,124,0,0,131,1,0,131,1, -- 0,1,124,3,0,83,41,1,122,80,67,111,109,112,105,108, -- 101,32,97,32,99,111,100,101,32,111,98,106,101,99,116,32, -- 105,110,116,111,32,98,121,116,101,99,111,100,101,32,102,111, -- 114,32,119,114,105,116,105,110,103,32,111,117,116,32,116,111, -- 32,97,32,98,121,116,101,45,99,111,109,112,105,108,101,100, -- 10,32,32,32,32,102,105,108,101,46,41,6,218,9,98,121, -- 116,101,97,114,114,97,121,114,185,0,0,0,218,6,101,120, -- 116,101,110,100,114,17,0,0,0,114,191,0,0,0,90,5, -- 100,117,109,112,115,41,4,114,194,0,0,0,114,183,0,0, -- 0,114,189,0,0,0,114,53,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,17,95,99,111,100, -- 101,95,116,111,95,98,121,116,101,99,111,100,101,154,2,0, -- 0,115,10,0,0,0,0,3,12,1,19,1,19,1,22,1, -- 114,198,0,0,0,99,1,0,0,0,0,0,0,0,5,0, -- 0,0,4,0,0,0,67,0,0,0,115,89,0,0,0,100, -- 1,0,100,2,0,108,0,0,125,1,0,116,1,0,106,2, -- 0,124,0,0,131,1,0,106,3,0,125,2,0,124,1,0, -- 106,4,0,124,2,0,131,1,0,125,3,0,116,1,0,106, -- 5,0,100,2,0,100,3,0,131,2,0,125,4,0,124,4, -- 0,106,6,0,124,0,0,106,6,0,124,3,0,100,1,0, -- 25,131,1,0,131,1,0,83,41,4,122,121,68,101,99,111, -- 100,101,32,98,121,116,101,115,32,114,101,112,114,101,115,101, -- 110,116,105,110,103,32,115,111,117,114,99,101,32,99,111,100, -- 101,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101, -- 32,115,116,114,105,110,103,46,10,10,32,32,32,32,85,110, -- 105,118,101,114,115,97,108,32,110,101,119,108,105,110,101,32, -- 115,117,112,112,111,114,116,32,105,115,32,117,115,101,100,32, -- 105,110,32,116,104,101,32,100,101,99,111,100,105,110,103,46, -- 10,32,32,32,32,114,84,0,0,0,78,84,41,7,218,8, -- 116,111,107,101,110,105,122,101,114,49,0,0,0,90,7,66, -- 121,116,101,115,73,79,90,8,114,101,97,100,108,105,110,101, -- 90,15,100,101,116,101,99,116,95,101,110,99,111,100,105,110, -- 103,90,25,73,110,99,114,101,109,101,110,116,97,108,78,101, -- 119,108,105,110,101,68,101,99,111,100,101,114,218,6,100,101, -- 99,111,100,101,41,5,218,12,115,111,117,114,99,101,95,98, -- 121,116,101,115,114,199,0,0,0,90,21,115,111,117,114,99, -- 101,95,98,121,116,101,115,95,114,101,97,100,108,105,110,101, -- 218,8,101,110,99,111,100,105,110,103,90,15,110,101,119,108, -- 105,110,101,95,100,101,99,111,100,101,114,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,13,100,101,99,111, -- 100,101,95,115,111,117,114,99,101,164,2,0,0,115,10,0, -- 0,0,0,5,12,1,18,1,15,1,18,1,114,203,0,0, -- 0,99,1,0,0,0,0,0,0,0,5,0,0,0,35,0, -- 0,0,67,0,0,0,115,15,1,0,0,116,0,0,124,0, -- 0,100,1,0,100,0,0,131,3,0,125,1,0,116,1,0, -- 124,1,0,100,2,0,131,2,0,114,74,0,121,17,0,124, -- 1,0,106,2,0,124,0,0,131,1,0,83,87,113,74,0, -- 4,116,3,0,107,10,0,114,70,0,1,1,1,89,113,74, -- 0,88,110,0,0,121,13,0,124,0,0,106,4,0,125,2, -- 0,87,110,18,0,4,116,5,0,107,10,0,114,107,0,1, -- 1,1,89,110,29,0,88,124,2,0,100,0,0,107,9,0, -- 114,136,0,116,6,0,124,2,0,131,1,0,106,2,0,131, -- 0,0,83,121,13,0,124,0,0,106,7,0,125,3,0,87, -- 110,24,0,4,116,5,0,107,10,0,114,175,0,1,1,1, -- 100,3,0,125,3,0,89,110,1,0,88,121,13,0,124,0, -- 0,106,8,0,125,4,0,87,110,59,0,4,116,5,0,107, -- 10,0,114,250,0,1,1,1,124,1,0,100,0,0,107,8, -- 0,114,230,0,100,4,0,106,9,0,124,3,0,131,1,0, -- 83,100,5,0,106,9,0,124,3,0,124,1,0,131,2,0, -- 83,89,110,17,0,88,100,6,0,106,9,0,124,3,0,124, -- 4,0,131,2,0,83,100,0,0,83,41,7,78,218,10,95, -- 95,108,111,97,100,101,114,95,95,218,11,109,111,100,117,108, -- 101,95,114,101,112,114,250,1,63,122,13,60,109,111,100,117, -- 108,101,32,123,33,114,125,62,122,20,60,109,111,100,117,108, -- 101,32,123,33,114,125,32,40,123,33,114,125,41,62,122,23, -- 60,109,111,100,117,108,101,32,123,33,114,125,32,102,114,111, -- 109,32,123,33,114,125,62,41,10,114,62,0,0,0,114,60, -- 0,0,0,114,205,0,0,0,218,9,69,120,99,101,112,116, -- 105,111,110,218,8,95,95,115,112,101,99,95,95,218,14,65, -- 116,116,114,105,98,117,116,101,69,114,114,111,114,114,174,0, -- 0,0,114,57,0,0,0,218,8,95,95,102,105,108,101,95, -- 95,114,47,0,0,0,41,5,114,179,0,0,0,114,169,0, -- 0,0,114,177,0,0,0,114,67,0,0,0,114,131,0,0, +- 100,3,0,25,131,1,0,116,5,0,131,2,0,1,124,2, +- 0,83,41,4,122,155,84,114,121,32,116,111,32,102,105,110, +- 100,32,97,32,108,111,97,100,101,114,32,102,111,114,32,116, +- 104,101,32,115,112,101,99,105,102,105,101,100,32,109,111,100, +- 117,108,101,32,98,121,32,100,101,108,101,103,97,116,105,110, +- 103,32,116,111,10,32,32,32,32,115,101,108,102,46,102,105, +- 110,100,95,108,111,97,100,101,114,40,41,46,10,10,32,32, +- 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115, +- 32,100,101,112,114,101,99,97,116,101,100,32,105,110,32,102, +- 97,118,111,114,32,111,102,32,102,105,110,100,101,114,46,102, +- 105,110,100,95,115,112,101,99,40,41,46,10,10,32,32,32, +- 32,78,122,44,78,111,116,32,105,109,112,111,114,116,105,110, +- 103,32,100,105,114,101,99,116,111,114,121,32,123,125,58,32, +- 109,105,115,115,105,110,103,32,95,95,105,110,105,116,95,95, +- 114,59,0,0,0,41,6,218,11,102,105,110,100,95,108,111, +- 97,100,101,114,114,31,0,0,0,114,60,0,0,0,114,61, +- 0,0,0,114,47,0,0,0,218,13,73,109,112,111,114,116, +- 87,97,114,110,105,110,103,41,5,114,108,0,0,0,218,8, +- 102,117,108,108,110,97,109,101,218,6,108,111,97,100,101,114, +- 218,8,112,111,114,116,105,111,110,115,218,3,109,115,103,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,17, +- 95,102,105,110,100,95,109,111,100,117,108,101,95,115,104,105, +- 109,143,1,0,0,115,10,0,0,0,0,10,21,1,24,1, +- 6,1,29,1,114,130,0,0,0,99,4,0,0,0,0,0, +- 0,0,11,0,0,0,19,0,0,0,67,0,0,0,115,240, +- 1,0,0,105,0,0,125,4,0,124,2,0,100,1,0,107, +- 9,0,114,31,0,124,2,0,124,4,0,100,2,0,60,110, +- 6,0,100,3,0,125,2,0,124,3,0,100,1,0,107,9, +- 0,114,59,0,124,3,0,124,4,0,100,4,0,60,124,0, +- 0,100,1,0,100,5,0,133,2,0,25,125,5,0,124,0, +- 0,100,5,0,100,6,0,133,2,0,25,125,6,0,124,0, +- 0,100,6,0,100,7,0,133,2,0,25,125,7,0,124,5, +- 0,116,0,0,107,3,0,114,168,0,100,8,0,106,1,0, +- 124,2,0,124,5,0,131,2,0,125,8,0,116,2,0,100, +- 9,0,124,8,0,131,2,0,1,116,3,0,124,8,0,124, +- 4,0,141,1,0,130,1,0,110,119,0,116,4,0,124,6, +- 0,131,1,0,100,5,0,107,3,0,114,229,0,100,10,0, +- 106,1,0,124,2,0,131,1,0,125,8,0,116,2,0,100, +- 9,0,124,8,0,131,2,0,1,116,5,0,124,8,0,131, +- 1,0,130,1,0,110,58,0,116,4,0,124,7,0,131,1, +- 0,100,5,0,107,3,0,114,31,1,100,11,0,106,1,0, +- 124,2,0,131,1,0,125,8,0,116,2,0,100,9,0,124, +- 8,0,131,2,0,1,116,5,0,124,8,0,131,1,0,130, +- 1,0,124,1,0,100,1,0,107,9,0,114,226,1,121,20, +- 0,116,6,0,124,1,0,100,12,0,25,131,1,0,125,9, +- 0,87,110,18,0,4,116,7,0,107,10,0,114,83,1,1, +- 1,1,89,110,62,0,88,116,8,0,124,6,0,131,1,0, +- 124,9,0,107,3,0,114,145,1,100,13,0,106,1,0,124, +- 2,0,131,1,0,125,8,0,116,2,0,100,9,0,124,8, +- 0,131,2,0,1,116,3,0,124,8,0,124,4,0,141,1, +- 0,130,1,0,121,18,0,124,1,0,100,14,0,25,100,15, +- 0,64,125,10,0,87,110,18,0,4,116,7,0,107,10,0, +- 114,183,1,1,1,1,89,110,43,0,88,116,8,0,124,7, +- 0,131,1,0,124,10,0,107,3,0,114,226,1,116,3,0, +- 100,13,0,106,1,0,124,2,0,131,1,0,124,4,0,141, +- 1,0,130,1,0,124,0,0,100,7,0,100,1,0,133,2, +- 0,25,83,41,16,97,122,1,0,0,86,97,108,105,100,97, +- 116,101,32,116,104,101,32,104,101,97,100,101,114,32,111,102, +- 32,116,104,101,32,112,97,115,115,101,100,45,105,110,32,98, +- 121,116,101,99,111,100,101,32,97,103,97,105,110,115,116,32, +- 115,111,117,114,99,101,95,115,116,97,116,115,32,40,105,102, +- 10,32,32,32,32,103,105,118,101,110,41,32,97,110,100,32, +- 114,101,116,117,114,110,105,110,103,32,116,104,101,32,98,121, +- 116,101,99,111,100,101,32,116,104,97,116,32,99,97,110,32, +- 98,101,32,99,111,109,112,105,108,101,100,32,98,121,32,99, +- 111,109,112,105,108,101,40,41,46,10,10,32,32,32,32,65, +- 108,108,32,111,116,104,101,114,32,97,114,103,117,109,101,110, +- 116,115,32,97,114,101,32,117,115,101,100,32,116,111,32,101, +- 110,104,97,110,99,101,32,101,114,114,111,114,32,114,101,112, +- 111,114,116,105,110,103,46,10,10,32,32,32,32,73,109,112, +- 111,114,116,69,114,114,111,114,32,105,115,32,114,97,105,115, +- 101,100,32,119,104,101,110,32,116,104,101,32,109,97,103,105, +- 99,32,110,117,109,98,101,114,32,105,115,32,105,110,99,111, +- 114,114,101,99,116,32,111,114,32,116,104,101,32,98,121,116, +- 101,99,111,100,101,32,105,115,10,32,32,32,32,102,111,117, +- 110,100,32,116,111,32,98,101,32,115,116,97,108,101,46,32, +- 69,79,70,69,114,114,111,114,32,105,115,32,114,97,105,115, +- 101,100,32,119,104,101,110,32,116,104,101,32,100,97,116,97, +- 32,105,115,32,102,111,117,110,100,32,116,111,32,98,101,10, +- 32,32,32,32,116,114,117,110,99,97,116,101,100,46,10,10, +- 32,32,32,32,78,114,106,0,0,0,122,10,60,98,121,116, +- 101,99,111,100,101,62,114,35,0,0,0,114,12,0,0,0, +- 233,8,0,0,0,233,12,0,0,0,122,30,98,97,100,32, +- 109,97,103,105,99,32,110,117,109,98,101,114,32,105,110,32, +- 123,33,114,125,58,32,123,33,114,125,122,2,123,125,122,43, +- 114,101,97,99,104,101,100,32,69,79,70,32,119,104,105,108, +- 101,32,114,101,97,100,105,110,103,32,116,105,109,101,115,116, +- 97,109,112,32,105,110,32,123,33,114,125,122,48,114,101,97, +- 99,104,101,100,32,69,79,70,32,119,104,105,108,101,32,114, +- 101,97,100,105,110,103,32,115,105,122,101,32,111,102,32,115, +- 111,117,114,99,101,32,105,110,32,123,33,114,125,218,5,109, +- 116,105,109,101,122,26,98,121,116,101,99,111,100,101,32,105, +- 115,32,115,116,97,108,101,32,102,111,114,32,123,33,114,125, +- 218,4,115,105,122,101,108,3,0,0,0,255,127,255,127,3, +- 0,41,9,218,12,77,65,71,73,67,95,78,85,77,66,69, +- 82,114,47,0,0,0,114,105,0,0,0,114,107,0,0,0, +- 114,31,0,0,0,218,8,69,79,70,69,114,114,111,114,114, +- 14,0,0,0,218,8,75,101,121,69,114,114,111,114,114,19, +- 0,0,0,41,11,114,53,0,0,0,218,12,115,111,117,114, +- 99,101,95,115,116,97,116,115,114,106,0,0,0,114,35,0, +- 0,0,90,11,101,120,99,95,100,101,116,97,105,108,115,90, +- 5,109,97,103,105,99,90,13,114,97,119,95,116,105,109,101, +- 115,116,97,109,112,90,8,114,97,119,95,115,105,122,101,114, +- 75,0,0,0,218,12,115,111,117,114,99,101,95,109,116,105, +- 109,101,218,11,115,111,117,114,99,101,95,115,105,122,101,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,25, +- 95,118,97,108,105,100,97,116,101,95,98,121,116,101,99,111, +- 100,101,95,104,101,97,100,101,114,160,1,0,0,115,76,0, +- 0,0,0,11,6,1,12,1,13,3,6,1,12,1,10,1, +- 16,1,16,1,16,1,12,1,18,1,13,1,18,1,18,1, +- 15,1,13,1,15,1,18,1,15,1,13,1,12,1,12,1, +- 3,1,20,1,13,1,5,2,18,1,15,1,13,1,15,1, +- 3,1,18,1,13,1,5,2,18,1,15,1,9,1,114,141, +- 0,0,0,99,4,0,0,0,0,0,0,0,5,0,0,0, +- 6,0,0,0,67,0,0,0,115,112,0,0,0,116,0,0, +- 106,1,0,124,0,0,131,1,0,125,4,0,116,2,0,124, +- 4,0,116,3,0,131,2,0,114,75,0,116,4,0,100,1, +- 0,124,2,0,131,2,0,1,124,3,0,100,2,0,107,9, +- 0,114,71,0,116,5,0,106,6,0,124,4,0,124,3,0, +- 131,2,0,1,124,4,0,83,116,7,0,100,3,0,106,8, +- 0,124,2,0,131,1,0,100,4,0,124,1,0,100,5,0, +- 124,2,0,131,1,2,130,1,0,100,2,0,83,41,6,122, +- 60,67,111,109,112,105,108,101,32,98,121,116,101,99,111,100, +- 101,32,97,115,32,114,101,116,117,114,110,101,100,32,98,121, +- 32,95,118,97,108,105,100,97,116,101,95,98,121,116,101,99, +- 111,100,101,95,104,101,97,100,101,114,40,41,46,122,21,99, +- 111,100,101,32,111,98,106,101,99,116,32,102,114,111,109,32, +- 123,33,114,125,78,122,23,78,111,110,45,99,111,100,101,32, +- 111,98,106,101,99,116,32,105,110,32,123,33,114,125,114,106, +- 0,0,0,114,35,0,0,0,41,9,218,7,109,97,114,115, +- 104,97,108,90,5,108,111,97,100,115,218,10,105,115,105,110, +- 115,116,97,110,99,101,218,10,95,99,111,100,101,95,116,121, +- 112,101,114,105,0,0,0,218,4,95,105,109,112,90,16,95, +- 102,105,120,95,99,111,95,102,105,108,101,110,97,109,101,114, +- 107,0,0,0,114,47,0,0,0,41,5,114,53,0,0,0, +- 114,106,0,0,0,114,89,0,0,0,114,90,0,0,0,218, +- 4,99,111,100,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,17,95,99,111,109,112,105,108,101,95,98, +- 121,116,101,99,111,100,101,215,1,0,0,115,16,0,0,0, +- 0,2,15,1,15,1,13,1,12,1,16,1,4,2,18,1, +- 114,147,0,0,0,114,59,0,0,0,99,3,0,0,0,0, +- 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, +- 76,0,0,0,116,0,0,116,1,0,131,1,0,125,3,0, +- 124,3,0,106,2,0,116,3,0,124,1,0,131,1,0,131, +- 1,0,1,124,3,0,106,2,0,116,3,0,124,2,0,131, +- 1,0,131,1,0,1,124,3,0,106,2,0,116,4,0,106, +- 5,0,124,0,0,131,1,0,131,1,0,1,124,3,0,83, +- 41,1,122,80,67,111,109,112,105,108,101,32,97,32,99,111, +- 100,101,32,111,98,106,101,99,116,32,105,110,116,111,32,98, +- 121,116,101,99,111,100,101,32,102,111,114,32,119,114,105,116, +- 105,110,103,32,111,117,116,32,116,111,32,97,32,98,121,116, +- 101,45,99,111,109,112,105,108,101,100,10,32,32,32,32,102, +- 105,108,101,46,41,6,218,9,98,121,116,101,97,114,114,97, +- 121,114,135,0,0,0,218,6,101,120,116,101,110,100,114,17, +- 0,0,0,114,142,0,0,0,90,5,100,117,109,112,115,41, +- 4,114,146,0,0,0,114,133,0,0,0,114,140,0,0,0, +- 114,53,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,17,95,99,111,100,101,95,116,111,95,98, +- 121,116,101,99,111,100,101,227,1,0,0,115,10,0,0,0, +- 0,3,12,1,19,1,19,1,22,1,114,150,0,0,0,99, +- 1,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0, +- 67,0,0,0,115,89,0,0,0,100,1,0,100,2,0,108, +- 0,0,125,1,0,116,1,0,106,2,0,124,0,0,131,1, +- 0,106,3,0,125,2,0,124,1,0,106,4,0,124,2,0, +- 131,1,0,125,3,0,116,1,0,106,5,0,100,2,0,100, +- 3,0,131,2,0,125,4,0,124,4,0,106,6,0,124,0, +- 0,106,6,0,124,3,0,100,1,0,25,131,1,0,131,1, +- 0,83,41,4,122,121,68,101,99,111,100,101,32,98,121,116, +- 101,115,32,114,101,112,114,101,115,101,110,116,105,110,103,32, +- 115,111,117,114,99,101,32,99,111,100,101,32,97,110,100,32, +- 114,101,116,117,114,110,32,116,104,101,32,115,116,114,105,110, +- 103,46,10,10,32,32,32,32,85,110,105,118,101,114,115,97, +- 108,32,110,101,119,108,105,110,101,32,115,117,112,112,111,114, +- 116,32,105,115,32,117,115,101,100,32,105,110,32,116,104,101, +- 32,100,101,99,111,100,105,110,103,46,10,32,32,32,32,114, +- 59,0,0,0,78,84,41,7,218,8,116,111,107,101,110,105, +- 122,101,114,49,0,0,0,90,7,66,121,116,101,115,73,79, +- 90,8,114,101,97,100,108,105,110,101,90,15,100,101,116,101, +- 99,116,95,101,110,99,111,100,105,110,103,90,25,73,110,99, +- 114,101,109,101,110,116,97,108,78,101,119,108,105,110,101,68, +- 101,99,111,100,101,114,218,6,100,101,99,111,100,101,41,5, +- 218,12,115,111,117,114,99,101,95,98,121,116,101,115,114,151, +- 0,0,0,90,21,115,111,117,114,99,101,95,98,121,116,101, +- 115,95,114,101,97,100,108,105,110,101,218,8,101,110,99,111, +- 100,105,110,103,90,15,110,101,119,108,105,110,101,95,100,101, +- 99,111,100,101,114,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,13,100,101,99,111,100,101,95,115,111,117, +- 114,99,101,237,1,0,0,115,10,0,0,0,0,5,12,1, +- 18,1,15,1,18,1,114,155,0,0,0,114,127,0,0,0, +- 218,26,115,117,98,109,111,100,117,108,101,95,115,101,97,114, +- 99,104,95,108,111,99,97,116,105,111,110,115,99,2,0,0, +- 0,2,0,0,0,9,0,0,0,19,0,0,0,67,0,0, +- 0,115,89,1,0,0,124,1,0,100,1,0,107,8,0,114, +- 73,0,100,2,0,125,1,0,116,0,0,124,2,0,100,3, +- 0,131,2,0,114,73,0,121,19,0,124,2,0,106,1,0, +- 124,0,0,131,1,0,125,1,0,87,110,18,0,4,116,2, +- 0,107,10,0,114,72,0,1,1,1,89,110,1,0,88,116, +- 3,0,106,4,0,124,0,0,124,2,0,100,4,0,124,1, +- 0,131,2,1,125,4,0,100,5,0,124,4,0,95,5,0, +- 124,2,0,100,1,0,107,8,0,114,194,0,120,73,0,116, +- 6,0,131,0,0,68,93,58,0,92,2,0,125,5,0,125, +- 6,0,124,1,0,106,7,0,116,8,0,124,6,0,131,1, +- 0,131,1,0,114,128,0,124,5,0,124,0,0,124,1,0, +- 131,2,0,125,2,0,124,2,0,124,4,0,95,9,0,80, +- 113,128,0,87,100,1,0,83,124,3,0,116,10,0,107,8, +- 0,114,23,1,116,0,0,124,2,0,100,6,0,131,2,0, +- 114,32,1,121,19,0,124,2,0,106,11,0,124,0,0,131, +- 1,0,125,7,0,87,110,18,0,4,116,2,0,107,10,0, +- 114,4,1,1,1,1,89,113,32,1,88,124,7,0,114,32, +- 1,103,0,0,124,4,0,95,12,0,110,9,0,124,3,0, +- 124,4,0,95,12,0,124,4,0,106,12,0,103,0,0,107, +- 2,0,114,85,1,124,1,0,114,85,1,116,13,0,124,1, +- 0,131,1,0,100,7,0,25,125,8,0,124,4,0,106,12, +- 0,106,14,0,124,8,0,131,1,0,1,124,4,0,83,41, +- 8,97,61,1,0,0,82,101,116,117,114,110,32,97,32,109, +- 111,100,117,108,101,32,115,112,101,99,32,98,97,115,101,100, +- 32,111,110,32,97,32,102,105,108,101,32,108,111,99,97,116, +- 105,111,110,46,10,10,32,32,32,32,84,111,32,105,110,100, +- 105,99,97,116,101,32,116,104,97,116,32,116,104,101,32,109, +- 111,100,117,108,101,32,105,115,32,97,32,112,97,99,107,97, +- 103,101,44,32,115,101,116,10,32,32,32,32,115,117,98,109, +- 111,100,117,108,101,95,115,101,97,114,99,104,95,108,111,99, +- 97,116,105,111,110,115,32,116,111,32,97,32,108,105,115,116, +- 32,111,102,32,100,105,114,101,99,116,111,114,121,32,112,97, +- 116,104,115,46,32,32,65,110,10,32,32,32,32,101,109,112, +- 116,121,32,108,105,115,116,32,105,115,32,115,117,102,102,105, +- 99,105,101,110,116,44,32,116,104,111,117,103,104,32,105,116, +- 115,32,110,111,116,32,111,116,104,101,114,119,105,115,101,32, +- 117,115,101,102,117,108,32,116,111,32,116,104,101,10,32,32, +- 32,32,105,109,112,111,114,116,32,115,121,115,116,101,109,46, +- 10,10,32,32,32,32,84,104,101,32,108,111,97,100,101,114, +- 32,109,117,115,116,32,116,97,107,101,32,97,32,115,112,101, +- 99,32,97,115,32,105,116,115,32,111,110,108,121,32,95,95, +- 105,110,105,116,95,95,40,41,32,97,114,103,46,10,10,32, +- 32,32,32,78,122,9,60,117,110,107,110,111,119,110,62,218, +- 12,103,101,116,95,102,105,108,101,110,97,109,101,218,6,111, +- 114,105,103,105,110,84,218,10,105,115,95,112,97,99,107,97, +- 103,101,114,59,0,0,0,41,15,114,115,0,0,0,114,157, +- 0,0,0,114,107,0,0,0,114,121,0,0,0,218,10,77, +- 111,100,117,108,101,83,112,101,99,90,13,95,115,101,116,95, +- 102,105,108,101,97,116,116,114,218,27,95,103,101,116,95,115, +- 117,112,112,111,114,116,101,100,95,102,105,108,101,95,108,111, +- 97,100,101,114,115,114,92,0,0,0,114,93,0,0,0,114, +- 127,0,0,0,218,9,95,80,79,80,85,76,65,84,69,114, +- 159,0,0,0,114,156,0,0,0,114,38,0,0,0,218,6, +- 97,112,112,101,110,100,41,9,114,106,0,0,0,90,8,108, +- 111,99,97,116,105,111,110,114,127,0,0,0,114,156,0,0, +- 0,218,4,115,112,101,99,218,12,108,111,97,100,101,114,95, +- 99,108,97,115,115,218,8,115,117,102,102,105,120,101,115,114, +- 159,0,0,0,90,7,100,105,114,110,97,109,101,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,23,115,112, +- 101,99,95,102,114,111,109,95,102,105,108,101,95,108,111,99, +- 97,116,105,111,110,254,1,0,0,115,60,0,0,0,0,12, +- 12,4,6,1,15,2,3,1,19,1,13,1,5,8,24,1, +- 9,3,12,1,22,1,21,1,15,1,9,1,5,2,4,3, +- 12,2,15,1,3,1,19,1,13,1,5,2,6,1,12,2, +- 9,1,15,1,6,1,16,1,16,2,114,167,0,0,0,99, +- 0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0, +- 64,0,0,0,115,121,0,0,0,101,0,0,90,1,0,100, +- 0,0,90,2,0,100,1,0,90,3,0,100,2,0,90,4, +- 0,100,3,0,90,5,0,100,4,0,90,6,0,101,7,0, +- 100,5,0,100,6,0,132,0,0,131,1,0,90,8,0,101, +- 7,0,100,7,0,100,8,0,132,0,0,131,1,0,90,9, +- 0,101,7,0,100,9,0,100,9,0,100,10,0,100,11,0, +- 132,2,0,131,1,0,90,10,0,101,7,0,100,9,0,100, +- 12,0,100,13,0,132,1,0,131,1,0,90,11,0,100,9, +- 0,83,41,14,218,21,87,105,110,100,111,119,115,82,101,103, +- 105,115,116,114,121,70,105,110,100,101,114,122,62,77,101,116, +- 97,32,112,97,116,104,32,102,105,110,100,101,114,32,102,111, +- 114,32,109,111,100,117,108,101,115,32,100,101,99,108,97,114, +- 101,100,32,105,110,32,116,104,101,32,87,105,110,100,111,119, +- 115,32,114,101,103,105,115,116,114,121,46,122,59,83,111,102, +- 116,119,97,114,101,92,80,121,116,104,111,110,92,80,121,116, +- 104,111,110,67,111,114,101,92,123,115,121,115,95,118,101,114, +- 115,105,111,110,125,92,77,111,100,117,108,101,115,92,123,102, +- 117,108,108,110,97,109,101,125,122,65,83,111,102,116,119,97, +- 114,101,92,80,121,116,104,111,110,92,80,121,116,104,111,110, +- 67,111,114,101,92,123,115,121,115,95,118,101,114,115,105,111, +- 110,125,92,77,111,100,117,108,101,115,92,123,102,117,108,108, +- 110,97,109,101,125,92,68,101,98,117,103,70,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,11,0,0,0,67,0,0, +- 0,115,67,0,0,0,121,23,0,116,0,0,106,1,0,116, +- 0,0,106,2,0,124,1,0,131,2,0,83,87,110,37,0, +- 4,116,3,0,107,10,0,114,62,0,1,1,1,116,0,0, +- 106,1,0,116,0,0,106,4,0,124,1,0,131,2,0,83, +- 89,110,1,0,88,100,0,0,83,41,1,78,41,5,218,7, +- 95,119,105,110,114,101,103,90,7,79,112,101,110,75,101,121, +- 90,17,72,75,69,89,95,67,85,82,82,69,78,84,95,85, +- 83,69,82,114,40,0,0,0,90,18,72,75,69,89,95,76, +- 79,67,65,76,95,77,65,67,72,73,78,69,41,2,218,3, +- 99,108,115,218,3,107,101,121,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,14,95,111,112,101,110,95,114, +- 101,103,105,115,116,114,121,76,2,0,0,115,8,0,0,0, +- 0,2,3,1,23,1,13,1,122,36,87,105,110,100,111,119, +- 115,82,101,103,105,115,116,114,121,70,105,110,100,101,114,46, +- 95,111,112,101,110,95,114,101,103,105,115,116,114,121,99,2, +- 0,0,0,0,0,0,0,6,0,0,0,16,0,0,0,67, +- 0,0,0,115,143,0,0,0,124,0,0,106,0,0,114,21, +- 0,124,0,0,106,1,0,125,2,0,110,9,0,124,0,0, +- 106,2,0,125,2,0,124,2,0,106,3,0,100,1,0,124, +- 1,0,100,2,0,116,4,0,106,5,0,100,0,0,100,3, +- 0,133,2,0,25,131,0,2,125,3,0,121,47,0,124,0, +- 0,106,6,0,124,3,0,131,1,0,143,25,0,125,4,0, +- 116,7,0,106,8,0,124,4,0,100,4,0,131,2,0,125, +- 5,0,87,100,0,0,81,82,88,87,110,22,0,4,116,9, +- 0,107,10,0,114,138,0,1,1,1,100,0,0,83,89,110, +- 1,0,88,124,5,0,83,41,5,78,114,126,0,0,0,90, +- 11,115,121,115,95,118,101,114,115,105,111,110,114,80,0,0, +- 0,114,30,0,0,0,41,10,218,11,68,69,66,85,71,95, +- 66,85,73,76,68,218,18,82,69,71,73,83,84,82,89,95, +- 75,69,89,95,68,69,66,85,71,218,12,82,69,71,73,83, +- 84,82,89,95,75,69,89,114,47,0,0,0,114,7,0,0, +- 0,218,7,118,101,114,115,105,111,110,114,172,0,0,0,114, +- 169,0,0,0,90,10,81,117,101,114,121,86,97,108,117,101, +- 114,40,0,0,0,41,6,114,170,0,0,0,114,126,0,0, +- 0,90,12,114,101,103,105,115,116,114,121,95,107,101,121,114, +- 171,0,0,0,90,4,104,107,101,121,218,8,102,105,108,101, +- 112,97,116,104,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,16,95,115,101,97,114,99,104,95,114,101,103, +- 105,115,116,114,121,83,2,0,0,115,22,0,0,0,0,2, +- 9,1,12,2,9,1,15,1,22,1,3,1,18,1,29,1, +- 13,1,9,1,122,38,87,105,110,100,111,119,115,82,101,103, +- 105,115,116,114,121,70,105,110,100,101,114,46,95,115,101,97, +- 114,99,104,95,114,101,103,105,115,116,114,121,78,99,4,0, +- 0,0,0,0,0,0,8,0,0,0,14,0,0,0,67,0, +- 0,0,115,158,0,0,0,124,0,0,106,0,0,124,1,0, +- 131,1,0,125,4,0,124,4,0,100,0,0,107,8,0,114, +- 31,0,100,0,0,83,121,14,0,116,1,0,124,4,0,131, +- 1,0,1,87,110,22,0,4,116,2,0,107,10,0,114,69, +- 0,1,1,1,100,0,0,83,89,110,1,0,88,120,81,0, +- 116,3,0,131,0,0,68,93,70,0,92,2,0,125,5,0, +- 125,6,0,124,4,0,106,4,0,116,5,0,124,6,0,131, +- 1,0,131,1,0,114,80,0,116,6,0,106,7,0,124,1, +- 0,124,5,0,124,1,0,124,4,0,131,2,0,100,1,0, +- 124,4,0,131,2,1,125,7,0,124,7,0,83,113,80,0, +- 87,100,0,0,83,41,2,78,114,158,0,0,0,41,8,114, +- 178,0,0,0,114,39,0,0,0,114,40,0,0,0,114,161, +- 0,0,0,114,92,0,0,0,114,93,0,0,0,114,121,0, +- 0,0,218,16,115,112,101,99,95,102,114,111,109,95,108,111, +- 97,100,101,114,41,8,114,170,0,0,0,114,126,0,0,0, +- 114,35,0,0,0,218,6,116,97,114,103,101,116,114,177,0, +- 0,0,114,127,0,0,0,114,166,0,0,0,114,164,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,12,95,109,111,100,117,108,101,95,114,101,112,114,178,2, -- 0,0,115,46,0,0,0,0,2,18,1,15,4,3,1,17, -- 1,13,1,8,1,3,1,13,1,13,1,5,2,12,1,16, -- 4,3,1,13,1,13,1,11,1,3,1,13,1,13,1,12, -- 1,13,2,21,2,114,211,0,0,0,99,0,0,0,0,0, -- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, -- 52,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, -- 100,1,0,100,2,0,132,0,0,90,3,0,100,3,0,100, -- 4,0,132,0,0,90,4,0,100,5,0,100,6,0,132,0, -- 0,90,5,0,100,7,0,83,41,8,218,17,95,105,110,115, -- 116,97,108,108,101,100,95,115,97,102,101,108,121,99,2,0, -- 0,0,0,0,0,0,2,0,0,0,2,0,0,0,67,0, -- 0,0,115,25,0,0,0,124,1,0,124,0,0,95,0,0, -- 124,1,0,106,1,0,124,0,0,95,2,0,100,0,0,83, -- 41,1,78,41,3,218,7,95,109,111,100,117,108,101,114,208, -- 0,0,0,218,5,95,115,112,101,99,41,2,114,71,0,0, -- 0,114,179,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,72,0,0,0,216,2,0,0,115,4, -- 0,0,0,0,1,9,1,122,26,95,105,110,115,116,97,108, -- 108,101,100,95,115,97,102,101,108,121,46,95,95,105,110,105, -- 116,95,95,99,1,0,0,0,0,0,0,0,1,0,0,0, -- 3,0,0,0,67,0,0,0,115,38,0,0,0,100,1,0, -- 124,0,0,106,0,0,95,1,0,124,0,0,106,2,0,116, -- 3,0,106,4,0,124,0,0,106,0,0,106,5,0,60,100, -- 0,0,83,41,2,78,84,41,6,114,214,0,0,0,218,13, -- 95,105,110,105,116,105,97,108,105,122,105,110,103,114,213,0, -- 0,0,114,7,0,0,0,114,73,0,0,0,114,67,0,0, -- 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,75,0,0,0,220,2,0,0, -- 115,4,0,0,0,0,4,12,1,122,27,95,105,110,115,116, -+ 12,0,0,0,67,0,0,0,115,164,0,0,0,116,0,0, -+ 124,0,0,131,1,0,100,1,0,107,2,0,114,22,0,100, -+ 2,0,83,124,0,0,106,1,0,100,3,0,131,1,0,92, -+ 3,0,125,1,0,125,2,0,125,3,0,124,1,0,12,115, -+ 81,0,124,3,0,106,2,0,131,0,0,100,7,0,100,8, -+ 0,133,2,0,25,100,6,0,107,3,0,114,85,0,124,0, -+ 0,83,121,16,0,116,3,0,124,0,0,131,1,0,125,4, -+ 0,87,110,40,0,4,116,4,0,116,5,0,102,2,0,107, -+ 10,0,114,143,0,1,1,1,124,0,0,100,2,0,100,9, -+ 0,133,2,0,25,125,4,0,89,110,1,0,88,116,6,0, -+ 124,4,0,131,1,0,114,160,0,124,4,0,83,124,0,0, -+ 83,41,10,122,188,67,111,110,118,101,114,116,32,97,32,98, -+ 121,116,101,99,111,100,101,32,102,105,108,101,32,112,97,116, -+ 104,32,116,111,32,97,32,115,111,117,114,99,101,32,112,97, -+ 116,104,32,40,105,102,32,112,111,115,115,105,98,108,101,41, -+ 46,10,10,32,32,32,32,84,104,105,115,32,102,117,110,99, -+ 116,105,111,110,32,101,120,105,115,116,115,32,112,117,114,101, -+ 108,121,32,102,111,114,32,98,97,99,107,119,97,114,100,115, -+ 45,99,111,109,112,97,116,105,98,105,108,105,116,121,32,102, -+ 111,114,10,32,32,32,32,80,121,73,109,112,111,114,116,95, -+ 69,120,101,99,67,111,100,101,77,111,100,117,108,101,87,105, -+ 116,104,70,105,108,101,110,97,109,101,115,40,41,32,105,110, -+ 32,116,104,101,32,67,32,65,80,73,46,10,10,32,32,32, -+ 32,114,85,0,0,0,78,114,117,0,0,0,233,3,0,0, -+ 0,114,30,0,0,0,90,2,112,121,233,253,255,255,255,233, -+ 255,255,255,255,114,139,0,0,0,41,7,114,32,0,0,0, -+ 114,33,0,0,0,218,5,108,111,119,101,114,114,136,0,0, -+ 0,114,125,0,0,0,114,134,0,0,0,114,45,0,0,0, -+ 41,5,218,13,98,121,116,101,99,111,100,101,95,112,97,116, -+ 104,90,4,114,101,115,116,114,37,0,0,0,90,9,101,120, -+ 116,101,110,115,105,111,110,218,11,115,111,117,114,99,101,95, -+ 112,97,116,104,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,15,95,103,101,116,95,115,111,117,114,99,101, -+ 102,105,108,101,231,1,0,0,115,20,0,0,0,0,7,18, -+ 1,4,1,24,1,35,1,4,1,3,1,16,1,19,1,21, -+ 1,114,143,0,0,0,99,1,0,0,0,0,0,0,0,2, -+ 0,0,0,11,0,0,0,67,0,0,0,115,60,0,0,0, -+ 121,19,0,116,0,0,124,0,0,131,1,0,106,1,0,125, -+ 1,0,87,110,24,0,4,116,2,0,107,10,0,114,45,0, -+ 1,1,1,100,1,0,125,1,0,89,110,1,0,88,124,1, -+ 0,100,2,0,79,125,1,0,124,1,0,83,41,3,122,51, -+ 67,97,108,99,117,108,97,116,101,32,116,104,101,32,109,111, -+ 100,101,32,112,101,114,109,105,115,115,105,111,110,115,32,102, -+ 111,114,32,97,32,98,121,116,101,99,111,100,101,32,102,105, -+ 108,101,46,105,182,1,0,0,233,128,0,0,0,41,3,114, -+ 40,0,0,0,114,42,0,0,0,114,41,0,0,0,41,2, -+ 114,36,0,0,0,114,43,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,10,95,99,97,108,99, -+ 95,109,111,100,101,250,1,0,0,115,12,0,0,0,0,2, -+ 3,1,19,1,13,1,11,3,10,1,114,145,0,0,0,218, -+ 9,118,101,114,98,111,115,105,116,121,114,30,0,0,0,99, -+ 1,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0, -+ 71,0,0,0,115,81,0,0,0,116,0,0,106,1,0,106, -+ 2,0,124,1,0,107,5,0,114,77,0,124,0,0,106,3, -+ 0,100,6,0,131,1,0,115,46,0,100,3,0,124,0,0, -+ 23,125,0,0,110,0,0,116,4,0,124,0,0,106,5,0, -+ 124,2,0,140,0,0,100,4,0,116,0,0,106,6,0,131, -+ 1,1,1,110,0,0,100,5,0,83,41,7,122,61,80,114, -+ 105,110,116,32,116,104,101,32,109,101,115,115,97,103,101,32, -+ 116,111,32,115,116,100,101,114,114,32,105,102,32,45,118,47, -+ 80,89,84,72,79,78,86,69,82,66,79,83,69,32,105,115, -+ 32,116,117,114,110,101,100,32,111,110,46,250,1,35,250,7, -+ 105,109,112,111,114,116,32,122,2,35,32,114,55,0,0,0, -+ 78,41,2,114,147,0,0,0,114,148,0,0,0,41,7,114, -+ 8,0,0,0,114,118,0,0,0,218,7,118,101,114,98,111, -+ 115,101,114,10,0,0,0,218,5,112,114,105,110,116,114,48, -+ 0,0,0,218,6,115,116,100,101,114,114,41,3,218,7,109, -+ 101,115,115,97,103,101,114,146,0,0,0,114,81,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 16,95,118,101,114,98,111,115,101,95,109,101,115,115,97,103, -+ 101,6,2,0,0,115,8,0,0,0,0,2,18,1,15,1, -+ 13,1,114,153,0,0,0,99,1,0,0,0,0,0,0,0, -+ 2,0,0,0,4,0,0,0,3,0,0,0,115,38,0,0, -+ 0,100,1,0,135,0,0,102,1,0,100,2,0,100,3,0, -+ 134,1,0,125,1,0,116,0,0,124,1,0,136,0,0,131, -+ 2,0,1,124,1,0,83,41,4,122,252,68,101,99,111,114, -+ 97,116,111,114,32,116,111,32,118,101,114,105,102,121,32,116, -+ 104,97,116,32,116,104,101,32,109,111,100,117,108,101,32,98, -+ 101,105,110,103,32,114,101,113,117,101,115,116,101,100,32,109, -+ 97,116,99,104,101,115,32,116,104,101,32,111,110,101,32,116, -+ 104,101,10,32,32,32,32,108,111,97,100,101,114,32,99,97, -+ 110,32,104,97,110,100,108,101,46,10,10,32,32,32,32,84, -+ 104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110, -+ 116,32,40,115,101,108,102,41,32,109,117,115,116,32,100,101, -+ 102,105,110,101,32,95,110,97,109,101,32,119,104,105,99,104, -+ 32,116,104,101,32,115,101,99,111,110,100,32,97,114,103,117, -+ 109,101,110,116,32,105,115,10,32,32,32,32,99,111,109,112, -+ 97,114,101,100,32,97,103,97,105,110,115,116,46,32,73,102, -+ 32,116,104,101,32,99,111,109,112,97,114,105,115,111,110,32, -+ 102,97,105,108,115,32,116,104,101,110,32,73,109,112,111,114, -+ 116,69,114,114,111,114,32,105,115,32,114,97,105,115,101,100, -+ 46,10,10,32,32,32,32,78,99,2,0,0,0,0,0,0, -+ 0,4,0,0,0,5,0,0,0,31,0,0,0,115,83,0, -+ 0,0,124,1,0,100,0,0,107,8,0,114,24,0,124,0, -+ 0,106,0,0,125,1,0,110,40,0,124,0,0,106,0,0, -+ 124,1,0,107,3,0,114,64,0,116,1,0,100,1,0,124, -+ 1,0,22,100,2,0,124,1,0,131,1,1,130,1,0,110, -+ 0,0,136,0,0,124,0,0,124,1,0,124,2,0,124,3, -+ 0,142,2,0,83,41,3,78,122,23,108,111,97,100,101,114, -+ 32,99,97,110,110,111,116,32,104,97,110,100,108,101,32,37, -+ 115,114,68,0,0,0,41,2,114,68,0,0,0,218,11,73, -+ 109,112,111,114,116,69,114,114,111,114,41,4,114,72,0,0, -+ 0,114,68,0,0,0,114,81,0,0,0,114,109,0,0,0, -+ 41,1,218,6,109,101,116,104,111,100,114,5,0,0,0,114, -+ 6,0,0,0,218,19,95,99,104,101,99,107,95,110,97,109, -+ 101,95,119,114,97,112,112,101,114,22,2,0,0,115,10,0, -+ 0,0,0,1,12,1,12,1,15,1,25,1,122,40,95,99, -+ 104,101,99,107,95,110,97,109,101,46,60,108,111,99,97,108, -+ 115,62,46,95,99,104,101,99,107,95,110,97,109,101,95,119, -+ 114,97,112,112,101,114,41,1,114,66,0,0,0,41,2,114, -+ 155,0,0,0,114,156,0,0,0,114,5,0,0,0,41,1, -+ 114,155,0,0,0,114,6,0,0,0,218,11,95,99,104,101, -+ 99,107,95,110,97,109,101,14,2,0,0,115,6,0,0,0, -+ 0,8,21,6,13,1,114,157,0,0,0,99,1,0,0,0, -+ 0,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0, -+ 115,35,0,0,0,135,0,0,102,1,0,100,1,0,100,2, -+ 0,134,0,0,125,1,0,116,0,0,124,1,0,136,0,0, -+ 131,2,0,1,124,1,0,83,41,3,122,49,68,101,99,111, -+ 114,97,116,111,114,32,116,111,32,118,101,114,105,102,121,32, -+ 116,104,101,32,110,97,109,101,100,32,109,111,100,117,108,101, -+ 32,105,115,32,98,117,105,108,116,45,105,110,46,99,2,0, -+ 0,0,0,0,0,0,2,0,0,0,4,0,0,0,19,0, -+ 0,0,115,58,0,0,0,124,1,0,116,0,0,106,1,0, -+ 107,7,0,114,45,0,116,2,0,100,1,0,106,3,0,124, -+ 1,0,131,1,0,100,2,0,124,1,0,131,1,1,130,1, -+ 0,110,0,0,136,0,0,124,0,0,124,1,0,131,2,0, -+ 83,41,3,78,122,29,123,33,114,125,32,105,115,32,110,111, -+ 116,32,97,32,98,117,105,108,116,45,105,110,32,109,111,100, -+ 117,108,101,114,68,0,0,0,41,4,114,8,0,0,0,218, -+ 20,98,117,105,108,116,105,110,95,109,111,100,117,108,101,95, -+ 110,97,109,101,115,114,154,0,0,0,114,48,0,0,0,41, -+ 2,114,72,0,0,0,218,8,102,117,108,108,110,97,109,101, -+ 41,1,218,3,102,120,110,114,5,0,0,0,114,6,0,0, -+ 0,218,25,95,114,101,113,117,105,114,101,115,95,98,117,105, -+ 108,116,105,110,95,119,114,97,112,112,101,114,34,2,0,0, -+ 115,8,0,0,0,0,1,15,1,18,1,12,1,122,52,95, -+ 114,101,113,117,105,114,101,115,95,98,117,105,108,116,105,110, -+ 46,60,108,111,99,97,108,115,62,46,95,114,101,113,117,105, -+ 114,101,115,95,98,117,105,108,116,105,110,95,119,114,97,112, -+ 112,101,114,41,1,114,66,0,0,0,41,2,114,160,0,0, -+ 0,114,161,0,0,0,114,5,0,0,0,41,1,114,160,0, -+ 0,0,114,6,0,0,0,218,17,95,114,101,113,117,105,114, -+ 101,115,95,98,117,105,108,116,105,110,32,2,0,0,115,6, -+ 0,0,0,0,2,18,5,13,1,114,162,0,0,0,99,1, -+ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,3, -+ 0,0,0,115,35,0,0,0,135,0,0,102,1,0,100,1, -+ 0,100,2,0,134,0,0,125,1,0,116,0,0,124,1,0, -+ 136,0,0,131,2,0,1,124,1,0,83,41,3,122,47,68, -+ 101,99,111,114,97,116,111,114,32,116,111,32,118,101,114,105, -+ 102,121,32,116,104,101,32,110,97,109,101,100,32,109,111,100, -+ 117,108,101,32,105,115,32,102,114,111,122,101,110,46,99,2, -+ 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,19, -+ 0,0,0,115,58,0,0,0,116,0,0,106,1,0,124,1, -+ 0,131,1,0,115,45,0,116,2,0,100,1,0,106,3,0, -+ 124,1,0,131,1,0,100,2,0,124,1,0,131,1,1,130, -+ 1,0,110,0,0,136,0,0,124,0,0,124,1,0,131,2, -+ 0,83,41,3,78,122,27,123,33,114,125,32,105,115,32,110, -+ 111,116,32,97,32,102,114,111,122,101,110,32,109,111,100,117, -+ 108,101,114,68,0,0,0,41,4,114,107,0,0,0,218,9, -+ 105,115,95,102,114,111,122,101,110,114,154,0,0,0,114,48, -+ 0,0,0,41,2,114,72,0,0,0,114,159,0,0,0,41, -+ 1,114,160,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,24,95,114,101,113,117,105,114,101,115,95,102,114,111,122, -+ 101,110,95,119,114,97,112,112,101,114,45,2,0,0,115,8, -+ 0,0,0,0,1,15,1,18,1,12,1,122,50,95,114,101, -+ 113,117,105,114,101,115,95,102,114,111,122,101,110,46,60,108, -+ 111,99,97,108,115,62,46,95,114,101,113,117,105,114,101,115, -+ 95,102,114,111,122,101,110,95,119,114,97,112,112,101,114,41, -+ 1,114,66,0,0,0,41,2,114,160,0,0,0,114,164,0, -+ 0,0,114,5,0,0,0,41,1,114,160,0,0,0,114,6, -+ 0,0,0,218,16,95,114,101,113,117,105,114,101,115,95,102, -+ 114,111,122,101,110,43,2,0,0,115,6,0,0,0,0,2, -+ 18,5,13,1,114,165,0,0,0,99,2,0,0,0,0,0, -+ 0,0,5,0,0,0,4,0,0,0,67,0,0,0,115,87, +- 218,9,102,105,110,100,95,115,112,101,99,98,2,0,0,115, +- 26,0,0,0,0,2,15,1,12,1,4,1,3,1,14,1, +- 13,1,9,1,22,1,21,1,9,1,15,1,9,1,122,31, +- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, +- 105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,99, ++ 0,12,115,81,0,124,3,0,106,2,0,131,0,0,100,7, ++ 0,100,8,0,133,2,0,25,100,6,0,107,3,0,114,85, ++ 0,124,0,0,83,121,16,0,116,3,0,124,0,0,131,1, ++ 0,125,4,0,87,110,40,0,4,116,4,0,116,5,0,102, ++ 2,0,107,10,0,114,143,0,1,1,1,124,0,0,100,2, ++ 0,100,9,0,133,2,0,25,125,4,0,89,110,1,0,88, ++ 116,6,0,124,4,0,131,1,0,114,160,0,124,4,0,83, ++ 124,0,0,83,41,10,122,188,67,111,110,118,101,114,116,32, ++ 97,32,98,121,116,101,99,111,100,101,32,102,105,108,101,32, ++ 112,97,116,104,32,116,111,32,97,32,115,111,117,114,99,101, ++ 32,112,97,116,104,32,40,105,102,32,112,111,115,115,105,98, ++ 108,101,41,46,10,10,32,32,32,32,84,104,105,115,32,102, ++ 117,110,99,116,105,111,110,32,101,120,105,115,116,115,32,112, ++ 117,114,101,108,121,32,102,111,114,32,98,97,99,107,119,97, ++ 114,100,115,45,99,111,109,112,97,116,105,98,105,108,105,116, ++ 121,32,102,111,114,10,32,32,32,32,80,121,73,109,112,111, ++ 114,116,95,69,120,101,99,67,111,100,101,77,111,100,117,108, ++ 101,87,105,116,104,70,105,108,101,110,97,109,101,115,40,41, ++ 32,105,110,32,116,104,101,32,67,32,65,80,73,46,10,10, ++ 32,32,32,32,114,60,0,0,0,78,114,59,0,0,0,114, ++ 81,0,0,0,114,30,0,0,0,90,2,112,121,233,253,255, ++ 255,255,233,255,255,255,255,114,88,0,0,0,41,7,114,32, ++ 0,0,0,114,33,0,0,0,218,5,108,111,119,101,114,114, ++ 86,0,0,0,114,67,0,0,0,114,72,0,0,0,114,45, ++ 0,0,0,41,5,218,13,98,121,116,101,99,111,100,101,95, ++ 112,97,116,104,114,79,0,0,0,114,37,0,0,0,90,9, ++ 101,120,116,101,110,115,105,111,110,218,11,115,111,117,114,99, ++ 101,95,112,97,116,104,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,15,95,103,101,116,95,115,111,117,114, ++ 99,101,102,105,108,101,64,1,0,0,115,20,0,0,0,0, ++ 7,18,1,4,1,24,1,35,1,4,1,3,1,16,1,19, ++ 1,21,1,114,92,0,0,0,99,1,0,0,0,0,0,0, ++ 0,1,0,0,0,11,0,0,0,67,0,0,0,115,92,0, ++ 0,0,124,0,0,106,0,0,116,1,0,116,2,0,131,1, ++ 0,131,1,0,114,59,0,121,14,0,116,3,0,124,0,0, ++ 131,1,0,83,87,113,88,0,4,116,4,0,107,10,0,114, ++ 55,0,1,1,1,89,113,88,0,88,110,29,0,124,0,0, ++ 106,0,0,116,1,0,116,5,0,131,1,0,131,1,0,114, ++ 84,0,124,0,0,83,100,0,0,83,100,0,0,83,41,1, ++ 78,41,6,218,8,101,110,100,115,119,105,116,104,218,5,116, ++ 117,112,108,101,114,85,0,0,0,114,80,0,0,0,114,67, ++ 0,0,0,114,75,0,0,0,41,1,218,8,102,105,108,101, ++ 110,97,109,101,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,11,95,103,101,116,95,99,97,99,104,101,100, ++ 83,1,0,0,115,16,0,0,0,0,1,21,1,3,1,14, ++ 1,13,1,8,1,21,1,4,2,114,96,0,0,0,99,1, ++ 0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,67, ++ 0,0,0,115,60,0,0,0,121,19,0,116,0,0,124,0, ++ 0,131,1,0,106,1,0,125,1,0,87,110,24,0,4,116, ++ 2,0,107,10,0,114,45,0,1,1,1,100,1,0,125,1, ++ 0,89,110,1,0,88,124,1,0,100,2,0,79,125,1,0, ++ 124,1,0,83,41,3,122,51,67,97,108,99,117,108,97,116, ++ 101,32,116,104,101,32,109,111,100,101,32,112,101,114,109,105, ++ 115,115,105,111,110,115,32,102,111,114,32,97,32,98,121,116, ++ 101,99,111,100,101,32,102,105,108,101,46,105,182,1,0,0, ++ 233,128,0,0,0,41,3,114,40,0,0,0,114,42,0,0, ++ 0,114,41,0,0,0,41,2,114,36,0,0,0,114,43,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,10,95,99,97,108,99,95,109,111,100,101,95,1,0, ++ 0,115,12,0,0,0,0,2,3,1,19,1,13,1,11,3, ++ 10,1,114,98,0,0,0,218,9,118,101,114,98,111,115,105, ++ 116,121,114,30,0,0,0,99,1,0,0,0,1,0,0,0, ++ 3,0,0,0,4,0,0,0,71,0,0,0,115,75,0,0, ++ 0,116,0,0,106,1,0,106,2,0,124,1,0,107,5,0, ++ 114,71,0,124,0,0,106,3,0,100,6,0,131,1,0,115, ++ 43,0,100,3,0,124,0,0,23,125,0,0,116,4,0,124, ++ 0,0,106,5,0,124,2,0,140,0,0,100,4,0,116,0, ++ 0,106,6,0,131,1,1,1,100,5,0,83,41,7,122,61, ++ 80,114,105,110,116,32,116,104,101,32,109,101,115,115,97,103, ++ 101,32,116,111,32,115,116,100,101,114,114,32,105,102,32,45, ++ 118,47,80,89,84,72,79,78,86,69,82,66,79,83,69,32, ++ 105,115,32,116,117,114,110,101,100,32,111,110,46,250,1,35, ++ 250,7,105,109,112,111,114,116,32,122,2,35,32,114,55,0, ++ 0,0,78,41,2,114,100,0,0,0,114,101,0,0,0,41, ++ 7,114,8,0,0,0,114,68,0,0,0,218,7,118,101,114, ++ 98,111,115,101,114,10,0,0,0,218,5,112,114,105,110,116, ++ 114,48,0,0,0,218,6,115,116,100,101,114,114,41,3,114, ++ 76,0,0,0,114,99,0,0,0,218,4,97,114,103,115,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,16, ++ 95,118,101,114,98,111,115,101,95,109,101,115,115,97,103,101, ++ 107,1,0,0,115,8,0,0,0,0,2,18,1,15,1,10, ++ 1,114,106,0,0,0,99,1,0,0,0,0,0,0,0,3, ++ 0,0,0,11,0,0,0,3,0,0,0,115,84,0,0,0, ++ 100,1,0,135,0,0,102,1,0,100,2,0,100,3,0,134, ++ 1,0,125,1,0,121,13,0,116,0,0,106,1,0,125,2, ++ 0,87,110,30,0,4,116,2,0,107,10,0,114,66,0,1, ++ 1,1,100,4,0,100,5,0,132,0,0,125,2,0,89,110, ++ 1,0,88,124,2,0,124,1,0,136,0,0,131,2,0,1, ++ 124,1,0,83,41,6,122,252,68,101,99,111,114,97,116,111, ++ 114,32,116,111,32,118,101,114,105,102,121,32,116,104,97,116, ++ 32,116,104,101,32,109,111,100,117,108,101,32,98,101,105,110, ++ 103,32,114,101,113,117,101,115,116,101,100,32,109,97,116,99, ++ 104,101,115,32,116,104,101,32,111,110,101,32,116,104,101,10, ++ 32,32,32,32,108,111,97,100,101,114,32,99,97,110,32,104, ++ 97,110,100,108,101,46,10,10,32,32,32,32,84,104,101,32, ++ 102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,40, ++ 115,101,108,102,41,32,109,117,115,116,32,100,101,102,105,110, ++ 101,32,95,110,97,109,101,32,119,104,105,99,104,32,116,104, ++ 101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110, ++ 116,32,105,115,10,32,32,32,32,99,111,109,112,97,114,101, ++ 100,32,97,103,97,105,110,115,116,46,32,73,102,32,116,104, ++ 101,32,99,111,109,112,97,114,105,115,111,110,32,102,97,105, ++ 108,115,32,116,104,101,110,32,73,109,112,111,114,116,69,114, ++ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,10, ++ 32,32,32,32,78,99,2,0,0,0,0,0,0,0,4,0, ++ 0,0,5,0,0,0,31,0,0,0,115,89,0,0,0,124, ++ 1,0,100,0,0,107,8,0,114,24,0,124,0,0,106,0, ++ 0,125,1,0,110,46,0,124,0,0,106,0,0,124,1,0, ++ 107,3,0,114,70,0,116,1,0,100,1,0,124,0,0,106, ++ 0,0,124,1,0,102,2,0,22,100,2,0,124,1,0,131, ++ 1,1,130,1,0,136,0,0,124,0,0,124,1,0,124,2, ++ 0,124,3,0,142,2,0,83,41,3,78,122,30,108,111,97, ++ 100,101,114,32,102,111,114,32,37,115,32,99,97,110,110,111, ++ 116,32,104,97,110,100,108,101,32,37,115,218,4,110,97,109, ++ 101,41,2,114,107,0,0,0,218,11,73,109,112,111,114,116, ++ 69,114,114,111,114,41,4,218,4,115,101,108,102,114,107,0, ++ 0,0,114,105,0,0,0,90,6,107,119,97,114,103,115,41, ++ 1,218,6,109,101,116,104,111,100,114,5,0,0,0,114,6, ++ 0,0,0,218,19,95,99,104,101,99,107,95,110,97,109,101, ++ 95,119,114,97,112,112,101,114,123,1,0,0,115,12,0,0, ++ 0,0,1,12,1,12,1,15,1,6,1,25,1,122,40,95, ++ 99,104,101,99,107,95,110,97,109,101,46,60,108,111,99,97, ++ 108,115,62,46,95,99,104,101,99,107,95,110,97,109,101,95, ++ 119,114,97,112,112,101,114,99,2,0,0,0,0,0,0,0, ++ 3,0,0,0,7,0,0,0,83,0,0,0,115,92,0,0, ++ 0,120,66,0,100,1,0,100,2,0,100,3,0,100,4,0, ++ 103,4,0,68,93,46,0,125,2,0,116,0,0,124,1,0, ++ 124,2,0,131,2,0,114,19,0,116,1,0,124,0,0,124, ++ 2,0,116,2,0,124,1,0,124,2,0,131,2,0,131,3, ++ 0,1,113,19,0,87,124,0,0,106,3,0,106,4,0,124, ++ 1,0,106,3,0,131,1,0,1,100,0,0,83,41,5,78, ++ 218,10,95,95,109,111,100,117,108,101,95,95,218,8,95,95, ++ 110,97,109,101,95,95,218,12,95,95,113,117,97,108,110,97, ++ 109,101,95,95,218,7,95,95,100,111,99,95,95,41,5,218, ++ 7,104,97,115,97,116,116,114,218,7,115,101,116,97,116,116, ++ 114,218,7,103,101,116,97,116,116,114,218,8,95,95,100,105, ++ 99,116,95,95,218,6,117,112,100,97,116,101,41,3,90,3, ++ 110,101,119,90,3,111,108,100,114,53,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,5,95,119, ++ 114,97,112,134,1,0,0,115,8,0,0,0,0,1,25,1, ++ 15,1,29,1,122,26,95,99,104,101,99,107,95,110,97,109, ++ 101,46,60,108,111,99,97,108,115,62,46,95,119,114,97,112, ++ 41,3,218,10,95,98,111,111,116,115,116,114,97,112,114,121, ++ 0,0,0,218,9,78,97,109,101,69,114,114,111,114,41,3, ++ 114,110,0,0,0,114,111,0,0,0,114,121,0,0,0,114, ++ 5,0,0,0,41,1,114,110,0,0,0,114,6,0,0,0, ++ 218,11,95,99,104,101,99,107,95,110,97,109,101,115,1,0, ++ 0,115,14,0,0,0,0,8,21,7,3,1,13,1,13,2, ++ 17,5,13,1,114,124,0,0,0,99,2,0,0,0,0,0, ++ 0,0,5,0,0,0,4,0,0,0,67,0,0,0,115,84, + 0,0,0,124,0,0,106,0,0,124,1,0,131,1,0,92, + 2,0,125,2,0,125,3,0,124,2,0,100,1,0,107,8, -+ 0,114,83,0,116,1,0,124,3,0,131,1,0,114,83,0, ++ 0,114,80,0,116,1,0,124,3,0,131,1,0,114,80,0, + 100,2,0,125,4,0,116,2,0,106,3,0,124,4,0,106, + 4,0,124,3,0,100,3,0,25,131,1,0,116,5,0,131, -+ 2,0,1,110,0,0,124,2,0,83,41,4,122,155,84,114, -+ 121,32,116,111,32,102,105,110,100,32,97,32,108,111,97,100, -+ 101,114,32,102,111,114,32,116,104,101,32,115,112,101,99,105, -+ 102,105,101,100,32,109,111,100,117,108,101,32,98,121,32,100, -+ 101,108,101,103,97,116,105,110,103,32,116,111,10,32,32,32, -+ 32,115,101,108,102,46,102,105,110,100,95,108,111,97,100,101, -+ 114,40,41,46,10,10,32,32,32,32,84,104,105,115,32,109, -+ 101,116,104,111,100,32,105,115,32,100,101,112,114,101,99,97, -+ 116,101,100,32,105,110,32,102,97,118,111,114,32,111,102,32, -+ 102,105,110,100,101,114,46,102,105,110,100,95,115,112,101,99, -+ 40,41,46,10,10,32,32,32,32,78,122,44,78,111,116,32, -+ 105,109,112,111,114,116,105,110,103,32,100,105,114,101,99,116, -+ 111,114,121,32,123,125,58,32,109,105,115,115,105,110,103,32, -+ 95,95,105,110,105,116,95,95,114,85,0,0,0,41,6,218, -+ 11,102,105,110,100,95,108,111,97,100,101,114,114,32,0,0, -+ 0,218,9,95,119,97,114,110,105,110,103,115,218,4,119,97, -+ 114,110,114,48,0,0,0,218,13,73,109,112,111,114,116,87, -+ 97,114,110,105,110,103,41,5,114,72,0,0,0,114,159,0, -+ 0,0,218,6,108,111,97,100,101,114,218,8,112,111,114,116, -+ 105,111,110,115,218,3,109,115,103,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,17,95,102,105,110,100,95, -+ 109,111,100,117,108,101,95,115,104,105,109,54,2,0,0,115, -+ 10,0,0,0,0,10,21,1,24,1,6,1,32,1,114,173, -+ 0,0,0,99,2,0,0,0,0,0,0,0,5,0,0,0, -+ 3,0,0,0,67,0,0,0,115,93,0,0,0,116,0,0, -+ 124,1,0,124,0,0,131,2,0,125,2,0,116,1,0,124, -+ 2,0,131,1,0,125,3,0,124,1,0,116,2,0,106,3, -+ 0,107,6,0,114,79,0,116,2,0,106,3,0,124,1,0, -+ 25,125,4,0,124,3,0,106,4,0,124,4,0,131,1,0, -+ 1,116,2,0,106,3,0,124,1,0,25,83,124,3,0,106, -+ 5,0,131,0,0,83,100,1,0,83,41,2,122,128,76,111, -+ 97,100,32,116,104,101,32,115,112,101,99,105,102,105,101,100, -+ 32,109,111,100,117,108,101,32,105,110,116,111,32,115,121,115, -+ 46,109,111,100,117,108,101,115,32,97,110,100,32,114,101,116, -+ 117,114,110,32,105,116,46,10,10,32,32,32,32,84,104,105, -+ 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, -+ 101,99,97,116,101,100,46,32,32,85,115,101,32,108,111,97, -+ 100,101,114,46,101,120,101,99,95,109,111,100,117,108,101,32, -+ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,78,41, -+ 6,218,16,115,112,101,99,95,102,114,111,109,95,108,111,97, -+ 100,101,114,218,12,95,83,112,101,99,77,101,116,104,111,100, -+ 115,114,8,0,0,0,114,74,0,0,0,218,4,101,120,101, -+ 99,218,4,108,111,97,100,41,5,114,72,0,0,0,114,159, -+ 0,0,0,218,4,115,112,101,99,218,7,109,101,116,104,111, -+ 100,115,218,6,109,111,100,117,108,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,17,95,108,111,97,100, -+ 95,109,111,100,117,108,101,95,115,104,105,109,71,2,0,0, -+ 115,14,0,0,0,0,6,15,1,12,1,15,1,13,1,13, -+ 1,11,2,114,181,0,0,0,99,4,0,0,0,0,0,0, -+ 0,11,0,0,0,19,0,0,0,67,0,0,0,115,243,1, -+ 0,0,105,0,0,125,4,0,124,2,0,100,1,0,107,9, -+ 0,114,31,0,124,2,0,124,4,0,100,2,0,60,110,6, -+ 0,100,3,0,125,2,0,124,3,0,100,1,0,107,9,0, -+ 114,62,0,124,3,0,124,4,0,100,4,0,60,110,0,0, -+ 124,0,0,100,1,0,100,5,0,133,2,0,25,125,5,0, -+ 124,0,0,100,5,0,100,6,0,133,2,0,25,125,6,0, -+ 124,0,0,100,6,0,100,7,0,133,2,0,25,125,7,0, -+ 124,5,0,116,0,0,107,3,0,114,168,0,100,8,0,106, -+ 1,0,124,2,0,124,5,0,131,2,0,125,8,0,116,2, -+ 0,124,8,0,131,1,0,1,116,3,0,124,8,0,124,4, -+ 0,141,1,0,130,1,0,110,116,0,116,4,0,124,6,0, -+ 131,1,0,100,5,0,107,3,0,114,226,0,100,9,0,106, -+ 1,0,124,2,0,131,1,0,125,8,0,116,2,0,124,8, -+ 0,131,1,0,1,116,5,0,124,8,0,131,1,0,130,1, -+ 0,110,58,0,116,4,0,124,7,0,131,1,0,100,5,0, -+ 107,3,0,114,28,1,100,10,0,106,1,0,124,2,0,131, -+ 1,0,125,8,0,116,2,0,124,8,0,131,1,0,1,116, -+ 5,0,124,8,0,131,1,0,130,1,0,110,0,0,124,1, -+ 0,100,1,0,107,9,0,114,229,1,121,20,0,116,6,0, -+ 124,1,0,100,11,0,25,131,1,0,125,9,0,87,110,18, -+ 0,4,116,7,0,107,10,0,114,80,1,1,1,1,89,110, -+ 62,0,88,116,8,0,124,6,0,131,1,0,124,9,0,107, -+ 3,0,114,142,1,100,12,0,106,1,0,124,2,0,131,1, -+ 0,125,8,0,116,2,0,124,8,0,131,1,0,1,116,3, -+ 0,124,8,0,124,4,0,141,1,0,130,1,0,110,0,0, -+ 121,18,0,124,1,0,100,13,0,25,100,14,0,64,125,10, -+ 0,87,110,18,0,4,116,7,0,107,10,0,114,180,1,1, -+ 1,1,89,113,229,1,88,116,8,0,124,7,0,131,1,0, -+ 124,10,0,107,3,0,114,229,1,116,3,0,100,12,0,106, -+ 1,0,124,2,0,131,1,0,124,4,0,141,1,0,130,1, -+ 0,113,229,1,110,0,0,124,0,0,100,7,0,100,1,0, -+ 133,2,0,25,83,41,15,97,122,1,0,0,86,97,108,105, -+ 100,97,116,101,32,116,104,101,32,104,101,97,100,101,114,32, -+ 111,102,32,116,104,101,32,112,97,115,115,101,100,45,105,110, -+ 32,98,121,116,101,99,111,100,101,32,97,103,97,105,110,115, -+ 116,32,115,111,117,114,99,101,95,115,116,97,116,115,32,40, -+ 105,102,10,32,32,32,32,103,105,118,101,110,41,32,97,110, -+ 100,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32, -+ 98,121,116,101,99,111,100,101,32,116,104,97,116,32,99,97, -+ 110,32,98,101,32,99,111,109,112,105,108,101,100,32,98,121, -+ 32,99,111,109,112,105,108,101,40,41,46,10,10,32,32,32, -+ 32,65,108,108,32,111,116,104,101,114,32,97,114,103,117,109, -+ 101,110,116,115,32,97,114,101,32,117,115,101,100,32,116,111, -+ 32,101,110,104,97,110,99,101,32,101,114,114,111,114,32,114, -+ 101,112,111,114,116,105,110,103,46,10,10,32,32,32,32,73, -+ 109,112,111,114,116,69,114,114,111,114,32,105,115,32,114,97, -+ 105,115,101,100,32,119,104,101,110,32,116,104,101,32,109,97, -+ 103,105,99,32,110,117,109,98,101,114,32,105,115,32,105,110, -+ 99,111,114,114,101,99,116,32,111,114,32,116,104,101,32,98, -+ 121,116,101,99,111,100,101,32,105,115,10,32,32,32,32,102, -+ 111,117,110,100,32,116,111,32,98,101,32,115,116,97,108,101, -+ 46,32,69,79,70,69,114,114,111,114,32,105,115,32,114,97, -+ 105,115,101,100,32,119,104,101,110,32,116,104,101,32,100,97, -+ 116,97,32,105,115,32,102,111,117,110,100,32,116,111,32,98, -+ 101,10,32,32,32,32,116,114,117,110,99,97,116,101,100,46, -+ 10,10,32,32,32,32,78,114,68,0,0,0,122,10,60,98, -+ 121,116,101,99,111,100,101,62,114,36,0,0,0,114,13,0, -+ 0,0,233,8,0,0,0,233,12,0,0,0,122,30,98,97, -+ 100,32,109,97,103,105,99,32,110,117,109,98,101,114,32,105, -+ 110,32,123,33,114,125,58,32,123,33,114,125,122,43,114,101, -+ 97,99,104,101,100,32,69,79,70,32,119,104,105,108,101,32, -+ 114,101,97,100,105,110,103,32,116,105,109,101,115,116,97,109, -+ 112,32,105,110,32,123,33,114,125,122,48,114,101,97,99,104, -+ 101,100,32,69,79,70,32,119,104,105,108,101,32,114,101,97, -+ 100,105,110,103,32,115,105,122,101,32,111,102,32,115,111,117, -+ 114,99,101,32,105,110,32,123,33,114,125,218,5,109,116,105, -+ 109,101,122,26,98,121,116,101,99,111,100,101,32,105,115,32, -+ 115,116,97,108,101,32,102,111,114,32,123,33,114,125,218,4, -+ 115,105,122,101,108,3,0,0,0,255,127,255,127,3,0,41, -+ 9,218,12,77,65,71,73,67,95,78,85,77,66,69,82,114, -+ 48,0,0,0,114,153,0,0,0,114,154,0,0,0,114,32, -+ 0,0,0,218,8,69,79,70,69,114,114,111,114,114,15,0, -+ 0,0,114,80,0,0,0,114,20,0,0,0,41,11,114,54, -+ 0,0,0,218,12,115,111,117,114,99,101,95,115,116,97,116, -+ 115,114,68,0,0,0,114,36,0,0,0,90,11,101,120,99, -+ 95,100,101,116,97,105,108,115,90,5,109,97,103,105,99,90, -+ 13,114,97,119,95,116,105,109,101,115,116,97,109,112,90,8, -+ 114,97,119,95,115,105,122,101,114,152,0,0,0,218,12,115, -+ 111,117,114,99,101,95,109,116,105,109,101,218,11,115,111,117, -+ 114,99,101,95,115,105,122,101,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,218,25,95,118,97,108,105,100,97, -+ 116,101,95,98,121,116,101,99,111,100,101,95,104,101,97,100, -+ 101,114,87,2,0,0,115,76,0,0,0,0,11,6,1,12, -+ 1,13,3,6,1,12,1,13,1,16,1,16,1,16,1,12, -+ 1,18,1,10,1,18,1,18,1,15,1,10,1,15,1,18, -+ 1,15,1,10,1,15,1,12,1,3,1,20,1,13,1,5, -+ 2,18,1,15,1,10,1,18,1,3,1,18,1,13,1,5, -+ 2,18,1,15,1,15,1,114,191,0,0,0,99,4,0,0, -+ 0,0,0,0,0,5,0,0,0,6,0,0,0,67,0,0, -+ 0,115,115,0,0,0,116,0,0,106,1,0,124,0,0,131, -+ 1,0,125,4,0,116,2,0,124,4,0,116,3,0,131,2, -+ 0,114,78,0,116,4,0,100,1,0,124,2,0,131,2,0, -+ 1,124,3,0,100,2,0,107,9,0,114,74,0,116,5,0, -+ 106,6,0,124,4,0,124,3,0,131,2,0,1,110,0,0, -+ 124,4,0,83,116,7,0,100,3,0,106,8,0,124,2,0, -+ 131,1,0,100,4,0,124,1,0,100,5,0,124,2,0,131, -+ 1,2,130,1,0,100,2,0,83,41,6,122,60,67,111,109, -+ 112,105,108,101,32,98,121,116,101,99,111,100,101,32,97,115, -+ 32,114,101,116,117,114,110,101,100,32,98,121,32,95,118,97, -+ 108,105,100,97,116,101,95,98,121,116,101,99,111,100,101,95, -+ 104,101,97,100,101,114,40,41,46,122,21,99,111,100,101,32, -+ 111,98,106,101,99,116,32,102,114,111,109,32,123,33,114,125, -+ 78,122,23,78,111,110,45,99,111,100,101,32,111,98,106,101, -+ 99,116,32,105,110,32,123,33,114,125,114,68,0,0,0,114, -+ 36,0,0,0,41,9,218,7,109,97,114,115,104,97,108,90, -+ 5,108,111,97,100,115,218,10,105,115,105,110,115,116,97,110, -+ 99,101,218,10,95,99,111,100,101,95,116,121,112,101,114,153, -+ 0,0,0,114,107,0,0,0,90,16,95,102,105,120,95,99, -+ 111,95,102,105,108,101,110,97,109,101,114,154,0,0,0,114, -+ 48,0,0,0,41,5,114,54,0,0,0,114,68,0,0,0, -+ 114,141,0,0,0,114,142,0,0,0,218,4,99,111,100,101, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 17,95,99,111,109,112,105,108,101,95,98,121,116,101,99,111, -+ 100,101,142,2,0,0,115,16,0,0,0,0,2,15,1,15, -+ 1,13,1,12,1,19,1,4,2,18,1,114,196,0,0,0, -+ 114,85,0,0,0,99,3,0,0,0,0,0,0,0,4,0, -+ 0,0,3,0,0,0,67,0,0,0,115,76,0,0,0,116, -+ 0,0,116,1,0,131,1,0,125,3,0,124,3,0,106,2, -+ 0,116,3,0,124,1,0,131,1,0,131,1,0,1,124,3, -+ 0,106,2,0,116,3,0,124,2,0,131,1,0,131,1,0, -+ 1,124,3,0,106,2,0,116,4,0,106,5,0,124,0,0, -+ 131,1,0,131,1,0,1,124,3,0,83,41,1,122,80,67, -+ 111,109,112,105,108,101,32,97,32,99,111,100,101,32,111,98, -+ 106,101,99,116,32,105,110,116,111,32,98,121,116,101,99,111, -+ 100,101,32,102,111,114,32,119,114,105,116,105,110,103,32,111, -+ 117,116,32,116,111,32,97,32,98,121,116,101,45,99,111,109, -+ 112,105,108,101,100,10,32,32,32,32,102,105,108,101,46,41, -+ 6,218,9,98,121,116,101,97,114,114,97,121,114,186,0,0, -+ 0,218,6,101,120,116,101,110,100,114,18,0,0,0,114,192, -+ 0,0,0,90,5,100,117,109,112,115,41,4,114,195,0,0, -+ 0,114,184,0,0,0,114,190,0,0,0,114,54,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 17,95,99,111,100,101,95,116,111,95,98,121,116,101,99,111, -+ 100,101,154,2,0,0,115,10,0,0,0,0,3,12,1,19, -+ 1,19,1,22,1,114,199,0,0,0,99,1,0,0,0,0, -+ 0,0,0,5,0,0,0,4,0,0,0,67,0,0,0,115, -+ 89,0,0,0,100,1,0,100,2,0,108,0,0,125,1,0, -+ 116,1,0,106,2,0,124,0,0,131,1,0,106,3,0,125, -+ 2,0,124,1,0,106,4,0,124,2,0,131,1,0,125,3, -+ 0,116,1,0,106,5,0,100,2,0,100,3,0,131,2,0, -+ 125,4,0,124,4,0,106,6,0,124,0,0,106,6,0,124, -+ 3,0,100,1,0,25,131,1,0,131,1,0,83,41,4,122, -+ 121,68,101,99,111,100,101,32,98,121,116,101,115,32,114,101, -+ 112,114,101,115,101,110,116,105,110,103,32,115,111,117,114,99, -+ 101,32,99,111,100,101,32,97,110,100,32,114,101,116,117,114, -+ 110,32,116,104,101,32,115,116,114,105,110,103,46,10,10,32, -+ 32,32,32,85,110,105,118,101,114,115,97,108,32,110,101,119, -+ 108,105,110,101,32,115,117,112,112,111,114,116,32,105,115,32, -+ 117,115,101,100,32,105,110,32,116,104,101,32,100,101,99,111, -+ 100,105,110,103,46,10,32,32,32,32,114,85,0,0,0,78, -+ 84,41,7,218,8,116,111,107,101,110,105,122,101,114,50,0, -+ 0,0,90,7,66,121,116,101,115,73,79,90,8,114,101,97, -+ 100,108,105,110,101,90,15,100,101,116,101,99,116,95,101,110, -+ 99,111,100,105,110,103,90,25,73,110,99,114,101,109,101,110, -+ 116,97,108,78,101,119,108,105,110,101,68,101,99,111,100,101, -+ 114,218,6,100,101,99,111,100,101,41,5,218,12,115,111,117, -+ 114,99,101,95,98,121,116,101,115,114,200,0,0,0,90,21, -+ 115,111,117,114,99,101,95,98,121,116,101,115,95,114,101,97, -+ 100,108,105,110,101,218,8,101,110,99,111,100,105,110,103,90, -+ 15,110,101,119,108,105,110,101,95,100,101,99,111,100,101,114, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 13,100,101,99,111,100,101,95,115,111,117,114,99,101,164,2, -+ 0,0,115,10,0,0,0,0,5,12,1,18,1,15,1,18, -+ 1,114,204,0,0,0,99,1,0,0,0,0,0,0,0,5, -+ 0,0,0,35,0,0,0,67,0,0,0,115,15,1,0,0, -+ 116,0,0,124,0,0,100,1,0,100,0,0,131,3,0,125, -+ 1,0,116,1,0,124,1,0,100,2,0,131,2,0,114,74, -+ 0,121,17,0,124,1,0,106,2,0,124,0,0,131,1,0, -+ 83,87,113,74,0,4,116,3,0,107,10,0,114,70,0,1, -+ 1,1,89,113,74,0,88,110,0,0,121,13,0,124,0,0, -+ 106,4,0,125,2,0,87,110,18,0,4,116,5,0,107,10, -+ 0,114,107,0,1,1,1,89,110,29,0,88,124,2,0,100, -+ 0,0,107,9,0,114,136,0,116,6,0,124,2,0,131,1, -+ 0,106,2,0,131,0,0,83,121,13,0,124,0,0,106,7, -+ 0,125,3,0,87,110,24,0,4,116,5,0,107,10,0,114, -+ 175,0,1,1,1,100,3,0,125,3,0,89,110,1,0,88, -+ 121,13,0,124,0,0,106,8,0,125,4,0,87,110,59,0, -+ 4,116,5,0,107,10,0,114,250,0,1,1,1,124,1,0, -+ 100,0,0,107,8,0,114,230,0,100,4,0,106,9,0,124, -+ 3,0,131,1,0,83,100,5,0,106,9,0,124,3,0,124, -+ 1,0,131,2,0,83,89,110,17,0,88,100,6,0,106,9, -+ 0,124,3,0,124,4,0,131,2,0,83,100,0,0,83,41, -+ 7,78,218,10,95,95,108,111,97,100,101,114,95,95,218,11, -+ 109,111,100,117,108,101,95,114,101,112,114,250,1,63,122,13, -+ 60,109,111,100,117,108,101,32,123,33,114,125,62,122,20,60, -+ 109,111,100,117,108,101,32,123,33,114,125,32,40,123,33,114, -+ 125,41,62,122,23,60,109,111,100,117,108,101,32,123,33,114, -+ 125,32,102,114,111,109,32,123,33,114,125,62,41,10,114,63, -+ 0,0,0,114,61,0,0,0,114,206,0,0,0,218,9,69, -+ 120,99,101,112,116,105,111,110,218,8,95,95,115,112,101,99, -+ 95,95,218,14,65,116,116,114,105,98,117,116,101,69,114,114, -+ 111,114,114,175,0,0,0,114,58,0,0,0,218,8,95,95, -+ 102,105,108,101,95,95,114,48,0,0,0,41,5,114,180,0, -+ 0,0,114,170,0,0,0,114,178,0,0,0,114,68,0,0, -+ 0,114,132,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,12,95,109,111,100,117,108,101,95,114, -+ 101,112,114,178,2,0,0,115,46,0,0,0,0,2,18,1, -+ 15,4,3,1,17,1,13,1,8,1,3,1,13,1,13,1, -+ 5,2,12,1,16,4,3,1,13,1,13,1,11,1,3,1, -+ 13,1,13,1,12,1,13,2,21,2,114,212,0,0,0,99, -+ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, -+ 64,0,0,0,115,52,0,0,0,101,0,0,90,1,0,100, -+ 0,0,90,2,0,100,1,0,100,2,0,132,0,0,90,3, -+ 0,100,3,0,100,4,0,132,0,0,90,4,0,100,5,0, -+ 100,6,0,132,0,0,90,5,0,100,7,0,83,41,8,218, -+ 17,95,105,110,115,116,97,108,108,101,100,95,115,97,102,101, -+ 108,121,99,2,0,0,0,0,0,0,0,2,0,0,0,2, -+ 0,0,0,67,0,0,0,115,25,0,0,0,124,1,0,124, -+ 0,0,95,0,0,124,1,0,106,1,0,124,0,0,95,2, -+ 0,100,0,0,83,41,1,78,41,3,218,7,95,109,111,100, -+ 117,108,101,114,209,0,0,0,218,5,95,115,112,101,99,41, -+ 2,114,72,0,0,0,114,180,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,73,0,0,0,216, -+ 2,0,0,115,4,0,0,0,0,1,9,1,122,26,95,105, -+ 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, -+ 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, -+ 0,1,0,0,0,3,0,0,0,67,0,0,0,115,38,0, -+ 0,0,100,1,0,124,0,0,106,0,0,95,1,0,124,0, -+ 0,106,2,0,116,3,0,106,4,0,124,0,0,106,0,0, -+ 106,5,0,60,100,0,0,83,41,2,78,84,41,6,114,215, -+ 0,0,0,218,13,95,105,110,105,116,105,97,108,105,122,105, -+ 110,103,114,214,0,0,0,114,8,0,0,0,114,74,0,0, -+ 0,114,68,0,0,0,41,1,114,72,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,76,0,0, -+ 0,220,2,0,0,115,4,0,0,0,0,4,12,1,122,27, -+ 95,105,110,115,116,97,108,108,101,100,95,115,97,102,101,108, -+ 121,46,95,95,101,110,116,101,114,95,95,99,1,0,0,0, -+ 0,0,0,0,3,0,0,0,17,0,0,0,71,0,0,0, -+ 115,121,0,0,0,122,101,0,124,0,0,106,0,0,125,2, -+ 0,116,1,0,100,1,0,100,2,0,132,0,0,124,1,0, -+ 68,131,1,0,131,1,0,114,78,0,121,17,0,116,2,0, -+ 106,3,0,124,2,0,106,4,0,61,87,113,100,0,4,116, -+ 5,0,107,10,0,114,74,0,1,1,1,89,113,100,0,88, -+ 110,22,0,116,6,0,100,3,0,124,2,0,106,4,0,124, -+ 2,0,106,7,0,131,3,0,1,87,100,0,0,100,4,0, -+ 124,0,0,106,0,0,95,8,0,88,100,0,0,83,41,5, -+ 78,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, -+ 0,0,115,0,0,0,115,27,0,0,0,124,0,0,93,17, -+ 0,125,1,0,124,1,0,100,0,0,107,9,0,86,1,113, -+ 3,0,100,0,0,83,41,1,78,114,5,0,0,0,41,2, -+ 114,23,0,0,0,114,77,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,78,0,0,0,230,2, -+ 0,0,115,2,0,0,0,6,0,122,45,95,105,110,115,116, - 97,108,108,101,100,95,115,97,102,101,108,121,46,95,95,101, -- 110,116,101,114,95,95,99,1,0,0,0,0,0,0,0,3, -- 0,0,0,17,0,0,0,71,0,0,0,115,121,0,0,0, -- 122,101,0,124,0,0,106,0,0,125,2,0,116,1,0,100, -- 1,0,100,2,0,132,0,0,124,1,0,68,131,1,0,131, -- 1,0,114,78,0,121,17,0,116,2,0,106,3,0,124,2, -- 0,106,4,0,61,87,113,100,0,4,116,5,0,107,10,0, -- 114,74,0,1,1,1,89,113,100,0,88,110,22,0,116,6, -- 0,100,3,0,124,2,0,106,4,0,124,2,0,106,7,0, -- 131,3,0,1,87,100,0,0,100,4,0,124,0,0,106,0, -- 0,95,8,0,88,100,0,0,83,41,5,78,99,1,0,0, -- 0,0,0,0,0,2,0,0,0,3,0,0,0,115,0,0, -- 0,115,27,0,0,0,124,0,0,93,17,0,125,1,0,124, -- 1,0,100,0,0,107,9,0,86,1,113,3,0,100,0,0, -- 83,41,1,78,114,4,0,0,0,41,2,114,22,0,0,0, -- 114,76,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,77,0,0,0,230,2,0,0,115,2,0, -- 0,0,6,0,122,45,95,105,110,115,116,97,108,108,101,100, -- 95,115,97,102,101,108,121,46,95,95,101,120,105,116,95,95, -- 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, -- 112,114,62,122,18,105,109,112,111,114,116,32,123,33,114,125, -- 32,35,32,123,33,114,125,70,41,9,114,214,0,0,0,114, -- 78,0,0,0,114,7,0,0,0,114,73,0,0,0,114,67, -- 0,0,0,114,79,0,0,0,114,152,0,0,0,114,169,0, -- 0,0,114,215,0,0,0,41,3,114,71,0,0,0,114,80, -- 0,0,0,114,177,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,81,0,0,0,227,2,0,0, -- 115,18,0,0,0,0,1,3,1,9,1,25,1,3,1,17, -- 1,13,1,8,2,26,2,122,26,95,105,110,115,116,97,108, -- 108,101,100,95,115,97,102,101,108,121,46,95,95,101,120,105, -- 116,95,95,78,41,6,114,57,0,0,0,114,56,0,0,0, -- 114,58,0,0,0,114,72,0,0,0,114,75,0,0,0,114, -- 81,0,0,0,114,4,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,212,0,0,0,214,2,0, -- 0,115,6,0,0,0,12,2,12,4,12,7,114,212,0,0, -- 0,99,0,0,0,0,0,0,0,0,0,0,0,0,8,0, -- 0,0,64,0,0,0,115,172,0,0,0,101,0,0,90,1, -- 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, -- 100,3,0,100,4,0,100,3,0,100,5,0,100,3,0,100, -- 6,0,100,7,0,132,0,3,90,4,0,100,8,0,100,9, -- 0,132,0,0,90,5,0,100,10,0,100,11,0,132,0,0, -- 90,6,0,101,7,0,100,12,0,100,13,0,132,0,0,131, -- 1,0,90,8,0,101,8,0,106,9,0,100,14,0,100,13, -- 0,132,0,0,131,1,0,90,8,0,101,7,0,100,15,0, -- 100,16,0,132,0,0,131,1,0,90,10,0,101,7,0,100, -- 17,0,100,18,0,132,0,0,131,1,0,90,11,0,101,11, -- 0,106,9,0,100,19,0,100,18,0,132,0,0,131,1,0, -- 90,11,0,100,3,0,83,41,20,218,10,77,111,100,117,108, -- 101,83,112,101,99,97,208,5,0,0,84,104,101,32,115,112, -- 101,99,105,102,105,99,97,116,105,111,110,32,102,111,114,32, -- 97,32,109,111,100,117,108,101,44,32,117,115,101,100,32,102, -- 111,114,32,108,111,97,100,105,110,103,46,10,10,32,32,32, -- 32,65,32,109,111,100,117,108,101,39,115,32,115,112,101,99, -- 32,105,115,32,116,104,101,32,115,111,117,114,99,101,32,102, -- 111,114,32,105,110,102,111,114,109,97,116,105,111,110,32,97, -- 98,111,117,116,32,116,104,101,32,109,111,100,117,108,101,46, -- 32,32,70,111,114,10,32,32,32,32,100,97,116,97,32,97, -- 115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116, -- 104,101,32,109,111,100,117,108,101,44,32,105,110,99,108,117, -- 100,105,110,103,32,115,111,117,114,99,101,44,32,117,115,101, -- 32,116,104,101,32,115,112,101,99,39,115,10,32,32,32,32, -- 108,111,97,100,101,114,46,10,10,32,32,32,32,96,110,97, -- 109,101,96,32,105,115,32,116,104,101,32,97,98,115,111,108, -- 117,116,101,32,110,97,109,101,32,111,102,32,116,104,101,32, -- 109,111,100,117,108,101,46,32,32,96,108,111,97,100,101,114, -- 96,32,105,115,32,116,104,101,32,108,111,97,100,101,114,10, -- 32,32,32,32,116,111,32,117,115,101,32,119,104,101,110,32, -- 108,111,97,100,105,110,103,32,116,104,101,32,109,111,100,117, -- 108,101,46,32,32,96,112,97,114,101,110,116,96,32,105,115, -- 32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101, -- 10,32,32,32,32,112,97,99,107,97,103,101,32,116,104,101, -- 32,109,111,100,117,108,101,32,105,115,32,105,110,46,32,32, -- 84,104,101,32,112,97,114,101,110,116,32,105,115,32,100,101, -- 114,105,118,101,100,32,102,114,111,109,32,116,104,101,32,110, -- 97,109,101,46,10,10,32,32,32,32,96,105,115,95,112,97, -- 99,107,97,103,101,96,32,100,101,116,101,114,109,105,110,101, -- 115,32,105,102,32,116,104,101,32,109,111,100,117,108,101,32, -- 105,115,32,99,111,110,115,105,100,101,114,101,100,32,97,32, -- 112,97,99,107,97,103,101,32,111,114,10,32,32,32,32,110, -- 111,116,46,32,32,79,110,32,109,111,100,117,108,101,115,32, -- 116,104,105,115,32,105,115,32,114,101,102,108,101,99,116,101, -- 100,32,98,121,32,116,104,101,32,96,95,95,112,97,116,104, -- 95,95,96,32,97,116,116,114,105,98,117,116,101,46,10,10, -- 32,32,32,32,96,111,114,105,103,105,110,96,32,105,115,32, -- 116,104,101,32,115,112,101,99,105,102,105,99,32,108,111,99, -- 97,116,105,111,110,32,117,115,101,100,32,98,121,32,116,104, -- 101,32,108,111,97,100,101,114,32,102,114,111,109,32,119,104, -- 105,99,104,32,116,111,10,32,32,32,32,108,111,97,100,32, -- 116,104,101,32,109,111,100,117,108,101,44,32,105,102,32,116, -- 104,97,116,32,105,110,102,111,114,109,97,116,105,111,110,32, -- 105,115,32,97,118,97,105,108,97,98,108,101,46,32,32,87, -- 104,101,110,32,102,105,108,101,110,97,109,101,32,105,115,10, -- 32,32,32,32,115,101,116,44,32,111,114,105,103,105,110,32, -- 119,105,108,108,32,109,97,116,99,104,46,10,10,32,32,32, -- 32,96,104,97,115,95,108,111,99,97,116,105,111,110,96,32, -- 105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,97, -- 32,115,112,101,99,39,115,32,34,111,114,105,103,105,110,34, -- 32,114,101,102,108,101,99,116,115,32,97,32,108,111,99,97, -- 116,105,111,110,46,10,32,32,32,32,87,104,101,110,32,116, -- 104,105,115,32,105,115,32,84,114,117,101,44,32,96,95,95, -- 102,105,108,101,95,95,96,32,97,116,116,114,105,98,117,116, -- 101,32,111,102,32,116,104,101,32,109,111,100,117,108,101,32, -- 105,115,32,115,101,116,46,10,10,32,32,32,32,96,99,97, -- 99,104,101,100,96,32,105,115,32,116,104,101,32,108,111,99, -- 97,116,105,111,110,32,111,102,32,116,104,101,32,99,97,99, -- 104,101,100,32,98,121,116,101,99,111,100,101,32,102,105,108, -- 101,44,32,105,102,32,97,110,121,46,32,32,73,116,10,32, -- 32,32,32,99,111,114,114,101,115,112,111,110,100,115,32,116, -- 111,32,116,104,101,32,96,95,95,99,97,99,104,101,100,95, -- 95,96,32,97,116,116,114,105,98,117,116,101,46,10,10,32, -- 32,32,32,96,115,117,98,109,111,100,117,108,101,95,115,101, -- 97,114,99,104,95,108,111,99,97,116,105,111,110,115,96,32, -- 105,115,32,116,104,101,32,115,101,113,117,101,110,99,101,32, -- 111,102,32,112,97,116,104,32,101,110,116,114,105,101,115,32, -- 116,111,10,32,32,32,32,115,101,97,114,99,104,32,119,104, -- 101,110,32,105,109,112,111,114,116,105,110,103,32,115,117,98, -- 109,111,100,117,108,101,115,46,32,32,73,102,32,115,101,116, -- 44,32,105,115,95,112,97,99,107,97,103,101,32,115,104,111, -- 117,108,100,32,98,101,10,32,32,32,32,84,114,117,101,45, -- 45,97,110,100,32,70,97,108,115,101,32,111,116,104,101,114, -- 119,105,115,101,46,10,10,32,32,32,32,80,97,99,107,97, -- 103,101,115,32,97,114,101,32,115,105,109,112,108,121,32,109, -- 111,100,117,108,101,115,32,116,104,97,116,32,40,109,97,121, -- 41,32,104,97,118,101,32,115,117,98,109,111,100,117,108,101, -- 115,46,32,32,73,102,32,97,32,115,112,101,99,10,32,32, -- 32,32,104,97,115,32,97,32,110,111,110,45,78,111,110,101, -- 32,118,97,108,117,101,32,105,110,32,96,115,117,98,109,111, -- 100,117,108,101,95,115,101,97,114,99,104,95,108,111,99,97, -- 116,105,111,110,115,96,44,32,116,104,101,32,105,109,112,111, -- 114,116,10,32,32,32,32,115,121,115,116,101,109,32,119,105, -- 108,108,32,99,111,110,115,105,100,101,114,32,109,111,100,117, -- 108,101,115,32,108,111,97,100,101,100,32,102,114,111,109,32, -- 116,104,101,32,115,112,101,99,32,97,115,32,112,97,99,107, -- 97,103,101,115,46,10,10,32,32,32,32,79,110,108,121,32, -- 102,105,110,100,101,114,115,32,40,115,101,101,32,105,109,112, -- 111,114,116,108,105,98,46,97,98,99,46,77,101,116,97,80, -- 97,116,104,70,105,110,100,101,114,32,97,110,100,10,32,32, -- 32,32,105,109,112,111,114,116,108,105,98,46,97,98,99,46, -- 80,97,116,104,69,110,116,114,121,70,105,110,100,101,114,41, -- 32,115,104,111,117,108,100,32,109,111,100,105,102,121,32,77, -- 111,100,117,108,101,83,112,101,99,32,105,110,115,116,97,110, -- 99,101,115,46,10,10,32,32,32,32,218,6,111,114,105,103, -- 105,110,78,218,12,108,111,97,100,101,114,95,115,116,97,116, -- 101,218,10,105,115,95,112,97,99,107,97,103,101,99,3,0, -- 0,0,3,0,0,0,6,0,0,0,2,0,0,0,67,0, -- 0,0,115,79,0,0,0,124,1,0,124,0,0,95,0,0, -- 124,2,0,124,0,0,95,1,0,124,3,0,124,0,0,95, -- 2,0,124,4,0,124,0,0,95,3,0,124,5,0,114,48, -- 0,103,0,0,110,3,0,100,0,0,124,0,0,95,4,0, -- 100,1,0,124,0,0,95,5,0,100,0,0,124,0,0,95, -- 6,0,100,0,0,83,41,2,78,70,41,7,114,67,0,0, -- 0,114,169,0,0,0,114,217,0,0,0,114,218,0,0,0, -- 218,26,115,117,98,109,111,100,117,108,101,95,115,101,97,114, -- 99,104,95,108,111,99,97,116,105,111,110,115,218,13,95,115, -- 101,116,95,102,105,108,101,97,116,116,114,218,7,95,99,97, -- 99,104,101,100,41,6,114,71,0,0,0,114,67,0,0,0, -- 114,169,0,0,0,114,217,0,0,0,114,218,0,0,0,114, -- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,72,0,0,0,22,3,0,0,115,14,0,0, -- 0,0,2,9,1,9,1,9,1,9,1,21,3,9,1,122, -- 19,77,111,100,117,108,101,83,112,101,99,46,95,95,105,110, -- 105,116,95,95,99,1,0,0,0,0,0,0,0,2,0,0, -- 0,4,0,0,0,67,0,0,0,115,153,0,0,0,100,1, -- 0,106,0,0,124,0,0,106,1,0,131,1,0,100,2,0, -- 106,0,0,124,0,0,106,2,0,131,1,0,103,2,0,125, -- 1,0,124,0,0,106,3,0,100,0,0,107,9,0,114,79, -- 0,124,1,0,106,4,0,100,3,0,106,0,0,124,0,0, -- 106,3,0,131,1,0,131,1,0,1,110,0,0,124,0,0, -- 106,5,0,100,0,0,107,9,0,114,122,0,124,1,0,106, -- 4,0,100,4,0,106,0,0,124,0,0,106,5,0,131,1, -- 0,131,1,0,1,110,0,0,100,5,0,106,0,0,124,0, -- 0,106,6,0,106,7,0,100,6,0,106,8,0,124,1,0, -- 131,1,0,131,2,0,83,41,7,78,122,9,110,97,109,101, -- 61,123,33,114,125,122,11,108,111,97,100,101,114,61,123,33, -- 114,125,122,11,111,114,105,103,105,110,61,123,33,114,125,122, -- 29,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, -- 104,95,108,111,99,97,116,105,111,110,115,61,123,125,122,6, -- 123,125,40,123,125,41,122,2,44,32,41,9,114,47,0,0, -- 0,114,67,0,0,0,114,169,0,0,0,114,217,0,0,0, -- 218,6,97,112,112,101,110,100,114,220,0,0,0,218,9,95, -- 95,99,108,97,115,115,95,95,114,57,0,0,0,114,26,0, -- 0,0,41,2,114,71,0,0,0,114,80,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,101,0, -- 0,0,34,3,0,0,115,16,0,0,0,0,1,15,1,21, -- 1,15,1,28,1,15,1,6,1,22,1,122,19,77,111,100, -- 117,108,101,83,112,101,99,46,95,95,114,101,112,114,95,95, -- 99,2,0,0,0,0,0,0,0,3,0,0,0,13,0,0, -- 0,67,0,0,0,115,145,0,0,0,124,0,0,106,0,0, -- 125,2,0,121,107,0,124,0,0,106,1,0,124,1,0,106, -- 1,0,107,2,0,111,114,0,124,0,0,106,2,0,124,1, -- 0,106,2,0,107,2,0,111,114,0,124,0,0,106,3,0, -- 124,1,0,106,3,0,107,2,0,111,114,0,124,2,0,124, -- 1,0,106,0,0,107,2,0,111,114,0,124,0,0,106,4, -- 0,124,1,0,106,4,0,107,2,0,111,114,0,124,0,0, -- 106,5,0,124,1,0,106,5,0,107,2,0,83,87,110,22, -- 0,4,116,6,0,107,10,0,114,140,0,1,1,1,100,1, -- 0,83,89,110,1,0,88,100,0,0,83,41,2,78,70,41, -- 7,114,220,0,0,0,114,67,0,0,0,114,169,0,0,0, -- 114,217,0,0,0,218,6,99,97,99,104,101,100,218,12,104, -- 97,115,95,108,111,99,97,116,105,111,110,114,209,0,0,0, -- 41,3,114,71,0,0,0,218,5,111,116,104,101,114,218,4, -- 115,109,115,108,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,6,95,95,101,113,95,95,44,3,0,0,115, -- 20,0,0,0,0,1,9,1,3,1,18,1,18,1,18,1, -- 15,1,18,1,20,1,13,1,122,17,77,111,100,117,108,101, -- 83,112,101,99,46,95,95,101,113,95,95,99,1,0,0,0, -- 0,0,0,0,2,0,0,0,12,0,0,0,67,0,0,0, -- 115,158,0,0,0,124,0,0,106,0,0,100,0,0,107,8, -- 0,114,151,0,124,0,0,106,1,0,100,0,0,107,9,0, -- 114,151,0,124,0,0,106,2,0,114,151,0,124,0,0,106, -- 1,0,125,1,0,124,1,0,106,3,0,116,4,0,116,5, -- 0,131,1,0,131,1,0,114,112,0,121,19,0,116,6,0, -- 124,1,0,131,1,0,124,0,0,95,0,0,87,113,145,0, -- 4,116,7,0,107,10,0,114,108,0,1,1,1,89,113,145, -- 0,88,113,148,0,124,1,0,106,3,0,116,4,0,116,8, -- 0,131,1,0,131,1,0,114,148,0,124,1,0,124,0,0, -- 95,0,0,113,148,0,113,151,0,110,0,0,124,0,0,106, -- 0,0,83,41,1,78,41,9,114,222,0,0,0,114,217,0, -- 0,0,114,221,0,0,0,218,8,101,110,100,115,119,105,116, -- 104,218,5,116,117,112,108,101,114,134,0,0,0,114,132,0, -- 0,0,114,124,0,0,0,218,17,66,89,84,69,67,79,68, -- 69,95,83,85,70,70,73,88,69,83,41,2,114,71,0,0, -- 0,114,131,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,225,0,0,0,56,3,0,0,115,22, -- 0,0,0,0,2,15,1,24,1,9,1,21,1,3,1,19, -- 1,13,1,8,1,21,1,18,1,122,17,77,111,100,117,108, -- 101,83,112,101,99,46,99,97,99,104,101,100,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, -- 0,115,13,0,0,0,124,1,0,124,0,0,95,0,0,100, -- 0,0,83,41,1,78,41,1,114,222,0,0,0,41,2,114, -- 71,0,0,0,114,225,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,225,0,0,0,70,3,0, -- 0,115,2,0,0,0,0,2,99,1,0,0,0,0,0,0, -- 0,1,0,0,0,2,0,0,0,67,0,0,0,115,46,0, -- 0,0,124,0,0,106,0,0,100,1,0,107,8,0,114,35, -- 0,124,0,0,106,1,0,106,2,0,100,2,0,131,1,0, -- 100,3,0,25,83,124,0,0,106,1,0,83,100,1,0,83, -- 41,4,122,32,84,104,101,32,110,97,109,101,32,111,102,32, -- 116,104,101,32,109,111,100,117,108,101,39,115,32,112,97,114, -- 101,110,116,46,78,114,116,0,0,0,114,84,0,0,0,41, -- 3,114,220,0,0,0,114,67,0,0,0,114,32,0,0,0, -- 41,1,114,71,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,6,112,97,114,101,110,116,74,3, -- 0,0,115,6,0,0,0,0,3,15,1,20,2,122,17,77, -- 111,100,117,108,101,83,112,101,99,46,112,97,114,101,110,116, -- 99,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0, -- 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, -- 83,41,1,78,41,1,114,221,0,0,0,41,1,114,71,0, ++ 2,0,1,124,2,0,83,41,4,122,155,84,114,121,32,116, ++ 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32, ++ 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, ++ 100,32,109,111,100,117,108,101,32,98,121,32,100,101,108,101, ++ 103,97,116,105,110,103,32,116,111,10,32,32,32,32,115,101, ++ 108,102,46,102,105,110,100,95,108,111,97,100,101,114,40,41, ++ 46,10,10,32,32,32,32,84,104,105,115,32,109,101,116,104, ++ 111,100,32,105,115,32,100,101,112,114,101,99,97,116,101,100, ++ 32,105,110,32,102,97,118,111,114,32,111,102,32,102,105,110, ++ 100,101,114,46,102,105,110,100,95,115,112,101,99,40,41,46, ++ 10,10,32,32,32,32,78,122,44,78,111,116,32,105,109,112, ++ 111,114,116,105,110,103,32,100,105,114,101,99,116,111,114,121, ++ 32,123,125,58,32,109,105,115,115,105,110,103,32,95,95,105, ++ 110,105,116,95,95,114,60,0,0,0,41,6,218,11,102,105, ++ 110,100,95,108,111,97,100,101,114,114,32,0,0,0,114,61, ++ 0,0,0,114,62,0,0,0,114,48,0,0,0,218,13,73, ++ 109,112,111,114,116,87,97,114,110,105,110,103,41,5,114,109, ++ 0,0,0,218,8,102,117,108,108,110,97,109,101,218,6,108, ++ 111,97,100,101,114,218,8,112,111,114,116,105,111,110,115,218, ++ 3,109,115,103,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,17,95,102,105,110,100,95,109,111,100,117,108, ++ 101,95,115,104,105,109,143,1,0,0,115,10,0,0,0,0, ++ 10,21,1,24,1,6,1,29,1,114,131,0,0,0,99,4, ++ 0,0,0,0,0,0,0,11,0,0,0,19,0,0,0,67, ++ 0,0,0,115,240,1,0,0,105,0,0,125,4,0,124,2, ++ 0,100,1,0,107,9,0,114,31,0,124,2,0,124,4,0, ++ 100,2,0,60,110,6,0,100,3,0,125,2,0,124,3,0, ++ 100,1,0,107,9,0,114,59,0,124,3,0,124,4,0,100, ++ 4,0,60,124,0,0,100,1,0,100,5,0,133,2,0,25, ++ 125,5,0,124,0,0,100,5,0,100,6,0,133,2,0,25, ++ 125,6,0,124,0,0,100,6,0,100,7,0,133,2,0,25, ++ 125,7,0,124,5,0,116,0,0,107,3,0,114,168,0,100, ++ 8,0,106,1,0,124,2,0,124,5,0,131,2,0,125,8, ++ 0,116,2,0,100,9,0,124,8,0,131,2,0,1,116,3, ++ 0,124,8,0,124,4,0,141,1,0,130,1,0,110,119,0, ++ 116,4,0,124,6,0,131,1,0,100,5,0,107,3,0,114, ++ 229,0,100,10,0,106,1,0,124,2,0,131,1,0,125,8, ++ 0,116,2,0,100,9,0,124,8,0,131,2,0,1,116,5, ++ 0,124,8,0,131,1,0,130,1,0,110,58,0,116,4,0, ++ 124,7,0,131,1,0,100,5,0,107,3,0,114,31,1,100, ++ 11,0,106,1,0,124,2,0,131,1,0,125,8,0,116,2, ++ 0,100,9,0,124,8,0,131,2,0,1,116,5,0,124,8, ++ 0,131,1,0,130,1,0,124,1,0,100,1,0,107,9,0, ++ 114,226,1,121,20,0,116,6,0,124,1,0,100,12,0,25, ++ 131,1,0,125,9,0,87,110,18,0,4,116,7,0,107,10, ++ 0,114,83,1,1,1,1,89,110,62,0,88,116,8,0,124, ++ 6,0,131,1,0,124,9,0,107,3,0,114,145,1,100,13, ++ 0,106,1,0,124,2,0,131,1,0,125,8,0,116,2,0, ++ 100,9,0,124,8,0,131,2,0,1,116,3,0,124,8,0, ++ 124,4,0,141,1,0,130,1,0,121,18,0,124,1,0,100, ++ 14,0,25,100,15,0,64,125,10,0,87,110,18,0,4,116, ++ 7,0,107,10,0,114,183,1,1,1,1,89,110,43,0,88, ++ 116,8,0,124,7,0,131,1,0,124,10,0,107,3,0,114, ++ 226,1,116,3,0,100,13,0,106,1,0,124,2,0,131,1, ++ 0,124,4,0,141,1,0,130,1,0,124,0,0,100,7,0, ++ 100,1,0,133,2,0,25,83,41,16,97,122,1,0,0,86, ++ 97,108,105,100,97,116,101,32,116,104,101,32,104,101,97,100, ++ 101,114,32,111,102,32,116,104,101,32,112,97,115,115,101,100, ++ 45,105,110,32,98,121,116,101,99,111,100,101,32,97,103,97, ++ 105,110,115,116,32,115,111,117,114,99,101,95,115,116,97,116, ++ 115,32,40,105,102,10,32,32,32,32,103,105,118,101,110,41, ++ 32,97,110,100,32,114,101,116,117,114,110,105,110,103,32,116, ++ 104,101,32,98,121,116,101,99,111,100,101,32,116,104,97,116, ++ 32,99,97,110,32,98,101,32,99,111,109,112,105,108,101,100, ++ 32,98,121,32,99,111,109,112,105,108,101,40,41,46,10,10, ++ 32,32,32,32,65,108,108,32,111,116,104,101,114,32,97,114, ++ 103,117,109,101,110,116,115,32,97,114,101,32,117,115,101,100, ++ 32,116,111,32,101,110,104,97,110,99,101,32,101,114,114,111, ++ 114,32,114,101,112,111,114,116,105,110,103,46,10,10,32,32, ++ 32,32,73,109,112,111,114,116,69,114,114,111,114,32,105,115, ++ 32,114,97,105,115,101,100,32,119,104,101,110,32,116,104,101, ++ 32,109,97,103,105,99,32,110,117,109,98,101,114,32,105,115, ++ 32,105,110,99,111,114,114,101,99,116,32,111,114,32,116,104, ++ 101,32,98,121,116,101,99,111,100,101,32,105,115,10,32,32, ++ 32,32,102,111,117,110,100,32,116,111,32,98,101,32,115,116, ++ 97,108,101,46,32,69,79,70,69,114,114,111,114,32,105,115, ++ 32,114,97,105,115,101,100,32,119,104,101,110,32,116,104,101, ++ 32,100,97,116,97,32,105,115,32,102,111,117,110,100,32,116, ++ 111,32,98,101,10,32,32,32,32,116,114,117,110,99,97,116, ++ 101,100,46,10,10,32,32,32,32,78,114,107,0,0,0,122, ++ 10,60,98,121,116,101,99,111,100,101,62,114,36,0,0,0, ++ 114,13,0,0,0,233,8,0,0,0,233,12,0,0,0,122, ++ 30,98,97,100,32,109,97,103,105,99,32,110,117,109,98,101, ++ 114,32,105,110,32,123,33,114,125,58,32,123,33,114,125,122, ++ 2,123,125,122,43,114,101,97,99,104,101,100,32,69,79,70, ++ 32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,116, ++ 105,109,101,115,116,97,109,112,32,105,110,32,123,33,114,125, ++ 122,48,114,101,97,99,104,101,100,32,69,79,70,32,119,104, ++ 105,108,101,32,114,101,97,100,105,110,103,32,115,105,122,101, ++ 32,111,102,32,115,111,117,114,99,101,32,105,110,32,123,33, ++ 114,125,218,5,109,116,105,109,101,122,26,98,121,116,101,99, ++ 111,100,101,32,105,115,32,115,116,97,108,101,32,102,111,114, ++ 32,123,33,114,125,218,4,115,105,122,101,108,3,0,0,0, ++ 255,127,255,127,3,0,41,9,218,12,77,65,71,73,67,95, ++ 78,85,77,66,69,82,114,48,0,0,0,114,106,0,0,0, ++ 114,108,0,0,0,114,32,0,0,0,218,8,69,79,70,69, ++ 114,114,111,114,114,15,0,0,0,218,8,75,101,121,69,114, ++ 114,111,114,114,20,0,0,0,41,11,114,54,0,0,0,218, ++ 12,115,111,117,114,99,101,95,115,116,97,116,115,114,107,0, ++ 0,0,114,36,0,0,0,90,11,101,120,99,95,100,101,116, ++ 97,105,108,115,90,5,109,97,103,105,99,90,13,114,97,119, ++ 95,116,105,109,101,115,116,97,109,112,90,8,114,97,119,95, ++ 115,105,122,101,114,76,0,0,0,218,12,115,111,117,114,99, ++ 101,95,109,116,105,109,101,218,11,115,111,117,114,99,101,95, ++ 115,105,122,101,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,25,95,118,97,108,105,100,97,116,101,95,98, ++ 121,116,101,99,111,100,101,95,104,101,97,100,101,114,160,1, ++ 0,0,115,76,0,0,0,0,11,6,1,12,1,13,3,6, ++ 1,12,1,10,1,16,1,16,1,16,1,12,1,18,1,13, ++ 1,18,1,18,1,15,1,13,1,15,1,18,1,15,1,13, ++ 1,12,1,12,1,3,1,20,1,13,1,5,2,18,1,15, ++ 1,13,1,15,1,3,1,18,1,13,1,5,2,18,1,15, ++ 1,9,1,114,142,0,0,0,99,4,0,0,0,0,0,0, ++ 0,5,0,0,0,6,0,0,0,67,0,0,0,115,112,0, ++ 0,0,116,0,0,106,1,0,124,0,0,131,1,0,125,4, ++ 0,116,2,0,124,4,0,116,3,0,131,2,0,114,75,0, ++ 116,4,0,100,1,0,124,2,0,131,2,0,1,124,3,0, ++ 100,2,0,107,9,0,114,71,0,116,5,0,106,6,0,124, ++ 4,0,124,3,0,131,2,0,1,124,4,0,83,116,7,0, ++ 100,3,0,106,8,0,124,2,0,131,1,0,100,4,0,124, ++ 1,0,100,5,0,124,2,0,131,1,2,130,1,0,100,2, ++ 0,83,41,6,122,60,67,111,109,112,105,108,101,32,98,121, ++ 116,101,99,111,100,101,32,97,115,32,114,101,116,117,114,110, ++ 101,100,32,98,121,32,95,118,97,108,105,100,97,116,101,95, ++ 98,121,116,101,99,111,100,101,95,104,101,97,100,101,114,40, ++ 41,46,122,21,99,111,100,101,32,111,98,106,101,99,116,32, ++ 102,114,111,109,32,123,33,114,125,78,122,23,78,111,110,45, ++ 99,111,100,101,32,111,98,106,101,99,116,32,105,110,32,123, ++ 33,114,125,114,107,0,0,0,114,36,0,0,0,41,9,218, ++ 7,109,97,114,115,104,97,108,90,5,108,111,97,100,115,218, ++ 10,105,115,105,110,115,116,97,110,99,101,218,10,95,99,111, ++ 100,101,95,116,121,112,101,114,106,0,0,0,218,4,95,105, ++ 109,112,90,16,95,102,105,120,95,99,111,95,102,105,108,101, ++ 110,97,109,101,114,108,0,0,0,114,48,0,0,0,41,5, ++ 114,54,0,0,0,114,107,0,0,0,114,90,0,0,0,114, ++ 91,0,0,0,218,4,99,111,100,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,17,95,99,111,109,112, ++ 105,108,101,95,98,121,116,101,99,111,100,101,215,1,0,0, ++ 115,16,0,0,0,0,2,15,1,15,1,13,1,12,1,16, ++ 1,4,2,18,1,114,148,0,0,0,114,60,0,0,0,99, + 3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, +- 67,0,0,0,115,45,0,0,0,124,0,0,106,0,0,124, +- 1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,1, +- 0,107,9,0,114,37,0,124,3,0,106,1,0,83,100,1, +- 0,83,100,1,0,83,41,2,122,108,70,105,110,100,32,109, +- 111,100,117,108,101,32,110,97,109,101,100,32,105,110,32,116, +- 104,101,32,114,101,103,105,115,116,114,121,46,10,10,32,32, +- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, +- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, +- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, +- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, +- 32,32,32,32,32,32,78,41,2,114,181,0,0,0,114,127, +- 0,0,0,41,4,114,170,0,0,0,114,126,0,0,0,114, +- 35,0,0,0,114,164,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,11,102,105,110,100,95,109, +- 111,100,117,108,101,114,2,0,0,115,8,0,0,0,0,7, +- 18,1,12,1,7,2,122,33,87,105,110,100,111,119,115,82, +- 101,103,105,115,116,114,121,70,105,110,100,101,114,46,102,105, +- 110,100,95,109,111,100,117,108,101,41,12,114,112,0,0,0, +- 114,111,0,0,0,114,113,0,0,0,114,114,0,0,0,114, +- 175,0,0,0,114,174,0,0,0,114,173,0,0,0,218,11, +- 99,108,97,115,115,109,101,116,104,111,100,114,172,0,0,0, +- 114,178,0,0,0,114,181,0,0,0,114,182,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,168,0,0,0,64,2,0,0,115,20,0,0, +- 0,12,2,6,3,6,3,6,2,6,2,18,7,18,15,3, +- 1,21,15,3,1,114,168,0,0,0,99,0,0,0,0,0, +- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, +- 70,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, +- 100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,90, +- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,100,6, +- 0,100,7,0,132,0,0,90,6,0,100,8,0,100,9,0, +- 132,0,0,90,7,0,100,10,0,83,41,11,218,13,95,76, +- 111,97,100,101,114,66,97,115,105,99,115,122,83,66,97,115, +- 101,32,99,108,97,115,115,32,111,102,32,99,111,109,109,111, +- 110,32,99,111,100,101,32,110,101,101,100,101,100,32,98,121, +- 32,98,111,116,104,32,83,111,117,114,99,101,76,111,97,100, +- 101,114,32,97,110,100,10,32,32,32,32,83,111,117,114,99, +- 101,108,101,115,115,70,105,108,101,76,111,97,100,101,114,46, +- 99,2,0,0,0,0,0,0,0,5,0,0,0,3,0,0, +- 0,67,0,0,0,115,88,0,0,0,116,0,0,124,0,0, +- 106,1,0,124,1,0,131,1,0,131,1,0,100,1,0,25, +- 125,2,0,124,2,0,106,2,0,100,2,0,100,1,0,131, +- 2,0,100,3,0,25,125,3,0,124,1,0,106,3,0,100, +- 2,0,131,1,0,100,4,0,25,125,4,0,124,3,0,100, +- 5,0,107,2,0,111,87,0,124,4,0,100,5,0,107,3, +- 0,83,41,6,122,141,67,111,110,99,114,101,116,101,32,105, +- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, +- 32,73,110,115,112,101,99,116,76,111,97,100,101,114,46,105, +- 115,95,112,97,99,107,97,103,101,32,98,121,32,99,104,101, +- 99,107,105,110,103,32,105,102,10,32,32,32,32,32,32,32, +- 32,116,104,101,32,112,97,116,104,32,114,101,116,117,114,110, +- 101,100,32,98,121,32,103,101,116,95,102,105,108,101,110,97, +- 109,101,32,104,97,115,32,97,32,102,105,108,101,110,97,109, +- 101,32,111,102,32,39,95,95,105,110,105,116,95,95,46,112, +- 121,39,46,114,29,0,0,0,114,58,0,0,0,114,59,0, +- 0,0,114,56,0,0,0,218,8,95,95,105,110,105,116,95, +- 95,41,4,114,38,0,0,0,114,157,0,0,0,114,34,0, +- 0,0,114,32,0,0,0,41,5,114,108,0,0,0,114,126, +- 0,0,0,114,94,0,0,0,90,13,102,105,108,101,110,97, +- 109,101,95,98,97,115,101,90,9,116,97,105,108,95,110,97, +- 109,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,159,0,0,0,133,2,0,0,115,8,0,0,0,0, +- 3,25,1,22,1,19,1,122,24,95,76,111,97,100,101,114, +- 66,97,115,105,99,115,46,105,115,95,112,97,99,107,97,103, +- 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, +- 0,0,67,0,0,0,115,4,0,0,0,100,1,0,83,41, +- 2,122,42,85,115,101,32,100,101,102,97,117,108,116,32,115, +- 101,109,97,110,116,105,99,115,32,102,111,114,32,109,111,100, +- 117,108,101,32,99,114,101,97,116,105,111,110,46,78,114,4, +- 0,0,0,41,2,114,108,0,0,0,114,164,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,13, +- 99,114,101,97,116,101,95,109,111,100,117,108,101,141,2,0, +- 0,115,0,0,0,0,122,27,95,76,111,97,100,101,114,66, +- 97,115,105,99,115,46,99,114,101,97,116,101,95,109,111,100, +- 117,108,101,99,2,0,0,0,0,0,0,0,3,0,0,0, +- 4,0,0,0,67,0,0,0,115,80,0,0,0,124,0,0, +- 106,0,0,124,1,0,106,1,0,131,1,0,125,2,0,124, +- 2,0,100,1,0,107,8,0,114,54,0,116,2,0,100,2, +- 0,106,3,0,124,1,0,106,1,0,131,1,0,131,1,0, +- 130,1,0,116,4,0,106,5,0,116,6,0,124,2,0,124, +- 1,0,106,7,0,131,3,0,1,100,1,0,83,41,3,122, +- 19,69,120,101,99,117,116,101,32,116,104,101,32,109,111,100, +- 117,108,101,46,78,122,52,99,97,110,110,111,116,32,108,111, +- 97,100,32,109,111,100,117,108,101,32,123,33,114,125,32,119, +- 104,101,110,32,103,101,116,95,99,111,100,101,40,41,32,114, +- 101,116,117,114,110,115,32,78,111,110,101,41,8,218,8,103, +- 101,116,95,99,111,100,101,114,112,0,0,0,114,107,0,0, +- 0,114,47,0,0,0,114,121,0,0,0,218,25,95,99,97, +- 108,108,95,119,105,116,104,95,102,114,97,109,101,115,95,114, +- 101,109,111,118,101,100,218,4,101,120,101,99,114,118,0,0, +- 0,41,3,114,108,0,0,0,218,6,109,111,100,117,108,101, +- 114,146,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,11,101,120,101,99,95,109,111,100,117,108, +- 101,144,2,0,0,115,10,0,0,0,0,2,18,1,12,1, +- 9,1,15,1,122,25,95,76,111,97,100,101,114,66,97,115, +- 105,99,115,46,101,120,101,99,95,109,111,100,117,108,101,99, +- 2,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0, +- 67,0,0,0,115,16,0,0,0,116,0,0,106,1,0,124, +- 0,0,124,1,0,131,2,0,83,41,1,78,41,2,114,121, +- 0,0,0,218,17,95,108,111,97,100,95,109,111,100,117,108, +- 101,95,115,104,105,109,41,2,114,108,0,0,0,114,126,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,226,0,0,0,82,3,0,0,115,2,0,0,0,0, -- 2,122,23,77,111,100,117,108,101,83,112,101,99,46,104,97, -- 115,95,108,111,99,97,116,105,111,110,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, -- 19,0,0,0,116,0,0,124,1,0,131,1,0,124,0,0, -- 95,1,0,100,0,0,83,41,1,78,41,2,218,4,98,111, -- 111,108,114,221,0,0,0,41,2,114,71,0,0,0,218,5, -- 118,97,108,117,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,226,0,0,0,86,3,0,0,115,2,0, -- 0,0,0,2,41,12,114,57,0,0,0,114,56,0,0,0, -- 114,58,0,0,0,114,59,0,0,0,114,72,0,0,0,114, -- 101,0,0,0,114,229,0,0,0,218,8,112,114,111,112,101, -- 114,116,121,114,225,0,0,0,218,6,115,101,116,116,101,114, -- 114,233,0,0,0,114,226,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,216, -- 0,0,0,241,2,0,0,115,20,0,0,0,12,35,6,2, -- 15,1,15,11,12,10,12,12,18,14,21,4,18,8,18,4, -- 114,216,0,0,0,114,217,0,0,0,114,219,0,0,0,99, -- 2,0,0,0,2,0,0,0,5,0,0,0,15,0,0,0, -- 67,0,0,0,115,193,0,0,0,116,0,0,124,1,0,100, -- 1,0,131,2,0,114,83,0,124,3,0,100,2,0,107,8, -- 0,114,43,0,116,1,0,124,0,0,100,3,0,124,1,0, -- 131,1,1,83,124,3,0,114,55,0,103,0,0,110,3,0, -- 100,2,0,125,4,0,116,1,0,124,0,0,100,3,0,124, -- 1,0,100,4,0,124,4,0,131,1,2,83,124,3,0,100, -- 2,0,107,8,0,114,168,0,116,0,0,124,1,0,100,5, -- 0,131,2,0,114,159,0,121,19,0,124,1,0,106,2,0, -- 124,0,0,131,1,0,125,3,0,87,113,165,0,4,116,3, -- 0,107,10,0,114,155,0,1,1,1,100,2,0,125,3,0, -- 89,113,165,0,88,113,168,0,100,6,0,125,3,0,110,0, -- 0,116,4,0,124,0,0,124,1,0,100,7,0,124,2,0, -- 100,5,0,124,3,0,131,2,2,83,41,8,122,53,82,101, -- 116,117,114,110,32,97,32,109,111,100,117,108,101,32,115,112, -- 101,99,32,98,97,115,101,100,32,111,110,32,118,97,114,105, -- 111,117,115,32,108,111,97,100,101,114,32,109,101,116,104,111, -- 100,115,46,218,12,103,101,116,95,102,105,108,101,110,97,109, -- 101,78,114,169,0,0,0,114,220,0,0,0,114,219,0,0, -- 0,70,114,217,0,0,0,41,5,114,60,0,0,0,218,23, -- 115,112,101,99,95,102,114,111,109,95,102,105,108,101,95,108, -- 111,99,97,116,105,111,110,114,219,0,0,0,114,153,0,0, -- 0,114,216,0,0,0,41,5,114,67,0,0,0,114,169,0, -- 0,0,114,217,0,0,0,114,219,0,0,0,90,6,115,101, -- 97,114,99,104,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,173,0,0,0,91,3,0,0,115,28,0,0, -- 0,0,2,15,1,12,1,16,1,18,1,15,1,7,2,12, -- 1,15,1,3,1,19,1,13,1,14,3,9,2,114,173,0, -- 0,0,114,169,0,0,0,114,220,0,0,0,99,2,0,0, -- 0,2,0,0,0,9,0,0,0,19,0,0,0,67,0,0, -- 0,115,110,1,0,0,124,1,0,100,1,0,107,8,0,114, -- 79,0,100,2,0,125,1,0,116,0,0,124,2,0,100,3, -- 0,131,2,0,114,79,0,121,19,0,124,2,0,106,1,0, -- 124,0,0,131,1,0,125,1,0,87,113,76,0,4,116,2, -- 0,107,10,0,114,72,0,1,1,1,89,113,76,0,88,113, -- 79,0,110,0,0,116,3,0,124,0,0,124,2,0,100,4, -- 0,124,1,0,131,2,1,125,4,0,100,5,0,124,4,0, -- 95,4,0,124,2,0,100,1,0,107,8,0,114,203,0,120, -- 79,0,116,5,0,131,0,0,68,93,61,0,92,2,0,125, -- 5,0,125,6,0,124,1,0,106,6,0,116,7,0,124,6, -- 0,131,1,0,131,1,0,114,131,0,124,5,0,124,0,0, -- 124,1,0,131,2,0,125,2,0,124,2,0,124,4,0,95, -- 8,0,80,113,131,0,113,131,0,87,100,1,0,83,110,0, -- 0,124,3,0,116,9,0,107,8,0,114,38,1,116,0,0, -- 124,2,0,100,6,0,131,2,0,114,47,1,121,19,0,124, -- 2,0,106,10,0,124,0,0,131,1,0,125,7,0,87,110, -- 18,0,4,116,2,0,107,10,0,114,13,1,1,1,1,89, -- 113,35,1,88,124,7,0,114,35,1,103,0,0,124,4,0, -- 95,11,0,113,35,1,113,47,1,110,9,0,124,3,0,124, -- 4,0,95,11,0,124,4,0,106,11,0,103,0,0,107,2, -- 0,114,106,1,124,1,0,114,106,1,116,12,0,124,1,0, -- 131,1,0,100,7,0,25,125,8,0,124,4,0,106,11,0, -- 106,13,0,124,8,0,131,1,0,1,113,106,1,110,0,0, -- 124,4,0,83,41,8,97,61,1,0,0,82,101,116,117,114, -- 110,32,97,32,109,111,100,117,108,101,32,115,112,101,99,32, -- 98,97,115,101,100,32,111,110,32,97,32,102,105,108,101,32, -- 108,111,99,97,116,105,111,110,46,10,10,32,32,32,32,84, -- 111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32, -- 116,104,101,32,109,111,100,117,108,101,32,105,115,32,97,32, -- 112,97,99,107,97,103,101,44,32,115,101,116,10,32,32,32, -- 32,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, -- 104,95,108,111,99,97,116,105,111,110,115,32,116,111,32,97, -- 32,108,105,115,116,32,111,102,32,100,105,114,101,99,116,111, -- 114,121,32,112,97,116,104,115,46,32,32,65,110,10,32,32, -- 32,32,101,109,112,116,121,32,108,105,115,116,32,105,115,32, -- 115,117,102,102,105,99,105,101,110,116,44,32,116,104,111,117, -- 103,104,32,105,116,115,32,110,111,116,32,111,116,104,101,114, -- 119,105,115,101,32,117,115,101,102,117,108,32,116,111,32,116, -- 104,101,10,32,32,32,32,105,109,112,111,114,116,32,115,121, -- 115,116,101,109,46,10,10,32,32,32,32,84,104,101,32,108, -- 111,97,100,101,114,32,109,117,115,116,32,116,97,107,101,32, -- 97,32,115,112,101,99,32,97,115,32,105,116,115,32,111,110, -- 108,121,32,95,95,105,110,105,116,95,95,40,41,32,97,114, -- 103,46,10,10,32,32,32,32,78,122,9,60,117,110,107,110, -- 111,119,110,62,114,238,0,0,0,114,217,0,0,0,84,114, -- 219,0,0,0,114,84,0,0,0,41,14,114,60,0,0,0, -- 114,238,0,0,0,114,153,0,0,0,114,216,0,0,0,114, -- 221,0,0,0,218,27,95,103,101,116,95,115,117,112,112,111, -- 114,116,101,100,95,102,105,108,101,95,108,111,97,100,101,114, -- 115,114,230,0,0,0,114,231,0,0,0,114,169,0,0,0, -- 218,9,95,80,79,80,85,76,65,84,69,114,219,0,0,0, -- 114,220,0,0,0,114,38,0,0,0,114,223,0,0,0,41, -- 9,114,67,0,0,0,218,8,108,111,99,97,116,105,111,110, -- 114,169,0,0,0,114,220,0,0,0,114,177,0,0,0,218, -- 12,108,111,97,100,101,114,95,99,108,97,115,115,114,127,0, -- 0,0,114,219,0,0,0,90,7,100,105,114,110,97,109,101, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 239,0,0,0,116,3,0,0,115,60,0,0,0,0,12,12, -- 4,6,1,15,2,3,1,19,1,13,1,11,8,21,1,9, -- 3,12,1,22,1,21,1,15,1,9,1,8,2,7,3,12, -- 2,15,1,3,1,19,1,13,1,5,2,6,1,18,2,9, -- 1,15,1,6,1,16,1,22,2,114,239,0,0,0,99,3, -- 0,0,0,0,0,0,0,8,0,0,0,53,0,0,0,67, -- 0,0,0,115,124,1,0,0,121,13,0,124,0,0,106,0, -- 0,125,3,0,87,110,18,0,4,116,1,0,107,10,0,114, -- 33,0,1,1,1,89,110,17,0,88,124,3,0,100,0,0, -- 107,9,0,114,50,0,124,3,0,83,124,0,0,106,2,0, -- 125,4,0,124,1,0,100,0,0,107,8,0,114,108,0,121, -- 13,0,124,0,0,106,3,0,125,1,0,87,113,108,0,4, -- 116,1,0,107,10,0,114,104,0,1,1,1,89,113,108,0, -- 88,110,0,0,121,13,0,124,0,0,106,4,0,125,5,0, -- 87,110,24,0,4,116,1,0,107,10,0,114,147,0,1,1, -- 1,100,0,0,125,5,0,89,110,1,0,88,124,2,0,100, -- 0,0,107,8,0,114,224,0,124,5,0,100,0,0,107,8, -- 0,114,215,0,121,13,0,124,1,0,106,5,0,125,2,0, -- 87,113,221,0,4,116,1,0,107,10,0,114,211,0,1,1, -- 1,100,0,0,125,2,0,89,113,221,0,88,113,224,0,124, -- 5,0,125,2,0,110,0,0,121,13,0,124,0,0,106,6, -- 0,125,6,0,87,110,24,0,4,116,1,0,107,10,0,114, -- 7,1,1,1,1,100,0,0,125,6,0,89,110,1,0,88, -- 121,19,0,116,7,0,124,0,0,106,8,0,131,1,0,125, -- 7,0,87,110,24,0,4,116,1,0,107,10,0,114,53,1, -- 1,1,1,100,0,0,125,7,0,89,110,1,0,88,116,9, -- 0,124,4,0,124,1,0,100,1,0,124,2,0,131,2,1, -- 125,3,0,124,5,0,100,0,0,107,8,0,114,93,1,100, -- 2,0,110,3,0,100,3,0,124,3,0,95,10,0,124,6, -- 0,124,3,0,95,11,0,124,7,0,124,3,0,95,12,0, -- 124,3,0,83,41,4,78,114,217,0,0,0,70,84,41,13, -- 114,208,0,0,0,114,209,0,0,0,114,57,0,0,0,114, -- 204,0,0,0,114,210,0,0,0,90,7,95,79,82,73,71, -- 73,78,218,10,95,95,99,97,99,104,101,100,95,95,218,4, -- 108,105,115,116,218,8,95,95,112,97,116,104,95,95,114,216, -- 0,0,0,114,221,0,0,0,114,225,0,0,0,114,220,0, -- 0,0,41,8,114,179,0,0,0,114,169,0,0,0,114,217, -- 0,0,0,114,177,0,0,0,114,67,0,0,0,114,242,0, -- 0,0,114,225,0,0,0,114,220,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,17,95,115,112, -- 101,99,95,102,114,111,109,95,109,111,100,117,108,101,180,3, -- 0,0,115,72,0,0,0,0,2,3,1,13,1,13,1,5, -- 2,12,1,4,2,9,1,12,1,3,1,13,1,13,2,8, -- 1,3,1,13,1,13,1,11,1,12,1,12,1,3,1,13, -- 1,13,1,14,2,9,1,3,1,13,1,13,1,11,1,3, -- 1,19,1,13,1,11,2,21,1,27,1,9,1,9,1,114, -- 247,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, -- 0,6,0,0,0,64,0,0,0,115,142,0,0,0,101,0, -- 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, -- 100,2,0,100,3,0,132,0,0,90,4,0,100,4,0,100, -- 5,0,132,0,0,90,5,0,100,6,0,100,7,0,100,8, -- 0,100,9,0,100,10,0,100,11,0,132,0,2,90,6,0, -- 100,12,0,100,13,0,132,0,0,90,7,0,100,14,0,100, -- 15,0,132,0,0,90,8,0,100,16,0,100,17,0,132,0, -- 0,90,9,0,100,18,0,100,19,0,132,0,0,90,10,0, -- 100,20,0,100,21,0,132,0,0,90,11,0,100,22,0,100, -- 23,0,132,0,0,90,12,0,100,24,0,83,41,25,114,174, -- 0,0,0,122,77,67,111,110,118,101,110,105,101,110,99,101, -- 32,119,114,97,112,112,101,114,32,97,114,111,117,110,100,32, -- 115,112,101,99,32,111,98,106,101,99,116,115,32,116,111,32, -- 112,114,111,118,105,100,101,32,115,112,101,99,45,115,112,101, -- 99,105,102,105,99,10,32,32,32,32,109,101,116,104,111,100, -- 115,46,99,2,0,0,0,0,0,0,0,2,0,0,0,2, -- 0,0,0,67,0,0,0,115,13,0,0,0,124,1,0,124, -- 0,0,95,0,0,100,0,0,83,41,1,78,41,1,114,177, -- 0,0,0,41,2,114,71,0,0,0,114,177,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,72, -- 0,0,0,232,3,0,0,115,2,0,0,0,0,1,122,21, -- 95,83,112,101,99,77,101,116,104,111,100,115,46,95,95,105, -- 110,105,116,95,95,99,1,0,0,0,0,0,0,0,3,0, -- 0,0,3,0,0,0,67,0,0,0,115,158,0,0,0,124, -- 0,0,106,0,0,125,1,0,124,1,0,106,1,0,100,1, -- 0,107,8,0,114,30,0,100,2,0,110,6,0,124,1,0, -- 106,1,0,125,2,0,124,1,0,106,2,0,100,1,0,107, -- 8,0,114,104,0,124,1,0,106,3,0,100,1,0,107,8, -- 0,114,82,0,100,3,0,106,4,0,124,2,0,131,1,0, -- 83,100,4,0,106,4,0,124,2,0,124,1,0,106,3,0, -- 131,2,0,83,110,50,0,124,1,0,106,5,0,114,132,0, -- 100,5,0,106,4,0,124,2,0,124,1,0,106,2,0,131, -- 2,0,83,100,6,0,106,4,0,124,1,0,106,1,0,124, -- 1,0,106,2,0,131,2,0,83,100,1,0,83,41,7,122, -- 38,82,101,116,117,114,110,32,116,104,101,32,114,101,112,114, -- 32,116,111,32,117,115,101,32,102,111,114,32,116,104,101,32, -- 109,111,100,117,108,101,46,78,114,206,0,0,0,122,13,60, -- 109,111,100,117,108,101,32,123,33,114,125,62,122,20,60,109, -- 111,100,117,108,101,32,123,33,114,125,32,40,123,33,114,125, -- 41,62,122,23,60,109,111,100,117,108,101,32,123,33,114,125, -- 32,102,114,111,109,32,123,33,114,125,62,122,18,60,109,111, -- 100,117,108,101,32,123,33,114,125,32,40,123,125,41,62,41, -- 6,114,177,0,0,0,114,67,0,0,0,114,217,0,0,0, -- 114,169,0,0,0,114,47,0,0,0,114,226,0,0,0,41, -- 3,114,71,0,0,0,114,177,0,0,0,114,67,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 205,0,0,0,235,3,0,0,115,18,0,0,0,0,3,9, -- 1,30,1,15,1,15,1,13,2,22,2,9,1,19,2,122, -- 24,95,83,112,101,99,77,101,116,104,111,100,115,46,109,111, -- 100,117,108,101,95,114,101,112,114,218,9,95,111,118,101,114, -- 114,105,100,101,70,218,11,95,102,111,114,99,101,95,110,97, -- 109,101,84,99,2,0,0,0,2,0,0,0,6,0,0,0, -- 66,0,0,0,67,0,0,0,115,75,2,0,0,124,0,0, -- 106,0,0,125,4,0,124,2,0,115,45,0,124,3,0,115, -- 45,0,116,1,0,124,1,0,100,1,0,100,2,0,131,3, -- 0,100,2,0,107,8,0,114,85,0,121,16,0,124,4,0, -- 106,2,0,124,1,0,95,3,0,87,113,85,0,4,116,4, -- 0,107,10,0,114,81,0,1,1,1,89,113,85,0,88,110, -- 0,0,124,2,0,115,115,0,116,1,0,124,1,0,100,3, -- 0,100,2,0,131,3,0,100,2,0,107,8,0,114,221,0, -- 124,4,0,106,5,0,125,5,0,124,5,0,100,2,0,107, -- 8,0,114,184,0,124,4,0,106,6,0,100,2,0,107,9, -- 0,114,184,0,116,7,0,106,8,0,116,7,0,131,1,0, -- 125,5,0,124,4,0,106,6,0,124,5,0,95,9,0,113, -- 184,0,110,0,0,121,13,0,124,5,0,124,1,0,95,10, -- 0,87,113,221,0,4,116,4,0,107,10,0,114,217,0,1, -- 1,1,89,113,221,0,88,110,0,0,124,2,0,115,251,0, -- 116,1,0,124,1,0,100,4,0,100,2,0,131,3,0,100, -- 2,0,107,8,0,114,35,1,121,16,0,124,4,0,106,11, -- 0,124,1,0,95,12,0,87,113,35,1,4,116,4,0,107, -- 10,0,114,31,1,1,1,1,89,113,35,1,88,110,0,0, -- 121,13,0,124,4,0,124,1,0,95,13,0,87,110,18,0, -- 4,116,4,0,107,10,0,114,68,1,1,1,1,89,110,1, -- 0,88,124,2,0,115,99,1,116,1,0,124,1,0,100,5, -- 0,100,2,0,131,3,0,100,2,0,107,8,0,114,157,1, -- 124,4,0,106,6,0,100,2,0,107,9,0,114,157,1,121, -- 16,0,124,4,0,106,6,0,124,1,0,95,14,0,87,113, -- 154,1,4,116,4,0,107,10,0,114,150,1,1,1,1,89, -- 113,154,1,88,113,157,1,110,0,0,124,4,0,106,15,0, -- 114,71,2,124,2,0,115,196,1,116,1,0,124,1,0,100, -- 6,0,100,2,0,131,3,0,100,2,0,107,8,0,114,236, -- 1,121,16,0,124,4,0,106,16,0,124,1,0,95,17,0, -- 87,113,236,1,4,116,4,0,107,10,0,114,232,1,1,1, -- 1,89,113,236,1,88,110,0,0,124,2,0,115,10,2,116, -- 1,0,124,1,0,100,7,0,100,2,0,131,3,0,100,2, -- 0,107,8,0,114,71,2,124,4,0,106,18,0,100,2,0, -- 107,9,0,114,68,2,121,16,0,124,4,0,106,18,0,124, -- 1,0,95,19,0,87,113,65,2,4,116,4,0,107,10,0, -- 114,61,2,1,1,1,89,113,65,2,88,113,68,2,113,71, -- 2,110,0,0,100,2,0,83,41,8,97,29,2,0,0,83, -- 101,116,32,116,104,101,32,109,111,100,117,108,101,39,115,32, -- 97,116,116,114,105,98,117,116,101,115,46,10,10,32,32,32, -- 32,32,32,32,32,65,108,108,32,109,105,115,115,105,110,103, -- 32,105,109,112,111,114,116,45,114,101,108,97,116,101,100,32, -- 109,111,100,117,108,101,32,97,116,116,114,105,98,117,116,101, -- 115,32,119,105,108,108,32,98,101,32,115,101,116,46,32,32, -- 72,101,114,101,10,32,32,32,32,32,32,32,32,105,115,32, -- 104,111,119,32,116,104,101,32,115,112,101,99,32,97,116,116, -- 114,105,98,117,116,101,115,32,109,97,112,32,111,110,116,111, -- 32,116,104,101,32,109,111,100,117,108,101,58,10,10,32,32, -- 32,32,32,32,32,32,115,112,101,99,46,110,97,109,101,32, -- 45,62,32,109,111,100,117,108,101,46,95,95,110,97,109,101, -- 95,95,10,32,32,32,32,32,32,32,32,115,112,101,99,46, -- 108,111,97,100,101,114,32,45,62,32,109,111,100,117,108,101, -- 46,95,95,108,111,97,100,101,114,95,95,10,32,32,32,32, -- 32,32,32,32,115,112,101,99,46,112,97,114,101,110,116,32, -- 45,62,32,109,111,100,117,108,101,46,95,95,112,97,99,107, -- 97,103,101,95,95,10,32,32,32,32,32,32,32,32,115,112, -- 101,99,32,45,62,32,109,111,100,117,108,101,46,95,95,115, -- 112,101,99,95,95,10,10,32,32,32,32,32,32,32,32,79, -- 112,116,105,111,110,97,108,58,10,32,32,32,32,32,32,32, -- 32,115,112,101,99,46,111,114,105,103,105,110,32,45,62,32, -- 109,111,100,117,108,101,46,95,95,102,105,108,101,95,95,32, -- 40,105,102,32,115,112,101,99,46,115,101,116,95,102,105,108, -- 101,97,116,116,114,32,105,115,32,116,114,117,101,41,10,32, -- 32,32,32,32,32,32,32,115,112,101,99,46,99,97,99,104, -- 101,100,32,45,62,32,109,111,100,117,108,101,46,95,95,99, -- 97,99,104,101,100,95,95,32,40,105,102,32,95,95,102,105, -- 108,101,95,95,32,97,108,115,111,32,115,101,116,41,10,32, -- 32,32,32,32,32,32,32,115,112,101,99,46,115,117,98,109, -- 111,100,117,108,101,95,115,101,97,114,99,104,95,108,111,99, -- 97,116,105,111,110,115,32,45,62,32,109,111,100,117,108,101, -- 46,95,95,112,97,116,104,95,95,32,40,105,102,32,115,101, -- 116,41,10,10,32,32,32,32,32,32,32,32,114,57,0,0, -- 0,78,114,204,0,0,0,218,11,95,95,112,97,99,107,97, -- 103,101,95,95,114,246,0,0,0,114,210,0,0,0,114,244, -- 0,0,0,41,20,114,177,0,0,0,114,62,0,0,0,114, -- 67,0,0,0,114,57,0,0,0,114,209,0,0,0,114,169, -- 0,0,0,114,220,0,0,0,218,16,95,78,97,109,101,115, -- 112,97,99,101,76,111,97,100,101,114,218,7,95,95,110,101, -- 119,95,95,218,5,95,112,97,116,104,114,204,0,0,0,114, -- 233,0,0,0,114,250,0,0,0,114,208,0,0,0,114,246, -- 0,0,0,114,226,0,0,0,114,217,0,0,0,114,210,0, -- 0,0,114,225,0,0,0,114,244,0,0,0,41,6,114,71, -- 0,0,0,114,179,0,0,0,114,248,0,0,0,114,249,0, -- 0,0,114,177,0,0,0,114,169,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,17,105,110,105, -- 116,95,109,111,100,117,108,101,95,97,116,116,114,115,251,3, -- 0,0,115,88,0,0,0,0,17,9,6,12,1,24,1,3, -- 1,16,1,13,1,8,3,30,1,9,1,12,2,15,1,15, -- 1,18,1,3,1,13,1,13,1,8,3,30,1,3,1,16, -- 1,13,1,8,3,3,1,13,1,13,1,5,3,30,1,15, -- 1,3,1,16,1,13,1,11,2,9,2,30,1,3,1,16, -- 1,13,1,8,3,30,1,15,1,3,1,16,1,13,1,122, -- 30,95,83,112,101,99,77,101,116,104,111,100,115,46,105,110, -- 105,116,95,109,111,100,117,108,101,95,97,116,116,114,115,99, -- 1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, -- 67,0,0,0,115,101,0,0,0,124,0,0,106,0,0,125, -- 1,0,116,1,0,124,1,0,106,2,0,100,1,0,131,2, -- 0,114,48,0,124,1,0,106,2,0,106,3,0,124,1,0, -- 131,1,0,125,2,0,110,6,0,100,2,0,125,2,0,124, -- 2,0,100,2,0,107,8,0,114,84,0,116,4,0,124,1, -- 0,106,5,0,131,1,0,125,2,0,110,0,0,124,0,0, -- 106,6,0,124,2,0,131,1,0,1,124,2,0,83,41,3, -- 122,153,82,101,116,117,114,110,32,97,32,110,101,119,32,109, -- 111,100,117,108,101,32,116,111,32,98,101,32,108,111,97,100, -- 101,100,46,10,10,32,32,32,32,32,32,32,32,84,104,101, -- 32,105,109,112,111,114,116,45,114,101,108,97,116,101,100,32, -- 109,111,100,117,108,101,32,97,116,116,114,105,98,117,116,101, -- 115,32,97,114,101,32,97,108,115,111,32,115,101,116,32,119, -- 105,116,104,32,116,104,101,10,32,32,32,32,32,32,32,32, -- 97,112,112,114,111,112,114,105,97,116,101,32,118,97,108,117, -- 101,115,32,102,114,111,109,32,116,104,101,32,115,112,101,99, -- 46,10,10,32,32,32,32,32,32,32,32,218,13,99,114,101, -- 97,116,101,95,109,111,100,117,108,101,78,41,7,114,177,0, -- 0,0,114,60,0,0,0,114,169,0,0,0,114,255,0,0, -- 0,114,68,0,0,0,114,67,0,0,0,114,254,0,0,0, -- 41,3,114,71,0,0,0,114,177,0,0,0,114,179,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,6,99,114,101,97,116,101,75,4,0,0,115,16,0,0, -- 0,0,7,9,2,18,3,21,2,6,1,12,4,18,1,13, -- 1,122,19,95,83,112,101,99,77,101,116,104,111,100,115,46, -- 99,114,101,97,116,101,99,2,0,0,0,0,0,0,0,2, -- 0,0,0,2,0,0,0,67,0,0,0,115,23,0,0,0, -- 124,0,0,106,0,0,106,1,0,106,2,0,124,1,0,131, -- 1,0,1,100,1,0,83,41,2,122,189,68,111,32,101,118, -- 101,114,121,116,104,105,110,103,32,110,101,99,101,115,115,97, -- 114,121,32,116,111,32,101,120,101,99,117,116,101,32,116,104, -- 101,32,109,111,100,117,108,101,46,10,10,32,32,32,32,32, -- 32,32,32,84,104,101,32,110,97,109,101,115,112,97,99,101, -- 32,111,102,32,96,109,111,100,117,108,101,96,32,105,115,32, -- 117,115,101,100,32,97,115,32,116,104,101,32,116,97,114,103, -- 101,116,32,111,102,32,101,120,101,99,117,116,105,111,110,46, -- 10,32,32,32,32,32,32,32,32,84,104,105,115,32,109,101, -- 116,104,111,100,32,117,115,101,115,32,116,104,101,32,108,111, -- 97,100,101,114,39,115,32,96,101,120,101,99,95,109,111,100, -- 117,108,101,40,41,96,32,109,101,116,104,111,100,46,10,10, -- 32,32,32,32,32,32,32,32,78,41,3,114,177,0,0,0, -- 114,169,0,0,0,218,11,101,120,101,99,95,109,111,100,117, -- 108,101,41,2,114,71,0,0,0,114,179,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,5,95, -- 101,120,101,99,98,4,0,0,115,2,0,0,0,0,7,122, -- 18,95,83,112,101,99,77,101,116,104,111,100,115,46,95,101, -- 120,101,99,99,2,0,0,0,0,0,0,0,4,0,0,0, -- 11,0,0,0,67,0,0,0,115,17,1,0,0,124,0,0, -- 106,0,0,106,1,0,125,2,0,116,2,0,106,3,0,131, -- 0,0,1,116,4,0,124,2,0,131,1,0,143,226,0,1, -- 116,5,0,106,6,0,106,7,0,124,2,0,131,1,0,124, -- 1,0,107,9,0,114,95,0,100,1,0,106,8,0,124,2, -- 0,131,1,0,125,3,0,116,9,0,124,3,0,100,2,0, -- 124,2,0,131,1,1,130,1,0,110,0,0,124,0,0,106, -- 0,0,106,10,0,100,3,0,107,8,0,114,181,0,124,0, -- 0,106,0,0,106,11,0,100,3,0,107,8,0,114,158,0, -- 116,9,0,100,4,0,100,2,0,124,0,0,106,0,0,106, -- 1,0,131,1,1,130,1,0,110,0,0,124,0,0,106,12, -- 0,124,1,0,100,5,0,100,6,0,131,1,1,1,124,1, -- 0,83,124,0,0,106,12,0,124,1,0,100,5,0,100,6, -- 0,131,1,1,1,116,13,0,124,0,0,106,0,0,106,10, -- 0,100,7,0,131,2,0,115,243,0,124,0,0,106,0,0, -- 106,10,0,106,14,0,124,2,0,131,1,0,1,110,13,0, -- 124,0,0,106,15,0,124,1,0,131,1,0,1,87,100,3, -- 0,81,88,116,5,0,106,6,0,124,2,0,25,83,41,8, -- 122,51,69,120,101,99,117,116,101,32,116,104,101,32,115,112, -- 101,99,32,105,110,32,97,110,32,101,120,105,115,116,105,110, -- 103,32,109,111,100,117,108,101,39,115,32,110,97,109,101,115, -- 112,97,99,101,46,122,30,109,111,100,117,108,101,32,123,33, -- 114,125,32,110,111,116,32,105,110,32,115,121,115,46,109,111, -- 100,117,108,101,115,114,67,0,0,0,78,122,14,109,105,115, -- 115,105,110,103,32,108,111,97,100,101,114,114,248,0,0,0, -- 84,114,1,1,0,0,41,16,114,177,0,0,0,114,67,0, -- 0,0,114,106,0,0,0,218,12,97,99,113,117,105,114,101, -- 95,108,111,99,107,114,103,0,0,0,114,7,0,0,0,114, -- 73,0,0,0,114,93,0,0,0,114,47,0,0,0,114,153, -- 0,0,0,114,169,0,0,0,114,220,0,0,0,114,254,0, -- 0,0,114,60,0,0,0,218,11,108,111,97,100,95,109,111, -- 100,117,108,101,114,2,1,0,0,41,4,114,71,0,0,0, -- 114,179,0,0,0,114,67,0,0,0,114,171,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,175, -- 0,0,0,108,4,0,0,115,32,0,0,0,0,2,12,1, -- 10,1,13,1,24,1,15,1,21,1,18,1,18,1,27,2, -- 19,1,4,1,19,1,21,4,22,2,19,1,122,17,95,83, -- 112,101,99,77,101,116,104,111,100,115,46,101,120,101,99,99, -- 1,0,0,0,0,0,0,0,3,0,0,0,27,0,0,0, -- 67,0,0,0,115,24,1,0,0,124,0,0,106,0,0,125, -- 1,0,124,1,0,106,1,0,106,2,0,124,1,0,106,3, -- 0,131,1,0,1,116,4,0,106,5,0,124,1,0,106,3, -- 0,25,125,2,0,116,6,0,124,2,0,100,1,0,100,0, -- 0,131,3,0,100,0,0,107,8,0,114,108,0,121,16,0, -- 124,1,0,106,1,0,124,2,0,95,7,0,87,113,108,0, -- 4,116,8,0,107,10,0,114,104,0,1,1,1,89,113,108, -- 0,88,110,0,0,116,6,0,124,2,0,100,2,0,100,0, -- 0,131,3,0,100,0,0,107,8,0,114,215,0,121,59,0, -- 124,2,0,106,9,0,124,2,0,95,10,0,116,11,0,124, -- 2,0,100,3,0,131,2,0,115,190,0,124,1,0,106,3, -- 0,106,12,0,100,4,0,131,1,0,100,5,0,25,124,2, -- 0,95,10,0,110,0,0,87,113,215,0,4,116,8,0,107, -- 10,0,114,211,0,1,1,1,89,113,215,0,88,110,0,0, -- 116,6,0,124,2,0,100,6,0,100,0,0,131,3,0,100, -- 0,0,107,8,0,114,20,1,121,13,0,124,1,0,124,2, -- 0,95,13,0,87,113,20,1,4,116,8,0,107,10,0,114, -- 16,1,1,1,1,89,113,20,1,88,110,0,0,124,2,0, -- 83,41,7,78,114,204,0,0,0,114,250,0,0,0,114,246, -- 0,0,0,114,116,0,0,0,114,84,0,0,0,114,208,0, -- 0,0,41,14,114,177,0,0,0,114,169,0,0,0,114,4, -- 1,0,0,114,67,0,0,0,114,7,0,0,0,114,73,0, -- 0,0,114,62,0,0,0,114,204,0,0,0,114,209,0,0, -- 0,114,57,0,0,0,114,250,0,0,0,114,60,0,0,0, -- 114,32,0,0,0,114,208,0,0,0,41,3,114,71,0,0, -- 0,114,177,0,0,0,114,179,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,25,95,108,111,97, -- 100,95,98,97,99,107,119,97,114,100,95,99,111,109,112,97, -- 116,105,98,108,101,132,4,0,0,115,42,0,0,0,0,4, -- 9,1,19,2,16,1,24,1,3,1,16,1,13,1,8,1, -- 24,1,3,4,12,1,15,1,32,1,13,1,8,1,24,1, -- 3,1,13,1,13,1,8,1,122,38,95,83,112,101,99,77, -- 101,116,104,111,100,115,46,95,108,111,97,100,95,98,97,99, -- 107,119,97,114,100,95,99,111,109,112,97,116,105,98,108,101, -+ 120,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, -+ 103,101,110,101,120,112,114,62,122,18,105,109,112,111,114,116, -+ 32,123,33,114,125,32,35,32,123,33,114,125,70,41,9,114, -+ 215,0,0,0,114,79,0,0,0,114,8,0,0,0,114,74, -+ 0,0,0,114,68,0,0,0,114,80,0,0,0,114,153,0, -+ 0,0,114,170,0,0,0,114,216,0,0,0,41,3,114,72, -+ 0,0,0,114,81,0,0,0,114,178,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,82,0,0, -+ 0,227,2,0,0,115,18,0,0,0,0,1,3,1,9,1, -+ 25,1,3,1,17,1,13,1,8,2,26,2,122,26,95,105, -+ 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, -+ 95,95,101,120,105,116,95,95,78,41,6,114,58,0,0,0, -+ 114,57,0,0,0,114,59,0,0,0,114,73,0,0,0,114, -+ 76,0,0,0,114,82,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,213,0, -+ 0,0,214,2,0,0,115,6,0,0,0,12,2,12,4,12, -+ 7,114,213,0,0,0,99,0,0,0,0,0,0,0,0,0, -+ 0,0,0,8,0,0,0,64,0,0,0,115,172,0,0,0, -+ 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, -+ 3,0,100,2,0,100,3,0,100,4,0,100,3,0,100,5, -+ 0,100,3,0,100,6,0,100,7,0,132,0,3,90,4,0, -+ 100,8,0,100,9,0,132,0,0,90,5,0,100,10,0,100, -+ 11,0,132,0,0,90,6,0,101,7,0,100,12,0,100,13, -+ 0,132,0,0,131,1,0,90,8,0,101,8,0,106,9,0, -+ 100,14,0,100,13,0,132,0,0,131,1,0,90,8,0,101, -+ 7,0,100,15,0,100,16,0,132,0,0,131,1,0,90,10, -+ 0,101,7,0,100,17,0,100,18,0,132,0,0,131,1,0, -+ 90,11,0,101,11,0,106,9,0,100,19,0,100,18,0,132, -+ 0,0,131,1,0,90,11,0,100,3,0,83,41,20,218,10, -+ 77,111,100,117,108,101,83,112,101,99,97,208,5,0,0,84, -+ 104,101,32,115,112,101,99,105,102,105,99,97,116,105,111,110, -+ 32,102,111,114,32,97,32,109,111,100,117,108,101,44,32,117, -+ 115,101,100,32,102,111,114,32,108,111,97,100,105,110,103,46, -+ 10,10,32,32,32,32,65,32,109,111,100,117,108,101,39,115, -+ 32,115,112,101,99,32,105,115,32,116,104,101,32,115,111,117, -+ 114,99,101,32,102,111,114,32,105,110,102,111,114,109,97,116, -+ 105,111,110,32,97,98,111,117,116,32,116,104,101,32,109,111, -+ 100,117,108,101,46,32,32,70,111,114,10,32,32,32,32,100, -+ 97,116,97,32,97,115,115,111,99,105,97,116,101,100,32,119, -+ 105,116,104,32,116,104,101,32,109,111,100,117,108,101,44,32, -+ 105,110,99,108,117,100,105,110,103,32,115,111,117,114,99,101, -+ 44,32,117,115,101,32,116,104,101,32,115,112,101,99,39,115, -+ 10,32,32,32,32,108,111,97,100,101,114,46,10,10,32,32, -+ 32,32,96,110,97,109,101,96,32,105,115,32,116,104,101,32, -+ 97,98,115,111,108,117,116,101,32,110,97,109,101,32,111,102, -+ 32,116,104,101,32,109,111,100,117,108,101,46,32,32,96,108, -+ 111,97,100,101,114,96,32,105,115,32,116,104,101,32,108,111, -+ 97,100,101,114,10,32,32,32,32,116,111,32,117,115,101,32, -+ 119,104,101,110,32,108,111,97,100,105,110,103,32,116,104,101, -+ 32,109,111,100,117,108,101,46,32,32,96,112,97,114,101,110, -+ 116,96,32,105,115,32,116,104,101,32,110,97,109,101,32,111, -+ 102,32,116,104,101,10,32,32,32,32,112,97,99,107,97,103, -+ 101,32,116,104,101,32,109,111,100,117,108,101,32,105,115,32, -+ 105,110,46,32,32,84,104,101,32,112,97,114,101,110,116,32, -+ 105,115,32,100,101,114,105,118,101,100,32,102,114,111,109,32, -+ 116,104,101,32,110,97,109,101,46,10,10,32,32,32,32,96, -+ 105,115,95,112,97,99,107,97,103,101,96,32,100,101,116,101, -+ 114,109,105,110,101,115,32,105,102,32,116,104,101,32,109,111, -+ 100,117,108,101,32,105,115,32,99,111,110,115,105,100,101,114, -+ 101,100,32,97,32,112,97,99,107,97,103,101,32,111,114,10, -+ 32,32,32,32,110,111,116,46,32,32,79,110,32,109,111,100, -+ 117,108,101,115,32,116,104,105,115,32,105,115,32,114,101,102, -+ 108,101,99,116,101,100,32,98,121,32,116,104,101,32,96,95, -+ 95,112,97,116,104,95,95,96,32,97,116,116,114,105,98,117, -+ 116,101,46,10,10,32,32,32,32,96,111,114,105,103,105,110, -+ 96,32,105,115,32,116,104,101,32,115,112,101,99,105,102,105, -+ 99,32,108,111,99,97,116,105,111,110,32,117,115,101,100,32, -+ 98,121,32,116,104,101,32,108,111,97,100,101,114,32,102,114, -+ 111,109,32,119,104,105,99,104,32,116,111,10,32,32,32,32, -+ 108,111,97,100,32,116,104,101,32,109,111,100,117,108,101,44, -+ 32,105,102,32,116,104,97,116,32,105,110,102,111,114,109,97, -+ 116,105,111,110,32,105,115,32,97,118,97,105,108,97,98,108, -+ 101,46,32,32,87,104,101,110,32,102,105,108,101,110,97,109, -+ 101,32,105,115,10,32,32,32,32,115,101,116,44,32,111,114, -+ 105,103,105,110,32,119,105,108,108,32,109,97,116,99,104,46, -+ 10,10,32,32,32,32,96,104,97,115,95,108,111,99,97,116, -+ 105,111,110,96,32,105,110,100,105,99,97,116,101,115,32,116, -+ 104,97,116,32,97,32,115,112,101,99,39,115,32,34,111,114, -+ 105,103,105,110,34,32,114,101,102,108,101,99,116,115,32,97, -+ 32,108,111,99,97,116,105,111,110,46,10,32,32,32,32,87, -+ 104,101,110,32,116,104,105,115,32,105,115,32,84,114,117,101, -+ 44,32,96,95,95,102,105,108,101,95,95,96,32,97,116,116, -+ 114,105,98,117,116,101,32,111,102,32,116,104,101,32,109,111, -+ 100,117,108,101,32,105,115,32,115,101,116,46,10,10,32,32, -+ 32,32,96,99,97,99,104,101,100,96,32,105,115,32,116,104, -+ 101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104, -+ 101,32,99,97,99,104,101,100,32,98,121,116,101,99,111,100, -+ 101,32,102,105,108,101,44,32,105,102,32,97,110,121,46,32, -+ 32,73,116,10,32,32,32,32,99,111,114,114,101,115,112,111, -+ 110,100,115,32,116,111,32,116,104,101,32,96,95,95,99,97, -+ 99,104,101,100,95,95,96,32,97,116,116,114,105,98,117,116, -+ 101,46,10,10,32,32,32,32,96,115,117,98,109,111,100,117, -+ 108,101,95,115,101,97,114,99,104,95,108,111,99,97,116,105, -+ 111,110,115,96,32,105,115,32,116,104,101,32,115,101,113,117, -+ 101,110,99,101,32,111,102,32,112,97,116,104,32,101,110,116, -+ 114,105,101,115,32,116,111,10,32,32,32,32,115,101,97,114, -+ 99,104,32,119,104,101,110,32,105,109,112,111,114,116,105,110, -+ 103,32,115,117,98,109,111,100,117,108,101,115,46,32,32,73, -+ 102,32,115,101,116,44,32,105,115,95,112,97,99,107,97,103, -+ 101,32,115,104,111,117,108,100,32,98,101,10,32,32,32,32, -+ 84,114,117,101,45,45,97,110,100,32,70,97,108,115,101,32, -+ 111,116,104,101,114,119,105,115,101,46,10,10,32,32,32,32, -+ 80,97,99,107,97,103,101,115,32,97,114,101,32,115,105,109, -+ 112,108,121,32,109,111,100,117,108,101,115,32,116,104,97,116, -+ 32,40,109,97,121,41,32,104,97,118,101,32,115,117,98,109, -+ 111,100,117,108,101,115,46,32,32,73,102,32,97,32,115,112, -+ 101,99,10,32,32,32,32,104,97,115,32,97,32,110,111,110, -+ 45,78,111,110,101,32,118,97,108,117,101,32,105,110,32,96, -+ 115,117,98,109,111,100,117,108,101,95,115,101,97,114,99,104, -+ 95,108,111,99,97,116,105,111,110,115,96,44,32,116,104,101, -+ 32,105,109,112,111,114,116,10,32,32,32,32,115,121,115,116, -+ 101,109,32,119,105,108,108,32,99,111,110,115,105,100,101,114, -+ 32,109,111,100,117,108,101,115,32,108,111,97,100,101,100,32, -+ 102,114,111,109,32,116,104,101,32,115,112,101,99,32,97,115, -+ 32,112,97,99,107,97,103,101,115,46,10,10,32,32,32,32, -+ 79,110,108,121,32,102,105,110,100,101,114,115,32,40,115,101, -+ 101,32,105,109,112,111,114,116,108,105,98,46,97,98,99,46, -+ 77,101,116,97,80,97,116,104,70,105,110,100,101,114,32,97, -+ 110,100,10,32,32,32,32,105,109,112,111,114,116,108,105,98, -+ 46,97,98,99,46,80,97,116,104,69,110,116,114,121,70,105, -+ 110,100,101,114,41,32,115,104,111,117,108,100,32,109,111,100, -+ 105,102,121,32,77,111,100,117,108,101,83,112,101,99,32,105, -+ 110,115,116,97,110,99,101,115,46,10,10,32,32,32,32,218, -+ 6,111,114,105,103,105,110,78,218,12,108,111,97,100,101,114, -+ 95,115,116,97,116,101,218,10,105,115,95,112,97,99,107,97, -+ 103,101,99,3,0,0,0,3,0,0,0,6,0,0,0,2, -+ 0,0,0,67,0,0,0,115,79,0,0,0,124,1,0,124, -+ 0,0,95,0,0,124,2,0,124,0,0,95,1,0,124,3, -+ 0,124,0,0,95,2,0,124,4,0,124,0,0,95,3,0, -+ 124,5,0,114,48,0,103,0,0,110,3,0,100,0,0,124, -+ 0,0,95,4,0,100,1,0,124,0,0,95,5,0,100,0, -+ 0,124,0,0,95,6,0,100,0,0,83,41,2,78,70,41, -+ 7,114,68,0,0,0,114,170,0,0,0,114,218,0,0,0, -+ 114,219,0,0,0,218,26,115,117,98,109,111,100,117,108,101, +- 0,218,11,108,111,97,100,95,109,111,100,117,108,101,152,2, +- 0,0,115,2,0,0,0,0,1,122,25,95,76,111,97,100, +- 101,114,66,97,115,105,99,115,46,108,111,97,100,95,109,111, +- 100,117,108,101,78,41,8,114,112,0,0,0,114,111,0,0, +- 0,114,113,0,0,0,114,114,0,0,0,114,159,0,0,0, +- 114,186,0,0,0,114,191,0,0,0,114,193,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,184,0,0,0,128,2,0,0,115,10,0,0, +- 0,12,3,6,2,12,8,12,3,12,8,114,184,0,0,0, +- 99,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0, +- 0,64,0,0,0,115,106,0,0,0,101,0,0,90,1,0, +- 100,0,0,90,2,0,100,1,0,100,2,0,132,0,0,90, +- 3,0,100,3,0,100,4,0,132,0,0,90,4,0,100,5, +- 0,100,6,0,132,0,0,90,5,0,100,7,0,100,8,0, +- 132,0,0,90,6,0,100,9,0,100,10,0,132,0,0,90, +- 7,0,100,11,0,100,18,0,100,13,0,100,14,0,132,0, +- 1,90,8,0,100,15,0,100,16,0,132,0,0,90,9,0, +- 100,17,0,83,41,19,218,12,83,111,117,114,99,101,76,111, +- 97,100,101,114,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,1,0,0,0,67,0,0,0,115,10,0,0,0,116,0, +- 0,130,1,0,100,1,0,83,41,2,122,178,79,112,116,105, +- 111,110,97,108,32,109,101,116,104,111,100,32,116,104,97,116, +- 32,114,101,116,117,114,110,115,32,116,104,101,32,109,111,100, +- 105,102,105,99,97,116,105,111,110,32,116,105,109,101,32,40, +- 97,110,32,105,110,116,41,32,102,111,114,32,116,104,101,10, +- 32,32,32,32,32,32,32,32,115,112,101,99,105,102,105,101, +- 100,32,112,97,116,104,44,32,119,104,101,114,101,32,112,97, +- 116,104,32,105,115,32,97,32,115,116,114,46,10,10,32,32, +- 32,32,32,32,32,32,82,97,105,115,101,115,32,73,79,69, +- 114,114,111,114,32,119,104,101,110,32,116,104,101,32,112,97, +- 116,104,32,99,97,110,110,111,116,32,98,101,32,104,97,110, +- 100,108,101,100,46,10,32,32,32,32,32,32,32,32,78,41, +- 1,218,7,73,79,69,114,114,111,114,41,2,114,108,0,0, +- 0,114,35,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,10,112,97,116,104,95,109,116,105,109, +- 101,158,2,0,0,115,2,0,0,0,0,6,122,23,83,111, +- 117,114,99,101,76,111,97,100,101,114,46,112,97,116,104,95, +- 109,116,105,109,101,99,2,0,0,0,0,0,0,0,2,0, +- 0,0,3,0,0,0,67,0,0,0,115,19,0,0,0,100, +- 1,0,124,0,0,106,0,0,124,1,0,131,1,0,105,1, +- 0,83,41,2,97,170,1,0,0,79,112,116,105,111,110,97, +- 108,32,109,101,116,104,111,100,32,114,101,116,117,114,110,105, +- 110,103,32,97,32,109,101,116,97,100,97,116,97,32,100,105, +- 99,116,32,102,111,114,32,116,104,101,32,115,112,101,99,105, +- 102,105,101,100,32,112,97,116,104,10,32,32,32,32,32,32, +- 32,32,116,111,32,98,121,32,116,104,101,32,112,97,116,104, +- 32,40,115,116,114,41,46,10,32,32,32,32,32,32,32,32, +- 80,111,115,115,105,98,108,101,32,107,101,121,115,58,10,32, +- 32,32,32,32,32,32,32,45,32,39,109,116,105,109,101,39, +- 32,40,109,97,110,100,97,116,111,114,121,41,32,105,115,32, +- 116,104,101,32,110,117,109,101,114,105,99,32,116,105,109,101, +- 115,116,97,109,112,32,111,102,32,108,97,115,116,32,115,111, +- 117,114,99,101,10,32,32,32,32,32,32,32,32,32,32,99, +- 111,100,101,32,109,111,100,105,102,105,99,97,116,105,111,110, +- 59,10,32,32,32,32,32,32,32,32,45,32,39,115,105,122, +- 101,39,32,40,111,112,116,105,111,110,97,108,41,32,105,115, +- 32,116,104,101,32,115,105,122,101,32,105,110,32,98,121,116, +- 101,115,32,111,102,32,116,104,101,32,115,111,117,114,99,101, +- 32,99,111,100,101,46,10,10,32,32,32,32,32,32,32,32, +- 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, +- 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, +- 116,104,101,32,108,111,97,100,101,114,32,116,111,32,114,101, +- 97,100,32,98,121,116,101,99,111,100,101,32,102,105,108,101, +- 115,46,10,32,32,32,32,32,32,32,32,82,97,105,115,101, ++ 67,0,0,0,115,76,0,0,0,116,0,0,116,1,0,131, ++ 1,0,125,3,0,124,3,0,106,2,0,116,3,0,124,1, ++ 0,131,1,0,131,1,0,1,124,3,0,106,2,0,116,3, ++ 0,124,2,0,131,1,0,131,1,0,1,124,3,0,106,2, ++ 0,116,4,0,106,5,0,124,0,0,131,1,0,131,1,0, ++ 1,124,3,0,83,41,1,122,80,67,111,109,112,105,108,101, ++ 32,97,32,99,111,100,101,32,111,98,106,101,99,116,32,105, ++ 110,116,111,32,98,121,116,101,99,111,100,101,32,102,111,114, ++ 32,119,114,105,116,105,110,103,32,111,117,116,32,116,111,32, ++ 97,32,98,121,116,101,45,99,111,109,112,105,108,101,100,10, ++ 32,32,32,32,102,105,108,101,46,41,6,218,9,98,121,116, ++ 101,97,114,114,97,121,114,136,0,0,0,218,6,101,120,116, ++ 101,110,100,114,18,0,0,0,114,143,0,0,0,90,5,100, ++ 117,109,112,115,41,4,114,147,0,0,0,114,134,0,0,0, ++ 114,141,0,0,0,114,54,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,17,95,99,111,100,101, ++ 95,116,111,95,98,121,116,101,99,111,100,101,227,1,0,0, ++ 115,10,0,0,0,0,3,12,1,19,1,19,1,22,1,114, ++ 151,0,0,0,99,1,0,0,0,0,0,0,0,5,0,0, ++ 0,4,0,0,0,67,0,0,0,115,89,0,0,0,100,1, ++ 0,100,2,0,108,0,0,125,1,0,116,1,0,106,2,0, ++ 124,0,0,131,1,0,106,3,0,125,2,0,124,1,0,106, ++ 4,0,124,2,0,131,1,0,125,3,0,116,1,0,106,5, ++ 0,100,2,0,100,3,0,131,2,0,125,4,0,124,4,0, ++ 106,6,0,124,0,0,106,6,0,124,3,0,100,1,0,25, ++ 131,1,0,131,1,0,83,41,4,122,121,68,101,99,111,100, ++ 101,32,98,121,116,101,115,32,114,101,112,114,101,115,101,110, ++ 116,105,110,103,32,115,111,117,114,99,101,32,99,111,100,101, ++ 32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, ++ 115,116,114,105,110,103,46,10,10,32,32,32,32,85,110,105, ++ 118,101,114,115,97,108,32,110,101,119,108,105,110,101,32,115, ++ 117,112,112,111,114,116,32,105,115,32,117,115,101,100,32,105, ++ 110,32,116,104,101,32,100,101,99,111,100,105,110,103,46,10, ++ 32,32,32,32,114,60,0,0,0,78,84,41,7,218,8,116, ++ 111,107,101,110,105,122,101,114,50,0,0,0,90,7,66,121, ++ 116,101,115,73,79,90,8,114,101,97,100,108,105,110,101,90, ++ 15,100,101,116,101,99,116,95,101,110,99,111,100,105,110,103, ++ 90,25,73,110,99,114,101,109,101,110,116,97,108,78,101,119, ++ 108,105,110,101,68,101,99,111,100,101,114,218,6,100,101,99, ++ 111,100,101,41,5,218,12,115,111,117,114,99,101,95,98,121, ++ 116,101,115,114,152,0,0,0,90,21,115,111,117,114,99,101, ++ 95,98,121,116,101,115,95,114,101,97,100,108,105,110,101,218, ++ 8,101,110,99,111,100,105,110,103,90,15,110,101,119,108,105, ++ 110,101,95,100,101,99,111,100,101,114,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,13,100,101,99,111,100, ++ 101,95,115,111,117,114,99,101,237,1,0,0,115,10,0,0, ++ 0,0,5,12,1,18,1,15,1,18,1,114,156,0,0,0, ++ 114,128,0,0,0,218,26,115,117,98,109,111,100,117,108,101, + 95,115,101,97,114,99,104,95,108,111,99,97,116,105,111,110, -+ 115,218,13,95,115,101,116,95,102,105,108,101,97,116,116,114, -+ 218,7,95,99,97,99,104,101,100,41,6,114,72,0,0,0, -+ 114,68,0,0,0,114,170,0,0,0,114,218,0,0,0,114, -+ 219,0,0,0,114,220,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,73,0,0,0,22,3,0, -+ 0,115,14,0,0,0,0,2,9,1,9,1,9,1,9,1, -+ 21,3,9,1,122,19,77,111,100,117,108,101,83,112,101,99, -+ 46,95,95,105,110,105,116,95,95,99,1,0,0,0,0,0, -+ 0,0,2,0,0,0,4,0,0,0,67,0,0,0,115,153, -+ 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, -+ 1,0,100,2,0,106,0,0,124,0,0,106,2,0,131,1, -+ 0,103,2,0,125,1,0,124,0,0,106,3,0,100,0,0, -+ 107,9,0,114,79,0,124,1,0,106,4,0,100,3,0,106, -+ 0,0,124,0,0,106,3,0,131,1,0,131,1,0,1,110, -+ 0,0,124,0,0,106,5,0,100,0,0,107,9,0,114,122, -+ 0,124,1,0,106,4,0,100,4,0,106,0,0,124,0,0, -+ 106,5,0,131,1,0,131,1,0,1,110,0,0,100,5,0, -+ 106,0,0,124,0,0,106,6,0,106,7,0,100,6,0,106, -+ 8,0,124,1,0,131,1,0,131,2,0,83,41,7,78,122, -+ 9,110,97,109,101,61,123,33,114,125,122,11,108,111,97,100, -+ 101,114,61,123,33,114,125,122,11,111,114,105,103,105,110,61, -+ 123,33,114,125,122,29,115,117,98,109,111,100,117,108,101,95, -+ 115,101,97,114,99,104,95,108,111,99,97,116,105,111,110,115, -+ 61,123,125,122,6,123,125,40,123,125,41,122,2,44,32,41, -+ 9,114,48,0,0,0,114,68,0,0,0,114,170,0,0,0, -+ 114,218,0,0,0,218,6,97,112,112,101,110,100,114,221,0, -+ 0,0,218,9,95,95,99,108,97,115,115,95,95,114,58,0, -+ 0,0,114,27,0,0,0,41,2,114,72,0,0,0,114,81, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,102,0,0,0,34,3,0,0,115,16,0,0,0, -+ 0,1,15,1,21,1,15,1,28,1,15,1,6,1,22,1, -+ 122,19,77,111,100,117,108,101,83,112,101,99,46,95,95,114, -+ 101,112,114,95,95,99,2,0,0,0,0,0,0,0,3,0, -+ 0,0,11,0,0,0,67,0,0,0,115,145,0,0,0,124, -+ 0,0,106,0,0,125,2,0,121,107,0,124,0,0,106,1, -+ 0,124,1,0,106,1,0,107,2,0,111,114,0,124,0,0, -+ 106,2,0,124,1,0,106,2,0,107,2,0,111,114,0,124, -+ 0,0,106,3,0,124,1,0,106,3,0,107,2,0,111,114, -+ 0,124,2,0,124,1,0,106,0,0,107,2,0,111,114,0, -+ 124,0,0,106,4,0,124,1,0,106,4,0,107,2,0,111, -+ 114,0,124,0,0,106,5,0,124,1,0,106,5,0,107,2, -+ 0,83,87,110,22,0,4,116,6,0,107,10,0,114,140,0, -+ 1,1,1,100,1,0,83,89,110,1,0,88,100,0,0,83, -+ 41,2,78,70,41,7,114,221,0,0,0,114,68,0,0,0, -+ 114,170,0,0,0,114,218,0,0,0,218,6,99,97,99,104, -+ 101,100,218,12,104,97,115,95,108,111,99,97,116,105,111,110, -+ 114,210,0,0,0,41,3,114,72,0,0,0,218,5,111,116, -+ 104,101,114,218,4,115,109,115,108,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,6,95,95,101,113,95,95, -+ 44,3,0,0,115,20,0,0,0,0,1,9,1,3,1,18, -+ 1,18,1,18,1,15,1,18,1,20,1,13,1,122,17,77, -+ 111,100,117,108,101,83,112,101,99,46,95,95,101,113,95,95, - 99,1,0,0,0,0,0,0,0,2,0,0,0,11,0,0, -- 0,67,0,0,0,115,179,0,0,0,124,0,0,106,0,0, -- 106,1,0,100,0,0,107,9,0,114,52,0,116,2,0,124, -- 0,0,106,0,0,106,1,0,100,1,0,131,2,0,115,52, -- 0,124,0,0,106,3,0,131,0,0,83,110,0,0,124,0, -- 0,106,4,0,131,0,0,125,1,0,116,5,0,124,1,0, -- 131,1,0,143,84,0,1,124,0,0,106,0,0,106,1,0, -- 100,0,0,107,8,0,114,143,0,124,0,0,106,0,0,106, -- 6,0,100,0,0,107,8,0,114,156,0,116,7,0,100,2, -- 0,100,3,0,124,0,0,106,0,0,106,8,0,131,1,1, -- 130,1,0,113,156,0,110,13,0,124,0,0,106,9,0,124, -- 1,0,131,1,0,1,87,100,0,0,81,88,116,10,0,106, -- 11,0,124,0,0,106,0,0,106,8,0,25,83,41,4,78, -- 114,1,1,0,0,122,14,109,105,115,115,105,110,103,32,108, -- 111,97,100,101,114,114,67,0,0,0,41,12,114,177,0,0, -- 0,114,169,0,0,0,114,60,0,0,0,114,5,1,0,0, -- 114,0,1,0,0,114,212,0,0,0,114,220,0,0,0,114, -- 153,0,0,0,114,67,0,0,0,114,2,1,0,0,114,7, -- 0,0,0,114,73,0,0,0,41,2,114,71,0,0,0,114, -- 179,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,14,95,108,111,97,100,95,117,110,108,111,99, -- 107,101,100,162,4,0,0,115,20,0,0,0,0,2,18,2, -- 21,1,13,2,12,1,13,1,18,1,18,1,30,3,19,5, -- 122,27,95,83,112,101,99,77,101,116,104,111,100,115,46,95, -- 108,111,97,100,95,117,110,108,111,99,107,101,100,99,1,0, -- 0,0,0,0,0,0,1,0,0,0,8,0,0,0,67,0, -- 0,0,115,49,0,0,0,116,0,0,106,1,0,131,0,0, -- 1,116,2,0,124,0,0,106,3,0,106,4,0,131,1,0, -- 143,15,0,1,124,0,0,106,5,0,131,0,0,83,87,100, -- 1,0,81,88,100,1,0,83,41,2,122,207,82,101,116,117, -- 114,110,32,97,32,110,101,119,32,109,111,100,117,108,101,32, -- 111,98,106,101,99,116,44,32,108,111,97,100,101,100,32,98, -- 121,32,116,104,101,32,115,112,101,99,39,115,32,108,111,97, -- 100,101,114,46,10,10,32,32,32,32,32,32,32,32,84,104, -- 101,32,109,111,100,117,108,101,32,105,115,32,110,111,116,32, -- 97,100,100,101,100,32,116,111,32,105,116,115,32,112,97,114, -- 101,110,116,46,10,10,32,32,32,32,32,32,32,32,73,102, -- 32,97,32,109,111,100,117,108,101,32,105,115,32,97,108,114, -- 101,97,100,121,32,105,110,32,115,121,115,46,109,111,100,117, -- 108,101,115,44,32,116,104,97,116,32,101,120,105,115,116,105, -- 110,103,32,109,111,100,117,108,101,32,103,101,116,115,10,32, -- 32,32,32,32,32,32,32,99,108,111,98,98,101,114,101,100, -- 46,10,10,32,32,32,32,32,32,32,32,78,41,6,114,106, -- 0,0,0,114,3,1,0,0,114,103,0,0,0,114,177,0, -- 0,0,114,67,0,0,0,114,6,1,0,0,41,1,114,71, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,176,0,0,0,185,4,0,0,115,6,0,0,0, -- 0,9,10,1,19,1,122,17,95,83,112,101,99,77,101,116, -- 104,111,100,115,46,108,111,97,100,78,41,13,114,57,0,0, -- 0,114,56,0,0,0,114,58,0,0,0,114,59,0,0,0, -- 114,72,0,0,0,114,205,0,0,0,114,254,0,0,0,114, -- 0,1,0,0,114,2,1,0,0,114,175,0,0,0,114,5, -- 1,0,0,114,6,1,0,0,114,176,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,174,0,0,0,225,3,0,0,115,20,0,0,0,12, -- 3,6,4,12,3,12,16,24,80,12,23,12,10,12,24,12, -- 30,12,23,114,174,0,0,0,99,4,0,0,0,0,0,0, -- 0,6,0,0,0,11,0,0,0,67,0,0,0,115,201,0, -- 0,0,124,0,0,106,0,0,100,1,0,131,1,0,125,4, -- 0,124,0,0,106,0,0,100,2,0,131,1,0,125,5,0, -- 124,4,0,115,102,0,124,5,0,114,54,0,124,5,0,106, -- 1,0,125,4,0,113,102,0,124,2,0,124,3,0,107,2, -- 0,114,84,0,116,2,0,124,1,0,124,2,0,131,2,0, -- 125,4,0,113,102,0,116,3,0,124,1,0,124,2,0,131, -- 2,0,125,4,0,110,0,0,124,5,0,115,132,0,116,4, -- 0,124,1,0,124,2,0,100,3,0,124,4,0,131,2,1, -- 125,5,0,110,0,0,121,44,0,124,5,0,124,0,0,100, -- 2,0,60,124,4,0,124,0,0,100,1,0,60,124,2,0, -- 124,0,0,100,4,0,60,124,3,0,124,0,0,100,5,0, -- 60,87,110,18,0,4,116,5,0,107,10,0,114,196,0,1, -- 1,1,89,110,1,0,88,100,0,0,83,41,6,78,114,204, -- 0,0,0,114,208,0,0,0,114,169,0,0,0,114,210,0, -- 0,0,114,244,0,0,0,41,6,114,93,0,0,0,114,169, -- 0,0,0,218,20,83,111,117,114,99,101,108,101,115,115,70, -- 105,108,101,76,111,97,100,101,114,218,16,83,111,117,114,99, -- 101,70,105,108,101,76,111,97,100,101,114,114,239,0,0,0, -- 114,207,0,0,0,41,6,90,2,110,115,114,67,0,0,0, -- 90,8,112,97,116,104,110,97,109,101,90,9,99,112,97,116, -- 104,110,97,109,101,114,169,0,0,0,114,177,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,14, -- 95,102,105,120,95,117,112,95,109,111,100,117,108,101,199,4, -- 0,0,115,34,0,0,0,0,2,15,1,15,1,6,1,6, -- 1,12,1,12,1,18,2,18,1,6,1,24,1,3,1,10, -- 1,10,1,10,1,14,1,13,2,114,9,1,0,0,99,0, -- 0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,64, -- 0,0,0,115,181,0,0,0,101,0,0,90,1,0,100,0, -- 0,90,2,0,100,1,0,90,3,0,101,4,0,100,2,0, -- 100,3,0,132,0,0,131,1,0,90,5,0,101,6,0,100, -- 4,0,100,4,0,100,5,0,100,6,0,132,2,0,131,1, -- 0,90,7,0,101,6,0,100,4,0,100,7,0,100,8,0, -- 132,1,0,131,1,0,90,8,0,101,6,0,101,9,0,100, -- 9,0,100,10,0,132,0,0,131,1,0,131,1,0,90,10, -- 0,101,6,0,101,9,0,100,11,0,100,12,0,132,0,0, -- 131,1,0,131,1,0,90,11,0,101,6,0,101,9,0,100, -- 13,0,100,14,0,132,0,0,131,1,0,131,1,0,90,12, -- 0,101,6,0,101,9,0,100,15,0,100,16,0,132,0,0, -- 131,1,0,131,1,0,90,13,0,100,4,0,83,41,17,218, -- 15,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, -- 122,144,77,101,116,97,32,112,97,116,104,32,105,109,112,111, -- 114,116,32,102,111,114,32,98,117,105,108,116,45,105,110,32, -- 109,111,100,117,108,101,115,46,10,10,32,32,32,32,65,108, -- 108,32,109,101,116,104,111,100,115,32,97,114,101,32,101,105, -- 116,104,101,114,32,99,108,97,115,115,32,111,114,32,115,116, -- 97,116,105,99,32,109,101,116,104,111,100,115,32,116,111,32, -- 97,118,111,105,100,32,116,104,101,32,110,101,101,100,32,116, -- 111,10,32,32,32,32,105,110,115,116,97,110,116,105,97,116, -- 101,32,116,104,101,32,99,108,97,115,115,46,10,10,32,32, -- 32,32,99,1,0,0,0,0,0,0,0,1,0,0,0,2, -- 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, -- 0,0,124,0,0,106,1,0,131,1,0,83,41,2,122,115, -- 82,101,116,117,114,110,32,114,101,112,114,32,102,111,114,32, -- 116,104,101,32,109,111,100,117,108,101,46,10,10,32,32,32, -- 32,32,32,32,32,84,104,101,32,109,101,116,104,111,100,32, -- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, -- 84,104,101,32,105,109,112,111,114,116,32,109,97,99,104,105, -- 110,101,114,121,32,100,111,101,115,32,116,104,101,32,106,111, -- 98,32,105,116,115,101,108,102,46,10,10,32,32,32,32,32, -- 32,32,32,122,24,60,109,111,100,117,108,101,32,123,33,114, -- 125,32,40,98,117,105,108,116,45,105,110,41,62,41,2,114, -- 47,0,0,0,114,57,0,0,0,41,1,114,179,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 205,0,0,0,233,4,0,0,115,2,0,0,0,0,7,122, -- 27,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, -- 46,109,111,100,117,108,101,95,114,101,112,114,78,99,4,0, -- 0,0,0,0,0,0,4,0,0,0,5,0,0,0,67,0, -- 0,0,115,58,0,0,0,124,2,0,100,0,0,107,9,0, -- 114,16,0,100,0,0,83,116,0,0,106,1,0,124,1,0, -- 131,1,0,114,50,0,116,2,0,124,1,0,124,0,0,100, -- 1,0,100,2,0,131,2,1,83,100,0,0,83,100,0,0, -- 83,41,3,78,114,217,0,0,0,122,8,98,117,105,108,116, -- 45,105,110,41,3,114,106,0,0,0,90,10,105,115,95,98, -- 117,105,108,116,105,110,114,173,0,0,0,41,4,218,3,99, -- 108,115,114,158,0,0,0,114,35,0,0,0,218,6,116,97, -- 114,103,101,116,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,9,102,105,110,100,95,115,112,101,99,242,4, -- 0,0,115,10,0,0,0,0,2,12,1,4,1,15,1,19, -- 2,122,25,66,117,105,108,116,105,110,73,109,112,111,114,116, -- 101,114,46,102,105,110,100,95,115,112,101,99,99,3,0,0, -- 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, -- 0,115,41,0,0,0,124,0,0,106,0,0,124,1,0,124, -- 2,0,131,2,0,125,3,0,124,3,0,100,1,0,107,9, -- 0,114,37,0,124,3,0,106,1,0,83,100,1,0,83,41, -- 2,122,175,70,105,110,100,32,116,104,101,32,98,117,105,108, -- 116,45,105,110,32,109,111,100,117,108,101,46,10,10,32,32, -- 32,32,32,32,32,32,73,102,32,39,112,97,116,104,39,32, -- 105,115,32,101,118,101,114,32,115,112,101,99,105,102,105,101, -- 100,32,116,104,101,110,32,116,104,101,32,115,101,97,114,99, -- 104,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32, -- 97,32,102,97,105,108,117,114,101,46,10,10,32,32,32,32, -- 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, -- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, -- 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, -- 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, -- 32,32,78,41,2,114,13,1,0,0,114,169,0,0,0,41, -- 4,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, -- 114,177,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,11,102,105,110,100,95,109,111,100,117,108, -- 101,251,4,0,0,115,4,0,0,0,0,9,18,1,122,27, -- 66,117,105,108,116,105,110,73,109,112,111,114,116,101,114,46, -- 102,105,110,100,95,109,111,100,117,108,101,99,2,0,0,0, -- 0,0,0,0,3,0,0,0,10,0,0,0,67,0,0,0, -- 115,59,0,0,0,116,0,0,124,1,0,131,1,0,143,23, -- 0,1,116,1,0,116,2,0,106,3,0,124,1,0,131,2, -- 0,125,2,0,87,100,1,0,81,88,124,0,0,124,2,0, -- 95,4,0,100,2,0,124,2,0,95,5,0,124,2,0,83, -- 41,3,122,23,76,111,97,100,32,97,32,98,117,105,108,116, -- 45,105,110,32,109,111,100,117,108,101,46,78,114,30,0,0, -- 0,41,6,114,69,0,0,0,114,114,0,0,0,114,106,0, -- 0,0,90,12,105,110,105,116,95,98,117,105,108,116,105,110, -- 114,204,0,0,0,114,250,0,0,0,41,3,114,11,1,0, -- 0,114,158,0,0,0,114,179,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,4,1,0,0,7, -- 5,0,0,115,10,0,0,0,0,6,13,1,24,1,9,1, -- 9,1,122,27,66,117,105,108,116,105,110,73,109,112,111,114, -- 116,101,114,46,108,111,97,100,95,109,111,100,117,108,101,99, -+ 0,67,0,0,0,115,158,0,0,0,124,0,0,106,0,0, -+ 100,0,0,107,8,0,114,151,0,124,0,0,106,1,0,100, -+ 0,0,107,9,0,114,151,0,124,0,0,106,2,0,114,151, -+ 0,124,0,0,106,1,0,125,1,0,124,1,0,106,3,0, -+ 116,4,0,116,5,0,131,1,0,131,1,0,114,112,0,121, -+ 19,0,116,6,0,124,1,0,131,1,0,124,0,0,95,0, -+ 0,87,113,145,0,4,116,7,0,107,10,0,114,108,0,1, -+ 1,1,89,113,145,0,88,113,148,0,124,1,0,106,3,0, -+ 116,4,0,116,8,0,131,1,0,131,1,0,114,148,0,124, -+ 1,0,124,0,0,95,0,0,113,148,0,113,151,0,110,0, -+ 0,124,0,0,106,0,0,83,41,1,78,41,9,114,223,0, -+ 0,0,114,218,0,0,0,114,222,0,0,0,218,8,101,110, -+ 100,115,119,105,116,104,218,5,116,117,112,108,101,114,135,0, -+ 0,0,114,133,0,0,0,114,125,0,0,0,218,17,66,89, -+ 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,41, -+ 2,114,72,0,0,0,114,132,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,226,0,0,0,56, -+ 3,0,0,115,22,0,0,0,0,2,15,1,24,1,9,1, -+ 21,1,3,1,19,1,13,1,8,1,21,1,18,1,122,17, -+ 77,111,100,117,108,101,83,112,101,99,46,99,97,99,104,101, -+ 100,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, -+ 0,0,67,0,0,0,115,13,0,0,0,124,1,0,124,0, -+ 0,95,0,0,100,0,0,83,41,1,78,41,1,114,223,0, -+ 0,0,41,2,114,72,0,0,0,114,226,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,226,0, -+ 0,0,70,3,0,0,115,2,0,0,0,0,2,99,1,0, -+ 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, -+ 0,0,115,46,0,0,0,124,0,0,106,0,0,100,1,0, -+ 107,8,0,114,35,0,124,0,0,106,1,0,106,2,0,100, -+ 2,0,131,1,0,100,3,0,25,83,124,0,0,106,1,0, -+ 83,100,1,0,83,41,4,122,32,84,104,101,32,110,97,109, -+ 101,32,111,102,32,116,104,101,32,109,111,100,117,108,101,39, -+ 115,32,112,97,114,101,110,116,46,78,114,117,0,0,0,114, -+ 85,0,0,0,41,3,114,221,0,0,0,114,68,0,0,0, -+ 114,33,0,0,0,41,1,114,72,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,6,112,97,114, -+ 101,110,116,74,3,0,0,115,6,0,0,0,0,3,15,1, -+ 20,2,122,17,77,111,100,117,108,101,83,112,101,99,46,112, -+ 97,114,101,110,116,99,1,0,0,0,0,0,0,0,1,0, -+ 0,0,1,0,0,0,67,0,0,0,115,7,0,0,0,124, -+ 0,0,106,0,0,83,41,1,78,41,1,114,222,0,0,0, -+ 41,1,114,72,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,227,0,0,0,82,3,0,0,115, -+ 2,0,0,0,0,2,122,23,77,111,100,117,108,101,83,112, -+ 101,99,46,104,97,115,95,108,111,99,97,116,105,111,110,99, -+ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, -+ 67,0,0,0,115,19,0,0,0,116,0,0,124,1,0,131, -+ 1,0,124,0,0,95,1,0,100,0,0,83,41,1,78,41, -+ 2,218,4,98,111,111,108,114,222,0,0,0,41,2,114,72, -+ 0,0,0,218,5,118,97,108,117,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,227,0,0,0,86,3, -+ 0,0,115,2,0,0,0,0,2,41,12,114,58,0,0,0, -+ 114,57,0,0,0,114,59,0,0,0,114,60,0,0,0,114, -+ 73,0,0,0,114,102,0,0,0,114,230,0,0,0,218,8, -+ 112,114,111,112,101,114,116,121,114,226,0,0,0,218,6,115, -+ 101,116,116,101,114,114,234,0,0,0,114,227,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,217,0,0,0,241,2,0,0,115,20,0,0, -+ 0,12,35,6,2,15,1,15,11,12,10,12,12,18,14,21, -+ 4,18,8,18,4,114,217,0,0,0,114,218,0,0,0,114, -+ 220,0,0,0,99,2,0,0,0,2,0,0,0,5,0,0, -+ 0,15,0,0,0,67,0,0,0,115,193,0,0,0,116,0, -+ 0,124,1,0,100,1,0,131,2,0,114,83,0,124,3,0, -+ 100,2,0,107,8,0,114,43,0,116,1,0,124,0,0,100, -+ 3,0,124,1,0,131,1,1,83,124,3,0,114,55,0,103, -+ 0,0,110,3,0,100,2,0,125,4,0,116,1,0,124,0, -+ 0,100,3,0,124,1,0,100,4,0,124,4,0,131,1,2, -+ 83,124,3,0,100,2,0,107,8,0,114,168,0,116,0,0, -+ 124,1,0,100,5,0,131,2,0,114,159,0,121,19,0,124, -+ 1,0,106,2,0,124,0,0,131,1,0,125,3,0,87,113, -+ 165,0,4,116,3,0,107,10,0,114,155,0,1,1,1,100, -+ 2,0,125,3,0,89,113,165,0,88,113,168,0,100,6,0, -+ 125,3,0,110,0,0,116,4,0,124,0,0,124,1,0,100, -+ 7,0,124,2,0,100,5,0,124,3,0,131,2,2,83,41, -+ 8,122,53,82,101,116,117,114,110,32,97,32,109,111,100,117, -+ 108,101,32,115,112,101,99,32,98,97,115,101,100,32,111,110, -+ 32,118,97,114,105,111,117,115,32,108,111,97,100,101,114,32, -+ 109,101,116,104,111,100,115,46,218,12,103,101,116,95,102,105, -+ 108,101,110,97,109,101,78,114,170,0,0,0,114,221,0,0, -+ 0,114,220,0,0,0,70,114,218,0,0,0,41,5,114,61, -+ 0,0,0,218,23,115,112,101,99,95,102,114,111,109,95,102, -+ 105,108,101,95,108,111,99,97,116,105,111,110,114,220,0,0, -+ 0,114,154,0,0,0,114,217,0,0,0,41,5,114,68,0, -+ 0,0,114,170,0,0,0,114,218,0,0,0,114,220,0,0, -+ 0,90,6,115,101,97,114,99,104,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,174,0,0,0,91,3,0, -+ 0,115,28,0,0,0,0,2,15,1,12,1,16,1,18,1, -+ 15,1,7,2,12,1,15,1,3,1,19,1,13,1,14,3, -+ 9,2,114,174,0,0,0,114,170,0,0,0,114,221,0,0, -+ 0,99,2,0,0,0,2,0,0,0,9,0,0,0,19,0, -+ 0,0,67,0,0,0,115,110,1,0,0,124,1,0,100,1, -+ 0,107,8,0,114,79,0,100,2,0,125,1,0,116,0,0, -+ 124,2,0,100,3,0,131,2,0,114,79,0,121,19,0,124, -+ 2,0,106,1,0,124,0,0,131,1,0,125,1,0,87,113, -+ 76,0,4,116,2,0,107,10,0,114,72,0,1,1,1,89, -+ 113,76,0,88,113,79,0,110,0,0,116,3,0,124,0,0, -+ 124,2,0,100,4,0,124,1,0,131,2,1,125,4,0,100, -+ 5,0,124,4,0,95,4,0,124,2,0,100,1,0,107,8, -+ 0,114,203,0,120,79,0,116,5,0,131,0,0,68,93,61, -+ 0,92,2,0,125,5,0,125,6,0,124,1,0,106,6,0, -+ 116,7,0,124,6,0,131,1,0,131,1,0,114,131,0,124, -+ 5,0,124,0,0,124,1,0,131,2,0,125,2,0,124,2, -+ 0,124,4,0,95,8,0,80,113,131,0,113,131,0,87,100, -+ 1,0,83,110,0,0,124,3,0,116,9,0,107,8,0,114, -+ 38,1,116,0,0,124,2,0,100,6,0,131,2,0,114,47, -+ 1,121,19,0,124,2,0,106,10,0,124,0,0,131,1,0, -+ 125,7,0,87,110,18,0,4,116,2,0,107,10,0,114,13, -+ 1,1,1,1,89,113,35,1,88,124,7,0,114,35,1,103, -+ 0,0,124,4,0,95,11,0,113,35,1,113,47,1,110,9, -+ 0,124,3,0,124,4,0,95,11,0,124,4,0,106,11,0, -+ 103,0,0,107,2,0,114,106,1,124,1,0,114,106,1,116, -+ 12,0,124,1,0,131,1,0,100,7,0,25,125,8,0,124, -+ 4,0,106,11,0,106,13,0,124,8,0,131,1,0,1,113, -+ 106,1,110,0,0,124,4,0,83,41,8,97,61,1,0,0, -+ 82,101,116,117,114,110,32,97,32,109,111,100,117,108,101,32, -+ 115,112,101,99,32,98,97,115,101,100,32,111,110,32,97,32, -+ 102,105,108,101,32,108,111,99,97,116,105,111,110,46,10,10, -+ 32,32,32,32,84,111,32,105,110,100,105,99,97,116,101,32, -+ 116,104,97,116,32,116,104,101,32,109,111,100,117,108,101,32, -+ 105,115,32,97,32,112,97,99,107,97,103,101,44,32,115,101, -+ 116,10,32,32,32,32,115,117,98,109,111,100,117,108,101,95, -+ 115,101,97,114,99,104,95,108,111,99,97,116,105,111,110,115, -+ 32,116,111,32,97,32,108,105,115,116,32,111,102,32,100,105, -+ 114,101,99,116,111,114,121,32,112,97,116,104,115,46,32,32, -+ 65,110,10,32,32,32,32,101,109,112,116,121,32,108,105,115, -+ 116,32,105,115,32,115,117,102,102,105,99,105,101,110,116,44, -+ 32,116,104,111,117,103,104,32,105,116,115,32,110,111,116,32, -+ 111,116,104,101,114,119,105,115,101,32,117,115,101,102,117,108, -+ 32,116,111,32,116,104,101,10,32,32,32,32,105,109,112,111, -+ 114,116,32,115,121,115,116,101,109,46,10,10,32,32,32,32, -+ 84,104,101,32,108,111,97,100,101,114,32,109,117,115,116,32, -+ 116,97,107,101,32,97,32,115,112,101,99,32,97,115,32,105, -+ 116,115,32,111,110,108,121,32,95,95,105,110,105,116,95,95, -+ 40,41,32,97,114,103,46,10,10,32,32,32,32,78,122,9, -+ 60,117,110,107,110,111,119,110,62,114,239,0,0,0,114,218, -+ 0,0,0,84,114,220,0,0,0,114,85,0,0,0,41,14, -+ 114,61,0,0,0,114,239,0,0,0,114,154,0,0,0,114, -+ 217,0,0,0,114,222,0,0,0,218,27,95,103,101,116,95, -+ 115,117,112,112,111,114,116,101,100,95,102,105,108,101,95,108, -+ 111,97,100,101,114,115,114,231,0,0,0,114,232,0,0,0, -+ 114,170,0,0,0,218,9,95,80,79,80,85,76,65,84,69, -+ 114,220,0,0,0,114,221,0,0,0,114,39,0,0,0,114, -+ 224,0,0,0,41,9,114,68,0,0,0,218,8,108,111,99, -+ 97,116,105,111,110,114,170,0,0,0,114,221,0,0,0,114, -+ 178,0,0,0,218,12,108,111,97,100,101,114,95,99,108,97, -+ 115,115,114,128,0,0,0,114,220,0,0,0,90,7,100,105, -+ 114,110,97,109,101,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,240,0,0,0,116,3,0,0,115,60,0, -+ 0,0,0,12,12,4,6,1,15,2,3,1,19,1,13,1, -+ 11,8,21,1,9,3,12,1,22,1,21,1,15,1,9,1, -+ 8,2,7,3,12,2,15,1,3,1,19,1,13,1,5,2, -+ 6,1,18,2,9,1,15,1,6,1,16,1,22,2,114,240, -+ 0,0,0,99,3,0,0,0,0,0,0,0,8,0,0,0, -+ 53,0,0,0,67,0,0,0,115,124,1,0,0,121,13,0, -+ 124,0,0,106,0,0,125,3,0,87,110,18,0,4,116,1, -+ 0,107,10,0,114,33,0,1,1,1,89,110,17,0,88,124, -+ 3,0,100,0,0,107,9,0,114,50,0,124,3,0,83,124, -+ 0,0,106,2,0,125,4,0,124,1,0,100,0,0,107,8, -+ 0,114,108,0,121,13,0,124,0,0,106,3,0,125,1,0, -+ 87,113,108,0,4,116,1,0,107,10,0,114,104,0,1,1, -+ 1,89,113,108,0,88,110,0,0,121,13,0,124,0,0,106, -+ 4,0,125,5,0,87,110,24,0,4,116,1,0,107,10,0, -+ 114,147,0,1,1,1,100,0,0,125,5,0,89,110,1,0, -+ 88,124,2,0,100,0,0,107,8,0,114,224,0,124,5,0, -+ 100,0,0,107,8,0,114,215,0,121,13,0,124,1,0,106, -+ 5,0,125,2,0,87,113,221,0,4,116,1,0,107,10,0, -+ 114,211,0,1,1,1,100,0,0,125,2,0,89,113,221,0, -+ 88,113,224,0,124,5,0,125,2,0,110,0,0,121,13,0, -+ 124,0,0,106,6,0,125,6,0,87,110,24,0,4,116,1, -+ 0,107,10,0,114,7,1,1,1,1,100,0,0,125,6,0, -+ 89,110,1,0,88,121,19,0,116,7,0,124,0,0,106,8, -+ 0,131,1,0,125,7,0,87,110,24,0,4,116,1,0,107, -+ 10,0,114,53,1,1,1,1,100,0,0,125,7,0,89,110, -+ 1,0,88,116,9,0,124,4,0,124,1,0,100,1,0,124, -+ 2,0,131,2,1,125,3,0,124,5,0,100,0,0,107,8, -+ 0,114,93,1,100,2,0,110,3,0,100,3,0,124,3,0, -+ 95,10,0,124,6,0,124,3,0,95,11,0,124,7,0,124, -+ 3,0,95,12,0,124,3,0,83,41,4,78,114,218,0,0, -+ 0,70,84,41,13,114,209,0,0,0,114,210,0,0,0,114, -+ 58,0,0,0,114,205,0,0,0,114,211,0,0,0,90,7, -+ 95,79,82,73,71,73,78,218,10,95,95,99,97,99,104,101, -+ 100,95,95,218,4,108,105,115,116,218,8,95,95,112,97,116, -+ 104,95,95,114,217,0,0,0,114,222,0,0,0,114,226,0, -+ 0,0,114,221,0,0,0,41,8,114,180,0,0,0,114,170, -+ 0,0,0,114,218,0,0,0,114,178,0,0,0,114,68,0, -+ 0,0,114,243,0,0,0,114,226,0,0,0,114,221,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,17,95,115,112,101,99,95,102,114,111,109,95,109,111,100, -+ 117,108,101,180,3,0,0,115,72,0,0,0,0,2,3,1, -+ 13,1,13,1,5,2,12,1,4,2,9,1,12,1,3,1, -+ 13,1,13,2,8,1,3,1,13,1,13,1,11,1,12,1, -+ 12,1,3,1,13,1,13,1,14,2,9,1,3,1,13,1, -+ 13,1,11,1,3,1,19,1,13,1,11,2,21,1,27,1, -+ 9,1,9,1,114,248,0,0,0,99,0,0,0,0,0,0, -+ 0,0,0,0,0,0,6,0,0,0,64,0,0,0,115,142, -+ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, -+ 1,0,90,3,0,100,2,0,100,3,0,132,0,0,90,4, -+ 0,100,4,0,100,5,0,132,0,0,90,5,0,100,6,0, -+ 100,7,0,100,8,0,100,9,0,100,10,0,100,11,0,132, -+ 0,2,90,6,0,100,12,0,100,13,0,132,0,0,90,7, -+ 0,100,14,0,100,15,0,132,0,0,90,8,0,100,16,0, -+ 100,17,0,132,0,0,90,9,0,100,18,0,100,19,0,132, -+ 0,0,90,10,0,100,20,0,100,21,0,132,0,0,90,11, -+ 0,100,22,0,100,23,0,132,0,0,90,12,0,100,24,0, -+ 83,41,25,114,175,0,0,0,122,77,67,111,110,118,101,110, -+ 105,101,110,99,101,32,119,114,97,112,112,101,114,32,97,114, -+ 111,117,110,100,32,115,112,101,99,32,111,98,106,101,99,116, -+ 115,32,116,111,32,112,114,111,118,105,100,101,32,115,112,101, -+ 99,45,115,112,101,99,105,102,105,99,10,32,32,32,32,109, -+ 101,116,104,111,100,115,46,99,2,0,0,0,0,0,0,0, -+ 2,0,0,0,2,0,0,0,67,0,0,0,115,13,0,0, -+ 0,124,1,0,124,0,0,95,0,0,100,0,0,83,41,1, -+ 78,41,1,114,178,0,0,0,41,2,114,72,0,0,0,114, -+ 178,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,73,0,0,0,232,3,0,0,115,2,0,0, -+ 0,0,1,122,21,95,83,112,101,99,77,101,116,104,111,100, -+ 115,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, -+ 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115, -+ 158,0,0,0,124,0,0,106,0,0,125,1,0,124,1,0, -+ 106,1,0,100,1,0,107,8,0,114,30,0,100,2,0,110, -+ 6,0,124,1,0,106,1,0,125,2,0,124,1,0,106,2, -+ 0,100,1,0,107,8,0,114,104,0,124,1,0,106,3,0, -+ 100,1,0,107,8,0,114,82,0,100,3,0,106,4,0,124, -+ 2,0,131,1,0,83,100,4,0,106,4,0,124,2,0,124, -+ 1,0,106,3,0,131,2,0,83,110,50,0,124,1,0,106, -+ 5,0,114,132,0,100,5,0,106,4,0,124,2,0,124,1, -+ 0,106,2,0,131,2,0,83,100,6,0,106,4,0,124,1, -+ 0,106,1,0,124,1,0,106,2,0,131,2,0,83,100,1, -+ 0,83,41,7,122,38,82,101,116,117,114,110,32,116,104,101, -+ 32,114,101,112,114,32,116,111,32,117,115,101,32,102,111,114, -+ 32,116,104,101,32,109,111,100,117,108,101,46,78,114,207,0, -+ 0,0,122,13,60,109,111,100,117,108,101,32,123,33,114,125, -+ 62,122,20,60,109,111,100,117,108,101,32,123,33,114,125,32, -+ 40,123,33,114,125,41,62,122,23,60,109,111,100,117,108,101, -+ 32,123,33,114,125,32,102,114,111,109,32,123,33,114,125,62, -+ 122,18,60,109,111,100,117,108,101,32,123,33,114,125,32,40, -+ 123,125,41,62,41,6,114,178,0,0,0,114,68,0,0,0, -+ 114,218,0,0,0,114,170,0,0,0,114,48,0,0,0,114, -+ 227,0,0,0,41,3,114,72,0,0,0,114,178,0,0,0, -+ 114,68,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,206,0,0,0,235,3,0,0,115,18,0, -+ 0,0,0,3,9,1,30,1,15,1,15,1,13,2,22,2, -+ 9,1,19,2,122,24,95,83,112,101,99,77,101,116,104,111, -+ 100,115,46,109,111,100,117,108,101,95,114,101,112,114,218,9, -+ 95,111,118,101,114,114,105,100,101,70,218,11,95,102,111,114, -+ 99,101,95,110,97,109,101,84,99,2,0,0,0,2,0,0, -+ 0,6,0,0,0,59,0,0,0,67,0,0,0,115,75,2, -+ 0,0,124,0,0,106,0,0,125,4,0,124,2,0,115,45, -+ 0,124,3,0,115,45,0,116,1,0,124,1,0,100,1,0, -+ 100,2,0,131,3,0,100,2,0,107,8,0,114,85,0,121, -+ 16,0,124,4,0,106,2,0,124,1,0,95,3,0,87,113, -+ 85,0,4,116,4,0,107,10,0,114,81,0,1,1,1,89, -+ 113,85,0,88,110,0,0,124,2,0,115,115,0,116,1,0, -+ 124,1,0,100,3,0,100,2,0,131,3,0,100,2,0,107, -+ 8,0,114,221,0,124,4,0,106,5,0,125,5,0,124,5, -+ 0,100,2,0,107,8,0,114,184,0,124,4,0,106,6,0, -+ 100,2,0,107,9,0,114,184,0,116,7,0,106,8,0,116, -+ 7,0,131,1,0,125,5,0,124,4,0,106,6,0,124,5, -+ 0,95,9,0,113,184,0,110,0,0,121,13,0,124,5,0, -+ 124,1,0,95,10,0,87,113,221,0,4,116,4,0,107,10, -+ 0,114,217,0,1,1,1,89,113,221,0,88,110,0,0,124, -+ 2,0,115,251,0,116,1,0,124,1,0,100,4,0,100,2, -+ 0,131,3,0,100,2,0,107,8,0,114,35,1,121,16,0, -+ 124,4,0,106,11,0,124,1,0,95,12,0,87,113,35,1, -+ 4,116,4,0,107,10,0,114,31,1,1,1,1,89,113,35, -+ 1,88,110,0,0,121,13,0,124,4,0,124,1,0,95,13, -+ 0,87,110,18,0,4,116,4,0,107,10,0,114,68,1,1, -+ 1,1,89,110,1,0,88,124,2,0,115,99,1,116,1,0, -+ 124,1,0,100,5,0,100,2,0,131,3,0,100,2,0,107, -+ 8,0,114,157,1,124,4,0,106,6,0,100,2,0,107,9, -+ 0,114,157,1,121,16,0,124,4,0,106,6,0,124,1,0, -+ 95,14,0,87,113,154,1,4,116,4,0,107,10,0,114,150, -+ 1,1,1,1,89,113,154,1,88,113,157,1,110,0,0,124, -+ 4,0,106,15,0,114,71,2,124,2,0,115,196,1,116,1, -+ 0,124,1,0,100,6,0,100,2,0,131,3,0,100,2,0, -+ 107,8,0,114,236,1,121,16,0,124,4,0,106,16,0,124, -+ 1,0,95,17,0,87,113,236,1,4,116,4,0,107,10,0, -+ 114,232,1,1,1,1,89,113,236,1,88,110,0,0,124,2, -+ 0,115,10,2,116,1,0,124,1,0,100,7,0,100,2,0, -+ 131,3,0,100,2,0,107,8,0,114,71,2,124,4,0,106, -+ 18,0,100,2,0,107,9,0,114,68,2,121,16,0,124,4, -+ 0,106,18,0,124,1,0,95,19,0,87,113,65,2,4,116, -+ 4,0,107,10,0,114,61,2,1,1,1,89,113,65,2,88, -+ 113,68,2,113,71,2,110,0,0,100,2,0,83,41,8,97, -+ 29,2,0,0,83,101,116,32,116,104,101,32,109,111,100,117, -+ 108,101,39,115,32,97,116,116,114,105,98,117,116,101,115,46, -+ 10,10,32,32,32,32,32,32,32,32,65,108,108,32,109,105, -+ 115,115,105,110,103,32,105,109,112,111,114,116,45,114,101,108, -+ 97,116,101,100,32,109,111,100,117,108,101,32,97,116,116,114, -+ 105,98,117,116,101,115,32,119,105,108,108,32,98,101,32,115, -+ 101,116,46,32,32,72,101,114,101,10,32,32,32,32,32,32, -+ 32,32,105,115,32,104,111,119,32,116,104,101,32,115,112,101, -+ 99,32,97,116,116,114,105,98,117,116,101,115,32,109,97,112, -+ 32,111,110,116,111,32,116,104,101,32,109,111,100,117,108,101, -+ 58,10,10,32,32,32,32,32,32,32,32,115,112,101,99,46, -+ 110,97,109,101,32,45,62,32,109,111,100,117,108,101,46,95, -+ 95,110,97,109,101,95,95,10,32,32,32,32,32,32,32,32, -+ 115,112,101,99,46,108,111,97,100,101,114,32,45,62,32,109, -+ 111,100,117,108,101,46,95,95,108,111,97,100,101,114,95,95, -+ 10,32,32,32,32,32,32,32,32,115,112,101,99,46,112,97, -+ 114,101,110,116,32,45,62,32,109,111,100,117,108,101,46,95, -+ 95,112,97,99,107,97,103,101,95,95,10,32,32,32,32,32, -+ 32,32,32,115,112,101,99,32,45,62,32,109,111,100,117,108, -+ 101,46,95,95,115,112,101,99,95,95,10,10,32,32,32,32, -+ 32,32,32,32,79,112,116,105,111,110,97,108,58,10,32,32, -+ 32,32,32,32,32,32,115,112,101,99,46,111,114,105,103,105, -+ 110,32,45,62,32,109,111,100,117,108,101,46,95,95,102,105, -+ 108,101,95,95,32,40,105,102,32,115,112,101,99,46,115,101, -+ 116,95,102,105,108,101,97,116,116,114,32,105,115,32,116,114, -+ 117,101,41,10,32,32,32,32,32,32,32,32,115,112,101,99, -+ 46,99,97,99,104,101,100,32,45,62,32,109,111,100,117,108, -+ 101,46,95,95,99,97,99,104,101,100,95,95,32,40,105,102, -+ 32,95,95,102,105,108,101,95,95,32,97,108,115,111,32,115, -+ 101,116,41,10,32,32,32,32,32,32,32,32,115,112,101,99, -+ 46,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, -+ 104,95,108,111,99,97,116,105,111,110,115,32,45,62,32,109, -+ 111,100,117,108,101,46,95,95,112,97,116,104,95,95,32,40, -+ 105,102,32,115,101,116,41,10,10,32,32,32,32,32,32,32, -+ 32,114,58,0,0,0,78,114,205,0,0,0,218,11,95,95, -+ 112,97,99,107,97,103,101,95,95,114,247,0,0,0,114,211, -+ 0,0,0,114,245,0,0,0,41,20,114,178,0,0,0,114, -+ 63,0,0,0,114,68,0,0,0,114,58,0,0,0,114,210, -+ 0,0,0,114,170,0,0,0,114,221,0,0,0,218,16,95, -+ 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,218, -+ 7,95,95,110,101,119,95,95,218,5,95,112,97,116,104,114, -+ 205,0,0,0,114,234,0,0,0,114,251,0,0,0,114,209, -+ 0,0,0,114,247,0,0,0,114,227,0,0,0,114,218,0, -+ 0,0,114,211,0,0,0,114,226,0,0,0,114,245,0,0, -+ 0,41,6,114,72,0,0,0,114,180,0,0,0,114,249,0, -+ 0,0,114,250,0,0,0,114,178,0,0,0,114,170,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,17,105,110,105,116,95,109,111,100,117,108,101,95,97,116, -+ 116,114,115,251,3,0,0,115,88,0,0,0,0,17,9,6, -+ 12,1,24,1,3,1,16,1,13,1,8,3,30,1,9,1, -+ 12,2,15,1,15,1,18,1,3,1,13,1,13,1,8,3, -+ 30,1,3,1,16,1,13,1,8,3,3,1,13,1,13,1, -+ 5,3,30,1,15,1,3,1,16,1,13,1,11,2,9,2, -+ 30,1,3,1,16,1,13,1,8,3,30,1,15,1,3,1, -+ 16,1,13,1,122,30,95,83,112,101,99,77,101,116,104,111, -+ 100,115,46,105,110,105,116,95,109,111,100,117,108,101,95,97, -+ 116,116,114,115,99,1,0,0,0,0,0,0,0,3,0,0, -+ 0,3,0,0,0,67,0,0,0,115,101,0,0,0,124,0, -+ 0,106,0,0,125,1,0,116,1,0,124,1,0,106,2,0, -+ 100,1,0,131,2,0,114,48,0,124,1,0,106,2,0,106, -+ 3,0,124,1,0,131,1,0,125,2,0,110,6,0,100,2, -+ 0,125,2,0,124,2,0,100,2,0,107,8,0,114,84,0, -+ 116,4,0,124,1,0,106,5,0,131,1,0,125,2,0,110, -+ 0,0,124,0,0,106,6,0,124,2,0,131,1,0,1,124, -+ 2,0,83,41,3,122,153,82,101,116,117,114,110,32,97,32, -+ 110,101,119,32,109,111,100,117,108,101,32,116,111,32,98,101, -+ 32,108,111,97,100,101,100,46,10,10,32,32,32,32,32,32, -+ 32,32,84,104,101,32,105,109,112,111,114,116,45,114,101,108, -+ 97,116,101,100,32,109,111,100,117,108,101,32,97,116,116,114, -+ 105,98,117,116,101,115,32,97,114,101,32,97,108,115,111,32, -+ 115,101,116,32,119,105,116,104,32,116,104,101,10,32,32,32, -+ 32,32,32,32,32,97,112,112,114,111,112,114,105,97,116,101, -+ 32,118,97,108,117,101,115,32,102,114,111,109,32,116,104,101, -+ 32,115,112,101,99,46,10,10,32,32,32,32,32,32,32,32, -+ 218,13,99,114,101,97,116,101,95,109,111,100,117,108,101,78, -+ 41,7,114,178,0,0,0,114,61,0,0,0,114,170,0,0, -+ 0,114,0,1,0,0,114,69,0,0,0,114,68,0,0,0, -+ 114,255,0,0,0,41,3,114,72,0,0,0,114,178,0,0, -+ 0,114,180,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,6,99,114,101,97,116,101,75,4,0, -+ 0,115,16,0,0,0,0,7,9,2,18,3,21,2,6,1, -+ 12,4,18,1,13,1,122,19,95,83,112,101,99,77,101,116, -+ 104,111,100,115,46,99,114,101,97,116,101,99,2,0,0,0, -+ 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, -+ 115,23,0,0,0,124,0,0,106,0,0,106,1,0,106,2, -+ 0,124,1,0,131,1,0,1,100,1,0,83,41,2,122,189, -+ 68,111,32,101,118,101,114,121,116,104,105,110,103,32,110,101, -+ 99,101,115,115,97,114,121,32,116,111,32,101,120,101,99,117, -+ 116,101,32,116,104,101,32,109,111,100,117,108,101,46,10,10, -+ 32,32,32,32,32,32,32,32,84,104,101,32,110,97,109,101, -+ 115,112,97,99,101,32,111,102,32,96,109,111,100,117,108,101, -+ 96,32,105,115,32,117,115,101,100,32,97,115,32,116,104,101, -+ 32,116,97,114,103,101,116,32,111,102,32,101,120,101,99,117, -+ 116,105,111,110,46,10,32,32,32,32,32,32,32,32,84,104, -+ 105,115,32,109,101,116,104,111,100,32,117,115,101,115,32,116, -+ 104,101,32,108,111,97,100,101,114,39,115,32,96,101,120,101, -+ 99,95,109,111,100,117,108,101,40,41,96,32,109,101,116,104, -+ 111,100,46,10,10,32,32,32,32,32,32,32,32,78,41,3, -+ 114,178,0,0,0,114,170,0,0,0,218,11,101,120,101,99, -+ 95,109,111,100,117,108,101,41,2,114,72,0,0,0,114,180, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,218,5,95,101,120,101,99,98,4,0,0,115,2,0, -+ 0,0,0,7,122,18,95,83,112,101,99,77,101,116,104,111, -+ 100,115,46,95,101,120,101,99,99,2,0,0,0,0,0,0, -+ 0,4,0,0,0,11,0,0,0,67,0,0,0,115,17,1, -+ 0,0,124,0,0,106,0,0,106,1,0,125,2,0,116,2, -+ 0,106,3,0,131,0,0,1,116,4,0,124,2,0,131,1, -+ 0,143,226,0,1,116,5,0,106,6,0,106,7,0,124,2, -+ 0,131,1,0,124,1,0,107,9,0,114,95,0,100,1,0, -+ 106,8,0,124,2,0,131,1,0,125,3,0,116,9,0,124, -+ 3,0,100,2,0,124,2,0,131,1,1,130,1,0,110,0, -+ 0,124,0,0,106,0,0,106,10,0,100,3,0,107,8,0, -+ 114,181,0,124,0,0,106,0,0,106,11,0,100,3,0,107, -+ 8,0,114,158,0,116,9,0,100,4,0,100,2,0,124,0, -+ 0,106,0,0,106,1,0,131,1,1,130,1,0,110,0,0, -+ 124,0,0,106,12,0,124,1,0,100,5,0,100,6,0,131, -+ 1,1,1,124,1,0,83,124,0,0,106,12,0,124,1,0, -+ 100,5,0,100,6,0,131,1,1,1,116,13,0,124,0,0, -+ 106,0,0,106,10,0,100,7,0,131,2,0,115,243,0,124, -+ 0,0,106,0,0,106,10,0,106,14,0,124,2,0,131,1, -+ 0,1,110,13,0,124,0,0,106,15,0,124,1,0,131,1, -+ 0,1,87,100,3,0,81,88,116,5,0,106,6,0,124,2, -+ 0,25,83,41,8,122,51,69,120,101,99,117,116,101,32,116, -+ 104,101,32,115,112,101,99,32,105,110,32,97,110,32,101,120, -+ 105,115,116,105,110,103,32,109,111,100,117,108,101,39,115,32, -+ 110,97,109,101,115,112,97,99,101,46,122,30,109,111,100,117, -+ 108,101,32,123,33,114,125,32,110,111,116,32,105,110,32,115, -+ 121,115,46,109,111,100,117,108,101,115,114,68,0,0,0,78, -+ 122,14,109,105,115,115,105,110,103,32,108,111,97,100,101,114, -+ 114,249,0,0,0,84,114,2,1,0,0,41,16,114,178,0, -+ 0,0,114,68,0,0,0,114,107,0,0,0,218,12,97,99, -+ 113,117,105,114,101,95,108,111,99,107,114,104,0,0,0,114, -+ 8,0,0,0,114,74,0,0,0,114,94,0,0,0,114,48, -+ 0,0,0,114,154,0,0,0,114,170,0,0,0,114,221,0, -+ 0,0,114,255,0,0,0,114,61,0,0,0,218,11,108,111, -+ 97,100,95,109,111,100,117,108,101,114,3,1,0,0,41,4, -+ 114,72,0,0,0,114,180,0,0,0,114,68,0,0,0,114, -+ 172,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,176,0,0,0,108,4,0,0,115,32,0,0, -+ 0,0,2,12,1,10,1,13,1,24,1,15,1,21,1,18, -+ 1,18,1,27,2,19,1,4,1,19,1,21,4,22,2,19, -+ 1,122,17,95,83,112,101,99,77,101,116,104,111,100,115,46, -+ 101,120,101,99,99,1,0,0,0,0,0,0,0,3,0,0, -+ 0,27,0,0,0,67,0,0,0,115,24,1,0,0,124,0, -+ 0,106,0,0,125,1,0,124,1,0,106,1,0,106,2,0, -+ 124,1,0,106,3,0,131,1,0,1,116,4,0,106,5,0, -+ 124,1,0,106,3,0,25,125,2,0,116,6,0,124,2,0, -+ 100,1,0,100,0,0,131,3,0,100,0,0,107,8,0,114, -+ 108,0,121,16,0,124,1,0,106,1,0,124,2,0,95,7, -+ 0,87,113,108,0,4,116,8,0,107,10,0,114,104,0,1, -+ 1,1,89,113,108,0,88,110,0,0,116,6,0,124,2,0, -+ 100,2,0,100,0,0,131,3,0,100,0,0,107,8,0,114, -+ 215,0,121,59,0,124,2,0,106,9,0,124,2,0,95,10, -+ 0,116,11,0,124,2,0,100,3,0,131,2,0,115,190,0, -+ 124,1,0,106,3,0,106,12,0,100,4,0,131,1,0,100, -+ 5,0,25,124,2,0,95,10,0,110,0,0,87,113,215,0, -+ 4,116,8,0,107,10,0,114,211,0,1,1,1,89,113,215, -+ 0,88,110,0,0,116,6,0,124,2,0,100,6,0,100,0, -+ 0,131,3,0,100,0,0,107,8,0,114,20,1,121,13,0, -+ 124,1,0,124,2,0,95,13,0,87,113,20,1,4,116,8, -+ 0,107,10,0,114,16,1,1,1,1,89,113,20,1,88,110, -+ 0,0,124,2,0,83,41,7,78,114,205,0,0,0,114,251, -+ 0,0,0,114,247,0,0,0,114,117,0,0,0,114,85,0, -+ 0,0,114,209,0,0,0,41,14,114,178,0,0,0,114,170, -+ 0,0,0,114,5,1,0,0,114,68,0,0,0,114,8,0, -+ 0,0,114,74,0,0,0,114,63,0,0,0,114,205,0,0, -+ 0,114,210,0,0,0,114,58,0,0,0,114,251,0,0,0, -+ 114,61,0,0,0,114,33,0,0,0,114,209,0,0,0,41, -+ 3,114,72,0,0,0,114,178,0,0,0,114,180,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 25,95,108,111,97,100,95,98,97,99,107,119,97,114,100,95, -+ 99,111,109,112,97,116,105,98,108,101,132,4,0,0,115,42, -+ 0,0,0,0,4,9,1,19,2,16,1,24,1,3,1,16, -+ 1,13,1,8,1,24,1,3,4,12,1,15,1,32,1,13, -+ 1,8,1,24,1,3,1,13,1,13,1,8,1,122,38,95, -+ 83,112,101,99,77,101,116,104,111,100,115,46,95,108,111,97, -+ 100,95,98,97,99,107,119,97,114,100,95,99,111,109,112,97, -+ 116,105,98,108,101,99,1,0,0,0,0,0,0,0,2,0, -+ 0,0,11,0,0,0,67,0,0,0,115,179,0,0,0,124, -+ 0,0,106,0,0,106,1,0,100,0,0,107,9,0,114,52, -+ 0,116,2,0,124,0,0,106,0,0,106,1,0,100,1,0, -+ 131,2,0,115,52,0,124,0,0,106,3,0,131,0,0,83, -+ 110,0,0,124,0,0,106,4,0,131,0,0,125,1,0,116, -+ 5,0,124,1,0,131,1,0,143,84,0,1,124,0,0,106, -+ 0,0,106,1,0,100,0,0,107,8,0,114,143,0,124,0, -+ 0,106,0,0,106,6,0,100,0,0,107,8,0,114,156,0, -+ 116,7,0,100,2,0,100,3,0,124,0,0,106,0,0,106, -+ 8,0,131,1,1,130,1,0,113,156,0,110,13,0,124,0, -+ 0,106,9,0,124,1,0,131,1,0,1,87,100,0,0,81, -+ 88,116,10,0,106,11,0,124,0,0,106,0,0,106,8,0, -+ 25,83,41,4,78,114,2,1,0,0,122,14,109,105,115,115, -+ 105,110,103,32,108,111,97,100,101,114,114,68,0,0,0,41, -+ 12,114,178,0,0,0,114,170,0,0,0,114,61,0,0,0, -+ 114,6,1,0,0,114,1,1,0,0,114,213,0,0,0,114, -+ 221,0,0,0,114,154,0,0,0,114,68,0,0,0,114,3, -+ 1,0,0,114,8,0,0,0,114,74,0,0,0,41,2,114, -+ 72,0,0,0,114,180,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,14,95,108,111,97,100,95, -+ 117,110,108,111,99,107,101,100,162,4,0,0,115,20,0,0, -+ 0,0,2,18,2,21,1,13,2,12,1,13,1,18,1,18, -+ 1,30,3,19,5,122,27,95,83,112,101,99,77,101,116,104, -+ 111,100,115,46,95,108,111,97,100,95,117,110,108,111,99,107, -+ 101,100,99,1,0,0,0,0,0,0,0,1,0,0,0,8, -+ 0,0,0,67,0,0,0,115,49,0,0,0,116,0,0,106, -+ 1,0,131,0,0,1,116,2,0,124,0,0,106,3,0,106, -+ 4,0,131,1,0,143,15,0,1,124,0,0,106,5,0,131, -+ 0,0,83,87,100,1,0,81,88,100,1,0,83,41,2,122, -+ 207,82,101,116,117,114,110,32,97,32,110,101,119,32,109,111, -+ 100,117,108,101,32,111,98,106,101,99,116,44,32,108,111,97, -+ 100,101,100,32,98,121,32,116,104,101,32,115,112,101,99,39, -+ 115,32,108,111,97,100,101,114,46,10,10,32,32,32,32,32, -+ 32,32,32,84,104,101,32,109,111,100,117,108,101,32,105,115, -+ 32,110,111,116,32,97,100,100,101,100,32,116,111,32,105,116, -+ 115,32,112,97,114,101,110,116,46,10,10,32,32,32,32,32, -+ 32,32,32,73,102,32,97,32,109,111,100,117,108,101,32,105, -+ 115,32,97,108,114,101,97,100,121,32,105,110,32,115,121,115, -+ 46,109,111,100,117,108,101,115,44,32,116,104,97,116,32,101, -+ 120,105,115,116,105,110,103,32,109,111,100,117,108,101,32,103, -+ 101,116,115,10,32,32,32,32,32,32,32,32,99,108,111,98, -+ 98,101,114,101,100,46,10,10,32,32,32,32,32,32,32,32, -+ 78,41,6,114,107,0,0,0,114,4,1,0,0,114,104,0, -+ 0,0,114,178,0,0,0,114,68,0,0,0,114,7,1,0, -+ 0,41,1,114,72,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,177,0,0,0,185,4,0,0, -+ 115,6,0,0,0,0,9,10,1,19,1,122,17,95,83,112, -+ 101,99,77,101,116,104,111,100,115,46,108,111,97,100,78,41, -+ 13,114,58,0,0,0,114,57,0,0,0,114,59,0,0,0, -+ 114,60,0,0,0,114,73,0,0,0,114,206,0,0,0,114, -+ 255,0,0,0,114,1,1,0,0,114,3,1,0,0,114,176, -+ 0,0,0,114,6,1,0,0,114,7,1,0,0,114,177,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,175,0,0,0,225,3,0,0,115, -+ 20,0,0,0,12,3,6,4,12,3,12,16,24,80,12,23, -+ 12,10,12,24,12,30,12,23,114,175,0,0,0,99,4,0, -+ 0,0,0,0,0,0,6,0,0,0,11,0,0,0,67,0, -+ 0,0,115,201,0,0,0,124,0,0,106,0,0,100,1,0, -+ 131,1,0,125,4,0,124,0,0,106,0,0,100,2,0,131, -+ 1,0,125,5,0,124,4,0,115,102,0,124,5,0,114,54, -+ 0,124,5,0,106,1,0,125,4,0,113,102,0,124,2,0, -+ 124,3,0,107,2,0,114,84,0,116,2,0,124,1,0,124, -+ 2,0,131,2,0,125,4,0,113,102,0,116,3,0,124,1, -+ 0,124,2,0,131,2,0,125,4,0,110,0,0,124,5,0, -+ 115,132,0,116,4,0,124,1,0,124,2,0,100,3,0,124, -+ 4,0,131,2,1,125,5,0,110,0,0,121,44,0,124,5, -+ 0,124,0,0,100,2,0,60,124,4,0,124,0,0,100,1, -+ 0,60,124,2,0,124,0,0,100,4,0,60,124,3,0,124, -+ 0,0,100,5,0,60,87,110,18,0,4,116,5,0,107,10, -+ 0,114,196,0,1,1,1,89,110,1,0,88,100,0,0,83, -+ 41,6,78,114,205,0,0,0,114,209,0,0,0,114,170,0, -+ 0,0,114,211,0,0,0,114,245,0,0,0,41,6,114,94, -+ 0,0,0,114,170,0,0,0,218,20,83,111,117,114,99,101, -+ 108,101,115,115,70,105,108,101,76,111,97,100,101,114,218,16, -+ 83,111,117,114,99,101,70,105,108,101,76,111,97,100,101,114, -+ 114,240,0,0,0,114,208,0,0,0,41,6,90,2,110,115, -+ 114,68,0,0,0,90,8,112,97,116,104,110,97,109,101,90, -+ 9,99,112,97,116,104,110,97,109,101,114,170,0,0,0,114, -+ 178,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,14,95,102,105,120,95,117,112,95,109,111,100, -+ 117,108,101,199,4,0,0,115,34,0,0,0,0,2,15,1, -+ 15,1,6,1,6,1,12,1,12,1,18,2,18,1,6,1, -+ 24,1,3,1,10,1,10,1,10,1,14,1,13,2,114,10, -+ 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, -+ 5,0,0,0,64,0,0,0,115,181,0,0,0,101,0,0, -+ 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,101, -+ 4,0,100,2,0,100,3,0,132,0,0,131,1,0,90,5, -+ 0,101,6,0,100,4,0,100,4,0,100,5,0,100,6,0, -+ 132,2,0,131,1,0,90,7,0,101,6,0,100,4,0,100, -+ 7,0,100,8,0,132,1,0,131,1,0,90,8,0,101,6, -+ 0,101,9,0,100,9,0,100,10,0,132,0,0,131,1,0, -+ 131,1,0,90,10,0,101,6,0,101,9,0,100,11,0,100, -+ 12,0,132,0,0,131,1,0,131,1,0,90,11,0,101,6, -+ 0,101,9,0,100,13,0,100,14,0,132,0,0,131,1,0, -+ 131,1,0,90,12,0,101,6,0,101,9,0,100,15,0,100, -+ 16,0,132,0,0,131,1,0,131,1,0,90,13,0,100,4, -+ 0,83,41,17,218,15,66,117,105,108,116,105,110,73,109,112, -+ 111,114,116,101,114,122,144,77,101,116,97,32,112,97,116,104, -+ 32,105,109,112,111,114,116,32,102,111,114,32,98,117,105,108, -+ 116,45,105,110,32,109,111,100,117,108,101,115,46,10,10,32, -+ 32,32,32,65,108,108,32,109,101,116,104,111,100,115,32,97, -+ 114,101,32,101,105,116,104,101,114,32,99,108,97,115,115,32, -+ 111,114,32,115,116,97,116,105,99,32,109,101,116,104,111,100, -+ 115,32,116,111,32,97,118,111,105,100,32,116,104,101,32,110, -+ 101,101,100,32,116,111,10,32,32,32,32,105,110,115,116,97, -+ 110,116,105,97,116,101,32,116,104,101,32,99,108,97,115,115, -+ 46,10,10,32,32,32,32,99,1,0,0,0,0,0,0,0, -+ 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, -+ 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, -+ 83,41,2,122,115,82,101,116,117,114,110,32,114,101,112,114, -+ 32,102,111,114,32,116,104,101,32,109,111,100,117,108,101,46, -+ 10,10,32,32,32,32,32,32,32,32,84,104,101,32,109,101, -+ 116,104,111,100,32,105,115,32,100,101,112,114,101,99,97,116, -+ 101,100,46,32,32,84,104,101,32,105,109,112,111,114,116,32, -+ 109,97,99,104,105,110,101,114,121,32,100,111,101,115,32,116, -+ 104,101,32,106,111,98,32,105,116,115,101,108,102,46,10,10, -+ 32,32,32,32,32,32,32,32,122,24,60,109,111,100,117,108, -+ 101,32,123,33,114,125,32,40,98,117,105,108,116,45,105,110, -+ 41,62,41,2,114,48,0,0,0,114,58,0,0,0,41,1, -+ 114,180,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,206,0,0,0,233,4,0,0,115,2,0, -+ 0,0,0,7,122,27,66,117,105,108,116,105,110,73,109,112, -+ 111,114,116,101,114,46,109,111,100,117,108,101,95,114,101,112, -+ 114,78,99,4,0,0,0,0,0,0,0,4,0,0,0,5, -+ 0,0,0,67,0,0,0,115,58,0,0,0,124,2,0,100, -+ 0,0,107,9,0,114,16,0,100,0,0,83,116,0,0,106, -+ 1,0,124,1,0,131,1,0,114,50,0,116,2,0,124,1, -+ 0,124,0,0,100,1,0,100,2,0,131,2,1,83,100,0, -+ 0,83,100,0,0,83,41,3,78,114,218,0,0,0,122,8, -+ 98,117,105,108,116,45,105,110,41,3,114,107,0,0,0,90, -+ 10,105,115,95,98,117,105,108,116,105,110,114,174,0,0,0, -+ 41,4,218,3,99,108,115,114,159,0,0,0,114,36,0,0, -+ 0,218,6,116,97,114,103,101,116,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,9,102,105,110,100,95,115, -+ 112,101,99,242,4,0,0,115,10,0,0,0,0,2,12,1, -+ 4,1,15,1,19,2,122,25,66,117,105,108,116,105,110,73, -+ 109,112,111,114,116,101,114,46,102,105,110,100,95,115,112,101, -+ 99,99,3,0,0,0,0,0,0,0,4,0,0,0,3,0, -+ 0,0,67,0,0,0,115,41,0,0,0,124,0,0,106,0, -+ 0,124,1,0,124,2,0,131,2,0,125,3,0,124,3,0, -+ 100,1,0,107,9,0,114,37,0,124,3,0,106,1,0,83, -+ 100,1,0,83,41,2,122,175,70,105,110,100,32,116,104,101, -+ 32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,101, -+ 46,10,10,32,32,32,32,32,32,32,32,73,102,32,39,112, -+ 97,116,104,39,32,105,115,32,101,118,101,114,32,115,112,101, -+ 99,105,102,105,101,100,32,116,104,101,110,32,116,104,101,32, -+ 115,101,97,114,99,104,32,105,115,32,99,111,110,115,105,100, -+ 101,114,101,100,32,97,32,102,97,105,108,117,114,101,46,10, -+ 10,32,32,32,32,32,32,32,32,84,104,105,115,32,109,101, -+ 116,104,111,100,32,105,115,32,100,101,112,114,101,99,97,116, -+ 101,100,46,32,32,85,115,101,32,102,105,110,100,95,115,112, -+ 101,99,40,41,32,105,110,115,116,101,97,100,46,10,10,32, -+ 32,32,32,32,32,32,32,78,41,2,114,14,1,0,0,114, -+ 170,0,0,0,41,4,114,12,1,0,0,114,159,0,0,0, -+ 114,36,0,0,0,114,178,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,11,102,105,110,100,95, -+ 109,111,100,117,108,101,251,4,0,0,115,4,0,0,0,0, -+ 9,18,1,122,27,66,117,105,108,116,105,110,73,109,112,111, -+ 114,116,101,114,46,102,105,110,100,95,109,111,100,117,108,101, -+ 99,2,0,0,0,0,0,0,0,3,0,0,0,10,0,0, -+ 0,67,0,0,0,115,59,0,0,0,116,0,0,124,1,0, -+ 131,1,0,143,23,0,1,116,1,0,116,2,0,106,3,0, -+ 124,1,0,131,2,0,125,2,0,87,100,1,0,81,88,124, -+ 0,0,124,2,0,95,4,0,100,2,0,124,2,0,95,5, -+ 0,124,2,0,83,41,3,122,23,76,111,97,100,32,97,32, -+ 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,46, -+ 78,114,31,0,0,0,41,6,114,70,0,0,0,114,115,0, -+ 0,0,114,107,0,0,0,90,12,105,110,105,116,95,98,117, -+ 105,108,116,105,110,114,205,0,0,0,114,251,0,0,0,41, -+ 3,114,12,1,0,0,114,159,0,0,0,114,180,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 5,1,0,0,7,5,0,0,115,10,0,0,0,0,6,13, -+ 1,24,1,9,1,9,1,122,27,66,117,105,108,116,105,110, -+ 73,109,112,111,114,116,101,114,46,108,111,97,100,95,109,111, -+ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, -+ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, -+ 0,83,41,2,122,57,82,101,116,117,114,110,32,78,111,110, -+ 101,32,97,115,32,98,117,105,108,116,45,105,110,32,109,111, -+ 100,117,108,101,115,32,100,111,32,110,111,116,32,104,97,118, -+ 101,32,99,111,100,101,32,111,98,106,101,99,116,115,46,78, -+ 114,5,0,0,0,41,2,114,12,1,0,0,114,159,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,8,103,101,116,95,99,111,100,101,19,5,0,0,115,2, -+ 0,0,0,0,4,122,24,66,117,105,108,116,105,110,73,109, -+ 112,111,114,116,101,114,46,103,101,116,95,99,111,100,101,99, - 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, - 67,0,0,0,115,4,0,0,0,100,1,0,83,41,2,122, -- 57,82,101,116,117,114,110,32,78,111,110,101,32,97,115,32, -+ 56,82,101,116,117,114,110,32,78,111,110,101,32,97,115,32, - 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,115, -- 32,100,111,32,110,111,116,32,104,97,118,101,32,99,111,100, -- 101,32,111,98,106,101,99,116,115,46,78,114,4,0,0,0, -- 41,2,114,11,1,0,0,114,158,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,8,103,101,116, -- 95,99,111,100,101,19,5,0,0,115,2,0,0,0,0,4, -- 122,24,66,117,105,108,116,105,110,73,109,112,111,114,116,101, -- 114,46,103,101,116,95,99,111,100,101,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,1,0,0,0,67,0,0,0,115, -- 4,0,0,0,100,1,0,83,41,2,122,56,82,101,116,117, -- 114,110,32,78,111,110,101,32,97,115,32,98,117,105,108,116, -- 45,105,110,32,109,111,100,117,108,101,115,32,100,111,32,110, -- 111,116,32,104,97,118,101,32,115,111,117,114,99,101,32,99, -- 111,100,101,46,78,114,4,0,0,0,41,2,114,11,1,0, -- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,10,103,101,116,95,115,111,117,114,99, -- 101,25,5,0,0,115,2,0,0,0,0,4,122,26,66,117, -- 105,108,116,105,110,73,109,112,111,114,116,101,114,46,103,101, -- 116,95,115,111,117,114,99,101,99,2,0,0,0,0,0,0, -+ 32,100,111,32,110,111,116,32,104,97,118,101,32,115,111,117, -+ 114,99,101,32,99,111,100,101,46,78,114,5,0,0,0,41, -+ 2,114,12,1,0,0,114,159,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,10,103,101,116,95, -+ 115,111,117,114,99,101,25,5,0,0,115,2,0,0,0,0, -+ 4,122,26,66,117,105,108,116,105,110,73,109,112,111,114,116, -+ 101,114,46,103,101,116,95,115,111,117,114,99,101,99,2,0, -+ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, -+ 0,0,115,4,0,0,0,100,1,0,83,41,2,122,52,82, -+ 101,116,117,114,110,32,70,97,108,115,101,32,97,115,32,98, -+ 117,105,108,116,45,105,110,32,109,111,100,117,108,101,115,32, -+ 97,114,101,32,110,101,118,101,114,32,112,97,99,107,97,103, -+ 101,115,46,70,114,5,0,0,0,41,2,114,12,1,0,0, -+ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,220,0,0,0,31,5,0,0,115,2,0, -+ 0,0,0,4,122,26,66,117,105,108,116,105,110,73,109,112, -+ 111,114,116,101,114,46,105,115,95,112,97,99,107,97,103,101, -+ 41,14,114,58,0,0,0,114,57,0,0,0,114,59,0,0, -+ 0,114,60,0,0,0,218,12,115,116,97,116,105,99,109,101, -+ 116,104,111,100,114,206,0,0,0,218,11,99,108,97,115,115, -+ 109,101,116,104,111,100,114,14,1,0,0,114,15,1,0,0, -+ 114,162,0,0,0,114,5,1,0,0,114,16,1,0,0,114, -+ 17,1,0,0,114,220,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,11,1, -+ 0,0,224,4,0,0,115,28,0,0,0,12,7,6,2,18, -+ 9,3,1,21,8,3,1,18,11,3,1,21,11,3,1,21, -+ 5,3,1,21,5,3,1,114,11,1,0,0,99,0,0,0, -+ 0,0,0,0,0,0,0,0,0,5,0,0,0,64,0,0, -+ 0,115,193,0,0,0,101,0,0,90,1,0,100,0,0,90, -+ 2,0,100,1,0,90,3,0,101,4,0,100,2,0,100,3, -+ 0,132,0,0,131,1,0,90,5,0,101,6,0,100,4,0, -+ 100,4,0,100,5,0,100,6,0,132,2,0,131,1,0,90, -+ 7,0,101,6,0,100,4,0,100,7,0,100,8,0,132,1, -+ 0,131,1,0,90,8,0,101,4,0,100,9,0,100,10,0, -+ 132,0,0,131,1,0,90,9,0,101,6,0,100,11,0,100, -+ 12,0,132,0,0,131,1,0,90,10,0,101,6,0,101,11, -+ 0,100,13,0,100,14,0,132,0,0,131,1,0,131,1,0, -+ 90,12,0,101,6,0,101,11,0,100,15,0,100,16,0,132, -+ 0,0,131,1,0,131,1,0,90,13,0,101,6,0,101,11, -+ 0,100,17,0,100,18,0,132,0,0,131,1,0,131,1,0, -+ 90,14,0,100,4,0,83,41,19,218,14,70,114,111,122,101, -+ 110,73,109,112,111,114,116,101,114,122,142,77,101,116,97,32, -+ 112,97,116,104,32,105,109,112,111,114,116,32,102,111,114,32, -+ 102,114,111,122,101,110,32,109,111,100,117,108,101,115,46,10, -+ 10,32,32,32,32,65,108,108,32,109,101,116,104,111,100,115, -+ 32,97,114,101,32,101,105,116,104,101,114,32,99,108,97,115, -+ 115,32,111,114,32,115,116,97,116,105,99,32,109,101,116,104, -+ 111,100,115,32,116,111,32,97,118,111,105,100,32,116,104,101, -+ 32,110,101,101,100,32,116,111,10,32,32,32,32,105,110,115, -+ 116,97,110,116,105,97,116,101,32,116,104,101,32,99,108,97, -+ 115,115,46,10,10,32,32,32,32,99,1,0,0,0,0,0, -+ 0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,16, -+ 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, -+ 1,0,83,41,2,122,115,82,101,116,117,114,110,32,114,101, -+ 112,114,32,102,111,114,32,116,104,101,32,109,111,100,117,108, -+ 101,46,10,10,32,32,32,32,32,32,32,32,84,104,101,32, -+ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, -+ 97,116,101,100,46,32,32,84,104,101,32,105,109,112,111,114, -+ 116,32,109,97,99,104,105,110,101,114,121,32,100,111,101,115, -+ 32,116,104,101,32,106,111,98,32,105,116,115,101,108,102,46, -+ 10,10,32,32,32,32,32,32,32,32,122,22,60,109,111,100, -+ 117,108,101,32,123,33,114,125,32,40,102,114,111,122,101,110, -+ 41,62,41,2,114,48,0,0,0,114,58,0,0,0,41,1, -+ 218,1,109,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,206,0,0,0,47,5,0,0,115,2,0,0,0, -+ 0,7,122,26,70,114,111,122,101,110,73,109,112,111,114,116, -+ 101,114,46,109,111,100,117,108,101,95,114,101,112,114,78,99, -+ 4,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0, -+ 67,0,0,0,115,42,0,0,0,116,0,0,106,1,0,124, -+ 1,0,131,1,0,114,34,0,116,2,0,124,1,0,124,0, -+ 0,100,1,0,100,2,0,131,2,1,83,100,0,0,83,100, -+ 0,0,83,41,3,78,114,218,0,0,0,90,6,102,114,111, -+ 122,101,110,41,3,114,107,0,0,0,114,163,0,0,0,114, -+ 174,0,0,0,41,4,114,12,1,0,0,114,159,0,0,0, -+ 114,36,0,0,0,114,13,1,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,14,1,0,0,56,5, -+ 0,0,115,6,0,0,0,0,2,15,1,19,2,122,24,70, -+ 114,111,122,101,110,73,109,112,111,114,116,101,114,46,102,105, -+ 110,100,95,115,112,101,99,99,3,0,0,0,0,0,0,0, -+ 3,0,0,0,2,0,0,0,67,0,0,0,115,23,0,0, -+ 0,116,0,0,106,1,0,124,1,0,131,1,0,114,19,0, -+ 124,0,0,83,100,1,0,83,41,2,122,93,70,105,110,100, -+ 32,97,32,102,114,111,122,101,110,32,109,111,100,117,108,101, -+ 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, -+ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, -+ 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, -+ 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, -+ 10,32,32,32,32,32,32,32,32,78,41,2,114,107,0,0, -+ 0,114,163,0,0,0,41,3,114,12,1,0,0,114,159,0, -+ 0,0,114,36,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,15,1,0,0,63,5,0,0,115, -+ 2,0,0,0,0,7,122,26,70,114,111,122,101,110,73,109, -+ 112,111,114,116,101,114,46,102,105,110,100,95,109,111,100,117, -+ 108,101,99,1,0,0,0,0,0,0,0,3,0,0,0,4, -+ 0,0,0,67,0,0,0,115,95,0,0,0,124,0,0,106, -+ 0,0,106,1,0,125,1,0,116,2,0,106,3,0,124,1, -+ 0,131,1,0,115,57,0,116,4,0,100,1,0,106,5,0, -+ 124,1,0,131,1,0,100,2,0,124,1,0,131,1,1,130, -+ 1,0,110,0,0,116,6,0,116,2,0,106,7,0,124,1, -+ 0,131,2,0,125,2,0,116,8,0,124,2,0,124,0,0, -+ 106,9,0,131,2,0,1,100,0,0,83,41,3,78,122,27, -+ 123,33,114,125,32,105,115,32,110,111,116,32,97,32,102,114, -+ 111,122,101,110,32,109,111,100,117,108,101,114,68,0,0,0, -+ 41,10,114,209,0,0,0,114,68,0,0,0,114,107,0,0, -+ 0,114,163,0,0,0,114,154,0,0,0,114,48,0,0,0, -+ 114,115,0,0,0,218,17,103,101,116,95,102,114,111,122,101, -+ 110,95,111,98,106,101,99,116,114,176,0,0,0,114,64,0, -+ 0,0,41,3,114,180,0,0,0,114,68,0,0,0,114,195, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,2,1,0,0,72,5,0,0,115,12,0,0,0, -+ 0,2,12,1,15,1,18,1,12,1,18,1,122,26,70,114, -+ 111,122,101,110,73,109,112,111,114,116,101,114,46,101,120,101, -+ 99,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, -+ 0,2,0,0,0,3,0,0,0,67,0,0,0,115,13,0, -+ 0,0,116,0,0,124,0,0,124,1,0,131,2,0,83,41, -+ 1,122,95,76,111,97,100,32,97,32,102,114,111,122,101,110, -+ 32,109,111,100,117,108,101,46,10,10,32,32,32,32,32,32, -+ 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115, -+ 32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,115, -+ 101,32,101,120,101,99,95,109,111,100,117,108,101,40,41,32, -+ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, -+ 32,32,41,1,114,181,0,0,0,41,2,114,12,1,0,0, -+ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,5,1,0,0,81,5,0,0,115,2,0, -+ 0,0,0,7,122,26,70,114,111,122,101,110,73,109,112,111, -+ 114,116,101,114,46,108,111,97,100,95,109,111,100,117,108,101, -+ 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, -+ 0,67,0,0,0,115,13,0,0,0,116,0,0,106,1,0, -+ 124,1,0,131,1,0,83,41,1,122,45,82,101,116,117,114, -+ 110,32,116,104,101,32,99,111,100,101,32,111,98,106,101,99, -+ 116,32,102,111,114,32,116,104,101,32,102,114,111,122,101,110, -+ 32,109,111,100,117,108,101,46,41,2,114,107,0,0,0,114, -+ 22,1,0,0,41,2,114,12,1,0,0,114,159,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 16,1,0,0,90,5,0,0,115,2,0,0,0,0,4,122, -+ 23,70,114,111,122,101,110,73,109,112,111,114,116,101,114,46, -+ 103,101,116,95,99,111,100,101,99,2,0,0,0,0,0,0, - 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, -- 0,0,100,1,0,83,41,2,122,52,82,101,116,117,114,110, -- 32,70,97,108,115,101,32,97,115,32,98,117,105,108,116,45, -- 105,110,32,109,111,100,117,108,101,115,32,97,114,101,32,110, -- 101,118,101,114,32,112,97,99,107,97,103,101,115,46,70,114, -- 4,0,0,0,41,2,114,11,1,0,0,114,158,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 219,0,0,0,31,5,0,0,115,2,0,0,0,0,4,122, -- 26,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, -- 46,105,115,95,112,97,99,107,97,103,101,41,14,114,57,0, -- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, -- 0,218,12,115,116,97,116,105,99,109,101,116,104,111,100,114, -- 205,0,0,0,218,11,99,108,97,115,115,109,101,116,104,111, -- 100,114,13,1,0,0,114,14,1,0,0,114,161,0,0,0, -- 114,4,1,0,0,114,15,1,0,0,114,16,1,0,0,114, -- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,10,1,0,0,224,4,0, -- 0,115,28,0,0,0,12,7,6,2,18,9,3,1,21,8, -- 3,1,18,11,3,1,21,11,3,1,21,5,3,1,21,5, -- 3,1,114,10,1,0,0,99,0,0,0,0,0,0,0,0, -- 0,0,0,0,5,0,0,0,64,0,0,0,115,193,0,0, -+ 0,0,100,1,0,83,41,2,122,54,82,101,116,117,114,110, -+ 32,78,111,110,101,32,97,115,32,102,114,111,122,101,110,32, -+ 109,111,100,117,108,101,115,32,100,111,32,110,111,116,32,104, -+ 97,118,101,32,115,111,117,114,99,101,32,99,111,100,101,46, -+ 78,114,5,0,0,0,41,2,114,12,1,0,0,114,159,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,17,1,0,0,96,5,0,0,115,2,0,0,0,0, -+ 4,122,25,70,114,111,122,101,110,73,109,112,111,114,116,101, -+ 114,46,103,101,116,95,115,111,117,114,99,101,99,2,0,0, -+ 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, -+ 0,115,13,0,0,0,116,0,0,106,1,0,124,1,0,131, -+ 1,0,83,41,1,122,46,82,101,116,117,114,110,32,84,114, -+ 117,101,32,105,102,32,116,104,101,32,102,114,111,122,101,110, -+ 32,109,111,100,117,108,101,32,105,115,32,97,32,112,97,99, -+ 107,97,103,101,46,41,2,114,107,0,0,0,90,17,105,115, -+ 95,102,114,111,122,101,110,95,112,97,99,107,97,103,101,41, -+ 2,114,12,1,0,0,114,159,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,220,0,0,0,102, -+ 5,0,0,115,2,0,0,0,0,4,122,25,70,114,111,122, -+ 101,110,73,109,112,111,114,116,101,114,46,105,115,95,112,97, -+ 99,107,97,103,101,41,15,114,58,0,0,0,114,57,0,0, -+ 0,114,59,0,0,0,114,60,0,0,0,114,18,1,0,0, -+ 114,206,0,0,0,114,19,1,0,0,114,14,1,0,0,114, -+ 15,1,0,0,114,2,1,0,0,114,5,1,0,0,114,165, -+ 0,0,0,114,16,1,0,0,114,17,1,0,0,114,220,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,20,1,0,0,38,5,0,0,115, -+ 28,0,0,0,12,7,6,2,18,9,3,1,21,6,3,1, -+ 18,8,18,9,18,9,3,1,21,5,3,1,21,5,3,1, -+ 114,20,1,0,0,99,0,0,0,0,0,0,0,0,0,0, -+ 0,0,5,0,0,0,64,0,0,0,115,121,0,0,0,101, -+ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, -+ 0,100,2,0,90,4,0,100,3,0,90,5,0,100,4,0, -+ 90,6,0,101,7,0,100,5,0,100,6,0,132,0,0,131, -+ 1,0,90,8,0,101,7,0,100,7,0,100,8,0,132,0, -+ 0,131,1,0,90,9,0,101,7,0,100,9,0,100,9,0, -+ 100,10,0,100,11,0,132,2,0,131,1,0,90,10,0,101, -+ 7,0,100,9,0,100,12,0,100,13,0,132,1,0,131,1, -+ 0,90,11,0,100,9,0,83,41,14,218,21,87,105,110,100, -+ 111,119,115,82,101,103,105,115,116,114,121,70,105,110,100,101, -+ 114,122,62,77,101,116,97,32,112,97,116,104,32,102,105,110, -+ 100,101,114,32,102,111,114,32,109,111,100,117,108,101,115,32, -+ 100,101,99,108,97,114,101,100,32,105,110,32,116,104,101,32, -+ 87,105,110,100,111,119,115,32,114,101,103,105,115,116,114,121, -+ 46,122,59,83,111,102,116,119,97,114,101,92,80,121,116,104, -+ 111,110,92,80,121,116,104,111,110,67,111,114,101,92,123,115, -+ 121,115,95,118,101,114,115,105,111,110,125,92,77,111,100,117, -+ 108,101,115,92,123,102,117,108,108,110,97,109,101,125,122,65, -+ 83,111,102,116,119,97,114,101,92,80,121,116,104,111,110,92, -+ 80,121,116,104,111,110,67,111,114,101,92,123,115,121,115,95, -+ 118,101,114,115,105,111,110,125,92,77,111,100,117,108,101,115, -+ 92,123,102,117,108,108,110,97,109,101,125,92,68,101,98,117, -+ 103,70,99,2,0,0,0,0,0,0,0,2,0,0,0,11, -+ 0,0,0,67,0,0,0,115,67,0,0,0,121,23,0,116, -+ 0,0,106,1,0,116,0,0,106,2,0,124,1,0,131,2, -+ 0,83,87,110,37,0,4,116,3,0,107,10,0,114,62,0, -+ 1,1,1,116,0,0,106,1,0,116,0,0,106,4,0,124, -+ 1,0,131,2,0,83,89,110,1,0,88,100,0,0,83,41, -+ 1,78,41,5,218,7,95,119,105,110,114,101,103,90,7,79, -+ 112,101,110,75,101,121,90,17,72,75,69,89,95,67,85,82, -+ 82,69,78,84,95,85,83,69,82,114,41,0,0,0,90,18, -+ 72,75,69,89,95,76,79,67,65,76,95,77,65,67,72,73, -+ 78,69,41,2,114,12,1,0,0,218,3,107,101,121,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,14,95, -+ 111,112,101,110,95,114,101,103,105,115,116,114,121,121,5,0, -+ 0,115,8,0,0,0,0,2,3,1,23,1,13,1,122,36, -+ 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, -+ 105,110,100,101,114,46,95,111,112,101,110,95,114,101,103,105, -+ 115,116,114,121,99,2,0,0,0,0,0,0,0,6,0,0, -+ 0,16,0,0,0,67,0,0,0,115,142,0,0,0,124,0, -+ 0,106,0,0,114,21,0,124,0,0,106,1,0,125,2,0, -+ 110,9,0,124,0,0,106,2,0,125,2,0,124,2,0,106, -+ 3,0,100,1,0,124,1,0,100,2,0,116,4,0,106,5, -+ 0,100,0,0,100,3,0,133,2,0,25,131,0,2,125,3, -+ 0,121,46,0,124,0,0,106,6,0,124,3,0,131,1,0, -+ 143,25,0,125,4,0,116,7,0,106,8,0,124,4,0,100, -+ 4,0,131,2,0,125,5,0,87,100,0,0,81,88,87,110, -+ 22,0,4,116,9,0,107,10,0,114,137,0,1,1,1,100, ++ 115,99,2,0,0,0,2,0,0,0,9,0,0,0,19,0, ++ 0,0,67,0,0,0,115,89,1,0,0,124,1,0,100,1, ++ 0,107,8,0,114,73,0,100,2,0,125,1,0,116,0,0, ++ 124,2,0,100,3,0,131,2,0,114,73,0,121,19,0,124, ++ 2,0,106,1,0,124,0,0,131,1,0,125,1,0,87,110, ++ 18,0,4,116,2,0,107,10,0,114,72,0,1,1,1,89, ++ 110,1,0,88,116,3,0,106,4,0,124,0,0,124,2,0, ++ 100,4,0,124,1,0,131,2,1,125,4,0,100,5,0,124, ++ 4,0,95,5,0,124,2,0,100,1,0,107,8,0,114,194, ++ 0,120,73,0,116,6,0,131,0,0,68,93,58,0,92,2, ++ 0,125,5,0,125,6,0,124,1,0,106,7,0,116,8,0, ++ 124,6,0,131,1,0,131,1,0,114,128,0,124,5,0,124, ++ 0,0,124,1,0,131,2,0,125,2,0,124,2,0,124,4, ++ 0,95,9,0,80,113,128,0,87,100,1,0,83,124,3,0, ++ 116,10,0,107,8,0,114,23,1,116,0,0,124,2,0,100, ++ 6,0,131,2,0,114,32,1,121,19,0,124,2,0,106,11, ++ 0,124,0,0,131,1,0,125,7,0,87,110,18,0,4,116, ++ 2,0,107,10,0,114,4,1,1,1,1,89,113,32,1,88, ++ 124,7,0,114,32,1,103,0,0,124,4,0,95,12,0,110, ++ 9,0,124,3,0,124,4,0,95,12,0,124,4,0,106,12, ++ 0,103,0,0,107,2,0,114,85,1,124,1,0,114,85,1, ++ 116,13,0,124,1,0,131,1,0,100,7,0,25,125,8,0, ++ 124,4,0,106,12,0,106,14,0,124,8,0,131,1,0,1, ++ 124,4,0,83,41,8,97,61,1,0,0,82,101,116,117,114, ++ 110,32,97,32,109,111,100,117,108,101,32,115,112,101,99,32, ++ 98,97,115,101,100,32,111,110,32,97,32,102,105,108,101,32, ++ 108,111,99,97,116,105,111,110,46,10,10,32,32,32,32,84, ++ 111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32, ++ 116,104,101,32,109,111,100,117,108,101,32,105,115,32,97,32, ++ 112,97,99,107,97,103,101,44,32,115,101,116,10,32,32,32, ++ 32,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, ++ 104,95,108,111,99,97,116,105,111,110,115,32,116,111,32,97, ++ 32,108,105,115,116,32,111,102,32,100,105,114,101,99,116,111, ++ 114,121,32,112,97,116,104,115,46,32,32,65,110,10,32,32, ++ 32,32,101,109,112,116,121,32,108,105,115,116,32,105,115,32, ++ 115,117,102,102,105,99,105,101,110,116,44,32,116,104,111,117, ++ 103,104,32,105,116,115,32,110,111,116,32,111,116,104,101,114, ++ 119,105,115,101,32,117,115,101,102,117,108,32,116,111,32,116, ++ 104,101,10,32,32,32,32,105,109,112,111,114,116,32,115,121, ++ 115,116,101,109,46,10,10,32,32,32,32,84,104,101,32,108, ++ 111,97,100,101,114,32,109,117,115,116,32,116,97,107,101,32, ++ 97,32,115,112,101,99,32,97,115,32,105,116,115,32,111,110, ++ 108,121,32,95,95,105,110,105,116,95,95,40,41,32,97,114, ++ 103,46,10,10,32,32,32,32,78,122,9,60,117,110,107,110, ++ 111,119,110,62,218,12,103,101,116,95,102,105,108,101,110,97, ++ 109,101,218,6,111,114,105,103,105,110,84,218,10,105,115,95, ++ 112,97,99,107,97,103,101,114,60,0,0,0,41,15,114,116, ++ 0,0,0,114,158,0,0,0,114,108,0,0,0,114,122,0, ++ 0,0,218,10,77,111,100,117,108,101,83,112,101,99,90,13, ++ 95,115,101,116,95,102,105,108,101,97,116,116,114,218,27,95, ++ 103,101,116,95,115,117,112,112,111,114,116,101,100,95,102,105, ++ 108,101,95,108,111,97,100,101,114,115,114,93,0,0,0,114, ++ 94,0,0,0,114,128,0,0,0,218,9,95,80,79,80,85, ++ 76,65,84,69,114,160,0,0,0,114,157,0,0,0,114,39, ++ 0,0,0,218,6,97,112,112,101,110,100,41,9,114,107,0, ++ 0,0,90,8,108,111,99,97,116,105,111,110,114,128,0,0, ++ 0,114,157,0,0,0,218,4,115,112,101,99,218,12,108,111, ++ 97,100,101,114,95,99,108,97,115,115,218,8,115,117,102,102, ++ 105,120,101,115,114,160,0,0,0,90,7,100,105,114,110,97, ++ 109,101,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,23,115,112,101,99,95,102,114,111,109,95,102,105,108, ++ 101,95,108,111,99,97,116,105,111,110,254,1,0,0,115,60, ++ 0,0,0,0,12,12,4,6,1,15,2,3,1,19,1,13, ++ 1,5,8,24,1,9,3,12,1,22,1,21,1,15,1,9, ++ 1,5,2,4,3,12,2,15,1,3,1,19,1,13,1,5, ++ 2,6,1,12,2,9,1,15,1,6,1,16,1,16,2,114, ++ 168,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, ++ 0,5,0,0,0,64,0,0,0,115,121,0,0,0,101,0, ++ 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, ++ 100,2,0,90,4,0,100,3,0,90,5,0,100,4,0,90, ++ 6,0,101,7,0,100,5,0,100,6,0,132,0,0,131,1, ++ 0,90,8,0,101,7,0,100,7,0,100,8,0,132,0,0, ++ 131,1,0,90,9,0,101,7,0,100,9,0,100,9,0,100, ++ 10,0,100,11,0,132,2,0,131,1,0,90,10,0,101,7, ++ 0,100,9,0,100,12,0,100,13,0,132,1,0,131,1,0, ++ 90,11,0,100,9,0,83,41,14,218,21,87,105,110,100,111, ++ 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, ++ 122,62,77,101,116,97,32,112,97,116,104,32,102,105,110,100, ++ 101,114,32,102,111,114,32,109,111,100,117,108,101,115,32,100, ++ 101,99,108,97,114,101,100,32,105,110,32,116,104,101,32,87, ++ 105,110,100,111,119,115,32,114,101,103,105,115,116,114,121,46, ++ 122,59,83,111,102,116,119,97,114,101,92,80,121,116,104,111, ++ 110,92,80,121,116,104,111,110,67,111,114,101,92,123,115,121, ++ 115,95,118,101,114,115,105,111,110,125,92,77,111,100,117,108, ++ 101,115,92,123,102,117,108,108,110,97,109,101,125,122,65,83, ++ 111,102,116,119,97,114,101,92,80,121,116,104,111,110,92,80, ++ 121,116,104,111,110,67,111,114,101,92,123,115,121,115,95,118, ++ 101,114,115,105,111,110,125,92,77,111,100,117,108,101,115,92, ++ 123,102,117,108,108,110,97,109,101,125,92,68,101,98,117,103, ++ 70,99,2,0,0,0,0,0,0,0,2,0,0,0,11,0, ++ 0,0,67,0,0,0,115,67,0,0,0,121,23,0,116,0, ++ 0,106,1,0,116,0,0,106,2,0,124,1,0,131,2,0, ++ 83,87,110,37,0,4,116,3,0,107,10,0,114,62,0,1, ++ 1,1,116,0,0,106,1,0,116,0,0,106,4,0,124,1, ++ 0,131,2,0,83,89,110,1,0,88,100,0,0,83,41,1, ++ 78,41,5,218,7,95,119,105,110,114,101,103,90,7,79,112, ++ 101,110,75,101,121,90,17,72,75,69,89,95,67,85,82,82, ++ 69,78,84,95,85,83,69,82,114,41,0,0,0,90,18,72, ++ 75,69,89,95,76,79,67,65,76,95,77,65,67,72,73,78, ++ 69,41,2,218,3,99,108,115,218,3,107,101,121,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,14,95,111, ++ 112,101,110,95,114,101,103,105,115,116,114,121,76,2,0,0, ++ 115,8,0,0,0,0,2,3,1,23,1,13,1,122,36,87, ++ 105,110,100,111,119,115,82,101,103,105,115,116,114,121,70,105, ++ 110,100,101,114,46,95,111,112,101,110,95,114,101,103,105,115, ++ 116,114,121,99,2,0,0,0,0,0,0,0,6,0,0,0, ++ 16,0,0,0,67,0,0,0,115,143,0,0,0,124,0,0, ++ 106,0,0,114,21,0,124,0,0,106,1,0,125,2,0,110, ++ 9,0,124,0,0,106,2,0,125,2,0,124,2,0,106,3, ++ 0,100,1,0,124,1,0,100,2,0,116,4,0,106,5,0, ++ 100,0,0,100,3,0,133,2,0,25,131,0,2,125,3,0, ++ 121,47,0,124,0,0,106,6,0,124,3,0,131,1,0,143, ++ 25,0,125,4,0,116,7,0,106,8,0,124,4,0,100,4, ++ 0,131,2,0,125,5,0,87,100,0,0,81,82,88,87,110, ++ 22,0,4,116,9,0,107,10,0,114,138,0,1,1,1,100, + 0,0,83,89,110,1,0,88,124,5,0,83,41,5,78,114, -+ 159,0,0,0,90,11,115,121,115,95,118,101,114,115,105,111, -+ 110,114,137,0,0,0,114,31,0,0,0,41,10,218,11,68, ++ 127,0,0,0,90,11,115,121,115,95,118,101,114,115,105,111, ++ 110,114,81,0,0,0,114,31,0,0,0,41,10,218,11,68, + 69,66,85,71,95,66,85,73,76,68,218,18,82,69,71,73, + 83,84,82,89,95,75,69,89,95,68,69,66,85,71,218,12, + 82,69,71,73,83,84,82,89,95,75,69,89,114,48,0,0, + 0,114,8,0,0,0,218,7,118,101,114,115,105,111,110,114, -+ 26,1,0,0,114,24,1,0,0,90,10,81,117,101,114,121, -+ 86,97,108,117,101,114,41,0,0,0,41,6,114,12,1,0, -+ 0,114,159,0,0,0,90,12,114,101,103,105,115,116,114,121, -+ 95,107,101,121,114,25,1,0,0,90,4,104,107,101,121,218, ++ 173,0,0,0,114,170,0,0,0,90,10,81,117,101,114,121, ++ 86,97,108,117,101,114,41,0,0,0,41,6,114,171,0,0, ++ 0,114,127,0,0,0,90,12,114,101,103,105,115,116,114,121, ++ 95,107,101,121,114,172,0,0,0,90,4,104,107,101,121,218, + 8,102,105,108,101,112,97,116,104,114,5,0,0,0,114,5, + 0,0,0,114,6,0,0,0,218,16,95,115,101,97,114,99, -+ 104,95,114,101,103,105,115,116,114,121,128,5,0,0,115,22, ++ 104,95,114,101,103,105,115,116,114,121,83,2,0,0,115,22, + 0,0,0,0,2,9,1,12,2,9,1,15,1,22,1,3, -+ 1,18,1,28,1,13,1,9,1,122,38,87,105,110,100,111, ++ 1,18,1,29,1,13,1,9,1,122,38,87,105,110,100,111, + 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, + 46,95,115,101,97,114,99,104,95,114,101,103,105,115,116,114, + 121,78,99,4,0,0,0,0,0,0,0,8,0,0,0,14, -+ 0,0,0,67,0,0,0,115,155,0,0,0,124,0,0,106, ++ 0,0,0,67,0,0,0,115,158,0,0,0,124,0,0,106, + 0,0,124,1,0,131,1,0,125,4,0,124,4,0,100,0, + 0,107,8,0,114,31,0,100,0,0,83,121,14,0,116,1, + 0,124,4,0,131,1,0,1,87,110,22,0,4,116,2,0, + 107,10,0,114,69,0,1,1,1,100,0,0,83,89,110,1, -+ 0,88,120,78,0,116,3,0,131,0,0,68,93,67,0,92, ++ 0,88,120,81,0,116,3,0,131,0,0,68,93,70,0,92, + 2,0,125,5,0,125,6,0,124,4,0,106,4,0,116,5, + 0,124,6,0,131,1,0,131,1,0,114,80,0,116,6,0, -+ 124,1,0,124,5,0,124,1,0,124,4,0,131,2,0,100, -+ 1,0,124,4,0,131,2,1,125,7,0,124,7,0,83,113, -+ 80,0,87,100,0,0,83,41,2,78,114,218,0,0,0,41, -+ 7,114,32,1,0,0,114,40,0,0,0,114,41,0,0,0, -+ 114,241,0,0,0,114,231,0,0,0,114,232,0,0,0,114, -+ 174,0,0,0,41,8,114,12,1,0,0,114,159,0,0,0, -+ 114,36,0,0,0,114,13,1,0,0,114,31,1,0,0,114, -+ 170,0,0,0,114,128,0,0,0,114,178,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,14,1, -+ 0,0,143,5,0,0,115,24,0,0,0,0,2,15,1,12, -+ 1,4,1,3,1,14,1,13,1,9,1,22,1,21,1,21, ++ 106,7,0,124,1,0,124,5,0,124,1,0,124,4,0,131, ++ 2,0,100,1,0,124,4,0,131,2,1,125,7,0,124,7, ++ 0,83,113,80,0,87,100,0,0,83,41,2,78,114,159,0, ++ 0,0,41,8,114,179,0,0,0,114,40,0,0,0,114,41, ++ 0,0,0,114,162,0,0,0,114,93,0,0,0,114,94,0, ++ 0,0,114,122,0,0,0,218,16,115,112,101,99,95,102,114, ++ 111,109,95,108,111,97,100,101,114,41,8,114,171,0,0,0, ++ 114,127,0,0,0,114,36,0,0,0,218,6,116,97,114,103, ++ 101,116,114,178,0,0,0,114,128,0,0,0,114,167,0,0, ++ 0,114,165,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,9,102,105,110,100,95,115,112,101,99, ++ 98,2,0,0,115,26,0,0,0,0,2,15,1,12,1,4, ++ 1,3,1,14,1,13,1,9,1,22,1,21,1,9,1,15, + 1,9,1,122,31,87,105,110,100,111,119,115,82,101,103,105, + 115,116,114,121,70,105,110,100,101,114,46,102,105,110,100,95, + 115,112,101,99,99,3,0,0,0,0,0,0,0,4,0,0, @@ -35707,1919 +33369,1478 @@ diff -Nru orig/Python/importlib.h modified/Python/importlib.h + 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, + 97,116,101,100,46,32,32,85,115,101,32,101,120,101,99,95, + 109,111,100,117,108,101,40,41,32,105,110,115,116,101,97,100, -+ 46,10,10,32,32,32,32,32,32,32,32,78,41,2,114,14, -+ 1,0,0,114,170,0,0,0,41,4,114,12,1,0,0,114, -+ 159,0,0,0,114,36,0,0,0,114,178,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,15,1, -+ 0,0,158,5,0,0,115,8,0,0,0,0,7,18,1,12, -+ 1,7,2,122,33,87,105,110,100,111,119,115,82,101,103,105, -+ 115,116,114,121,70,105,110,100,101,114,46,102,105,110,100,95, -+ 109,111,100,117,108,101,41,12,114,58,0,0,0,114,57,0, -+ 0,0,114,59,0,0,0,114,60,0,0,0,114,29,1,0, -+ 0,114,28,1,0,0,114,27,1,0,0,114,19,1,0,0, -+ 114,26,1,0,0,114,32,1,0,0,114,14,1,0,0,114, -+ 15,1,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,23,1,0,0,109,5,0, ++ 46,10,10,32,32,32,32,32,32,32,32,78,41,2,114,182, ++ 0,0,0,114,128,0,0,0,41,4,114,171,0,0,0,114, ++ 127,0,0,0,114,36,0,0,0,114,165,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,11,102, ++ 105,110,100,95,109,111,100,117,108,101,114,2,0,0,115,8, ++ 0,0,0,0,7,18,1,12,1,7,2,122,33,87,105,110, ++ 100,111,119,115,82,101,103,105,115,116,114,121,70,105,110,100, ++ 101,114,46,102,105,110,100,95,109,111,100,117,108,101,41,12, ++ 114,113,0,0,0,114,112,0,0,0,114,114,0,0,0,114, ++ 115,0,0,0,114,176,0,0,0,114,175,0,0,0,114,174, ++ 0,0,0,218,11,99,108,97,115,115,109,101,116,104,111,100, ++ 114,173,0,0,0,114,179,0,0,0,114,182,0,0,0,114, ++ 183,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,169,0,0,0,64,2,0, + 0,115,20,0,0,0,12,2,6,3,6,3,6,2,6,2, -+ 18,7,18,15,3,1,21,14,3,1,114,23,1,0,0,99, ++ 18,7,18,15,3,1,21,15,3,1,114,169,0,0,0,99, + 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, -+ 64,0,0,0,115,52,0,0,0,101,0,0,90,1,0,100, ++ 64,0,0,0,115,70,0,0,0,101,0,0,90,1,0,100, + 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, + 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, -+ 90,5,0,101,6,0,90,7,0,100,6,0,83,41,7,218, -+ 13,95,76,111,97,100,101,114,66,97,115,105,99,115,122,83, -+ 66,97,115,101,32,99,108,97,115,115,32,111,102,32,99,111, -+ 109,109,111,110,32,99,111,100,101,32,110,101,101,100,101,100, -+ 32,98,121,32,98,111,116,104,32,83,111,117,114,99,101,76, -+ 111,97,100,101,114,32,97,110,100,10,32,32,32,32,83,111, -+ 117,114,99,101,108,101,115,115,70,105,108,101,76,111,97,100, -+ 101,114,46,99,2,0,0,0,0,0,0,0,5,0,0,0, -+ 3,0,0,0,67,0,0,0,115,88,0,0,0,116,0,0, -+ 124,0,0,106,1,0,124,1,0,131,1,0,131,1,0,100, -+ 1,0,25,125,2,0,124,2,0,106,2,0,100,2,0,100, -+ 1,0,131,2,0,100,3,0,25,125,3,0,124,1,0,106, -+ 3,0,100,2,0,131,1,0,100,4,0,25,125,4,0,124, -+ 3,0,100,5,0,107,2,0,111,87,0,124,4,0,100,5, -+ 0,107,3,0,83,41,6,122,141,67,111,110,99,114,101,116, -+ 101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110, -+ 32,111,102,32,73,110,115,112,101,99,116,76,111,97,100,101, -+ 114,46,105,115,95,112,97,99,107,97,103,101,32,98,121,32, -+ 99,104,101,99,107,105,110,103,32,105,102,10,32,32,32,32, -+ 32,32,32,32,116,104,101,32,112,97,116,104,32,114,101,116, -+ 117,114,110,101,100,32,98,121,32,103,101,116,95,102,105,108, -+ 101,110,97,109,101,32,104,97,115,32,97,32,102,105,108,101, -+ 110,97,109,101,32,111,102,32,39,95,95,105,110,105,116,95, -+ 95,46,112,121,39,46,114,30,0,0,0,114,117,0,0,0, -+ 114,85,0,0,0,114,116,0,0,0,114,73,0,0,0,41, -+ 4,114,39,0,0,0,114,239,0,0,0,114,35,0,0,0, -+ 114,33,0,0,0,41,5,114,72,0,0,0,114,159,0,0, -+ 0,114,132,0,0,0,90,13,102,105,108,101,110,97,109,101, -+ 95,98,97,115,101,90,9,116,97,105,108,95,110,97,109,101, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 220,0,0,0,177,5,0,0,115,8,0,0,0,0,3,25, -+ 1,22,1,19,1,122,24,95,76,111,97,100,101,114,66,97, -+ 115,105,99,115,46,105,115,95,112,97,99,107,97,103,101,99, -+ 2,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0, -+ 67,0,0,0,115,80,0,0,0,124,0,0,106,0,0,124, -+ 1,0,106,1,0,131,1,0,125,2,0,124,2,0,100,1, -+ 0,107,8,0,114,57,0,116,2,0,100,2,0,106,3,0, -+ 124,1,0,106,1,0,131,1,0,131,1,0,130,1,0,110, -+ 0,0,116,4,0,116,5,0,124,2,0,124,1,0,106,6, -+ 0,131,3,0,1,100,1,0,83,41,3,122,19,69,120,101, -+ 99,117,116,101,32,116,104,101,32,109,111,100,117,108,101,46, -+ 78,122,52,99,97,110,110,111,116,32,108,111,97,100,32,109, -+ 111,100,117,108,101,32,123,33,114,125,32,119,104,101,110,32, -+ 103,101,116,95,99,111,100,101,40,41,32,114,101,116,117,114, -+ 110,115,32,78,111,110,101,41,7,114,16,1,0,0,114,58, -+ 0,0,0,114,154,0,0,0,114,48,0,0,0,114,115,0, -+ 0,0,114,176,0,0,0,114,64,0,0,0,41,3,114,72, -+ 0,0,0,114,180,0,0,0,114,195,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,2,1,0, -+ 0,185,5,0,0,115,10,0,0,0,0,2,18,1,12,1, -+ 3,1,24,1,122,25,95,76,111,97,100,101,114,66,97,115, -+ 105,99,115,46,101,120,101,99,95,109,111,100,117,108,101,78, -+ 41,8,114,58,0,0,0,114,57,0,0,0,114,59,0,0, -+ 0,114,60,0,0,0,114,220,0,0,0,114,2,1,0,0, -+ 114,181,0,0,0,114,5,1,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,33, -+ 1,0,0,172,5,0,0,115,8,0,0,0,12,3,6,2, -+ 12,8,12,8,114,33,1,0,0,99,0,0,0,0,0,0, -+ 0,0,0,0,0,0,4,0,0,0,64,0,0,0,115,106, -+ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, -+ 1,0,100,2,0,132,0,0,90,3,0,100,3,0,100,4, -+ 0,132,0,0,90,4,0,100,5,0,100,6,0,132,0,0, -+ 90,5,0,100,7,0,100,8,0,132,0,0,90,6,0,100, -+ 9,0,100,10,0,132,0,0,90,7,0,100,11,0,100,18, -+ 0,100,13,0,100,14,0,132,0,1,90,8,0,100,15,0, -+ 100,16,0,132,0,0,90,9,0,100,17,0,83,41,19,218, -+ 12,83,111,117,114,99,101,76,111,97,100,101,114,99,2,0, -+ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, -+ 0,0,115,10,0,0,0,116,0,0,130,1,0,100,1,0, -+ 83,41,2,122,178,79,112,116,105,111,110,97,108,32,109,101, -+ 116,104,111,100,32,116,104,97,116,32,114,101,116,117,114,110, -+ 115,32,116,104,101,32,109,111,100,105,102,105,99,97,116,105, -+ 111,110,32,116,105,109,101,32,40,97,110,32,105,110,116,41, -+ 32,102,111,114,32,116,104,101,10,32,32,32,32,32,32,32, -+ 32,115,112,101,99,105,102,105,101,100,32,112,97,116,104,44, -+ 32,119,104,101,114,101,32,112,97,116,104,32,105,115,32,97, -+ 32,115,116,114,46,10,10,32,32,32,32,32,32,32,32,82, -+ 97,105,115,101,115,32,73,79,69,114,114,111,114,32,119,104, -+ 101,110,32,116,104,101,32,112,97,116,104,32,99,97,110,110, -+ 111,116,32,98,101,32,104,97,110,100,108,101,100,46,10,32, -+ 32,32,32,32,32,32,32,78,41,1,218,7,73,79,69,114, -+ 114,111,114,41,2,114,72,0,0,0,114,36,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,10, -+ 112,97,116,104,95,109,116,105,109,101,198,5,0,0,115,2, -+ 0,0,0,0,6,122,23,83,111,117,114,99,101,76,111,97, -+ 100,101,114,46,112,97,116,104,95,109,116,105,109,101,99,2, -+ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,67, -+ 0,0,0,115,20,0,0,0,105,1,0,124,0,0,106,0, -+ 0,124,1,0,131,1,0,100,1,0,54,83,41,2,97,170, -+ 1,0,0,79,112,116,105,111,110,97,108,32,109,101,116,104, -+ 111,100,32,114,101,116,117,114,110,105,110,103,32,97,32,109, -+ 101,116,97,100,97,116,97,32,100,105,99,116,32,102,111,114, -+ 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,112, -+ 97,116,104,10,32,32,32,32,32,32,32,32,116,111,32,98, -+ 121,32,116,104,101,32,112,97,116,104,32,40,115,116,114,41, -+ 46,10,32,32,32,32,32,32,32,32,80,111,115,115,105,98, -+ 108,101,32,107,101,121,115,58,10,32,32,32,32,32,32,32, -+ 32,45,32,39,109,116,105,109,101,39,32,40,109,97,110,100, -+ 97,116,111,114,121,41,32,105,115,32,116,104,101,32,110,117, -+ 109,101,114,105,99,32,116,105,109,101,115,116,97,109,112,32, -+ 111,102,32,108,97,115,116,32,115,111,117,114,99,101,10,32, -+ 32,32,32,32,32,32,32,32,32,99,111,100,101,32,109,111, -+ 100,105,102,105,99,97,116,105,111,110,59,10,32,32,32,32, -+ 32,32,32,32,45,32,39,115,105,122,101,39,32,40,111,112, -+ 116,105,111,110,97,108,41,32,105,115,32,116,104,101,32,115, -+ 105,122,101,32,105,110,32,98,121,116,101,115,32,111,102,32, -+ 116,104,101,32,115,111,117,114,99,101,32,99,111,100,101,46, -+ 10,10,32,32,32,32,32,32,32,32,73,109,112,108,101,109, -+ 101,110,116,105,110,103,32,116,104,105,115,32,109,101,116,104, -+ 111,100,32,97,108,108,111,119,115,32,116,104,101,32,108,111, -+ 97,100,101,114,32,116,111,32,114,101,97,100,32,98,121,116, -+ 101,99,111,100,101,32,102,105,108,101,115,46,10,32,32,32, -+ 32,32,32,32,32,82,97,105,115,101,115,32,73,79,69,114, -+ 114,111,114,32,119,104,101,110,32,116,104,101,32,112,97,116, -+ 104,32,99,97,110,110,111,116,32,98,101,32,104,97,110,100, -+ 108,101,100,46,10,32,32,32,32,32,32,32,32,114,184,0, -+ 0,0,41,1,114,36,1,0,0,41,2,114,72,0,0,0, -+ 114,36,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,218,10,112,97,116,104,95,115,116,97,116,115, -+ 206,5,0,0,115,2,0,0,0,0,11,122,23,83,111,117, -+ 114,99,101,76,111,97,100,101,114,46,112,97,116,104,95,115, -+ 116,97,116,115,99,4,0,0,0,0,0,0,0,4,0,0, -+ 0,3,0,0,0,67,0,0,0,115,16,0,0,0,124,0, -+ 0,106,0,0,124,2,0,124,3,0,131,2,0,83,41,1, -+ 122,228,79,112,116,105,111,110,97,108,32,109,101,116,104,111, -+ 100,32,119,104,105,99,104,32,119,114,105,116,101,115,32,100, -+ 97,116,97,32,40,98,121,116,101,115,41,32,116,111,32,97, -+ 32,102,105,108,101,32,112,97,116,104,32,40,97,32,115,116, -+ 114,41,46,10,10,32,32,32,32,32,32,32,32,73,109,112, -+ 108,101,109,101,110,116,105,110,103,32,116,104,105,115,32,109, -+ 101,116,104,111,100,32,97,108,108,111,119,115,32,102,111,114, -+ 32,116,104,101,32,119,114,105,116,105,110,103,32,111,102,32, -+ 98,121,116,101,99,111,100,101,32,102,105,108,101,115,46,10, -+ 10,32,32,32,32,32,32,32,32,84,104,101,32,115,111,117, -+ 114,99,101,32,112,97,116,104,32,105,115,32,110,101,101,100, -+ 101,100,32,105,110,32,111,114,100,101,114,32,116,111,32,99, -+ 111,114,114,101,99,116,108,121,32,116,114,97,110,115,102,101, -+ 114,32,112,101,114,109,105,115,115,105,111,110,115,10,32,32, -+ 32,32,32,32,32,32,41,1,218,8,115,101,116,95,100,97, -+ 116,97,41,4,114,72,0,0,0,114,142,0,0,0,90,10, -+ 99,97,99,104,101,95,112,97,116,104,114,54,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,15, -+ 95,99,97,99,104,101,95,98,121,116,101,99,111,100,101,219, -+ 5,0,0,115,2,0,0,0,0,8,122,28,83,111,117,114, -+ 99,101,76,111,97,100,101,114,46,95,99,97,99,104,101,95, -+ 98,121,116,101,99,111,100,101,99,3,0,0,0,0,0,0, -+ 0,3,0,0,0,1,0,0,0,67,0,0,0,115,4,0, -+ 0,0,100,1,0,83,41,2,122,150,79,112,116,105,111,110, -+ 97,108,32,109,101,116,104,111,100,32,119,104,105,99,104,32, -+ 119,114,105,116,101,115,32,100,97,116,97,32,40,98,121,116, -+ 101,115,41,32,116,111,32,97,32,102,105,108,101,32,112,97, -+ 116,104,32,40,97,32,115,116,114,41,46,10,10,32,32,32, ++ 90,5,0,100,6,0,100,7,0,132,0,0,90,6,0,100, ++ 8,0,100,9,0,132,0,0,90,7,0,100,10,0,83,41, ++ 11,218,13,95,76,111,97,100,101,114,66,97,115,105,99,115, ++ 122,83,66,97,115,101,32,99,108,97,115,115,32,111,102,32, ++ 99,111,109,109,111,110,32,99,111,100,101,32,110,101,101,100, ++ 101,100,32,98,121,32,98,111,116,104,32,83,111,117,114,99, ++ 101,76,111,97,100,101,114,32,97,110,100,10,32,32,32,32, ++ 83,111,117,114,99,101,108,101,115,115,70,105,108,101,76,111, ++ 97,100,101,114,46,99,2,0,0,0,0,0,0,0,5,0, ++ 0,0,3,0,0,0,67,0,0,0,115,88,0,0,0,116, ++ 0,0,124,0,0,106,1,0,124,1,0,131,1,0,131,1, ++ 0,100,1,0,25,125,2,0,124,2,0,106,2,0,100,2, ++ 0,100,1,0,131,2,0,100,3,0,25,125,3,0,124,1, ++ 0,106,3,0,100,2,0,131,1,0,100,4,0,25,125,4, ++ 0,124,3,0,100,5,0,107,2,0,111,87,0,124,4,0, ++ 100,5,0,107,3,0,83,41,6,122,141,67,111,110,99,114, ++ 101,116,101,32,105,109,112,108,101,109,101,110,116,97,116,105, ++ 111,110,32,111,102,32,73,110,115,112,101,99,116,76,111,97, ++ 100,101,114,46,105,115,95,112,97,99,107,97,103,101,32,98, ++ 121,32,99,104,101,99,107,105,110,103,32,105,102,10,32,32, ++ 32,32,32,32,32,32,116,104,101,32,112,97,116,104,32,114, ++ 101,116,117,114,110,101,100,32,98,121,32,103,101,116,95,102, ++ 105,108,101,110,97,109,101,32,104,97,115,32,97,32,102,105, ++ 108,101,110,97,109,101,32,111,102,32,39,95,95,105,110,105, ++ 116,95,95,46,112,121,39,46,114,30,0,0,0,114,59,0, ++ 0,0,114,60,0,0,0,114,57,0,0,0,218,8,95,95, ++ 105,110,105,116,95,95,41,4,114,39,0,0,0,114,158,0, ++ 0,0,114,35,0,0,0,114,33,0,0,0,41,5,114,109, ++ 0,0,0,114,127,0,0,0,114,95,0,0,0,90,13,102, ++ 105,108,101,110,97,109,101,95,98,97,115,101,90,9,116,97, ++ 105,108,95,110,97,109,101,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,160,0,0,0,133,2,0,0,115, ++ 8,0,0,0,0,3,25,1,22,1,19,1,122,24,95,76, ++ 111,97,100,101,114,66,97,115,105,99,115,46,105,115,95,112, ++ 97,99,107,97,103,101,99,2,0,0,0,0,0,0,0,2, ++ 0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,0, ++ 100,1,0,83,41,2,122,42,85,115,101,32,100,101,102,97, ++ 117,108,116,32,115,101,109,97,110,116,105,99,115,32,102,111, ++ 114,32,109,111,100,117,108,101,32,99,114,101,97,116,105,111, ++ 110,46,78,114,5,0,0,0,41,2,114,109,0,0,0,114, ++ 165,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,13,99,114,101,97,116,101,95,109,111,100,117, ++ 108,101,141,2,0,0,115,0,0,0,0,122,27,95,76,111, ++ 97,100,101,114,66,97,115,105,99,115,46,99,114,101,97,116, ++ 101,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, ++ 0,3,0,0,0,4,0,0,0,67,0,0,0,115,80,0, ++ 0,0,124,0,0,106,0,0,124,1,0,106,1,0,131,1, ++ 0,125,2,0,124,2,0,100,1,0,107,8,0,114,54,0, ++ 116,2,0,100,2,0,106,3,0,124,1,0,106,1,0,131, ++ 1,0,131,1,0,130,1,0,116,4,0,106,5,0,116,6, ++ 0,124,2,0,124,1,0,106,7,0,131,3,0,1,100,1, ++ 0,83,41,3,122,19,69,120,101,99,117,116,101,32,116,104, ++ 101,32,109,111,100,117,108,101,46,78,122,52,99,97,110,110, ++ 111,116,32,108,111,97,100,32,109,111,100,117,108,101,32,123, ++ 33,114,125,32,119,104,101,110,32,103,101,116,95,99,111,100, ++ 101,40,41,32,114,101,116,117,114,110,115,32,78,111,110,101, ++ 41,8,218,8,103,101,116,95,99,111,100,101,114,113,0,0, ++ 0,114,108,0,0,0,114,48,0,0,0,114,122,0,0,0, ++ 218,25,95,99,97,108,108,95,119,105,116,104,95,102,114,97, ++ 109,101,115,95,114,101,109,111,118,101,100,218,4,101,120,101, ++ 99,114,119,0,0,0,41,3,114,109,0,0,0,218,6,109, ++ 111,100,117,108,101,114,147,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,11,101,120,101,99,95, ++ 109,111,100,117,108,101,144,2,0,0,115,10,0,0,0,0, ++ 2,18,1,12,1,9,1,15,1,122,25,95,76,111,97,100, ++ 101,114,66,97,115,105,99,115,46,101,120,101,99,95,109,111, ++ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, ++ 0,3,0,0,0,67,0,0,0,115,16,0,0,0,116,0, ++ 0,106,1,0,124,0,0,124,1,0,131,2,0,83,41,1, ++ 78,41,2,114,122,0,0,0,218,17,95,108,111,97,100,95, ++ 109,111,100,117,108,101,95,115,104,105,109,41,2,114,109,0, ++ 0,0,114,127,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,218,11,108,111,97,100,95,109,111,100, ++ 117,108,101,152,2,0,0,115,2,0,0,0,0,1,122,25, ++ 95,76,111,97,100,101,114,66,97,115,105,99,115,46,108,111, ++ 97,100,95,109,111,100,117,108,101,78,41,8,114,113,0,0, ++ 0,114,112,0,0,0,114,114,0,0,0,114,115,0,0,0, ++ 114,160,0,0,0,114,187,0,0,0,114,192,0,0,0,114, ++ 194,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,185,0,0,0,128,2,0, ++ 0,115,10,0,0,0,12,3,6,2,12,8,12,3,12,8, ++ 114,185,0,0,0,99,0,0,0,0,0,0,0,0,0,0, ++ 0,0,4,0,0,0,64,0,0,0,115,106,0,0,0,101, ++ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,100,2, ++ 0,132,0,0,90,3,0,100,3,0,100,4,0,132,0,0, ++ 90,4,0,100,5,0,100,6,0,132,0,0,90,5,0,100, ++ 7,0,100,8,0,132,0,0,90,6,0,100,9,0,100,10, ++ 0,132,0,0,90,7,0,100,11,0,100,18,0,100,13,0, ++ 100,14,0,132,0,1,90,8,0,100,15,0,100,16,0,132, ++ 0,0,90,9,0,100,17,0,83,41,19,218,12,83,111,117, ++ 114,99,101,76,111,97,100,101,114,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,10, ++ 0,0,0,116,0,0,130,1,0,100,1,0,83,41,2,122, ++ 178,79,112,116,105,111,110,97,108,32,109,101,116,104,111,100, ++ 32,116,104,97,116,32,114,101,116,117,114,110,115,32,116,104, ++ 101,32,109,111,100,105,102,105,99,97,116,105,111,110,32,116, ++ 105,109,101,32,40,97,110,32,105,110,116,41,32,102,111,114, ++ 32,116,104,101,10,32,32,32,32,32,32,32,32,115,112,101, ++ 99,105,102,105,101,100,32,112,97,116,104,44,32,119,104,101, ++ 114,101,32,112,97,116,104,32,105,115,32,97,32,115,116,114, ++ 46,10,10,32,32,32,32,32,32,32,32,82,97,105,115,101, + 115,32,73,79,69,114,114,111,114,32,119,104,101,110,32,116, + 104,101,32,112,97,116,104,32,99,97,110,110,111,116,32,98, + 101,32,104,97,110,100,108,101,100,46,10,32,32,32,32,32, +- 32,32,32,114,133,0,0,0,41,1,114,196,0,0,0,41, +- 2,114,108,0,0,0,114,35,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,10,112,97,116,104, +- 95,115,116,97,116,115,166,2,0,0,115,2,0,0,0,0, +- 11,122,23,83,111,117,114,99,101,76,111,97,100,101,114,46, +- 112,97,116,104,95,115,116,97,116,115,99,4,0,0,0,0, +- 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, +- 16,0,0,0,124,0,0,106,0,0,124,2,0,124,3,0, +- 131,2,0,83,41,1,122,228,79,112,116,105,111,110,97,108, +- 32,109,101,116,104,111,100,32,119,104,105,99,104,32,119,114, +- 105,116,101,115,32,100,97,116,97,32,40,98,121,116,101,115, +- 41,32,116,111,32,97,32,102,105,108,101,32,112,97,116,104, +- 32,40,97,32,115,116,114,41,46,10,10,32,32,32,32,32, +- 32,32,32,73,109,112,108,101,109,101,110,116,105,110,103,32, +- 116,104,105,115,32,109,101,116,104,111,100,32,97,108,108,111, +- 119,115,32,102,111,114,32,116,104,101,32,119,114,105,116,105, +- 110,103,32,111,102,32,98,121,116,101,99,111,100,101,32,102, +- 105,108,101,115,46,10,10,32,32,32,32,32,32,32,32,84, +- 104,101,32,115,111,117,114,99,101,32,112,97,116,104,32,105, +- 115,32,110,101,101,100,101,100,32,105,110,32,111,114,100,101, +- 114,32,116,111,32,99,111,114,114,101,99,116,108,121,32,116, +- 114,97,110,115,102,101,114,32,112,101,114,109,105,115,115,105, +- 111,110,115,10,32,32,32,32,32,32,32,32,41,1,218,8, +- 115,101,116,95,100,97,116,97,41,4,114,108,0,0,0,114, +- 90,0,0,0,90,10,99,97,99,104,101,95,112,97,116,104, +- 114,53,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,15,95,99,97,99,104,101,95,98,121,116, +- 101,99,111,100,101,179,2,0,0,115,2,0,0,0,0,8, +- 122,28,83,111,117,114,99,101,76,111,97,100,101,114,46,95, +- 99,97,99,104,101,95,98,121,116,101,99,111,100,101,99,3, +- 0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,67, +- 0,0,0,115,4,0,0,0,100,1,0,83,41,2,122,150, +- 79,112,116,105,111,110,97,108,32,109,101,116,104,111,100,32, +- 119,104,105,99,104,32,119,114,105,116,101,115,32,100,97,116, +- 97,32,40,98,121,116,101,115,41,32,116,111,32,97,32,102, +- 105,108,101,32,112,97,116,104,32,40,97,32,115,116,114,41, +- 46,10,10,32,32,32,32,32,32,32,32,73,109,112,108,101, +- 109,101,110,116,105,110,103,32,116,104,105,115,32,109,101,116, +- 104,111,100,32,97,108,108,111,119,115,32,102,111,114,32,116, +- 104,101,32,119,114,105,116,105,110,103,32,111,102,32,98,121, +- 116,101,99,111,100,101,32,102,105,108,101,115,46,10,32,32, +- 32,32,32,32,32,32,78,114,4,0,0,0,41,3,114,108, +- 0,0,0,114,35,0,0,0,114,53,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,198,0,0, +- 0,189,2,0,0,115,0,0,0,0,122,21,83,111,117,114, +- 99,101,76,111,97,100,101,114,46,115,101,116,95,100,97,116, +- 97,99,2,0,0,0,0,0,0,0,5,0,0,0,16,0, +- 0,0,67,0,0,0,115,105,0,0,0,124,0,0,106,0, +- 0,124,1,0,131,1,0,125,2,0,121,19,0,124,0,0, +- 106,1,0,124,2,0,131,1,0,125,3,0,87,110,58,0, +- 4,116,2,0,107,10,0,114,94,0,1,125,4,0,1,122, +- 26,0,116,3,0,100,1,0,100,2,0,124,1,0,131,1, +- 1,124,4,0,130,2,0,87,89,100,3,0,100,3,0,125, +- 4,0,126,4,0,88,110,1,0,88,116,4,0,124,3,0, +- 131,1,0,83,41,4,122,52,67,111,110,99,114,101,116,101, +- 32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32, +- 111,102,32,73,110,115,112,101,99,116,76,111,97,100,101,114, +- 46,103,101,116,95,115,111,117,114,99,101,46,122,39,115,111, +- 117,114,99,101,32,110,111,116,32,97,118,97,105,108,97,98, +- 108,101,32,116,104,114,111,117,103,104,32,103,101,116,95,100, +- 97,116,97,40,41,114,106,0,0,0,78,41,5,114,157,0, +- 0,0,218,8,103,101,116,95,100,97,116,97,114,40,0,0, +- 0,114,107,0,0,0,114,155,0,0,0,41,5,114,108,0, +- 0,0,114,126,0,0,0,114,35,0,0,0,114,153,0,0, +- 0,218,3,101,120,99,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,10,103,101,116,95,115,111,117,114,99, +- 101,196,2,0,0,115,14,0,0,0,0,2,15,1,3,1, +- 19,1,18,1,9,1,31,1,122,23,83,111,117,114,99,101, +- 76,111,97,100,101,114,46,103,101,116,95,115,111,117,114,99, +- 101,218,9,95,111,112,116,105,109,105,122,101,114,29,0,0, +- 0,99,3,0,0,0,1,0,0,0,4,0,0,0,9,0, +- 0,0,67,0,0,0,115,34,0,0,0,116,0,0,106,1, +- 0,116,2,0,124,1,0,124,2,0,100,1,0,100,2,0, +- 100,3,0,100,4,0,124,3,0,131,4,2,83,41,5,122, +- 130,82,101,116,117,114,110,32,116,104,101,32,99,111,100,101, +- 32,111,98,106,101,99,116,32,99,111,109,112,105,108,101,100, +- 32,102,114,111,109,32,115,111,117,114,99,101,46,10,10,32, +- 32,32,32,32,32,32,32,84,104,101,32,39,100,97,116,97, +- 39,32,97,114,103,117,109,101,110,116,32,99,97,110,32,98, +- 101,32,97,110,121,32,111,98,106,101,99,116,32,116,121,112, +- 101,32,116,104,97,116,32,99,111,109,112,105,108,101,40,41, +- 32,115,117,112,112,111,114,116,115,46,10,32,32,32,32,32, +- 32,32,32,114,189,0,0,0,218,12,100,111,110,116,95,105, +- 110,104,101,114,105,116,84,114,68,0,0,0,41,3,114,121, +- 0,0,0,114,188,0,0,0,218,7,99,111,109,112,105,108, +- 101,41,4,114,108,0,0,0,114,53,0,0,0,114,35,0, +- 0,0,114,203,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,14,115,111,117,114,99,101,95,116, +- 111,95,99,111,100,101,206,2,0,0,115,4,0,0,0,0, +- 5,21,1,122,27,83,111,117,114,99,101,76,111,97,100,101, +- 114,46,115,111,117,114,99,101,95,116,111,95,99,111,100,101, +- 99,2,0,0,0,0,0,0,0,10,0,0,0,43,0,0, +- 0,67,0,0,0,115,174,1,0,0,124,0,0,106,0,0, +- 124,1,0,131,1,0,125,2,0,100,1,0,125,3,0,121, +- 16,0,116,1,0,124,2,0,131,1,0,125,4,0,87,110, +- 24,0,4,116,2,0,107,10,0,114,63,0,1,1,1,100, +- 1,0,125,4,0,89,110,202,0,88,121,19,0,124,0,0, +- 106,3,0,124,2,0,131,1,0,125,5,0,87,110,18,0, +- 4,116,4,0,107,10,0,114,103,0,1,1,1,89,110,162, +- 0,88,116,5,0,124,5,0,100,2,0,25,131,1,0,125, +- 3,0,121,19,0,124,0,0,106,6,0,124,4,0,131,1, +- 0,125,6,0,87,110,18,0,4,116,7,0,107,10,0,114, +- 159,0,1,1,1,89,110,106,0,88,121,34,0,116,8,0, +- 124,6,0,100,3,0,124,5,0,100,4,0,124,1,0,100, +- 5,0,124,4,0,131,1,3,125,7,0,87,110,24,0,4, +- 116,9,0,116,10,0,102,2,0,107,10,0,114,220,0,1, +- 1,1,89,110,45,0,88,116,11,0,100,6,0,124,4,0, +- 124,2,0,131,3,0,1,116,12,0,124,7,0,100,4,0, +- 124,1,0,100,7,0,124,4,0,100,8,0,124,2,0,131, +- 1,3,83,124,0,0,106,6,0,124,2,0,131,1,0,125, +- 8,0,124,0,0,106,13,0,124,8,0,124,2,0,131,2, +- 0,125,9,0,116,11,0,100,9,0,124,2,0,131,2,0, +- 1,116,14,0,106,15,0,12,114,170,1,124,4,0,100,1, +- 0,107,9,0,114,170,1,124,3,0,100,1,0,107,9,0, +- 114,170,1,116,16,0,124,9,0,124,3,0,116,17,0,124, +- 8,0,131,1,0,131,3,0,125,6,0,121,36,0,124,0, +- 0,106,18,0,124,2,0,124,4,0,124,6,0,131,3,0, +- 1,116,11,0,100,10,0,124,4,0,131,2,0,1,87,110, +- 18,0,4,116,2,0,107,10,0,114,169,1,1,1,1,89, +- 110,1,0,88,124,9,0,83,41,11,122,190,67,111,110,99, +- 114,101,116,101,32,105,109,112,108,101,109,101,110,116,97,116, +- 105,111,110,32,111,102,32,73,110,115,112,101,99,116,76,111, +- 97,100,101,114,46,103,101,116,95,99,111,100,101,46,10,10, +- 32,32,32,32,32,32,32,32,82,101,97,100,105,110,103,32, +- 111,102,32,98,121,116,101,99,111,100,101,32,114,101,113,117, +- 105,114,101,115,32,112,97,116,104,95,115,116,97,116,115,32, +- 116,111,32,98,101,32,105,109,112,108,101,109,101,110,116,101, +- 100,46,32,84,111,32,119,114,105,116,101,10,32,32,32,32, +- 32,32,32,32,98,121,116,101,99,111,100,101,44,32,115,101, +- 116,95,100,97,116,97,32,109,117,115,116,32,97,108,115,111, +- 32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46, +- 10,10,32,32,32,32,32,32,32,32,78,114,133,0,0,0, +- 114,138,0,0,0,114,106,0,0,0,114,35,0,0,0,122, +- 13,123,125,32,109,97,116,99,104,101,115,32,123,125,114,89, +- 0,0,0,114,90,0,0,0,122,19,99,111,100,101,32,111, +- 98,106,101,99,116,32,102,114,111,109,32,123,125,122,10,119, +- 114,111,116,101,32,123,33,114,125,41,19,114,157,0,0,0, +- 114,79,0,0,0,114,66,0,0,0,114,197,0,0,0,114, +- 195,0,0,0,114,14,0,0,0,114,200,0,0,0,114,40, +- 0,0,0,114,141,0,0,0,114,107,0,0,0,114,136,0, +- 0,0,114,105,0,0,0,114,147,0,0,0,114,206,0,0, +- 0,114,7,0,0,0,218,19,100,111,110,116,95,119,114,105, +- 116,101,95,98,121,116,101,99,111,100,101,114,150,0,0,0, +- 114,31,0,0,0,114,199,0,0,0,41,10,114,108,0,0, +- 0,114,126,0,0,0,114,90,0,0,0,114,139,0,0,0, +- 114,89,0,0,0,218,2,115,116,114,53,0,0,0,218,10, +- 98,121,116,101,115,95,100,97,116,97,114,153,0,0,0,90, +- 11,99,111,100,101,95,111,98,106,101,99,116,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,187,0,0,0, +- 214,2,0,0,115,78,0,0,0,0,7,15,1,6,1,3, +- 1,16,1,13,1,11,2,3,1,19,1,13,1,5,2,16, +- 1,3,1,19,1,13,1,5,2,3,1,9,1,12,1,13, +- 1,19,1,5,2,9,1,7,1,15,1,6,1,7,1,15, +- 1,18,1,13,1,22,1,12,1,9,1,15,1,3,1,19, +- 1,17,1,13,1,5,1,122,21,83,111,117,114,99,101,76, +- 111,97,100,101,114,46,103,101,116,95,99,111,100,101,78,114, +- 87,0,0,0,41,10,114,112,0,0,0,114,111,0,0,0, +- 114,113,0,0,0,114,196,0,0,0,114,197,0,0,0,114, +- 199,0,0,0,114,198,0,0,0,114,202,0,0,0,114,206, +- 0,0,0,114,187,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,194,0,0, +- 0,156,2,0,0,115,14,0,0,0,12,2,12,8,12,13, +- 12,10,12,7,12,10,18,8,114,194,0,0,0,99,0,0, +- 0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0, +- 0,0,115,112,0,0,0,101,0,0,90,1,0,100,0,0, +- 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, +- 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, +- 0,100,6,0,100,7,0,132,0,0,90,6,0,101,7,0, +- 135,0,0,102,1,0,100,8,0,100,9,0,134,0,0,131, +- 1,0,90,8,0,101,7,0,100,10,0,100,11,0,132,0, +- 0,131,1,0,90,9,0,100,12,0,100,13,0,132,0,0, +- 90,10,0,135,0,0,83,41,14,218,10,70,105,108,101,76, +- 111,97,100,101,114,122,103,66,97,115,101,32,102,105,108,101, +- 32,108,111,97,100,101,114,32,99,108,97,115,115,32,119,104, +- 105,99,104,32,105,109,112,108,101,109,101,110,116,115,32,116, +- 104,101,32,108,111,97,100,101,114,32,112,114,111,116,111,99, +- 111,108,32,109,101,116,104,111,100,115,32,116,104,97,116,10, +- 32,32,32,32,114,101,113,117,105,114,101,32,102,105,108,101, +- 32,115,121,115,116,101,109,32,117,115,97,103,101,46,99,3, +- 0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,67, +- 0,0,0,115,22,0,0,0,124,1,0,124,0,0,95,0, +- 0,124,2,0,124,0,0,95,1,0,100,1,0,83,41,2, +- 122,75,67,97,99,104,101,32,116,104,101,32,109,111,100,117, +- 108,101,32,110,97,109,101,32,97,110,100,32,116,104,101,32, +- 112,97,116,104,32,116,111,32,116,104,101,32,102,105,108,101, +- 32,102,111,117,110,100,32,98,121,32,116,104,101,10,32,32, +- 32,32,32,32,32,32,102,105,110,100,101,114,46,78,41,2, +- 114,106,0,0,0,114,35,0,0,0,41,3,114,108,0,0, +- 0,114,126,0,0,0,114,35,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,185,0,0,0,15, +- 3,0,0,115,4,0,0,0,0,3,9,1,122,19,70,105, +- 108,101,76,111,97,100,101,114,46,95,95,105,110,105,116,95, +- 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, +- 0,0,67,0,0,0,115,34,0,0,0,124,0,0,106,0, +- 0,124,1,0,106,0,0,107,2,0,111,33,0,124,0,0, +- 106,1,0,124,1,0,106,1,0,107,2,0,83,41,1,78, +- 41,2,218,9,95,95,99,108,97,115,115,95,95,114,118,0, +- 0,0,41,2,114,108,0,0,0,218,5,111,116,104,101,114, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, +- 6,95,95,101,113,95,95,21,3,0,0,115,4,0,0,0, +- 0,1,18,1,122,17,70,105,108,101,76,111,97,100,101,114, +- 46,95,95,101,113,95,95,99,1,0,0,0,0,0,0,0, +- 1,0,0,0,3,0,0,0,67,0,0,0,115,26,0,0, +- 0,116,0,0,124,0,0,106,1,0,131,1,0,116,0,0, +- 124,0,0,106,2,0,131,1,0,65,83,41,1,78,41,3, +- 218,4,104,97,115,104,114,106,0,0,0,114,35,0,0,0, +- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,8,95,95,104,97,115,104,95,95, +- 25,3,0,0,115,2,0,0,0,0,1,122,19,70,105,108, +- 101,76,111,97,100,101,114,46,95,95,104,97,115,104,95,95, +- 99,2,0,0,0,0,0,0,0,2,0,0,0,3,0,0, +- 0,3,0,0,0,115,22,0,0,0,116,0,0,116,1,0, +- 124,0,0,131,2,0,106,2,0,124,1,0,131,1,0,83, +- 41,1,122,100,76,111,97,100,32,97,32,109,111,100,117,108, +- 101,32,102,114,111,109,32,97,32,102,105,108,101,46,10,10, +- 32,32,32,32,32,32,32,32,84,104,105,115,32,109,101,116, +- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, +- 100,46,32,32,85,115,101,32,101,120,101,99,95,109,111,100, +- 117,108,101,40,41,32,105,110,115,116,101,97,100,46,10,10, +- 32,32,32,32,32,32,32,32,41,3,218,5,115,117,112,101, +- 114,114,210,0,0,0,114,193,0,0,0,41,2,114,108,0, +- 0,0,114,126,0,0,0,41,1,114,211,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,193,0,0,0,28,3,0, +- 0,115,2,0,0,0,0,10,122,22,70,105,108,101,76,111, +- 97,100,101,114,46,108,111,97,100,95,109,111,100,117,108,101, +- 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, +- 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, +- 83,41,1,122,58,82,101,116,117,114,110,32,116,104,101,32, +- 112,97,116,104,32,116,111,32,116,104,101,32,115,111,117,114, +- 99,101,32,102,105,108,101,32,97,115,32,102,111,117,110,100, +- 32,98,121,32,116,104,101,32,102,105,110,100,101,114,46,41, +- 1,114,35,0,0,0,41,2,114,108,0,0,0,114,126,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,157,0,0,0,40,3,0,0,115,2,0,0,0,0, +- 3,122,23,70,105,108,101,76,111,97,100,101,114,46,103,101, +- 116,95,102,105,108,101,110,97,109,101,99,2,0,0,0,0, +- 0,0,0,3,0,0,0,9,0,0,0,67,0,0,0,115, +- 42,0,0,0,116,0,0,106,1,0,124,1,0,100,1,0, +- 131,2,0,143,17,0,125,2,0,124,2,0,106,2,0,131, +- 0,0,83,87,100,2,0,81,82,88,100,2,0,83,41,3, +- 122,39,82,101,116,117,114,110,32,116,104,101,32,100,97,116, +- 97,32,102,114,111,109,32,112,97,116,104,32,97,115,32,114, +- 97,119,32,98,121,116,101,115,46,218,1,114,78,41,3,114, +- 49,0,0,0,114,50,0,0,0,90,4,114,101,97,100,41, +- 3,114,108,0,0,0,114,35,0,0,0,114,54,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 200,0,0,0,45,3,0,0,115,4,0,0,0,0,2,21, +- 1,122,19,70,105,108,101,76,111,97,100,101,114,46,103,101, +- 116,95,100,97,116,97,41,11,114,112,0,0,0,114,111,0, +- 0,0,114,113,0,0,0,114,114,0,0,0,114,185,0,0, +- 0,114,213,0,0,0,114,215,0,0,0,114,123,0,0,0, +- 114,193,0,0,0,114,157,0,0,0,114,200,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,41,1,114,211,0,0,0, +- 114,5,0,0,0,114,210,0,0,0,10,3,0,0,115,14, +- 0,0,0,12,3,6,2,12,6,12,4,12,3,24,12,18, +- 5,114,210,0,0,0,99,0,0,0,0,0,0,0,0,0, +- 0,0,0,4,0,0,0,64,0,0,0,115,64,0,0,0, +- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, +- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, +- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, +- 100,8,0,100,9,0,132,0,1,90,6,0,100,10,0,83, +- 41,11,218,16,83,111,117,114,99,101,70,105,108,101,76,111, +- 97,100,101,114,122,62,67,111,110,99,114,101,116,101,32,105, +- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, +- 32,83,111,117,114,99,101,76,111,97,100,101,114,32,117,115, +- 105,110,103,32,116,104,101,32,102,105,108,101,32,115,121,115, +- 116,101,109,46,99,2,0,0,0,0,0,0,0,3,0,0, +- 0,4,0,0,0,67,0,0,0,115,34,0,0,0,116,0, +- 0,124,1,0,131,1,0,125,2,0,100,1,0,124,2,0, +- 106,1,0,100,2,0,124,2,0,106,2,0,105,2,0,83, +- 41,3,122,33,82,101,116,117,114,110,32,116,104,101,32,109, +- 101,116,97,100,97,116,97,32,102,111,114,32,116,104,101,32, +- 112,97,116,104,46,114,133,0,0,0,114,134,0,0,0,41, +- 3,114,39,0,0,0,218,8,115,116,95,109,116,105,109,101, +- 90,7,115,116,95,115,105,122,101,41,3,114,108,0,0,0, +- 114,35,0,0,0,114,208,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,197,0,0,0,55,3, +- 0,0,115,4,0,0,0,0,2,12,1,122,27,83,111,117, +- 114,99,101,70,105,108,101,76,111,97,100,101,114,46,112,97, +- 116,104,95,115,116,97,116,115,99,4,0,0,0,0,0,0, +- 0,5,0,0,0,5,0,0,0,67,0,0,0,115,34,0, +- 0,0,116,0,0,124,1,0,131,1,0,125,4,0,124,0, +- 0,106,1,0,124,2,0,124,3,0,100,1,0,124,4,0, +- 131,2,1,83,41,2,78,218,5,95,109,111,100,101,41,2, +- 114,97,0,0,0,114,198,0,0,0,41,5,114,108,0,0, +- 0,114,90,0,0,0,114,89,0,0,0,114,53,0,0,0, +- 114,42,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,199,0,0,0,60,3,0,0,115,4,0, +- 0,0,0,2,12,1,122,32,83,111,117,114,99,101,70,105, +- 108,101,76,111,97,100,101,114,46,95,99,97,99,104,101,95, +- 98,121,116,101,99,111,100,101,114,220,0,0,0,105,182,1, +- 0,0,99,3,0,0,0,1,0,0,0,9,0,0,0,17, +- 0,0,0,67,0,0,0,115,53,1,0,0,116,0,0,124, +- 1,0,131,1,0,92,2,0,125,4,0,125,5,0,103,0, +- 0,125,6,0,120,54,0,124,4,0,114,80,0,116,1,0, +- 124,4,0,131,1,0,12,114,80,0,116,0,0,124,4,0, +- 131,1,0,92,2,0,125,4,0,125,7,0,124,6,0,106, +- 2,0,124,7,0,131,1,0,1,113,27,0,87,120,132,0, +- 116,3,0,124,6,0,131,1,0,68,93,118,0,125,7,0, +- 116,4,0,124,4,0,124,7,0,131,2,0,125,4,0,121, +- 17,0,116,5,0,106,6,0,124,4,0,131,1,0,1,87, +- 113,94,0,4,116,7,0,107,10,0,114,155,0,1,1,1, +- 119,94,0,89,113,94,0,4,116,8,0,107,10,0,114,211, +- 0,1,125,8,0,1,122,25,0,116,9,0,100,1,0,124, +- 4,0,124,8,0,131,3,0,1,100,2,0,83,87,89,100, +- 2,0,100,2,0,125,8,0,126,8,0,88,113,94,0,88, +- 113,94,0,87,121,33,0,116,10,0,124,1,0,124,2,0, +- 124,3,0,131,3,0,1,116,9,0,100,3,0,124,1,0, +- 131,2,0,1,87,110,53,0,4,116,8,0,107,10,0,114, +- 48,1,1,125,8,0,1,122,21,0,116,9,0,100,1,0, +- 124,1,0,124,8,0,131,3,0,1,87,89,100,2,0,100, +- 2,0,125,8,0,126,8,0,88,110,1,0,88,100,2,0, +- 83,41,4,122,27,87,114,105,116,101,32,98,121,116,101,115, +- 32,100,97,116,97,32,116,111,32,97,32,102,105,108,101,46, +- 122,27,99,111,117,108,100,32,110,111,116,32,99,114,101,97, +- 116,101,32,123,33,114,125,58,32,123,33,114,125,78,122,12, +- 99,114,101,97,116,101,100,32,123,33,114,125,41,11,114,38, +- 0,0,0,114,46,0,0,0,114,163,0,0,0,114,33,0, +- 0,0,114,28,0,0,0,114,3,0,0,0,90,5,109,107, +- 100,105,114,218,15,70,105,108,101,69,120,105,115,116,115,69, +- 114,114,111,114,114,40,0,0,0,114,105,0,0,0,114,55, +- 0,0,0,41,9,114,108,0,0,0,114,35,0,0,0,114, +- 53,0,0,0,114,220,0,0,0,218,6,112,97,114,101,110, +- 116,114,94,0,0,0,114,27,0,0,0,114,23,0,0,0, +- 114,201,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,198,0,0,0,65,3,0,0,115,38,0, +- 0,0,0,2,18,1,6,2,22,1,18,1,17,2,19,1, +- 15,1,3,1,17,1,13,2,7,1,18,3,16,1,27,1, +- 3,1,16,1,17,1,18,2,122,25,83,111,117,114,99,101, +- 70,105,108,101,76,111,97,100,101,114,46,115,101,116,95,100, +- 97,116,97,78,41,7,114,112,0,0,0,114,111,0,0,0, +- 114,113,0,0,0,114,114,0,0,0,114,197,0,0,0,114, +- 199,0,0,0,114,198,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,218,0, +- 0,0,51,3,0,0,115,8,0,0,0,12,2,6,2,12, +- 5,12,5,114,218,0,0,0,99,0,0,0,0,0,0,0, +- 0,0,0,0,0,2,0,0,0,64,0,0,0,115,46,0, +- 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, +- 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, +- 100,4,0,100,5,0,132,0,0,90,5,0,100,6,0,83, +- 41,7,218,20,83,111,117,114,99,101,108,101,115,115,70,105, +- 108,101,76,111,97,100,101,114,122,45,76,111,97,100,101,114, +- 32,119,104,105,99,104,32,104,97,110,100,108,101,115,32,115, +- 111,117,114,99,101,108,101,115,115,32,102,105,108,101,32,105, +- 109,112,111,114,116,115,46,99,2,0,0,0,0,0,0,0, +- 5,0,0,0,6,0,0,0,67,0,0,0,115,76,0,0, +- 0,124,0,0,106,0,0,124,1,0,131,1,0,125,2,0, +- 124,0,0,106,1,0,124,2,0,131,1,0,125,3,0,116, +- 2,0,124,3,0,100,1,0,124,1,0,100,2,0,124,2, +- 0,131,1,2,125,4,0,116,3,0,124,4,0,100,1,0, +- 124,1,0,100,3,0,124,2,0,131,1,2,83,41,4,78, +- 114,106,0,0,0,114,35,0,0,0,114,89,0,0,0,41, +- 4,114,157,0,0,0,114,200,0,0,0,114,141,0,0,0, +- 114,147,0,0,0,41,5,114,108,0,0,0,114,126,0,0, +- 0,114,35,0,0,0,114,53,0,0,0,114,209,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 187,0,0,0,98,3,0,0,115,8,0,0,0,0,1,15, +- 1,15,1,24,1,122,29,83,111,117,114,99,101,108,101,115, +- 115,70,105,108,101,76,111,97,100,101,114,46,103,101,116,95, +- 99,111,100,101,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, +- 0,83,41,2,122,39,82,101,116,117,114,110,32,78,111,110, +- 101,32,97,115,32,116,104,101,114,101,32,105,115,32,110,111, +- 32,115,111,117,114,99,101,32,99,111,100,101,46,78,114,4, +- 0,0,0,41,2,114,108,0,0,0,114,126,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,202, +- 0,0,0,104,3,0,0,115,2,0,0,0,0,2,122,31, +- 83,111,117,114,99,101,108,101,115,115,70,105,108,101,76,111, +- 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,78, +- 41,6,114,112,0,0,0,114,111,0,0,0,114,113,0,0, +- 0,114,114,0,0,0,114,187,0,0,0,114,202,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,223,0,0,0,94,3,0,0,115,6,0, +- 0,0,12,2,6,2,12,6,114,223,0,0,0,99,0,0, +- 0,0,0,0,0,0,0,0,0,0,3,0,0,0,64,0, +- 0,0,115,136,0,0,0,101,0,0,90,1,0,100,0,0, ++ 32,32,32,78,41,1,218,7,73,79,69,114,114,111,114,41, ++ 2,114,109,0,0,0,114,36,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,10,112,97,116,104, ++ 95,109,116,105,109,101,158,2,0,0,115,2,0,0,0,0, ++ 6,122,23,83,111,117,114,99,101,76,111,97,100,101,114,46, ++ 112,97,116,104,95,109,116,105,109,101,99,2,0,0,0,0, ++ 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, ++ 19,0,0,0,100,1,0,124,0,0,106,0,0,124,1,0, ++ 131,1,0,105,1,0,83,41,2,97,170,1,0,0,79,112, ++ 116,105,111,110,97,108,32,109,101,116,104,111,100,32,114,101, ++ 116,117,114,110,105,110,103,32,97,32,109,101,116,97,100,97, ++ 116,97,32,100,105,99,116,32,102,111,114,32,116,104,101,32, ++ 115,112,101,99,105,102,105,101,100,32,112,97,116,104,10,32, ++ 32,32,32,32,32,32,32,116,111,32,98,121,32,116,104,101, ++ 32,112,97,116,104,32,40,115,116,114,41,46,10,32,32,32, ++ 32,32,32,32,32,80,111,115,115,105,98,108,101,32,107,101, ++ 121,115,58,10,32,32,32,32,32,32,32,32,45,32,39,109, ++ 116,105,109,101,39,32,40,109,97,110,100,97,116,111,114,121, ++ 41,32,105,115,32,116,104,101,32,110,117,109,101,114,105,99, ++ 32,116,105,109,101,115,116,97,109,112,32,111,102,32,108,97, ++ 115,116,32,115,111,117,114,99,101,10,32,32,32,32,32,32, ++ 32,32,32,32,99,111,100,101,32,109,111,100,105,102,105,99, ++ 97,116,105,111,110,59,10,32,32,32,32,32,32,32,32,45, ++ 32,39,115,105,122,101,39,32,40,111,112,116,105,111,110,97, ++ 108,41,32,105,115,32,116,104,101,32,115,105,122,101,32,105, ++ 110,32,98,121,116,101,115,32,111,102,32,116,104,101,32,115, ++ 111,117,114,99,101,32,99,111,100,101,46,10,10,32,32,32, + 32,32,32,32,32,73,109,112,108,101,109,101,110,116,105,110, + 103,32,116,104,105,115,32,109,101,116,104,111,100,32,97,108, -+ 108,111,119,115,32,102,111,114,32,116,104,101,32,119,114,105, -+ 116,105,110,103,32,111,102,32,98,121,116,101,99,111,100,101, ++ 108,111,119,115,32,116,104,101,32,108,111,97,100,101,114,32, ++ 116,111,32,114,101,97,100,32,98,121,116,101,99,111,100,101, + 32,102,105,108,101,115,46,10,32,32,32,32,32,32,32,32, -+ 78,114,5,0,0,0,41,3,114,72,0,0,0,114,36,0, -+ 0,0,114,54,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,38,1,0,0,229,5,0,0,115, -+ 0,0,0,0,122,21,83,111,117,114,99,101,76,111,97,100, -+ 101,114,46,115,101,116,95,100,97,116,97,99,2,0,0,0, -+ 0,0,0,0,5,0,0,0,16,0,0,0,67,0,0,0, -+ 115,105,0,0,0,124,0,0,106,0,0,124,1,0,131,1, -+ 0,125,2,0,121,19,0,124,0,0,106,1,0,124,2,0, -+ 131,1,0,125,3,0,87,110,58,0,4,116,2,0,107,10, -+ 0,114,94,0,1,125,4,0,1,122,26,0,116,3,0,100, -+ 1,0,100,2,0,124,1,0,131,1,1,124,4,0,130,2, -+ 0,87,89,100,3,0,100,3,0,125,4,0,126,4,0,88, -+ 110,1,0,88,116,4,0,124,3,0,131,1,0,83,41,4, -+ 122,52,67,111,110,99,114,101,116,101,32,105,109,112,108,101, -+ 109,101,110,116,97,116,105,111,110,32,111,102,32,73,110,115, -+ 112,101,99,116,76,111,97,100,101,114,46,103,101,116,95,115, -+ 111,117,114,99,101,46,122,39,115,111,117,114,99,101,32,110, -+ 111,116,32,97,118,97,105,108,97,98,108,101,32,116,104,114, -+ 111,117,103,104,32,103,101,116,95,100,97,116,97,40,41,114, -+ 68,0,0,0,78,41,5,114,239,0,0,0,218,8,103,101, -+ 116,95,100,97,116,97,114,41,0,0,0,114,154,0,0,0, -+ 114,204,0,0,0,41,5,114,72,0,0,0,114,159,0,0, -+ 0,114,36,0,0,0,114,202,0,0,0,218,3,101,120,99, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 17,1,0,0,236,5,0,0,115,14,0,0,0,0,2,15, -+ 1,3,1,19,1,18,1,9,1,31,1,122,23,83,111,117, -+ 114,99,101,76,111,97,100,101,114,46,103,101,116,95,115,111, -+ 117,114,99,101,218,9,95,111,112,116,105,109,105,122,101,114, -+ 30,0,0,0,99,3,0,0,0,1,0,0,0,4,0,0, -+ 0,9,0,0,0,67,0,0,0,115,31,0,0,0,116,0, -+ 0,116,1,0,124,1,0,124,2,0,100,1,0,100,2,0, -+ 100,3,0,100,4,0,124,3,0,131,4,2,83,41,5,122, -+ 130,82,101,116,117,114,110,32,116,104,101,32,99,111,100,101, -+ 32,111,98,106,101,99,116,32,99,111,109,112,105,108,101,100, -+ 32,102,114,111,109,32,115,111,117,114,99,101,46,10,10,32, -+ 32,32,32,32,32,32,32,84,104,101,32,39,100,97,116,97, -+ 39,32,97,114,103,117,109,101,110,116,32,99,97,110,32,98, -+ 101,32,97,110,121,32,111,98,106,101,99,116,32,116,121,112, -+ 101,32,116,104,97,116,32,99,111,109,112,105,108,101,40,41, -+ 32,115,117,112,112,111,114,116,115,46,10,32,32,32,32,32, -+ 32,32,32,114,176,0,0,0,218,12,100,111,110,116,95,105, -+ 110,104,101,114,105,116,84,114,119,0,0,0,41,2,114,115, -+ 0,0,0,218,7,99,111,109,112,105,108,101,41,4,114,72, -+ 0,0,0,114,54,0,0,0,114,36,0,0,0,114,42,1, ++ 82,97,105,115,101,115,32,73,79,69,114,114,111,114,32,119, ++ 104,101,110,32,116,104,101,32,112,97,116,104,32,99,97,110, ++ 110,111,116,32,98,101,32,104,97,110,100,108,101,100,46,10, ++ 32,32,32,32,32,32,32,32,114,134,0,0,0,41,1,114, ++ 197,0,0,0,41,2,114,109,0,0,0,114,36,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 10,112,97,116,104,95,115,116,97,116,115,166,2,0,0,115, ++ 2,0,0,0,0,11,122,23,83,111,117,114,99,101,76,111, ++ 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, ++ 4,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, ++ 67,0,0,0,115,16,0,0,0,124,0,0,106,0,0,124, ++ 2,0,124,3,0,131,2,0,83,41,1,122,228,79,112,116, ++ 105,111,110,97,108,32,109,101,116,104,111,100,32,119,104,105, ++ 99,104,32,119,114,105,116,101,115,32,100,97,116,97,32,40, ++ 98,121,116,101,115,41,32,116,111,32,97,32,102,105,108,101, ++ 32,112,97,116,104,32,40,97,32,115,116,114,41,46,10,10, ++ 32,32,32,32,32,32,32,32,73,109,112,108,101,109,101,110, ++ 116,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100, ++ 32,97,108,108,111,119,115,32,102,111,114,32,116,104,101,32, ++ 119,114,105,116,105,110,103,32,111,102,32,98,121,116,101,99, ++ 111,100,101,32,102,105,108,101,115,46,10,10,32,32,32,32, ++ 32,32,32,32,84,104,101,32,115,111,117,114,99,101,32,112, ++ 97,116,104,32,105,115,32,110,101,101,100,101,100,32,105,110, ++ 32,111,114,100,101,114,32,116,111,32,99,111,114,114,101,99, ++ 116,108,121,32,116,114,97,110,115,102,101,114,32,112,101,114, ++ 109,105,115,115,105,111,110,115,10,32,32,32,32,32,32,32, ++ 32,41,1,218,8,115,101,116,95,100,97,116,97,41,4,114, ++ 109,0,0,0,114,91,0,0,0,90,10,99,97,99,104,101, ++ 95,112,97,116,104,114,54,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,15,95,99,97,99,104, ++ 101,95,98,121,116,101,99,111,100,101,179,2,0,0,115,2, ++ 0,0,0,0,8,122,28,83,111,117,114,99,101,76,111,97, ++ 100,101,114,46,95,99,97,99,104,101,95,98,121,116,101,99, ++ 111,100,101,99,3,0,0,0,0,0,0,0,3,0,0,0, ++ 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, ++ 83,41,2,122,150,79,112,116,105,111,110,97,108,32,109,101, ++ 116,104,111,100,32,119,104,105,99,104,32,119,114,105,116,101, ++ 115,32,100,97,116,97,32,40,98,121,116,101,115,41,32,116, ++ 111,32,97,32,102,105,108,101,32,112,97,116,104,32,40,97, ++ 32,115,116,114,41,46,10,10,32,32,32,32,32,32,32,32, ++ 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, ++ 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, ++ 102,111,114,32,116,104,101,32,119,114,105,116,105,110,103,32, ++ 111,102,32,98,121,116,101,99,111,100,101,32,102,105,108,101, ++ 115,46,10,32,32,32,32,32,32,32,32,78,114,5,0,0, ++ 0,41,3,114,109,0,0,0,114,36,0,0,0,114,54,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,199,0,0,0,189,2,0,0,115,0,0,0,0,122, ++ 21,83,111,117,114,99,101,76,111,97,100,101,114,46,115,101, ++ 116,95,100,97,116,97,99,2,0,0,0,0,0,0,0,5, ++ 0,0,0,16,0,0,0,67,0,0,0,115,105,0,0,0, ++ 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,121, ++ 19,0,124,0,0,106,1,0,124,2,0,131,1,0,125,3, ++ 0,87,110,58,0,4,116,2,0,107,10,0,114,94,0,1, ++ 125,4,0,1,122,26,0,116,3,0,100,1,0,100,2,0, ++ 124,1,0,131,1,1,124,4,0,130,2,0,87,89,100,3, ++ 0,100,3,0,125,4,0,126,4,0,88,110,1,0,88,116, ++ 4,0,124,3,0,131,1,0,83,41,4,122,52,67,111,110, ++ 99,114,101,116,101,32,105,109,112,108,101,109,101,110,116,97, ++ 116,105,111,110,32,111,102,32,73,110,115,112,101,99,116,76, ++ 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, ++ 46,122,39,115,111,117,114,99,101,32,110,111,116,32,97,118, ++ 97,105,108,97,98,108,101,32,116,104,114,111,117,103,104,32, ++ 103,101,116,95,100,97,116,97,40,41,114,107,0,0,0,78, ++ 41,5,114,158,0,0,0,218,8,103,101,116,95,100,97,116, ++ 97,114,41,0,0,0,114,108,0,0,0,114,156,0,0,0, ++ 41,5,114,109,0,0,0,114,127,0,0,0,114,36,0,0, ++ 0,114,154,0,0,0,218,3,101,120,99,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,10,103,101,116,95, ++ 115,111,117,114,99,101,196,2,0,0,115,14,0,0,0,0, ++ 2,15,1,3,1,19,1,18,1,9,1,31,1,122,23,83, ++ 111,117,114,99,101,76,111,97,100,101,114,46,103,101,116,95, ++ 115,111,117,114,99,101,218,9,95,111,112,116,105,109,105,122, ++ 101,114,30,0,0,0,99,3,0,0,0,1,0,0,0,4, ++ 0,0,0,9,0,0,0,67,0,0,0,115,34,0,0,0, ++ 116,0,0,106,1,0,116,2,0,124,1,0,124,2,0,100, ++ 1,0,100,2,0,100,3,0,100,4,0,124,3,0,131,4, ++ 2,83,41,5,122,130,82,101,116,117,114,110,32,116,104,101, ++ 32,99,111,100,101,32,111,98,106,101,99,116,32,99,111,109, ++ 112,105,108,101,100,32,102,114,111,109,32,115,111,117,114,99, ++ 101,46,10,10,32,32,32,32,32,32,32,32,84,104,101,32, ++ 39,100,97,116,97,39,32,97,114,103,117,109,101,110,116,32, ++ 99,97,110,32,98,101,32,97,110,121,32,111,98,106,101,99, ++ 116,32,116,121,112,101,32,116,104,97,116,32,99,111,109,112, ++ 105,108,101,40,41,32,115,117,112,112,111,114,116,115,46,10, ++ 32,32,32,32,32,32,32,32,114,190,0,0,0,218,12,100, ++ 111,110,116,95,105,110,104,101,114,105,116,84,114,69,0,0, ++ 0,41,3,114,122,0,0,0,114,189,0,0,0,218,7,99, ++ 111,109,112,105,108,101,41,4,114,109,0,0,0,114,54,0, ++ 0,0,114,36,0,0,0,114,204,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,14,115,111,117, ++ 114,99,101,95,116,111,95,99,111,100,101,206,2,0,0,115, ++ 4,0,0,0,0,5,21,1,122,27,83,111,117,114,99,101, ++ 76,111,97,100,101,114,46,115,111,117,114,99,101,95,116,111, ++ 95,99,111,100,101,99,2,0,0,0,0,0,0,0,10,0, ++ 0,0,43,0,0,0,67,0,0,0,115,174,1,0,0,124, ++ 0,0,106,0,0,124,1,0,131,1,0,125,2,0,100,1, ++ 0,125,3,0,121,16,0,116,1,0,124,2,0,131,1,0, ++ 125,4,0,87,110,24,0,4,116,2,0,107,10,0,114,63, ++ 0,1,1,1,100,1,0,125,4,0,89,110,202,0,88,121, ++ 19,0,124,0,0,106,3,0,124,2,0,131,1,0,125,5, ++ 0,87,110,18,0,4,116,4,0,107,10,0,114,103,0,1, ++ 1,1,89,110,162,0,88,116,5,0,124,5,0,100,2,0, ++ 25,131,1,0,125,3,0,121,19,0,124,0,0,106,6,0, ++ 124,4,0,131,1,0,125,6,0,87,110,18,0,4,116,7, ++ 0,107,10,0,114,159,0,1,1,1,89,110,106,0,88,121, ++ 34,0,116,8,0,124,6,0,100,3,0,124,5,0,100,4, ++ 0,124,1,0,100,5,0,124,4,0,131,1,3,125,7,0, ++ 87,110,24,0,4,116,9,0,116,10,0,102,2,0,107,10, ++ 0,114,220,0,1,1,1,89,110,45,0,88,116,11,0,100, ++ 6,0,124,4,0,124,2,0,131,3,0,1,116,12,0,124, ++ 7,0,100,4,0,124,1,0,100,7,0,124,4,0,100,8, ++ 0,124,2,0,131,1,3,83,124,0,0,106,6,0,124,2, ++ 0,131,1,0,125,8,0,124,0,0,106,13,0,124,8,0, ++ 124,2,0,131,2,0,125,9,0,116,11,0,100,9,0,124, ++ 2,0,131,2,0,1,116,14,0,106,15,0,12,114,170,1, ++ 124,4,0,100,1,0,107,9,0,114,170,1,124,3,0,100, ++ 1,0,107,9,0,114,170,1,116,16,0,124,9,0,124,3, ++ 0,116,17,0,124,8,0,131,1,0,131,3,0,125,6,0, ++ 121,36,0,124,0,0,106,18,0,124,2,0,124,4,0,124, ++ 6,0,131,3,0,1,116,11,0,100,10,0,124,4,0,131, ++ 2,0,1,87,110,18,0,4,116,2,0,107,10,0,114,169, ++ 1,1,1,1,89,110,1,0,88,124,9,0,83,41,11,122, ++ 190,67,111,110,99,114,101,116,101,32,105,109,112,108,101,109, ++ 101,110,116,97,116,105,111,110,32,111,102,32,73,110,115,112, ++ 101,99,116,76,111,97,100,101,114,46,103,101,116,95,99,111, ++ 100,101,46,10,10,32,32,32,32,32,32,32,32,82,101,97, ++ 100,105,110,103,32,111,102,32,98,121,116,101,99,111,100,101, ++ 32,114,101,113,117,105,114,101,115,32,112,97,116,104,95,115, ++ 116,97,116,115,32,116,111,32,98,101,32,105,109,112,108,101, ++ 109,101,110,116,101,100,46,32,84,111,32,119,114,105,116,101, ++ 10,32,32,32,32,32,32,32,32,98,121,116,101,99,111,100, ++ 101,44,32,115,101,116,95,100,97,116,97,32,109,117,115,116, ++ 32,97,108,115,111,32,98,101,32,105,109,112,108,101,109,101, ++ 110,116,101,100,46,10,10,32,32,32,32,32,32,32,32,78, ++ 114,134,0,0,0,114,139,0,0,0,114,107,0,0,0,114, ++ 36,0,0,0,122,13,123,125,32,109,97,116,99,104,101,115, ++ 32,123,125,114,90,0,0,0,114,91,0,0,0,122,19,99, ++ 111,100,101,32,111,98,106,101,99,116,32,102,114,111,109,32, ++ 123,125,122,10,119,114,111,116,101,32,123,33,114,125,41,19, ++ 114,158,0,0,0,114,80,0,0,0,114,67,0,0,0,114, ++ 198,0,0,0,114,196,0,0,0,114,15,0,0,0,114,201, ++ 0,0,0,114,41,0,0,0,114,142,0,0,0,114,108,0, ++ 0,0,114,137,0,0,0,114,106,0,0,0,114,148,0,0, ++ 0,114,207,0,0,0,114,8,0,0,0,218,19,100,111,110, ++ 116,95,119,114,105,116,101,95,98,121,116,101,99,111,100,101, ++ 114,151,0,0,0,114,32,0,0,0,114,200,0,0,0,41, ++ 10,114,109,0,0,0,114,127,0,0,0,114,91,0,0,0, ++ 114,140,0,0,0,114,90,0,0,0,218,2,115,116,114,54, ++ 0,0,0,218,10,98,121,116,101,115,95,100,97,116,97,114, ++ 154,0,0,0,90,11,99,111,100,101,95,111,98,106,101,99, ++ 116,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,188,0,0,0,214,2,0,0,115,78,0,0,0,0,7, ++ 15,1,6,1,3,1,16,1,13,1,11,2,3,1,19,1, ++ 13,1,5,2,16,1,3,1,19,1,13,1,5,2,3,1, ++ 9,1,12,1,13,1,19,1,5,2,9,1,7,1,15,1, ++ 6,1,7,1,15,1,18,1,13,1,22,1,12,1,9,1, ++ 15,1,3,1,19,1,17,1,13,1,5,1,122,21,83,111, ++ 117,114,99,101,76,111,97,100,101,114,46,103,101,116,95,99, ++ 111,100,101,78,114,88,0,0,0,41,10,114,113,0,0,0, ++ 114,112,0,0,0,114,114,0,0,0,114,197,0,0,0,114, ++ 198,0,0,0,114,200,0,0,0,114,199,0,0,0,114,203, ++ 0,0,0,114,207,0,0,0,114,188,0,0,0,114,5,0, + 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,14,115,111,117,114,99,101,95,116,111,95,99,111,100, -+ 101,246,5,0,0,115,4,0,0,0,0,5,18,1,122,27, -+ 83,111,117,114,99,101,76,111,97,100,101,114,46,115,111,117, -+ 114,99,101,95,116,111,95,99,111,100,101,99,2,0,0,0, -+ 0,0,0,0,10,0,0,0,43,0,0,0,67,0,0,0, -+ 115,177,1,0,0,124,0,0,106,0,0,124,1,0,131,1, -+ 0,125,2,0,100,1,0,125,3,0,121,16,0,116,1,0, -+ 124,2,0,131,1,0,125,4,0,87,110,24,0,4,116,2, -+ 0,107,10,0,114,63,0,1,1,1,100,1,0,125,4,0, -+ 89,110,202,0,88,121,19,0,124,0,0,106,3,0,124,2, -+ 0,131,1,0,125,5,0,87,110,18,0,4,116,4,0,107, -+ 10,0,114,103,0,1,1,1,89,110,162,0,88,116,5,0, -+ 124,5,0,100,2,0,25,131,1,0,125,3,0,121,19,0, -+ 124,0,0,106,6,0,124,4,0,131,1,0,125,6,0,87, -+ 110,18,0,4,116,7,0,107,10,0,114,159,0,1,1,1, -+ 89,110,106,0,88,121,34,0,116,8,0,124,6,0,100,3, -+ 0,124,5,0,100,4,0,124,1,0,100,5,0,124,4,0, -+ 131,1,3,125,7,0,87,110,24,0,4,116,9,0,116,10, -+ 0,102,2,0,107,10,0,114,220,0,1,1,1,89,110,45, -+ 0,88,116,11,0,100,6,0,124,4,0,124,2,0,131,3, -+ 0,1,116,12,0,124,7,0,100,4,0,124,1,0,100,7, -+ 0,124,4,0,100,8,0,124,2,0,131,1,3,83,124,0, -+ 0,106,6,0,124,2,0,131,1,0,125,8,0,124,0,0, -+ 106,13,0,124,8,0,124,2,0,131,2,0,125,9,0,116, -+ 11,0,100,9,0,124,2,0,131,2,0,1,116,14,0,106, -+ 15,0,12,114,173,1,124,4,0,100,1,0,107,9,0,114, -+ 173,1,124,3,0,100,1,0,107,9,0,114,173,1,116,16, -+ 0,124,9,0,124,3,0,116,17,0,124,8,0,131,1,0, -+ 131,3,0,125,6,0,121,36,0,124,0,0,106,18,0,124, -+ 2,0,124,4,0,124,6,0,131,3,0,1,116,11,0,100, -+ 10,0,124,4,0,131,2,0,1,87,113,173,1,4,116,2, -+ 0,107,10,0,114,169,1,1,1,1,89,113,173,1,88,110, -+ 0,0,124,9,0,83,41,11,122,190,67,111,110,99,114,101, -+ 116,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111, -+ 110,32,111,102,32,73,110,115,112,101,99,116,76,111,97,100, -+ 101,114,46,103,101,116,95,99,111,100,101,46,10,10,32,32, -+ 32,32,32,32,32,32,82,101,97,100,105,110,103,32,111,102, -+ 32,98,121,116,101,99,111,100,101,32,114,101,113,117,105,114, -+ 101,115,32,112,97,116,104,95,115,116,97,116,115,32,116,111, -+ 32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46, -+ 32,84,111,32,119,114,105,116,101,10,32,32,32,32,32,32, -+ 32,32,98,121,116,101,99,111,100,101,44,32,115,101,116,95, -+ 100,97,116,97,32,109,117,115,116,32,97,108,115,111,32,98, -+ 101,32,105,109,112,108,101,109,101,110,116,101,100,46,10,10, -+ 32,32,32,32,32,32,32,32,78,114,184,0,0,0,114,188, -+ 0,0,0,114,68,0,0,0,114,36,0,0,0,122,13,123, -+ 125,32,109,97,116,99,104,101,115,32,123,125,114,141,0,0, -+ 0,114,142,0,0,0,122,19,99,111,100,101,32,111,98,106, -+ 101,99,116,32,102,114,111,109,32,123,125,122,10,119,114,111, -+ 116,101,32,123,33,114,125,41,19,114,239,0,0,0,114,133, -+ 0,0,0,114,125,0,0,0,114,37,1,0,0,114,35,1, -+ 0,0,114,15,0,0,0,114,40,1,0,0,114,41,0,0, -+ 0,114,191,0,0,0,114,154,0,0,0,114,187,0,0,0, -+ 114,153,0,0,0,114,196,0,0,0,114,45,1,0,0,114, -+ 8,0,0,0,218,19,100,111,110,116,95,119,114,105,116,101, -+ 95,98,121,116,101,99,111,100,101,114,199,0,0,0,114,32, -+ 0,0,0,114,39,1,0,0,41,10,114,72,0,0,0,114, -+ 159,0,0,0,114,142,0,0,0,114,189,0,0,0,114,141, -+ 0,0,0,218,2,115,116,114,54,0,0,0,218,10,98,121, -+ 116,101,115,95,100,97,116,97,114,202,0,0,0,90,11,99, -+ 111,100,101,95,111,98,106,101,99,116,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,16,1,0,0,254,5, -+ 0,0,115,78,0,0,0,0,7,15,1,6,1,3,1,16, -+ 1,13,1,11,2,3,1,19,1,13,1,5,2,16,1,3, -+ 1,19,1,13,1,5,2,3,1,9,1,12,1,13,1,19, -+ 1,5,2,9,1,7,1,15,1,6,1,7,1,15,1,18, -+ 1,13,1,22,1,12,1,9,1,15,1,3,1,19,1,17, -+ 1,13,1,8,1,122,21,83,111,117,114,99,101,76,111,97, -+ 100,101,114,46,103,101,116,95,99,111,100,101,78,114,139,0, -+ 0,0,41,10,114,58,0,0,0,114,57,0,0,0,114,59, -+ 0,0,0,114,36,1,0,0,114,37,1,0,0,114,39,1, -+ 0,0,114,38,1,0,0,114,17,1,0,0,114,45,1,0, -+ 0,114,16,1,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,34,1,0,0,196, -+ 5,0,0,115,14,0,0,0,12,2,12,8,12,13,12,10, -+ 12,7,12,10,18,8,114,34,1,0,0,99,0,0,0,0, -+ 0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0, -+ 115,112,0,0,0,101,0,0,90,1,0,100,0,0,90,2, ++ 0,114,195,0,0,0,156,2,0,0,115,14,0,0,0,12, ++ 2,12,8,12,13,12,10,12,7,12,10,18,8,114,195,0, ++ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,4, ++ 0,0,0,0,0,0,0,115,112,0,0,0,101,0,0,90, ++ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, ++ 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, ++ 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, ++ 6,0,101,7,0,135,0,0,102,1,0,100,8,0,100,9, ++ 0,134,0,0,131,1,0,90,8,0,101,7,0,100,10,0, ++ 100,11,0,132,0,0,131,1,0,90,9,0,100,12,0,100, ++ 13,0,132,0,0,90,10,0,135,0,0,83,41,14,218,10, ++ 70,105,108,101,76,111,97,100,101,114,122,103,66,97,115,101, ++ 32,102,105,108,101,32,108,111,97,100,101,114,32,99,108,97, ++ 115,115,32,119,104,105,99,104,32,105,109,112,108,101,109,101, ++ 110,116,115,32,116,104,101,32,108,111,97,100,101,114,32,112, ++ 114,111,116,111,99,111,108,32,109,101,116,104,111,100,115,32, ++ 116,104,97,116,10,32,32,32,32,114,101,113,117,105,114,101, ++ 32,102,105,108,101,32,115,121,115,116,101,109,32,117,115,97, ++ 103,101,46,99,3,0,0,0,0,0,0,0,3,0,0,0, ++ 2,0,0,0,67,0,0,0,115,22,0,0,0,124,1,0, ++ 124,0,0,95,0,0,124,2,0,124,0,0,95,1,0,100, ++ 1,0,83,41,2,122,75,67,97,99,104,101,32,116,104,101, ++ 32,109,111,100,117,108,101,32,110,97,109,101,32,97,110,100, ++ 32,116,104,101,32,112,97,116,104,32,116,111,32,116,104,101, ++ 32,102,105,108,101,32,102,111,117,110,100,32,98,121,32,116, ++ 104,101,10,32,32,32,32,32,32,32,32,102,105,110,100,101, ++ 114,46,78,41,2,114,107,0,0,0,114,36,0,0,0,41, ++ 3,114,109,0,0,0,114,127,0,0,0,114,36,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 186,0,0,0,15,3,0,0,115,4,0,0,0,0,3,9, ++ 1,122,19,70,105,108,101,76,111,97,100,101,114,46,95,95, ++ 105,110,105,116,95,95,99,2,0,0,0,0,0,0,0,2, ++ 0,0,0,2,0,0,0,67,0,0,0,115,34,0,0,0, ++ 124,0,0,106,0,0,124,1,0,106,0,0,107,2,0,111, ++ 33,0,124,0,0,106,1,0,124,1,0,106,1,0,107,2, ++ 0,83,41,1,78,41,2,218,9,95,95,99,108,97,115,115, ++ 95,95,114,119,0,0,0,41,2,114,109,0,0,0,218,5, ++ 111,116,104,101,114,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,218,6,95,95,101,113,95,95,21,3,0,0, ++ 115,4,0,0,0,0,1,18,1,122,17,70,105,108,101,76, ++ 111,97,100,101,114,46,95,95,101,113,95,95,99,1,0,0, ++ 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, ++ 0,115,26,0,0,0,116,0,0,124,0,0,106,1,0,131, ++ 1,0,116,0,0,124,0,0,106,2,0,131,1,0,65,83, ++ 41,1,78,41,3,218,4,104,97,115,104,114,107,0,0,0, ++ 114,36,0,0,0,41,1,114,109,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,8,95,95,104, ++ 97,115,104,95,95,25,3,0,0,115,2,0,0,0,0,1, ++ 122,19,70,105,108,101,76,111,97,100,101,114,46,95,95,104, ++ 97,115,104,95,95,99,2,0,0,0,0,0,0,0,2,0, ++ 0,0,3,0,0,0,3,0,0,0,115,22,0,0,0,116, ++ 0,0,116,1,0,124,0,0,131,2,0,106,2,0,124,1, ++ 0,131,1,0,83,41,1,122,100,76,111,97,100,32,97,32, ++ 109,111,100,117,108,101,32,102,114,111,109,32,97,32,102,105, ++ 108,101,46,10,10,32,32,32,32,32,32,32,32,84,104,105, ++ 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, ++ 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, ++ 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, ++ 97,100,46,10,10,32,32,32,32,32,32,32,32,41,3,218, ++ 5,115,117,112,101,114,114,211,0,0,0,114,194,0,0,0, ++ 41,2,114,109,0,0,0,114,127,0,0,0,41,1,114,212, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,194,0, ++ 0,0,28,3,0,0,115,2,0,0,0,0,10,122,22,70, ++ 105,108,101,76,111,97,100,101,114,46,108,111,97,100,95,109, ++ 111,100,117,108,101,99,2,0,0,0,0,0,0,0,2,0, ++ 0,0,1,0,0,0,67,0,0,0,115,7,0,0,0,124, ++ 0,0,106,0,0,83,41,1,122,58,82,101,116,117,114,110, ++ 32,116,104,101,32,112,97,116,104,32,116,111,32,116,104,101, ++ 32,115,111,117,114,99,101,32,102,105,108,101,32,97,115,32, ++ 102,111,117,110,100,32,98,121,32,116,104,101,32,102,105,110, ++ 100,101,114,46,41,1,114,36,0,0,0,41,2,114,109,0, ++ 0,0,114,127,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,158,0,0,0,40,3,0,0,115, ++ 2,0,0,0,0,3,122,23,70,105,108,101,76,111,97,100, ++ 101,114,46,103,101,116,95,102,105,108,101,110,97,109,101,99, ++ 2,0,0,0,0,0,0,0,3,0,0,0,9,0,0,0, ++ 67,0,0,0,115,42,0,0,0,116,0,0,106,1,0,124, ++ 1,0,100,1,0,131,2,0,143,17,0,125,2,0,124,2, ++ 0,106,2,0,131,0,0,83,87,100,2,0,81,82,88,100, ++ 2,0,83,41,3,122,39,82,101,116,117,114,110,32,116,104, ++ 101,32,100,97,116,97,32,102,114,111,109,32,112,97,116,104, ++ 32,97,115,32,114,97,119,32,98,121,116,101,115,46,218,1, ++ 114,78,41,3,114,50,0,0,0,114,51,0,0,0,90,4, ++ 114,101,97,100,41,3,114,109,0,0,0,114,36,0,0,0, ++ 114,55,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,201,0,0,0,45,3,0,0,115,4,0, ++ 0,0,0,2,21,1,122,19,70,105,108,101,76,111,97,100, ++ 101,114,46,103,101,116,95,100,97,116,97,41,11,114,113,0, ++ 0,0,114,112,0,0,0,114,114,0,0,0,114,115,0,0, ++ 0,114,186,0,0,0,114,214,0,0,0,114,216,0,0,0, ++ 114,124,0,0,0,114,194,0,0,0,114,158,0,0,0,114, ++ 201,0,0,0,114,5,0,0,0,114,5,0,0,0,41,1, ++ 114,212,0,0,0,114,6,0,0,0,114,211,0,0,0,10, ++ 3,0,0,115,14,0,0,0,12,3,6,2,12,6,12,4, ++ 12,3,24,12,18,5,114,211,0,0,0,99,0,0,0,0, ++ 0,0,0,0,0,0,0,0,4,0,0,0,64,0,0,0, ++ 115,64,0,0,0,101,0,0,90,1,0,100,0,0,90,2, + 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, + 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, -+ 6,0,100,7,0,132,0,0,90,6,0,101,7,0,135,0, -+ 0,102,1,0,100,8,0,100,9,0,134,0,0,131,1,0, -+ 90,8,0,101,7,0,100,10,0,100,11,0,132,0,0,131, -+ 1,0,90,9,0,100,12,0,100,13,0,132,0,0,90,10, -+ 0,135,0,0,83,41,14,218,10,70,105,108,101,76,111,97, -+ 100,101,114,122,103,66,97,115,101,32,102,105,108,101,32,108, -+ 111,97,100,101,114,32,99,108,97,115,115,32,119,104,105,99, -+ 104,32,105,109,112,108,101,109,101,110,116,115,32,116,104,101, -+ 32,108,111,97,100,101,114,32,112,114,111,116,111,99,111,108, -+ 32,109,101,116,104,111,100,115,32,116,104,97,116,10,32,32, -+ 32,32,114,101,113,117,105,114,101,32,102,105,108,101,32,115, -+ 121,115,116,101,109,32,117,115,97,103,101,46,99,3,0,0, -+ 0,0,0,0,0,3,0,0,0,2,0,0,0,67,0,0, -+ 0,115,22,0,0,0,124,1,0,124,0,0,95,0,0,124, -+ 2,0,124,0,0,95,1,0,100,1,0,83,41,2,122,75, -+ 67,97,99,104,101,32,116,104,101,32,109,111,100,117,108,101, -+ 32,110,97,109,101,32,97,110,100,32,116,104,101,32,112,97, -+ 116,104,32,116,111,32,116,104,101,32,102,105,108,101,32,102, -+ 111,117,110,100,32,98,121,32,116,104,101,10,32,32,32,32, -+ 32,32,32,32,102,105,110,100,101,114,46,78,41,2,114,68, -+ 0,0,0,114,36,0,0,0,41,3,114,72,0,0,0,114, -+ 159,0,0,0,114,36,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,73,0,0,0,55,6,0, -+ 0,115,4,0,0,0,0,3,9,1,122,19,70,105,108,101, -+ 76,111,97,100,101,114,46,95,95,105,110,105,116,95,95,99, -+ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, -+ 67,0,0,0,115,34,0,0,0,124,0,0,106,0,0,124, -+ 1,0,106,0,0,107,2,0,111,33,0,124,0,0,106,1, -+ 0,124,1,0,106,1,0,107,2,0,83,41,1,78,41,2, -+ 114,225,0,0,0,114,64,0,0,0,41,2,114,72,0,0, -+ 0,114,228,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,114,230,0,0,0,61,6,0,0,115,4, -+ 0,0,0,0,1,18,1,122,17,70,105,108,101,76,111,97, -+ 100,101,114,46,95,95,101,113,95,95,99,1,0,0,0,0, -+ 0,0,0,1,0,0,0,3,0,0,0,67,0,0,0,115, -+ 26,0,0,0,116,0,0,124,0,0,106,1,0,131,1,0, -+ 116,0,0,124,0,0,106,2,0,131,1,0,65,83,41,1, -+ 78,41,3,218,4,104,97,115,104,114,68,0,0,0,114,36, -+ 0,0,0,41,1,114,72,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,8,95,95,104,97,115, -+ 104,95,95,65,6,0,0,115,2,0,0,0,0,1,122,19, -+ 70,105,108,101,76,111,97,100,101,114,46,95,95,104,97,115, -+ 104,95,95,99,2,0,0,0,0,0,0,0,2,0,0,0, -+ 3,0,0,0,3,0,0,0,115,22,0,0,0,116,0,0, -+ 116,1,0,124,0,0,131,2,0,106,2,0,124,1,0,131, -+ 1,0,83,41,1,122,100,76,111,97,100,32,97,32,109,111, -+ 100,117,108,101,32,102,114,111,109,32,97,32,102,105,108,101, -+ 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, -+ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, -+ 97,116,101,100,46,32,32,85,115,101,32,101,120,101,99,95, -+ 109,111,100,117,108,101,40,41,32,105,110,115,116,101,97,100, -+ 46,10,10,32,32,32,32,32,32,32,32,41,3,218,5,115, -+ 117,112,101,114,114,49,1,0,0,114,5,1,0,0,41,2, -+ 114,72,0,0,0,114,159,0,0,0,41,1,114,225,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,114,5,1,0,0, -+ 68,6,0,0,115,2,0,0,0,0,10,122,22,70,105,108, -+ 101,76,111,97,100,101,114,46,108,111,97,100,95,109,111,100, -+ 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -+ 1,0,0,0,67,0,0,0,115,7,0,0,0,124,0,0, -+ 106,0,0,83,41,1,122,58,82,101,116,117,114,110,32,116, -+ 104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,115, -+ 111,117,114,99,101,32,102,105,108,101,32,97,115,32,102,111, -+ 117,110,100,32,98,121,32,116,104,101,32,102,105,110,100,101, -+ 114,46,41,1,114,36,0,0,0,41,2,114,72,0,0,0, -+ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,239,0,0,0,80,6,0,0,115,2,0, -+ 0,0,0,3,122,23,70,105,108,101,76,111,97,100,101,114, -+ 46,103,101,116,95,102,105,108,101,110,97,109,101,99,2,0, -+ 0,0,0,0,0,0,3,0,0,0,8,0,0,0,67,0, -+ 0,0,115,41,0,0,0,116,0,0,106,1,0,124,1,0, -+ 100,1,0,131,2,0,143,17,0,125,2,0,124,2,0,106, -+ 2,0,131,0,0,83,87,100,2,0,81,88,100,2,0,83, -+ 41,3,122,39,82,101,116,117,114,110,32,116,104,101,32,100, -+ 97,116,97,32,102,114,111,109,32,112,97,116,104,32,97,115, -+ 32,114,97,119,32,98,121,116,101,115,46,218,1,114,78,41, -+ 3,114,50,0,0,0,114,51,0,0,0,90,4,114,101,97, -+ 100,41,3,114,72,0,0,0,114,36,0,0,0,114,55,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,40,1,0,0,85,6,0,0,115,4,0,0,0,0, -+ 2,21,1,122,19,70,105,108,101,76,111,97,100,101,114,46, -+ 103,101,116,95,100,97,116,97,41,11,114,58,0,0,0,114, -+ 57,0,0,0,114,59,0,0,0,114,60,0,0,0,114,73, -+ 0,0,0,114,230,0,0,0,114,51,1,0,0,114,157,0, -+ 0,0,114,5,1,0,0,114,239,0,0,0,114,40,1,0, -+ 0,114,5,0,0,0,114,5,0,0,0,41,1,114,225,0, -+ 0,0,114,6,0,0,0,114,49,1,0,0,50,6,0,0, -+ 115,14,0,0,0,12,3,6,2,12,6,12,4,12,3,24, -+ 12,18,5,114,49,1,0,0,99,0,0,0,0,0,0,0, -+ 0,0,0,0,0,4,0,0,0,64,0,0,0,115,64,0, -+ 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, -+ 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, -+ 100,4,0,100,5,0,132,0,0,90,5,0,100,6,0,100, -+ 7,0,100,8,0,100,9,0,132,0,1,90,6,0,100,10, -+ 0,83,41,11,114,9,1,0,0,122,62,67,111,110,99,114, ++ 6,0,100,7,0,100,8,0,100,9,0,132,0,1,90,6, ++ 0,100,10,0,83,41,11,218,16,83,111,117,114,99,101,70, ++ 105,108,101,76,111,97,100,101,114,122,62,67,111,110,99,114, + 101,116,101,32,105,109,112,108,101,109,101,110,116,97,116,105, + 111,110,32,111,102,32,83,111,117,114,99,101,76,111,97,100, + 101,114,32,117,115,105,110,103,32,116,104,101,32,102,105,108, + 101,32,115,121,115,116,101,109,46,99,2,0,0,0,0,0, -+ 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,36, -+ 0,0,0,116,0,0,124,1,0,131,1,0,125,2,0,105, -+ 2,0,124,2,0,106,1,0,100,1,0,54,124,2,0,106, -+ 2,0,100,2,0,54,83,41,3,122,33,82,101,116,117,114, -+ 110,32,116,104,101,32,109,101,116,97,100,97,116,97,32,102, -+ 111,114,32,116,104,101,32,112,97,116,104,46,114,184,0,0, -+ 0,114,185,0,0,0,41,3,114,40,0,0,0,218,8,115, -+ 116,95,109,116,105,109,101,90,7,115,116,95,115,105,122,101, -+ 41,3,114,72,0,0,0,114,36,0,0,0,114,47,1,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,37,1,0,0,95,6,0,0,115,4,0,0,0,0,2, -+ 12,1,122,27,83,111,117,114,99,101,70,105,108,101,76,111, -+ 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, -+ 4,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, -+ 67,0,0,0,115,34,0,0,0,116,0,0,124,1,0,131, -+ 1,0,125,4,0,124,0,0,106,1,0,124,2,0,124,3, -+ 0,100,1,0,124,4,0,131,2,1,83,41,2,78,218,5, -+ 95,109,111,100,101,41,2,114,145,0,0,0,114,38,1,0, -+ 0,41,5,114,72,0,0,0,114,142,0,0,0,114,141,0, -+ 0,0,114,54,0,0,0,114,43,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,114,39,1,0,0, -+ 100,6,0,0,115,4,0,0,0,0,2,12,1,122,32,83, ++ 0,0,3,0,0,0,4,0,0,0,67,0,0,0,115,34, ++ 0,0,0,116,0,0,124,1,0,131,1,0,125,2,0,100, ++ 1,0,124,2,0,106,1,0,100,2,0,124,2,0,106,2, ++ 0,105,2,0,83,41,3,122,33,82,101,116,117,114,110,32, ++ 116,104,101,32,109,101,116,97,100,97,116,97,32,102,111,114, ++ 32,116,104,101,32,112,97,116,104,46,114,134,0,0,0,114, ++ 135,0,0,0,41,3,114,40,0,0,0,218,8,115,116,95, ++ 109,116,105,109,101,90,7,115,116,95,115,105,122,101,41,3, ++ 114,109,0,0,0,114,36,0,0,0,114,209,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,198, ++ 0,0,0,55,3,0,0,115,4,0,0,0,0,2,12,1, ++ 122,27,83,111,117,114,99,101,70,105,108,101,76,111,97,100, ++ 101,114,46,112,97,116,104,95,115,116,97,116,115,99,4,0, ++ 0,0,0,0,0,0,5,0,0,0,5,0,0,0,67,0, ++ 0,0,115,34,0,0,0,116,0,0,124,1,0,131,1,0, ++ 125,4,0,124,0,0,106,1,0,124,2,0,124,3,0,100, ++ 1,0,124,4,0,131,2,1,83,41,2,78,218,5,95,109, ++ 111,100,101,41,2,114,98,0,0,0,114,199,0,0,0,41, ++ 5,114,109,0,0,0,114,91,0,0,0,114,90,0,0,0, ++ 114,54,0,0,0,114,43,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,200,0,0,0,60,3, ++ 0,0,115,4,0,0,0,0,2,12,1,122,32,83,111,117, ++ 114,99,101,70,105,108,101,76,111,97,100,101,114,46,95,99, ++ 97,99,104,101,95,98,121,116,101,99,111,100,101,114,221,0, ++ 0,0,105,182,1,0,0,99,3,0,0,0,1,0,0,0, ++ 9,0,0,0,17,0,0,0,67,0,0,0,115,53,1,0, ++ 0,116,0,0,124,1,0,131,1,0,92,2,0,125,4,0, ++ 125,5,0,103,0,0,125,6,0,120,54,0,124,4,0,114, ++ 80,0,116,1,0,124,4,0,131,1,0,12,114,80,0,116, ++ 0,0,124,4,0,131,1,0,92,2,0,125,4,0,125,7, ++ 0,124,6,0,106,2,0,124,7,0,131,1,0,1,113,27, ++ 0,87,120,132,0,116,3,0,124,6,0,131,1,0,68,93, ++ 118,0,125,7,0,116,4,0,124,4,0,124,7,0,131,2, ++ 0,125,4,0,121,17,0,116,5,0,106,6,0,124,4,0, ++ 131,1,0,1,87,113,94,0,4,116,7,0,107,10,0,114, ++ 155,0,1,1,1,119,94,0,89,113,94,0,4,116,8,0, ++ 107,10,0,114,211,0,1,125,8,0,1,122,25,0,116,9, ++ 0,100,1,0,124,4,0,124,8,0,131,3,0,1,100,2, ++ 0,83,87,89,100,2,0,100,2,0,125,8,0,126,8,0, ++ 88,113,94,0,88,113,94,0,87,121,33,0,116,10,0,124, ++ 1,0,124,2,0,124,3,0,131,3,0,1,116,9,0,100, ++ 3,0,124,1,0,131,2,0,1,87,110,53,0,4,116,8, ++ 0,107,10,0,114,48,1,1,125,8,0,1,122,21,0,116, ++ 9,0,100,1,0,124,1,0,124,8,0,131,3,0,1,87, ++ 89,100,2,0,100,2,0,125,8,0,126,8,0,88,110,1, ++ 0,88,100,2,0,83,41,4,122,27,87,114,105,116,101,32, ++ 98,121,116,101,115,32,100,97,116,97,32,116,111,32,97,32, ++ 102,105,108,101,46,122,27,99,111,117,108,100,32,110,111,116, ++ 32,99,114,101,97,116,101,32,123,33,114,125,58,32,123,33, ++ 114,125,78,122,12,99,114,101,97,116,101,100,32,123,33,114, ++ 125,41,11,114,39,0,0,0,114,47,0,0,0,114,164,0, ++ 0,0,114,34,0,0,0,114,29,0,0,0,114,4,0,0, ++ 0,90,5,109,107,100,105,114,218,15,70,105,108,101,69,120, ++ 105,115,116,115,69,114,114,111,114,114,41,0,0,0,114,106, ++ 0,0,0,114,56,0,0,0,41,9,114,109,0,0,0,114, ++ 36,0,0,0,114,54,0,0,0,114,221,0,0,0,218,6, ++ 112,97,114,101,110,116,114,95,0,0,0,114,28,0,0,0, ++ 114,24,0,0,0,114,202,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,199,0,0,0,65,3, ++ 0,0,115,38,0,0,0,0,2,18,1,6,2,22,1,18, ++ 1,17,2,19,1,15,1,3,1,17,1,13,2,7,1,18, ++ 3,16,1,27,1,3,1,16,1,17,1,18,2,122,25,83, + 111,117,114,99,101,70,105,108,101,76,111,97,100,101,114,46, -+ 95,99,97,99,104,101,95,98,121,116,101,99,111,100,101,114, -+ 55,1,0,0,105,182,1,0,0,99,3,0,0,0,1,0, -+ 0,0,9,0,0,0,17,0,0,0,67,0,0,0,115,53, -+ 1,0,0,116,0,0,124,1,0,131,1,0,92,2,0,125, -+ 4,0,125,5,0,103,0,0,125,6,0,120,54,0,124,4, -+ 0,114,80,0,116,1,0,124,4,0,131,1,0,12,114,80, -+ 0,116,0,0,124,4,0,131,1,0,92,2,0,125,4,0, -+ 125,7,0,124,6,0,106,2,0,124,7,0,131,1,0,1, -+ 113,27,0,87,120,132,0,116,3,0,124,6,0,131,1,0, -+ 68,93,118,0,125,7,0,116,4,0,124,4,0,124,7,0, -+ 131,2,0,125,4,0,121,17,0,116,5,0,106,6,0,124, -+ 4,0,131,1,0,1,87,113,94,0,4,116,7,0,107,10, -+ 0,114,155,0,1,1,1,119,94,0,89,113,94,0,4,116, -+ 8,0,107,10,0,114,211,0,1,125,8,0,1,122,25,0, -+ 116,9,0,100,1,0,124,4,0,124,8,0,131,3,0,1, -+ 100,2,0,83,87,89,100,2,0,100,2,0,125,8,0,126, -+ 8,0,88,113,94,0,88,113,94,0,87,121,33,0,116,10, -+ 0,124,1,0,124,2,0,124,3,0,131,3,0,1,116,9, -+ 0,100,3,0,124,1,0,131,2,0,1,87,110,53,0,4, -+ 116,8,0,107,10,0,114,48,1,1,125,8,0,1,122,21, -+ 0,116,9,0,100,1,0,124,1,0,124,8,0,131,3,0, -+ 1,87,89,100,2,0,100,2,0,125,8,0,126,8,0,88, -+ 110,1,0,88,100,2,0,83,41,4,122,27,87,114,105,116, -+ 101,32,98,121,116,101,115,32,100,97,116,97,32,116,111,32, -+ 97,32,102,105,108,101,46,122,27,99,111,117,108,100,32,110, -+ 111,116,32,99,114,101,97,116,101,32,123,33,114,125,58,32, -+ 123,33,114,125,78,122,12,99,114,101,97,116,101,100,32,123, -+ 33,114,125,41,11,114,39,0,0,0,114,47,0,0,0,114, -+ 224,0,0,0,114,34,0,0,0,114,29,0,0,0,114,4, -+ 0,0,0,90,5,109,107,100,105,114,218,15,70,105,108,101, -+ 69,120,105,115,116,115,69,114,114,111,114,114,41,0,0,0, -+ 114,153,0,0,0,114,56,0,0,0,41,9,114,72,0,0, -+ 0,114,36,0,0,0,114,54,0,0,0,114,55,1,0,0, -+ 114,234,0,0,0,114,132,0,0,0,114,28,0,0,0,114, -+ 24,0,0,0,114,41,1,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,38,1,0,0,105,6,0, -+ 0,115,38,0,0,0,0,2,18,1,6,2,22,1,18,1, -+ 17,2,19,1,15,1,3,1,17,1,13,2,7,1,18,3, -+ 16,1,27,1,3,1,16,1,17,1,18,2,122,25,83,111, -+ 117,114,99,101,70,105,108,101,76,111,97,100,101,114,46,115, -+ 101,116,95,100,97,116,97,78,41,7,114,58,0,0,0,114, -+ 57,0,0,0,114,59,0,0,0,114,60,0,0,0,114,37, -+ 1,0,0,114,39,1,0,0,114,38,1,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,9,1,0,0,91,6,0,0,115,8,0,0,0,12, -+ 2,6,2,12,5,12,5,114,9,1,0,0,99,0,0,0, -+ 0,0,0,0,0,0,0,0,0,2,0,0,0,64,0,0, -+ 0,115,46,0,0,0,101,0,0,90,1,0,100,0,0,90, -+ 2,0,100,1,0,90,3,0,100,2,0,100,3,0,132,0, -+ 0,90,4,0,100,4,0,100,5,0,132,0,0,90,5,0, -+ 100,6,0,83,41,7,114,8,1,0,0,122,45,76,111,97, -+ 100,101,114,32,119,104,105,99,104,32,104,97,110,100,108,101, -+ 115,32,115,111,117,114,99,101,108,101,115,115,32,102,105,108, -+ 101,32,105,109,112,111,114,116,115,46,99,2,0,0,0,0, -+ 0,0,0,5,0,0,0,6,0,0,0,67,0,0,0,115, -+ 76,0,0,0,124,0,0,106,0,0,124,1,0,131,1,0, -+ 125,2,0,124,0,0,106,1,0,124,2,0,131,1,0,125, -+ 3,0,116,2,0,124,3,0,100,1,0,124,1,0,100,2, -+ 0,124,2,0,131,1,2,125,4,0,116,3,0,124,4,0, -+ 100,1,0,124,1,0,100,3,0,124,2,0,131,1,2,83, -+ 41,4,78,114,68,0,0,0,114,36,0,0,0,114,141,0, -+ 0,0,41,4,114,239,0,0,0,114,40,1,0,0,114,191, -+ 0,0,0,114,196,0,0,0,41,5,114,72,0,0,0,114, -+ 159,0,0,0,114,36,0,0,0,114,54,0,0,0,114,48, -+ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,16,1,0,0,138,6,0,0,115,8,0,0,0, -+ 0,1,15,1,15,1,24,1,122,29,83,111,117,114,99,101, -+ 108,101,115,115,70,105,108,101,76,111,97,100,101,114,46,103, -+ 101,116,95,99,111,100,101,99,2,0,0,0,0,0,0,0, -+ 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, -+ 0,100,1,0,83,41,2,122,39,82,101,116,117,114,110,32, -+ 78,111,110,101,32,97,115,32,116,104,101,114,101,32,105,115, -+ 32,110,111,32,115,111,117,114,99,101,32,99,111,100,101,46, -+ 78,114,5,0,0,0,41,2,114,72,0,0,0,114,159,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,17,1,0,0,144,6,0,0,115,2,0,0,0,0, -+ 2,122,31,83,111,117,114,99,101,108,101,115,115,70,105,108, -+ 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, -+ 99,101,78,41,6,114,58,0,0,0,114,57,0,0,0,114, -+ 59,0,0,0,114,60,0,0,0,114,16,1,0,0,114,17, -+ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,8,1,0,0,134,6,0,0, -+ 115,6,0,0,0,12,2,6,2,12,6,114,8,1,0,0, -+ 99,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0, -+ 0,64,0,0,0,115,130,0,0,0,101,0,0,90,1,0, -+ 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, -+ 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, -+ 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, -+ 101,7,0,100,8,0,100,9,0,132,0,0,131,1,0,90, -+ 8,0,100,10,0,100,11,0,132,0,0,90,9,0,100,12, -+ 0,100,13,0,132,0,0,90,10,0,100,14,0,100,15,0, -+ 132,0,0,90,11,0,101,7,0,100,16,0,100,17,0,132, -+ 0,0,131,1,0,90,12,0,100,18,0,83,41,19,218,19, -+ 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, -+ 100,101,114,122,93,76,111,97,100,101,114,32,102,111,114,32, -+ 101,120,116,101,110,115,105,111,110,32,109,111,100,117,108,101, -+ 115,46,10,10,32,32,32,32,84,104,101,32,99,111,110,115, -+ 116,114,117,99,116,111,114,32,105,115,32,100,101,115,105,103, -+ 110,101,100,32,116,111,32,119,111,114,107,32,119,105,116,104, -+ 32,70,105,108,101,70,105,110,100,101,114,46,10,10,32,32, -+ 32,32,99,3,0,0,0,0,0,0,0,3,0,0,0,2, -+ 0,0,0,67,0,0,0,115,22,0,0,0,124,1,0,124, -+ 0,0,95,0,0,124,2,0,124,0,0,95,1,0,100,0, -+ 0,83,41,1,78,41,2,114,68,0,0,0,114,36,0,0, -+ 0,41,3,114,72,0,0,0,114,68,0,0,0,114,36,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,73,0,0,0,161,6,0,0,115,4,0,0,0,0, -+ 1,9,1,122,28,69,120,116,101,110,115,105,111,110,70,105, -+ 108,101,76,111,97,100,101,114,46,95,95,105,110,105,116,95, -+ 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, -+ 0,0,67,0,0,0,115,34,0,0,0,124,0,0,106,0, -+ 0,124,1,0,106,0,0,107,2,0,111,33,0,124,0,0, -+ 106,1,0,124,1,0,106,1,0,107,2,0,83,41,1,78, -+ 41,2,114,225,0,0,0,114,64,0,0,0,41,2,114,72, -+ 0,0,0,114,228,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,230,0,0,0,165,6,0,0, -+ 115,4,0,0,0,0,1,18,1,122,26,69,120,116,101,110, -+ 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,95, -+ 95,101,113,95,95,99,1,0,0,0,0,0,0,0,1,0, -+ 0,0,3,0,0,0,67,0,0,0,115,26,0,0,0,116, -+ 0,0,124,0,0,106,1,0,131,1,0,116,0,0,124,0, -+ 0,106,2,0,131,1,0,65,83,41,1,78,41,3,114,50, -+ 1,0,0,114,68,0,0,0,114,36,0,0,0,41,1,114, -+ 72,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,51,1,0,0,169,6,0,0,115,2,0,0, -+ 0,0,1,122,28,69,120,116,101,110,115,105,111,110,70,105, -+ 108,101,76,111,97,100,101,114,46,95,95,104,97,115,104,95, -+ 95,99,2,0,0,0,0,0,0,0,4,0,0,0,11,0, -+ 0,0,67,0,0,0,115,183,0,0,0,116,0,0,124,1, -+ 0,131,1,0,143,29,0,1,116,1,0,116,2,0,106,3, -+ 0,124,1,0,124,0,0,106,4,0,131,3,0,125,2,0, -+ 87,100,1,0,81,88,116,5,0,100,2,0,124,0,0,106, -+ 4,0,131,2,0,1,124,0,0,106,6,0,124,1,0,131, -+ 1,0,125,3,0,124,3,0,114,124,0,116,7,0,124,2, -+ 0,100,3,0,131,2,0,12,114,124,0,116,8,0,124,0, -+ 0,106,4,0,131,1,0,100,4,0,25,103,1,0,124,2, -+ 0,95,9,0,110,0,0,124,0,0,124,2,0,95,10,0, -+ 124,2,0,106,11,0,124,2,0,95,12,0,124,3,0,115, -+ 179,0,124,2,0,106,12,0,106,13,0,100,5,0,131,1, -+ 0,100,4,0,25,124,2,0,95,12,0,110,0,0,124,2, -+ 0,83,41,6,122,25,76,111,97,100,32,97,110,32,101,120, -+ 116,101,110,115,105,111,110,32,109,111,100,117,108,101,46,78, -+ 122,33,101,120,116,101,110,115,105,111,110,32,109,111,100,117, -+ 108,101,32,108,111,97,100,101,100,32,102,114,111,109,32,123, -+ 33,114,125,114,247,0,0,0,114,85,0,0,0,114,117,0, -+ 0,0,41,14,114,70,0,0,0,114,115,0,0,0,114,107, -+ 0,0,0,90,12,108,111,97,100,95,100,121,110,97,109,105, -+ 99,114,36,0,0,0,114,153,0,0,0,114,220,0,0,0, -+ 114,61,0,0,0,114,39,0,0,0,114,247,0,0,0,114, -+ 205,0,0,0,114,58,0,0,0,114,251,0,0,0,114,33, -+ 0,0,0,41,4,114,72,0,0,0,114,159,0,0,0,114, -+ 180,0,0,0,114,220,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,5,1,0,0,172,6,0, -+ 0,115,24,0,0,0,0,5,13,1,9,1,21,1,16,1, -+ 15,1,22,1,28,1,9,1,12,1,6,1,28,1,122,31, -+ 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, -+ 100,101,114,46,108,111,97,100,95,109,111,100,117,108,101,99, -+ 2,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0, -+ 3,0,0,0,115,48,0,0,0,116,0,0,124,0,0,106, -+ 1,0,131,1,0,100,1,0,25,137,0,0,116,2,0,135, -+ 0,0,102,1,0,100,2,0,100,3,0,134,0,0,116,3, -+ 0,68,131,1,0,131,1,0,83,41,4,122,49,82,101,116, -+ 117,114,110,32,84,114,117,101,32,105,102,32,116,104,101,32, -+ 101,120,116,101,110,115,105,111,110,32,109,111,100,117,108,101, -+ 32,105,115,32,97,32,112,97,99,107,97,103,101,46,114,30, -+ 0,0,0,99,1,0,0,0,0,0,0,0,2,0,0,0, -+ 4,0,0,0,51,0,0,0,115,31,0,0,0,124,0,0, -+ 93,21,0,125,1,0,136,0,0,100,0,0,124,1,0,23, -+ 107,2,0,86,1,113,3,0,100,1,0,83,41,2,114,73, -+ 0,0,0,78,114,5,0,0,0,41,2,114,23,0,0,0, -+ 218,6,115,117,102,102,105,120,41,1,218,9,102,105,108,101, -+ 95,110,97,109,101,114,5,0,0,0,114,6,0,0,0,114, -+ 78,0,0,0,193,6,0,0,115,2,0,0,0,6,1,122, -+ 49,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, -+ 97,100,101,114,46,105,115,95,112,97,99,107,97,103,101,46, -+ 60,108,111,99,97,108,115,62,46,60,103,101,110,101,120,112, -+ 114,62,41,4,114,39,0,0,0,114,36,0,0,0,114,79, -+ 0,0,0,218,18,69,88,84,69,78,83,73,79,78,95,83, -+ 85,70,70,73,88,69,83,41,2,114,72,0,0,0,114,159, -+ 0,0,0,114,5,0,0,0,41,1,114,59,1,0,0,114, -+ 6,0,0,0,114,220,0,0,0,190,6,0,0,115,6,0, -+ 0,0,0,2,19,1,18,1,122,30,69,120,116,101,110,115, -+ 105,111,110,70,105,108,101,76,111,97,100,101,114,46,105,115, -+ 95,112,97,99,107,97,103,101,99,2,0,0,0,0,0,0, -+ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, -+ 0,0,100,1,0,83,41,2,122,63,82,101,116,117,114,110, -+ 32,78,111,110,101,32,97,115,32,97,110,32,101,120,116,101, -+ 110,115,105,111,110,32,109,111,100,117,108,101,32,99,97,110, -+ 110,111,116,32,99,114,101,97,116,101,32,97,32,99,111,100, -+ 101,32,111,98,106,101,99,116,46,78,114,5,0,0,0,41, -+ 2,114,72,0,0,0,114,159,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,16,1,0,0,196, -+ 6,0,0,115,2,0,0,0,0,2,122,28,69,120,116,101, -+ 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, -+ 103,101,116,95,99,111,100,101,99,2,0,0,0,0,0,0, -+ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, -+ 0,0,100,1,0,83,41,2,122,53,82,101,116,117,114,110, -+ 32,78,111,110,101,32,97,115,32,101,120,116,101,110,115,105, -+ 111,110,32,109,111,100,117,108,101,115,32,104,97,118,101,32, -+ 110,111,32,115,111,117,114,99,101,32,99,111,100,101,46,78, -+ 114,5,0,0,0,41,2,114,72,0,0,0,114,159,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,17,1,0,0,200,6,0,0,115,2,0,0,0,0,2, -+ 122,30,69,120,116,101,110,115,105,111,110,70,105,108,101,76, -+ 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, -+ 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, -+ 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, -+ 83,41,1,122,58,82,101,116,117,114,110,32,116,104,101,32, -+ 112,97,116,104,32,116,111,32,116,104,101,32,115,111,117,114, -+ 99,101,32,102,105,108,101,32,97,115,32,102,111,117,110,100, -+ 32,98,121,32,116,104,101,32,102,105,110,100,101,114,46,41, -+ 1,114,36,0,0,0,41,2,114,72,0,0,0,114,159,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,239,0,0,0,204,6,0,0,115,2,0,0,0,0, -+ 3,122,32,69,120,116,101,110,115,105,111,110,70,105,108,101, -+ 76,111,97,100,101,114,46,103,101,116,95,102,105,108,101,110, -+ 97,109,101,78,41,13,114,58,0,0,0,114,57,0,0,0, -+ 114,59,0,0,0,114,60,0,0,0,114,73,0,0,0,114, -+ 230,0,0,0,114,51,1,0,0,114,157,0,0,0,114,5, -+ 1,0,0,114,220,0,0,0,114,16,1,0,0,114,17,1, -+ 0,0,114,239,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,114,57,1,0,0, -+ 153,6,0,0,115,18,0,0,0,12,6,6,2,12,4,12, -+ 4,12,3,18,18,12,6,12,4,12,4,114,57,1,0,0, -+ 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, -+ 0,64,0,0,0,115,130,0,0,0,101,0,0,90,1,0, -+ 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, -+ 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, -+ 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, -+ 100,8,0,100,9,0,132,0,0,90,7,0,100,10,0,100, -+ 11,0,132,0,0,90,8,0,100,12,0,100,13,0,132,0, -+ 0,90,9,0,100,14,0,100,15,0,132,0,0,90,10,0, -+ 100,16,0,100,17,0,132,0,0,90,11,0,100,18,0,100, -+ 19,0,132,0,0,90,12,0,100,20,0,83,41,21,218,14, -+ 95,78,97,109,101,115,112,97,99,101,80,97,116,104,97,38, -+ 1,0,0,82,101,112,114,101,115,101,110,116,115,32,97,32, -+ 110,97,109,101,115,112,97,99,101,32,112,97,99,107,97,103, -+ 101,39,115,32,112,97,116,104,46,32,32,73,116,32,117,115, -+ 101,115,32,116,104,101,32,109,111,100,117,108,101,32,110,97, -+ 109,101,10,32,32,32,32,116,111,32,102,105,110,100,32,105, -+ 116,115,32,112,97,114,101,110,116,32,109,111,100,117,108,101, -+ 44,32,97,110,100,32,102,114,111,109,32,116,104,101,114,101, -+ 32,105,116,32,108,111,111,107,115,32,117,112,32,116,104,101, -+ 32,112,97,114,101,110,116,39,115,10,32,32,32,32,95,95, -+ 112,97,116,104,95,95,46,32,32,87,104,101,110,32,116,104, -+ 105,115,32,99,104,97,110,103,101,115,44,32,116,104,101,32, -+ 109,111,100,117,108,101,39,115,32,111,119,110,32,112,97,116, -+ 104,32,105,115,32,114,101,99,111,109,112,117,116,101,100,44, -+ 10,32,32,32,32,117,115,105,110,103,32,112,97,116,104,95, -+ 102,105,110,100,101,114,46,32,32,70,111,114,32,116,111,112, -+ 45,108,101,118,101,108,32,109,111,100,117,108,101,115,44,32, -+ 116,104,101,32,112,97,114,101,110,116,32,109,111,100,117,108, -+ 101,39,115,32,112,97,116,104,10,32,32,32,32,105,115,32, -+ 115,121,115,46,112,97,116,104,46,99,4,0,0,0,0,0, -+ 0,0,4,0,0,0,2,0,0,0,67,0,0,0,115,52, -+ 0,0,0,124,1,0,124,0,0,95,0,0,124,2,0,124, -+ 0,0,95,1,0,116,2,0,124,0,0,106,3,0,131,0, -+ 0,131,1,0,124,0,0,95,4,0,124,3,0,124,0,0, -+ 95,5,0,100,0,0,83,41,1,78,41,6,114,71,0,0, -+ 0,114,254,0,0,0,114,232,0,0,0,218,16,95,103,101, -+ 116,95,112,97,114,101,110,116,95,112,97,116,104,218,17,95, -+ 108,97,115,116,95,112,97,114,101,110,116,95,112,97,116,104, -+ 218,12,95,112,97,116,104,95,102,105,110,100,101,114,41,4, -+ 114,72,0,0,0,114,68,0,0,0,114,36,0,0,0,218, -+ 11,112,97,116,104,95,102,105,110,100,101,114,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,114,73,0,0,0, -+ 217,6,0,0,115,8,0,0,0,0,1,9,1,9,1,21, -+ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, -+ 104,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, -+ 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, -+ 53,0,0,0,124,0,0,106,0,0,106,1,0,100,1,0, -+ 131,1,0,92,3,0,125,1,0,125,2,0,125,3,0,124, -+ 2,0,100,2,0,107,2,0,114,43,0,100,6,0,83,124, -+ 1,0,100,5,0,102,2,0,83,41,7,122,62,82,101,116, -+ 117,114,110,115,32,97,32,116,117,112,108,101,32,111,102,32, -+ 40,112,97,114,101,110,116,45,109,111,100,117,108,101,45,110, -+ 97,109,101,44,32,112,97,114,101,110,116,45,112,97,116,104, -+ 45,97,116,116,114,45,110,97,109,101,41,114,117,0,0,0, -+ 114,31,0,0,0,114,8,0,0,0,114,36,0,0,0,114, -+ 247,0,0,0,41,2,122,3,115,121,115,122,4,112,97,116, -+ 104,41,2,114,71,0,0,0,114,33,0,0,0,41,4,114, -+ 72,0,0,0,114,234,0,0,0,218,3,100,111,116,114,95, ++ 115,101,116,95,100,97,116,97,78,41,7,114,113,0,0,0, ++ 114,112,0,0,0,114,114,0,0,0,114,115,0,0,0,114, ++ 198,0,0,0,114,200,0,0,0,114,199,0,0,0,114,5, + 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,218,23,95,102,105,110,100,95,112,97,114,101,110,116, -+ 95,112,97,116,104,95,110,97,109,101,115,223,6,0,0,115, -+ 8,0,0,0,0,2,27,1,12,2,4,3,122,38,95,78, -+ 97,109,101,115,112,97,99,101,80,97,116,104,46,95,102,105, -+ 110,100,95,112,97,114,101,110,116,95,112,97,116,104,95,110, -+ 97,109,101,115,99,1,0,0,0,0,0,0,0,3,0,0, -+ 0,3,0,0,0,67,0,0,0,115,38,0,0,0,124,0, -+ 0,106,0,0,131,0,0,92,2,0,125,1,0,125,2,0, -+ 116,1,0,116,2,0,106,3,0,124,1,0,25,124,2,0, -+ 131,2,0,83,41,1,78,41,4,114,67,1,0,0,114,63, -+ 0,0,0,114,8,0,0,0,114,74,0,0,0,41,3,114, -+ 72,0,0,0,90,18,112,97,114,101,110,116,95,109,111,100, -+ 117,108,101,95,110,97,109,101,90,14,112,97,116,104,95,97, -+ 116,116,114,95,110,97,109,101,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,62,1,0,0,233,6,0,0, -+ 115,4,0,0,0,0,1,18,1,122,31,95,78,97,109,101, -+ 115,112,97,99,101,80,97,116,104,46,95,103,101,116,95,112, -+ 97,114,101,110,116,95,112,97,116,104,99,1,0,0,0,0, -+ 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115, -+ 127,0,0,0,116,0,0,124,0,0,106,1,0,131,0,0, -+ 131,1,0,125,1,0,124,1,0,124,0,0,106,2,0,107, -+ 3,0,114,120,0,124,0,0,106,3,0,124,0,0,106,4, -+ 0,124,1,0,131,2,0,125,2,0,124,2,0,100,0,0, -+ 107,9,0,114,108,0,124,2,0,106,5,0,100,0,0,107, -+ 8,0,114,108,0,124,2,0,106,6,0,114,108,0,124,2, -+ 0,106,6,0,124,0,0,95,7,0,113,108,0,110,0,0, -+ 124,1,0,124,0,0,95,2,0,110,0,0,124,0,0,106, -+ 7,0,83,41,1,78,41,8,114,232,0,0,0,114,62,1, -+ 0,0,114,63,1,0,0,114,64,1,0,0,114,71,0,0, -+ 0,114,170,0,0,0,114,221,0,0,0,114,254,0,0,0, -+ 41,3,114,72,0,0,0,90,11,112,97,114,101,110,116,95, -+ 112,97,116,104,114,178,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,12,95,114,101,99,97,108, -+ 99,117,108,97,116,101,237,6,0,0,115,16,0,0,0,0, -+ 2,18,1,15,1,21,3,27,1,9,1,18,1,12,1,122, -+ 27,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, -+ 95,114,101,99,97,108,99,117,108,97,116,101,99,1,0,0, -+ 0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,0, -+ 0,115,16,0,0,0,116,0,0,124,0,0,106,1,0,131, -+ 0,0,131,1,0,83,41,1,78,41,2,218,4,105,116,101, -+ 114,114,68,1,0,0,41,1,114,72,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,8,95,95, -+ 105,116,101,114,95,95,250,6,0,0,115,2,0,0,0,0, -+ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, -+ 104,46,95,95,105,116,101,114,95,95,99,1,0,0,0,0, -+ 0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,115, -+ 16,0,0,0,116,0,0,124,0,0,106,1,0,131,0,0, -+ 131,1,0,83,41,1,78,41,2,114,32,0,0,0,114,68, -+ 1,0,0,41,1,114,72,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,7,95,95,108,101,110, -+ 95,95,253,6,0,0,115,2,0,0,0,0,1,122,22,95, -+ 78,97,109,101,115,112,97,99,101,80,97,116,104,46,95,95, -+ 108,101,110,95,95,99,1,0,0,0,0,0,0,0,1,0, -+ 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,100, -+ 1,0,106,0,0,124,0,0,106,1,0,131,1,0,83,41, -+ 2,78,122,20,95,78,97,109,101,115,112,97,99,101,80,97, -+ 116,104,40,123,33,114,125,41,41,2,114,48,0,0,0,114, -+ 254,0,0,0,41,1,114,72,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,102,0,0,0,0, -+ 7,0,0,115,2,0,0,0,0,1,122,23,95,78,97,109, -+ 101,115,112,97,99,101,80,97,116,104,46,95,95,114,101,112, -+ 114,95,95,99,2,0,0,0,0,0,0,0,2,0,0,0, -+ 2,0,0,0,67,0,0,0,115,16,0,0,0,124,1,0, -+ 124,0,0,106,0,0,131,0,0,107,6,0,83,41,1,78, -+ 41,1,114,68,1,0,0,41,2,114,72,0,0,0,218,4, -+ 105,116,101,109,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,12,95,95,99,111,110,116,97,105,110,115,95, -+ 95,3,7,0,0,115,2,0,0,0,0,1,122,27,95,78, -+ 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,99, -+ 111,110,116,97,105,110,115,95,95,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,20, -+ 0,0,0,124,0,0,106,0,0,106,1,0,124,1,0,131, -+ 1,0,1,100,0,0,83,41,1,78,41,2,114,254,0,0, -+ 0,114,224,0,0,0,41,2,114,72,0,0,0,114,72,1, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,224,0,0,0,6,7,0,0,115,2,0,0,0,0, -+ 1,122,21,95,78,97,109,101,115,112,97,99,101,80,97,116, -+ 104,46,97,112,112,101,110,100,78,41,13,114,58,0,0,0, -+ 114,57,0,0,0,114,59,0,0,0,114,60,0,0,0,114, -+ 73,0,0,0,114,67,1,0,0,114,62,1,0,0,114,68, -+ 1,0,0,114,70,1,0,0,114,71,1,0,0,114,102,0, -+ 0,0,114,73,1,0,0,114,224,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,61,1,0,0,210,6,0,0,115,20,0,0,0,12,5, -+ 6,2,12,6,12,10,12,4,12,13,12,3,12,3,12,3, -+ 12,3,114,61,1,0,0,99,0,0,0,0,0,0,0,0, -+ 0,0,0,0,3,0,0,0,64,0,0,0,115,106,0,0, - 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, -- 90,3,0,101,4,0,100,2,0,100,3,0,132,0,0,131, -- 1,0,90,5,0,101,6,0,100,4,0,100,4,0,100,5, -- 0,100,6,0,132,2,0,131,1,0,90,7,0,101,6,0, -- 100,4,0,100,7,0,100,8,0,132,1,0,131,1,0,90, -- 8,0,101,4,0,100,9,0,100,10,0,132,0,0,131,1, -- 0,90,9,0,101,6,0,100,11,0,100,12,0,132,0,0, -- 131,1,0,90,10,0,101,6,0,101,11,0,100,13,0,100, -- 14,0,132,0,0,131,1,0,131,1,0,90,12,0,101,6, -- 0,101,11,0,100,15,0,100,16,0,132,0,0,131,1,0, -- 131,1,0,90,13,0,101,6,0,101,11,0,100,17,0,100, -- 18,0,132,0,0,131,1,0,131,1,0,90,14,0,100,4, -- 0,83,41,19,218,14,70,114,111,122,101,110,73,109,112,111, -- 114,116,101,114,122,142,77,101,116,97,32,112,97,116,104,32, -- 105,109,112,111,114,116,32,102,111,114,32,102,114,111,122,101, -- 110,32,109,111,100,117,108,101,115,46,10,10,32,32,32,32, -- 65,108,108,32,109,101,116,104,111,100,115,32,97,114,101,32, -- 101,105,116,104,101,114,32,99,108,97,115,115,32,111,114,32, -- 115,116,97,116,105,99,32,109,101,116,104,111,100,115,32,116, -- 111,32,97,118,111,105,100,32,116,104,101,32,110,101,101,100, -- 32,116,111,10,32,32,32,32,105,110,115,116,97,110,116,105, -- 97,116,101,32,116,104,101,32,99,108,97,115,115,46,10,10, -- 32,32,32,32,99,1,0,0,0,0,0,0,0,1,0,0, -+ 100,2,0,132,0,0,90,3,0,101,4,0,100,3,0,100, -+ 4,0,132,0,0,131,1,0,90,5,0,100,5,0,100,6, -+ 0,132,0,0,90,6,0,100,7,0,100,8,0,132,0,0, -+ 90,7,0,100,9,0,100,10,0,132,0,0,90,8,0,100, -+ 11,0,100,12,0,132,0,0,90,9,0,100,13,0,100,14, -+ 0,132,0,0,90,10,0,100,15,0,83,41,16,114,252,0, -+ 0,0,99,4,0,0,0,0,0,0,0,4,0,0,0,4, -+ 0,0,0,67,0,0,0,115,25,0,0,0,116,0,0,124, -+ 1,0,124,2,0,124,3,0,131,3,0,124,0,0,95,1, -+ 0,100,0,0,83,41,1,78,41,2,114,61,1,0,0,114, -+ 254,0,0,0,41,4,114,72,0,0,0,114,68,0,0,0, -+ 114,36,0,0,0,114,65,1,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,73,0,0,0,12,7, -+ 0,0,115,2,0,0,0,0,1,122,25,95,78,97,109,101, -+ 115,112,97,99,101,76,111,97,100,101,114,46,95,95,105,110, -+ 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, - 0,2,0,0,0,67,0,0,0,115,16,0,0,0,100,1, -- 0,106,0,0,124,0,0,106,1,0,131,1,0,83,41,2, -+ 0,106,0,0,124,1,0,106,1,0,131,1,0,83,41,2, - 122,115,82,101,116,117,114,110,32,114,101,112,114,32,102,111, - 114,32,116,104,101,32,109,111,100,117,108,101,46,10,10,32, - 32,32,32,32,32,32,32,84,104,101,32,109,101,116,104,111, -@@ -2205,2171 +3230,1147 @@ - 32,32,84,104,101,32,105,109,112,111,114,116,32,109,97,99, - 104,105,110,101,114,121,32,100,111,101,115,32,116,104,101,32, - 106,111,98,32,105,116,115,101,108,102,46,10,10,32,32,32, -- 32,32,32,32,32,122,22,60,109,111,100,117,108,101,32,123, -- 33,114,125,32,40,102,114,111,122,101,110,41,62,41,2,114, -- 47,0,0,0,114,57,0,0,0,41,1,218,1,109,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,205,0, -- 0,0,47,5,0,0,115,2,0,0,0,0,7,122,26,70, -- 114,111,122,101,110,73,109,112,111,114,116,101,114,46,109,111, -- 100,117,108,101,95,114,101,112,114,78,99,4,0,0,0,0, -- 0,0,0,4,0,0,0,5,0,0,0,67,0,0,0,115, -- 42,0,0,0,116,0,0,106,1,0,124,1,0,131,1,0, -- 114,34,0,116,2,0,124,1,0,124,0,0,100,1,0,100, -- 2,0,131,2,1,83,100,0,0,83,100,0,0,83,41,3, -- 78,114,217,0,0,0,90,6,102,114,111,122,101,110,41,3, -- 114,106,0,0,0,114,162,0,0,0,114,173,0,0,0,41, -- 4,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, -- 114,12,1,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,13,1,0,0,56,5,0,0,115,6,0, -- 0,0,0,2,15,1,19,2,122,24,70,114,111,122,101,110, -- 73,109,112,111,114,116,101,114,46,102,105,110,100,95,115,112, -- 101,99,99,3,0,0,0,0,0,0,0,3,0,0,0,2, -- 0,0,0,67,0,0,0,115,23,0,0,0,116,0,0,106, -- 1,0,124,1,0,131,1,0,114,19,0,124,0,0,83,100, -- 1,0,83,41,2,122,93,70,105,110,100,32,97,32,102,114, -- 111,122,101,110,32,109,111,100,117,108,101,46,10,10,32,32, -- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, -- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, -- 32,32,85,115,101,32,102,105,110,100,95,115,112,101,99,40, -- 41,32,105,110,115,116,101,97,100,46,10,10,32,32,32,32, -- 32,32,32,32,78,41,2,114,106,0,0,0,114,162,0,0, -- 0,41,3,114,11,1,0,0,114,158,0,0,0,114,35,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,14,1,0,0,63,5,0,0,115,2,0,0,0,0, -- 7,122,26,70,114,111,122,101,110,73,109,112,111,114,116,101, -- 114,46,102,105,110,100,95,109,111,100,117,108,101,99,1,0, -- 0,0,0,0,0,0,3,0,0,0,4,0,0,0,67,0, -- 0,0,115,95,0,0,0,124,0,0,106,0,0,106,1,0, -- 125,1,0,116,2,0,106,3,0,124,1,0,131,1,0,115, -- 57,0,116,4,0,100,1,0,106,5,0,124,1,0,131,1, -- 0,100,2,0,124,1,0,131,1,1,130,1,0,110,0,0, -- 116,6,0,116,2,0,106,7,0,124,1,0,131,2,0,125, -- 2,0,116,8,0,124,2,0,124,0,0,106,9,0,131,2, -- 0,1,100,0,0,83,41,3,78,122,27,123,33,114,125,32, -- 105,115,32,110,111,116,32,97,32,102,114,111,122,101,110,32, -- 109,111,100,117,108,101,114,67,0,0,0,41,10,114,208,0, -- 0,0,114,67,0,0,0,114,106,0,0,0,114,162,0,0, -- 0,114,153,0,0,0,114,47,0,0,0,114,114,0,0,0, -- 218,17,103,101,116,95,102,114,111,122,101,110,95,111,98,106, -- 101,99,116,114,175,0,0,0,114,63,0,0,0,41,3,114, -- 179,0,0,0,114,67,0,0,0,114,194,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,1,1, -- 0,0,72,5,0,0,115,12,0,0,0,0,2,12,1,15, -- 1,18,1,12,1,18,1,122,26,70,114,111,122,101,110,73, -- 109,112,111,114,116,101,114,46,101,120,101,99,95,109,111,100, -- 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -- 3,0,0,0,67,0,0,0,115,13,0,0,0,116,0,0, -- 124,0,0,124,1,0,131,2,0,83,41,1,122,95,76,111, -- 97,100,32,97,32,102,114,111,122,101,110,32,109,111,100,117, -+ 32,32,32,32,32,122,25,60,109,111,100,117,108,101,32,123, -+ 33,114,125,32,40,110,97,109,101,115,112,97,99,101,41,62, -+ 41,2,114,48,0,0,0,114,58,0,0,0,41,2,114,12, -+ 1,0,0,114,180,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,206,0,0,0,15,7,0,0, -+ 115,2,0,0,0,0,7,122,28,95,78,97,109,101,115,112, -+ 97,99,101,76,111,97,100,101,114,46,109,111,100,117,108,101, -+ 95,114,101,112,114,99,2,0,0,0,0,0,0,0,2,0, -+ 0,0,1,0,0,0,67,0,0,0,115,4,0,0,0,100, -+ 1,0,83,41,2,78,84,114,5,0,0,0,41,2,114,72, -+ 0,0,0,114,159,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,220,0,0,0,24,7,0,0, -+ 115,2,0,0,0,0,1,122,27,95,78,97,109,101,115,112, -+ 97,99,101,76,111,97,100,101,114,46,105,115,95,112,97,99, -+ 107,97,103,101,99,2,0,0,0,0,0,0,0,2,0,0, -+ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, -+ 0,83,41,2,78,114,31,0,0,0,114,5,0,0,0,41, -+ 2,114,72,0,0,0,114,159,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,114,17,1,0,0,27, -+ 7,0,0,115,2,0,0,0,0,1,122,27,95,78,97,109, -+ 101,115,112,97,99,101,76,111,97,100,101,114,46,103,101,116, -+ 95,115,111,117,114,99,101,99,2,0,0,0,0,0,0,0, -+ 2,0,0,0,6,0,0,0,67,0,0,0,115,22,0,0, -+ 0,116,0,0,100,1,0,100,2,0,100,3,0,100,4,0, -+ 100,5,0,131,3,1,83,41,6,78,114,31,0,0,0,122, -+ 8,60,115,116,114,105,110,103,62,114,176,0,0,0,114,43, -+ 1,0,0,84,41,1,114,44,1,0,0,41,2,114,72,0, -+ 0,0,114,159,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,16,1,0,0,30,7,0,0,115, -+ 2,0,0,0,0,1,122,25,95,78,97,109,101,115,112,97, -+ 99,101,76,111,97,100,101,114,46,103,101,116,95,99,111,100, -+ 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, -+ 0,0,67,0,0,0,115,4,0,0,0,100,0,0,83,41, -+ 1,78,114,5,0,0,0,41,2,114,72,0,0,0,114,180, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,2,1,0,0,33,7,0,0,115,2,0,0,0, -+ 0,1,122,28,95,78,97,109,101,115,112,97,99,101,76,111, -+ 97,100,101,114,46,101,120,101,99,95,109,111,100,117,108,101, -+ 99,2,0,0,0,0,0,0,0,2,0,0,0,3,0,0, -+ 0,67,0,0,0,115,29,0,0,0,116,0,0,100,1,0, -+ 124,0,0,106,1,0,131,2,0,1,116,2,0,124,0,0, -+ 124,1,0,131,2,0,83,41,2,122,98,76,111,97,100,32, -+ 97,32,110,97,109,101,115,112,97,99,101,32,109,111,100,117, - 108,101,46,10,10,32,32,32,32,32,32,32,32,84,104,105, - 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, - 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, - 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, -- 97,100,46,10,10,32,32,32,32,32,32,32,32,41,1,114, -- 180,0,0,0,41,2,114,11,1,0,0,114,158,0,0,0, ++ 0,0,114,219,0,0,0,51,3,0,0,115,8,0,0,0, ++ 12,2,6,2,12,5,12,5,114,219,0,0,0,99,0,0, ++ 0,0,0,0,0,0,0,0,0,0,2,0,0,0,64,0, ++ 0,0,115,46,0,0,0,101,0,0,90,1,0,100,0,0, + 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, + 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, +- 0,100,6,0,100,7,0,132,0,0,90,6,0,100,8,0, +- 100,9,0,132,0,0,90,7,0,100,10,0,100,11,0,132, +- 0,0,90,8,0,100,12,0,100,13,0,132,0,0,90,9, +- 0,100,14,0,100,15,0,132,0,0,90,10,0,100,16,0, +- 100,17,0,132,0,0,90,11,0,101,12,0,100,18,0,100, +- 19,0,132,0,0,131,1,0,90,13,0,100,20,0,83,41, +- 21,218,19,69,120,116,101,110,115,105,111,110,70,105,108,101, +- 76,111,97,100,101,114,122,93,76,111,97,100,101,114,32,102, +- 111,114,32,101,120,116,101,110,115,105,111,110,32,109,111,100, +- 117,108,101,115,46,10,10,32,32,32,32,84,104,101,32,99, +- 111,110,115,116,114,117,99,116,111,114,32,105,115,32,100,101, +- 115,105,103,110,101,100,32,116,111,32,119,111,114,107,32,119, +- 105,116,104,32,70,105,108,101,70,105,110,100,101,114,46,10, +- 10,32,32,32,32,99,3,0,0,0,0,0,0,0,3,0, +- 0,0,2,0,0,0,67,0,0,0,115,22,0,0,0,124, +- 1,0,124,0,0,95,0,0,124,2,0,124,0,0,95,1, +- 0,100,0,0,83,41,1,78,41,2,114,106,0,0,0,114, +- 35,0,0,0,41,3,114,108,0,0,0,114,106,0,0,0, +- 114,35,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,185,0,0,0,121,3,0,0,115,4,0, +- 0,0,0,1,9,1,122,28,69,120,116,101,110,115,105,111, +- 110,70,105,108,101,76,111,97,100,101,114,46,95,95,105,110, +- 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,2,0,0,0,67,0,0,0,115,34,0,0,0,124,0, +- 0,106,0,0,124,1,0,106,0,0,107,2,0,111,33,0, +- 124,0,0,106,1,0,124,1,0,106,1,0,107,2,0,83, +- 41,1,78,41,2,114,211,0,0,0,114,118,0,0,0,41, +- 2,114,108,0,0,0,114,212,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,213,0,0,0,125, +- 3,0,0,115,4,0,0,0,0,1,18,1,122,26,69,120, +- 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, +- 114,46,95,95,101,113,95,95,99,1,0,0,0,0,0,0, +- 0,1,0,0,0,3,0,0,0,67,0,0,0,115,26,0, +- 0,0,116,0,0,124,0,0,106,1,0,131,1,0,116,0, +- 0,124,0,0,106,2,0,131,1,0,65,83,41,1,78,41, +- 3,114,214,0,0,0,114,106,0,0,0,114,35,0,0,0, +- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,114,215,0,0,0,129,3,0,0,115, +- 2,0,0,0,0,1,122,28,69,120,116,101,110,115,105,111, +- 110,70,105,108,101,76,111,97,100,101,114,46,95,95,104,97, +- 115,104,95,95,99,2,0,0,0,0,0,0,0,3,0,0, +- 0,4,0,0,0,67,0,0,0,115,47,0,0,0,116,0, +- 0,106,1,0,116,2,0,106,3,0,124,1,0,131,2,0, +- 125,2,0,116,4,0,100,1,0,124,1,0,106,5,0,124, +- 0,0,106,6,0,131,3,0,1,124,2,0,83,41,2,122, +- 38,67,114,101,97,116,101,32,97,110,32,117,110,105,116,105, +- 97,108,105,122,101,100,32,101,120,116,101,110,115,105,111,110, +- 32,109,111,100,117,108,101,122,38,101,120,116,101,110,115,105, +- 111,110,32,109,111,100,117,108,101,32,123,33,114,125,32,108, +- 111,97,100,101,100,32,102,114,111,109,32,123,33,114,125,41, +- 7,114,121,0,0,0,114,188,0,0,0,114,145,0,0,0, +- 90,14,99,114,101,97,116,101,95,100,121,110,97,109,105,99, +- 114,105,0,0,0,114,106,0,0,0,114,35,0,0,0,41, +- 3,114,108,0,0,0,114,164,0,0,0,114,190,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 4,1,0,0,81,5,0,0,115,2,0,0,0,0,7,122, -- 26,70,114,111,122,101,110,73,109,112,111,114,116,101,114,46, -- 108,111,97,100,95,109,111,100,117,108,101,99,2,0,0,0, -- 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, -- 115,13,0,0,0,116,0,0,106,1,0,124,1,0,131,1, -- 0,83,41,1,122,45,82,101,116,117,114,110,32,116,104,101, -- 32,99,111,100,101,32,111,98,106,101,99,116,32,102,111,114, -- 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, -- 108,101,46,41,2,114,106,0,0,0,114,21,1,0,0,41, -- 2,114,11,1,0,0,114,158,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,15,1,0,0,90, -- 5,0,0,115,2,0,0,0,0,4,122,23,70,114,111,122, -- 101,110,73,109,112,111,114,116,101,114,46,103,101,116,95,99, -- 111,100,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, -- 83,41,2,122,54,82,101,116,117,114,110,32,78,111,110,101, -- 32,97,115,32,102,114,111,122,101,110,32,109,111,100,117,108, -- 101,115,32,100,111,32,110,111,116,32,104,97,118,101,32,115, -- 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, -- 0,41,2,114,11,1,0,0,114,158,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,16,1,0, -- 0,96,5,0,0,115,2,0,0,0,0,4,122,25,70,114, -- 111,122,101,110,73,109,112,111,114,116,101,114,46,103,101,116, -- 95,115,111,117,114,99,101,99,2,0,0,0,0,0,0,0, -- 2,0,0,0,2,0,0,0,67,0,0,0,115,13,0,0, -- 0,116,0,0,106,1,0,124,1,0,131,1,0,83,41,1, -- 122,46,82,101,116,117,114,110,32,84,114,117,101,32,105,102, -- 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, -- 108,101,32,105,115,32,97,32,112,97,99,107,97,103,101,46, -- 41,2,114,106,0,0,0,90,17,105,115,95,102,114,111,122, -- 101,110,95,112,97,99,107,97,103,101,41,2,114,11,1,0, -- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,219,0,0,0,102,5,0,0,115,2, -- 0,0,0,0,4,122,25,70,114,111,122,101,110,73,109,112, -- 111,114,116,101,114,46,105,115,95,112,97,99,107,97,103,101, -- 41,15,114,57,0,0,0,114,56,0,0,0,114,58,0,0, -- 0,114,59,0,0,0,114,17,1,0,0,114,205,0,0,0, -- 114,18,1,0,0,114,13,1,0,0,114,14,1,0,0,114, -- 1,1,0,0,114,4,1,0,0,114,164,0,0,0,114,15, -- 1,0,0,114,16,1,0,0,114,219,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,19,1,0,0,38,5,0,0,115,28,0,0,0,12, -- 7,6,2,18,9,3,1,21,6,3,1,18,8,18,9,18, -- 9,3,1,21,5,3,1,21,5,3,1,114,19,1,0,0, -+ 97,100,46,10,10,32,32,32,32,32,32,32,32,122,38,110, -+ 97,109,101,115,112,97,99,101,32,109,111,100,117,108,101,32, -+ 108,111,97,100,101,100,32,119,105,116,104,32,112,97,116,104, -+ 32,123,33,114,125,41,3,114,153,0,0,0,114,254,0,0, -+ 0,114,181,0,0,0,41,2,114,72,0,0,0,114,159,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,5,1,0,0,36,7,0,0,115,4,0,0,0,0, -+ 7,16,1,122,28,95,78,97,109,101,115,112,97,99,101,76, -+ 111,97,100,101,114,46,108,111,97,100,95,109,111,100,117,108, -+ 101,78,41,11,114,58,0,0,0,114,57,0,0,0,114,59, -+ 0,0,0,114,73,0,0,0,114,19,1,0,0,114,206,0, -+ 0,0,114,220,0,0,0,114,17,1,0,0,114,16,1,0, -+ 0,114,2,1,0,0,114,5,1,0,0,114,5,0,0,0, +- 186,0,0,0,132,3,0,0,115,10,0,0,0,0,2,6, +- 1,15,1,6,1,16,1,122,33,69,120,116,101,110,115,105, +- 111,110,70,105,108,101,76,111,97,100,101,114,46,99,114,101, +- 97,116,101,95,109,111,100,117,108,101,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,4,0,0,0,67,0,0,0,115, +- 45,0,0,0,116,0,0,106,1,0,116,2,0,106,3,0, +- 124,1,0,131,2,0,1,116,4,0,100,1,0,124,0,0, +- 106,5,0,124,0,0,106,6,0,131,3,0,1,100,2,0, +- 83,41,3,122,30,73,110,105,116,105,97,108,105,122,101,32, +- 97,110,32,101,120,116,101,110,115,105,111,110,32,109,111,100, +- 117,108,101,122,40,101,120,116,101,110,115,105,111,110,32,109, +- 111,100,117,108,101,32,123,33,114,125,32,101,120,101,99,117, +- 116,101,100,32,102,114,111,109,32,123,33,114,125,78,41,7, +- 114,121,0,0,0,114,188,0,0,0,114,145,0,0,0,90, +- 12,101,120,101,99,95,100,121,110,97,109,105,99,114,105,0, +- 0,0,114,106,0,0,0,114,35,0,0,0,41,2,114,108, +- 0,0,0,114,190,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,191,0,0,0,140,3,0,0, +- 115,6,0,0,0,0,2,19,1,6,1,122,31,69,120,116, ++ 0,100,6,0,83,41,7,218,20,83,111,117,114,99,101,108, ++ 101,115,115,70,105,108,101,76,111,97,100,101,114,122,45,76, ++ 111,97,100,101,114,32,119,104,105,99,104,32,104,97,110,100, ++ 108,101,115,32,115,111,117,114,99,101,108,101,115,115,32,102, ++ 105,108,101,32,105,109,112,111,114,116,115,46,99,2,0,0, ++ 0,0,0,0,0,5,0,0,0,6,0,0,0,67,0,0, ++ 0,115,76,0,0,0,124,0,0,106,0,0,124,1,0,131, ++ 1,0,125,2,0,124,0,0,106,1,0,124,2,0,131,1, ++ 0,125,3,0,116,2,0,124,3,0,100,1,0,124,1,0, ++ 100,2,0,124,2,0,131,1,2,125,4,0,116,3,0,124, ++ 4,0,100,1,0,124,1,0,100,3,0,124,2,0,131,1, ++ 2,83,41,4,78,114,107,0,0,0,114,36,0,0,0,114, ++ 90,0,0,0,41,4,114,158,0,0,0,114,201,0,0,0, ++ 114,142,0,0,0,114,148,0,0,0,41,5,114,109,0,0, ++ 0,114,127,0,0,0,114,36,0,0,0,114,54,0,0,0, ++ 114,210,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,188,0,0,0,98,3,0,0,115,8,0, ++ 0,0,0,1,15,1,15,1,24,1,122,29,83,111,117,114, ++ 99,101,108,101,115,115,70,105,108,101,76,111,97,100,101,114, ++ 46,103,101,116,95,99,111,100,101,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, ++ 0,0,0,100,1,0,83,41,2,122,39,82,101,116,117,114, ++ 110,32,78,111,110,101,32,97,115,32,116,104,101,114,101,32, ++ 105,115,32,110,111,32,115,111,117,114,99,101,32,99,111,100, ++ 101,46,78,114,5,0,0,0,41,2,114,109,0,0,0,114, ++ 127,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,203,0,0,0,104,3,0,0,115,2,0,0, ++ 0,0,2,122,31,83,111,117,114,99,101,108,101,115,115,70, ++ 105,108,101,76,111,97,100,101,114,46,103,101,116,95,115,111, ++ 117,114,99,101,78,41,6,114,113,0,0,0,114,112,0,0, ++ 0,114,114,0,0,0,114,115,0,0,0,114,188,0,0,0, ++ 114,203,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,224,0,0,0,94,3, ++ 0,0,115,6,0,0,0,12,2,6,2,12,6,114,224,0, ++ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3, ++ 0,0,0,64,0,0,0,115,136,0,0,0,101,0,0,90, ++ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, ++ 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, ++ 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, ++ 6,0,100,8,0,100,9,0,132,0,0,90,7,0,100,10, ++ 0,100,11,0,132,0,0,90,8,0,100,12,0,100,13,0, ++ 132,0,0,90,9,0,100,14,0,100,15,0,132,0,0,90, ++ 10,0,100,16,0,100,17,0,132,0,0,90,11,0,101,12, ++ 0,100,18,0,100,19,0,132,0,0,131,1,0,90,13,0, ++ 100,20,0,83,41,21,218,19,69,120,116,101,110,115,105,111, ++ 110,70,105,108,101,76,111,97,100,101,114,122,93,76,111,97, ++ 100,101,114,32,102,111,114,32,101,120,116,101,110,115,105,111, ++ 110,32,109,111,100,117,108,101,115,46,10,10,32,32,32,32, ++ 84,104,101,32,99,111,110,115,116,114,117,99,116,111,114,32, ++ 105,115,32,100,101,115,105,103,110,101,100,32,116,111,32,119, ++ 111,114,107,32,119,105,116,104,32,70,105,108,101,70,105,110, ++ 100,101,114,46,10,10,32,32,32,32,99,3,0,0,0,0, ++ 0,0,0,3,0,0,0,2,0,0,0,67,0,0,0,115, ++ 22,0,0,0,124,1,0,124,0,0,95,0,0,124,2,0, ++ 124,0,0,95,1,0,100,0,0,83,41,1,78,41,2,114, ++ 107,0,0,0,114,36,0,0,0,41,3,114,109,0,0,0, ++ 114,107,0,0,0,114,36,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,186,0,0,0,121,3, ++ 0,0,115,4,0,0,0,0,1,9,1,122,28,69,120,116, + 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, +- 46,101,120,101,99,95,109,111,100,117,108,101,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,4,0,0,0,3,0,0, +- 0,115,48,0,0,0,116,0,0,124,0,0,106,1,0,131, +- 1,0,100,1,0,25,137,0,0,116,2,0,135,0,0,102, +- 1,0,100,2,0,100,3,0,134,0,0,116,3,0,68,131, +- 1,0,131,1,0,83,41,4,122,49,82,101,116,117,114,110, +- 32,84,114,117,101,32,105,102,32,116,104,101,32,101,120,116, +- 101,110,115,105,111,110,32,109,111,100,117,108,101,32,105,115, +- 32,97,32,112,97,99,107,97,103,101,46,114,29,0,0,0, +- 99,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0, +- 0,51,0,0,0,115,31,0,0,0,124,0,0,93,21,0, +- 125,1,0,136,0,0,100,0,0,124,1,0,23,107,2,0, +- 86,1,113,3,0,100,1,0,83,41,2,114,185,0,0,0, +- 78,114,4,0,0,0,41,2,114,22,0,0,0,218,6,115, +- 117,102,102,105,120,41,1,218,9,102,105,108,101,95,110,97, +- 109,101,114,4,0,0,0,114,5,0,0,0,250,9,60,103, +- 101,110,101,120,112,114,62,149,3,0,0,115,2,0,0,0, +- 6,1,122,49,69,120,116,101,110,115,105,111,110,70,105,108, +- 101,76,111,97,100,101,114,46,105,115,95,112,97,99,107,97, +- 103,101,46,60,108,111,99,97,108,115,62,46,60,103,101,110, +- 101,120,112,114,62,41,4,114,38,0,0,0,114,35,0,0, +- 0,218,3,97,110,121,218,18,69,88,84,69,78,83,73,79, +- 78,95,83,85,70,70,73,88,69,83,41,2,114,108,0,0, +- 0,114,126,0,0,0,114,4,0,0,0,41,1,114,226,0, +- 0,0,114,5,0,0,0,114,159,0,0,0,146,3,0,0, +- 115,6,0,0,0,0,2,19,1,18,1,122,30,69,120,116, ++ 46,95,95,105,110,105,116,95,95,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,34, ++ 0,0,0,124,0,0,106,0,0,124,1,0,106,0,0,107, ++ 2,0,111,33,0,124,0,0,106,1,0,124,1,0,106,1, ++ 0,107,2,0,83,41,1,78,41,2,114,212,0,0,0,114, ++ 119,0,0,0,41,2,114,109,0,0,0,114,213,0,0,0, + 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 252,0,0,0,11,7,0,0,115,14,0,0,0,12,1,12, -+ 3,18,9,12,3,12,3,12,3,12,3,114,252,0,0,0, - 99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0, -- 0,64,0,0,0,115,121,0,0,0,101,0,0,90,1,0, -- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,90, -- 4,0,100,3,0,90,5,0,100,4,0,90,6,0,101,7, -- 0,100,5,0,100,6,0,132,0,0,131,1,0,90,8,0, -- 101,7,0,100,7,0,100,8,0,132,0,0,131,1,0,90, -- 9,0,101,7,0,100,9,0,100,9,0,100,10,0,100,11, -- 0,132,2,0,131,1,0,90,10,0,101,7,0,100,9,0, -- 100,12,0,100,13,0,132,1,0,131,1,0,90,11,0,100, -- 9,0,83,41,14,218,21,87,105,110,100,111,119,115,82,101, -- 103,105,115,116,114,121,70,105,110,100,101,114,122,62,77,101, -- 116,97,32,112,97,116,104,32,102,105,110,100,101,114,32,102, -- 111,114,32,109,111,100,117,108,101,115,32,100,101,99,108,97, -- 114,101,100,32,105,110,32,116,104,101,32,87,105,110,100,111, -- 119,115,32,114,101,103,105,115,116,114,121,46,122,59,83,111, -- 102,116,119,97,114,101,92,80,121,116,104,111,110,92,80,121, -- 116,104,111,110,67,111,114,101,92,123,115,121,115,95,118,101, -- 114,115,105,111,110,125,92,77,111,100,117,108,101,115,92,123, -- 102,117,108,108,110,97,109,101,125,122,65,83,111,102,116,119, -- 97,114,101,92,80,121,116,104,111,110,92,80,121,116,104,111, -- 110,67,111,114,101,92,123,115,121,115,95,118,101,114,115,105, -- 111,110,125,92,77,111,100,117,108,101,115,92,123,102,117,108, -- 108,110,97,109,101,125,92,68,101,98,117,103,70,99,2,0, -- 0,0,0,0,0,0,2,0,0,0,11,0,0,0,67,0, -- 0,0,115,67,0,0,0,121,23,0,116,0,0,106,1,0, -- 116,0,0,106,2,0,124,1,0,131,2,0,83,87,110,37, -- 0,4,116,3,0,107,10,0,114,62,0,1,1,1,116,0, -- 0,106,1,0,116,0,0,106,4,0,124,1,0,131,2,0, -- 83,89,110,1,0,88,100,0,0,83,41,1,78,41,5,218, -- 7,95,119,105,110,114,101,103,90,7,79,112,101,110,75,101, -- 121,90,17,72,75,69,89,95,67,85,82,82,69,78,84,95, -- 85,83,69,82,114,40,0,0,0,90,18,72,75,69,89,95, -- 76,79,67,65,76,95,77,65,67,72,73,78,69,41,2,114, -- 11,1,0,0,218,3,107,101,121,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,14,95,111,112,101,110,95, -- 114,101,103,105,115,116,114,121,121,5,0,0,115,8,0,0, -- 0,0,2,3,1,23,1,13,1,122,36,87,105,110,100,111, -- 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, -- 46,95,111,112,101,110,95,114,101,103,105,115,116,114,121,99, -- 2,0,0,0,0,0,0,0,6,0,0,0,16,0,0,0, -- 67,0,0,0,115,142,0,0,0,124,0,0,106,0,0,114, -- 21,0,124,0,0,106,1,0,125,2,0,110,9,0,124,0, -- 0,106,2,0,125,2,0,124,2,0,106,3,0,100,1,0, -- 124,1,0,100,2,0,116,4,0,106,5,0,100,0,0,100, -- 3,0,133,2,0,25,131,0,2,125,3,0,121,46,0,124, -- 0,0,106,6,0,124,3,0,131,1,0,143,25,0,125,4, -- 0,116,7,0,106,8,0,124,4,0,100,4,0,131,2,0, -- 125,5,0,87,100,0,0,81,88,87,110,22,0,4,116,9, -- 0,107,10,0,114,137,0,1,1,1,100,0,0,83,89,110, -- 1,0,88,124,5,0,83,41,5,78,114,158,0,0,0,90, -- 11,115,121,115,95,118,101,114,115,105,111,110,114,136,0,0, -- 0,114,30,0,0,0,41,10,218,11,68,69,66,85,71,95, -- 66,85,73,76,68,218,18,82,69,71,73,83,84,82,89,95, -- 75,69,89,95,68,69,66,85,71,218,12,82,69,71,73,83, -- 84,82,89,95,75,69,89,114,47,0,0,0,114,7,0,0, -- 0,218,7,118,101,114,115,105,111,110,114,25,1,0,0,114, -- 23,1,0,0,90,10,81,117,101,114,121,86,97,108,117,101, -- 114,40,0,0,0,41,6,114,11,1,0,0,114,158,0,0, -- 0,90,12,114,101,103,105,115,116,114,121,95,107,101,121,114, -- 24,1,0,0,90,4,104,107,101,121,218,8,102,105,108,101, -- 112,97,116,104,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,16,95,115,101,97,114,99,104,95,114,101,103, -- 105,115,116,114,121,128,5,0,0,115,22,0,0,0,0,2, -- 9,1,12,2,9,1,15,1,22,1,3,1,18,1,28,1, -- 13,1,9,1,122,38,87,105,110,100,111,119,115,82,101,103, -- 105,115,116,114,121,70,105,110,100,101,114,46,95,115,101,97, -- 114,99,104,95,114,101,103,105,115,116,114,121,78,99,4,0, -- 0,0,0,0,0,0,8,0,0,0,14,0,0,0,67,0, -- 0,0,115,155,0,0,0,124,0,0,106,0,0,124,1,0, -- 131,1,0,125,4,0,124,4,0,100,0,0,107,8,0,114, -- 31,0,100,0,0,83,121,14,0,116,1,0,124,4,0,131, -- 1,0,1,87,110,22,0,4,116,2,0,107,10,0,114,69, -- 0,1,1,1,100,0,0,83,89,110,1,0,88,120,78,0, -- 116,3,0,131,0,0,68,93,67,0,92,2,0,125,5,0, -- 125,6,0,124,4,0,106,4,0,116,5,0,124,6,0,131, -- 1,0,131,1,0,114,80,0,116,6,0,124,1,0,124,5, -- 0,124,1,0,124,4,0,131,2,0,100,1,0,124,4,0, -- 131,2,1,125,7,0,124,7,0,83,113,80,0,87,100,0, -- 0,83,41,2,78,114,217,0,0,0,41,7,114,31,1,0, -- 0,114,39,0,0,0,114,40,0,0,0,114,240,0,0,0, -- 114,230,0,0,0,114,231,0,0,0,114,173,0,0,0,41, -- 8,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, -- 114,12,1,0,0,114,30,1,0,0,114,169,0,0,0,114, -- 127,0,0,0,114,177,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,13,1,0,0,143,5,0, -- 0,115,24,0,0,0,0,2,15,1,12,1,4,1,3,1, -- 14,1,13,1,9,1,22,1,21,1,21,1,9,1,122,31, -- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, -- 105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,99, -- 3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, -- 67,0,0,0,115,45,0,0,0,124,0,0,106,0,0,124, -- 1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,1, -- 0,107,9,0,114,37,0,124,3,0,106,1,0,83,100,1, -- 0,83,100,1,0,83,41,2,122,108,70,105,110,100,32,109, -- 111,100,117,108,101,32,110,97,109,101,100,32,105,110,32,116, -- 104,101,32,114,101,103,105,115,116,114,121,46,10,10,32,32, -- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, -- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, -- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, -- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, -- 32,32,32,32,32,32,78,41,2,114,13,1,0,0,114,169, -- 0,0,0,41,4,114,11,1,0,0,114,158,0,0,0,114, -- 35,0,0,0,114,177,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,14,1,0,0,158,5,0, -- 0,115,8,0,0,0,0,7,18,1,12,1,7,2,122,33, -- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, -- 105,110,100,101,114,46,102,105,110,100,95,109,111,100,117,108, -- 101,41,12,114,57,0,0,0,114,56,0,0,0,114,58,0, -- 0,0,114,59,0,0,0,114,28,1,0,0,114,27,1,0, -- 0,114,26,1,0,0,114,18,1,0,0,114,25,1,0,0, -- 114,31,1,0,0,114,13,1,0,0,114,14,1,0,0,114, ++ 214,0,0,0,125,3,0,0,115,4,0,0,0,0,1,18, ++ 1,122,26,69,120,116,101,110,115,105,111,110,70,105,108,101, ++ 76,111,97,100,101,114,46,95,95,101,113,95,95,99,1,0, ++ 0,0,0,0,0,0,1,0,0,0,3,0,0,0,67,0, ++ 0,0,115,26,0,0,0,116,0,0,124,0,0,106,1,0, ++ 131,1,0,116,0,0,124,0,0,106,2,0,131,1,0,65, ++ 83,41,1,78,41,3,114,215,0,0,0,114,107,0,0,0, ++ 114,36,0,0,0,41,1,114,109,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,114,216,0,0,0, ++ 129,3,0,0,115,2,0,0,0,0,1,122,28,69,120,116, + 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, +- 46,105,115,95,112,97,99,107,97,103,101,99,2,0,0,0, +- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, +- 115,4,0,0,0,100,1,0,83,41,2,122,63,82,101,116, +- 117,114,110,32,78,111,110,101,32,97,115,32,97,110,32,101, +- 120,116,101,110,115,105,111,110,32,109,111,100,117,108,101,32, +- 99,97,110,110,111,116,32,99,114,101,97,116,101,32,97,32, +- 99,111,100,101,32,111,98,106,101,99,116,46,78,114,4,0, +- 0,0,41,2,114,108,0,0,0,114,126,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,187,0, +- 0,0,152,3,0,0,115,2,0,0,0,0,2,122,28,69, +- 120,116,101,110,115,105,111,110,70,105,108,101,76,111,97,100, +- 101,114,46,103,101,116,95,99,111,100,101,99,2,0,0,0, +- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, +- 115,4,0,0,0,100,1,0,83,41,2,122,53,82,101,116, +- 117,114,110,32,78,111,110,101,32,97,115,32,101,120,116,101, +- 110,115,105,111,110,32,109,111,100,117,108,101,115,32,104,97, +- 118,101,32,110,111,32,115,111,117,114,99,101,32,99,111,100, +- 101,46,78,114,4,0,0,0,41,2,114,108,0,0,0,114, +- 126,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,202,0,0,0,156,3,0,0,115,2,0,0, +- 0,0,2,122,30,69,120,116,101,110,115,105,111,110,70,105, +- 108,101,76,111,97,100,101,114,46,103,101,116,95,115,111,117, +- 114,99,101,99,2,0,0,0,0,0,0,0,2,0,0,0, +- 1,0,0,0,67,0,0,0,115,7,0,0,0,124,0,0, +- 106,0,0,83,41,1,122,58,82,101,116,117,114,110,32,116, +- 104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,115, +- 111,117,114,99,101,32,102,105,108,101,32,97,115,32,102,111, +- 117,110,100,32,98,121,32,116,104,101,32,102,105,110,100,101, +- 114,46,41,1,114,35,0,0,0,41,2,114,108,0,0,0, +- 114,126,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,157,0,0,0,160,3,0,0,115,2,0, +- 0,0,0,3,122,32,69,120,116,101,110,115,105,111,110,70, +- 105,108,101,76,111,97,100,101,114,46,103,101,116,95,102,105, +- 108,101,110,97,109,101,78,41,14,114,112,0,0,0,114,111, +- 0,0,0,114,113,0,0,0,114,114,0,0,0,114,185,0, +- 0,0,114,213,0,0,0,114,215,0,0,0,114,186,0,0, +- 0,114,191,0,0,0,114,159,0,0,0,114,187,0,0,0, +- 114,202,0,0,0,114,123,0,0,0,114,157,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,22,1,0,0,109,5,0,0,115,20,0,0, -- 0,12,2,6,3,6,3,6,2,6,2,18,7,18,15,3, -- 1,21,14,3,1,114,22,1,0,0,99,0,0,0,0,0, +- 0,0,0,114,224,0,0,0,113,3,0,0,115,20,0,0, +- 0,12,6,6,2,12,4,12,4,12,3,12,8,12,6,12, +- 6,12,4,12,4,114,224,0,0,0,99,0,0,0,0,0, - 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, -- 52,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, +- 130,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, - 100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,90, -- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,101,6, -- 0,90,7,0,100,6,0,83,41,7,218,13,95,76,111,97, -- 100,101,114,66,97,115,105,99,115,122,83,66,97,115,101,32, -- 99,108,97,115,115,32,111,102,32,99,111,109,109,111,110,32, -- 99,111,100,101,32,110,101,101,100,101,100,32,98,121,32,98, -- 111,116,104,32,83,111,117,114,99,101,76,111,97,100,101,114, -- 32,97,110,100,10,32,32,32,32,83,111,117,114,99,101,108, -- 101,115,115,70,105,108,101,76,111,97,100,101,114,46,99,2, -- 0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,67, -- 0,0,0,115,88,0,0,0,116,0,0,124,0,0,106,1, -- 0,124,1,0,131,1,0,131,1,0,100,1,0,25,125,2, -- 0,124,2,0,106,2,0,100,2,0,100,1,0,131,2,0, -- 100,3,0,25,125,3,0,124,1,0,106,3,0,100,2,0, -- 131,1,0,100,4,0,25,125,4,0,124,3,0,100,5,0, -- 107,2,0,111,87,0,124,4,0,100,5,0,107,3,0,83, -- 41,6,122,141,67,111,110,99,114,101,116,101,32,105,109,112, -- 108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,73, -- 110,115,112,101,99,116,76,111,97,100,101,114,46,105,115,95, -- 112,97,99,107,97,103,101,32,98,121,32,99,104,101,99,107, -- 105,110,103,32,105,102,10,32,32,32,32,32,32,32,32,116, -- 104,101,32,112,97,116,104,32,114,101,116,117,114,110,101,100, -- 32,98,121,32,103,101,116,95,102,105,108,101,110,97,109,101, -- 32,104,97,115,32,97,32,102,105,108,101,110,97,109,101,32, -- 111,102,32,39,95,95,105,110,105,116,95,95,46,112,121,39, -- 46,114,29,0,0,0,114,116,0,0,0,114,84,0,0,0, -- 114,115,0,0,0,114,72,0,0,0,41,4,114,38,0,0, -- 0,114,238,0,0,0,114,34,0,0,0,114,32,0,0,0, -- 41,5,114,71,0,0,0,114,158,0,0,0,114,131,0,0, -- 0,90,13,102,105,108,101,110,97,109,101,95,98,97,115,101, -- 90,9,116,97,105,108,95,110,97,109,101,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,219,0,0,0,177, -- 5,0,0,115,8,0,0,0,0,3,25,1,22,1,19,1, -- 122,24,95,76,111,97,100,101,114,66,97,115,105,99,115,46, -- 105,115,95,112,97,99,107,97,103,101,99,2,0,0,0,0, -- 0,0,0,3,0,0,0,4,0,0,0,67,0,0,0,115, -- 80,0,0,0,124,0,0,106,0,0,124,1,0,106,1,0, -- 131,1,0,125,2,0,124,2,0,100,1,0,107,8,0,114, -- 57,0,116,2,0,100,2,0,106,3,0,124,1,0,106,1, -- 0,131,1,0,131,1,0,130,1,0,110,0,0,116,4,0, -- 116,5,0,124,2,0,124,1,0,106,6,0,131,3,0,1, -- 100,1,0,83,41,3,122,19,69,120,101,99,117,116,101,32, -- 116,104,101,32,109,111,100,117,108,101,46,78,122,52,99,97, -- 110,110,111,116,32,108,111,97,100,32,109,111,100,117,108,101, -- 32,123,33,114,125,32,119,104,101,110,32,103,101,116,95,99, -- 111,100,101,40,41,32,114,101,116,117,114,110,115,32,78,111, -- 110,101,41,7,114,15,1,0,0,114,57,0,0,0,114,153, -- 0,0,0,114,47,0,0,0,114,114,0,0,0,114,175,0, -- 0,0,114,63,0,0,0,41,3,114,71,0,0,0,114,179, -- 0,0,0,114,194,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,1,1,0,0,185,5,0,0, -- 115,10,0,0,0,0,2,18,1,12,1,3,1,24,1,122, -- 25,95,76,111,97,100,101,114,66,97,115,105,99,115,46,101, -- 120,101,99,95,109,111,100,117,108,101,78,41,8,114,57,0, -- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, -- 0,114,219,0,0,0,114,1,1,0,0,114,180,0,0,0, -- 114,4,1,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,32,1,0,0,172,5, -- 0,0,115,8,0,0,0,12,3,6,2,12,8,12,8,114, -- 32,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0, -- 0,4,0,0,0,64,0,0,0,115,106,0,0,0,101,0, -- 0,90,1,0,100,0,0,90,2,0,100,1,0,100,2,0, -- 132,0,0,90,3,0,100,3,0,100,4,0,132,0,0,90, -- 4,0,100,5,0,100,6,0,132,0,0,90,5,0,100,7, -- 0,100,8,0,132,0,0,90,6,0,100,9,0,100,10,0, -- 132,0,0,90,7,0,100,11,0,100,18,0,100,13,0,100, -- 14,0,132,0,1,90,8,0,100,15,0,100,16,0,132,0, -- 0,90,9,0,100,17,0,83,41,19,218,12,83,111,117,114, -- 99,101,76,111,97,100,101,114,99,2,0,0,0,0,0,0, -- 0,2,0,0,0,1,0,0,0,67,0,0,0,115,10,0, -- 0,0,116,0,0,130,1,0,100,1,0,83,41,2,122,178, -- 79,112,116,105,111,110,97,108,32,109,101,116,104,111,100,32, -- 116,104,97,116,32,114,101,116,117,114,110,115,32,116,104,101, -- 32,109,111,100,105,102,105,99,97,116,105,111,110,32,116,105, -- 109,101,32,40,97,110,32,105,110,116,41,32,102,111,114,32, -- 116,104,101,10,32,32,32,32,32,32,32,32,115,112,101,99, -- 105,102,105,101,100,32,112,97,116,104,44,32,119,104,101,114, -- 101,32,112,97,116,104,32,105,115,32,97,32,115,116,114,46, -- 10,10,32,32,32,32,32,32,32,32,82,97,105,115,101,115, -- 32,73,79,69,114,114,111,114,32,119,104,101,110,32,116,104, -- 101,32,112,97,116,104,32,99,97,110,110,111,116,32,98,101, -- 32,104,97,110,100,108,101,100,46,10,32,32,32,32,32,32, -- 32,32,78,41,1,218,7,73,79,69,114,114,111,114,41,2, -- 114,71,0,0,0,114,35,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,10,112,97,116,104,95, -- 109,116,105,109,101,198,5,0,0,115,2,0,0,0,0,6, -- 122,23,83,111,117,114,99,101,76,111,97,100,101,114,46,112, -- 97,116,104,95,109,116,105,109,101,99,2,0,0,0,0,0, -- 0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,20, -- 0,0,0,105,1,0,124,0,0,106,0,0,124,1,0,131, -- 1,0,100,1,0,54,83,41,2,97,170,1,0,0,79,112, -- 116,105,111,110,97,108,32,109,101,116,104,111,100,32,114,101, -- 116,117,114,110,105,110,103,32,97,32,109,101,116,97,100,97, -- 116,97,32,100,105,99,116,32,102,111,114,32,116,104,101,32, -- 115,112,101,99,105,102,105,101,100,32,112,97,116,104,10,32, -- 32,32,32,32,32,32,32,116,111,32,98,121,32,116,104,101, -- 32,112,97,116,104,32,40,115,116,114,41,46,10,32,32,32, -- 32,32,32,32,32,80,111,115,115,105,98,108,101,32,107,101, -- 121,115,58,10,32,32,32,32,32,32,32,32,45,32,39,109, -- 116,105,109,101,39,32,40,109,97,110,100,97,116,111,114,121, -- 41,32,105,115,32,116,104,101,32,110,117,109,101,114,105,99, -- 32,116,105,109,101,115,116,97,109,112,32,111,102,32,108,97, -- 115,116,32,115,111,117,114,99,101,10,32,32,32,32,32,32, -- 32,32,32,32,99,111,100,101,32,109,111,100,105,102,105,99, -- 97,116,105,111,110,59,10,32,32,32,32,32,32,32,32,45, -- 32,39,115,105,122,101,39,32,40,111,112,116,105,111,110,97, -- 108,41,32,105,115,32,116,104,101,32,115,105,122,101,32,105, -- 110,32,98,121,116,101,115,32,111,102,32,116,104,101,32,115, -- 111,117,114,99,101,32,99,111,100,101,46,10,10,32,32,32, -- 32,32,32,32,32,73,109,112,108,101,109,101,110,116,105,110, -- 103,32,116,104,105,115,32,109,101,116,104,111,100,32,97,108, -- 108,111,119,115,32,116,104,101,32,108,111,97,100,101,114,32, -- 116,111,32,114,101,97,100,32,98,121,116,101,99,111,100,101, -- 32,102,105,108,101,115,46,10,32,32,32,32,32,32,32,32, -- 82,97,105,115,101,115,32,73,79,69,114,114,111,114,32,119, -- 104,101,110,32,116,104,101,32,112,97,116,104,32,99,97,110, -- 110,111,116,32,98,101,32,104,97,110,100,108,101,100,46,10, -- 32,32,32,32,32,32,32,32,114,183,0,0,0,41,1,114, -- 35,1,0,0,41,2,114,71,0,0,0,114,35,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, -- 10,112,97,116,104,95,115,116,97,116,115,206,5,0,0,115, -- 2,0,0,0,0,11,122,23,83,111,117,114,99,101,76,111, -- 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, -- 4,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, -- 67,0,0,0,115,16,0,0,0,124,0,0,106,0,0,124, -- 2,0,124,3,0,131,2,0,83,41,1,122,228,79,112,116, -- 105,111,110,97,108,32,109,101,116,104,111,100,32,119,104,105, -- 99,104,32,119,114,105,116,101,115,32,100,97,116,97,32,40, -- 98,121,116,101,115,41,32,116,111,32,97,32,102,105,108,101, -- 32,112,97,116,104,32,40,97,32,115,116,114,41,46,10,10, -- 32,32,32,32,32,32,32,32,73,109,112,108,101,109,101,110, -- 116,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100, -- 32,97,108,108,111,119,115,32,102,111,114,32,116,104,101,32, -- 119,114,105,116,105,110,103,32,111,102,32,98,121,116,101,99, -- 111,100,101,32,102,105,108,101,115,46,10,10,32,32,32,32, -- 32,32,32,32,84,104,101,32,115,111,117,114,99,101,32,112, -- 97,116,104,32,105,115,32,110,101,101,100,101,100,32,105,110, -- 32,111,114,100,101,114,32,116,111,32,99,111,114,114,101,99, -- 116,108,121,32,116,114,97,110,115,102,101,114,32,112,101,114, -- 109,105,115,115,105,111,110,115,10,32,32,32,32,32,32,32, -- 32,41,1,218,8,115,101,116,95,100,97,116,97,41,4,114, -- 71,0,0,0,114,141,0,0,0,90,10,99,97,99,104,101, -- 95,112,97,116,104,114,53,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,15,95,99,97,99,104, -- 101,95,98,121,116,101,99,111,100,101,219,5,0,0,115,2, -- 0,0,0,0,8,122,28,83,111,117,114,99,101,76,111,97, -- 100,101,114,46,95,99,97,99,104,101,95,98,121,116,101,99, -- 111,100,101,99,3,0,0,0,0,0,0,0,3,0,0,0, -- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, -- 83,41,2,122,150,79,112,116,105,111,110,97,108,32,109,101, -- 116,104,111,100,32,119,104,105,99,104,32,119,114,105,116,101, -- 115,32,100,97,116,97,32,40,98,121,116,101,115,41,32,116, -- 111,32,97,32,102,105,108,101,32,112,97,116,104,32,40,97, -- 32,115,116,114,41,46,10,10,32,32,32,32,32,32,32,32, -- 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, -- 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, -- 102,111,114,32,116,104,101,32,119,114,105,116,105,110,103,32, -- 111,102,32,98,121,116,101,99,111,100,101,32,102,105,108,101, -- 115,46,10,32,32,32,32,32,32,32,32,78,114,4,0,0, -- 0,41,3,114,71,0,0,0,114,35,0,0,0,114,53,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,37,1,0,0,229,5,0,0,115,0,0,0,0,122, -- 21,83,111,117,114,99,101,76,111,97,100,101,114,46,115,101, -- 116,95,100,97,116,97,99,2,0,0,0,0,0,0,0,5, -- 0,0,0,16,0,0,0,67,0,0,0,115,105,0,0,0, -- 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,121, -- 19,0,124,0,0,106,1,0,124,2,0,131,1,0,125,3, -- 0,87,110,58,0,4,116,2,0,107,10,0,114,94,0,1, -- 125,4,0,1,122,26,0,116,3,0,100,1,0,100,2,0, -- 124,1,0,131,1,1,124,4,0,130,2,0,87,89,100,3, -- 0,100,3,0,125,4,0,126,4,0,88,110,1,0,88,116, -- 4,0,124,3,0,131,1,0,83,41,4,122,52,67,111,110, -- 99,114,101,116,101,32,105,109,112,108,101,109,101,110,116,97, -- 116,105,111,110,32,111,102,32,73,110,115,112,101,99,116,76, -- 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, -- 46,122,39,115,111,117,114,99,101,32,110,111,116,32,97,118, -- 97,105,108,97,98,108,101,32,116,104,114,111,117,103,104,32, -- 103,101,116,95,100,97,116,97,40,41,114,67,0,0,0,78, -- 41,5,114,238,0,0,0,218,8,103,101,116,95,100,97,116, -- 97,114,40,0,0,0,114,153,0,0,0,114,203,0,0,0, -- 41,5,114,71,0,0,0,114,158,0,0,0,114,35,0,0, -- 0,114,201,0,0,0,218,3,101,120,99,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,16,1,0,0,236, -- 5,0,0,115,14,0,0,0,0,2,15,1,3,1,19,1, -- 18,1,9,1,31,1,122,23,83,111,117,114,99,101,76,111, -- 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,218, -- 9,95,111,112,116,105,109,105,122,101,114,29,0,0,0,99, -- 3,0,0,0,1,0,0,0,4,0,0,0,9,0,0,0, -- 67,0,0,0,115,31,0,0,0,116,0,0,116,1,0,124, -- 1,0,124,2,0,100,1,0,100,2,0,100,3,0,100,4, -- 0,124,3,0,131,4,2,83,41,5,122,130,82,101,116,117, -- 114,110,32,116,104,101,32,99,111,100,101,32,111,98,106,101, -- 99,116,32,99,111,109,112,105,108,101,100,32,102,114,111,109, -- 32,115,111,117,114,99,101,46,10,10,32,32,32,32,32,32, -- 32,32,84,104,101,32,39,100,97,116,97,39,32,97,114,103, -- 117,109,101,110,116,32,99,97,110,32,98,101,32,97,110,121, -- 32,111,98,106,101,99,116,32,116,121,112,101,32,116,104,97, -- 116,32,99,111,109,112,105,108,101,40,41,32,115,117,112,112, -- 111,114,116,115,46,10,32,32,32,32,32,32,32,32,114,175, -- 0,0,0,218,12,100,111,110,116,95,105,110,104,101,114,105, -- 116,84,114,118,0,0,0,41,2,114,114,0,0,0,218,7, -- 99,111,109,112,105,108,101,41,4,114,71,0,0,0,114,53, -- 0,0,0,114,35,0,0,0,114,41,1,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,14,115,111, -- 117,114,99,101,95,116,111,95,99,111,100,101,246,5,0,0, -- 115,4,0,0,0,0,5,18,1,122,27,83,111,117,114,99, -- 101,76,111,97,100,101,114,46,115,111,117,114,99,101,95,116, -- 111,95,99,111,100,101,99,2,0,0,0,0,0,0,0,10, -- 0,0,0,45,0,0,0,67,0,0,0,115,177,1,0,0, -- 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,100, -- 1,0,125,3,0,121,16,0,116,1,0,124,2,0,131,1, -- 0,125,4,0,87,110,24,0,4,116,2,0,107,10,0,114, -- 63,0,1,1,1,100,1,0,125,4,0,89,110,202,0,88, -- 121,19,0,124,0,0,106,3,0,124,2,0,131,1,0,125, -- 5,0,87,110,18,0,4,116,4,0,107,10,0,114,103,0, -- 1,1,1,89,110,162,0,88,116,5,0,124,5,0,100,2, -- 0,25,131,1,0,125,3,0,121,19,0,124,0,0,106,6, -- 0,124,4,0,131,1,0,125,6,0,87,110,18,0,4,116, -- 7,0,107,10,0,114,159,0,1,1,1,89,110,106,0,88, -- 121,34,0,116,8,0,124,6,0,100,3,0,124,5,0,100, -- 4,0,124,1,0,100,5,0,124,4,0,131,1,3,125,7, -- 0,87,110,24,0,4,116,9,0,116,10,0,102,2,0,107, -- 10,0,114,220,0,1,1,1,89,110,45,0,88,116,11,0, -- 100,6,0,124,4,0,124,2,0,131,3,0,1,116,12,0, -- 124,7,0,100,4,0,124,1,0,100,7,0,124,4,0,100, -- 8,0,124,2,0,131,1,3,83,124,0,0,106,6,0,124, -- 2,0,131,1,0,125,8,0,124,0,0,106,13,0,124,8, -- 0,124,2,0,131,2,0,125,9,0,116,11,0,100,9,0, -- 124,2,0,131,2,0,1,116,14,0,106,15,0,12,114,173, -- 1,124,4,0,100,1,0,107,9,0,114,173,1,124,3,0, -- 100,1,0,107,9,0,114,173,1,116,16,0,124,9,0,124, -- 3,0,116,17,0,124,8,0,131,1,0,131,3,0,125,6, -- 0,121,36,0,124,0,0,106,18,0,124,2,0,124,4,0, -- 124,6,0,131,3,0,1,116,11,0,100,10,0,124,4,0, -- 131,2,0,1,87,113,173,1,4,116,2,0,107,10,0,114, -- 169,1,1,1,1,89,113,173,1,88,110,0,0,124,9,0, -- 83,41,11,122,190,67,111,110,99,114,101,116,101,32,105,109, -- 112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32, -- 73,110,115,112,101,99,116,76,111,97,100,101,114,46,103,101, -- 116,95,99,111,100,101,46,10,10,32,32,32,32,32,32,32, -- 32,82,101,97,100,105,110,103,32,111,102,32,98,121,116,101, -- 99,111,100,101,32,114,101,113,117,105,114,101,115,32,112,97, -- 116,104,95,115,116,97,116,115,32,116,111,32,98,101,32,105, -- 109,112,108,101,109,101,110,116,101,100,46,32,84,111,32,119, -- 114,105,116,101,10,32,32,32,32,32,32,32,32,98,121,116, -- 101,99,111,100,101,44,32,115,101,116,95,100,97,116,97,32, -- 109,117,115,116,32,97,108,115,111,32,98,101,32,105,109,112, -- 108,101,109,101,110,116,101,100,46,10,10,32,32,32,32,32, -- 32,32,32,78,114,183,0,0,0,114,187,0,0,0,114,67, -- 0,0,0,114,35,0,0,0,122,13,123,125,32,109,97,116, -- 99,104,101,115,32,123,125,114,140,0,0,0,114,141,0,0, -- 0,122,19,99,111,100,101,32,111,98,106,101,99,116,32,102, -- 114,111,109,32,123,125,122,10,119,114,111,116,101,32,123,33, -- 114,125,41,19,114,238,0,0,0,114,132,0,0,0,114,124, -- 0,0,0,114,36,1,0,0,114,34,1,0,0,114,14,0, -- 0,0,114,39,1,0,0,114,40,0,0,0,114,190,0,0, -- 0,114,153,0,0,0,114,186,0,0,0,114,152,0,0,0, -- 114,195,0,0,0,114,44,1,0,0,114,7,0,0,0,218, -- 19,100,111,110,116,95,119,114,105,116,101,95,98,121,116,101, -- 99,111,100,101,114,198,0,0,0,114,31,0,0,0,114,38, -- 1,0,0,41,10,114,71,0,0,0,114,158,0,0,0,114, -- 141,0,0,0,114,188,0,0,0,114,140,0,0,0,218,2, -- 115,116,114,53,0,0,0,218,10,98,121,116,101,115,95,100, -- 97,116,97,114,201,0,0,0,90,11,99,111,100,101,95,111, -- 98,106,101,99,116,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,15,1,0,0,254,5,0,0,115,78,0, -- 0,0,0,7,15,1,6,1,3,1,16,1,13,1,11,2, -- 3,1,19,1,13,1,5,2,16,1,3,1,19,1,13,1, -- 5,2,3,1,9,1,12,1,13,1,19,1,5,2,9,1, -- 7,1,15,1,6,1,7,1,15,1,18,1,13,1,22,1, -- 12,1,9,1,15,1,3,1,19,1,17,1,13,1,8,1, -- 122,21,83,111,117,114,99,101,76,111,97,100,101,114,46,103, -- 101,116,95,99,111,100,101,78,114,138,0,0,0,41,10,114, -- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,35, -- 1,0,0,114,36,1,0,0,114,38,1,0,0,114,37,1, -- 0,0,114,16,1,0,0,114,44,1,0,0,114,15,1,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,33,1,0,0,196,5,0,0,115,14, -- 0,0,0,12,2,12,8,12,13,12,10,12,7,12,10,18, -- 8,114,33,1,0,0,99,0,0,0,0,0,0,0,0,0, -- 0,0,0,4,0,0,0,0,0,0,0,115,112,0,0,0, -- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, -- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, -- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, -- 132,0,0,90,6,0,101,7,0,135,0,0,102,1,0,100, -- 8,0,100,9,0,134,0,0,131,1,0,90,8,0,101,7, -- 0,100,10,0,100,11,0,132,0,0,131,1,0,90,9,0, -- 100,12,0,100,13,0,132,0,0,90,10,0,135,0,0,83, -- 41,14,218,10,70,105,108,101,76,111,97,100,101,114,122,103, -- 66,97,115,101,32,102,105,108,101,32,108,111,97,100,101,114, -- 32,99,108,97,115,115,32,119,104,105,99,104,32,105,109,112, -- 108,101,109,101,110,116,115,32,116,104,101,32,108,111,97,100, -- 101,114,32,112,114,111,116,111,99,111,108,32,109,101,116,104, -- 111,100,115,32,116,104,97,116,10,32,32,32,32,114,101,113, -- 117,105,114,101,32,102,105,108,101,32,115,121,115,116,101,109, -- 32,117,115,97,103,101,46,99,3,0,0,0,0,0,0,0, -- 3,0,0,0,2,0,0,0,67,0,0,0,115,22,0,0, -- 0,124,1,0,124,0,0,95,0,0,124,2,0,124,0,0, -- 95,1,0,100,1,0,83,41,2,122,75,67,97,99,104,101, -- 32,116,104,101,32,109,111,100,117,108,101,32,110,97,109,101, -- 32,97,110,100,32,116,104,101,32,112,97,116,104,32,116,111, -- 32,116,104,101,32,102,105,108,101,32,102,111,117,110,100,32, -- 98,121,32,116,104,101,10,32,32,32,32,32,32,32,32,102, -- 105,110,100,101,114,46,78,41,2,114,67,0,0,0,114,35, -- 0,0,0,41,3,114,71,0,0,0,114,158,0,0,0,114, -- 35,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,72,0,0,0,55,6,0,0,115,4,0,0, -- 0,0,3,9,1,122,19,70,105,108,101,76,111,97,100,101, -- 114,46,95,95,105,110,105,116,95,95,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, -- 34,0,0,0,124,0,0,106,0,0,124,1,0,106,0,0, -- 107,2,0,111,33,0,124,0,0,106,1,0,124,1,0,106, -- 1,0,107,2,0,83,41,1,78,41,2,114,224,0,0,0, -- 114,63,0,0,0,41,2,114,71,0,0,0,114,227,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 114,229,0,0,0,61,6,0,0,115,4,0,0,0,0,1, -- 18,1,122,17,70,105,108,101,76,111,97,100,101,114,46,95, -- 95,101,113,95,95,99,1,0,0,0,0,0,0,0,1,0, -- 0,0,3,0,0,0,67,0,0,0,115,26,0,0,0,116, -- 0,0,124,0,0,106,1,0,131,1,0,116,0,0,124,0, -- 0,106,2,0,131,1,0,65,83,41,1,78,41,3,218,4, -- 104,97,115,104,114,67,0,0,0,114,35,0,0,0,41,1, -- 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,8,95,95,104,97,115,104,95,95,65,6, -- 0,0,115,2,0,0,0,0,1,122,19,70,105,108,101,76, -- 111,97,100,101,114,46,95,95,104,97,115,104,95,95,99,2, -- 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,3, -- 0,0,0,115,22,0,0,0,116,0,0,116,1,0,124,0, -- 0,131,2,0,106,2,0,124,1,0,131,1,0,83,41,1, -- 122,100,76,111,97,100,32,97,32,109,111,100,117,108,101,32, -- 102,114,111,109,32,97,32,102,105,108,101,46,10,10,32,32, -- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, -- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, -- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, -- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, -- 32,32,32,32,32,32,41,3,218,5,115,117,112,101,114,114, -- 48,1,0,0,114,4,1,0,0,41,2,114,71,0,0,0, -- 114,158,0,0,0,41,1,114,224,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,114,4,1,0,0,68,6,0,0,115, -- 2,0,0,0,0,10,122,22,70,105,108,101,76,111,97,100, -- 101,114,46,108,111,97,100,95,109,111,100,117,108,101,99,2, -- 0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,67, -- 0,0,0,115,7,0,0,0,124,0,0,106,0,0,83,41, -- 1,122,58,82,101,116,117,114,110,32,116,104,101,32,112,97, -- 116,104,32,116,111,32,116,104,101,32,115,111,117,114,99,101, -- 32,102,105,108,101,32,97,115,32,102,111,117,110,100,32,98, -- 121,32,116,104,101,32,102,105,110,100,101,114,46,41,1,114, -- 35,0,0,0,41,2,114,71,0,0,0,114,158,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 238,0,0,0,80,6,0,0,115,2,0,0,0,0,3,122, -- 23,70,105,108,101,76,111,97,100,101,114,46,103,101,116,95, -- 102,105,108,101,110,97,109,101,99,2,0,0,0,0,0,0, -- 0,3,0,0,0,8,0,0,0,67,0,0,0,115,41,0, -- 0,0,116,0,0,106,1,0,124,1,0,100,1,0,131,2, -- 0,143,17,0,125,2,0,124,2,0,106,2,0,131,0,0, -- 83,87,100,2,0,81,88,100,2,0,83,41,3,122,39,82, -- 101,116,117,114,110,32,116,104,101,32,100,97,116,97,32,102, -- 114,111,109,32,112,97,116,104,32,97,115,32,114,97,119,32, -- 98,121,116,101,115,46,218,1,114,78,41,3,114,49,0,0, -- 0,114,50,0,0,0,90,4,114,101,97,100,41,3,114,71, -- 0,0,0,114,35,0,0,0,114,54,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,39,1,0, -- 0,85,6,0,0,115,4,0,0,0,0,2,21,1,122,19, -- 70,105,108,101,76,111,97,100,101,114,46,103,101,116,95,100, -- 97,116,97,41,11,114,57,0,0,0,114,56,0,0,0,114, -- 58,0,0,0,114,59,0,0,0,114,72,0,0,0,114,229, -- 0,0,0,114,50,1,0,0,114,156,0,0,0,114,4,1, -- 0,0,114,238,0,0,0,114,39,1,0,0,114,4,0,0, -- 0,114,4,0,0,0,41,1,114,224,0,0,0,114,5,0, -- 0,0,114,48,1,0,0,50,6,0,0,115,14,0,0,0, -- 12,3,6,2,12,6,12,4,12,3,24,12,18,5,114,48, -- 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, -- 4,0,0,0,64,0,0,0,115,64,0,0,0,101,0,0, -- 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, -- 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, -- 0,132,0,0,90,5,0,100,6,0,100,7,0,100,8,0, -- 100,9,0,132,0,1,90,6,0,100,10,0,83,41,11,114, -- 8,1,0,0,122,62,67,111,110,99,114,101,116,101,32,105, -- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, -- 32,83,111,117,114,99,101,76,111,97,100,101,114,32,117,115, -- 105,110,103,32,116,104,101,32,102,105,108,101,32,115,121,115, -- 116,101,109,46,99,2,0,0,0,0,0,0,0,3,0,0, -- 0,3,0,0,0,67,0,0,0,115,36,0,0,0,116,0, -- 0,124,1,0,131,1,0,125,2,0,105,2,0,124,2,0, -- 106,1,0,100,1,0,54,124,2,0,106,2,0,100,2,0, -- 54,83,41,3,122,33,82,101,116,117,114,110,32,116,104,101, -- 32,109,101,116,97,100,97,116,97,32,102,111,114,32,116,104, -- 101,32,112,97,116,104,46,114,183,0,0,0,114,184,0,0, -- 0,41,3,114,39,0,0,0,218,8,115,116,95,109,116,105, -- 109,101,90,7,115,116,95,115,105,122,101,41,3,114,71,0, -- 0,0,114,35,0,0,0,114,46,1,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,36,1,0,0, -- 95,6,0,0,115,4,0,0,0,0,2,12,1,122,27,83, -- 111,117,114,99,101,70,105,108,101,76,111,97,100,101,114,46, -- 112,97,116,104,95,115,116,97,116,115,99,4,0,0,0,0, -- 0,0,0,5,0,0,0,5,0,0,0,67,0,0,0,115, -- 34,0,0,0,116,0,0,124,1,0,131,1,0,125,4,0, -- 124,0,0,106,1,0,124,2,0,124,3,0,100,1,0,124, -- 4,0,131,2,1,83,41,2,78,218,5,95,109,111,100,101, -- 41,2,114,144,0,0,0,114,37,1,0,0,41,5,114,71, -- 0,0,0,114,141,0,0,0,114,140,0,0,0,114,53,0, -- 0,0,114,42,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,114,38,1,0,0,100,6,0,0,115, -- 4,0,0,0,0,2,12,1,122,32,83,111,117,114,99,101, -- 70,105,108,101,76,111,97,100,101,114,46,95,99,97,99,104, -- 101,95,98,121,116,101,99,111,100,101,114,54,1,0,0,105, -- 182,1,0,0,99,3,0,0,0,1,0,0,0,9,0,0, -- 0,18,0,0,0,67,0,0,0,115,53,1,0,0,116,0, -- 0,124,1,0,131,1,0,92,2,0,125,4,0,125,5,0, -- 103,0,0,125,6,0,120,54,0,124,4,0,114,80,0,116, -- 1,0,124,4,0,131,1,0,12,114,80,0,116,0,0,124, -- 4,0,131,1,0,92,2,0,125,4,0,125,7,0,124,6, -- 0,106,2,0,124,7,0,131,1,0,1,113,27,0,87,120, -- 132,0,116,3,0,124,6,0,131,1,0,68,93,118,0,125, -- 7,0,116,4,0,124,4,0,124,7,0,131,2,0,125,4, -- 0,121,17,0,116,5,0,106,6,0,124,4,0,131,1,0, -- 1,87,113,94,0,4,116,7,0,107,10,0,114,155,0,1, -- 1,1,119,94,0,89,113,94,0,4,116,8,0,107,10,0, -- 114,211,0,1,125,8,0,1,122,25,0,116,9,0,100,1, -- 0,124,4,0,124,8,0,131,3,0,1,100,2,0,83,87, -- 89,100,2,0,100,2,0,125,8,0,126,8,0,88,113,94, -- 0,88,113,94,0,87,121,33,0,116,10,0,124,1,0,124, -- 2,0,124,3,0,131,3,0,1,116,9,0,100,3,0,124, -- 1,0,131,2,0,1,87,110,53,0,4,116,8,0,107,10, -- 0,114,48,1,1,125,8,0,1,122,21,0,116,9,0,100, -- 1,0,124,1,0,124,8,0,131,3,0,1,87,89,100,2, -- 0,100,2,0,125,8,0,126,8,0,88,110,1,0,88,100, -- 2,0,83,41,4,122,27,87,114,105,116,101,32,98,121,116, -- 101,115,32,100,97,116,97,32,116,111,32,97,32,102,105,108, -- 101,46,122,27,99,111,117,108,100,32,110,111,116,32,99,114, -- 101,97,116,101,32,123,33,114,125,58,32,123,33,114,125,78, -- 122,12,99,114,101,97,116,101,100,32,123,33,114,125,41,11, -- 114,38,0,0,0,114,46,0,0,0,114,223,0,0,0,114, -- 33,0,0,0,114,28,0,0,0,114,3,0,0,0,90,5, -- 109,107,100,105,114,218,15,70,105,108,101,69,120,105,115,116, -- 115,69,114,114,111,114,114,40,0,0,0,114,152,0,0,0, -- 114,55,0,0,0,41,9,114,71,0,0,0,114,35,0,0, -- 0,114,53,0,0,0,114,54,1,0,0,114,233,0,0,0, -- 114,131,0,0,0,114,27,0,0,0,114,23,0,0,0,114, -- 40,1,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,37,1,0,0,105,6,0,0,115,38,0,0, -- 0,0,2,18,1,6,2,22,1,18,1,17,2,19,1,15, -- 1,3,1,17,1,13,2,7,1,18,3,16,1,27,1,3, -- 1,16,1,17,1,18,2,122,25,83,111,117,114,99,101,70, -- 105,108,101,76,111,97,100,101,114,46,115,101,116,95,100,97, -- 116,97,78,41,7,114,57,0,0,0,114,56,0,0,0,114, -- 58,0,0,0,114,59,0,0,0,114,36,1,0,0,114,38, -- 1,0,0,114,37,1,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,8,1,0, -- 0,91,6,0,0,115,8,0,0,0,12,2,6,2,12,5, -- 12,5,114,8,1,0,0,99,0,0,0,0,0,0,0,0, -- 0,0,0,0,2,0,0,0,64,0,0,0,115,46,0,0, -- 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, -- 90,3,0,100,2,0,100,3,0,132,0,0,90,4,0,100, -- 4,0,100,5,0,132,0,0,90,5,0,100,6,0,83,41, -- 7,114,7,1,0,0,122,45,76,111,97,100,101,114,32,119, -- 104,105,99,104,32,104,97,110,100,108,101,115,32,115,111,117, -- 114,99,101,108,101,115,115,32,102,105,108,101,32,105,109,112, -- 111,114,116,115,46,99,2,0,0,0,0,0,0,0,5,0, -- 0,0,6,0,0,0,67,0,0,0,115,76,0,0,0,124, -- 0,0,106,0,0,124,1,0,131,1,0,125,2,0,124,0, -- 0,106,1,0,124,2,0,131,1,0,125,3,0,116,2,0, -- 124,3,0,100,1,0,124,1,0,100,2,0,124,2,0,131, -- 1,2,125,4,0,116,3,0,124,4,0,100,1,0,124,1, -- 0,100,3,0,124,2,0,131,1,2,83,41,4,78,114,67, -- 0,0,0,114,35,0,0,0,114,140,0,0,0,41,4,114, -- 238,0,0,0,114,39,1,0,0,114,190,0,0,0,114,195, -- 0,0,0,41,5,114,71,0,0,0,114,158,0,0,0,114, -- 35,0,0,0,114,53,0,0,0,114,47,1,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,15,1, -- 0,0,138,6,0,0,115,8,0,0,0,0,1,15,1,15, -- 1,24,1,122,29,83,111,117,114,99,101,108,101,115,115,70, -- 105,108,101,76,111,97,100,101,114,46,103,101,116,95,99,111, -- 100,101,99,2,0,0,0,0,0,0,0,2,0,0,0,1, -- 0,0,0,67,0,0,0,115,4,0,0,0,100,1,0,83, -- 41,2,122,39,82,101,116,117,114,110,32,78,111,110,101,32, -- 97,115,32,116,104,101,114,101,32,105,115,32,110,111,32,115, -- 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, -- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,16,1,0, -- 0,144,6,0,0,115,2,0,0,0,0,2,122,31,83,111, -- 117,114,99,101,108,101,115,115,70,105,108,101,76,111,97,100, -- 101,114,46,103,101,116,95,115,111,117,114,99,101,78,41,6, -- 114,57,0,0,0,114,56,0,0,0,114,58,0,0,0,114, -- 59,0,0,0,114,15,1,0,0,114,16,1,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,7,1,0,0,134,6,0,0,115,6,0,0,0, -- 12,2,6,2,12,6,114,7,1,0,0,99,0,0,0,0, -- 0,0,0,0,0,0,0,0,3,0,0,0,64,0,0,0, -- 115,130,0,0,0,101,0,0,90,1,0,100,0,0,90,2, -- 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, -- 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, -- 6,0,100,7,0,132,0,0,90,6,0,101,7,0,100,8, -- 0,100,9,0,132,0,0,131,1,0,90,8,0,100,10,0, -- 100,11,0,132,0,0,90,9,0,100,12,0,100,13,0,132, -- 0,0,90,10,0,100,14,0,100,15,0,132,0,0,90,11, -- 0,101,7,0,100,16,0,100,17,0,132,0,0,131,1,0, -- 90,12,0,100,18,0,83,41,19,218,19,69,120,116,101,110, -- 115,105,111,110,70,105,108,101,76,111,97,100,101,114,122,93, -- 76,111,97,100,101,114,32,102,111,114,32,101,120,116,101,110, -- 115,105,111,110,32,109,111,100,117,108,101,115,46,10,10,32, -- 32,32,32,84,104,101,32,99,111,110,115,116,114,117,99,116, -- 111,114,32,105,115,32,100,101,115,105,103,110,101,100,32,116, -- 111,32,119,111,114,107,32,119,105,116,104,32,70,105,108,101, -- 70,105,110,100,101,114,46,10,10,32,32,32,32,99,3,0, -- 0,0,0,0,0,0,3,0,0,0,2,0,0,0,67,0, -- 0,0,115,22,0,0,0,124,1,0,124,0,0,95,0,0, -- 124,2,0,124,0,0,95,1,0,100,0,0,83,41,1,78, -- 41,2,114,67,0,0,0,114,35,0,0,0,41,3,114,71, -- 0,0,0,114,67,0,0,0,114,35,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,72,0,0, -- 0,161,6,0,0,115,4,0,0,0,0,1,9,1,122,28, -- 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, -- 100,101,114,46,95,95,105,110,105,116,95,95,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,3,0,0,0,67,0,0, -- 0,115,34,0,0,0,124,0,0,106,0,0,124,1,0,106, -- 0,0,107,2,0,111,33,0,124,0,0,106,1,0,124,1, -- 0,106,1,0,107,2,0,83,41,1,78,41,2,114,224,0, -- 0,0,114,63,0,0,0,41,2,114,71,0,0,0,114,227, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,229,0,0,0,165,6,0,0,115,4,0,0,0, -- 0,1,18,1,122,26,69,120,116,101,110,115,105,111,110,70, -- 105,108,101,76,111,97,100,101,114,46,95,95,101,113,95,95, -- 99,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0, -- 0,67,0,0,0,115,26,0,0,0,116,0,0,124,0,0, -- 106,1,0,131,1,0,116,0,0,124,0,0,106,2,0,131, -- 1,0,65,83,41,1,78,41,3,114,49,1,0,0,114,67, -- 0,0,0,114,35,0,0,0,41,1,114,71,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,50, -- 1,0,0,169,6,0,0,115,2,0,0,0,0,1,122,28, -- 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, -- 100,101,114,46,95,95,104,97,115,104,95,95,99,2,0,0, -- 0,0,0,0,0,4,0,0,0,11,0,0,0,67,0,0, -- 0,115,183,0,0,0,116,0,0,124,1,0,131,1,0,143, -- 29,0,1,116,1,0,116,2,0,106,3,0,124,1,0,124, -- 0,0,106,4,0,131,3,0,125,2,0,87,100,1,0,81, -- 88,116,5,0,100,2,0,124,0,0,106,4,0,131,2,0, -- 1,124,0,0,106,6,0,124,1,0,131,1,0,125,3,0, -- 124,3,0,114,124,0,116,7,0,124,2,0,100,3,0,131, -- 2,0,12,114,124,0,116,8,0,124,0,0,106,4,0,131, -- 1,0,100,4,0,25,103,1,0,124,2,0,95,9,0,110, -- 0,0,124,0,0,124,2,0,95,10,0,124,2,0,106,11, -- 0,124,2,0,95,12,0,124,3,0,115,179,0,124,2,0, -- 106,12,0,106,13,0,100,5,0,131,1,0,100,4,0,25, -- 124,2,0,95,12,0,110,0,0,124,2,0,83,41,6,122, -- 25,76,111,97,100,32,97,110,32,101,120,116,101,110,115,105, -- 111,110,32,109,111,100,117,108,101,46,78,122,33,101,120,116, -- 101,110,115,105,111,110,32,109,111,100,117,108,101,32,108,111, -- 97,100,101,100,32,102,114,111,109,32,123,33,114,125,114,246, -- 0,0,0,114,84,0,0,0,114,116,0,0,0,41,14,114, -- 69,0,0,0,114,114,0,0,0,114,106,0,0,0,90,12, -- 108,111,97,100,95,100,121,110,97,109,105,99,114,35,0,0, -- 0,114,152,0,0,0,114,219,0,0,0,114,60,0,0,0, -- 114,38,0,0,0,114,246,0,0,0,114,204,0,0,0,114, -- 57,0,0,0,114,250,0,0,0,114,32,0,0,0,41,4, -- 114,71,0,0,0,114,158,0,0,0,114,179,0,0,0,114, -- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,4,1,0,0,172,6,0,0,115,24,0,0, -- 0,0,5,13,1,9,1,21,1,16,1,15,1,22,1,28, -- 1,9,1,12,1,6,1,28,1,122,31,69,120,116,101,110, -- 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,108, -- 111,97,100,95,109,111,100,117,108,101,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,4,0,0,0,3,0,0,0,115, -- 48,0,0,0,116,0,0,124,0,0,106,1,0,131,1,0, -- 100,1,0,25,137,0,0,116,2,0,135,0,0,102,1,0, -- 100,2,0,100,3,0,134,0,0,116,3,0,68,131,1,0, -- 131,1,0,83,41,4,122,49,82,101,116,117,114,110,32,84, -- 114,117,101,32,105,102,32,116,104,101,32,101,120,116,101,110, -- 115,105,111,110,32,109,111,100,117,108,101,32,105,115,32,97, -- 32,112,97,99,107,97,103,101,46,114,29,0,0,0,99,1, -- 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,51, -- 0,0,0,115,31,0,0,0,124,0,0,93,21,0,125,1, -- 0,136,0,0,100,0,0,124,1,0,23,107,2,0,86,1, -- 113,3,0,100,1,0,83,41,2,114,72,0,0,0,78,114, -- 4,0,0,0,41,2,114,22,0,0,0,218,6,115,117,102, -- 102,105,120,41,1,218,9,102,105,108,101,95,110,97,109,101, -- 114,4,0,0,0,114,5,0,0,0,114,77,0,0,0,193, -- 6,0,0,115,2,0,0,0,6,1,122,49,69,120,116,101, -- 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, -- 105,115,95,112,97,99,107,97,103,101,46,60,108,111,99,97, -- 108,115,62,46,60,103,101,110,101,120,112,114,62,41,4,114, -- 38,0,0,0,114,35,0,0,0,114,78,0,0,0,218,18, -- 69,88,84,69,78,83,73,79,78,95,83,85,70,70,73,88, -- 69,83,41,2,114,71,0,0,0,114,158,0,0,0,114,4, -- 0,0,0,41,1,114,58,1,0,0,114,5,0,0,0,114, -- 219,0,0,0,190,6,0,0,115,6,0,0,0,0,2,19, -- 1,18,1,122,30,69,120,116,101,110,115,105,111,110,70,105, -- 108,101,76,111,97,100,101,114,46,105,115,95,112,97,99,107, -- 97,103,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, -- 83,41,2,122,63,82,101,116,117,114,110,32,78,111,110,101, -- 32,97,115,32,97,110,32,101,120,116,101,110,115,105,111,110, -- 32,109,111,100,117,108,101,32,99,97,110,110,111,116,32,99, -- 114,101,97,116,101,32,97,32,99,111,100,101,32,111,98,106, -- 101,99,116,46,78,114,4,0,0,0,41,2,114,71,0,0, -- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,15,1,0,0,196,6,0,0,115,2, -- 0,0,0,0,2,122,28,69,120,116,101,110,115,105,111,110, -- 70,105,108,101,76,111,97,100,101,114,46,103,101,116,95,99, -- 111,100,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, -- 83,41,2,122,53,82,101,116,117,114,110,32,78,111,110,101, -- 32,97,115,32,101,120,116,101,110,115,105,111,110,32,109,111, -- 100,117,108,101,115,32,104,97,118,101,32,110,111,32,115,111, -- 117,114,99,101,32,99,111,100,101,46,78,114,4,0,0,0, -- 41,2,114,71,0,0,0,114,158,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,16,1,0,0, -- 200,6,0,0,115,2,0,0,0,0,2,122,30,69,120,116, -- 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, -- 46,103,101,116,95,115,111,117,114,99,101,99,2,0,0,0, -- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, -- 115,7,0,0,0,124,0,0,106,0,0,83,41,1,122,58, -- 82,101,116,117,114,110,32,116,104,101,32,112,97,116,104,32, -- 116,111,32,116,104,101,32,115,111,117,114,99,101,32,102,105, -- 108,101,32,97,115,32,102,111,117,110,100,32,98,121,32,116, -- 104,101,32,102,105,110,100,101,114,46,41,1,114,35,0,0, -- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,238,0,0, -- 0,204,6,0,0,115,2,0,0,0,0,3,122,32,69,120, -- 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, -- 114,46,103,101,116,95,102,105,108,101,110,97,109,101,78,41, -- 13,114,57,0,0,0,114,56,0,0,0,114,58,0,0,0, -- 114,59,0,0,0,114,72,0,0,0,114,229,0,0,0,114, -- 50,1,0,0,114,156,0,0,0,114,4,1,0,0,114,219, -- 0,0,0,114,15,1,0,0,114,16,1,0,0,114,238,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,114,56,1,0,0,153,6,0,0,115, -- 18,0,0,0,12,6,6,2,12,4,12,4,12,3,18,18, -- 12,6,12,4,12,4,114,56,1,0,0,99,0,0,0,0, -- 0,0,0,0,0,0,0,0,2,0,0,0,64,0,0,0, -- 115,130,0,0,0,101,0,0,90,1,0,100,0,0,90,2, -- 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, -- 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, -- 6,0,100,7,0,132,0,0,90,6,0,100,8,0,100,9, -- 0,132,0,0,90,7,0,100,10,0,100,11,0,132,0,0, -- 90,8,0,100,12,0,100,13,0,132,0,0,90,9,0,100, -- 14,0,100,15,0,132,0,0,90,10,0,100,16,0,100,17, -- 0,132,0,0,90,11,0,100,18,0,100,19,0,132,0,0, -- 90,12,0,100,20,0,83,41,21,218,14,95,78,97,109,101, -- 115,112,97,99,101,80,97,116,104,97,38,1,0,0,82,101, -- 112,114,101,115,101,110,116,115,32,97,32,110,97,109,101,115, -- 112,97,99,101,32,112,97,99,107,97,103,101,39,115,32,112, -- 97,116,104,46,32,32,73,116,32,117,115,101,115,32,116,104, -- 101,32,109,111,100,117,108,101,32,110,97,109,101,10,32,32, -- 32,32,116,111,32,102,105,110,100,32,105,116,115,32,112,97, -- 114,101,110,116,32,109,111,100,117,108,101,44,32,97,110,100, -- 32,102,114,111,109,32,116,104,101,114,101,32,105,116,32,108, -- 111,111,107,115,32,117,112,32,116,104,101,32,112,97,114,101, -- 110,116,39,115,10,32,32,32,32,95,95,112,97,116,104,95, -- 95,46,32,32,87,104,101,110,32,116,104,105,115,32,99,104, -- 97,110,103,101,115,44,32,116,104,101,32,109,111,100,117,108, -- 101,39,115,32,111,119,110,32,112,97,116,104,32,105,115,32, -- 114,101,99,111,109,112,117,116,101,100,44,10,32,32,32,32, -- 117,115,105,110,103,32,112,97,116,104,95,102,105,110,100,101, -- 114,46,32,32,70,111,114,32,116,111,112,45,108,101,118,101, -- 108,32,109,111,100,117,108,101,115,44,32,116,104,101,32,112, -- 97,114,101,110,116,32,109,111,100,117,108,101,39,115,32,112, -- 97,116,104,10,32,32,32,32,105,115,32,115,121,115,46,112, -- 97,116,104,46,99,4,0,0,0,0,0,0,0,4,0,0, -- 0,2,0,0,0,67,0,0,0,115,52,0,0,0,124,1, -- 0,124,0,0,95,0,0,124,2,0,124,0,0,95,1,0, -- 116,2,0,124,0,0,106,3,0,131,0,0,131,1,0,124, -- 0,0,95,4,0,124,3,0,124,0,0,95,5,0,100,0, -- 0,83,41,1,78,41,6,114,70,0,0,0,114,253,0,0, -- 0,114,231,0,0,0,218,16,95,103,101,116,95,112,97,114, -- 101,110,116,95,112,97,116,104,218,17,95,108,97,115,116,95, -- 112,97,114,101,110,116,95,112,97,116,104,218,12,95,112,97, -- 116,104,95,102,105,110,100,101,114,41,4,114,71,0,0,0, -- 114,67,0,0,0,114,35,0,0,0,218,11,112,97,116,104, -- 95,102,105,110,100,101,114,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,114,72,0,0,0,217,6,0,0,115, -- 8,0,0,0,0,1,9,1,9,1,21,1,122,23,95,78, -- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,105, -- 110,105,116,95,95,99,1,0,0,0,0,0,0,0,4,0, -- 0,0,3,0,0,0,67,0,0,0,115,53,0,0,0,124, -- 0,0,106,0,0,106,1,0,100,1,0,131,1,0,92,3, -- 0,125,1,0,125,2,0,125,3,0,124,2,0,100,2,0, -- 107,2,0,114,43,0,100,6,0,83,124,1,0,100,5,0, -- 102,2,0,83,41,7,122,62,82,101,116,117,114,110,115,32, -- 97,32,116,117,112,108,101,32,111,102,32,40,112,97,114,101, -- 110,116,45,109,111,100,117,108,101,45,110,97,109,101,44,32, -- 112,97,114,101,110,116,45,112,97,116,104,45,97,116,116,114, -- 45,110,97,109,101,41,114,116,0,0,0,114,30,0,0,0, -- 114,7,0,0,0,114,35,0,0,0,114,246,0,0,0,41, -- 2,122,3,115,121,115,122,4,112,97,116,104,41,2,114,70, -- 0,0,0,114,32,0,0,0,41,4,114,71,0,0,0,114, -- 233,0,0,0,218,3,100,111,116,114,94,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,23,95, +- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,100,6, +- 0,100,7,0,132,0,0,90,6,0,100,8,0,100,9,0, +- 132,0,0,90,7,0,100,10,0,100,11,0,132,0,0,90, +- 8,0,100,12,0,100,13,0,132,0,0,90,9,0,100,14, +- 0,100,15,0,132,0,0,90,10,0,100,16,0,100,17,0, +- 132,0,0,90,11,0,100,18,0,100,19,0,132,0,0,90, +- 12,0,100,20,0,83,41,21,218,14,95,78,97,109,101,115, +- 112,97,99,101,80,97,116,104,97,38,1,0,0,82,101,112, +- 114,101,115,101,110,116,115,32,97,32,110,97,109,101,115,112, +- 97,99,101,32,112,97,99,107,97,103,101,39,115,32,112,97, +- 116,104,46,32,32,73,116,32,117,115,101,115,32,116,104,101, +- 32,109,111,100,117,108,101,32,110,97,109,101,10,32,32,32, +- 32,116,111,32,102,105,110,100,32,105,116,115,32,112,97,114, +- 101,110,116,32,109,111,100,117,108,101,44,32,97,110,100,32, +- 102,114,111,109,32,116,104,101,114,101,32,105,116,32,108,111, +- 111,107,115,32,117,112,32,116,104,101,32,112,97,114,101,110, +- 116,39,115,10,32,32,32,32,95,95,112,97,116,104,95,95, +- 46,32,32,87,104,101,110,32,116,104,105,115,32,99,104,97, +- 110,103,101,115,44,32,116,104,101,32,109,111,100,117,108,101, +- 39,115,32,111,119,110,32,112,97,116,104,32,105,115,32,114, +- 101,99,111,109,112,117,116,101,100,44,10,32,32,32,32,117, +- 115,105,110,103,32,112,97,116,104,95,102,105,110,100,101,114, +- 46,32,32,70,111,114,32,116,111,112,45,108,101,118,101,108, +- 32,109,111,100,117,108,101,115,44,32,116,104,101,32,112,97, +- 114,101,110,116,32,109,111,100,117,108,101,39,115,32,112,97, +- 116,104,10,32,32,32,32,105,115,32,115,121,115,46,112,97, +- 116,104,46,99,4,0,0,0,0,0,0,0,4,0,0,0, +- 2,0,0,0,67,0,0,0,115,52,0,0,0,124,1,0, +- 124,0,0,95,0,0,124,2,0,124,0,0,95,1,0,116, +- 2,0,124,0,0,106,3,0,131,0,0,131,1,0,124,0, +- 0,95,4,0,124,3,0,124,0,0,95,5,0,100,0,0, +- 83,41,1,78,41,6,218,5,95,110,97,109,101,218,5,95, +- 112,97,116,104,114,93,0,0,0,218,16,95,103,101,116,95, +- 112,97,114,101,110,116,95,112,97,116,104,218,17,95,108,97, +- 115,116,95,112,97,114,101,110,116,95,112,97,116,104,218,12, +- 95,112,97,116,104,95,102,105,110,100,101,114,41,4,114,108, +- 0,0,0,114,106,0,0,0,114,35,0,0,0,218,11,112, +- 97,116,104,95,102,105,110,100,101,114,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,185,0,0,0,173,3, +- 0,0,115,8,0,0,0,0,1,9,1,9,1,21,1,122, +- 23,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, +- 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, +- 0,4,0,0,0,3,0,0,0,67,0,0,0,115,53,0, +- 0,0,124,0,0,106,0,0,106,1,0,100,1,0,131,1, +- 0,92,3,0,125,1,0,125,2,0,125,3,0,124,2,0, +- 100,2,0,107,2,0,114,43,0,100,6,0,83,124,1,0, +- 100,5,0,102,2,0,83,41,7,122,62,82,101,116,117,114, +- 110,115,32,97,32,116,117,112,108,101,32,111,102,32,40,112, +- 97,114,101,110,116,45,109,111,100,117,108,101,45,110,97,109, +- 101,44,32,112,97,114,101,110,116,45,112,97,116,104,45,97, +- 116,116,114,45,110,97,109,101,41,114,58,0,0,0,114,30, +- 0,0,0,114,7,0,0,0,114,35,0,0,0,90,8,95, +- 95,112,97,116,104,95,95,41,2,122,3,115,121,115,122,4, +- 112,97,116,104,41,2,114,231,0,0,0,114,32,0,0,0, +- 41,4,114,108,0,0,0,114,222,0,0,0,218,3,100,111, +- 116,90,2,109,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,23,95,102,105,110,100,95,112,97,114,101, +- 110,116,95,112,97,116,104,95,110,97,109,101,115,179,3,0, +- 0,115,8,0,0,0,0,2,27,1,12,2,4,3,122,38, +- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, - 102,105,110,100,95,112,97,114,101,110,116,95,112,97,116,104, -- 95,110,97,109,101,115,223,6,0,0,115,8,0,0,0,0, -- 2,27,1,12,2,4,3,122,38,95,78,97,109,101,115,112, -- 97,99,101,80,97,116,104,46,95,102,105,110,100,95,112,97, -- 114,101,110,116,95,112,97,116,104,95,110,97,109,101,115,99, -- 1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, -- 67,0,0,0,115,38,0,0,0,124,0,0,106,0,0,131, -- 0,0,92,2,0,125,1,0,125,2,0,116,1,0,116,2, -- 0,106,3,0,124,1,0,25,124,2,0,131,2,0,83,41, -- 1,78,41,4,114,66,1,0,0,114,62,0,0,0,114,7, -- 0,0,0,114,73,0,0,0,41,3,114,71,0,0,0,90, -- 18,112,97,114,101,110,116,95,109,111,100,117,108,101,95,110, -- 97,109,101,90,14,112,97,116,104,95,97,116,116,114,95,110, -- 97,109,101,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,61,1,0,0,233,6,0,0,115,4,0,0,0, -- 0,1,18,1,122,31,95,78,97,109,101,115,112,97,99,101, -- 80,97,116,104,46,95,103,101,116,95,112,97,114,101,110,116, -- 95,112,97,116,104,99,1,0,0,0,0,0,0,0,3,0, -- 0,0,3,0,0,0,67,0,0,0,115,127,0,0,0,116, -- 0,0,124,0,0,106,1,0,131,0,0,131,1,0,125,1, -- 0,124,1,0,124,0,0,106,2,0,107,3,0,114,120,0, -- 124,0,0,106,3,0,124,0,0,106,4,0,124,1,0,131, -- 2,0,125,2,0,124,2,0,100,0,0,107,9,0,114,108, -- 0,124,2,0,106,5,0,100,0,0,107,8,0,114,108,0, -- 124,2,0,106,6,0,114,108,0,124,2,0,106,6,0,124, -- 0,0,95,7,0,113,108,0,110,0,0,124,1,0,124,0, -- 0,95,2,0,110,0,0,124,0,0,106,7,0,83,41,1, -- 78,41,8,114,231,0,0,0,114,61,1,0,0,114,62,1, -- 0,0,114,63,1,0,0,114,70,0,0,0,114,169,0,0, -- 0,114,220,0,0,0,114,253,0,0,0,41,3,114,71,0, -- 0,0,90,11,112,97,114,101,110,116,95,112,97,116,104,114, -- 177,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,12,95,114,101,99,97,108,99,117,108,97,116, -- 101,237,6,0,0,115,16,0,0,0,0,2,18,1,15,1, -- 21,3,27,1,9,1,18,1,12,1,122,27,95,78,97,109, -- 101,115,112,97,99,101,80,97,116,104,46,95,114,101,99,97, -- 108,99,117,108,97,116,101,99,1,0,0,0,0,0,0,0, -- 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, +- 95,110,97,109,101,115,99,1,0,0,0,0,0,0,0,3, +- 0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,0, +- 124,0,0,106,0,0,131,0,0,92,2,0,125,1,0,125, +- 2,0,116,1,0,116,2,0,106,3,0,124,1,0,25,124, +- 2,0,131,2,0,83,41,1,78,41,4,114,238,0,0,0, +- 114,117,0,0,0,114,7,0,0,0,218,7,109,111,100,117, +- 108,101,115,41,3,114,108,0,0,0,90,18,112,97,114,101, +- 110,116,95,109,111,100,117,108,101,95,110,97,109,101,90,14, +- 112,97,116,104,95,97,116,116,114,95,110,97,109,101,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,233,0, +- 0,0,189,3,0,0,115,4,0,0,0,0,1,18,1,122, +- 31,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, ++ 46,95,95,104,97,115,104,95,95,99,2,0,0,0,0,0, ++ 0,0,3,0,0,0,4,0,0,0,67,0,0,0,115,47, ++ 0,0,0,116,0,0,106,1,0,116,2,0,106,3,0,124, ++ 1,0,131,2,0,125,2,0,116,4,0,100,1,0,124,1, ++ 0,106,5,0,124,0,0,106,6,0,131,3,0,1,124,2, ++ 0,83,41,2,122,38,67,114,101,97,116,101,32,97,110,32, ++ 117,110,105,116,105,97,108,105,122,101,100,32,101,120,116,101, ++ 110,115,105,111,110,32,109,111,100,117,108,101,122,38,101,120, ++ 116,101,110,115,105,111,110,32,109,111,100,117,108,101,32,123, ++ 33,114,125,32,108,111,97,100,101,100,32,102,114,111,109,32, ++ 123,33,114,125,41,7,114,122,0,0,0,114,189,0,0,0, ++ 114,146,0,0,0,90,14,99,114,101,97,116,101,95,100,121, ++ 110,97,109,105,99,114,106,0,0,0,114,107,0,0,0,114, ++ 36,0,0,0,41,3,114,109,0,0,0,114,165,0,0,0, ++ 114,191,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,187,0,0,0,132,3,0,0,115,10,0, ++ 0,0,0,2,6,1,15,1,6,1,16,1,122,33,69,120, ++ 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, ++ 114,46,99,114,101,97,116,101,95,109,111,100,117,108,101,99, ++ 2,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0, ++ 67,0,0,0,115,45,0,0,0,116,0,0,106,1,0,116, ++ 2,0,106,3,0,124,1,0,131,2,0,1,116,4,0,100, ++ 1,0,124,0,0,106,5,0,124,0,0,106,6,0,131,3, ++ 0,1,100,2,0,83,41,3,122,30,73,110,105,116,105,97, ++ 108,105,122,101,32,97,110,32,101,120,116,101,110,115,105,111, ++ 110,32,109,111,100,117,108,101,122,40,101,120,116,101,110,115, ++ 105,111,110,32,109,111,100,117,108,101,32,123,33,114,125,32, ++ 101,120,101,99,117,116,101,100,32,102,114,111,109,32,123,33, ++ 114,125,78,41,7,114,122,0,0,0,114,189,0,0,0,114, ++ 146,0,0,0,90,12,101,120,101,99,95,100,121,110,97,109, ++ 105,99,114,106,0,0,0,114,107,0,0,0,114,36,0,0, ++ 0,41,2,114,109,0,0,0,114,191,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,192,0,0, ++ 0,140,3,0,0,115,6,0,0,0,0,2,19,1,6,1, ++ 122,31,69,120,116,101,110,115,105,111,110,70,105,108,101,76, ++ 111,97,100,101,114,46,101,120,101,99,95,109,111,100,117,108, ++ 101,99,2,0,0,0,0,0,0,0,2,0,0,0,4,0, ++ 0,0,3,0,0,0,115,48,0,0,0,116,0,0,124,0, ++ 0,106,1,0,131,1,0,100,1,0,25,137,0,0,116,2, ++ 0,135,0,0,102,1,0,100,2,0,100,3,0,134,0,0, ++ 116,3,0,68,131,1,0,131,1,0,83,41,4,122,49,82, ++ 101,116,117,114,110,32,84,114,117,101,32,105,102,32,116,104, ++ 101,32,101,120,116,101,110,115,105,111,110,32,109,111,100,117, ++ 108,101,32,105,115,32,97,32,112,97,99,107,97,103,101,46, ++ 114,30,0,0,0,99,1,0,0,0,0,0,0,0,2,0, ++ 0,0,4,0,0,0,51,0,0,0,115,31,0,0,0,124, ++ 0,0,93,21,0,125,1,0,136,0,0,100,0,0,124,1, ++ 0,23,107,2,0,86,1,113,3,0,100,1,0,83,41,2, ++ 114,186,0,0,0,78,114,5,0,0,0,41,2,114,23,0, ++ 0,0,218,6,115,117,102,102,105,120,41,1,218,9,102,105, ++ 108,101,95,110,97,109,101,114,5,0,0,0,114,6,0,0, ++ 0,250,9,60,103,101,110,101,120,112,114,62,149,3,0,0, ++ 115,2,0,0,0,6,1,122,49,69,120,116,101,110,115,105, ++ 111,110,70,105,108,101,76,111,97,100,101,114,46,105,115,95, ++ 112,97,99,107,97,103,101,46,60,108,111,99,97,108,115,62, ++ 46,60,103,101,110,101,120,112,114,62,41,4,114,39,0,0, ++ 0,114,36,0,0,0,218,3,97,110,121,218,18,69,88,84, ++ 69,78,83,73,79,78,95,83,85,70,70,73,88,69,83,41, ++ 2,114,109,0,0,0,114,127,0,0,0,114,5,0,0,0, ++ 41,1,114,227,0,0,0,114,6,0,0,0,114,160,0,0, ++ 0,146,3,0,0,115,6,0,0,0,0,2,19,1,18,1, ++ 122,30,69,120,116,101,110,115,105,111,110,70,105,108,101,76, ++ 111,97,100,101,114,46,105,115,95,112,97,99,107,97,103,101, ++ 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, ++ 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, ++ 122,63,82,101,116,117,114,110,32,78,111,110,101,32,97,115, ++ 32,97,110,32,101,120,116,101,110,115,105,111,110,32,109,111, ++ 100,117,108,101,32,99,97,110,110,111,116,32,99,114,101,97, ++ 116,101,32,97,32,99,111,100,101,32,111,98,106,101,99,116, ++ 46,78,114,5,0,0,0,41,2,114,109,0,0,0,114,127, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,188,0,0,0,152,3,0,0,115,2,0,0,0, ++ 0,2,122,28,69,120,116,101,110,115,105,111,110,70,105,108, ++ 101,76,111,97,100,101,114,46,103,101,116,95,99,111,100,101, ++ 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, ++ 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, ++ 122,53,82,101,116,117,114,110,32,78,111,110,101,32,97,115, ++ 32,101,120,116,101,110,115,105,111,110,32,109,111,100,117,108, ++ 101,115,32,104,97,118,101,32,110,111,32,115,111,117,114,99, ++ 101,32,99,111,100,101,46,78,114,5,0,0,0,41,2,114, ++ 109,0,0,0,114,127,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,203,0,0,0,156,3,0, ++ 0,115,2,0,0,0,0,2,122,30,69,120,116,101,110,115, ++ 105,111,110,70,105,108,101,76,111,97,100,101,114,46,103,101, ++ 116,95,115,111,117,114,99,101,99,2,0,0,0,0,0,0, ++ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,7,0, ++ 0,0,124,0,0,106,0,0,83,41,1,122,58,82,101,116, ++ 117,114,110,32,116,104,101,32,112,97,116,104,32,116,111,32, ++ 116,104,101,32,115,111,117,114,99,101,32,102,105,108,101,32, ++ 97,115,32,102,111,117,110,100,32,98,121,32,116,104,101,32, ++ 102,105,110,100,101,114,46,41,1,114,36,0,0,0,41,2, ++ 114,109,0,0,0,114,127,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,158,0,0,0,160,3, ++ 0,0,115,2,0,0,0,0,3,122,32,69,120,116,101,110, ++ 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,103, ++ 101,116,95,102,105,108,101,110,97,109,101,78,41,14,114,113, ++ 0,0,0,114,112,0,0,0,114,114,0,0,0,114,115,0, ++ 0,0,114,186,0,0,0,114,214,0,0,0,114,216,0,0, ++ 0,114,187,0,0,0,114,192,0,0,0,114,160,0,0,0, ++ 114,188,0,0,0,114,203,0,0,0,114,124,0,0,0,114, ++ 158,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,225,0,0,0,113,3,0, ++ 0,115,20,0,0,0,12,6,6,2,12,4,12,4,12,3, ++ 12,8,12,6,12,6,12,4,12,4,114,225,0,0,0,99, ++ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, ++ 64,0,0,0,115,130,0,0,0,101,0,0,90,1,0,100, ++ 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, ++ 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, ++ 90,5,0,100,6,0,100,7,0,132,0,0,90,6,0,100, ++ 8,0,100,9,0,132,0,0,90,7,0,100,10,0,100,11, ++ 0,132,0,0,90,8,0,100,12,0,100,13,0,132,0,0, ++ 90,9,0,100,14,0,100,15,0,132,0,0,90,10,0,100, ++ 16,0,100,17,0,132,0,0,90,11,0,100,18,0,100,19, ++ 0,132,0,0,90,12,0,100,20,0,83,41,21,218,14,95, ++ 78,97,109,101,115,112,97,99,101,80,97,116,104,97,38,1, ++ 0,0,82,101,112,114,101,115,101,110,116,115,32,97,32,110, ++ 97,109,101,115,112,97,99,101,32,112,97,99,107,97,103,101, ++ 39,115,32,112,97,116,104,46,32,32,73,116,32,117,115,101, ++ 115,32,116,104,101,32,109,111,100,117,108,101,32,110,97,109, ++ 101,10,32,32,32,32,116,111,32,102,105,110,100,32,105,116, ++ 115,32,112,97,114,101,110,116,32,109,111,100,117,108,101,44, ++ 32,97,110,100,32,102,114,111,109,32,116,104,101,114,101,32, ++ 105,116,32,108,111,111,107,115,32,117,112,32,116,104,101,32, ++ 112,97,114,101,110,116,39,115,10,32,32,32,32,95,95,112, ++ 97,116,104,95,95,46,32,32,87,104,101,110,32,116,104,105, ++ 115,32,99,104,97,110,103,101,115,44,32,116,104,101,32,109, ++ 111,100,117,108,101,39,115,32,111,119,110,32,112,97,116,104, ++ 32,105,115,32,114,101,99,111,109,112,117,116,101,100,44,10, ++ 32,32,32,32,117,115,105,110,103,32,112,97,116,104,95,102, ++ 105,110,100,101,114,46,32,32,70,111,114,32,116,111,112,45, ++ 108,101,118,101,108,32,109,111,100,117,108,101,115,44,32,116, ++ 104,101,32,112,97,114,101,110,116,32,109,111,100,117,108,101, ++ 39,115,32,112,97,116,104,10,32,32,32,32,105,115,32,115, ++ 121,115,46,112,97,116,104,46,99,4,0,0,0,0,0,0, ++ 0,4,0,0,0,2,0,0,0,67,0,0,0,115,52,0, ++ 0,0,124,1,0,124,0,0,95,0,0,124,2,0,124,0, ++ 0,95,1,0,116,2,0,124,0,0,106,3,0,131,0,0, ++ 131,1,0,124,0,0,95,4,0,124,3,0,124,0,0,95, ++ 5,0,100,0,0,83,41,1,78,41,6,218,5,95,110,97, ++ 109,101,218,5,95,112,97,116,104,114,94,0,0,0,218,16, + 95,103,101,116,95,112,97,114,101,110,116,95,112,97,116,104, +- 99,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0, +- 0,67,0,0,0,115,118,0,0,0,116,0,0,124,0,0, +- 106,1,0,131,0,0,131,1,0,125,1,0,124,1,0,124, +- 0,0,106,2,0,107,3,0,114,111,0,124,0,0,106,3, +- 0,124,0,0,106,4,0,124,1,0,131,2,0,125,2,0, +- 124,2,0,100,0,0,107,9,0,114,102,0,124,2,0,106, +- 5,0,100,0,0,107,8,0,114,102,0,124,2,0,106,6, +- 0,114,102,0,124,2,0,106,6,0,124,0,0,95,7,0, +- 124,1,0,124,0,0,95,2,0,124,0,0,106,7,0,83, +- 41,1,78,41,8,114,93,0,0,0,114,233,0,0,0,114, +- 234,0,0,0,114,235,0,0,0,114,231,0,0,0,114,127, +- 0,0,0,114,156,0,0,0,114,232,0,0,0,41,3,114, +- 108,0,0,0,90,11,112,97,114,101,110,116,95,112,97,116, +- 104,114,164,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,12,95,114,101,99,97,108,99,117,108, +- 97,116,101,193,3,0,0,115,16,0,0,0,0,2,18,1, +- 15,1,21,3,27,1,9,1,12,1,9,1,122,27,95,78, +- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,114,101, +- 99,97,108,99,117,108,97,116,101,99,1,0,0,0,0,0, +- 0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,16, +- 0,0,0,116,0,0,124,0,0,106,1,0,131,0,0,131, +- 1,0,83,41,1,78,41,2,218,4,105,116,101,114,114,240, +- 0,0,0,41,1,114,108,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,8,95,95,105,116,101, +- 114,95,95,206,3,0,0,115,2,0,0,0,0,1,122,23, +- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, +- 95,105,116,101,114,95,95,99,1,0,0,0,0,0,0,0, ++ 218,17,95,108,97,115,116,95,112,97,114,101,110,116,95,112, ++ 97,116,104,218,12,95,112,97,116,104,95,102,105,110,100,101, ++ 114,41,4,114,109,0,0,0,114,107,0,0,0,114,36,0, ++ 0,0,218,11,112,97,116,104,95,102,105,110,100,101,114,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,186, ++ 0,0,0,173,3,0,0,115,8,0,0,0,0,1,9,1, ++ 9,1,21,1,122,23,95,78,97,109,101,115,112,97,99,101, ++ 80,97,116,104,46,95,95,105,110,105,116,95,95,99,1,0, ++ 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, ++ 0,0,115,53,0,0,0,124,0,0,106,0,0,106,1,0, ++ 100,1,0,131,1,0,92,3,0,125,1,0,125,2,0,125, ++ 3,0,124,2,0,100,2,0,107,2,0,114,43,0,100,6, ++ 0,83,124,1,0,100,5,0,102,2,0,83,41,7,122,62, ++ 82,101,116,117,114,110,115,32,97,32,116,117,112,108,101,32, ++ 111,102,32,40,112,97,114,101,110,116,45,109,111,100,117,108, ++ 101,45,110,97,109,101,44,32,112,97,114,101,110,116,45,112, ++ 97,116,104,45,97,116,116,114,45,110,97,109,101,41,114,59, ++ 0,0,0,114,31,0,0,0,114,8,0,0,0,114,36,0, ++ 0,0,90,8,95,95,112,97,116,104,95,95,41,2,122,3, ++ 115,121,115,122,4,112,97,116,104,41,2,114,232,0,0,0, ++ 114,33,0,0,0,41,4,114,109,0,0,0,114,223,0,0, ++ 0,218,3,100,111,116,90,2,109,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,23,95,102,105,110,100, ++ 95,112,97,114,101,110,116,95,112,97,116,104,95,110,97,109, ++ 101,115,179,3,0,0,115,8,0,0,0,0,2,27,1,12, ++ 2,4,3,122,38,95,78,97,109,101,115,112,97,99,101,80, ++ 97,116,104,46,95,102,105,110,100,95,112,97,114,101,110,116, ++ 95,112,97,116,104,95,110,97,109,101,115,99,1,0,0,0, ++ 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, ++ 115,38,0,0,0,124,0,0,106,0,0,131,0,0,92,2, ++ 0,125,1,0,125,2,0,116,1,0,116,2,0,106,3,0, ++ 124,1,0,25,124,2,0,131,2,0,83,41,1,78,41,4, ++ 114,239,0,0,0,114,118,0,0,0,114,8,0,0,0,218, ++ 7,109,111,100,117,108,101,115,41,3,114,109,0,0,0,90, ++ 18,112,97,114,101,110,116,95,109,111,100,117,108,101,95,110, ++ 97,109,101,90,14,112,97,116,104,95,97,116,116,114,95,110, ++ 97,109,101,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,234,0,0,0,189,3,0,0,115,4,0,0,0, ++ 0,1,18,1,122,31,95,78,97,109,101,115,112,97,99,101, ++ 80,97,116,104,46,95,103,101,116,95,112,97,114,101,110,116, ++ 95,112,97,116,104,99,1,0,0,0,0,0,0,0,3,0, ++ 0,0,3,0,0,0,67,0,0,0,115,118,0,0,0,116, ++ 0,0,124,0,0,106,1,0,131,0,0,131,1,0,125,1, ++ 0,124,1,0,124,0,0,106,2,0,107,3,0,114,111,0, ++ 124,0,0,106,3,0,124,0,0,106,4,0,124,1,0,131, ++ 2,0,125,2,0,124,2,0,100,0,0,107,9,0,114,102, ++ 0,124,2,0,106,5,0,100,0,0,107,8,0,114,102,0, ++ 124,2,0,106,6,0,114,102,0,124,2,0,106,6,0,124, ++ 0,0,95,7,0,124,1,0,124,0,0,95,2,0,124,0, ++ 0,106,7,0,83,41,1,78,41,8,114,94,0,0,0,114, ++ 234,0,0,0,114,235,0,0,0,114,236,0,0,0,114,232, ++ 0,0,0,114,128,0,0,0,114,157,0,0,0,114,233,0, ++ 0,0,41,3,114,109,0,0,0,90,11,112,97,114,101,110, ++ 116,95,112,97,116,104,114,165,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,12,95,114,101,99, ++ 97,108,99,117,108,97,116,101,193,3,0,0,115,16,0,0, ++ 0,0,2,18,1,15,1,21,3,27,1,9,1,12,1,9, ++ 1,122,27,95,78,97,109,101,115,112,97,99,101,80,97,116, ++ 104,46,95,114,101,99,97,108,99,117,108,97,116,101,99,1, ++ 0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,67, ++ 0,0,0,115,16,0,0,0,116,0,0,124,0,0,106,1, ++ 0,131,0,0,131,1,0,83,41,1,78,41,2,218,4,105, ++ 116,101,114,114,241,0,0,0,41,1,114,109,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,8, ++ 95,95,105,116,101,114,95,95,206,3,0,0,115,2,0,0, ++ 0,0,1,122,23,95,78,97,109,101,115,112,97,99,101,80, ++ 97,116,104,46,95,95,105,116,101,114,95,95,99,1,0,0, ++ 0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,0, ++ 0,115,16,0,0,0,116,0,0,124,0,0,106,1,0,131, ++ 0,0,131,1,0,83,41,1,78,41,2,114,32,0,0,0, ++ 114,241,0,0,0,41,1,114,109,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,7,95,95,108, ++ 101,110,95,95,209,3,0,0,115,2,0,0,0,0,1,122, ++ 22,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, ++ 95,95,108,101,110,95,95,99,1,0,0,0,0,0,0,0, + 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, - 0,116,0,0,124,0,0,106,1,0,131,0,0,131,1,0, -- 83,41,1,78,41,2,218,4,105,116,101,114,114,67,1,0, -- 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,8,95,95,105,116,101,114,95, -- 95,250,6,0,0,115,2,0,0,0,0,1,122,23,95,78, -- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,105, -- 116,101,114,95,95,99,1,0,0,0,0,0,0,0,1,0, -- 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,116, -- 0,0,124,0,0,106,1,0,131,0,0,131,1,0,83,41, -- 1,78,41,2,114,31,0,0,0,114,67,1,0,0,41,1, -- 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,7,95,95,108,101,110,95,95,253,6,0, -- 0,115,2,0,0,0,0,1,122,22,95,78,97,109,101,115, -- 112,97,99,101,80,97,116,104,46,95,95,108,101,110,95,95, -- 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, -- 0,67,0,0,0,115,16,0,0,0,100,1,0,106,0,0, -- 124,0,0,106,1,0,131,1,0,83,41,2,78,122,20,95, -- 78,97,109,101,115,112,97,99,101,80,97,116,104,40,123,33, -- 114,125,41,41,2,114,47,0,0,0,114,253,0,0,0,41, -- 1,114,71,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,101,0,0,0,0,7,0,0,115,2, -- 0,0,0,0,1,122,23,95,78,97,109,101,115,112,97,99, -- 101,80,97,116,104,46,95,95,114,101,112,114,95,95,99,2, -- 0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,67, -- 0,0,0,115,16,0,0,0,124,1,0,124,0,0,106,0, -- 0,131,0,0,107,6,0,83,41,1,78,41,1,114,67,1, -- 0,0,41,2,114,71,0,0,0,218,4,105,116,101,109,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,12, -- 95,95,99,111,110,116,97,105,110,115,95,95,3,7,0,0, -- 115,2,0,0,0,0,1,122,27,95,78,97,109,101,115,112, -- 97,99,101,80,97,116,104,46,95,95,99,111,110,116,97,105, -- 110,115,95,95,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,2,0,0,0,67,0,0,0,115,20,0,0,0,124,0, -- 0,106,0,0,106,1,0,124,1,0,131,1,0,1,100,0, -- 0,83,41,1,78,41,2,114,253,0,0,0,114,223,0,0, -- 0,41,2,114,71,0,0,0,114,71,1,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,223,0,0, -- 0,6,7,0,0,115,2,0,0,0,0,1,122,21,95,78, -- 97,109,101,115,112,97,99,101,80,97,116,104,46,97,112,112, -- 101,110,100,78,41,13,114,57,0,0,0,114,56,0,0,0, -- 114,58,0,0,0,114,59,0,0,0,114,72,0,0,0,114, -- 66,1,0,0,114,61,1,0,0,114,67,1,0,0,114,69, -- 1,0,0,114,70,1,0,0,114,101,0,0,0,114,72,1, -- 0,0,114,223,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,60,1,0,0, -- 210,6,0,0,115,20,0,0,0,12,5,6,2,12,6,12, -- 10,12,4,12,13,12,3,12,3,12,3,12,3,114,60,1, -- 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3, -- 0,0,0,64,0,0,0,115,106,0,0,0,101,0,0,90, -- 1,0,100,0,0,90,2,0,100,1,0,100,2,0,132,0, -- 0,90,3,0,101,4,0,100,3,0,100,4,0,132,0,0, -- 131,1,0,90,5,0,100,5,0,100,6,0,132,0,0,90, -- 6,0,100,7,0,100,8,0,132,0,0,90,7,0,100,9, -- 0,100,10,0,132,0,0,90,8,0,100,11,0,100,12,0, -- 132,0,0,90,9,0,100,13,0,100,14,0,132,0,0,90, -- 10,0,100,15,0,83,41,16,114,251,0,0,0,99,4,0, +- 83,41,1,78,41,2,114,31,0,0,0,114,240,0,0,0, +- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,7,95,95,108,101,110,95,95,209, +- 3,0,0,115,2,0,0,0,0,1,122,22,95,78,97,109, +- 101,115,112,97,99,101,80,97,116,104,46,95,95,108,101,110, +- 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2, +- 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, +- 0,0,124,0,0,106,1,0,131,1,0,83,41,2,78,122, +- 20,95,78,97,109,101,115,112,97,99,101,80,97,116,104,40, +- 123,33,114,125,41,41,2,114,47,0,0,0,114,232,0,0, +- 0,41,1,114,108,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,8,95,95,114,101,112,114,95, +- 95,212,3,0,0,115,2,0,0,0,0,1,122,23,95,78, +- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,114, +- 101,112,114,95,95,99,2,0,0,0,0,0,0,0,2,0, +- 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,124, +- 1,0,124,0,0,106,0,0,131,0,0,107,6,0,83,41, +- 1,78,41,1,114,240,0,0,0,41,2,114,108,0,0,0, +- 218,4,105,116,101,109,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,12,95,95,99,111,110,116,97,105,110, +- 115,95,95,215,3,0,0,115,2,0,0,0,0,1,122,27, +- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, +- 95,99,111,110,116,97,105,110,115,95,95,99,2,0,0,0, +- 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, +- 115,20,0,0,0,124,0,0,106,0,0,106,1,0,124,1, +- 0,131,1,0,1,100,0,0,83,41,1,78,41,2,114,232, +- 0,0,0,114,163,0,0,0,41,2,114,108,0,0,0,114, +- 245,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,163,0,0,0,218,3,0,0,115,2,0,0, +- 0,0,1,122,21,95,78,97,109,101,115,112,97,99,101,80, +- 97,116,104,46,97,112,112,101,110,100,78,41,13,114,112,0, +- 0,0,114,111,0,0,0,114,113,0,0,0,114,114,0,0, +- 0,114,185,0,0,0,114,238,0,0,0,114,233,0,0,0, +- 114,240,0,0,0,114,242,0,0,0,114,243,0,0,0,114, +- 244,0,0,0,114,246,0,0,0,114,163,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,230,0,0,0,166,3,0,0,115,20,0,0,0, +- 12,5,6,2,12,6,12,10,12,4,12,13,12,3,12,3, +- 12,3,12,3,114,230,0,0,0,99,0,0,0,0,0,0, +- 0,0,0,0,0,0,3,0,0,0,64,0,0,0,115,118, +- 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, +- 1,0,100,2,0,132,0,0,90,3,0,101,4,0,100,3, +- 0,100,4,0,132,0,0,131,1,0,90,5,0,100,5,0, +- 100,6,0,132,0,0,90,6,0,100,7,0,100,8,0,132, +- 0,0,90,7,0,100,9,0,100,10,0,132,0,0,90,8, +- 0,100,11,0,100,12,0,132,0,0,90,9,0,100,13,0, +- 100,14,0,132,0,0,90,10,0,100,15,0,100,16,0,132, +- 0,0,90,11,0,100,17,0,83,41,18,218,16,95,78,97, +- 109,101,115,112,97,99,101,76,111,97,100,101,114,99,4,0, - 0,0,0,0,0,0,4,0,0,0,4,0,0,0,67,0, - 0,0,115,25,0,0,0,116,0,0,124,1,0,124,2,0, - 124,3,0,131,3,0,124,0,0,95,1,0,100,0,0,83, -- 41,1,78,41,2,114,60,1,0,0,114,253,0,0,0,41, -- 4,114,71,0,0,0,114,67,0,0,0,114,35,0,0,0, -- 114,64,1,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,72,0,0,0,12,7,0,0,115,2,0, +- 41,1,78,41,2,114,230,0,0,0,114,232,0,0,0,41, +- 4,114,108,0,0,0,114,106,0,0,0,114,35,0,0,0, +- 114,236,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,185,0,0,0,224,3,0,0,115,2,0, - 0,0,0,1,122,25,95,78,97,109,101,115,112,97,99,101, - 76,111,97,100,101,114,46,95,95,105,110,105,116,95,95,99, - 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, @@ -37634,2259 +34855,1636 @@ diff -Nru orig/Python/importlib.h modified/Python/importlib.h - 116,115,101,108,102,46,10,10,32,32,32,32,32,32,32,32, - 122,25,60,109,111,100,117,108,101,32,123,33,114,125,32,40, - 110,97,109,101,115,112,97,99,101,41,62,41,2,114,47,0, -- 0,0,114,57,0,0,0,41,2,114,11,1,0,0,114,179, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,205,0,0,0,15,7,0,0,115,2,0,0,0, -- 0,7,122,28,95,78,97,109,101,115,112,97,99,101,76,111, -- 97,100,101,114,46,109,111,100,117,108,101,95,114,101,112,114, -- 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, -- 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, -- 78,84,114,4,0,0,0,41,2,114,71,0,0,0,114,158, +- 0,0,114,112,0,0,0,41,2,114,170,0,0,0,114,190, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,219,0,0,0,24,7,0,0,115,2,0,0,0, -- 0,1,122,27,95,78,97,109,101,115,112,97,99,101,76,111, -- 97,100,101,114,46,105,115,95,112,97,99,107,97,103,101,99, -- 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, -- 67,0,0,0,115,4,0,0,0,100,1,0,83,41,2,78, -- 114,30,0,0,0,114,4,0,0,0,41,2,114,71,0,0, -- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,114,16,1,0,0,27,7,0,0,115,2, -- 0,0,0,0,1,122,27,95,78,97,109,101,115,112,97,99, -- 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, -- 99,101,99,2,0,0,0,0,0,0,0,2,0,0,0,6, -- 0,0,0,67,0,0,0,115,22,0,0,0,116,0,0,100, -- 1,0,100,2,0,100,3,0,100,4,0,100,5,0,131,3, -- 1,83,41,6,78,114,30,0,0,0,122,8,60,115,116,114, -- 105,110,103,62,114,175,0,0,0,114,42,1,0,0,84,41, -- 1,114,43,1,0,0,41,2,114,71,0,0,0,114,158,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,15,1,0,0,30,7,0,0,115,2,0,0,0,0, -- 1,122,25,95,78,97,109,101,115,112,97,99,101,76,111,97, -- 100,101,114,46,103,101,116,95,99,111,100,101,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,1,0,0,0,67,0,0, -- 0,115,4,0,0,0,100,0,0,83,41,1,78,114,4,0, -- 0,0,41,2,114,71,0,0,0,114,179,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,1,1, -- 0,0,33,7,0,0,115,2,0,0,0,0,1,122,28,95, +- 0,0,218,11,109,111,100,117,108,101,95,114,101,112,114,227, +- 3,0,0,115,2,0,0,0,0,7,122,28,95,78,97,109, +- 101,115,112,97,99,101,76,111,97,100,101,114,46,109,111,100, +- 117,108,101,95,114,101,112,114,99,2,0,0,0,0,0,0, +- 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, +- 0,0,100,1,0,83,41,2,78,84,114,4,0,0,0,41, +- 2,114,108,0,0,0,114,126,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,159,0,0,0,236, +- 3,0,0,115,2,0,0,0,0,1,122,27,95,78,97,109, +- 101,115,112,97,99,101,76,111,97,100,101,114,46,105,115,95, +- 112,97,99,107,97,103,101,99,2,0,0,0,0,0,0,0, +- 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, +- 0,100,1,0,83,41,2,78,114,30,0,0,0,114,4,0, +- 0,0,41,2,114,108,0,0,0,114,126,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,202,0, +- 0,0,239,3,0,0,115,2,0,0,0,0,1,122,27,95, - 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46, -- 101,120,101,99,95,109,111,100,117,108,101,99,2,0,0,0, -- 0,0,0,0,2,0,0,0,3,0,0,0,67,0,0,0, -- 115,29,0,0,0,116,0,0,100,1,0,124,0,0,106,1, -- 0,131,2,0,1,116,2,0,124,0,0,124,1,0,131,2, -- 0,83,41,2,122,98,76,111,97,100,32,97,32,110,97,109, -- 101,115,112,97,99,101,32,109,111,100,117,108,101,46,10,10, -- 32,32,32,32,32,32,32,32,84,104,105,115,32,109,101,116, -- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, -- 100,46,32,32,85,115,101,32,101,120,101,99,95,109,111,100, -- 117,108,101,40,41,32,105,110,115,116,101,97,100,46,10,10, -- 32,32,32,32,32,32,32,32,122,38,110,97,109,101,115,112, -- 97,99,101,32,109,111,100,117,108,101,32,108,111,97,100,101, -- 100,32,119,105,116,104,32,112,97,116,104,32,123,33,114,125, -- 41,3,114,152,0,0,0,114,253,0,0,0,114,180,0,0, -- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,4,1,0, -- 0,36,7,0,0,115,4,0,0,0,0,7,16,1,122,28, -- 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, -- 46,108,111,97,100,95,109,111,100,117,108,101,78,41,11,114, -- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,72, -- 0,0,0,114,18,1,0,0,114,205,0,0,0,114,219,0, -- 0,0,114,16,1,0,0,114,15,1,0,0,114,1,1,0, -- 0,114,4,1,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,251,0,0,0,11, -- 7,0,0,115,14,0,0,0,12,1,12,3,18,9,12,3, -- 12,3,12,3,12,3,114,251,0,0,0,99,0,0,0,0, -- 0,0,0,0,0,0,0,0,5,0,0,0,64,0,0,0, -- 115,160,0,0,0,101,0,0,90,1,0,100,0,0,90,2, -- 0,100,1,0,90,3,0,101,4,0,100,2,0,100,3,0, -- 132,0,0,131,1,0,90,5,0,101,4,0,100,4,0,100, -- 5,0,132,0,0,131,1,0,90,6,0,101,4,0,100,6, -- 0,100,7,0,132,0,0,131,1,0,90,7,0,101,4,0, -- 100,8,0,100,9,0,132,0,0,131,1,0,90,8,0,101, -- 4,0,100,10,0,100,11,0,100,12,0,132,1,0,131,1, -- 0,90,9,0,101,4,0,100,10,0,100,10,0,100,13,0, -- 100,14,0,132,2,0,131,1,0,90,10,0,101,4,0,100, -- 10,0,100,15,0,100,16,0,132,1,0,131,1,0,90,11, -- 0,100,10,0,83,41,17,218,10,80,97,116,104,70,105,110, -- 100,101,114,122,62,77,101,116,97,32,112,97,116,104,32,102, -- 105,110,100,101,114,32,102,111,114,32,115,121,115,46,112,97, -- 116,104,32,97,110,100,32,112,97,99,107,97,103,101,32,95, -- 95,112,97,116,104,95,95,32,97,116,116,114,105,98,117,116, -- 101,115,46,99,1,0,0,0,0,0,0,0,2,0,0,0, -- 4,0,0,0,67,0,0,0,115,58,0,0,0,120,51,0, -- 116,0,0,106,1,0,106,2,0,131,0,0,68,93,34,0, -- 125,1,0,116,3,0,124,1,0,100,1,0,131,2,0,114, -- 16,0,124,1,0,106,4,0,131,0,0,1,113,16,0,113, -- 16,0,87,100,2,0,83,41,3,122,125,67,97,108,108,32, -- 116,104,101,32,105,110,118,97,108,105,100,97,116,101,95,99, -- 97,99,104,101,115,40,41,32,109,101,116,104,111,100,32,111, -- 110,32,97,108,108,32,112,97,116,104,32,101,110,116,114,121, -- 32,102,105,110,100,101,114,115,10,32,32,32,32,32,32,32, -- 32,115,116,111,114,101,100,32,105,110,32,115,121,115,46,112, -+ 0,64,0,0,0,115,160,0,0,0,101,0,0,90,1,0, -+ 100,0,0,90,2,0,100,1,0,90,3,0,101,4,0,100, -+ 2,0,100,3,0,132,0,0,131,1,0,90,5,0,101,4, -+ 0,100,4,0,100,5,0,132,0,0,131,1,0,90,6,0, -+ 101,4,0,100,6,0,100,7,0,132,0,0,131,1,0,90, -+ 7,0,101,4,0,100,8,0,100,9,0,132,0,0,131,1, -+ 0,90,8,0,101,4,0,100,10,0,100,11,0,100,12,0, -+ 132,1,0,131,1,0,90,9,0,101,4,0,100,10,0,100, -+ 10,0,100,13,0,100,14,0,132,2,0,131,1,0,90,10, -+ 0,101,4,0,100,10,0,100,15,0,100,16,0,132,1,0, -+ 131,1,0,90,11,0,100,10,0,83,41,17,218,10,80,97, -+ 116,104,70,105,110,100,101,114,122,62,77,101,116,97,32,112, -+ 97,116,104,32,102,105,110,100,101,114,32,102,111,114,32,115, -+ 121,115,46,112,97,116,104,32,97,110,100,32,112,97,99,107, -+ 97,103,101,32,95,95,112,97,116,104,95,95,32,97,116,116, -+ 114,105,98,117,116,101,115,46,99,1,0,0,0,0,0,0, -+ 0,2,0,0,0,4,0,0,0,67,0,0,0,115,58,0, -+ 0,0,120,51,0,116,0,0,106,1,0,106,2,0,131,0, -+ 0,68,93,34,0,125,1,0,116,3,0,124,1,0,100,1, -+ 0,131,2,0,114,16,0,124,1,0,106,4,0,131,0,0, -+ 1,113,16,0,113,16,0,87,100,2,0,83,41,3,122,125, -+ 67,97,108,108,32,116,104,101,32,105,110,118,97,108,105,100, -+ 97,116,101,95,99,97,99,104,101,115,40,41,32,109,101,116, -+ 104,111,100,32,111,110,32,97,108,108,32,112,97,116,104,32, -+ 101,110,116,114,121,32,102,105,110,100,101,114,115,10,32,32, -+ 32,32,32,32,32,32,115,116,111,114,101,100,32,105,110,32, -+ 115,121,115,46,112,97,116,104,95,105,109,112,111,114,116,101, -+ 114,95,99,97,99,104,101,115,32,40,119,104,101,114,101,32, -+ 105,109,112,108,101,109,101,110,116,101,100,41,46,218,17,105, -+ 110,118,97,108,105,100,97,116,101,95,99,97,99,104,101,115, -+ 78,41,5,114,8,0,0,0,218,19,112,97,116,104,95,105, -+ 109,112,111,114,116,101,114,95,99,97,99,104,101,218,6,118, -+ 97,108,117,101,115,114,61,0,0,0,114,75,1,0,0,41, -+ 2,114,12,1,0,0,218,6,102,105,110,100,101,114,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,75,1, -+ 0,0,53,7,0,0,115,6,0,0,0,0,4,22,1,15, -+ 1,122,28,80,97,116,104,70,105,110,100,101,114,46,105,110, -+ 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,99, -+ 2,0,0,0,0,0,0,0,3,0,0,0,12,0,0,0, -+ 67,0,0,0,115,94,0,0,0,116,0,0,106,1,0,115, -+ 28,0,116,2,0,106,3,0,100,1,0,116,4,0,131,2, -+ 0,1,110,0,0,120,59,0,116,0,0,106,1,0,68,93, -+ 44,0,125,2,0,121,14,0,124,2,0,124,1,0,131,1, -+ 0,83,87,113,38,0,4,116,5,0,107,10,0,114,81,0, -+ 1,1,1,119,38,0,89,113,38,0,88,113,38,0,87,100, -+ 2,0,83,100,2,0,83,41,3,122,113,83,101,97,114,99, -+ 104,32,115,101,113,117,101,110,99,101,32,111,102,32,104,111, -+ 111,107,115,32,102,111,114,32,97,32,102,105,110,100,101,114, -+ 32,102,111,114,32,39,112,97,116,104,39,46,10,10,32,32, -+ 32,32,32,32,32,32,73,102,32,39,104,111,111,107,115,39, -+ 32,105,115,32,102,97,108,115,101,32,116,104,101,110,32,117, -+ 115,101,32,115,121,115,46,112,97,116,104,95,104,111,111,107, -+ 115,46,10,10,32,32,32,32,32,32,32,32,122,23,115,121, -+ 115,46,112,97,116,104,95,104,111,111,107,115,32,105,115,32, -+ 101,109,112,116,121,78,41,6,114,8,0,0,0,218,10,112, -+ 97,116,104,95,104,111,111,107,115,114,167,0,0,0,114,168, -+ 0,0,0,114,169,0,0,0,114,154,0,0,0,41,3,114, -+ 12,1,0,0,114,36,0,0,0,90,4,104,111,111,107,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,11, -+ 95,112,97,116,104,95,104,111,111,107,115,61,7,0,0,115, -+ 16,0,0,0,0,7,9,1,19,1,16,1,3,1,14,1, -+ 13,1,12,2,122,22,80,97,116,104,70,105,110,100,101,114, -+ 46,95,112,97,116,104,95,104,111,111,107,115,99,2,0,0, -+ 0,0,0,0,0,3,0,0,0,11,0,0,0,67,0,0, -+ 0,115,97,0,0,0,124,1,0,100,1,0,107,2,0,114, -+ 27,0,116,0,0,106,1,0,131,0,0,125,1,0,110,0, -+ 0,121,17,0,116,2,0,106,3,0,124,1,0,25,125,2, -+ 0,87,110,46,0,4,116,4,0,107,10,0,114,92,0,1, -+ 1,1,124,0,0,106,5,0,124,1,0,131,1,0,125,2, -+ 0,124,2,0,116,2,0,106,3,0,124,1,0,60,89,110, -+ 1,0,88,124,2,0,83,41,2,122,210,71,101,116,32,116, -+ 104,101,32,102,105,110,100,101,114,32,102,111,114,32,116,104, -+ 101,32,112,97,116,104,32,101,110,116,114,121,32,102,114,111, -+ 109,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, -+ 116,101,114,95,99,97,99,104,101,46,10,10,32,32,32,32, -+ 32,32,32,32,73,102,32,116,104,101,32,112,97,116,104,32, -+ 101,110,116,114,121,32,105,115,32,110,111,116,32,105,110,32, -+ 116,104,101,32,99,97,99,104,101,44,32,102,105,110,100,32, -+ 116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32, -+ 102,105,110,100,101,114,10,32,32,32,32,32,32,32,32,97, -+ 110,100,32,99,97,99,104,101,32,105,116,46,32,73,102,32, -+ 110,111,32,102,105,110,100,101,114,32,105,115,32,97,118,97, -+ 105,108,97,98,108,101,44,32,115,116,111,114,101,32,78,111, -+ 110,101,46,10,10,32,32,32,32,32,32,32,32,114,31,0, -+ 0,0,41,6,114,4,0,0,0,114,46,0,0,0,114,8, -+ 0,0,0,114,76,1,0,0,114,80,0,0,0,114,80,1, -+ 0,0,41,3,114,12,1,0,0,114,36,0,0,0,114,78, -+ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,218,20,95,112,97,116,104,95,105,109,112,111,114,116, -+ 101,114,95,99,97,99,104,101,78,7,0,0,115,16,0,0, -+ 0,0,8,12,1,15,1,3,1,17,1,13,1,15,1,18, -+ 1,122,31,80,97,116,104,70,105,110,100,101,114,46,95,112, - 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, -- 104,101,115,32,40,119,104,101,114,101,32,105,109,112,108,101, -- 109,101,110,116,101,100,41,46,218,17,105,110,118,97,108,105, -- 100,97,116,101,95,99,97,99,104,101,115,78,41,5,114,7, -- 0,0,0,218,19,112,97,116,104,95,105,109,112,111,114,116, -- 101,114,95,99,97,99,104,101,218,6,118,97,108,117,101,115, -- 114,60,0,0,0,114,74,1,0,0,41,2,114,11,1,0, -- 0,218,6,102,105,110,100,101,114,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,74,1,0,0,53,7,0, -- 0,115,6,0,0,0,0,4,22,1,15,1,122,28,80,97, -- 116,104,70,105,110,100,101,114,46,105,110,118,97,108,105,100, -- 97,116,101,95,99,97,99,104,101,115,99,2,0,0,0,0, -- 0,0,0,3,0,0,0,12,0,0,0,67,0,0,0,115, -- 94,0,0,0,116,0,0,106,1,0,115,28,0,116,2,0, -- 106,3,0,100,1,0,116,4,0,131,2,0,1,110,0,0, -- 120,59,0,116,0,0,106,1,0,68,93,44,0,125,2,0, -- 121,14,0,124,2,0,124,1,0,131,1,0,83,87,113,38, -- 0,4,116,5,0,107,10,0,114,81,0,1,1,1,119,38, -- 0,89,113,38,0,88,113,38,0,87,100,2,0,83,100,2, -- 0,83,41,3,122,113,83,101,97,114,99,104,32,115,101,113, -- 117,101,110,99,101,32,111,102,32,104,111,111,107,115,32,102, -- 111,114,32,97,32,102,105,110,100,101,114,32,102,111,114,32, -- 39,112,97,116,104,39,46,10,10,32,32,32,32,32,32,32, -- 32,73,102,32,39,104,111,111,107,115,39,32,105,115,32,102, -- 97,108,115,101,32,116,104,101,110,32,117,115,101,32,115,121, -- 115,46,112,97,116,104,95,104,111,111,107,115,46,10,10,32, -- 32,32,32,32,32,32,32,122,23,115,121,115,46,112,97,116, -- 104,95,104,111,111,107,115,32,105,115,32,101,109,112,116,121, -- 78,41,6,114,7,0,0,0,218,10,112,97,116,104,95,104, -- 111,111,107,115,114,166,0,0,0,114,167,0,0,0,114,168, -- 0,0,0,114,153,0,0,0,41,3,114,11,1,0,0,114, -- 35,0,0,0,90,4,104,111,111,107,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,11,95,112,97,116,104, -- 95,104,111,111,107,115,61,7,0,0,115,16,0,0,0,0, -- 7,9,1,19,1,16,1,3,1,14,1,13,1,12,2,122, -- 22,80,97,116,104,70,105,110,100,101,114,46,95,112,97,116, -- 104,95,104,111,111,107,115,99,2,0,0,0,0,0,0,0, -- 3,0,0,0,11,0,0,0,67,0,0,0,115,97,0,0, -- 0,124,1,0,100,1,0,107,2,0,114,27,0,116,0,0, -- 106,1,0,131,0,0,125,1,0,110,0,0,121,17,0,116, -- 2,0,106,3,0,124,1,0,25,125,2,0,87,110,46,0, -- 4,116,4,0,107,10,0,114,92,0,1,1,1,124,0,0, -- 106,5,0,124,1,0,131,1,0,125,2,0,124,2,0,116, -- 2,0,106,3,0,124,1,0,60,89,110,1,0,88,124,2, -- 0,83,41,2,122,210,71,101,116,32,116,104,101,32,102,105, -- 110,100,101,114,32,102,111,114,32,116,104,101,32,112,97,116, -- 104,32,101,110,116,114,121,32,102,114,111,109,32,115,121,115, -- 46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,99, -- 97,99,104,101,46,10,10,32,32,32,32,32,32,32,32,73, -- 102,32,116,104,101,32,112,97,116,104,32,101,110,116,114,121, -- 32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99, -- 97,99,104,101,44,32,102,105,110,100,32,116,104,101,32,97, -- 112,112,114,111,112,114,105,97,116,101,32,102,105,110,100,101, -- 114,10,32,32,32,32,32,32,32,32,97,110,100,32,99,97, -- 99,104,101,32,105,116,46,32,73,102,32,110,111,32,102,105, -- 110,100,101,114,32,105,115,32,97,118,97,105,108,97,98,108, -- 101,44,32,115,116,111,114,101,32,78,111,110,101,46,10,10, -- 32,32,32,32,32,32,32,32,114,30,0,0,0,41,6,114, -- 3,0,0,0,114,45,0,0,0,114,7,0,0,0,114,75, -- 1,0,0,114,79,0,0,0,114,79,1,0,0,41,3,114, -- 11,1,0,0,114,35,0,0,0,114,77,1,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,20,95, -- 112,97,116,104,95,105,109,112,111,114,116,101,114,95,99,97, -- 99,104,101,78,7,0,0,115,16,0,0,0,0,8,12,1, -- 15,1,3,1,17,1,13,1,15,1,18,1,122,31,80,97, +- 103,101,116,95,115,111,117,114,99,101,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,6,0,0,0,67,0,0,0,115, +- 22,0,0,0,116,0,0,100,1,0,100,2,0,100,3,0, +- 100,4,0,100,5,0,131,3,1,83,41,6,78,114,30,0, +- 0,0,122,8,60,115,116,114,105,110,103,62,114,189,0,0, +- 0,114,204,0,0,0,84,41,1,114,205,0,0,0,41,2, +- 114,108,0,0,0,114,126,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,187,0,0,0,242,3, ++ 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, ++ 83,41,2,78,122,20,95,78,97,109,101,115,112,97,99,101, ++ 80,97,116,104,40,123,33,114,125,41,41,2,114,48,0,0, ++ 0,114,233,0,0,0,41,1,114,109,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,8,95,95, ++ 114,101,112,114,95,95,212,3,0,0,115,2,0,0,0,0, ++ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, ++ 104,46,95,95,114,101,112,114,95,95,99,2,0,0,0,0, ++ 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, ++ 16,0,0,0,124,1,0,124,0,0,106,0,0,131,0,0, ++ 107,6,0,83,41,1,78,41,1,114,241,0,0,0,41,2, ++ 114,109,0,0,0,218,4,105,116,101,109,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,12,95,95,99,111, ++ 110,116,97,105,110,115,95,95,215,3,0,0,115,2,0,0, ++ 0,0,1,122,27,95,78,97,109,101,115,112,97,99,101,80, ++ 97,116,104,46,95,95,99,111,110,116,97,105,110,115,95,95, ++ 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, ++ 0,67,0,0,0,115,20,0,0,0,124,0,0,106,0,0, ++ 106,1,0,124,1,0,131,1,0,1,100,0,0,83,41,1, ++ 78,41,2,114,233,0,0,0,114,164,0,0,0,41,2,114, ++ 109,0,0,0,114,246,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,164,0,0,0,218,3,0, ++ 0,115,2,0,0,0,0,1,122,21,95,78,97,109,101,115, ++ 112,97,99,101,80,97,116,104,46,97,112,112,101,110,100,78, ++ 41,13,114,113,0,0,0,114,112,0,0,0,114,114,0,0, ++ 0,114,115,0,0,0,114,186,0,0,0,114,239,0,0,0, ++ 114,234,0,0,0,114,241,0,0,0,114,243,0,0,0,114, ++ 244,0,0,0,114,245,0,0,0,114,247,0,0,0,114,164, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,231,0,0,0,166,3,0,0, ++ 115,20,0,0,0,12,5,6,2,12,6,12,10,12,4,12, ++ 13,12,3,12,3,12,3,12,3,114,231,0,0,0,99,0, ++ 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,64, ++ 0,0,0,115,118,0,0,0,101,0,0,90,1,0,100,0, ++ 0,90,2,0,100,1,0,100,2,0,132,0,0,90,3,0, ++ 101,4,0,100,3,0,100,4,0,132,0,0,131,1,0,90, ++ 5,0,100,5,0,100,6,0,132,0,0,90,6,0,100,7, ++ 0,100,8,0,132,0,0,90,7,0,100,9,0,100,10,0, ++ 132,0,0,90,8,0,100,11,0,100,12,0,132,0,0,90, ++ 9,0,100,13,0,100,14,0,132,0,0,90,10,0,100,15, ++ 0,100,16,0,132,0,0,90,11,0,100,17,0,83,41,18, ++ 218,16,95,78,97,109,101,115,112,97,99,101,76,111,97,100, ++ 101,114,99,4,0,0,0,0,0,0,0,4,0,0,0,4, ++ 0,0,0,67,0,0,0,115,25,0,0,0,116,0,0,124, ++ 1,0,124,2,0,124,3,0,131,3,0,124,0,0,95,1, ++ 0,100,0,0,83,41,1,78,41,2,114,231,0,0,0,114, ++ 233,0,0,0,41,4,114,109,0,0,0,114,107,0,0,0, ++ 114,36,0,0,0,114,237,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,186,0,0,0,224,3, + 0,0,115,2,0,0,0,0,1,122,25,95,78,97,109,101, +- 115,112,97,99,101,76,111,97,100,101,114,46,103,101,116,95, +- 99,111,100,101,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, +- 0,83,41,2,122,42,85,115,101,32,100,101,102,97,117,108, +- 116,32,115,101,109,97,110,116,105,99,115,32,102,111,114,32, +- 109,111,100,117,108,101,32,99,114,101,97,116,105,111,110,46, +- 78,114,4,0,0,0,41,2,114,108,0,0,0,114,164,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,186,0,0,0,245,3,0,0,115,0,0,0,0,122, +- 30,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, +- 114,46,99,114,101,97,116,101,95,109,111,100,117,108,101,99, +- 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, +- 67,0,0,0,115,4,0,0,0,100,0,0,83,41,1,78, +- 114,4,0,0,0,41,2,114,108,0,0,0,114,190,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 114,191,0,0,0,248,3,0,0,115,2,0,0,0,0,1, +- 122,28,95,78,97,109,101,115,112,97,99,101,76,111,97,100, +- 101,114,46,101,120,101,99,95,109,111,100,117,108,101,99,2, +- 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,67, +- 0,0,0,115,32,0,0,0,116,0,0,100,1,0,124,0, +- 0,106,1,0,131,2,0,1,116,2,0,106,3,0,124,0, +- 0,124,1,0,131,2,0,83,41,2,122,98,76,111,97,100, +- 32,97,32,110,97,109,101,115,112,97,99,101,32,109,111,100, +- 117,108,101,46,10,10,32,32,32,32,32,32,32,32,84,104, +- 105,115,32,109,101,116,104,111,100,32,105,115,32,100,101,112, +- 114,101,99,97,116,101,100,46,32,32,85,115,101,32,101,120, +- 101,99,95,109,111,100,117,108,101,40,41,32,105,110,115,116, +- 101,97,100,46,10,10,32,32,32,32,32,32,32,32,122,38, +- 110,97,109,101,115,112,97,99,101,32,109,111,100,117,108,101, +- 32,108,111,97,100,101,100,32,119,105,116,104,32,112,97,116, +- 104,32,123,33,114,125,41,4,114,105,0,0,0,114,232,0, +- 0,0,114,121,0,0,0,114,192,0,0,0,41,2,114,108, +- 0,0,0,114,126,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,193,0,0,0,251,3,0,0, +- 115,4,0,0,0,0,7,16,1,122,28,95,78,97,109,101, +- 115,112,97,99,101,76,111,97,100,101,114,46,108,111,97,100, +- 95,109,111,100,117,108,101,78,41,12,114,112,0,0,0,114, +- 111,0,0,0,114,113,0,0,0,114,185,0,0,0,114,183, +- 0,0,0,114,248,0,0,0,114,159,0,0,0,114,202,0, +- 0,0,114,187,0,0,0,114,186,0,0,0,114,191,0,0, +- 0,114,193,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,247,0,0,0,223, +- 3,0,0,115,16,0,0,0,12,1,12,3,18,9,12,3, +- 12,3,12,3,12,3,12,3,114,247,0,0,0,99,0,0, +- 0,0,0,0,0,0,0,0,0,0,5,0,0,0,64,0, +- 0,0,115,160,0,0,0,101,0,0,90,1,0,100,0,0, +- 90,2,0,100,1,0,90,3,0,101,4,0,100,2,0,100, +- 3,0,132,0,0,131,1,0,90,5,0,101,4,0,100,4, +- 0,100,5,0,132,0,0,131,1,0,90,6,0,101,4,0, +- 100,6,0,100,7,0,132,0,0,131,1,0,90,7,0,101, +- 4,0,100,8,0,100,9,0,132,0,0,131,1,0,90,8, +- 0,101,4,0,100,10,0,100,11,0,100,12,0,132,1,0, +- 131,1,0,90,9,0,101,4,0,100,10,0,100,10,0,100, +- 13,0,100,14,0,132,2,0,131,1,0,90,10,0,101,4, +- 0,100,10,0,100,15,0,100,16,0,132,1,0,131,1,0, +- 90,11,0,100,10,0,83,41,17,218,10,80,97,116,104,70, +- 105,110,100,101,114,122,62,77,101,116,97,32,112,97,116,104, +- 32,102,105,110,100,101,114,32,102,111,114,32,115,121,115,46, +- 112,97,116,104,32,97,110,100,32,112,97,99,107,97,103,101, +- 32,95,95,112,97,116,104,95,95,32,97,116,116,114,105,98, +- 117,116,101,115,46,99,1,0,0,0,0,0,0,0,2,0, +- 0,0,4,0,0,0,67,0,0,0,115,55,0,0,0,120, +- 48,0,116,0,0,106,1,0,106,2,0,131,0,0,68,93, +- 31,0,125,1,0,116,3,0,124,1,0,100,1,0,131,2, +- 0,114,16,0,124,1,0,106,4,0,131,0,0,1,113,16, +- 0,87,100,2,0,83,41,3,122,125,67,97,108,108,32,116, +- 104,101,32,105,110,118,97,108,105,100,97,116,101,95,99,97, +- 99,104,101,115,40,41,32,109,101,116,104,111,100,32,111,110, +- 32,97,108,108,32,112,97,116,104,32,101,110,116,114,121,32, +- 102,105,110,100,101,114,115,10,32,32,32,32,32,32,32,32, +- 115,116,111,114,101,100,32,105,110,32,115,121,115,46,112,97, +- 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104, +- 101,115,32,40,119,104,101,114,101,32,105,109,112,108,101,109, +- 101,110,116,101,100,41,46,218,17,105,110,118,97,108,105,100, +- 97,116,101,95,99,97,99,104,101,115,78,41,5,114,7,0, +- 0,0,218,19,112,97,116,104,95,105,109,112,111,114,116,101, +- 114,95,99,97,99,104,101,218,6,118,97,108,117,101,115,114, +- 115,0,0,0,114,250,0,0,0,41,2,114,170,0,0,0, +- 218,6,102,105,110,100,101,114,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,250,0,0,0,12,4,0,0, +- 115,6,0,0,0,0,4,22,1,15,1,122,28,80,97,116, +- 104,70,105,110,100,101,114,46,105,110,118,97,108,105,100,97, +- 116,101,95,99,97,99,104,101,115,99,2,0,0,0,0,0, +- 0,0,3,0,0,0,12,0,0,0,67,0,0,0,115,107, +- 0,0,0,116,0,0,106,1,0,100,1,0,107,9,0,114, +- 41,0,116,0,0,106,1,0,12,114,41,0,116,2,0,106, +- 3,0,100,2,0,116,4,0,131,2,0,1,120,59,0,116, +- 0,0,106,1,0,68,93,44,0,125,2,0,121,14,0,124, +- 2,0,124,1,0,131,1,0,83,87,113,51,0,4,116,5, +- 0,107,10,0,114,94,0,1,1,1,119,51,0,89,113,51, +- 0,88,113,51,0,87,100,1,0,83,100,1,0,83,41,3, +- 122,113,83,101,97,114,99,104,32,115,101,113,117,101,110,99, +- 101,32,111,102,32,104,111,111,107,115,32,102,111,114,32,97, +- 32,102,105,110,100,101,114,32,102,111,114,32,39,112,97,116, +- 104,39,46,10,10,32,32,32,32,32,32,32,32,73,102,32, +- 39,104,111,111,107,115,39,32,105,115,32,102,97,108,115,101, +- 32,116,104,101,110,32,117,115,101,32,115,121,115,46,112,97, +- 116,104,95,104,111,111,107,115,46,10,10,32,32,32,32,32, +- 32,32,32,78,122,23,115,121,115,46,112,97,116,104,95,104, +- 111,111,107,115,32,105,115,32,101,109,112,116,121,41,6,114, +- 7,0,0,0,218,10,112,97,116,104,95,104,111,111,107,115, +- 114,60,0,0,0,114,61,0,0,0,114,125,0,0,0,114, +- 107,0,0,0,41,3,114,170,0,0,0,114,35,0,0,0, +- 90,4,104,111,111,107,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,11,95,112,97,116,104,95,104,111,111, +- 107,115,20,4,0,0,115,16,0,0,0,0,7,25,1,16, +- 1,16,1,3,1,14,1,13,1,12,2,122,22,80,97,116, +- 104,70,105,110,100,101,114,46,95,112,97,116,104,95,104,111, +- 111,107,115,99,2,0,0,0,0,0,0,0,3,0,0,0, +- 19,0,0,0,67,0,0,0,115,123,0,0,0,124,1,0, +- 100,1,0,107,2,0,114,53,0,121,16,0,116,0,0,106, +- 1,0,131,0,0,125,1,0,87,110,22,0,4,116,2,0, +- 107,10,0,114,52,0,1,1,1,100,2,0,83,89,110,1, +- 0,88,121,17,0,116,3,0,106,4,0,124,1,0,25,125, +- 2,0,87,110,46,0,4,116,5,0,107,10,0,114,118,0, +- 1,1,1,124,0,0,106,6,0,124,1,0,131,1,0,125, +- 2,0,124,2,0,116,3,0,106,4,0,124,1,0,60,89, +- 110,1,0,88,124,2,0,83,41,3,122,210,71,101,116,32, +- 116,104,101,32,102,105,110,100,101,114,32,102,111,114,32,116, +- 104,101,32,112,97,116,104,32,101,110,116,114,121,32,102,114, +- 111,109,32,115,121,115,46,112,97,116,104,95,105,109,112,111, +- 114,116,101,114,95,99,97,99,104,101,46,10,10,32,32,32, +- 32,32,32,32,32,73,102,32,116,104,101,32,112,97,116,104, +- 32,101,110,116,114,121,32,105,115,32,110,111,116,32,105,110, +- 32,116,104,101,32,99,97,99,104,101,44,32,102,105,110,100, +- 32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101, +- 32,102,105,110,100,101,114,10,32,32,32,32,32,32,32,32, +- 97,110,100,32,99,97,99,104,101,32,105,116,46,32,73,102, +- 32,110,111,32,102,105,110,100,101,114,32,105,115,32,97,118, +- 97,105,108,97,98,108,101,44,32,115,116,111,114,101,32,78, +- 111,110,101,46,10,10,32,32,32,32,32,32,32,32,114,30, +- 0,0,0,78,41,7,114,3,0,0,0,114,45,0,0,0, +- 218,17,70,105,108,101,78,111,116,70,111,117,110,100,69,114, +- 114,111,114,114,7,0,0,0,114,251,0,0,0,114,137,0, +- 0,0,114,255,0,0,0,41,3,114,170,0,0,0,114,35, +- 0,0,0,114,253,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,20,95,112,97,116,104,95,105, +- 109,112,111,114,116,101,114,95,99,97,99,104,101,37,4,0, +- 0,115,22,0,0,0,0,8,12,1,3,1,16,1,13,3, +- 9,1,3,1,17,1,13,1,15,1,18,1,122,31,80,97, - 116,104,70,105,110,100,101,114,46,95,112,97,116,104,95,105, - 109,112,111,114,116,101,114,95,99,97,99,104,101,99,3,0, - 0,0,0,0,0,0,6,0,0,0,3,0,0,0,67,0, -- 0,0,115,113,0,0,0,116,0,0,124,2,0,100,1,0, +- 0,0,115,119,0,0,0,116,0,0,124,2,0,100,1,0, - 131,2,0,114,39,0,124,2,0,106,1,0,124,1,0,131, - 1,0,92,2,0,125,3,0,125,4,0,110,21,0,124,2, - 0,106,2,0,124,1,0,131,1,0,125,3,0,103,0,0, -- 125,4,0,124,3,0,100,0,0,107,9,0,114,85,0,116, -- 3,0,124,1,0,124,3,0,131,2,0,83,116,4,0,124, -- 1,0,100,0,0,131,2,0,125,5,0,124,4,0,124,5, -- 0,95,5,0,124,5,0,83,41,2,78,114,165,0,0,0, -- 41,6,114,60,0,0,0,114,165,0,0,0,114,14,1,0, -- 0,114,173,0,0,0,114,216,0,0,0,114,220,0,0,0, -- 41,6,114,11,1,0,0,114,158,0,0,0,114,77,1,0, -- 0,114,169,0,0,0,114,170,0,0,0,114,177,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, -- 16,95,108,101,103,97,99,121,95,103,101,116,95,115,112,101, -- 99,95,7,0,0,115,18,0,0,0,0,4,15,1,24,2, -- 15,1,6,1,12,1,13,1,15,1,9,1,122,27,80,97, -- 116,104,70,105,110,100,101,114,46,95,108,101,103,97,99,121, -- 95,103,101,116,95,115,112,101,99,78,99,4,0,0,0,0, -- 0,0,0,9,0,0,0,5,0,0,0,67,0,0,0,115, -- 252,0,0,0,103,0,0,125,4,0,120,239,0,124,2,0, -- 68,93,203,0,125,5,0,116,0,0,124,5,0,116,1,0, -- 116,2,0,102,2,0,131,2,0,115,46,0,113,13,0,110, -- 0,0,124,0,0,106,3,0,124,5,0,131,1,0,125,6, -- 0,124,6,0,100,1,0,107,9,0,114,13,0,116,4,0, -- 124,6,0,100,2,0,131,2,0,114,109,0,124,6,0,106, -- 5,0,124,1,0,124,3,0,131,2,0,125,7,0,110,18, -- 0,124,0,0,106,6,0,124,1,0,124,6,0,131,2,0, -- 125,7,0,124,7,0,100,1,0,107,8,0,114,145,0,113, -- 13,0,110,0,0,124,7,0,106,7,0,100,1,0,107,9, -- 0,114,164,0,124,7,0,83,124,7,0,106,8,0,125,8, -- 0,124,8,0,100,1,0,107,8,0,114,200,0,116,9,0, -- 100,3,0,131,1,0,130,1,0,110,0,0,124,4,0,106, -- 10,0,124,8,0,131,1,0,1,113,13,0,113,13,0,87, -- 116,11,0,124,1,0,100,1,0,131,2,0,125,7,0,124, -- 4,0,124,7,0,95,8,0,124,7,0,83,100,1,0,83, -- 41,4,122,63,70,105,110,100,32,116,104,101,32,108,111,97, -- 100,101,114,32,111,114,32,110,97,109,101,115,112,97,99,101, -- 95,112,97,116,104,32,102,111,114,32,116,104,105,115,32,109, -- 111,100,117,108,101,47,112,97,99,107,97,103,101,32,110,97, -- 109,101,46,78,114,13,1,0,0,122,19,115,112,101,99,32, -- 109,105,115,115,105,110,103,32,108,111,97,100,101,114,41,12, -- 114,192,0,0,0,218,3,115,116,114,218,5,98,121,116,101, -- 115,114,80,1,0,0,114,60,0,0,0,114,13,1,0,0, -- 114,81,1,0,0,114,169,0,0,0,114,220,0,0,0,114, -- 153,0,0,0,114,197,0,0,0,114,216,0,0,0,41,9, -- 114,11,1,0,0,114,158,0,0,0,114,35,0,0,0,114, -- 12,1,0,0,218,14,110,97,109,101,115,112,97,99,101,95, -- 112,97,116,104,90,5,101,110,116,114,121,114,77,1,0,0, -- 114,177,0,0,0,114,170,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,9,95,103,101,116,95, -- 115,112,101,99,110,7,0,0,115,40,0,0,0,0,5,6, -- 1,13,1,21,1,6,1,15,1,12,1,15,1,21,2,18, -- 1,12,1,6,1,15,1,4,1,9,1,12,1,15,5,20, -- 2,15,1,9,1,122,20,80,97,116,104,70,105,110,100,101, -- 114,46,95,103,101,116,95,115,112,101,99,99,4,0,0,0, -- 0,0,0,0,6,0,0,0,4,0,0,0,67,0,0,0, -- 115,143,0,0,0,124,2,0,100,1,0,107,8,0,114,24, -- 0,116,0,0,106,1,0,125,2,0,110,0,0,124,0,0, -- 106,2,0,124,1,0,124,2,0,124,3,0,131,3,0,125, -- 4,0,124,4,0,100,1,0,107,8,0,114,61,0,100,1, -- 0,83,124,4,0,106,3,0,100,1,0,107,8,0,114,135, -- 0,124,4,0,106,4,0,125,5,0,124,5,0,114,128,0, -- 100,2,0,124,4,0,95,5,0,116,6,0,124,1,0,124, -- 5,0,124,0,0,106,2,0,131,3,0,124,4,0,95,4, -- 0,124,4,0,83,100,1,0,83,110,4,0,124,4,0,83, -- 100,1,0,83,41,3,122,98,102,105,110,100,32,116,104,101, -- 32,109,111,100,117,108,101,32,111,110,32,115,121,115,46,112, -- 97,116,104,32,111,114,32,39,112,97,116,104,39,32,98,97, -- 115,101,100,32,111,110,32,115,121,115,46,112,97,116,104,95, -- 104,111,111,107,115,32,97,110,100,10,32,32,32,32,32,32, -- 32,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, -- 116,101,114,95,99,97,99,104,101,46,78,90,9,110,97,109, -- 101,115,112,97,99,101,41,7,114,7,0,0,0,114,35,0, -- 0,0,114,85,1,0,0,114,169,0,0,0,114,220,0,0, -- 0,114,217,0,0,0,114,60,1,0,0,41,6,114,11,1, -- 0,0,114,158,0,0,0,114,35,0,0,0,114,12,1,0, -- 0,114,177,0,0,0,114,84,1,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,13,1,0,0,142, -- 7,0,0,115,26,0,0,0,0,4,12,1,12,1,21,1, -- 12,1,4,1,15,1,9,1,6,3,9,1,24,1,4,2, -- 7,2,122,20,80,97,116,104,70,105,110,100,101,114,46,102, -- 105,110,100,95,115,112,101,99,99,3,0,0,0,0,0,0, -- 0,4,0,0,0,3,0,0,0,67,0,0,0,115,41,0, -- 0,0,124,0,0,106,0,0,124,1,0,124,2,0,131,2, -- 0,125,3,0,124,3,0,100,1,0,107,8,0,114,34,0, -- 100,1,0,83,124,3,0,106,1,0,83,41,2,122,170,102, -- 105,110,100,32,116,104,101,32,109,111,100,117,108,101,32,111, -- 110,32,115,121,115,46,112,97,116,104,32,111,114,32,39,112, -- 97,116,104,39,32,98,97,115,101,100,32,111,110,32,115,121, -- 115,46,112,97,116,104,95,104,111,111,107,115,32,97,110,100, -- 10,32,32,32,32,32,32,32,32,115,121,115,46,112,97,116, -- 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101, -- 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, -- 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, -- 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, -- 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, -- 10,32,32,32,32,32,32,32,32,78,41,2,114,13,1,0, -- 0,114,169,0,0,0,41,4,114,11,1,0,0,114,158,0, -- 0,0,114,35,0,0,0,114,177,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,14,1,0,0, -- 164,7,0,0,115,8,0,0,0,0,8,18,1,12,1,4, -- 1,122,22,80,97,116,104,70,105,110,100,101,114,46,102,105, -- 110,100,95,109,111,100,117,108,101,41,12,114,57,0,0,0, -- 114,56,0,0,0,114,58,0,0,0,114,59,0,0,0,114, -- 18,1,0,0,114,74,1,0,0,114,79,1,0,0,114,80, -- 1,0,0,114,81,1,0,0,114,85,1,0,0,114,13,1, -- 0,0,114,14,1,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,73,1,0,0, -- 49,7,0,0,115,22,0,0,0,12,2,6,2,18,8,18, -- 17,18,17,18,15,3,1,18,31,3,1,21,21,3,1,114, -- 73,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0, -- 0,3,0,0,0,64,0,0,0,115,133,0,0,0,101,0, -- 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, -- 100,2,0,100,3,0,132,0,0,90,4,0,100,4,0,100, -- 5,0,132,0,0,90,5,0,101,6,0,90,7,0,100,6, -- 0,100,7,0,132,0,0,90,8,0,100,8,0,100,9,0, -- 132,0,0,90,9,0,100,10,0,100,11,0,100,12,0,132, -- 1,0,90,10,0,100,13,0,100,14,0,132,0,0,90,11, -- 0,101,12,0,100,15,0,100,16,0,132,0,0,131,1,0, -- 90,13,0,100,17,0,100,18,0,132,0,0,90,14,0,100, -- 10,0,83,41,19,218,10,70,105,108,101,70,105,110,100,101, -- 114,122,172,70,105,108,101,45,98,97,115,101,100,32,102,105, -- 110,100,101,114,46,10,10,32,32,32,32,73,110,116,101,114, -- 97,99,116,105,111,110,115,32,119,105,116,104,32,116,104,101, -- 32,102,105,108,101,32,115,121,115,116,101,109,32,97,114,101, -- 32,99,97,99,104,101,100,32,102,111,114,32,112,101,114,102, -- 111,114,109,97,110,99,101,44,32,98,101,105,110,103,10,32, -- 32,32,32,114,101,102,114,101,115,104,101,100,32,119,104,101, -- 110,32,116,104,101,32,100,105,114,101,99,116,111,114,121,32, -- 116,104,101,32,102,105,110,100,101,114,32,105,115,32,104,97, -- 110,100,108,105,110,103,32,104,97,115,32,98,101,101,110,32, -- 109,111,100,105,102,105,101,100,46,10,10,32,32,32,32,99, -- 2,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, -- 7,0,0,0,115,122,0,0,0,103,0,0,125,3,0,120, -- 52,0,124,2,0,68,93,44,0,92,2,0,137,0,0,125, -- 4,0,124,3,0,106,0,0,135,0,0,102,1,0,100,1, -- 0,100,2,0,134,0,0,124,4,0,68,131,1,0,131,1, -- 0,1,113,13,0,87,124,3,0,124,0,0,95,1,0,124, -- 1,0,112,79,0,100,3,0,124,0,0,95,2,0,100,6, -- 0,124,0,0,95,3,0,116,4,0,131,0,0,124,0,0, -- 95,5,0,116,4,0,131,0,0,124,0,0,95,6,0,100, -- 5,0,83,41,7,122,154,73,110,105,116,105,97,108,105,122, -- 101,32,119,105,116,104,32,116,104,101,32,112,97,116,104,32, -- 116,111,32,115,101,97,114,99,104,32,111,110,32,97,110,100, -- 32,97,32,118,97,114,105,97,98,108,101,32,110,117,109,98, -- 101,114,32,111,102,10,32,32,32,32,32,32,32,32,50,45, -- 116,117,112,108,101,115,32,99,111,110,116,97,105,110,105,110, -- 103,32,116,104,101,32,108,111,97,100,101,114,32,97,110,100, -- 32,116,104,101,32,102,105,108,101,32,115,117,102,102,105,120, -- 101,115,32,116,104,101,32,108,111,97,100,101,114,10,32,32, -- 32,32,32,32,32,32,114,101,99,111,103,110,105,122,101,115, -- 46,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, -- 0,0,51,0,0,0,115,27,0,0,0,124,0,0,93,17, -- 0,125,1,0,124,1,0,136,0,0,102,2,0,86,1,113, -- 3,0,100,0,0,83,41,1,78,114,4,0,0,0,41,2, -- 114,22,0,0,0,114,57,1,0,0,41,1,114,169,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,77,0,0,0, -- 193,7,0,0,115,2,0,0,0,6,0,122,38,70,105,108, -+ 104,101,99,3,0,0,0,0,0,0,0,6,0,0,0,3, -+ 0,0,0,67,0,0,0,115,113,0,0,0,116,0,0,124, -+ 2,0,100,1,0,131,2,0,114,39,0,124,2,0,106,1, -+ 0,124,1,0,131,1,0,92,2,0,125,3,0,125,4,0, -+ 110,21,0,124,2,0,106,2,0,124,1,0,131,1,0,125, -+ 3,0,103,0,0,125,4,0,124,3,0,100,0,0,107,9, -+ 0,114,85,0,116,3,0,124,1,0,124,3,0,131,2,0, -+ 83,116,4,0,124,1,0,100,0,0,131,2,0,125,5,0, -+ 124,4,0,124,5,0,95,5,0,124,5,0,83,41,2,78, -+ 114,166,0,0,0,41,6,114,61,0,0,0,114,166,0,0, -+ 0,114,15,1,0,0,114,174,0,0,0,114,217,0,0,0, -+ 114,221,0,0,0,41,6,114,12,1,0,0,114,159,0,0, -+ 0,114,78,1,0,0,114,170,0,0,0,114,171,0,0,0, -+ 114,178,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,218,16,95,108,101,103,97,99,121,95,103,101, -+ 116,95,115,112,101,99,95,7,0,0,115,18,0,0,0,0, -+ 4,15,1,24,2,15,1,6,1,12,1,13,1,15,1,9, -+ 1,122,27,80,97,116,104,70,105,110,100,101,114,46,95,108, -+ 101,103,97,99,121,95,103,101,116,95,115,112,101,99,78,99, -+ 4,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0, -+ 67,0,0,0,115,252,0,0,0,103,0,0,125,4,0,120, -+ 239,0,124,2,0,68,93,203,0,125,5,0,116,0,0,124, -+ 5,0,116,1,0,116,2,0,102,2,0,131,2,0,115,46, -+ 0,113,13,0,110,0,0,124,0,0,106,3,0,124,5,0, -+ 131,1,0,125,6,0,124,6,0,100,1,0,107,9,0,114, -+ 13,0,116,4,0,124,6,0,100,2,0,131,2,0,114,109, -+ 0,124,6,0,106,5,0,124,1,0,124,3,0,131,2,0, -+ 125,7,0,110,18,0,124,0,0,106,6,0,124,1,0,124, -+ 6,0,131,2,0,125,7,0,124,7,0,100,1,0,107,8, -+ 0,114,145,0,113,13,0,110,0,0,124,7,0,106,7,0, -+ 100,1,0,107,9,0,114,164,0,124,7,0,83,124,7,0, -+ 106,8,0,125,8,0,124,8,0,100,1,0,107,8,0,114, -+ 200,0,116,9,0,100,3,0,131,1,0,130,1,0,110,0, -+ 0,124,4,0,106,10,0,124,8,0,131,1,0,1,113,13, -+ 0,113,13,0,87,116,11,0,124,1,0,100,1,0,131,2, -+ 0,125,7,0,124,4,0,124,7,0,95,8,0,124,7,0, -+ 83,100,1,0,83,41,4,122,63,70,105,110,100,32,116,104, -+ 101,32,108,111,97,100,101,114,32,111,114,32,110,97,109,101, -+ 115,112,97,99,101,95,112,97,116,104,32,102,111,114,32,116, -+ 104,105,115,32,109,111,100,117,108,101,47,112,97,99,107,97, -+ 103,101,32,110,97,109,101,46,78,114,14,1,0,0,122,19, -+ 115,112,101,99,32,109,105,115,115,105,110,103,32,108,111,97, -+ 100,101,114,41,12,114,193,0,0,0,218,3,115,116,114,218, -+ 5,98,121,116,101,115,114,81,1,0,0,114,61,0,0,0, -+ 114,14,1,0,0,114,82,1,0,0,114,170,0,0,0,114, -+ 221,0,0,0,114,154,0,0,0,114,198,0,0,0,114,217, -+ 0,0,0,41,9,114,12,1,0,0,114,159,0,0,0,114, -+ 36,0,0,0,114,13,1,0,0,218,14,110,97,109,101,115, -+ 112,97,99,101,95,112,97,116,104,90,5,101,110,116,114,121, -+ 114,78,1,0,0,114,178,0,0,0,114,171,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,9, -+ 95,103,101,116,95,115,112,101,99,110,7,0,0,115,40,0, -+ 0,0,0,5,6,1,13,1,21,1,6,1,15,1,12,1, -+ 15,1,21,2,18,1,12,1,6,1,15,1,4,1,9,1, -+ 12,1,15,5,20,2,15,1,9,1,122,20,80,97,116,104, -+ 70,105,110,100,101,114,46,95,103,101,116,95,115,112,101,99, -+ 99,4,0,0,0,0,0,0,0,6,0,0,0,4,0,0, -+ 0,67,0,0,0,115,143,0,0,0,124,2,0,100,1,0, -+ 107,8,0,114,24,0,116,0,0,106,1,0,125,2,0,110, -+ 0,0,124,0,0,106,2,0,124,1,0,124,2,0,124,3, -+ 0,131,3,0,125,4,0,124,4,0,100,1,0,107,8,0, -+ 114,61,0,100,1,0,83,124,4,0,106,3,0,100,1,0, -+ 107,8,0,114,135,0,124,4,0,106,4,0,125,5,0,124, -+ 5,0,114,128,0,100,2,0,124,4,0,95,5,0,116,6, -+ 0,124,1,0,124,5,0,124,0,0,106,2,0,131,3,0, -+ 124,4,0,95,4,0,124,4,0,83,100,1,0,83,110,4, -+ 0,124,4,0,83,100,1,0,83,41,3,122,98,102,105,110, -+ 100,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32, -+ 115,121,115,46,112,97,116,104,32,111,114,32,39,112,97,116, -+ 104,39,32,98,97,115,101,100,32,111,110,32,115,121,115,46, -+ 112,97,116,104,95,104,111,111,107,115,32,97,110,100,10,32, -+ 32,32,32,32,32,32,32,115,121,115,46,112,97,116,104,95, -+ 105,109,112,111,114,116,101,114,95,99,97,99,104,101,46,78, -+ 90,9,110,97,109,101,115,112,97,99,101,41,7,114,8,0, -+ 0,0,114,36,0,0,0,114,86,1,0,0,114,170,0,0, -+ 0,114,221,0,0,0,114,218,0,0,0,114,61,1,0,0, -+ 41,6,114,12,1,0,0,114,159,0,0,0,114,36,0,0, -+ 0,114,13,1,0,0,114,178,0,0,0,114,85,1,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 14,1,0,0,142,7,0,0,115,26,0,0,0,0,4,12, -+ 1,12,1,21,1,12,1,4,1,15,1,9,1,6,3,9, -+ 1,24,1,4,2,7,2,122,20,80,97,116,104,70,105,110, -+ 100,101,114,46,102,105,110,100,95,115,112,101,99,99,3,0, -+ 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, -+ 0,0,115,41,0,0,0,124,0,0,106,0,0,124,1,0, -+ 124,2,0,131,2,0,125,3,0,124,3,0,100,1,0,107, -+ 8,0,114,34,0,100,1,0,83,124,3,0,106,1,0,83, -+ 41,2,122,170,102,105,110,100,32,116,104,101,32,109,111,100, -+ 117,108,101,32,111,110,32,115,121,115,46,112,97,116,104,32, -+ 111,114,32,39,112,97,116,104,39,32,98,97,115,101,100,32, -+ 111,110,32,115,121,115,46,112,97,116,104,95,104,111,111,107, -+ 115,32,97,110,100,10,32,32,32,32,32,32,32,32,115,121, -+ 115,46,112,97,116,104,95,105,109,112,111,114,116,101,114,95, -+ 99,97,99,104,101,46,10,10,32,32,32,32,32,32,32,32, -+ 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, -+ 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, -+ 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, -+ 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, -+ 2,114,14,1,0,0,114,170,0,0,0,41,4,114,12,1, -+ 0,0,114,159,0,0,0,114,36,0,0,0,114,178,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,15,1,0,0,164,7,0,0,115,8,0,0,0,0,8, -+ 18,1,12,1,4,1,122,22,80,97,116,104,70,105,110,100, -+ 101,114,46,102,105,110,100,95,109,111,100,117,108,101,41,12, -+ 114,58,0,0,0,114,57,0,0,0,114,59,0,0,0,114, -+ 60,0,0,0,114,19,1,0,0,114,75,1,0,0,114,80, -+ 1,0,0,114,81,1,0,0,114,82,1,0,0,114,86,1, -+ 0,0,114,14,1,0,0,114,15,1,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,74,1,0,0,49,7,0,0,115,22,0,0,0,12,2, -+ 6,2,18,8,18,17,18,17,18,15,3,1,18,31,3,1, -+ 21,21,3,1,114,74,1,0,0,99,0,0,0,0,0,0, -+ 0,0,0,0,0,0,3,0,0,0,64,0,0,0,115,133, -+ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, -+ 1,0,90,3,0,100,2,0,100,3,0,132,0,0,90,4, -+ 0,100,4,0,100,5,0,132,0,0,90,5,0,101,6,0, -+ 90,7,0,100,6,0,100,7,0,132,0,0,90,8,0,100, -+ 8,0,100,9,0,132,0,0,90,9,0,100,10,0,100,11, -+ 0,100,12,0,132,1,0,90,10,0,100,13,0,100,14,0, -+ 132,0,0,90,11,0,101,12,0,100,15,0,100,16,0,132, -+ 0,0,131,1,0,90,13,0,100,17,0,100,18,0,132,0, -+ 0,90,14,0,100,10,0,83,41,19,218,10,70,105,108,101, -+ 70,105,110,100,101,114,122,172,70,105,108,101,45,98,97,115, -+ 101,100,32,102,105,110,100,101,114,46,10,10,32,32,32,32, -+ 73,110,116,101,114,97,99,116,105,111,110,115,32,119,105,116, -+ 104,32,116,104,101,32,102,105,108,101,32,115,121,115,116,101, -+ 109,32,97,114,101,32,99,97,99,104,101,100,32,102,111,114, -+ 32,112,101,114,102,111,114,109,97,110,99,101,44,32,98,101, -+ 105,110,103,10,32,32,32,32,114,101,102,114,101,115,104,101, -+ 100,32,119,104,101,110,32,116,104,101,32,100,105,114,101,99, -+ 116,111,114,121,32,116,104,101,32,102,105,110,100,101,114,32, -+ 105,115,32,104,97,110,100,108,105,110,103,32,104,97,115,32, -+ 98,101,101,110,32,109,111,100,105,102,105,101,100,46,10,10, -+ 32,32,32,32,99,2,0,0,0,0,0,0,0,5,0,0, -+ 0,5,0,0,0,7,0,0,0,115,122,0,0,0,103,0, -+ 0,125,3,0,120,52,0,124,2,0,68,93,44,0,92,2, -+ 0,137,0,0,125,4,0,124,3,0,106,0,0,135,0,0, -+ 102,1,0,100,1,0,100,2,0,134,0,0,124,4,0,68, -+ 131,1,0,131,1,0,1,113,13,0,87,124,3,0,124,0, -+ 0,95,1,0,124,1,0,112,79,0,100,3,0,124,0,0, -+ 95,2,0,100,6,0,124,0,0,95,3,0,116,4,0,131, -+ 0,0,124,0,0,95,5,0,116,4,0,131,0,0,124,0, -+ 0,95,6,0,100,5,0,83,41,7,122,154,73,110,105,116, -+ 105,97,108,105,122,101,32,119,105,116,104,32,116,104,101,32, -+ 112,97,116,104,32,116,111,32,115,101,97,114,99,104,32,111, -+ 110,32,97,110,100,32,97,32,118,97,114,105,97,98,108,101, -+ 32,110,117,109,98,101,114,32,111,102,10,32,32,32,32,32, -+ 32,32,32,50,45,116,117,112,108,101,115,32,99,111,110,116, -+ 97,105,110,105,110,103,32,116,104,101,32,108,111,97,100,101, -+ 114,32,97,110,100,32,116,104,101,32,102,105,108,101,32,115, -+ 117,102,102,105,120,101,115,32,116,104,101,32,108,111,97,100, -+ 101,114,10,32,32,32,32,32,32,32,32,114,101,99,111,103, -+ 110,105,122,101,115,46,99,1,0,0,0,0,0,0,0,2, -+ 0,0,0,3,0,0,0,51,0,0,0,115,27,0,0,0, -+ 124,0,0,93,17,0,125,1,0,124,1,0,136,0,0,102, -+ 2,0,86,1,113,3,0,100,0,0,83,41,1,78,114,5, -+ 0,0,0,41,2,114,23,0,0,0,114,58,1,0,0,41, -+ 1,114,170,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,78,0,0,0,193,7,0,0,115,2,0,0,0,6,0, -+ 122,38,70,105,108,101,70,105,110,100,101,114,46,95,95,105, -+ 110,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, -+ 103,101,110,101,120,112,114,62,114,117,0,0,0,114,30,0, -+ 0,0,78,114,139,0,0,0,41,7,114,198,0,0,0,218, -+ 8,95,108,111,97,100,101,114,115,114,36,0,0,0,218,11, -+ 95,112,97,116,104,95,109,116,105,109,101,218,3,115,101,116, -+ 218,11,95,112,97,116,104,95,99,97,99,104,101,218,19,95, -+ 114,101,108,97,120,101,100,95,112,97,116,104,95,99,97,99, -+ 104,101,41,5,114,72,0,0,0,114,36,0,0,0,218,14, -+ 108,111,97,100,101,114,95,100,101,116,97,105,108,115,90,7, -+ 108,111,97,100,101,114,115,114,128,0,0,0,114,5,0,0, -+ 0,41,1,114,170,0,0,0,114,6,0,0,0,114,73,0, -+ 0,0,187,7,0,0,115,16,0,0,0,0,4,6,1,19, -+ 1,36,1,9,2,15,1,9,1,12,1,122,19,70,105,108, - 101,70,105,110,100,101,114,46,95,95,105,110,105,116,95,95, -- 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, -- 112,114,62,114,116,0,0,0,114,29,0,0,0,78,114,138, -- 0,0,0,41,7,114,197,0,0,0,218,8,95,108,111,97, -- 100,101,114,115,114,35,0,0,0,218,11,95,112,97,116,104, -- 95,109,116,105,109,101,218,3,115,101,116,218,11,95,112,97, -- 116,104,95,99,97,99,104,101,218,19,95,114,101,108,97,120, -- 101,100,95,112,97,116,104,95,99,97,99,104,101,41,5,114, -- 71,0,0,0,114,35,0,0,0,218,14,108,111,97,100,101, -- 114,95,100,101,116,97,105,108,115,90,7,108,111,97,100,101, -- 114,115,114,127,0,0,0,114,4,0,0,0,41,1,114,169, -- 0,0,0,114,5,0,0,0,114,72,0,0,0,187,7,0, -- 0,115,16,0,0,0,0,4,6,1,19,1,36,1,9,2, -- 15,1,9,1,12,1,122,19,70,105,108,101,70,105,110,100, -- 101,114,46,95,95,105,110,105,116,95,95,99,1,0,0,0, -- 0,0,0,0,1,0,0,0,2,0,0,0,67,0,0,0, -- 115,13,0,0,0,100,3,0,124,0,0,95,0,0,100,2, -- 0,83,41,4,122,31,73,110,118,97,108,105,100,97,116,101, -- 32,116,104,101,32,100,105,114,101,99,116,111,114,121,32,109, -- 116,105,109,101,46,114,29,0,0,0,78,114,138,0,0,0, -- 41,1,114,88,1,0,0,41,1,114,71,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,74,1, -- 0,0,201,7,0,0,115,2,0,0,0,0,2,122,28,70, -- 105,108,101,70,105,110,100,101,114,46,105,110,118,97,108,105, -- 100,97,116,101,95,99,97,99,104,101,115,99,2,0,0,0, -- 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, -- 115,59,0,0,0,124,0,0,106,0,0,124,1,0,131,1, -- 0,125,2,0,124,2,0,100,1,0,107,8,0,114,37,0, -- 100,1,0,103,0,0,102,2,0,83,124,2,0,106,1,0, -- 124,2,0,106,2,0,112,55,0,103,0,0,102,2,0,83, -- 41,2,122,197,84,114,121,32,116,111,32,102,105,110,100,32, -- 97,32,108,111,97,100,101,114,32,102,111,114,32,116,104,101, -- 32,115,112,101,99,105,102,105,101,100,32,109,111,100,117,108, -- 101,44,32,111,114,32,116,104,101,32,110,97,109,101,115,112, -- 97,99,101,10,32,32,32,32,32,32,32,32,112,97,99,107, -- 97,103,101,32,112,111,114,116,105,111,110,115,46,32,82,101, -- 116,117,114,110,115,32,40,108,111,97,100,101,114,44,32,108, -- 105,115,116,45,111,102,45,112,111,114,116,105,111,110,115,41, -- 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, -- 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, -- 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, -- 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, -- 10,32,32,32,32,32,32,32,32,78,41,3,114,13,1,0, -- 0,114,169,0,0,0,114,220,0,0,0,41,3,114,71,0, -- 0,0,114,158,0,0,0,114,177,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,165,0,0,0, -- 207,7,0,0,115,8,0,0,0,0,7,15,1,12,1,10, -- 1,122,22,70,105,108,101,70,105,110,100,101,114,46,102,105, -- 110,100,95,108,111,97,100,101,114,99,6,0,0,0,0,0, -- 0,0,7,0,0,0,7,0,0,0,67,0,0,0,115,40, -- 0,0,0,124,1,0,124,2,0,124,3,0,131,2,0,125, -- 6,0,116,0,0,124,2,0,124,3,0,100,1,0,124,6, -- 0,100,2,0,124,4,0,131,2,2,83,41,3,78,114,169, -- 0,0,0,114,220,0,0,0,41,1,114,239,0,0,0,41, -- 7,114,71,0,0,0,114,243,0,0,0,114,158,0,0,0, -- 114,35,0,0,0,114,228,0,0,0,114,12,1,0,0,114, -- 169,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,85,1,0,0,219,7,0,0,115,6,0,0, -- 0,0,1,15,1,18,1,122,20,70,105,108,101,70,105,110, -- 100,101,114,46,95,103,101,116,95,115,112,101,99,78,99,3, -- 0,0,0,0,0,0,0,14,0,0,0,15,0,0,0,67, -- 0,0,0,115,240,1,0,0,100,1,0,125,3,0,124,1, -- 0,106,0,0,100,2,0,131,1,0,100,3,0,25,125,4, -- 0,121,34,0,116,1,0,124,0,0,106,2,0,112,49,0, -- 116,3,0,106,4,0,131,0,0,131,1,0,106,5,0,125, -- 5,0,87,110,24,0,4,116,6,0,107,10,0,114,85,0, -- 1,1,1,100,10,0,125,5,0,89,110,1,0,88,124,5, -- 0,124,0,0,106,7,0,107,3,0,114,123,0,124,0,0, -- 106,8,0,131,0,0,1,124,5,0,124,0,0,95,7,0, -- 110,0,0,116,9,0,131,0,0,114,156,0,124,0,0,106, -- 10,0,125,6,0,124,4,0,106,11,0,131,0,0,125,7, -- 0,110,15,0,124,0,0,106,12,0,125,6,0,124,4,0, -- 125,7,0,124,7,0,124,6,0,107,6,0,114,51,1,116, -- 13,0,124,0,0,106,2,0,124,4,0,131,2,0,125,8, -- 0,120,103,0,124,0,0,106,14,0,68,93,77,0,92,2, -- 0,125,9,0,125,10,0,100,5,0,124,9,0,23,125,11, -- 0,116,13,0,124,8,0,124,11,0,131,2,0,125,12,0, -- 116,15,0,124,12,0,131,1,0,114,211,0,124,0,0,106, -- 16,0,124,10,0,124,1,0,124,12,0,124,8,0,103,1, -- 0,124,2,0,131,5,0,83,113,211,0,87,116,17,0,124, -- 8,0,131,1,0,125,3,0,110,0,0,120,126,0,124,0, -- 0,106,14,0,68,93,115,0,92,2,0,125,9,0,125,10, -- 0,116,13,0,124,0,0,106,2,0,124,4,0,124,9,0, -- 23,131,2,0,125,12,0,116,18,0,100,6,0,106,19,0, -- 124,12,0,131,1,0,100,7,0,100,3,0,131,1,1,1, -- 124,7,0,124,9,0,23,124,6,0,107,6,0,114,61,1, -- 116,15,0,124,12,0,131,1,0,114,176,1,124,0,0,106, -- 16,0,124,10,0,124,1,0,124,12,0,100,8,0,124,2, -- 0,131,5,0,83,113,61,1,113,61,1,87,124,3,0,114, -- 236,1,116,18,0,100,9,0,106,19,0,124,8,0,131,1, -- 0,131,1,0,1,116,20,0,124,1,0,100,8,0,131,2, -- 0,125,13,0,124,8,0,103,1,0,124,13,0,95,21,0, -- 124,13,0,83,100,8,0,83,41,11,122,125,84,114,121,32, -- 116,111,32,102,105,110,100,32,97,32,108,111,97,100,101,114, -- 32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105, -- 101,100,32,109,111,100,117,108,101,44,32,111,114,32,116,104, -- 101,32,110,97,109,101,115,112,97,99,101,10,32,32,32,32, -- 32,32,32,32,112,97,99,107,97,103,101,32,112,111,114,116, -- 105,111,110,115,46,32,82,101,116,117,114,110,115,32,40,108, -- 111,97,100,101,114,44,32,108,105,115,116,45,111,102,45,112, -- 111,114,116,105,111,110,115,41,46,70,114,116,0,0,0,114, -- 115,0,0,0,114,29,0,0,0,114,72,0,0,0,122,9, -- 116,114,121,105,110,103,32,123,125,114,145,0,0,0,78,122, -- 25,112,111,115,115,105,98,108,101,32,110,97,109,101,115,112, -- 97,99,101,32,102,111,114,32,123,125,114,138,0,0,0,41, -- 22,114,32,0,0,0,114,39,0,0,0,114,35,0,0,0, -- 114,3,0,0,0,114,45,0,0,0,114,53,1,0,0,114, -- 40,0,0,0,114,88,1,0,0,218,11,95,102,105,108,108, -- 95,99,97,99,104,101,114,6,0,0,0,114,91,1,0,0, -- 114,139,0,0,0,114,90,1,0,0,114,28,0,0,0,114, -- 87,1,0,0,114,44,0,0,0,114,85,1,0,0,114,46, -- 0,0,0,114,152,0,0,0,114,47,0,0,0,114,216,0, -- 0,0,114,220,0,0,0,41,14,114,71,0,0,0,114,158, -- 0,0,0,114,12,1,0,0,90,12,105,115,95,110,97,109, -- 101,115,112,97,99,101,90,11,116,97,105,108,95,109,111,100, -- 117,108,101,114,183,0,0,0,90,5,99,97,99,104,101,90, -- 12,99,97,99,104,101,95,109,111,100,117,108,101,90,9,98, -- 97,115,101,95,112,97,116,104,114,57,1,0,0,114,243,0, -- 0,0,90,13,105,110,105,116,95,102,105,108,101,110,97,109, -- 101,90,9,102,117,108,108,95,112,97,116,104,114,177,0,0, +- 125,4,0,124,3,0,100,0,0,107,9,0,114,88,0,116, +- 3,0,106,4,0,124,1,0,124,3,0,131,2,0,83,116, +- 3,0,106,5,0,124,1,0,100,0,0,131,2,0,125,5, +- 0,124,4,0,124,5,0,95,6,0,124,5,0,83,41,2, +- 78,114,124,0,0,0,41,7,114,115,0,0,0,114,124,0, +- 0,0,114,182,0,0,0,114,121,0,0,0,114,179,0,0, +- 0,114,160,0,0,0,114,156,0,0,0,41,6,114,170,0, +- 0,0,114,126,0,0,0,114,253,0,0,0,114,127,0,0, +- 0,114,128,0,0,0,114,164,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,16,95,108,101,103, +- 97,99,121,95,103,101,116,95,115,112,101,99,59,4,0,0, +- 115,18,0,0,0,0,4,15,1,24,2,15,1,6,1,12, +- 1,16,1,18,1,9,1,122,27,80,97,116,104,70,105,110, +- 100,101,114,46,95,108,101,103,97,99,121,95,103,101,116,95, +- 115,112,101,99,78,99,4,0,0,0,0,0,0,0,9,0, +- 0,0,5,0,0,0,67,0,0,0,115,243,0,0,0,103, +- 0,0,125,4,0,120,230,0,124,2,0,68,93,191,0,125, +- 5,0,116,0,0,124,5,0,116,1,0,116,2,0,102,2, +- 0,131,2,0,115,43,0,113,13,0,124,0,0,106,3,0, +- 124,5,0,131,1,0,125,6,0,124,6,0,100,1,0,107, +- 9,0,114,13,0,116,4,0,124,6,0,100,2,0,131,2, +- 0,114,106,0,124,6,0,106,5,0,124,1,0,124,3,0, +- 131,2,0,125,7,0,110,18,0,124,0,0,106,6,0,124, +- 1,0,124,6,0,131,2,0,125,7,0,124,7,0,100,1, +- 0,107,8,0,114,139,0,113,13,0,124,7,0,106,7,0, +- 100,1,0,107,9,0,114,158,0,124,7,0,83,124,7,0, +- 106,8,0,125,8,0,124,8,0,100,1,0,107,8,0,114, +- 191,0,116,9,0,100,3,0,131,1,0,130,1,0,124,4, +- 0,106,10,0,124,8,0,131,1,0,1,113,13,0,87,116, +- 11,0,106,12,0,124,1,0,100,1,0,131,2,0,125,7, +- 0,124,4,0,124,7,0,95,8,0,124,7,0,83,100,1, +- 0,83,41,4,122,63,70,105,110,100,32,116,104,101,32,108, +- 111,97,100,101,114,32,111,114,32,110,97,109,101,115,112,97, +- 99,101,95,112,97,116,104,32,102,111,114,32,116,104,105,115, +- 32,109,111,100,117,108,101,47,112,97,99,107,97,103,101,32, +- 110,97,109,101,46,78,114,181,0,0,0,122,19,115,112,101, +- 99,32,109,105,115,115,105,110,103,32,108,111,97,100,101,114, +- 41,13,114,143,0,0,0,114,69,0,0,0,218,5,98,121, +- 116,101,115,114,1,1,0,0,114,115,0,0,0,114,181,0, +- 0,0,114,2,1,0,0,114,127,0,0,0,114,156,0,0, +- 0,114,107,0,0,0,114,149,0,0,0,114,121,0,0,0, +- 114,160,0,0,0,41,9,114,170,0,0,0,114,126,0,0, +- 0,114,35,0,0,0,114,180,0,0,0,218,14,110,97,109, +- 101,115,112,97,99,101,95,112,97,116,104,90,5,101,110,116, +- 114,121,114,253,0,0,0,114,164,0,0,0,114,128,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 114,13,1,0,0,224,7,0,0,115,68,0,0,0,0,3, -- 6,1,19,1,3,1,34,1,13,1,11,1,15,1,10,1, -- 12,2,9,1,9,1,15,2,9,1,6,2,12,1,18,1, -- 22,1,10,1,15,1,12,1,32,4,15,2,22,1,22,1, -- 25,1,16,1,12,1,32,1,6,1,19,1,15,1,12,1, -- 4,1,122,20,70,105,108,101,70,105,110,100,101,114,46,102, -- 105,110,100,95,115,112,101,99,99,1,0,0,0,0,0,0, -- 0,9,0,0,0,13,0,0,0,67,0,0,0,115,14,1, -- 0,0,124,0,0,106,0,0,125,1,0,121,31,0,116,1, -- 0,106,2,0,124,1,0,112,33,0,116,1,0,106,3,0, -- 131,0,0,131,1,0,125,2,0,87,110,33,0,4,116,4, -- 0,116,5,0,116,6,0,102,3,0,107,10,0,114,75,0, -- 1,1,1,103,0,0,125,2,0,89,110,1,0,88,116,7, -- 0,106,8,0,106,9,0,100,1,0,131,1,0,115,112,0, -- 116,10,0,124,2,0,131,1,0,124,0,0,95,11,0,110, -- 111,0,116,10,0,131,0,0,125,3,0,120,90,0,124,2, -- 0,68,93,82,0,125,4,0,124,4,0,106,12,0,100,2, -- 0,131,1,0,92,3,0,125,5,0,125,6,0,125,7,0, -- 124,6,0,114,191,0,100,3,0,106,13,0,124,5,0,124, -- 7,0,106,14,0,131,0,0,131,2,0,125,8,0,110,6, -- 0,124,5,0,125,8,0,124,3,0,106,15,0,124,8,0, -- 131,1,0,1,113,128,0,87,124,3,0,124,0,0,95,11, -- 0,116,7,0,106,8,0,106,9,0,116,16,0,131,1,0, -- 114,10,1,100,4,0,100,5,0,132,0,0,124,2,0,68, -- 131,1,0,124,0,0,95,17,0,110,0,0,100,6,0,83, -- 41,7,122,68,70,105,108,108,32,116,104,101,32,99,97,99, -- 104,101,32,111,102,32,112,111,116,101,110,116,105,97,108,32, -- 109,111,100,117,108,101,115,32,97,110,100,32,112,97,99,107, -- 97,103,101,115,32,102,111,114,32,116,104,105,115,32,100,105, -- 114,101,99,116,111,114,121,46,114,0,0,0,0,114,116,0, -- 0,0,122,5,123,125,46,123,125,99,1,0,0,0,0,0, -- 0,0,2,0,0,0,3,0,0,0,83,0,0,0,115,28, -- 0,0,0,104,0,0,124,0,0,93,18,0,125,1,0,124, -- 1,0,106,0,0,131,0,0,146,2,0,113,6,0,83,114, -- 4,0,0,0,41,1,114,139,0,0,0,41,2,114,22,0, -- 0,0,90,2,102,110,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,250,9,60,115,101,116,99,111,109,112,62, -- 42,8,0,0,115,2,0,0,0,9,0,122,41,70,105,108, -- 101,70,105,110,100,101,114,46,95,102,105,108,108,95,99,97, -- 99,104,101,46,60,108,111,99,97,108,115,62,46,60,115,101, -- 116,99,111,109,112,62,78,41,18,114,35,0,0,0,114,3, -- 0,0,0,90,7,108,105,115,116,100,105,114,114,45,0,0, -- 0,218,17,70,105,108,101,78,111,116,70,111,117,110,100,69, -- 114,114,111,114,218,15,80,101,114,109,105,115,115,105,111,110, -- 69,114,114,111,114,218,18,78,111,116,65,68,105,114,101,99, -- 116,111,114,121,69,114,114,111,114,114,7,0,0,0,114,8, -- 0,0,0,114,9,0,0,0,114,89,1,0,0,114,90,1, -- 0,0,114,121,0,0,0,114,47,0,0,0,114,139,0,0, -- 0,218,3,97,100,100,114,10,0,0,0,114,91,1,0,0, -- 41,9,114,71,0,0,0,114,35,0,0,0,90,8,99,111, -- 110,116,101,110,116,115,90,21,108,111,119,101,114,95,115,117, -- 102,102,105,120,95,99,111,110,116,101,110,116,115,114,71,1, -- 0,0,114,67,0,0,0,114,65,1,0,0,114,57,1,0, -- 0,90,8,110,101,119,95,110,97,109,101,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,93,1,0,0,13, -- 8,0,0,115,34,0,0,0,0,2,9,1,3,1,31,1, -- 22,3,11,3,18,1,18,7,9,1,13,1,24,1,6,1, -- 27,2,6,1,17,1,9,1,18,1,122,22,70,105,108,101, -- 70,105,110,100,101,114,46,95,102,105,108,108,95,99,97,99, -- 104,101,99,1,0,0,0,0,0,0,0,3,0,0,0,3, -- 0,0,0,7,0,0,0,115,25,0,0,0,135,0,0,135, -- 1,0,102,2,0,100,1,0,100,2,0,134,0,0,125,2, -- 0,124,2,0,83,41,3,97,20,1,0,0,65,32,99,108, -- 97,115,115,32,109,101,116,104,111,100,32,119,104,105,99,104, -- 32,114,101,116,117,114,110,115,32,97,32,99,108,111,115,117, -- 114,101,32,116,111,32,117,115,101,32,111,110,32,115,121,115, -- 46,112,97,116,104,95,104,111,111,107,10,32,32,32,32,32, -- 32,32,32,119,104,105,99,104,32,119,105,108,108,32,114,101, -- 116,117,114,110,32,97,110,32,105,110,115,116,97,110,99,101, -- 32,117,115,105,110,103,32,116,104,101,32,115,112,101,99,105, -- 102,105,101,100,32,108,111,97,100,101,114,115,32,97,110,100, -- 32,116,104,101,32,112,97,116,104,10,32,32,32,32,32,32, -- 32,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32, -- 99,108,111,115,117,114,101,46,10,10,32,32,32,32,32,32, -- 32,32,73,102,32,116,104,101,32,112,97,116,104,32,99,97, -- 108,108,101,100,32,111,110,32,116,104,101,32,99,108,111,115, -- 117,114,101,32,105,115,32,110,111,116,32,97,32,100,105,114, -- 101,99,116,111,114,121,44,32,73,109,112,111,114,116,69,114, -- 114,111,114,32,105,115,10,32,32,32,32,32,32,32,32,114, -- 97,105,115,101,100,46,10,10,32,32,32,32,32,32,32,32, -- 99,1,0,0,0,0,0,0,0,1,0,0,0,4,0,0, -- 0,19,0,0,0,115,46,0,0,0,116,0,0,124,0,0, -- 131,1,0,115,33,0,116,1,0,100,1,0,100,2,0,124, -- 0,0,131,1,1,130,1,0,110,0,0,136,0,0,124,0, +- 218,9,95,103,101,116,95,115,112,101,99,74,4,0,0,115, +- 40,0,0,0,0,5,6,1,13,1,21,1,3,1,15,1, +- 12,1,15,1,21,2,18,1,12,1,3,1,15,1,4,1, +- 9,1,12,1,12,5,17,2,18,1,9,1,122,20,80,97, +- 116,104,70,105,110,100,101,114,46,95,103,101,116,95,115,112, +- 101,99,99,4,0,0,0,0,0,0,0,6,0,0,0,4, +- 0,0,0,67,0,0,0,115,140,0,0,0,124,2,0,100, +- 1,0,107,8,0,114,21,0,116,0,0,106,1,0,125,2, +- 0,124,0,0,106,2,0,124,1,0,124,2,0,124,3,0, +- 131,3,0,125,4,0,124,4,0,100,1,0,107,8,0,114, +- 58,0,100,1,0,83,124,4,0,106,3,0,100,1,0,107, +- 8,0,114,132,0,124,4,0,106,4,0,125,5,0,124,5, +- 0,114,125,0,100,2,0,124,4,0,95,5,0,116,6,0, +- 124,1,0,124,5,0,124,0,0,106,2,0,131,3,0,124, +- 4,0,95,4,0,124,4,0,83,100,1,0,83,110,4,0, +- 124,4,0,83,100,1,0,83,41,3,122,98,102,105,110,100, +- 32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,115, +- 121,115,46,112,97,116,104,32,111,114,32,39,112,97,116,104, +- 39,32,98,97,115,101,100,32,111,110,32,115,121,115,46,112, +- 97,116,104,95,104,111,111,107,115,32,97,110,100,10,32,32, +- 32,32,32,32,32,32,115,121,115,46,112,97,116,104,95,105, +- 109,112,111,114,116,101,114,95,99,97,99,104,101,46,78,90, +- 9,110,97,109,101,115,112,97,99,101,41,7,114,7,0,0, +- 0,114,35,0,0,0,114,5,1,0,0,114,127,0,0,0, +- 114,156,0,0,0,114,158,0,0,0,114,230,0,0,0,41, +- 6,114,170,0,0,0,114,126,0,0,0,114,35,0,0,0, +- 114,180,0,0,0,114,164,0,0,0,114,4,1,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,181, +- 0,0,0,106,4,0,0,115,26,0,0,0,0,4,12,1, +- 9,1,21,1,12,1,4,1,15,1,9,1,6,3,9,1, +- 24,1,4,2,7,2,122,20,80,97,116,104,70,105,110,100, +- 101,114,46,102,105,110,100,95,115,112,101,99,99,3,0,0, +- 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, +- 0,115,41,0,0,0,124,0,0,106,0,0,124,1,0,124, +- 2,0,131,2,0,125,3,0,124,3,0,100,1,0,107,8, +- 0,114,34,0,100,1,0,83,124,3,0,106,1,0,83,41, +- 2,122,170,102,105,110,100,32,116,104,101,32,109,111,100,117, +- 108,101,32,111,110,32,115,121,115,46,112,97,116,104,32,111, +- 114,32,39,112,97,116,104,39,32,98,97,115,101,100,32,111, +- 110,32,115,121,115,46,112,97,116,104,95,104,111,111,107,115, +- 32,97,110,100,10,32,32,32,32,32,32,32,32,115,121,115, +- 46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,99, +- 97,99,104,101,46,10,10,32,32,32,32,32,32,32,32,84, +- 104,105,115,32,109,101,116,104,111,100,32,105,115,32,100,101, +- 112,114,101,99,97,116,101,100,46,32,32,85,115,101,32,102, +- 105,110,100,95,115,112,101,99,40,41,32,105,110,115,116,101, +- 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,2, +- 114,181,0,0,0,114,127,0,0,0,41,4,114,170,0,0, +- 0,114,126,0,0,0,114,35,0,0,0,114,164,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 182,0,0,0,128,4,0,0,115,8,0,0,0,0,8,18, +- 1,12,1,4,1,122,22,80,97,116,104,70,105,110,100,101, +- 114,46,102,105,110,100,95,109,111,100,117,108,101,41,12,114, +- 112,0,0,0,114,111,0,0,0,114,113,0,0,0,114,114, +- 0,0,0,114,183,0,0,0,114,250,0,0,0,114,255,0, +- 0,0,114,1,1,0,0,114,2,1,0,0,114,5,1,0, +- 0,114,181,0,0,0,114,182,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 249,0,0,0,8,4,0,0,115,22,0,0,0,12,2,6, +- 2,18,8,18,17,18,22,18,15,3,1,18,31,3,1,21, +- 21,3,1,114,249,0,0,0,99,0,0,0,0,0,0,0, +- 0,0,0,0,0,3,0,0,0,64,0,0,0,115,133,0, +- 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, +- 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, +- 100,4,0,100,5,0,132,0,0,90,5,0,101,6,0,90, +- 7,0,100,6,0,100,7,0,132,0,0,90,8,0,100,8, +- 0,100,9,0,132,0,0,90,9,0,100,10,0,100,11,0, +- 100,12,0,132,1,0,90,10,0,100,13,0,100,14,0,132, +- 0,0,90,11,0,101,12,0,100,15,0,100,16,0,132,0, +- 0,131,1,0,90,13,0,100,17,0,100,18,0,132,0,0, +- 90,14,0,100,10,0,83,41,19,218,10,70,105,108,101,70, +- 105,110,100,101,114,122,172,70,105,108,101,45,98,97,115,101, +- 100,32,102,105,110,100,101,114,46,10,10,32,32,32,32,73, +- 110,116,101,114,97,99,116,105,111,110,115,32,119,105,116,104, +- 32,116,104,101,32,102,105,108,101,32,115,121,115,116,101,109, +- 32,97,114,101,32,99,97,99,104,101,100,32,102,111,114,32, +- 112,101,114,102,111,114,109,97,110,99,101,44,32,98,101,105, +- 110,103,10,32,32,32,32,114,101,102,114,101,115,104,101,100, +- 32,119,104,101,110,32,116,104,101,32,100,105,114,101,99,116, +- 111,114,121,32,116,104,101,32,102,105,110,100,101,114,32,105, +- 115,32,104,97,110,100,108,105,110,103,32,104,97,115,32,98, +- 101,101,110,32,109,111,100,105,102,105,101,100,46,10,10,32, +- 32,32,32,99,2,0,0,0,0,0,0,0,5,0,0,0, +- 5,0,0,0,7,0,0,0,115,122,0,0,0,103,0,0, +- 125,3,0,120,52,0,124,2,0,68,93,44,0,92,2,0, +- 137,0,0,125,4,0,124,3,0,106,0,0,135,0,0,102, +- 1,0,100,1,0,100,2,0,134,0,0,124,4,0,68,131, +- 1,0,131,1,0,1,113,13,0,87,124,3,0,124,0,0, +- 95,1,0,124,1,0,112,79,0,100,3,0,124,0,0,95, +- 2,0,100,6,0,124,0,0,95,3,0,116,4,0,131,0, +- 0,124,0,0,95,5,0,116,4,0,131,0,0,124,0,0, +- 95,6,0,100,5,0,83,41,7,122,154,73,110,105,116,105, +- 97,108,105,122,101,32,119,105,116,104,32,116,104,101,32,112, +- 97,116,104,32,116,111,32,115,101,97,114,99,104,32,111,110, +- 32,97,110,100,32,97,32,118,97,114,105,97,98,108,101,32, +- 110,117,109,98,101,114,32,111,102,10,32,32,32,32,32,32, +- 32,32,50,45,116,117,112,108,101,115,32,99,111,110,116,97, +- 105,110,105,110,103,32,116,104,101,32,108,111,97,100,101,114, +- 32,97,110,100,32,116,104,101,32,102,105,108,101,32,115,117, +- 102,102,105,120,101,115,32,116,104,101,32,108,111,97,100,101, +- 114,10,32,32,32,32,32,32,32,32,114,101,99,111,103,110, +- 105,122,101,115,46,99,1,0,0,0,0,0,0,0,2,0, +- 0,0,3,0,0,0,51,0,0,0,115,27,0,0,0,124, +- 0,0,93,17,0,125,1,0,124,1,0,136,0,0,102,2, +- 0,86,1,113,3,0,100,0,0,83,41,1,78,114,4,0, +- 0,0,41,2,114,22,0,0,0,114,225,0,0,0,41,1, +- 114,127,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 227,0,0,0,157,4,0,0,115,2,0,0,0,6,0,122, +- 38,70,105,108,101,70,105,110,100,101,114,46,95,95,105,110, +- 105,116,95,95,46,60,108,111,99,97,108,115,62,46,60,103, +- 101,110,101,120,112,114,62,114,58,0,0,0,114,29,0,0, +- 0,78,114,87,0,0,0,41,7,114,149,0,0,0,218,8, +- 95,108,111,97,100,101,114,115,114,35,0,0,0,218,11,95, +- 112,97,116,104,95,109,116,105,109,101,218,3,115,101,116,218, +- 11,95,112,97,116,104,95,99,97,99,104,101,218,19,95,114, +- 101,108,97,120,101,100,95,112,97,116,104,95,99,97,99,104, +- 101,41,5,114,108,0,0,0,114,35,0,0,0,218,14,108, +- 111,97,100,101,114,95,100,101,116,97,105,108,115,90,7,108, +- 111,97,100,101,114,115,114,166,0,0,0,114,4,0,0,0, +- 41,1,114,127,0,0,0,114,5,0,0,0,114,185,0,0, +- 0,151,4,0,0,115,16,0,0,0,0,4,6,1,19,1, +- 36,1,9,2,15,1,9,1,12,1,122,19,70,105,108,101, +- 70,105,110,100,101,114,46,95,95,105,110,105,116,95,95,99, +- 1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0, +- 67,0,0,0,115,13,0,0,0,100,3,0,124,0,0,95, +- 0,0,100,2,0,83,41,4,122,31,73,110,118,97,108,105, +- 100,97,116,101,32,116,104,101,32,100,105,114,101,99,116,111, +- 114,121,32,109,116,105,109,101,46,114,29,0,0,0,78,114, +- 87,0,0,0,41,1,114,8,1,0,0,41,1,114,108,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,250,0,0,0,165,4,0,0,115,2,0,0,0,0, +- 2,122,28,70,105,108,101,70,105,110,100,101,114,46,105,110, +- 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,99, +- 2,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0, +- 67,0,0,0,115,59,0,0,0,124,0,0,106,0,0,124, +- 1,0,131,1,0,125,2,0,124,2,0,100,1,0,107,8, +- 0,114,37,0,100,1,0,103,0,0,102,2,0,83,124,2, +- 0,106,1,0,124,2,0,106,2,0,112,55,0,103,0,0, +- 102,2,0,83,41,2,122,197,84,114,121,32,116,111,32,102, +- 105,110,100,32,97,32,108,111,97,100,101,114,32,102,111,114, +- 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,109, +- 111,100,117,108,101,44,32,111,114,32,116,104,101,32,110,97, +- 109,101,115,112,97,99,101,10,32,32,32,32,32,32,32,32, +- 112,97,99,107,97,103,101,32,112,111,114,116,105,111,110,115, +- 46,32,82,101,116,117,114,110,115,32,40,108,111,97,100,101, +- 114,44,32,108,105,115,116,45,111,102,45,112,111,114,116,105, +- 111,110,115,41,46,10,10,32,32,32,32,32,32,32,32,84, +- 104,105,115,32,109,101,116,104,111,100,32,105,115,32,100,101, +- 112,114,101,99,97,116,101,100,46,32,32,85,115,101,32,102, +- 105,110,100,95,115,112,101,99,40,41,32,105,110,115,116,101, +- 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,3, +- 114,181,0,0,0,114,127,0,0,0,114,156,0,0,0,41, +- 3,114,108,0,0,0,114,126,0,0,0,114,164,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 124,0,0,0,171,4,0,0,115,8,0,0,0,0,7,15, +- 1,12,1,10,1,122,22,70,105,108,101,70,105,110,100,101, +- 114,46,102,105,110,100,95,108,111,97,100,101,114,99,6,0, +- 0,0,0,0,0,0,7,0,0,0,7,0,0,0,67,0, +- 0,0,115,40,0,0,0,124,1,0,124,2,0,124,3,0, +- 131,2,0,125,6,0,116,0,0,124,2,0,124,3,0,100, +- 1,0,124,6,0,100,2,0,124,4,0,131,2,2,83,41, +- 3,78,114,127,0,0,0,114,156,0,0,0,41,1,114,167, +- 0,0,0,41,7,114,108,0,0,0,114,165,0,0,0,114, +- 126,0,0,0,114,35,0,0,0,90,4,115,109,115,108,114, +- 180,0,0,0,114,127,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,5,1,0,0,183,4,0, +- 0,115,6,0,0,0,0,1,15,1,18,1,122,20,70,105, +- 108,101,70,105,110,100,101,114,46,95,103,101,116,95,115,112, +- 101,99,78,99,3,0,0,0,0,0,0,0,14,0,0,0, +- 15,0,0,0,67,0,0,0,115,234,1,0,0,100,1,0, +- 125,3,0,124,1,0,106,0,0,100,2,0,131,1,0,100, +- 3,0,25,125,4,0,121,34,0,116,1,0,124,0,0,106, +- 2,0,112,49,0,116,3,0,106,4,0,131,0,0,131,1, +- 0,106,5,0,125,5,0,87,110,24,0,4,116,6,0,107, +- 10,0,114,85,0,1,1,1,100,10,0,125,5,0,89,110, +- 1,0,88,124,5,0,124,0,0,106,7,0,107,3,0,114, +- 120,0,124,0,0,106,8,0,131,0,0,1,124,5,0,124, +- 0,0,95,7,0,116,9,0,131,0,0,114,153,0,124,0, +- 0,106,10,0,125,6,0,124,4,0,106,11,0,131,0,0, +- 125,7,0,110,15,0,124,0,0,106,12,0,125,6,0,124, +- 4,0,125,7,0,124,7,0,124,6,0,107,6,0,114,45, +- 1,116,13,0,124,0,0,106,2,0,124,4,0,131,2,0, +- 125,8,0,120,100,0,124,0,0,106,14,0,68,93,77,0, +- 92,2,0,125,9,0,125,10,0,100,5,0,124,9,0,23, +- 125,11,0,116,13,0,124,8,0,124,11,0,131,2,0,125, +- 12,0,116,15,0,124,12,0,131,1,0,114,208,0,124,0, +- 0,106,16,0,124,10,0,124,1,0,124,12,0,124,8,0, +- 103,1,0,124,2,0,131,5,0,83,113,208,0,87,116,17, +- 0,124,8,0,131,1,0,125,3,0,120,123,0,124,0,0, +- 106,14,0,68,93,112,0,92,2,0,125,9,0,125,10,0, +- 116,13,0,124,0,0,106,2,0,124,4,0,124,9,0,23, +- 131,2,0,125,12,0,116,18,0,100,6,0,106,19,0,124, +- 12,0,131,1,0,100,7,0,100,3,0,131,1,1,1,124, +- 7,0,124,9,0,23,124,6,0,107,6,0,114,55,1,116, +- 15,0,124,12,0,131,1,0,114,55,1,124,0,0,106,16, +- 0,124,10,0,124,1,0,124,12,0,100,8,0,124,2,0, +- 131,5,0,83,113,55,1,87,124,3,0,114,230,1,116,18, +- 0,100,9,0,106,19,0,124,8,0,131,1,0,131,1,0, +- 1,116,20,0,106,21,0,124,1,0,100,8,0,131,2,0, +- 125,13,0,124,8,0,103,1,0,124,13,0,95,22,0,124, +- 13,0,83,100,8,0,83,41,11,122,125,84,114,121,32,116, +- 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32, +- 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, +- 100,32,109,111,100,117,108,101,44,32,111,114,32,116,104,101, +- 32,110,97,109,101,115,112,97,99,101,10,32,32,32,32,32, +- 32,32,32,112,97,99,107,97,103,101,32,112,111,114,116,105, +- 111,110,115,46,32,82,101,116,117,114,110,115,32,40,108,111, +- 97,100,101,114,44,32,108,105,115,116,45,111,102,45,112,111, +- 114,116,105,111,110,115,41,46,70,114,58,0,0,0,114,56, +- 0,0,0,114,29,0,0,0,114,185,0,0,0,122,9,116, +- 114,121,105,110,103,32,123,125,114,98,0,0,0,78,122,25, +- 112,111,115,115,105,98,108,101,32,110,97,109,101,115,112,97, +- 99,101,32,102,111,114,32,123,125,114,87,0,0,0,41,23, +- 114,32,0,0,0,114,39,0,0,0,114,35,0,0,0,114, +- 3,0,0,0,114,45,0,0,0,114,219,0,0,0,114,40, +- 0,0,0,114,8,1,0,0,218,11,95,102,105,108,108,95, +- 99,97,99,104,101,114,6,0,0,0,114,11,1,0,0,114, +- 88,0,0,0,114,10,1,0,0,114,28,0,0,0,114,7, +- 1,0,0,114,44,0,0,0,114,5,1,0,0,114,46,0, +- 0,0,114,105,0,0,0,114,47,0,0,0,114,121,0,0, +- 0,114,160,0,0,0,114,156,0,0,0,41,14,114,108,0, +- 0,0,114,126,0,0,0,114,180,0,0,0,90,12,105,115, +- 95,110,97,109,101,115,112,97,99,101,90,11,116,97,105,108, +- 95,109,111,100,117,108,101,114,133,0,0,0,90,5,99,97, +- 99,104,101,90,12,99,97,99,104,101,95,109,111,100,117,108, +- 101,90,9,98,97,115,101,95,112,97,116,104,114,225,0,0, +- 0,114,165,0,0,0,90,13,105,110,105,116,95,102,105,108, +- 101,110,97,109,101,90,9,102,117,108,108,95,112,97,116,104, +- 114,164,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,181,0,0,0,188,4,0,0,115,68,0, +- 0,0,0,3,6,1,19,1,3,1,34,1,13,1,11,1, +- 15,1,10,1,9,2,9,1,9,1,15,2,9,1,6,2, +- 12,1,18,1,22,1,10,1,15,1,12,1,32,4,12,2, +- 22,1,22,1,25,1,16,1,12,1,29,1,6,1,19,1, +- 18,1,12,1,4,1,122,20,70,105,108,101,70,105,110,100, +- 101,114,46,102,105,110,100,95,115,112,101,99,99,1,0,0, +- 0,0,0,0,0,9,0,0,0,13,0,0,0,67,0,0, +- 0,115,11,1,0,0,124,0,0,106,0,0,125,1,0,121, +- 31,0,116,1,0,106,2,0,124,1,0,112,33,0,116,1, +- 0,106,3,0,131,0,0,131,1,0,125,2,0,87,110,33, +- 0,4,116,4,0,116,5,0,116,6,0,102,3,0,107,10, +- 0,114,75,0,1,1,1,103,0,0,125,2,0,89,110,1, +- 0,88,116,7,0,106,8,0,106,9,0,100,1,0,131,1, +- 0,115,112,0,116,10,0,124,2,0,131,1,0,124,0,0, +- 95,11,0,110,111,0,116,10,0,131,0,0,125,3,0,120, +- 90,0,124,2,0,68,93,82,0,125,4,0,124,4,0,106, +- 12,0,100,2,0,131,1,0,92,3,0,125,5,0,125,6, +- 0,125,7,0,124,6,0,114,191,0,100,3,0,106,13,0, +- 124,5,0,124,7,0,106,14,0,131,0,0,131,2,0,125, +- 8,0,110,6,0,124,5,0,125,8,0,124,3,0,106,15, +- 0,124,8,0,131,1,0,1,113,128,0,87,124,3,0,124, +- 0,0,95,11,0,116,7,0,106,8,0,106,9,0,116,16, +- 0,131,1,0,114,7,1,100,4,0,100,5,0,132,0,0, +- 124,2,0,68,131,1,0,124,0,0,95,17,0,100,6,0, +- 83,41,7,122,68,70,105,108,108,32,116,104,101,32,99,97, +- 99,104,101,32,111,102,32,112,111,116,101,110,116,105,97,108, +- 32,109,111,100,117,108,101,115,32,97,110,100,32,112,97,99, +- 107,97,103,101,115,32,102,111,114,32,116,104,105,115,32,100, +- 105,114,101,99,116,111,114,121,46,114,0,0,0,0,114,58, +- 0,0,0,122,5,123,125,46,123,125,99,1,0,0,0,0, +- 0,0,0,2,0,0,0,3,0,0,0,83,0,0,0,115, +- 28,0,0,0,104,0,0,124,0,0,93,18,0,125,1,0, +- 124,1,0,106,0,0,131,0,0,146,2,0,113,6,0,83, +- 114,4,0,0,0,41,1,114,88,0,0,0,41,2,114,22, +- 0,0,0,90,2,102,110,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,250,9,60,115,101,116,99,111,109,112, +- 62,6,5,0,0,115,2,0,0,0,9,0,122,41,70,105, +- 108,101,70,105,110,100,101,114,46,95,102,105,108,108,95,99, +- 97,99,104,101,46,60,108,111,99,97,108,115,62,46,60,115, +- 101,116,99,111,109,112,62,78,41,18,114,35,0,0,0,114, +- 3,0,0,0,90,7,108,105,115,116,100,105,114,114,45,0, +- 0,0,114,0,1,0,0,218,15,80,101,114,109,105,115,115, +- 105,111,110,69,114,114,111,114,218,18,78,111,116,65,68,105, +- 114,101,99,116,111,114,121,69,114,114,111,114,114,7,0,0, +- 0,114,8,0,0,0,114,9,0,0,0,114,9,1,0,0, +- 114,10,1,0,0,114,83,0,0,0,114,47,0,0,0,114, +- 88,0,0,0,218,3,97,100,100,114,10,0,0,0,114,11, +- 1,0,0,41,9,114,108,0,0,0,114,35,0,0,0,90, +- 8,99,111,110,116,101,110,116,115,90,21,108,111,119,101,114, +- 95,115,117,102,102,105,120,95,99,111,110,116,101,110,116,115, +- 114,245,0,0,0,114,106,0,0,0,114,237,0,0,0,114, +- 225,0,0,0,90,8,110,101,119,95,110,97,109,101,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,13,1, +- 0,0,233,4,0,0,115,34,0,0,0,0,2,9,1,3, +- 1,31,1,22,3,11,3,18,1,18,7,9,1,13,1,24, +- 1,6,1,27,2,6,1,17,1,9,1,18,1,122,22,70, +- 105,108,101,70,105,110,100,101,114,46,95,102,105,108,108,95, +- 99,97,99,104,101,99,1,0,0,0,0,0,0,0,3,0, +- 0,0,3,0,0,0,7,0,0,0,115,25,0,0,0,135, +- 0,0,135,1,0,102,2,0,100,1,0,100,2,0,134,0, +- 0,125,2,0,124,2,0,83,41,3,97,20,1,0,0,65, +- 32,99,108,97,115,115,32,109,101,116,104,111,100,32,119,104, +- 105,99,104,32,114,101,116,117,114,110,115,32,97,32,99,108, +- 111,115,117,114,101,32,116,111,32,117,115,101,32,111,110,32, +- 115,121,115,46,112,97,116,104,95,104,111,111,107,10,32,32, +- 32,32,32,32,32,32,119,104,105,99,104,32,119,105,108,108, +- 32,114,101,116,117,114,110,32,97,110,32,105,110,115,116,97, +- 110,99,101,32,117,115,105,110,103,32,116,104,101,32,115,112, +- 101,99,105,102,105,101,100,32,108,111,97,100,101,114,115,32, +- 97,110,100,32,116,104,101,32,112,97,116,104,10,32,32,32, +- 32,32,32,32,32,99,97,108,108,101,100,32,111,110,32,116, +- 104,101,32,99,108,111,115,117,114,101,46,10,10,32,32,32, +- 32,32,32,32,32,73,102,32,116,104,101,32,112,97,116,104, +- 32,99,97,108,108,101,100,32,111,110,32,116,104,101,32,99, +- 108,111,115,117,114,101,32,105,115,32,110,111,116,32,97,32, +- 100,105,114,101,99,116,111,114,121,44,32,73,109,112,111,114, +- 116,69,114,114,111,114,32,105,115,10,32,32,32,32,32,32, +- 32,32,114,97,105,115,101,100,46,10,10,32,32,32,32,32, +- 32,32,32,99,1,0,0,0,0,0,0,0,1,0,0,0, +- 4,0,0,0,19,0,0,0,115,43,0,0,0,116,0,0, +- 124,0,0,131,1,0,115,30,0,116,1,0,100,1,0,100, +- 2,0,124,0,0,131,1,1,130,1,0,136,0,0,124,0, - 0,136,1,0,140,1,0,83,41,3,122,45,80,97,116,104, - 32,104,111,111,107,32,102,111,114,32,105,109,112,111,114,116, - 108,105,98,46,109,97,99,104,105,110,101,114,121,46,70,105, - 108,101,70,105,110,100,101,114,46,122,30,111,110,108,121,32, - 100,105,114,101,99,116,111,114,105,101,115,32,97,114,101,32, - 115,117,112,112,111,114,116,101,100,114,35,0,0,0,41,2, -- 114,46,0,0,0,114,153,0,0,0,41,1,114,35,0,0, -- 0,41,2,114,11,1,0,0,114,92,1,0,0,114,4,0, +- 114,46,0,0,0,114,107,0,0,0,41,1,114,35,0,0, +- 0,41,2,114,170,0,0,0,114,12,1,0,0,114,4,0, - 0,0,114,5,0,0,0,218,24,112,97,116,104,95,104,111, - 111,107,95,102,111,114,95,70,105,108,101,70,105,110,100,101, -- 114,54,8,0,0,115,6,0,0,0,0,2,12,1,21,1, +- 114,18,5,0,0,115,6,0,0,0,0,2,12,1,18,1, - 122,54,70,105,108,101,70,105,110,100,101,114,46,112,97,116, - 104,95,104,111,111,107,46,60,108,111,99,97,108,115,62,46, - 112,97,116,104,95,104,111,111,107,95,102,111,114,95,70,105, - 108,101,70,105,110,100,101,114,114,4,0,0,0,41,3,114, -- 11,1,0,0,114,92,1,0,0,114,99,1,0,0,114,4, -- 0,0,0,41,2,114,11,1,0,0,114,92,1,0,0,114, -- 5,0,0,0,218,9,112,97,116,104,95,104,111,111,107,44, -- 8,0,0,115,4,0,0,0,0,10,21,6,122,20,70,105, +- 170,0,0,0,114,12,1,0,0,114,18,1,0,0,114,4, +- 0,0,0,41,2,114,170,0,0,0,114,12,1,0,0,114, +- 5,0,0,0,218,9,112,97,116,104,95,104,111,111,107,8, +- 5,0,0,115,4,0,0,0,0,10,21,6,122,20,70,105, - 108,101,70,105,110,100,101,114,46,112,97,116,104,95,104,111, - 111,107,99,1,0,0,0,0,0,0,0,1,0,0,0,2, - 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, - 0,0,124,0,0,106,1,0,131,1,0,83,41,2,78,122, - 16,70,105,108,101,70,105,110,100,101,114,40,123,33,114,125, - 41,41,2,114,47,0,0,0,114,35,0,0,0,41,1,114, -- 71,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,101,0,0,0,62,8,0,0,115,2,0,0, +- 108,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,244,0,0,0,26,5,0,0,115,2,0,0, - 0,0,1,122,19,70,105,108,101,70,105,110,100,101,114,46, -- 95,95,114,101,112,114,95,95,41,15,114,57,0,0,0,114, -- 56,0,0,0,114,58,0,0,0,114,59,0,0,0,114,72, -- 0,0,0,114,74,1,0,0,114,172,0,0,0,114,14,1, -- 0,0,114,165,0,0,0,114,85,1,0,0,114,13,1,0, -- 0,114,93,1,0,0,114,18,1,0,0,114,100,1,0,0, -- 114,101,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,86,1,0,0,178,7, +- 95,95,114,101,112,114,95,95,41,15,114,112,0,0,0,114, +- 111,0,0,0,114,113,0,0,0,114,114,0,0,0,114,185, +- 0,0,0,114,250,0,0,0,114,130,0,0,0,114,182,0, +- 0,0,114,124,0,0,0,114,5,1,0,0,114,181,0,0, +- 0,114,13,1,0,0,114,183,0,0,0,114,19,1,0,0, +- 114,244,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,6,1,0,0,142,4, - 0,0,115,20,0,0,0,12,7,6,2,12,14,12,4,6, -- 2,12,12,12,5,15,45,12,31,18,18,114,86,1,0,0, -- 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, -- 0,64,0,0,0,115,46,0,0,0,101,0,0,90,1,0, -- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, -- 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, -- 0,90,5,0,100,6,0,83,41,7,218,18,95,73,109,112, -- 111,114,116,76,111,99,107,67,111,110,116,101,120,116,122,36, -- 67,111,110,116,101,120,116,32,109,97,110,97,103,101,114,32, -- 102,111,114,32,116,104,101,32,105,109,112,111,114,116,32,108, -- 111,99,107,46,99,1,0,0,0,0,0,0,0,1,0,0, -- 0,1,0,0,0,67,0,0,0,115,14,0,0,0,116,0, -- 0,106,1,0,131,0,0,1,100,1,0,83,41,2,122,24, -- 65,99,113,117,105,114,101,32,116,104,101,32,105,109,112,111, -- 114,116,32,108,111,99,107,46,78,41,2,114,106,0,0,0, -- 114,3,1,0,0,41,1,114,71,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,75,0,0,0, -- 72,8,0,0,115,2,0,0,0,0,2,122,28,95,73,109, -- 112,111,114,116,76,111,99,107,67,111,110,116,101,120,116,46, -- 95,95,101,110,116,101,114,95,95,99,4,0,0,0,0,0, -- 0,0,4,0,0,0,1,0,0,0,67,0,0,0,115,14, -+ 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, -+ 0,67,0,0,0,115,13,0,0,0,100,3,0,124,0,0, -+ 95,0,0,100,2,0,83,41,4,122,31,73,110,118,97,108, -+ 105,100,97,116,101,32,116,104,101,32,100,105,114,101,99,116, -+ 111,114,121,32,109,116,105,109,101,46,114,30,0,0,0,78, -+ 114,139,0,0,0,41,1,114,89,1,0,0,41,1,114,72, +- 2,12,12,12,5,15,45,12,31,18,18,114,6,1,0,0, +- 99,4,0,0,0,0,0,0,0,6,0,0,0,11,0,0, +- 0,67,0,0,0,115,195,0,0,0,124,0,0,106,0,0, +- 100,1,0,131,1,0,125,4,0,124,0,0,106,0,0,100, +- 2,0,131,1,0,125,5,0,124,4,0,115,99,0,124,5, +- 0,114,54,0,124,5,0,106,1,0,125,4,0,110,45,0, +- 124,2,0,124,3,0,107,2,0,114,84,0,116,2,0,124, +- 1,0,124,2,0,131,2,0,125,4,0,110,15,0,116,3, +- 0,124,1,0,124,2,0,131,2,0,125,4,0,124,5,0, +- 115,126,0,116,4,0,124,1,0,124,2,0,100,3,0,124, +- 4,0,131,2,1,125,5,0,121,44,0,124,5,0,124,0, +- 0,100,2,0,60,124,4,0,124,0,0,100,1,0,60,124, +- 2,0,124,0,0,100,4,0,60,124,3,0,124,0,0,100, +- 5,0,60,87,110,18,0,4,116,5,0,107,10,0,114,190, +- 0,1,1,1,89,110,1,0,88,100,0,0,83,41,6,78, +- 218,10,95,95,108,111,97,100,101,114,95,95,218,8,95,95, +- 115,112,101,99,95,95,114,127,0,0,0,90,8,95,95,102, +- 105,108,101,95,95,90,10,95,95,99,97,99,104,101,100,95, +- 95,41,6,218,3,103,101,116,114,127,0,0,0,114,223,0, +- 0,0,114,218,0,0,0,114,167,0,0,0,218,9,69,120, +- 99,101,112,116,105,111,110,41,6,90,2,110,115,114,106,0, +- 0,0,90,8,112,97,116,104,110,97,109,101,90,9,99,112, +- 97,116,104,110,97,109,101,114,127,0,0,0,114,164,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,14,95,102,105,120,95,117,112,95,109,111,100,117,108,101, +- 32,5,0,0,115,34,0,0,0,0,2,15,1,15,1,6, +- 1,6,1,12,1,12,1,18,2,15,1,6,1,21,1,3, +- 1,10,1,10,1,10,1,14,1,13,2,114,24,1,0,0, +- 99,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0, +- 0,67,0,0,0,115,55,0,0,0,116,0,0,116,1,0, +- 106,2,0,131,0,0,102,2,0,125,0,0,116,3,0,116, +- 4,0,102,2,0,125,1,0,116,5,0,116,6,0,102,2, +- 0,125,2,0,124,0,0,124,1,0,124,2,0,103,3,0, +- 83,41,1,122,95,82,101,116,117,114,110,115,32,97,32,108, +- 105,115,116,32,111,102,32,102,105,108,101,45,98,97,115,101, +- 100,32,109,111,100,117,108,101,32,108,111,97,100,101,114,115, +- 46,10,10,32,32,32,32,69,97,99,104,32,105,116,101,109, +- 32,105,115,32,97,32,116,117,112,108,101,32,40,108,111,97, +- 100,101,114,44,32,115,117,102,102,105,120,101,115,41,46,10, +- 32,32,32,32,41,7,114,224,0,0,0,114,145,0,0,0, +- 218,18,101,120,116,101,110,115,105,111,110,95,115,117,102,102, +- 105,120,101,115,114,218,0,0,0,114,84,0,0,0,114,223, +- 0,0,0,114,74,0,0,0,41,3,90,10,101,120,116,101, +- 110,115,105,111,110,115,90,6,115,111,117,114,99,101,90,8, +- 98,121,116,101,99,111,100,101,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,161,0,0,0,55,5,0,0, +- 115,8,0,0,0,0,5,18,1,12,1,12,1,114,161,0, +- 0,0,99,1,0,0,0,0,0,0,0,12,0,0,0,12, +- 0,0,0,67,0,0,0,115,70,2,0,0,124,0,0,97, +- 0,0,116,0,0,106,1,0,97,1,0,116,0,0,106,2, +- 0,97,2,0,116,1,0,106,3,0,116,4,0,25,125,1, +- 0,120,76,0,100,26,0,68,93,68,0,125,2,0,124,2, +- 0,116,1,0,106,3,0,107,7,0,114,83,0,116,0,0, +- 106,5,0,124,2,0,131,1,0,125,3,0,110,13,0,116, +- 1,0,106,3,0,124,2,0,25,125,3,0,116,6,0,124, +- 1,0,124,2,0,124,3,0,131,3,0,1,113,44,0,87, +- 100,5,0,100,6,0,103,1,0,102,2,0,100,7,0,100, +- 8,0,100,6,0,103,2,0,102,2,0,102,2,0,125,4, +- 0,120,149,0,124,4,0,68,93,129,0,92,2,0,125,5, +- 0,125,6,0,116,7,0,100,9,0,100,10,0,132,0,0, +- 124,6,0,68,131,1,0,131,1,0,115,199,0,116,8,0, +- 130,1,0,124,6,0,100,11,0,25,125,7,0,124,5,0, +- 116,1,0,106,3,0,107,6,0,114,241,0,116,1,0,106, +- 3,0,124,5,0,25,125,8,0,80,113,156,0,121,20,0, +- 116,0,0,106,5,0,124,5,0,131,1,0,125,8,0,80, +- 87,113,156,0,4,116,9,0,107,10,0,114,28,1,1,1, +- 1,119,156,0,89,113,156,0,88,113,156,0,87,116,9,0, +- 100,12,0,131,1,0,130,1,0,116,6,0,124,1,0,100, +- 13,0,124,8,0,131,3,0,1,116,6,0,124,1,0,100, +- 14,0,124,7,0,131,3,0,1,116,6,0,124,1,0,100, +- 15,0,100,16,0,106,10,0,124,6,0,131,1,0,131,3, +- 0,1,121,19,0,116,0,0,106,5,0,100,17,0,131,1, +- 0,125,9,0,87,110,24,0,4,116,9,0,107,10,0,114, +- 147,1,1,1,1,100,18,0,125,9,0,89,110,1,0,88, +- 116,6,0,124,1,0,100,17,0,124,9,0,131,3,0,1, +- 116,0,0,106,5,0,100,19,0,131,1,0,125,10,0,116, +- 6,0,124,1,0,100,19,0,124,10,0,131,3,0,1,124, +- 5,0,100,7,0,107,2,0,114,238,1,116,0,0,106,5, +- 0,100,20,0,131,1,0,125,11,0,116,6,0,124,1,0, +- 100,21,0,124,11,0,131,3,0,1,116,6,0,124,1,0, +- 100,22,0,116,11,0,131,0,0,131,3,0,1,116,12,0, +- 106,13,0,116,2,0,106,14,0,131,0,0,131,1,0,1, +- 124,5,0,100,7,0,107,2,0,114,66,2,116,15,0,106, +- 16,0,100,23,0,131,1,0,1,100,24,0,116,12,0,107, +- 6,0,114,66,2,100,25,0,116,17,0,95,18,0,100,18, +- 0,83,41,27,122,205,83,101,116,117,112,32,116,104,101,32, ++ 115,112,97,99,101,76,111,97,100,101,114,46,95,95,105,110, ++ 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, ++ 0,2,0,0,0,67,0,0,0,115,16,0,0,0,100,1, ++ 0,106,0,0,124,1,0,106,1,0,131,1,0,83,41,2, ++ 122,115,82,101,116,117,114,110,32,114,101,112,114,32,102,111, ++ 114,32,116,104,101,32,109,111,100,117,108,101,46,10,10,32, ++ 32,32,32,32,32,32,32,84,104,101,32,109,101,116,104,111, ++ 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, ++ 32,32,84,104,101,32,105,109,112,111,114,116,32,109,97,99, ++ 104,105,110,101,114,121,32,100,111,101,115,32,116,104,101,32, ++ 106,111,98,32,105,116,115,101,108,102,46,10,10,32,32,32, ++ 32,32,32,32,32,122,25,60,109,111,100,117,108,101,32,123, ++ 33,114,125,32,40,110,97,109,101,115,112,97,99,101,41,62, ++ 41,2,114,48,0,0,0,114,113,0,0,0,41,2,114,171, ++ 0,0,0,114,191,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,218,11,109,111,100,117,108,101,95, ++ 114,101,112,114,227,3,0,0,115,2,0,0,0,0,7,122, ++ 28,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, ++ 114,46,109,111,100,117,108,101,95,114,101,112,114,99,2,0, ++ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, ++ 0,0,115,4,0,0,0,100,1,0,83,41,2,78,84,114, ++ 5,0,0,0,41,2,114,109,0,0,0,114,127,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 160,0,0,0,236,3,0,0,115,2,0,0,0,0,1,122, ++ 27,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, ++ 114,46,105,115,95,112,97,99,107,97,103,101,99,2,0,0, ++ 0,0,0,0,0,2,0,0,0,1,0,0,0,67,0,0, ++ 0,115,4,0,0,0,100,1,0,83,41,2,78,114,31,0, ++ 0,0,114,5,0,0,0,41,2,114,109,0,0,0,114,127, + 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,75,1,0,0,201,7,0,0,115,2,0,0,0, -+ 0,2,122,28,70,105,108,101,70,105,110,100,101,114,46,105, -+ 110,118,97,108,105,100,97,116,101,95,99,97,99,104,101,115, -+ 99,2,0,0,0,0,0,0,0,3,0,0,0,2,0,0, -+ 0,67,0,0,0,115,59,0,0,0,124,0,0,106,0,0, -+ 124,1,0,131,1,0,125,2,0,124,2,0,100,1,0,107, -+ 8,0,114,37,0,100,1,0,103,0,0,102,2,0,83,124, -+ 2,0,106,1,0,124,2,0,106,2,0,112,55,0,103,0, -+ 0,102,2,0,83,41,2,122,197,84,114,121,32,116,111,32, -+ 102,105,110,100,32,97,32,108,111,97,100,101,114,32,102,111, -+ 114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, -+ 109,111,100,117,108,101,44,32,111,114,32,116,104,101,32,110, -+ 97,109,101,115,112,97,99,101,10,32,32,32,32,32,32,32, -+ 32,112,97,99,107,97,103,101,32,112,111,114,116,105,111,110, -+ 115,46,32,82,101,116,117,114,110,115,32,40,108,111,97,100, -+ 101,114,44,32,108,105,115,116,45,111,102,45,112,111,114,116, -+ 105,111,110,115,41,46,10,10,32,32,32,32,32,32,32,32, -+ 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, -+ 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, -+ 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, -+ 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, -+ 3,114,14,1,0,0,114,170,0,0,0,114,221,0,0,0, -+ 41,3,114,72,0,0,0,114,159,0,0,0,114,178,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,166,0,0,0,207,7,0,0,115,8,0,0,0,0,7, -+ 15,1,12,1,10,1,122,22,70,105,108,101,70,105,110,100, -+ 101,114,46,102,105,110,100,95,108,111,97,100,101,114,99,6, -+ 0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,67, -+ 0,0,0,115,40,0,0,0,124,1,0,124,2,0,124,3, -+ 0,131,2,0,125,6,0,116,0,0,124,2,0,124,3,0, -+ 100,1,0,124,6,0,100,2,0,124,4,0,131,2,2,83, -+ 41,3,78,114,170,0,0,0,114,221,0,0,0,41,1,114, -+ 240,0,0,0,41,7,114,72,0,0,0,114,244,0,0,0, -+ 114,159,0,0,0,114,36,0,0,0,114,229,0,0,0,114, -+ 13,1,0,0,114,170,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,86,1,0,0,219,7,0, -+ 0,115,6,0,0,0,0,1,15,1,18,1,122,20,70,105, -+ 108,101,70,105,110,100,101,114,46,95,103,101,116,95,115,112, -+ 101,99,78,99,3,0,0,0,0,0,0,0,14,0,0,0, -+ 15,0,0,0,67,0,0,0,115,240,1,0,0,100,1,0, -+ 125,3,0,124,1,0,106,0,0,100,2,0,131,1,0,100, -+ 3,0,25,125,4,0,121,34,0,116,1,0,124,0,0,106, -+ 2,0,112,49,0,116,3,0,106,4,0,131,0,0,131,1, -+ 0,106,5,0,125,5,0,87,110,24,0,4,116,6,0,107, -+ 10,0,114,85,0,1,1,1,100,10,0,125,5,0,89,110, -+ 1,0,88,124,5,0,124,0,0,106,7,0,107,3,0,114, -+ 123,0,124,0,0,106,8,0,131,0,0,1,124,5,0,124, -+ 0,0,95,7,0,110,0,0,116,9,0,131,0,0,114,156, -+ 0,124,0,0,106,10,0,125,6,0,124,4,0,106,11,0, -+ 131,0,0,125,7,0,110,15,0,124,0,0,106,12,0,125, -+ 6,0,124,4,0,125,7,0,124,7,0,124,6,0,107,6, -+ 0,114,51,1,116,13,0,124,0,0,106,2,0,124,4,0, -+ 131,2,0,125,8,0,120,103,0,124,0,0,106,14,0,68, -+ 93,77,0,92,2,0,125,9,0,125,10,0,100,5,0,124, -+ 9,0,23,125,11,0,116,13,0,124,8,0,124,11,0,131, -+ 2,0,125,12,0,116,15,0,124,12,0,131,1,0,114,211, -+ 0,124,0,0,106,16,0,124,10,0,124,1,0,124,12,0, -+ 124,8,0,103,1,0,124,2,0,131,5,0,83,113,211,0, -+ 87,116,17,0,124,8,0,131,1,0,125,3,0,110,0,0, -+ 120,126,0,124,0,0,106,14,0,68,93,115,0,92,2,0, -+ 125,9,0,125,10,0,116,13,0,124,0,0,106,2,0,124, -+ 4,0,124,9,0,23,131,2,0,125,12,0,116,18,0,100, -+ 6,0,106,19,0,124,12,0,131,1,0,100,7,0,100,3, -+ 0,131,1,1,1,124,7,0,124,9,0,23,124,6,0,107, -+ 6,0,114,61,1,116,15,0,124,12,0,131,1,0,114,176, -+ 1,124,0,0,106,16,0,124,10,0,124,1,0,124,12,0, -+ 100,8,0,124,2,0,131,5,0,83,113,61,1,113,61,1, -+ 87,124,3,0,114,236,1,116,18,0,100,9,0,106,19,0, -+ 124,8,0,131,1,0,131,1,0,1,116,20,0,124,1,0, -+ 100,8,0,131,2,0,125,13,0,124,8,0,103,1,0,124, -+ 13,0,95,21,0,124,13,0,83,100,8,0,83,41,11,122, -+ 125,84,114,121,32,116,111,32,102,105,110,100,32,97,32,108, -+ 111,97,100,101,114,32,102,111,114,32,116,104,101,32,115,112, -+ 101,99,105,102,105,101,100,32,109,111,100,117,108,101,44,32, -+ 111,114,32,116,104,101,32,110,97,109,101,115,112,97,99,101, -+ 10,32,32,32,32,32,32,32,32,112,97,99,107,97,103,101, -+ 32,112,111,114,116,105,111,110,115,46,32,82,101,116,117,114, -+ 110,115,32,40,108,111,97,100,101,114,44,32,108,105,115,116, -+ 45,111,102,45,112,111,114,116,105,111,110,115,41,46,70,114, -+ 117,0,0,0,114,116,0,0,0,114,30,0,0,0,114,73, -+ 0,0,0,122,9,116,114,121,105,110,103,32,123,125,114,146, -+ 0,0,0,78,122,25,112,111,115,115,105,98,108,101,32,110, -+ 97,109,101,115,112,97,99,101,32,102,111,114,32,123,125,114, -+ 139,0,0,0,41,22,114,33,0,0,0,114,40,0,0,0, -+ 114,36,0,0,0,114,4,0,0,0,114,46,0,0,0,114, -+ 54,1,0,0,114,41,0,0,0,114,89,1,0,0,218,11, -+ 95,102,105,108,108,95,99,97,99,104,101,114,7,0,0,0, -+ 114,92,1,0,0,114,140,0,0,0,114,91,1,0,0,114, -+ 29,0,0,0,114,88,1,0,0,114,45,0,0,0,114,86, -+ 1,0,0,114,47,0,0,0,114,153,0,0,0,114,48,0, -+ 0,0,114,217,0,0,0,114,221,0,0,0,41,14,114,72, -+ 0,0,0,114,159,0,0,0,114,13,1,0,0,90,12,105, -+ 115,95,110,97,109,101,115,112,97,99,101,90,11,116,97,105, -+ 108,95,109,111,100,117,108,101,114,184,0,0,0,90,5,99, -+ 97,99,104,101,90,12,99,97,99,104,101,95,109,111,100,117, -+ 108,101,90,9,98,97,115,101,95,112,97,116,104,114,58,1, -+ 0,0,114,244,0,0,0,90,13,105,110,105,116,95,102,105, -+ 108,101,110,97,109,101,90,9,102,117,108,108,95,112,97,116, -+ 104,114,178,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,114,14,1,0,0,224,7,0,0,115,68, -+ 0,0,0,0,3,6,1,19,1,3,1,34,1,13,1,11, -+ 1,15,1,10,1,12,2,9,1,9,1,15,2,9,1,6, -+ 2,12,1,18,1,22,1,10,1,15,1,12,1,32,4,15, -+ 2,22,1,22,1,25,1,16,1,12,1,32,1,6,1,19, -+ 1,15,1,12,1,4,1,122,20,70,105,108,101,70,105,110, -+ 100,101,114,46,102,105,110,100,95,115,112,101,99,99,1,0, -+ 0,0,0,0,0,0,9,0,0,0,13,0,0,0,67,0, -+ 0,0,115,14,1,0,0,124,0,0,106,0,0,125,1,0, -+ 121,31,0,116,1,0,106,2,0,124,1,0,112,33,0,116, -+ 1,0,106,3,0,131,0,0,131,1,0,125,2,0,87,110, -+ 33,0,4,116,4,0,116,5,0,116,6,0,102,3,0,107, -+ 10,0,114,75,0,1,1,1,103,0,0,125,2,0,89,110, -+ 1,0,88,116,7,0,106,8,0,106,9,0,100,1,0,131, -+ 1,0,115,112,0,116,10,0,124,2,0,131,1,0,124,0, -+ 0,95,11,0,110,111,0,116,10,0,131,0,0,125,3,0, -+ 120,90,0,124,2,0,68,93,82,0,125,4,0,124,4,0, -+ 106,12,0,100,2,0,131,1,0,92,3,0,125,5,0,125, -+ 6,0,125,7,0,124,6,0,114,191,0,100,3,0,106,13, -+ 0,124,5,0,124,7,0,106,14,0,131,0,0,131,2,0, -+ 125,8,0,110,6,0,124,5,0,125,8,0,124,3,0,106, -+ 15,0,124,8,0,131,1,0,1,113,128,0,87,124,3,0, -+ 124,0,0,95,11,0,116,7,0,106,8,0,106,9,0,116, -+ 16,0,131,1,0,114,10,1,100,4,0,100,5,0,132,0, -+ 0,124,2,0,68,131,1,0,124,0,0,95,17,0,110,0, -+ 0,100,6,0,83,41,7,122,68,70,105,108,108,32,116,104, -+ 101,32,99,97,99,104,101,32,111,102,32,112,111,116,101,110, -+ 116,105,97,108,32,109,111,100,117,108,101,115,32,97,110,100, -+ 32,112,97,99,107,97,103,101,115,32,102,111,114,32,116,104, -+ 105,115,32,100,105,114,101,99,116,111,114,121,46,114,0,0, -+ 0,0,114,117,0,0,0,122,5,123,125,46,123,125,99,1, -+ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,83, -+ 0,0,0,115,28,0,0,0,104,0,0,124,0,0,93,18, -+ 0,125,1,0,124,1,0,106,0,0,131,0,0,146,2,0, -+ 113,6,0,83,114,5,0,0,0,41,1,114,140,0,0,0, -+ 41,2,114,23,0,0,0,90,2,102,110,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,250,9,60,115,101,116, -+ 99,111,109,112,62,42,8,0,0,115,2,0,0,0,9,0, -+ 122,41,70,105,108,101,70,105,110,100,101,114,46,95,102,105, -+ 108,108,95,99,97,99,104,101,46,60,108,111,99,97,108,115, -+ 62,46,60,115,101,116,99,111,109,112,62,78,41,18,114,36, -+ 0,0,0,114,4,0,0,0,90,7,108,105,115,116,100,105, -+ 114,114,46,0,0,0,218,17,70,105,108,101,78,111,116,70, -+ 111,117,110,100,69,114,114,111,114,218,15,80,101,114,109,105, -+ 115,115,105,111,110,69,114,114,111,114,218,18,78,111,116,65, -+ 68,105,114,101,99,116,111,114,121,69,114,114,111,114,114,8, -+ 0,0,0,114,9,0,0,0,114,10,0,0,0,114,90,1, -+ 0,0,114,91,1,0,0,114,122,0,0,0,114,48,0,0, -+ 0,114,140,0,0,0,218,3,97,100,100,114,11,0,0,0, -+ 114,92,1,0,0,41,9,114,72,0,0,0,114,36,0,0, -+ 0,90,8,99,111,110,116,101,110,116,115,90,21,108,111,119, -+ 101,114,95,115,117,102,102,105,120,95,99,111,110,116,101,110, -+ 116,115,114,72,1,0,0,114,68,0,0,0,114,66,1,0, -+ 0,114,58,1,0,0,90,8,110,101,119,95,110,97,109,101, ++ 0,0,114,203,0,0,0,239,3,0,0,115,2,0,0,0, ++ 0,1,122,27,95,78,97,109,101,115,112,97,99,101,76,111, ++ 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,99, ++ 2,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0, ++ 67,0,0,0,115,22,0,0,0,116,0,0,100,1,0,100, ++ 2,0,100,3,0,100,4,0,100,5,0,131,3,1,83,41, ++ 6,78,114,31,0,0,0,122,8,60,115,116,114,105,110,103, ++ 62,114,190,0,0,0,114,205,0,0,0,84,41,1,114,206, ++ 0,0,0,41,2,114,109,0,0,0,114,127,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,188, ++ 0,0,0,242,3,0,0,115,2,0,0,0,0,1,122,25, ++ 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, ++ 46,103,101,116,95,99,111,100,101,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, ++ 0,0,0,100,1,0,83,41,2,122,42,85,115,101,32,100, ++ 101,102,97,117,108,116,32,115,101,109,97,110,116,105,99,115, ++ 32,102,111,114,32,109,111,100,117,108,101,32,99,114,101,97, ++ 116,105,111,110,46,78,114,5,0,0,0,41,2,114,109,0, ++ 0,0,114,165,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,187,0,0,0,245,3,0,0,115, ++ 0,0,0,0,122,30,95,78,97,109,101,115,112,97,99,101, ++ 76,111,97,100,101,114,46,99,114,101,97,116,101,95,109,111, ++ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, ++ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,0, ++ 0,83,41,1,78,114,5,0,0,0,41,2,114,109,0,0, ++ 0,114,191,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,114,192,0,0,0,248,3,0,0,115,2, ++ 0,0,0,0,1,122,28,95,78,97,109,101,115,112,97,99, ++ 101,76,111,97,100,101,114,46,101,120,101,99,95,109,111,100, ++ 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, ++ 3,0,0,0,67,0,0,0,115,32,0,0,0,116,0,0, ++ 100,1,0,124,0,0,106,1,0,131,2,0,1,116,2,0, ++ 106,3,0,124,0,0,124,1,0,131,2,0,83,41,2,122, ++ 98,76,111,97,100,32,97,32,110,97,109,101,115,112,97,99, ++ 101,32,109,111,100,117,108,101,46,10,10,32,32,32,32,32, ++ 32,32,32,84,104,105,115,32,109,101,116,104,111,100,32,105, ++ 115,32,100,101,112,114,101,99,97,116,101,100,46,32,32,85, ++ 115,101,32,101,120,101,99,95,109,111,100,117,108,101,40,41, ++ 32,105,110,115,116,101,97,100,46,10,10,32,32,32,32,32, ++ 32,32,32,122,38,110,97,109,101,115,112,97,99,101,32,109, ++ 111,100,117,108,101,32,108,111,97,100,101,100,32,119,105,116, ++ 104,32,112,97,116,104,32,123,33,114,125,41,4,114,106,0, ++ 0,0,114,233,0,0,0,114,122,0,0,0,114,193,0,0, ++ 0,41,2,114,109,0,0,0,114,127,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,194,0,0, ++ 0,251,3,0,0,115,4,0,0,0,0,7,16,1,122,28, ++ 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, ++ 46,108,111,97,100,95,109,111,100,117,108,101,78,41,12,114, ++ 113,0,0,0,114,112,0,0,0,114,114,0,0,0,114,186, ++ 0,0,0,114,184,0,0,0,114,249,0,0,0,114,160,0, ++ 0,0,114,203,0,0,0,114,188,0,0,0,114,187,0,0, ++ 0,114,192,0,0,0,114,194,0,0,0,114,5,0,0,0, + 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 94,1,0,0,13,8,0,0,115,34,0,0,0,0,2,9, -+ 1,3,1,31,1,22,3,11,3,18,1,18,7,9,1,13, -+ 1,24,1,6,1,27,2,6,1,17,1,9,1,18,1,122, -+ 22,70,105,108,101,70,105,110,100,101,114,46,95,102,105,108, -+ 108,95,99,97,99,104,101,99,1,0,0,0,0,0,0,0, -+ 3,0,0,0,3,0,0,0,7,0,0,0,115,25,0,0, -+ 0,135,0,0,135,1,0,102,2,0,100,1,0,100,2,0, -+ 134,0,0,125,2,0,124,2,0,83,41,3,97,20,1,0, -+ 0,65,32,99,108,97,115,115,32,109,101,116,104,111,100,32, -+ 119,104,105,99,104,32,114,101,116,117,114,110,115,32,97,32, -+ 99,108,111,115,117,114,101,32,116,111,32,117,115,101,32,111, -+ 110,32,115,121,115,46,112,97,116,104,95,104,111,111,107,10, -+ 32,32,32,32,32,32,32,32,119,104,105,99,104,32,119,105, -+ 108,108,32,114,101,116,117,114,110,32,97,110,32,105,110,115, -+ 116,97,110,99,101,32,117,115,105,110,103,32,116,104,101,32, -+ 115,112,101,99,105,102,105,101,100,32,108,111,97,100,101,114, -+ 115,32,97,110,100,32,116,104,101,32,112,97,116,104,10,32, -+ 32,32,32,32,32,32,32,99,97,108,108,101,100,32,111,110, -+ 32,116,104,101,32,99,108,111,115,117,114,101,46,10,10,32, -+ 32,32,32,32,32,32,32,73,102,32,116,104,101,32,112,97, -+ 116,104,32,99,97,108,108,101,100,32,111,110,32,116,104,101, -+ 32,99,108,111,115,117,114,101,32,105,115,32,110,111,116,32, -+ 97,32,100,105,114,101,99,116,111,114,121,44,32,73,109,112, -+ 111,114,116,69,114,114,111,114,32,105,115,10,32,32,32,32, -+ 32,32,32,32,114,97,105,115,101,100,46,10,10,32,32,32, -+ 32,32,32,32,32,99,1,0,0,0,0,0,0,0,1,0, -+ 0,0,4,0,0,0,19,0,0,0,115,46,0,0,0,116, -+ 0,0,124,0,0,131,1,0,115,33,0,116,1,0,100,1, -+ 0,100,2,0,124,0,0,131,1,1,130,1,0,110,0,0, ++ 248,0,0,0,223,3,0,0,115,16,0,0,0,12,1,12, ++ 3,18,9,12,3,12,3,12,3,12,3,12,3,114,248,0, ++ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,5, ++ 0,0,0,64,0,0,0,115,160,0,0,0,101,0,0,90, ++ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,101,4, ++ 0,100,2,0,100,3,0,132,0,0,131,1,0,90,5,0, ++ 101,4,0,100,4,0,100,5,0,132,0,0,131,1,0,90, ++ 6,0,101,4,0,100,6,0,100,7,0,132,0,0,131,1, ++ 0,90,7,0,101,4,0,100,8,0,100,9,0,132,0,0, ++ 131,1,0,90,8,0,101,4,0,100,10,0,100,11,0,100, ++ 12,0,132,1,0,131,1,0,90,9,0,101,4,0,100,10, ++ 0,100,10,0,100,13,0,100,14,0,132,2,0,131,1,0, ++ 90,10,0,101,4,0,100,10,0,100,15,0,100,16,0,132, ++ 1,0,131,1,0,90,11,0,100,10,0,83,41,17,218,10, ++ 80,97,116,104,70,105,110,100,101,114,122,62,77,101,116,97, ++ 32,112,97,116,104,32,102,105,110,100,101,114,32,102,111,114, ++ 32,115,121,115,46,112,97,116,104,32,97,110,100,32,112,97, ++ 99,107,97,103,101,32,95,95,112,97,116,104,95,95,32,97, ++ 116,116,114,105,98,117,116,101,115,46,99,1,0,0,0,0, ++ 0,0,0,2,0,0,0,4,0,0,0,67,0,0,0,115, ++ 55,0,0,0,120,48,0,116,0,0,106,1,0,106,2,0, ++ 131,0,0,68,93,31,0,125,1,0,116,3,0,124,1,0, ++ 100,1,0,131,2,0,114,16,0,124,1,0,106,4,0,131, ++ 0,0,1,113,16,0,87,100,2,0,83,41,3,122,125,67, ++ 97,108,108,32,116,104,101,32,105,110,118,97,108,105,100,97, ++ 116,101,95,99,97,99,104,101,115,40,41,32,109,101,116,104, ++ 111,100,32,111,110,32,97,108,108,32,112,97,116,104,32,101, ++ 110,116,114,121,32,102,105,110,100,101,114,115,10,32,32,32, ++ 32,32,32,32,32,115,116,111,114,101,100,32,105,110,32,115, ++ 121,115,46,112,97,116,104,95,105,109,112,111,114,116,101,114, ++ 95,99,97,99,104,101,115,32,40,119,104,101,114,101,32,105, ++ 109,112,108,101,109,101,110,116,101,100,41,46,218,17,105,110, ++ 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,78, ++ 41,5,114,8,0,0,0,218,19,112,97,116,104,95,105,109, ++ 112,111,114,116,101,114,95,99,97,99,104,101,218,6,118,97, ++ 108,117,101,115,114,116,0,0,0,114,251,0,0,0,41,2, ++ 114,171,0,0,0,218,6,102,105,110,100,101,114,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,251,0,0, ++ 0,12,4,0,0,115,6,0,0,0,0,4,22,1,15,1, ++ 122,28,80,97,116,104,70,105,110,100,101,114,46,105,110,118, ++ 97,108,105,100,97,116,101,95,99,97,99,104,101,115,99,2, ++ 0,0,0,0,0,0,0,3,0,0,0,12,0,0,0,67, ++ 0,0,0,115,107,0,0,0,116,0,0,106,1,0,100,1, ++ 0,107,9,0,114,41,0,116,0,0,106,1,0,12,114,41, ++ 0,116,2,0,106,3,0,100,2,0,116,4,0,131,2,0, ++ 1,120,59,0,116,0,0,106,1,0,68,93,44,0,125,2, ++ 0,121,14,0,124,2,0,124,1,0,131,1,0,83,87,113, ++ 51,0,4,116,5,0,107,10,0,114,94,0,1,1,1,119, ++ 51,0,89,113,51,0,88,113,51,0,87,100,1,0,83,100, ++ 1,0,83,41,3,122,113,83,101,97,114,99,104,32,115,101, ++ 113,117,101,110,99,101,32,111,102,32,104,111,111,107,115,32, ++ 102,111,114,32,97,32,102,105,110,100,101,114,32,102,111,114, ++ 32,39,112,97,116,104,39,46,10,10,32,32,32,32,32,32, ++ 32,32,73,102,32,39,104,111,111,107,115,39,32,105,115,32, ++ 102,97,108,115,101,32,116,104,101,110,32,117,115,101,32,115, ++ 121,115,46,112,97,116,104,95,104,111,111,107,115,46,10,10, ++ 32,32,32,32,32,32,32,32,78,122,23,115,121,115,46,112, ++ 97,116,104,95,104,111,111,107,115,32,105,115,32,101,109,112, ++ 116,121,41,6,114,8,0,0,0,218,10,112,97,116,104,95, ++ 104,111,111,107,115,114,61,0,0,0,114,62,0,0,0,114, ++ 126,0,0,0,114,108,0,0,0,41,3,114,171,0,0,0, ++ 114,36,0,0,0,90,4,104,111,111,107,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,11,95,112,97,116, ++ 104,95,104,111,111,107,115,20,4,0,0,115,16,0,0,0, ++ 0,7,25,1,16,1,16,1,3,1,14,1,13,1,12,2, ++ 122,22,80,97,116,104,70,105,110,100,101,114,46,95,112,97, ++ 116,104,95,104,111,111,107,115,99,2,0,0,0,0,0,0, ++ 0,3,0,0,0,19,0,0,0,67,0,0,0,115,123,0, ++ 0,0,124,1,0,100,1,0,107,2,0,114,53,0,121,16, ++ 0,116,0,0,106,1,0,131,0,0,125,1,0,87,110,22, ++ 0,4,116,2,0,107,10,0,114,52,0,1,1,1,100,2, ++ 0,83,89,110,1,0,88,121,17,0,116,3,0,106,4,0, ++ 124,1,0,25,125,2,0,87,110,46,0,4,116,5,0,107, ++ 10,0,114,118,0,1,1,1,124,0,0,106,6,0,124,1, ++ 0,131,1,0,125,2,0,124,2,0,116,3,0,106,4,0, ++ 124,1,0,60,89,110,1,0,88,124,2,0,83,41,3,122, ++ 210,71,101,116,32,116,104,101,32,102,105,110,100,101,114,32, ++ 102,111,114,32,116,104,101,32,112,97,116,104,32,101,110,116, ++ 114,121,32,102,114,111,109,32,115,121,115,46,112,97,116,104, ++ 95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,46, ++ 10,10,32,32,32,32,32,32,32,32,73,102,32,116,104,101, ++ 32,112,97,116,104,32,101,110,116,114,121,32,105,115,32,110, ++ 111,116,32,105,110,32,116,104,101,32,99,97,99,104,101,44, ++ 32,102,105,110,100,32,116,104,101,32,97,112,112,114,111,112, ++ 114,105,97,116,101,32,102,105,110,100,101,114,10,32,32,32, ++ 32,32,32,32,32,97,110,100,32,99,97,99,104,101,32,105, ++ 116,46,32,73,102,32,110,111,32,102,105,110,100,101,114,32, ++ 105,115,32,97,118,97,105,108,97,98,108,101,44,32,115,116, ++ 111,114,101,32,78,111,110,101,46,10,10,32,32,32,32,32, ++ 32,32,32,114,31,0,0,0,78,41,7,114,4,0,0,0, ++ 114,46,0,0,0,218,17,70,105,108,101,78,111,116,70,111, ++ 117,110,100,69,114,114,111,114,114,8,0,0,0,114,252,0, ++ 0,0,114,138,0,0,0,114,0,1,0,0,41,3,114,171, ++ 0,0,0,114,36,0,0,0,114,254,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,20,95,112, ++ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, ++ 104,101,37,4,0,0,115,22,0,0,0,0,8,12,1,3, ++ 1,16,1,13,3,9,1,3,1,17,1,13,1,15,1,18, ++ 1,122,31,80,97,116,104,70,105,110,100,101,114,46,95,112, ++ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, ++ 104,101,99,3,0,0,0,0,0,0,0,6,0,0,0,3, ++ 0,0,0,67,0,0,0,115,119,0,0,0,116,0,0,124, ++ 2,0,100,1,0,131,2,0,114,39,0,124,2,0,106,1, ++ 0,124,1,0,131,1,0,92,2,0,125,3,0,125,4,0, ++ 110,21,0,124,2,0,106,2,0,124,1,0,131,1,0,125, ++ 3,0,103,0,0,125,4,0,124,3,0,100,0,0,107,9, ++ 0,114,88,0,116,3,0,106,4,0,124,1,0,124,3,0, ++ 131,2,0,83,116,3,0,106,5,0,124,1,0,100,0,0, ++ 131,2,0,125,5,0,124,4,0,124,5,0,95,6,0,124, ++ 5,0,83,41,2,78,114,125,0,0,0,41,7,114,116,0, ++ 0,0,114,125,0,0,0,114,183,0,0,0,114,122,0,0, ++ 0,114,180,0,0,0,114,161,0,0,0,114,157,0,0,0, ++ 41,6,114,171,0,0,0,114,127,0,0,0,114,254,0,0, ++ 0,114,128,0,0,0,114,129,0,0,0,114,165,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 16,95,108,101,103,97,99,121,95,103,101,116,95,115,112,101, ++ 99,59,4,0,0,115,18,0,0,0,0,4,15,1,24,2, ++ 15,1,6,1,12,1,16,1,18,1,9,1,122,27,80,97, ++ 116,104,70,105,110,100,101,114,46,95,108,101,103,97,99,121, ++ 95,103,101,116,95,115,112,101,99,78,99,4,0,0,0,0, ++ 0,0,0,9,0,0,0,5,0,0,0,67,0,0,0,115, ++ 243,0,0,0,103,0,0,125,4,0,120,230,0,124,2,0, ++ 68,93,191,0,125,5,0,116,0,0,124,5,0,116,1,0, ++ 116,2,0,102,2,0,131,2,0,115,43,0,113,13,0,124, ++ 0,0,106,3,0,124,5,0,131,1,0,125,6,0,124,6, ++ 0,100,1,0,107,9,0,114,13,0,116,4,0,124,6,0, ++ 100,2,0,131,2,0,114,106,0,124,6,0,106,5,0,124, ++ 1,0,124,3,0,131,2,0,125,7,0,110,18,0,124,0, ++ 0,106,6,0,124,1,0,124,6,0,131,2,0,125,7,0, ++ 124,7,0,100,1,0,107,8,0,114,139,0,113,13,0,124, ++ 7,0,106,7,0,100,1,0,107,9,0,114,158,0,124,7, ++ 0,83,124,7,0,106,8,0,125,8,0,124,8,0,100,1, ++ 0,107,8,0,114,191,0,116,9,0,100,3,0,131,1,0, ++ 130,1,0,124,4,0,106,10,0,124,8,0,131,1,0,1, ++ 113,13,0,87,116,11,0,106,12,0,124,1,0,100,1,0, ++ 131,2,0,125,7,0,124,4,0,124,7,0,95,8,0,124, ++ 7,0,83,100,1,0,83,41,4,122,63,70,105,110,100,32, ++ 116,104,101,32,108,111,97,100,101,114,32,111,114,32,110,97, ++ 109,101,115,112,97,99,101,95,112,97,116,104,32,102,111,114, ++ 32,116,104,105,115,32,109,111,100,117,108,101,47,112,97,99, ++ 107,97,103,101,32,110,97,109,101,46,78,114,182,0,0,0, ++ 122,19,115,112,101,99,32,109,105,115,115,105,110,103,32,108, ++ 111,97,100,101,114,41,13,114,144,0,0,0,114,70,0,0, ++ 0,218,5,98,121,116,101,115,114,2,1,0,0,114,116,0, ++ 0,0,114,182,0,0,0,114,3,1,0,0,114,128,0,0, ++ 0,114,157,0,0,0,114,108,0,0,0,114,150,0,0,0, ++ 114,122,0,0,0,114,161,0,0,0,41,9,114,171,0,0, ++ 0,114,127,0,0,0,114,36,0,0,0,114,181,0,0,0, ++ 218,14,110,97,109,101,115,112,97,99,101,95,112,97,116,104, ++ 90,5,101,110,116,114,121,114,254,0,0,0,114,165,0,0, ++ 0,114,129,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,9,95,103,101,116,95,115,112,101,99, ++ 74,4,0,0,115,40,0,0,0,0,5,6,1,13,1,21, ++ 1,3,1,15,1,12,1,15,1,21,2,18,1,12,1,3, ++ 1,15,1,4,1,9,1,12,1,12,5,17,2,18,1,9, ++ 1,122,20,80,97,116,104,70,105,110,100,101,114,46,95,103, ++ 101,116,95,115,112,101,99,99,4,0,0,0,0,0,0,0, ++ 6,0,0,0,4,0,0,0,67,0,0,0,115,140,0,0, ++ 0,124,2,0,100,1,0,107,8,0,114,21,0,116,0,0, ++ 106,1,0,125,2,0,124,0,0,106,2,0,124,1,0,124, ++ 2,0,124,3,0,131,3,0,125,4,0,124,4,0,100,1, ++ 0,107,8,0,114,58,0,100,1,0,83,124,4,0,106,3, ++ 0,100,1,0,107,8,0,114,132,0,124,4,0,106,4,0, ++ 125,5,0,124,5,0,114,125,0,100,2,0,124,4,0,95, ++ 5,0,116,6,0,124,1,0,124,5,0,124,0,0,106,2, ++ 0,131,3,0,124,4,0,95,4,0,124,4,0,83,100,1, ++ 0,83,110,4,0,124,4,0,83,100,1,0,83,41,3,122, ++ 98,102,105,110,100,32,116,104,101,32,109,111,100,117,108,101, ++ 32,111,110,32,115,121,115,46,112,97,116,104,32,111,114,32, ++ 39,112,97,116,104,39,32,98,97,115,101,100,32,111,110,32, ++ 115,121,115,46,112,97,116,104,95,104,111,111,107,115,32,97, ++ 110,100,10,32,32,32,32,32,32,32,32,115,121,115,46,112, ++ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, ++ 104,101,46,78,90,9,110,97,109,101,115,112,97,99,101,41, ++ 7,114,8,0,0,0,114,36,0,0,0,114,6,1,0,0, ++ 114,128,0,0,0,114,157,0,0,0,114,159,0,0,0,114, ++ 231,0,0,0,41,6,114,171,0,0,0,114,127,0,0,0, ++ 114,36,0,0,0,114,181,0,0,0,114,165,0,0,0,114, ++ 5,1,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,182,0,0,0,106,4,0,0,115,26,0,0, ++ 0,0,4,12,1,9,1,21,1,12,1,4,1,15,1,9, ++ 1,6,3,9,1,24,1,4,2,7,2,122,20,80,97,116, ++ 104,70,105,110,100,101,114,46,102,105,110,100,95,115,112,101, ++ 99,99,3,0,0,0,0,0,0,0,4,0,0,0,3,0, ++ 0,0,67,0,0,0,115,41,0,0,0,124,0,0,106,0, ++ 0,124,1,0,124,2,0,131,2,0,125,3,0,124,3,0, ++ 100,1,0,107,8,0,114,34,0,100,1,0,83,124,3,0, ++ 106,1,0,83,41,2,122,170,102,105,110,100,32,116,104,101, ++ 32,109,111,100,117,108,101,32,111,110,32,115,121,115,46,112, ++ 97,116,104,32,111,114,32,39,112,97,116,104,39,32,98,97, ++ 115,101,100,32,111,110,32,115,121,115,46,112,97,116,104,95, ++ 104,111,111,107,115,32,97,110,100,10,32,32,32,32,32,32, ++ 32,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, ++ 116,101,114,95,99,97,99,104,101,46,10,10,32,32,32,32, ++ 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, ++ 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, ++ 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, ++ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, ++ 32,32,78,41,2,114,182,0,0,0,114,128,0,0,0,41, ++ 4,114,171,0,0,0,114,127,0,0,0,114,36,0,0,0, ++ 114,165,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,183,0,0,0,128,4,0,0,115,8,0, ++ 0,0,0,8,18,1,12,1,4,1,122,22,80,97,116,104, ++ 70,105,110,100,101,114,46,102,105,110,100,95,109,111,100,117, ++ 108,101,41,12,114,113,0,0,0,114,112,0,0,0,114,114, ++ 0,0,0,114,115,0,0,0,114,184,0,0,0,114,251,0, ++ 0,0,114,0,1,0,0,114,2,1,0,0,114,3,1,0, ++ 0,114,6,1,0,0,114,182,0,0,0,114,183,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,250,0,0,0,8,4,0,0,115,22,0, ++ 0,0,12,2,6,2,18,8,18,17,18,22,18,15,3,1, ++ 18,31,3,1,21,21,3,1,114,250,0,0,0,99,0,0, ++ 0,0,0,0,0,0,0,0,0,0,3,0,0,0,64,0, ++ 0,0,115,133,0,0,0,101,0,0,90,1,0,100,0,0, ++ 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, ++ 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, ++ 0,101,6,0,90,7,0,100,6,0,100,7,0,132,0,0, ++ 90,8,0,100,8,0,100,9,0,132,0,0,90,9,0,100, ++ 10,0,100,11,0,100,12,0,132,1,0,90,10,0,100,13, ++ 0,100,14,0,132,0,0,90,11,0,101,12,0,100,15,0, ++ 100,16,0,132,0,0,131,1,0,90,13,0,100,17,0,100, ++ 18,0,132,0,0,90,14,0,100,10,0,83,41,19,218,10, ++ 70,105,108,101,70,105,110,100,101,114,122,172,70,105,108,101, ++ 45,98,97,115,101,100,32,102,105,110,100,101,114,46,10,10, ++ 32,32,32,32,73,110,116,101,114,97,99,116,105,111,110,115, ++ 32,119,105,116,104,32,116,104,101,32,102,105,108,101,32,115, ++ 121,115,116,101,109,32,97,114,101,32,99,97,99,104,101,100, ++ 32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101, ++ 44,32,98,101,105,110,103,10,32,32,32,32,114,101,102,114, ++ 101,115,104,101,100,32,119,104,101,110,32,116,104,101,32,100, ++ 105,114,101,99,116,111,114,121,32,116,104,101,32,102,105,110, ++ 100,101,114,32,105,115,32,104,97,110,100,108,105,110,103,32, ++ 104,97,115,32,98,101,101,110,32,109,111,100,105,102,105,101, ++ 100,46,10,10,32,32,32,32,99,2,0,0,0,0,0,0, ++ 0,5,0,0,0,5,0,0,0,7,0,0,0,115,122,0, ++ 0,0,103,0,0,125,3,0,120,52,0,124,2,0,68,93, ++ 44,0,92,2,0,137,0,0,125,4,0,124,3,0,106,0, ++ 0,135,0,0,102,1,0,100,1,0,100,2,0,134,0,0, ++ 124,4,0,68,131,1,0,131,1,0,1,113,13,0,87,124, ++ 3,0,124,0,0,95,1,0,124,1,0,112,79,0,100,3, ++ 0,124,0,0,95,2,0,100,6,0,124,0,0,95,3,0, ++ 116,4,0,131,0,0,124,0,0,95,5,0,116,4,0,131, ++ 0,0,124,0,0,95,6,0,100,5,0,83,41,7,122,154, ++ 73,110,105,116,105,97,108,105,122,101,32,119,105,116,104,32, ++ 116,104,101,32,112,97,116,104,32,116,111,32,115,101,97,114, ++ 99,104,32,111,110,32,97,110,100,32,97,32,118,97,114,105, ++ 97,98,108,101,32,110,117,109,98,101,114,32,111,102,10,32, ++ 32,32,32,32,32,32,32,50,45,116,117,112,108,101,115,32, ++ 99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,108, ++ 111,97,100,101,114,32,97,110,100,32,116,104,101,32,102,105, ++ 108,101,32,115,117,102,102,105,120,101,115,32,116,104,101,32, ++ 108,111,97,100,101,114,10,32,32,32,32,32,32,32,32,114, ++ 101,99,111,103,110,105,122,101,115,46,99,1,0,0,0,0, ++ 0,0,0,2,0,0,0,3,0,0,0,51,0,0,0,115, ++ 27,0,0,0,124,0,0,93,17,0,125,1,0,124,1,0, ++ 136,0,0,102,2,0,86,1,113,3,0,100,0,0,83,41, ++ 1,78,114,5,0,0,0,41,2,114,23,0,0,0,114,226, ++ 0,0,0,41,1,114,128,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,228,0,0,0,157,4,0,0,115,2,0, ++ 0,0,6,0,122,38,70,105,108,101,70,105,110,100,101,114, ++ 46,95,95,105,110,105,116,95,95,46,60,108,111,99,97,108, ++ 115,62,46,60,103,101,110,101,120,112,114,62,114,59,0,0, ++ 0,114,30,0,0,0,78,114,88,0,0,0,41,7,114,150, ++ 0,0,0,218,8,95,108,111,97,100,101,114,115,114,36,0, ++ 0,0,218,11,95,112,97,116,104,95,109,116,105,109,101,218, ++ 3,115,101,116,218,11,95,112,97,116,104,95,99,97,99,104, ++ 101,218,19,95,114,101,108,97,120,101,100,95,112,97,116,104, ++ 95,99,97,99,104,101,41,5,114,109,0,0,0,114,36,0, ++ 0,0,218,14,108,111,97,100,101,114,95,100,101,116,97,105, ++ 108,115,90,7,108,111,97,100,101,114,115,114,167,0,0,0, ++ 114,5,0,0,0,41,1,114,128,0,0,0,114,6,0,0, ++ 0,114,186,0,0,0,151,4,0,0,115,16,0,0,0,0, ++ 4,6,1,19,1,36,1,9,2,15,1,9,1,12,1,122, ++ 19,70,105,108,101,70,105,110,100,101,114,46,95,95,105,110, ++ 105,116,95,95,99,1,0,0,0,0,0,0,0,1,0,0, ++ 0,2,0,0,0,67,0,0,0,115,13,0,0,0,100,3, ++ 0,124,0,0,95,0,0,100,2,0,83,41,4,122,31,73, ++ 110,118,97,108,105,100,97,116,101,32,116,104,101,32,100,105, ++ 114,101,99,116,111,114,121,32,109,116,105,109,101,46,114,30, ++ 0,0,0,78,114,88,0,0,0,41,1,114,9,1,0,0, ++ 41,1,114,109,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,251,0,0,0,165,4,0,0,115, ++ 2,0,0,0,0,2,122,28,70,105,108,101,70,105,110,100, ++ 101,114,46,105,110,118,97,108,105,100,97,116,101,95,99,97, ++ 99,104,101,115,99,2,0,0,0,0,0,0,0,3,0,0, ++ 0,2,0,0,0,67,0,0,0,115,59,0,0,0,124,0, ++ 0,106,0,0,124,1,0,131,1,0,125,2,0,124,2,0, ++ 100,1,0,107,8,0,114,37,0,100,1,0,103,0,0,102, ++ 2,0,83,124,2,0,106,1,0,124,2,0,106,2,0,112, ++ 55,0,103,0,0,102,2,0,83,41,2,122,197,84,114,121, ++ 32,116,111,32,102,105,110,100,32,97,32,108,111,97,100,101, ++ 114,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102, ++ 105,101,100,32,109,111,100,117,108,101,44,32,111,114,32,116, ++ 104,101,32,110,97,109,101,115,112,97,99,101,10,32,32,32, ++ 32,32,32,32,32,112,97,99,107,97,103,101,32,112,111,114, ++ 116,105,111,110,115,46,32,82,101,116,117,114,110,115,32,40, ++ 108,111,97,100,101,114,44,32,108,105,115,116,45,111,102,45, ++ 112,111,114,116,105,111,110,115,41,46,10,10,32,32,32,32, ++ 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, ++ 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, ++ 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, ++ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, ++ 32,32,78,41,3,114,182,0,0,0,114,128,0,0,0,114, ++ 157,0,0,0,41,3,114,109,0,0,0,114,127,0,0,0, ++ 114,165,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,125,0,0,0,171,4,0,0,115,8,0, ++ 0,0,0,7,15,1,12,1,10,1,122,22,70,105,108,101, ++ 70,105,110,100,101,114,46,102,105,110,100,95,108,111,97,100, ++ 101,114,99,6,0,0,0,0,0,0,0,7,0,0,0,7, ++ 0,0,0,67,0,0,0,115,40,0,0,0,124,1,0,124, ++ 2,0,124,3,0,131,2,0,125,6,0,116,0,0,124,2, ++ 0,124,3,0,100,1,0,124,6,0,100,2,0,124,4,0, ++ 131,2,2,83,41,3,78,114,128,0,0,0,114,157,0,0, ++ 0,41,1,114,168,0,0,0,41,7,114,109,0,0,0,114, ++ 166,0,0,0,114,127,0,0,0,114,36,0,0,0,90,4, ++ 115,109,115,108,114,181,0,0,0,114,128,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,6,1, ++ 0,0,183,4,0,0,115,6,0,0,0,0,1,15,1,18, ++ 1,122,20,70,105,108,101,70,105,110,100,101,114,46,95,103, ++ 101,116,95,115,112,101,99,78,99,3,0,0,0,0,0,0, ++ 0,14,0,0,0,15,0,0,0,67,0,0,0,115,234,1, ++ 0,0,100,1,0,125,3,0,124,1,0,106,0,0,100,2, ++ 0,131,1,0,100,3,0,25,125,4,0,121,34,0,116,1, ++ 0,124,0,0,106,2,0,112,49,0,116,3,0,106,4,0, ++ 131,0,0,131,1,0,106,5,0,125,5,0,87,110,24,0, ++ 4,116,6,0,107,10,0,114,85,0,1,1,1,100,10,0, ++ 125,5,0,89,110,1,0,88,124,5,0,124,0,0,106,7, ++ 0,107,3,0,114,120,0,124,0,0,106,8,0,131,0,0, ++ 1,124,5,0,124,0,0,95,7,0,116,9,0,131,0,0, ++ 114,153,0,124,0,0,106,10,0,125,6,0,124,4,0,106, ++ 11,0,131,0,0,125,7,0,110,15,0,124,0,0,106,12, ++ 0,125,6,0,124,4,0,125,7,0,124,7,0,124,6,0, ++ 107,6,0,114,45,1,116,13,0,124,0,0,106,2,0,124, ++ 4,0,131,2,0,125,8,0,120,100,0,124,0,0,106,14, ++ 0,68,93,77,0,92,2,0,125,9,0,125,10,0,100,5, ++ 0,124,9,0,23,125,11,0,116,13,0,124,8,0,124,11, ++ 0,131,2,0,125,12,0,116,15,0,124,12,0,131,1,0, ++ 114,208,0,124,0,0,106,16,0,124,10,0,124,1,0,124, ++ 12,0,124,8,0,103,1,0,124,2,0,131,5,0,83,113, ++ 208,0,87,116,17,0,124,8,0,131,1,0,125,3,0,120, ++ 123,0,124,0,0,106,14,0,68,93,112,0,92,2,0,125, ++ 9,0,125,10,0,116,13,0,124,0,0,106,2,0,124,4, ++ 0,124,9,0,23,131,2,0,125,12,0,116,18,0,100,6, ++ 0,106,19,0,124,12,0,131,1,0,100,7,0,100,3,0, ++ 131,1,1,1,124,7,0,124,9,0,23,124,6,0,107,6, ++ 0,114,55,1,116,15,0,124,12,0,131,1,0,114,55,1, ++ 124,0,0,106,16,0,124,10,0,124,1,0,124,12,0,100, ++ 8,0,124,2,0,131,5,0,83,113,55,1,87,124,3,0, ++ 114,230,1,116,18,0,100,9,0,106,19,0,124,8,0,131, ++ 1,0,131,1,0,1,116,20,0,106,21,0,124,1,0,100, ++ 8,0,131,2,0,125,13,0,124,8,0,103,1,0,124,13, ++ 0,95,22,0,124,13,0,83,100,8,0,83,41,11,122,125, ++ 84,114,121,32,116,111,32,102,105,110,100,32,97,32,108,111, ++ 97,100,101,114,32,102,111,114,32,116,104,101,32,115,112,101, ++ 99,105,102,105,101,100,32,109,111,100,117,108,101,44,32,111, ++ 114,32,116,104,101,32,110,97,109,101,115,112,97,99,101,10, ++ 32,32,32,32,32,32,32,32,112,97,99,107,97,103,101,32, ++ 112,111,114,116,105,111,110,115,46,32,82,101,116,117,114,110, ++ 115,32,40,108,111,97,100,101,114,44,32,108,105,115,116,45, ++ 111,102,45,112,111,114,116,105,111,110,115,41,46,70,114,59, ++ 0,0,0,114,57,0,0,0,114,30,0,0,0,114,186,0, ++ 0,0,122,9,116,114,121,105,110,103,32,123,125,114,99,0, ++ 0,0,78,122,25,112,111,115,115,105,98,108,101,32,110,97, ++ 109,101,115,112,97,99,101,32,102,111,114,32,123,125,114,88, ++ 0,0,0,41,23,114,33,0,0,0,114,40,0,0,0,114, ++ 36,0,0,0,114,4,0,0,0,114,46,0,0,0,114,220, ++ 0,0,0,114,41,0,0,0,114,9,1,0,0,218,11,95, ++ 102,105,108,108,95,99,97,99,104,101,114,7,0,0,0,114, ++ 12,1,0,0,114,89,0,0,0,114,11,1,0,0,114,29, ++ 0,0,0,114,8,1,0,0,114,45,0,0,0,114,6,1, ++ 0,0,114,47,0,0,0,114,106,0,0,0,114,48,0,0, ++ 0,114,122,0,0,0,114,161,0,0,0,114,157,0,0,0, ++ 41,14,114,109,0,0,0,114,127,0,0,0,114,181,0,0, ++ 0,90,12,105,115,95,110,97,109,101,115,112,97,99,101,90, ++ 11,116,97,105,108,95,109,111,100,117,108,101,114,134,0,0, ++ 0,90,5,99,97,99,104,101,90,12,99,97,99,104,101,95, ++ 109,111,100,117,108,101,90,9,98,97,115,101,95,112,97,116, ++ 104,114,226,0,0,0,114,166,0,0,0,90,13,105,110,105, ++ 116,95,102,105,108,101,110,97,109,101,90,9,102,117,108,108, ++ 95,112,97,116,104,114,165,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,182,0,0,0,188,4, ++ 0,0,115,68,0,0,0,0,3,6,1,19,1,3,1,34, ++ 1,13,1,11,1,15,1,10,1,9,2,9,1,9,1,15, ++ 2,9,1,6,2,12,1,18,1,22,1,10,1,15,1,12, ++ 1,32,4,12,2,22,1,22,1,25,1,16,1,12,1,29, ++ 1,6,1,19,1,18,1,12,1,4,1,122,20,70,105,108, ++ 101,70,105,110,100,101,114,46,102,105,110,100,95,115,112,101, ++ 99,99,1,0,0,0,0,0,0,0,9,0,0,0,13,0, ++ 0,0,67,0,0,0,115,11,1,0,0,124,0,0,106,0, ++ 0,125,1,0,121,31,0,116,1,0,106,2,0,124,1,0, ++ 112,33,0,116,1,0,106,3,0,131,0,0,131,1,0,125, ++ 2,0,87,110,33,0,4,116,4,0,116,5,0,116,6,0, ++ 102,3,0,107,10,0,114,75,0,1,1,1,103,0,0,125, ++ 2,0,89,110,1,0,88,116,7,0,106,8,0,106,9,0, ++ 100,1,0,131,1,0,115,112,0,116,10,0,124,2,0,131, ++ 1,0,124,0,0,95,11,0,110,111,0,116,10,0,131,0, ++ 0,125,3,0,120,90,0,124,2,0,68,93,82,0,125,4, ++ 0,124,4,0,106,12,0,100,2,0,131,1,0,92,3,0, ++ 125,5,0,125,6,0,125,7,0,124,6,0,114,191,0,100, ++ 3,0,106,13,0,124,5,0,124,7,0,106,14,0,131,0, ++ 0,131,2,0,125,8,0,110,6,0,124,5,0,125,8,0, ++ 124,3,0,106,15,0,124,8,0,131,1,0,1,113,128,0, ++ 87,124,3,0,124,0,0,95,11,0,116,7,0,106,8,0, ++ 106,9,0,116,16,0,131,1,0,114,7,1,100,4,0,100, ++ 5,0,132,0,0,124,2,0,68,131,1,0,124,0,0,95, ++ 17,0,100,6,0,83,41,7,122,68,70,105,108,108,32,116, ++ 104,101,32,99,97,99,104,101,32,111,102,32,112,111,116,101, ++ 110,116,105,97,108,32,109,111,100,117,108,101,115,32,97,110, ++ 100,32,112,97,99,107,97,103,101,115,32,102,111,114,32,116, ++ 104,105,115,32,100,105,114,101,99,116,111,114,121,46,114,0, ++ 0,0,0,114,59,0,0,0,122,5,123,125,46,123,125,99, ++ 1,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0, ++ 83,0,0,0,115,28,0,0,0,104,0,0,124,0,0,93, ++ 18,0,125,1,0,124,1,0,106,0,0,131,0,0,146,2, ++ 0,113,6,0,83,114,5,0,0,0,41,1,114,89,0,0, ++ 0,41,2,114,23,0,0,0,90,2,102,110,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,250,9,60,115,101, ++ 116,99,111,109,112,62,6,5,0,0,115,2,0,0,0,9, ++ 0,122,41,70,105,108,101,70,105,110,100,101,114,46,95,102, ++ 105,108,108,95,99,97,99,104,101,46,60,108,111,99,97,108, ++ 115,62,46,60,115,101,116,99,111,109,112,62,78,41,18,114, ++ 36,0,0,0,114,4,0,0,0,90,7,108,105,115,116,100, ++ 105,114,114,46,0,0,0,114,1,1,0,0,218,15,80,101, ++ 114,109,105,115,115,105,111,110,69,114,114,111,114,218,18,78, ++ 111,116,65,68,105,114,101,99,116,111,114,121,69,114,114,111, ++ 114,114,8,0,0,0,114,9,0,0,0,114,10,0,0,0, ++ 114,10,1,0,0,114,11,1,0,0,114,84,0,0,0,114, ++ 48,0,0,0,114,89,0,0,0,218,3,97,100,100,114,11, ++ 0,0,0,114,12,1,0,0,41,9,114,109,0,0,0,114, ++ 36,0,0,0,90,8,99,111,110,116,101,110,116,115,90,21, ++ 108,111,119,101,114,95,115,117,102,102,105,120,95,99,111,110, ++ 116,101,110,116,115,114,246,0,0,0,114,107,0,0,0,114, ++ 238,0,0,0,114,226,0,0,0,90,8,110,101,119,95,110, ++ 97,109,101,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,14,1,0,0,233,4,0,0,115,34,0,0,0, ++ 0,2,9,1,3,1,31,1,22,3,11,3,18,1,18,7, ++ 9,1,13,1,24,1,6,1,27,2,6,1,17,1,9,1, ++ 18,1,122,22,70,105,108,101,70,105,110,100,101,114,46,95, ++ 102,105,108,108,95,99,97,99,104,101,99,1,0,0,0,0, ++ 0,0,0,3,0,0,0,3,0,0,0,7,0,0,0,115, ++ 25,0,0,0,135,0,0,135,1,0,102,2,0,100,1,0, ++ 100,2,0,134,0,0,125,2,0,124,2,0,83,41,3,97, ++ 20,1,0,0,65,32,99,108,97,115,115,32,109,101,116,104, ++ 111,100,32,119,104,105,99,104,32,114,101,116,117,114,110,115, ++ 32,97,32,99,108,111,115,117,114,101,32,116,111,32,117,115, ++ 101,32,111,110,32,115,121,115,46,112,97,116,104,95,104,111, ++ 111,107,10,32,32,32,32,32,32,32,32,119,104,105,99,104, ++ 32,119,105,108,108,32,114,101,116,117,114,110,32,97,110,32, ++ 105,110,115,116,97,110,99,101,32,117,115,105,110,103,32,116, ++ 104,101,32,115,112,101,99,105,102,105,101,100,32,108,111,97, ++ 100,101,114,115,32,97,110,100,32,116,104,101,32,112,97,116, ++ 104,10,32,32,32,32,32,32,32,32,99,97,108,108,101,100, ++ 32,111,110,32,116,104,101,32,99,108,111,115,117,114,101,46, ++ 10,10,32,32,32,32,32,32,32,32,73,102,32,116,104,101, ++ 32,112,97,116,104,32,99,97,108,108,101,100,32,111,110,32, ++ 116,104,101,32,99,108,111,115,117,114,101,32,105,115,32,110, ++ 111,116,32,97,32,100,105,114,101,99,116,111,114,121,44,32, ++ 73,109,112,111,114,116,69,114,114,111,114,32,105,115,10,32, ++ 32,32,32,32,32,32,32,114,97,105,115,101,100,46,10,10, ++ 32,32,32,32,32,32,32,32,99,1,0,0,0,0,0,0, ++ 0,1,0,0,0,4,0,0,0,19,0,0,0,115,43,0, ++ 0,0,116,0,0,124,0,0,131,1,0,115,30,0,116,1, ++ 0,100,1,0,100,2,0,124,0,0,131,1,1,130,1,0, + 136,0,0,124,0,0,136,1,0,140,1,0,83,41,3,122, + 45,80,97,116,104,32,104,111,111,107,32,102,111,114,32,105, + 109,112,111,114,116,108,105,98,46,109,97,99,104,105,110,101, + 114,121,46,70,105,108,101,70,105,110,100,101,114,46,122,30, + 111,110,108,121,32,100,105,114,101,99,116,111,114,105,101,115, + 32,97,114,101,32,115,117,112,112,111,114,116,101,100,114,36, -+ 0,0,0,41,2,114,47,0,0,0,114,154,0,0,0,41, -+ 1,114,36,0,0,0,41,2,114,12,1,0,0,114,93,1, ++ 0,0,0,41,2,114,47,0,0,0,114,108,0,0,0,41, ++ 1,114,36,0,0,0,41,2,114,171,0,0,0,114,13,1, + 0,0,114,5,0,0,0,114,6,0,0,0,218,24,112,97, + 116,104,95,104,111,111,107,95,102,111,114,95,70,105,108,101, -+ 70,105,110,100,101,114,54,8,0,0,115,6,0,0,0,0, -+ 2,12,1,21,1,122,54,70,105,108,101,70,105,110,100,101, ++ 70,105,110,100,101,114,18,5,0,0,115,6,0,0,0,0, ++ 2,12,1,18,1,122,54,70,105,108,101,70,105,110,100,101, + 114,46,112,97,116,104,95,104,111,111,107,46,60,108,111,99, + 97,108,115,62,46,112,97,116,104,95,104,111,111,107,95,102, + 111,114,95,70,105,108,101,70,105,110,100,101,114,114,5,0, -+ 0,0,41,3,114,12,1,0,0,114,93,1,0,0,114,100, -+ 1,0,0,114,5,0,0,0,41,2,114,12,1,0,0,114, -+ 93,1,0,0,114,6,0,0,0,218,9,112,97,116,104,95, -+ 104,111,111,107,44,8,0,0,115,4,0,0,0,0,10,21, ++ 0,0,41,3,114,171,0,0,0,114,13,1,0,0,114,19, ++ 1,0,0,114,5,0,0,0,41,2,114,171,0,0,0,114, ++ 13,1,0,0,114,6,0,0,0,218,9,112,97,116,104,95, ++ 104,111,111,107,8,5,0,0,115,4,0,0,0,0,10,21, + 6,122,20,70,105,108,101,70,105,110,100,101,114,46,112,97, + 116,104,95,104,111,111,107,99,1,0,0,0,0,0,0,0, + 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, + 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, + 83,41,2,78,122,16,70,105,108,101,70,105,110,100,101,114, + 40,123,33,114,125,41,41,2,114,48,0,0,0,114,36,0, -+ 0,0,41,1,114,72,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,102,0,0,0,62,8,0, ++ 0,0,41,1,114,109,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,245,0,0,0,26,5,0, + 0,115,2,0,0,0,0,1,122,19,70,105,108,101,70,105, + 110,100,101,114,46,95,95,114,101,112,114,95,95,41,15,114, -+ 58,0,0,0,114,57,0,0,0,114,59,0,0,0,114,60, -+ 0,0,0,114,73,0,0,0,114,75,1,0,0,114,173,0, -+ 0,0,114,15,1,0,0,114,166,0,0,0,114,86,1,0, -+ 0,114,14,1,0,0,114,94,1,0,0,114,19,1,0,0, -+ 114,101,1,0,0,114,102,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,87, -+ 1,0,0,178,7,0,0,115,20,0,0,0,12,7,6,2, ++ 113,0,0,0,114,112,0,0,0,114,114,0,0,0,114,115, ++ 0,0,0,114,186,0,0,0,114,251,0,0,0,114,131,0, ++ 0,0,114,183,0,0,0,114,125,0,0,0,114,6,1,0, ++ 0,114,182,0,0,0,114,14,1,0,0,114,184,0,0,0, ++ 114,20,1,0,0,114,245,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,7, ++ 1,0,0,142,4,0,0,115,20,0,0,0,12,7,6,2, + 12,14,12,4,6,2,12,12,12,5,15,45,12,31,18,18, -+ 114,87,1,0,0,99,0,0,0,0,0,0,0,0,0,0, -+ 0,0,2,0,0,0,64,0,0,0,115,46,0,0,0,101, -+ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, -+ 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, -+ 100,5,0,132,0,0,90,5,0,100,6,0,83,41,7,218, -+ 18,95,73,109,112,111,114,116,76,111,99,107,67,111,110,116, -+ 101,120,116,122,36,67,111,110,116,101,120,116,32,109,97,110, -+ 97,103,101,114,32,102,111,114,32,116,104,101,32,105,109,112, -+ 111,114,116,32,108,111,99,107,46,99,1,0,0,0,0,0, -+ 0,0,1,0,0,0,1,0,0,0,67,0,0,0,115,14, - 0,0,0,116,0,0,106,1,0,131,0,0,1,100,1,0, -- 83,41,2,122,60,82,101,108,101,97,115,101,32,116,104,101, -- 32,105,109,112,111,114,116,32,108,111,99,107,32,114,101,103, -- 97,114,100,108,101,115,115,32,111,102,32,97,110,121,32,114, -- 97,105,115,101,100,32,101,120,99,101,112,116,105,111,110,115, -- 46,78,41,2,114,106,0,0,0,114,107,0,0,0,41,4, -- 114,71,0,0,0,90,8,101,120,99,95,116,121,112,101,90, -- 9,101,120,99,95,118,97,108,117,101,90,13,101,120,99,95, -- 116,114,97,99,101,98,97,99,107,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,81,0,0,0,76,8,0, -- 0,115,2,0,0,0,0,2,122,27,95,73,109,112,111,114, -- 116,76,111,99,107,67,111,110,116,101,120,116,46,95,95,101, -- 120,105,116,95,95,78,41,6,114,57,0,0,0,114,56,0, -- 0,0,114,58,0,0,0,114,59,0,0,0,114,75,0,0, -- 0,114,81,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,101,1,0,0,68, -- 8,0,0,115,6,0,0,0,12,2,6,2,12,4,114,101, -- 1,0,0,99,3,0,0,0,0,0,0,0,5,0,0,0, -- 4,0,0,0,67,0,0,0,115,91,0,0,0,124,1,0, -- 106,0,0,100,1,0,124,2,0,100,2,0,24,131,2,0, -- 125,3,0,116,1,0,124,3,0,131,1,0,124,2,0,107, -- 0,0,114,55,0,116,2,0,100,3,0,131,1,0,130,1, -- 0,110,0,0,124,3,0,100,4,0,25,125,4,0,124,0, -- 0,114,87,0,100,5,0,106,3,0,124,4,0,124,0,0, -- 131,2,0,83,124,4,0,83,41,6,122,50,82,101,115,111, -- 108,118,101,32,97,32,114,101,108,97,116,105,118,101,32,109, -- 111,100,117,108,101,32,110,97,109,101,32,116,111,32,97,110, -- 32,97,98,115,111,108,117,116,101,32,111,110,101,46,114,116, -- 0,0,0,114,29,0,0,0,122,50,97,116,116,101,109,112, -- 116,101,100,32,114,101,108,97,116,105,118,101,32,105,109,112, -- 111,114,116,32,98,101,121,111,110,100,32,116,111,112,45,108, -- 101,118,101,108,32,112,97,99,107,97,103,101,114,84,0,0, -- 0,122,5,123,125,46,123,125,41,4,114,34,0,0,0,114, -- 31,0,0,0,114,133,0,0,0,114,47,0,0,0,41,5, -- 114,67,0,0,0,218,7,112,97,99,107,97,103,101,218,5, -- 108,101,118,101,108,90,4,98,105,116,115,90,4,98,97,115, -- 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,13,95,114,101,115,111,108,118,101,95,110,97,109,101,81, -- 8,0,0,115,10,0,0,0,0,2,22,1,18,1,15,1, -- 10,1,114,104,1,0,0,99,3,0,0,0,0,0,0,0, -- 4,0,0,0,3,0,0,0,67,0,0,0,115,47,0,0, -- 0,124,0,0,106,0,0,124,1,0,124,2,0,131,2,0, -- 125,3,0,124,3,0,100,0,0,107,8,0,114,34,0,100, -- 0,0,83,116,1,0,124,1,0,124,3,0,131,2,0,83, -- 41,1,78,41,2,114,14,1,0,0,114,173,0,0,0,41, -- 4,114,77,1,0,0,114,67,0,0,0,114,35,0,0,0, -- 114,169,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,17,95,102,105,110,100,95,115,112,101,99, -- 95,108,101,103,97,99,121,90,8,0,0,115,8,0,0,0, -- 0,3,18,1,12,1,4,1,114,105,1,0,0,99,3,0, -- 0,0,0,0,0,0,9,0,0,0,27,0,0,0,67,0, -- 0,0,115,34,1,0,0,116,0,0,106,1,0,115,28,0, -- 116,2,0,106,3,0,100,1,0,116,4,0,131,2,0,1, -- 110,0,0,124,0,0,116,0,0,106,5,0,107,6,0,125, -- 3,0,120,240,0,116,0,0,106,1,0,68,93,225,0,125, -- 4,0,116,6,0,131,0,0,143,93,0,1,121,13,0,124, -- 4,0,106,7,0,125,5,0,87,110,54,0,4,116,8,0, -- 107,10,0,114,138,0,1,1,1,116,9,0,124,4,0,124, -- 0,0,124,1,0,131,3,0,125,6,0,124,6,0,100,2, -- 0,107,8,0,114,134,0,119,53,0,110,0,0,89,110,19, -- 0,88,124,5,0,124,0,0,124,1,0,124,2,0,131,3, -- 0,125,6,0,87,100,2,0,81,88,124,6,0,100,2,0, -- 107,9,0,114,53,0,124,3,0,12,114,15,1,124,0,0, -- 116,0,0,106,5,0,107,6,0,114,15,1,116,0,0,106, -- 5,0,124,0,0,25,125,7,0,121,13,0,124,7,0,106, -- 10,0,125,8,0,87,110,22,0,4,116,8,0,107,10,0, -- 114,247,0,1,1,1,124,6,0,83,89,113,19,1,88,124, -- 8,0,100,2,0,107,8,0,114,8,1,124,6,0,83,124, -- 8,0,83,113,22,1,124,6,0,83,113,53,0,113,53,0, -- 87,100,2,0,83,100,2,0,83,41,3,122,23,70,105,110, -- 100,32,97,32,109,111,100,117,108,101,39,115,32,108,111,97, -- 100,101,114,46,122,22,115,121,115,46,109,101,116,97,95,112, -- 97,116,104,32,105,115,32,101,109,112,116,121,78,41,11,114, -- 7,0,0,0,218,9,109,101,116,97,95,112,97,116,104,114, -- 166,0,0,0,114,167,0,0,0,114,168,0,0,0,114,73, -- 0,0,0,114,101,1,0,0,114,13,1,0,0,114,209,0, -- 0,0,114,105,1,0,0,114,208,0,0,0,41,9,114,67, -- 0,0,0,114,35,0,0,0,114,12,1,0,0,90,9,105, -- 115,95,114,101,108,111,97,100,114,77,1,0,0,114,13,1, -- 0,0,114,177,0,0,0,114,179,0,0,0,114,208,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,10,95,102,105,110,100,95,115,112,101,99,99,8,0,0, -- 115,48,0,0,0,0,2,9,1,19,4,15,1,16,1,10, -- 1,3,1,13,1,13,1,18,1,12,1,11,2,24,1,12, -- 2,22,1,13,1,3,1,13,1,13,4,9,2,12,1,4, -- 2,7,2,11,2,114,107,1,0,0,99,3,0,0,0,0, -- 0,0,0,4,0,0,0,4,0,0,0,67,0,0,0,115, -- 194,0,0,0,116,0,0,124,0,0,116,1,0,131,2,0, -- 115,45,0,116,2,0,100,1,0,106,3,0,116,4,0,124, -- 0,0,131,1,0,131,1,0,131,1,0,130,1,0,110,0, -- 0,124,2,0,100,2,0,107,0,0,114,72,0,116,5,0, -- 100,3,0,131,1,0,130,1,0,110,0,0,124,1,0,114, -- 156,0,116,0,0,124,1,0,116,1,0,131,2,0,115,108, -- 0,116,2,0,100,4,0,131,1,0,130,1,0,113,156,0, -- 124,1,0,116,6,0,106,7,0,107,7,0,114,156,0,100, -- 5,0,125,3,0,116,8,0,124,3,0,106,3,0,124,1, -- 0,131,1,0,131,1,0,130,1,0,113,156,0,110,0,0, -- 124,0,0,12,114,190,0,124,2,0,100,2,0,107,2,0, -- 114,190,0,116,5,0,100,6,0,131,1,0,130,1,0,110, -- 0,0,100,7,0,83,41,8,122,28,86,101,114,105,102,121, -- 32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,34, -- 115,97,110,101,34,46,122,31,109,111,100,117,108,101,32,110, -- 97,109,101,32,109,117,115,116,32,98,101,32,115,116,114,44, -- 32,110,111,116,32,123,125,114,84,0,0,0,122,18,108,101, -- 118,101,108,32,109,117,115,116,32,98,101,32,62,61,32,48, -- 122,31,95,95,112,97,99,107,97,103,101,95,95,32,110,111, -- 116,32,115,101,116,32,116,111,32,97,32,115,116,114,105,110, -- 103,122,61,80,97,114,101,110,116,32,109,111,100,117,108,101, -- 32,123,33,114,125,32,110,111,116,32,108,111,97,100,101,100, -- 44,32,99,97,110,110,111,116,32,112,101,114,102,111,114,109, -- 32,114,101,108,97,116,105,118,101,32,105,109,112,111,114,116, -- 122,17,69,109,112,116,121,32,109,111,100,117,108,101,32,110, -- 97,109,101,78,41,9,114,192,0,0,0,114,82,1,0,0, -- 218,9,84,121,112,101,69,114,114,111,114,114,47,0,0,0, -- 114,66,0,0,0,114,133,0,0,0,114,7,0,0,0,114, -- 73,0,0,0,218,11,83,121,115,116,101,109,69,114,114,111, -- 114,41,4,114,67,0,0,0,114,102,1,0,0,114,103,1, -- 0,0,114,171,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,13,95,115,97,110,105,116,121,95, -- 99,104,101,99,107,139,8,0,0,115,24,0,0,0,0,2, -- 15,1,30,1,12,1,15,1,6,1,15,1,15,1,15,1, -- 6,2,27,1,19,1,114,110,1,0,0,122,16,78,111,32, -- 109,111,100,117,108,101,32,110,97,109,101,100,32,122,4,123, -- 33,114,125,99,2,0,0,0,0,0,0,0,8,0,0,0, -- 12,0,0,0,67,0,0,0,115,52,1,0,0,100,0,0, -- 125,2,0,124,0,0,106,0,0,100,1,0,131,1,0,100, -- 2,0,25,125,3,0,124,3,0,114,178,0,124,3,0,116, -- 1,0,106,2,0,107,7,0,114,62,0,116,3,0,124,1, -- 0,124,3,0,131,2,0,1,110,0,0,124,0,0,116,1, -- 0,106,2,0,107,6,0,114,88,0,116,1,0,106,2,0, -- 124,0,0,25,83,116,1,0,106,2,0,124,3,0,25,125, -- 4,0,121,13,0,124,4,0,106,4,0,125,2,0,87,113, -- 178,0,4,116,5,0,107,10,0,114,174,0,1,1,1,116, -- 6,0,100,3,0,23,106,7,0,124,0,0,124,3,0,131, -- 2,0,125,5,0,116,8,0,124,5,0,100,4,0,124,0, -- 0,131,1,1,130,1,0,89,113,178,0,88,110,0,0,116, -- 9,0,124,0,0,124,2,0,131,2,0,125,6,0,124,6, -- 0,100,0,0,107,8,0,114,235,0,116,8,0,116,6,0, -- 106,7,0,124,0,0,131,1,0,100,4,0,124,0,0,131, -- 1,1,130,1,0,110,18,0,116,10,0,124,6,0,131,1, -- 0,106,11,0,131,0,0,125,7,0,124,3,0,114,48,1, -- 116,1,0,106,2,0,124,3,0,25,125,4,0,116,12,0, -- 124,4,0,124,0,0,106,0,0,100,1,0,131,1,0,100, -- 5,0,25,124,7,0,131,3,0,1,110,0,0,124,7,0, -- 83,41,6,78,114,116,0,0,0,114,84,0,0,0,122,23, -- 59,32,123,33,114,125,32,105,115,32,110,111,116,32,97,32, -- 112,97,99,107,97,103,101,114,67,0,0,0,114,115,0,0, -- 0,41,13,114,32,0,0,0,114,7,0,0,0,114,73,0, -- 0,0,114,114,0,0,0,114,246,0,0,0,114,209,0,0, -- 0,218,8,95,69,82,82,95,77,83,71,114,47,0,0,0, -- 114,153,0,0,0,114,107,1,0,0,114,174,0,0,0,114, -- 6,1,0,0,114,61,0,0,0,41,8,114,67,0,0,0, -- 218,7,105,109,112,111,114,116,95,114,35,0,0,0,114,233, -- 0,0,0,90,13,112,97,114,101,110,116,95,109,111,100,117, -- 108,101,114,171,0,0,0,114,177,0,0,0,114,179,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,23,95,102,105,110,100,95,97,110,100,95,108,111,97,100, -- 95,117,110,108,111,99,107,101,100,159,8,0,0,115,42,0, -- 0,0,0,1,6,1,19,1,6,1,15,1,16,2,15,1, -- 11,1,13,1,3,1,13,1,13,1,22,1,26,1,15,1, -- 12,1,30,2,18,1,6,2,13,1,32,1,114,113,1,0, -- 0,99,2,0,0,0,0,0,0,0,2,0,0,0,10,0, -- 0,0,67,0,0,0,115,36,0,0,0,116,0,0,124,0, -- 0,131,1,0,143,18,0,1,116,1,0,124,0,0,124,1, -- 0,131,2,0,83,87,100,1,0,81,88,100,1,0,83,41, -- 2,122,54,70,105,110,100,32,97,110,100,32,108,111,97,100, -- 32,116,104,101,32,109,111,100,117,108,101,44,32,97,110,100, -- 32,114,101,108,101,97,115,101,32,116,104,101,32,105,109,112, -- 111,114,116,32,108,111,99,107,46,78,41,2,114,103,0,0, -- 0,114,113,1,0,0,41,2,114,67,0,0,0,114,112,1, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,218,14,95,102,105,110,100,95,97,110,100,95,108,111,97, -- 100,186,8,0,0,115,4,0,0,0,0,2,13,1,114,114, -- 1,0,0,99,3,0,0,0,0,0,0,0,5,0,0,0, -- 4,0,0,0,67,0,0,0,115,172,0,0,0,116,0,0, -- 124,0,0,124,1,0,124,2,0,131,3,0,1,124,2,0, -- 100,1,0,107,4,0,114,49,0,116,1,0,124,0,0,124, -- 1,0,124,2,0,131,3,0,125,0,0,110,0,0,116,2, -- 0,106,3,0,131,0,0,1,124,0,0,116,4,0,106,5, -- 0,107,7,0,114,87,0,116,6,0,124,0,0,116,7,0, -- 131,2,0,83,116,4,0,106,5,0,124,0,0,25,125,3, -- 0,124,3,0,100,2,0,107,8,0,114,158,0,116,2,0, -- 106,8,0,131,0,0,1,100,3,0,106,9,0,124,0,0, -- 131,1,0,125,4,0,116,10,0,124,4,0,100,4,0,124, -- 0,0,131,1,1,130,1,0,110,0,0,116,11,0,124,0, -- 0,131,1,0,1,124,3,0,83,41,5,97,50,1,0,0, -- 73,109,112,111,114,116,32,97,110,100,32,114,101,116,117,114, -- 110,32,116,104,101,32,109,111,100,117,108,101,32,98,97,115, -- 101,100,32,111,110,32,105,116,115,32,110,97,109,101,44,32, -- 116,104,101,32,112,97,99,107,97,103,101,32,116,104,101,32, -- 99,97,108,108,32,105,115,10,32,32,32,32,98,101,105,110, -- 103,32,109,97,100,101,32,102,114,111,109,44,32,97,110,100, -- 32,116,104,101,32,108,101,118,101,108,32,97,100,106,117,115, -- 116,109,101,110,116,46,10,10,32,32,32,32,84,104,105,115, -- 32,102,117,110,99,116,105,111,110,32,114,101,112,114,101,115, -- 101,110,116,115,32,116,104,101,32,103,114,101,97,116,101,115, -- 116,32,99,111,109,109,111,110,32,100,101,110,111,109,105,110, -- 97,116,111,114,32,111,102,32,102,117,110,99,116,105,111,110, -- 97,108,105,116,121,10,32,32,32,32,98,101,116,119,101,101, -- 110,32,105,109,112,111,114,116,95,109,111,100,117,108,101,32, -- 97,110,100,32,95,95,105,109,112,111,114,116,95,95,46,32, -- 84,104,105,115,32,105,110,99,108,117,100,101,115,32,115,101, -- 116,116,105,110,103,32,95,95,112,97,99,107,97,103,101,95, -- 95,32,105,102,10,32,32,32,32,116,104,101,32,108,111,97, -- 100,101,114,32,100,105,100,32,110,111,116,46,10,10,32,32, -- 32,32,114,84,0,0,0,78,122,40,105,109,112,111,114,116, -- 32,111,102,32,123,125,32,104,97,108,116,101,100,59,32,78, -- 111,110,101,32,105,110,32,115,121,115,46,109,111,100,117,108, -- 101,115,114,67,0,0,0,41,12,114,110,1,0,0,114,104, -- 1,0,0,114,106,0,0,0,114,3,1,0,0,114,7,0, -- 0,0,114,73,0,0,0,114,114,1,0,0,218,11,95,103, -- 99,100,95,105,109,112,111,114,116,114,107,0,0,0,114,47, -- 0,0,0,114,153,0,0,0,114,112,0,0,0,41,5,114, -- 67,0,0,0,114,102,1,0,0,114,103,1,0,0,114,179, -- 0,0,0,114,151,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,115,1,0,0,192,8,0,0, -- 115,26,0,0,0,0,9,16,1,12,1,21,1,10,1,15, -- 1,13,1,13,1,12,1,10,2,15,1,21,1,10,1,114, -- 115,1,0,0,99,3,0,0,0,0,0,0,0,6,0,0, -- 0,17,0,0,0,67,0,0,0,115,1,1,0,0,116,0, -- 0,124,0,0,100,1,0,131,2,0,114,253,0,100,2,0, -- 124,1,0,107,6,0,114,89,0,116,1,0,124,1,0,131, -- 1,0,125,1,0,124,1,0,106,2,0,100,2,0,131,1, -- 0,1,116,0,0,124,0,0,100,3,0,131,2,0,114,89, -- 0,124,1,0,106,3,0,124,0,0,106,4,0,131,1,0, -- 1,113,89,0,110,0,0,120,161,0,124,1,0,68,93,150, -- 0,125,3,0,116,0,0,124,0,0,124,3,0,131,2,0, -- 115,96,0,100,4,0,106,5,0,124,0,0,106,6,0,124, -- 3,0,131,2,0,125,4,0,121,17,0,116,7,0,124,2, -- 0,124,4,0,131,2,0,1,87,113,246,0,4,116,8,0, -- 107,10,0,114,242,0,1,125,5,0,1,122,53,0,116,9, -- 0,124,5,0,131,1,0,106,10,0,116,11,0,131,1,0, -- 114,221,0,124,5,0,106,12,0,124,4,0,107,2,0,114, -- 221,0,119,96,0,113,221,0,110,0,0,130,0,0,87,89, -- 100,5,0,100,5,0,125,5,0,126,5,0,88,113,246,0, -- 88,113,96,0,113,96,0,87,110,0,0,124,0,0,83,41, -- 6,122,238,70,105,103,117,114,101,32,111,117,116,32,119,104, -- 97,116,32,95,95,105,109,112,111,114,116,95,95,32,115,104, -- 111,117,108,100,32,114,101,116,117,114,110,46,10,10,32,32, -- 32,32,84,104,101,32,105,109,112,111,114,116,95,32,112,97, -- 114,97,109,101,116,101,114,32,105,115,32,97,32,99,97,108, -- 108,97,98,108,101,32,119,104,105,99,104,32,116,97,107,101, -- 115,32,116,104,101,32,110,97,109,101,32,111,102,32,109,111, -- 100,117,108,101,32,116,111,10,32,32,32,32,105,109,112,111, -- 114,116,46,32,73,116,32,105,115,32,114,101,113,117,105,114, -- 101,100,32,116,111,32,100,101,99,111,117,112,108,101,32,116, -- 104,101,32,102,117,110,99,116,105,111,110,32,102,114,111,109, -- 32,97,115,115,117,109,105,110,103,32,105,109,112,111,114,116, -- 108,105,98,39,115,10,32,32,32,32,105,109,112,111,114,116, -- 32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32, -- 105,115,32,100,101,115,105,114,101,100,46,10,10,32,32,32, -- 32,114,246,0,0,0,250,1,42,218,7,95,95,97,108,108, -- 95,95,122,5,123,125,46,123,125,78,41,13,114,60,0,0, -- 0,114,245,0,0,0,218,6,114,101,109,111,118,101,114,197, -- 0,0,0,114,117,1,0,0,114,47,0,0,0,114,57,0, -- 0,0,114,114,0,0,0,114,153,0,0,0,114,82,1,0, -- 0,114,9,0,0,0,218,15,95,69,82,82,95,77,83,71, -- 95,80,82,69,70,73,88,114,67,0,0,0,41,6,114,179, -- 0,0,0,218,8,102,114,111,109,108,105,115,116,114,112,1, -- 0,0,114,16,0,0,0,90,9,102,114,111,109,95,110,97, -- 109,101,114,40,1,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,16,95,104,97,110,100,108,101,95, -- 102,114,111,109,108,105,115,116,216,8,0,0,115,34,0,0, -- 0,0,10,15,1,12,1,12,1,13,1,15,1,22,1,13, -- 1,15,1,21,1,3,1,17,1,18,4,21,1,15,1,9, -- 1,32,1,114,121,1,0,0,99,1,0,0,0,0,0,0, -- 0,2,0,0,0,2,0,0,0,67,0,0,0,115,78,0, -- 0,0,124,0,0,106,0,0,100,1,0,131,1,0,125,1, -- 0,124,1,0,100,2,0,107,8,0,114,74,0,124,0,0, -- 100,3,0,25,125,1,0,100,4,0,124,0,0,107,7,0, -- 114,74,0,124,1,0,106,1,0,100,5,0,131,1,0,100, -- 6,0,25,125,1,0,113,74,0,110,0,0,124,1,0,83, -- 41,7,122,167,67,97,108,99,117,108,97,116,101,32,119,104, -- 97,116,32,95,95,112,97,99,107,97,103,101,95,95,32,115, -- 104,111,117,108,100,32,98,101,46,10,10,32,32,32,32,95, -- 95,112,97,99,107,97,103,101,95,95,32,105,115,32,110,111, -- 116,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32, -- 98,101,32,100,101,102,105,110,101,100,32,111,114,32,99,111, -- 117,108,100,32,98,101,32,115,101,116,32,116,111,32,78,111, -- 110,101,10,32,32,32,32,116,111,32,114,101,112,114,101,115, -- 101,110,116,32,116,104,97,116,32,105,116,115,32,112,114,111, -- 112,101,114,32,118,97,108,117,101,32,105,115,32,117,110,107, -- 110,111,119,110,46,10,10,32,32,32,32,114,250,0,0,0, -- 78,114,57,0,0,0,114,246,0,0,0,114,116,0,0,0, -- 114,84,0,0,0,41,2,114,93,0,0,0,114,32,0,0, -- 0,41,2,218,7,103,108,111,98,97,108,115,114,102,1,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,17,95,99,97,108,99,95,95,95,112,97,99,107,97,103, -- 101,95,95,248,8,0,0,115,12,0,0,0,0,7,15,1, -- 12,1,10,1,12,1,25,1,114,123,1,0,0,99,0,0, -- 0,0,0,0,0,0,3,0,0,0,3,0,0,0,67,0, -- 0,0,115,55,0,0,0,116,0,0,116,1,0,106,2,0, -- 131,0,0,102,2,0,125,0,0,116,3,0,116,4,0,102, -- 2,0,125,1,0,116,5,0,116,6,0,102,2,0,125,2, -- 0,124,0,0,124,1,0,124,2,0,103,3,0,83,41,1, -- 122,95,82,101,116,117,114,110,115,32,97,32,108,105,115,116, -- 32,111,102,32,102,105,108,101,45,98,97,115,101,100,32,109, -- 111,100,117,108,101,32,108,111,97,100,101,114,115,46,10,10, -- 32,32,32,32,69,97,99,104,32,105,116,101,109,32,105,115, -- 32,97,32,116,117,112,108,101,32,40,108,111,97,100,101,114, -- 44,32,115,117,102,102,105,120,101,115,41,46,10,32,32,32, -- 32,41,7,114,56,1,0,0,114,106,0,0,0,218,18,101, -- 120,116,101,110,115,105,111,110,95,115,117,102,102,105,120,101, -- 115,114,8,1,0,0,114,134,0,0,0,114,7,1,0,0, -- 114,232,0,0,0,41,3,90,10,101,120,116,101,110,115,105, -- 111,110,115,90,6,115,111,117,114,99,101,90,8,98,121,116, -- 101,99,111,100,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,240,0,0,0,7,9,0,0,115,8,0, -- 0,0,0,5,18,1,12,1,12,1,114,240,0,0,0,99, -- 5,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0, -- 67,0,0,0,115,227,0,0,0,124,4,0,100,1,0,107, -- 2,0,114,27,0,116,0,0,124,0,0,131,1,0,125,5, -- 0,110,54,0,124,1,0,100,2,0,107,9,0,114,45,0, -- 124,1,0,110,3,0,105,0,0,125,6,0,116,1,0,124, -- 6,0,131,1,0,125,7,0,116,0,0,124,0,0,124,7, -- 0,124,4,0,131,3,0,125,5,0,124,3,0,115,207,0, -- 124,4,0,100,1,0,107,2,0,114,122,0,116,0,0,124, -- 0,0,106,2,0,100,3,0,131,1,0,100,1,0,25,131, -- 1,0,83,124,0,0,115,132,0,124,5,0,83,116,3,0, -- 124,0,0,131,1,0,116,3,0,124,0,0,106,2,0,100, -- 3,0,131,1,0,100,1,0,25,131,1,0,24,125,8,0, -- 116,4,0,106,5,0,124,5,0,106,6,0,100,2,0,116, -- 3,0,124,5,0,106,6,0,131,1,0,124,8,0,24,133, -- 2,0,25,25,83,110,16,0,116,7,0,124,5,0,124,3, -- 0,116,0,0,131,3,0,83,100,2,0,83,41,4,97,214, -- 1,0,0,73,109,112,111,114,116,32,97,32,109,111,100,117, -- 108,101,46,10,10,32,32,32,32,84,104,101,32,39,103,108, -- 111,98,97,108,115,39,32,97,114,103,117,109,101,110,116,32, -- 105,115,32,117,115,101,100,32,116,111,32,105,110,102,101,114, -- 32,119,104,101,114,101,32,116,104,101,32,105,109,112,111,114, -- 116,32,105,115,32,111,99,99,117,114,105,110,103,32,102,114, -- 111,109,10,32,32,32,32,116,111,32,104,97,110,100,108,101, -- 32,114,101,108,97,116,105,118,101,32,105,109,112,111,114,116, -- 115,46,32,84,104,101,32,39,108,111,99,97,108,115,39,32, -- 97,114,103,117,109,101,110,116,32,105,115,32,105,103,110,111, -- 114,101,100,46,32,84,104,101,10,32,32,32,32,39,102,114, -- 111,109,108,105,115,116,39,32,97,114,103,117,109,101,110,116, -- 32,115,112,101,99,105,102,105,101,115,32,119,104,97,116,32, -- 115,104,111,117,108,100,32,101,120,105,115,116,32,97,115,32, -- 97,116,116,114,105,98,117,116,101,115,32,111,110,32,116,104, -- 101,32,109,111,100,117,108,101,10,32,32,32,32,98,101,105, -- 110,103,32,105,109,112,111,114,116,101,100,32,40,101,46,103, -- 46,32,96,96,102,114,111,109,32,109,111,100,117,108,101,32, -- 105,109,112,111,114,116,32,60,102,114,111,109,108,105,115,116, -- 62,96,96,41,46,32,32,84,104,101,32,39,108,101,118,101, -- 108,39,10,32,32,32,32,97,114,103,117,109,101,110,116,32, -- 114,101,112,114,101,115,101,110,116,115,32,116,104,101,32,112, -- 97,99,107,97,103,101,32,108,111,99,97,116,105,111,110,32, -- 116,111,32,105,109,112,111,114,116,32,102,114,111,109,32,105, -- 110,32,97,32,114,101,108,97,116,105,118,101,10,32,32,32, -- 32,105,109,112,111,114,116,32,40,101,46,103,46,32,96,96, -- 102,114,111,109,32,46,46,112,107,103,32,105,109,112,111,114, -- 116,32,109,111,100,96,96,32,119,111,117,108,100,32,104,97, -- 118,101,32,97,32,39,108,101,118,101,108,39,32,111,102,32, -- 50,41,46,10,10,32,32,32,32,114,84,0,0,0,78,114, -- 116,0,0,0,41,8,114,115,1,0,0,114,123,1,0,0, -- 114,121,0,0,0,114,31,0,0,0,114,7,0,0,0,114, -- 73,0,0,0,114,57,0,0,0,114,121,1,0,0,41,9, -- 114,67,0,0,0,114,122,1,0,0,218,6,108,111,99,97, -- 108,115,114,120,1,0,0,114,103,1,0,0,114,179,0,0, -- 0,90,8,103,108,111,98,97,108,115,95,114,102,1,0,0, -- 90,7,99,117,116,95,111,102,102,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,10,95,95,105,109,112,111, -- 114,116,95,95,18,9,0,0,115,26,0,0,0,0,11,12, -- 1,15,2,24,1,12,1,18,1,6,3,12,1,23,1,6, -- 1,4,4,35,3,40,2,114,126,1,0,0,99,1,0,0, -- 0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,0, -- 0,115,68,0,0,0,116,0,0,106,1,0,124,0,0,131, -- 1,0,125,1,0,124,1,0,100,0,0,107,8,0,114,46, -- 0,116,2,0,100,1,0,124,0,0,23,131,1,0,130,1, -- 0,110,0,0,116,3,0,124,1,0,131,1,0,125,2,0, -- 124,2,0,106,4,0,131,0,0,83,41,2,78,122,25,110, -- 111,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, -- 101,32,110,97,109,101,100,32,41,5,114,10,1,0,0,114, -- 13,1,0,0,114,153,0,0,0,114,174,0,0,0,114,6, -- 1,0,0,41,3,114,67,0,0,0,114,177,0,0,0,114, -- 178,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,18,95,98,117,105,108,116,105,110,95,102,114, -- 111,109,95,110,97,109,101,53,9,0,0,115,10,0,0,0, -- 0,1,15,1,12,1,19,1,12,1,114,127,1,0,0,99, -- 2,0,0,0,0,0,0,0,19,0,0,0,12,0,0,0, -- 67,0,0,0,115,232,2,0,0,124,1,0,97,0,0,124, -- 0,0,97,1,0,116,1,0,106,2,0,106,3,0,114,33, -- 0,116,4,0,97,5,0,110,6,0,116,6,0,97,5,0, -- 116,7,0,116,1,0,131,1,0,125,2,0,120,138,0,116, -- 1,0,106,8,0,106,9,0,131,0,0,68,93,121,0,92, -- 2,0,125,3,0,125,4,0,116,10,0,124,4,0,124,2, -- 0,131,2,0,114,67,0,124,3,0,116,1,0,106,11,0, -- 107,6,0,114,118,0,116,12,0,125,5,0,110,27,0,116, -- 0,0,106,13,0,124,3,0,131,1,0,114,67,0,116,14, -- 0,125,5,0,110,3,0,113,67,0,116,15,0,124,4,0, -- 124,5,0,131,2,0,125,6,0,116,16,0,124,6,0,131, -- 1,0,125,7,0,124,7,0,106,17,0,124,4,0,131,1, -- 0,1,113,67,0,113,67,0,87,116,1,0,106,8,0,116, -- 18,0,25,125,8,0,120,73,0,100,26,0,68,93,65,0, -- 125,9,0,124,9,0,116,1,0,106,8,0,107,7,0,114, -- 248,0,116,19,0,124,9,0,131,1,0,125,10,0,110,13, -- 0,116,1,0,106,8,0,124,9,0,25,125,10,0,116,20, -- 0,124,8,0,124,9,0,124,10,0,131,3,0,1,113,212, -- 0,87,100,5,0,100,6,0,103,1,0,102,2,0,100,7, -- 0,100,8,0,100,6,0,103,2,0,102,2,0,102,2,0, -- 125,11,0,120,146,0,124,11,0,68,93,126,0,92,2,0, -- 125,12,0,125,13,0,116,21,0,100,9,0,100,10,0,132, -- 0,0,124,13,0,68,131,1,0,131,1,0,115,108,1,116, -- 22,0,130,1,0,124,13,0,100,11,0,25,125,14,0,124, -- 12,0,116,1,0,106,8,0,107,6,0,114,150,1,116,1, -- 0,106,8,0,124,12,0,25,125,15,0,80,113,65,1,121, -- 17,0,116,19,0,124,12,0,131,1,0,125,15,0,80,87, -- 113,65,1,4,116,23,0,107,10,0,114,190,1,1,1,1, -- 119,65,1,89,113,65,1,88,113,65,1,87,116,23,0,100, -- 12,0,131,1,0,130,1,0,116,20,0,124,8,0,100,13, -- 0,124,15,0,131,3,0,1,116,20,0,124,8,0,100,14, -- 0,124,14,0,131,3,0,1,116,20,0,124,8,0,100,15, -- 0,100,16,0,106,24,0,124,13,0,131,1,0,131,3,0, -- 1,121,16,0,116,19,0,100,17,0,131,1,0,125,16,0, -- 87,110,24,0,4,116,23,0,107,10,0,114,50,2,1,1, -- 1,100,18,0,125,16,0,89,110,1,0,88,116,20,0,124, -- 8,0,100,17,0,124,16,0,131,3,0,1,116,19,0,100, -- 19,0,131,1,0,125,17,0,116,20,0,124,8,0,100,19, -- 0,124,17,0,131,3,0,1,124,12,0,100,7,0,107,2, -- 0,114,138,2,116,19,0,100,20,0,131,1,0,125,18,0, -- 116,20,0,124,8,0,100,21,0,124,18,0,131,3,0,1, -- 110,0,0,116,20,0,124,8,0,100,22,0,116,25,0,131, -- 0,0,131,3,0,1,116,26,0,106,27,0,116,0,0,106, -- 28,0,131,0,0,131,1,0,1,124,12,0,100,7,0,107, -- 2,0,114,228,2,116,29,0,106,30,0,100,23,0,131,1, -- 0,1,100,24,0,116,26,0,107,6,0,114,228,2,100,25, -- 0,116,31,0,95,32,0,113,228,2,110,0,0,100,18,0, -- 83,41,27,122,250,83,101,116,117,112,32,105,109,112,111,114, -- 116,108,105,98,32,98,121,32,105,109,112,111,114,116,105,110, -- 103,32,110,101,101,100,101,100,32,98,117,105,108,116,45,105, -- 110,32,109,111,100,117,108,101,115,32,97,110,100,32,105,110, -- 106,101,99,116,105,110,103,32,116,104,101,109,10,32,32,32, -- 32,105,110,116,111,32,116,104,101,32,103,108,111,98,97,108, -- 32,110,97,109,101,115,112,97,99,101,46,10,10,32,32,32, -- 32,65,115,32,115,121,115,32,105,115,32,110,101,101,100,101, -- 100,32,102,111,114,32,115,121,115,46,109,111,100,117,108,101, -- 115,32,97,99,99,101,115,115,32,97,110,100,32,95,105,109, -- 112,32,105,115,32,110,101,101,100,101,100,32,116,111,32,108, -- 111,97,100,32,98,117,105,108,116,45,105,110,10,32,32,32, -- 32,109,111,100,117,108,101,115,44,32,116,104,111,115,101,32, -- 116,119,111,32,109,111,100,117,108,101,115,32,109,117,115,116, -- 32,98,101,32,101,120,112,108,105,99,105,116,108,121,32,112, -- 97,115,115,101,100,32,105,110,46,10,10,32,32,32,32,114, -- 49,0,0,0,114,166,0,0,0,218,8,98,117,105,108,116, -- 105,110,115,114,191,0,0,0,90,5,112,111,115,105,120,250, -- 1,47,218,2,110,116,250,1,92,99,1,0,0,0,0,0, -- 0,0,2,0,0,0,3,0,0,0,115,0,0,0,115,33, -- 0,0,0,124,0,0,93,23,0,125,1,0,116,0,0,124, -- 1,0,131,1,0,100,0,0,107,2,0,86,1,113,3,0, -- 100,1,0,83,41,2,114,29,0,0,0,78,41,1,114,31, -- 0,0,0,41,2,114,22,0,0,0,114,130,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,77, -- 0,0,0,105,9,0,0,115,2,0,0,0,6,0,122,25, -- 95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,46, -- 60,103,101,110,101,120,112,114,62,114,84,0,0,0,122,30, -- 105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,114, -- 101,115,32,112,111,115,105,120,32,111,114,32,110,116,114,3, -- 0,0,0,114,25,0,0,0,114,21,0,0,0,114,30,0, -- 0,0,114,85,0,0,0,78,114,111,0,0,0,90,6,119, -- 105,110,114,101,103,114,23,1,0,0,114,6,0,0,0,122, -- 4,46,112,121,119,122,6,95,100,46,112,121,100,84,41,4, -- 122,3,95,105,111,122,9,95,119,97,114,110,105,110,103,115, -- 122,8,98,117,105,108,116,105,110,115,122,7,109,97,114,115, -- 104,97,108,41,33,114,106,0,0,0,114,7,0,0,0,114, -- 117,0,0,0,114,118,0,0,0,114,120,0,0,0,114,232, -- 0,0,0,114,119,0,0,0,114,66,0,0,0,114,73,0, -- 0,0,218,5,105,116,101,109,115,114,192,0,0,0,114,157, -- 0,0,0,114,10,1,0,0,114,162,0,0,0,114,19,1, -- 0,0,114,247,0,0,0,114,174,0,0,0,114,254,0,0, -- 0,114,57,0,0,0,114,127,1,0,0,114,61,0,0,0, -- 218,3,97,108,108,114,100,0,0,0,114,153,0,0,0,114, -- 26,0,0,0,114,11,0,0,0,114,59,1,0,0,114,197, -- 0,0,0,114,124,1,0,0,114,134,0,0,0,114,223,0, -- 0,0,114,22,1,0,0,114,26,1,0,0,41,19,218,10, -- 115,121,115,95,109,111,100,117,108,101,218,11,95,105,109,112, -- 95,109,111,100,117,108,101,90,11,109,111,100,117,108,101,95, -- 116,121,112,101,114,67,0,0,0,114,179,0,0,0,114,169, -- 0,0,0,114,177,0,0,0,114,178,0,0,0,90,11,115, -- 101,108,102,95,109,111,100,117,108,101,90,12,98,117,105,108, -- 116,105,110,95,110,97,109,101,90,14,98,117,105,108,116,105, -- 110,95,109,111,100,117,108,101,90,10,111,115,95,100,101,116, -- 97,105,108,115,90,10,98,117,105,108,116,105,110,95,111,115, -- 114,21,0,0,0,114,25,0,0,0,90,9,111,115,95,109, -- 111,100,117,108,101,90,13,116,104,114,101,97,100,95,109,111, -- 100,117,108,101,90,14,119,101,97,107,114,101,102,95,109,111, -- 100,117,108,101,90,13,119,105,110,114,101,103,95,109,111,100, -- 117,108,101,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,218,6,95,115,101,116,117,112,61,9,0,0,115,108, -- 0,0,0,0,9,6,1,6,2,12,1,9,2,6,3,12, -- 1,28,1,15,1,15,1,9,1,15,1,9,2,3,1,15, -- 1,12,1,20,3,13,1,13,1,15,1,15,2,13,1,20, -- 3,33,1,19,2,31,1,10,1,15,1,13,1,4,2,3, -- 1,12,1,5,1,13,1,12,2,12,1,16,1,16,1,25, -- 3,3,1,16,1,13,2,11,1,16,3,12,1,16,3,12, -- 1,12,1,19,3,19,1,19,1,12,1,13,1,12,1,114, -- 136,1,0,0,99,2,0,0,0,0,0,0,0,3,0,0, -- 0,3,0,0,0,67,0,0,0,115,136,0,0,0,116,0, -- 0,124,0,0,124,1,0,131,2,0,1,116,1,0,131,0, -- 0,125,2,0,116,2,0,106,3,0,106,4,0,116,5,0, -- 106,6,0,124,2,0,140,0,0,103,1,0,131,1,0,1, -- 116,2,0,106,7,0,106,8,0,116,9,0,131,1,0,1, -- 116,2,0,106,7,0,106,8,0,116,10,0,131,1,0,1, -- 116,11,0,106,12,0,100,1,0,107,2,0,114,116,0,116, -- 2,0,106,7,0,106,8,0,116,13,0,131,1,0,1,110, -- 0,0,116,2,0,106,7,0,106,8,0,116,14,0,131,1, -- 0,1,100,2,0,83,41,3,122,50,73,110,115,116,97,108, -- 108,32,105,109,112,111,114,116,108,105,98,32,97,115,32,116, -- 104,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111, -- 110,32,111,102,32,105,109,112,111,114,116,46,114,130,1,0, -- 0,78,41,15,114,136,1,0,0,114,240,0,0,0,114,7, -- 0,0,0,114,78,1,0,0,114,197,0,0,0,114,86,1, -- 0,0,114,100,1,0,0,114,106,1,0,0,114,223,0,0, -- 0,114,10,1,0,0,114,19,1,0,0,114,3,0,0,0, -- 114,57,0,0,0,114,22,1,0,0,114,73,1,0,0,41, -- 3,114,134,1,0,0,114,135,1,0,0,90,17,115,117,112, -- 112,111,114,116,101,100,95,108,111,97,100,101,114,115,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,8,95, -- 105,110,115,116,97,108,108,148,9,0,0,115,16,0,0,0, -- 0,2,13,1,9,1,28,1,16,1,16,1,15,1,19,1, -- 114,137,1,0,0,41,3,122,3,119,105,110,114,1,0,0, -- 0,114,2,0,0,0,41,92,114,59,0,0,0,114,10,0, -- 0,0,114,11,0,0,0,114,17,0,0,0,114,19,0,0, -- 0,114,28,0,0,0,114,38,0,0,0,114,39,0,0,0, -- 114,43,0,0,0,114,44,0,0,0,114,46,0,0,0,114, -- 55,0,0,0,114,65,0,0,0,114,68,0,0,0,114,66, -- 0,0,0,218,8,95,95,99,111,100,101,95,95,114,193,0, -- 0,0,114,69,0,0,0,114,109,0,0,0,114,92,0,0, -- 0,114,99,0,0,0,114,82,0,0,0,114,83,0,0,0, -- 114,102,0,0,0,114,103,0,0,0,114,105,0,0,0,114, -- 112,0,0,0,114,114,0,0,0,114,15,0,0,0,114,185, -- 0,0,0,114,14,0,0,0,114,18,0,0,0,90,17,95, -- 82,65,87,95,77,65,71,73,67,95,78,85,77,66,69,82, -- 114,125,0,0,0,114,134,0,0,0,114,119,0,0,0,114, -- 120,0,0,0,114,132,0,0,0,114,135,0,0,0,114,142, -- 0,0,0,114,144,0,0,0,114,152,0,0,0,114,156,0, -- 0,0,114,161,0,0,0,114,164,0,0,0,114,172,0,0, -- 0,114,180,0,0,0,114,190,0,0,0,114,195,0,0,0, -- 114,198,0,0,0,114,203,0,0,0,114,211,0,0,0,114, -- 212,0,0,0,114,216,0,0,0,114,173,0,0,0,218,6, -- 111,98,106,101,99,116,114,241,0,0,0,114,239,0,0,0, -- 114,247,0,0,0,114,174,0,0,0,114,9,1,0,0,114, -- 10,1,0,0,114,19,1,0,0,114,22,1,0,0,114,32, -- 1,0,0,114,33,1,0,0,114,48,1,0,0,114,8,1, -- 0,0,114,7,1,0,0,114,59,1,0,0,114,56,1,0, -- 0,114,60,1,0,0,114,251,0,0,0,114,73,1,0,0, -- 114,86,1,0,0,114,101,1,0,0,114,104,1,0,0,114, -- 105,1,0,0,114,107,1,0,0,114,110,1,0,0,114,119, -- 1,0,0,114,111,1,0,0,114,113,1,0,0,114,114,1, -- 0,0,114,115,1,0,0,114,121,1,0,0,114,123,1,0, -- 0,114,240,0,0,0,114,126,1,0,0,114,127,1,0,0, -- 114,136,1,0,0,114,137,1,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,8, -- 60,109,111,100,117,108,101,62,8,0,0,0,115,170,0,0, -- 0,6,17,6,3,12,12,12,5,12,5,12,6,12,12,12, -- 10,12,9,12,5,12,7,15,22,12,8,12,4,15,4,19, -- 20,6,2,6,3,22,4,19,68,19,21,19,19,12,19,12, -- 20,12,114,22,1,18,2,6,2,9,2,9,1,9,2,15, -- 27,12,23,12,19,12,12,18,8,12,18,12,11,12,11,12, -- 17,12,16,21,55,21,12,18,10,12,14,12,36,19,27,19, -- 106,24,22,9,3,12,1,15,63,18,45,19,230,15,25,19, -- 70,19,71,19,63,19,24,22,110,19,41,25,43,25,16,6, -- 3,19,57,19,57,19,38,19,129,19,146,19,13,12,9,12, -- 9,15,40,12,17,6,1,10,2,12,27,12,6,18,24,12, -- 32,12,15,12,11,24,35,12,8,12,87, -+ 83,41,2,122,24,65,99,113,117,105,114,101,32,116,104,101, -+ 32,105,109,112,111,114,116,32,108,111,99,107,46,78,41,2, -+ 114,107,0,0,0,114,4,1,0,0,41,1,114,72,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,76,0,0,0,72,8,0,0,115,2,0,0,0,0,2, -+ 122,28,95,73,109,112,111,114,116,76,111,99,107,67,111,110, -+ 116,101,120,116,46,95,95,101,110,116,101,114,95,95,99,4, -+ 0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,67, -+ 0,0,0,115,14,0,0,0,116,0,0,106,1,0,131,0, -+ 0,1,100,1,0,83,41,2,122,60,82,101,108,101,97,115, -+ 101,32,116,104,101,32,105,109,112,111,114,116,32,108,111,99, -+ 107,32,114,101,103,97,114,100,108,101,115,115,32,111,102,32, -+ 97,110,121,32,114,97,105,115,101,100,32,101,120,99,101,112, -+ 116,105,111,110,115,46,78,41,2,114,107,0,0,0,114,108, -+ 0,0,0,41,4,114,72,0,0,0,90,8,101,120,99,95, -+ 116,121,112,101,90,9,101,120,99,95,118,97,108,117,101,90, -+ 13,101,120,99,95,116,114,97,99,101,98,97,99,107,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,82,0, -+ 0,0,76,8,0,0,115,2,0,0,0,0,2,122,27,95, -+ 73,109,112,111,114,116,76,111,99,107,67,111,110,116,101,120, -+ 116,46,95,95,101,120,105,116,95,95,78,41,6,114,58,0, -+ 0,0,114,57,0,0,0,114,59,0,0,0,114,60,0,0, -+ 0,114,76,0,0,0,114,82,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 102,1,0,0,68,8,0,0,115,6,0,0,0,12,2,6, -+ 2,12,4,114,102,1,0,0,99,3,0,0,0,0,0,0, -+ 0,5,0,0,0,4,0,0,0,67,0,0,0,115,91,0, -+ 0,0,124,1,0,106,0,0,100,1,0,124,2,0,100,2, -+ 0,24,131,2,0,125,3,0,116,1,0,124,3,0,131,1, -+ 0,124,2,0,107,0,0,114,55,0,116,2,0,100,3,0, -+ 131,1,0,130,1,0,110,0,0,124,3,0,100,4,0,25, -+ 125,4,0,124,0,0,114,87,0,100,5,0,106,3,0,124, -+ 4,0,124,0,0,131,2,0,83,124,4,0,83,41,6,122, -+ 50,82,101,115,111,108,118,101,32,97,32,114,101,108,97,116, -+ 105,118,101,32,109,111,100,117,108,101,32,110,97,109,101,32, -+ 116,111,32,97,110,32,97,98,115,111,108,117,116,101,32,111, -+ 110,101,46,114,117,0,0,0,114,30,0,0,0,122,50,97, -+ 116,116,101,109,112,116,101,100,32,114,101,108,97,116,105,118, -+ 101,32,105,109,112,111,114,116,32,98,101,121,111,110,100,32, -+ 116,111,112,45,108,101,118,101,108,32,112,97,99,107,97,103, -+ 101,114,85,0,0,0,122,5,123,125,46,123,125,41,4,114, -+ 35,0,0,0,114,32,0,0,0,114,134,0,0,0,114,48, -+ 0,0,0,41,5,114,68,0,0,0,218,7,112,97,99,107, -+ 97,103,101,218,5,108,101,118,101,108,90,4,98,105,116,115, -+ 90,4,98,97,115,101,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,13,95,114,101,115,111,108,118,101,95, -+ 110,97,109,101,81,8,0,0,115,10,0,0,0,0,2,22, -+ 1,18,1,15,1,10,1,114,105,1,0,0,99,3,0,0, -+ 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, -+ 0,115,47,0,0,0,124,0,0,106,0,0,124,1,0,124, -+ 2,0,131,2,0,125,3,0,124,3,0,100,0,0,107,8, -+ 0,114,34,0,100,0,0,83,116,1,0,124,1,0,124,3, -+ 0,131,2,0,83,41,1,78,41,2,114,15,1,0,0,114, -+ 174,0,0,0,41,4,114,78,1,0,0,114,68,0,0,0, -+ 114,36,0,0,0,114,170,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,17,95,102,105,110,100, -+ 95,115,112,101,99,95,108,101,103,97,99,121,90,8,0,0, -+ 115,8,0,0,0,0,3,18,1,12,1,4,1,114,106,1, -+ 0,0,99,3,0,0,0,0,0,0,0,9,0,0,0,26, -+ 0,0,0,67,0,0,0,115,34,1,0,0,116,0,0,106, -+ 1,0,115,28,0,116,2,0,106,3,0,100,1,0,116,4, -+ 0,131,2,0,1,110,0,0,124,0,0,116,0,0,106,5, -+ 0,107,6,0,125,3,0,120,240,0,116,0,0,106,1,0, -+ 68,93,225,0,125,4,0,116,6,0,131,0,0,143,93,0, -+ 1,121,13,0,124,4,0,106,7,0,125,5,0,87,110,54, -+ 0,4,116,8,0,107,10,0,114,138,0,1,1,1,116,9, -+ 0,124,4,0,124,0,0,124,1,0,131,3,0,125,6,0, -+ 124,6,0,100,2,0,107,8,0,114,134,0,119,53,0,110, -+ 0,0,89,110,19,0,88,124,5,0,124,0,0,124,1,0, -+ 124,2,0,131,3,0,125,6,0,87,100,2,0,81,88,124, -+ 6,0,100,2,0,107,9,0,114,53,0,124,3,0,12,114, -+ 15,1,124,0,0,116,0,0,106,5,0,107,6,0,114,15, -+ 1,116,0,0,106,5,0,124,0,0,25,125,7,0,121,13, -+ 0,124,7,0,106,10,0,125,8,0,87,110,22,0,4,116, -+ 8,0,107,10,0,114,247,0,1,1,1,124,6,0,83,89, -+ 113,19,1,88,124,8,0,100,2,0,107,8,0,114,8,1, -+ 124,6,0,83,124,8,0,83,113,22,1,124,6,0,83,113, -+ 53,0,113,53,0,87,100,2,0,83,100,2,0,83,41,3, -+ 122,23,70,105,110,100,32,97,32,109,111,100,117,108,101,39, -+ 115,32,108,111,97,100,101,114,46,122,22,115,121,115,46,109, -+ 101,116,97,95,112,97,116,104,32,105,115,32,101,109,112,116, -+ 121,78,41,11,114,8,0,0,0,218,9,109,101,116,97,95, -+ 112,97,116,104,114,167,0,0,0,114,168,0,0,0,114,169, -+ 0,0,0,114,74,0,0,0,114,102,1,0,0,114,14,1, -+ 0,0,114,210,0,0,0,114,106,1,0,0,114,209,0,0, -+ 0,41,9,114,68,0,0,0,114,36,0,0,0,114,13,1, -+ 0,0,90,9,105,115,95,114,101,108,111,97,100,114,78,1, -+ 0,0,114,14,1,0,0,114,178,0,0,0,114,180,0,0, -+ 0,114,209,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,10,95,102,105,110,100,95,115,112,101, -+ 99,99,8,0,0,115,48,0,0,0,0,2,9,1,19,4, -+ 15,1,16,1,10,1,3,1,13,1,13,1,18,1,12,1, -+ 11,2,24,1,12,2,22,1,13,1,3,1,13,1,13,4, -+ 9,2,12,1,4,2,7,2,11,2,114,108,1,0,0,99, -+ 3,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0, -+ 67,0,0,0,115,194,0,0,0,116,0,0,124,0,0,116, -+ 1,0,131,2,0,115,45,0,116,2,0,100,1,0,106,3, -+ 0,116,4,0,124,0,0,131,1,0,131,1,0,131,1,0, -+ 130,1,0,110,0,0,124,2,0,100,2,0,107,0,0,114, -+ 72,0,116,5,0,100,3,0,131,1,0,130,1,0,110,0, -+ 0,124,1,0,114,156,0,116,0,0,124,1,0,116,1,0, -+ 131,2,0,115,108,0,116,2,0,100,4,0,131,1,0,130, -+ 1,0,113,156,0,124,1,0,116,6,0,106,7,0,107,7, -+ 0,114,156,0,100,5,0,125,3,0,116,8,0,124,3,0, -+ 106,3,0,124,1,0,131,1,0,131,1,0,130,1,0,113, -+ 156,0,110,0,0,124,0,0,12,114,190,0,124,2,0,100, -+ 2,0,107,2,0,114,190,0,116,5,0,100,6,0,131,1, -+ 0,130,1,0,110,0,0,100,7,0,83,41,8,122,28,86, -+ 101,114,105,102,121,32,97,114,103,117,109,101,110,116,115,32, -+ 97,114,101,32,34,115,97,110,101,34,46,122,31,109,111,100, -+ 117,108,101,32,110,97,109,101,32,109,117,115,116,32,98,101, -+ 32,115,116,114,44,32,110,111,116,32,123,125,114,85,0,0, -+ 0,122,18,108,101,118,101,108,32,109,117,115,116,32,98,101, -+ 32,62,61,32,48,122,31,95,95,112,97,99,107,97,103,101, -+ 95,95,32,110,111,116,32,115,101,116,32,116,111,32,97,32, -+ 115,116,114,105,110,103,122,61,80,97,114,101,110,116,32,109, -+ 111,100,117,108,101,32,123,33,114,125,32,110,111,116,32,108, -+ 111,97,100,101,100,44,32,99,97,110,110,111,116,32,112,101, -+ 114,102,111,114,109,32,114,101,108,97,116,105,118,101,32,105, -+ 109,112,111,114,116,122,17,69,109,112,116,121,32,109,111,100, -+ 117,108,101,32,110,97,109,101,78,41,9,114,193,0,0,0, -+ 114,83,1,0,0,218,9,84,121,112,101,69,114,114,111,114, -+ 114,48,0,0,0,114,67,0,0,0,114,134,0,0,0,114, -+ 8,0,0,0,114,74,0,0,0,218,11,83,121,115,116,101, -+ 109,69,114,114,111,114,41,4,114,68,0,0,0,114,103,1, -+ 0,0,114,104,1,0,0,114,172,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,13,95,115,97, -+ 110,105,116,121,95,99,104,101,99,107,139,8,0,0,115,24, -+ 0,0,0,0,2,15,1,30,1,12,1,15,1,6,1,15, -+ 1,15,1,15,1,6,2,27,1,19,1,114,111,1,0,0, -+ 122,16,78,111,32,109,111,100,117,108,101,32,110,97,109,101, -+ 100,32,122,4,123,33,114,125,99,2,0,0,0,0,0,0, -+ 0,8,0,0,0,12,0,0,0,67,0,0,0,115,52,1, -+ 0,0,100,0,0,125,2,0,124,0,0,106,0,0,100,1, -+ 0,131,1,0,100,2,0,25,125,3,0,124,3,0,114,178, -+ 0,124,3,0,116,1,0,106,2,0,107,7,0,114,62,0, -+ 116,3,0,124,1,0,124,3,0,131,2,0,1,110,0,0, -+ 124,0,0,116,1,0,106,2,0,107,6,0,114,88,0,116, -+ 1,0,106,2,0,124,0,0,25,83,116,1,0,106,2,0, -+ 124,3,0,25,125,4,0,121,13,0,124,4,0,106,4,0, -+ 125,2,0,87,113,178,0,4,116,5,0,107,10,0,114,174, -+ 0,1,1,1,116,6,0,100,3,0,23,106,7,0,124,0, -+ 0,124,3,0,131,2,0,125,5,0,116,8,0,124,5,0, -+ 100,4,0,124,0,0,131,1,1,130,1,0,89,113,178,0, -+ 88,110,0,0,116,9,0,124,0,0,124,2,0,131,2,0, -+ 125,6,0,124,6,0,100,0,0,107,8,0,114,235,0,116, -+ 8,0,116,6,0,106,7,0,124,0,0,131,1,0,100,4, -+ 0,124,0,0,131,1,1,130,1,0,110,18,0,116,10,0, -+ 124,6,0,131,1,0,106,11,0,131,0,0,125,7,0,124, -+ 3,0,114,48,1,116,1,0,106,2,0,124,3,0,25,125, -+ 4,0,116,12,0,124,4,0,124,0,0,106,0,0,100,1, -+ 0,131,1,0,100,5,0,25,124,7,0,131,3,0,1,110, -+ 0,0,124,7,0,83,41,6,78,114,117,0,0,0,114,85, -+ 0,0,0,122,23,59,32,123,33,114,125,32,105,115,32,110, -+ 111,116,32,97,32,112,97,99,107,97,103,101,114,68,0,0, -+ 0,114,116,0,0,0,41,13,114,33,0,0,0,114,8,0, -+ 0,0,114,74,0,0,0,114,115,0,0,0,114,247,0,0, -+ 0,114,210,0,0,0,218,8,95,69,82,82,95,77,83,71, -+ 114,48,0,0,0,114,154,0,0,0,114,108,1,0,0,114, -+ 175,0,0,0,114,7,1,0,0,114,62,0,0,0,41,8, -+ 114,68,0,0,0,218,7,105,109,112,111,114,116,95,114,36, -+ 0,0,0,114,234,0,0,0,90,13,112,97,114,101,110,116, -+ 95,109,111,100,117,108,101,114,172,0,0,0,114,178,0,0, -+ 0,114,180,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,23,95,102,105,110,100,95,97,110,100, -+ 95,108,111,97,100,95,117,110,108,111,99,107,101,100,159,8, -+ 0,0,115,42,0,0,0,0,1,6,1,19,1,6,1,15, -+ 1,16,2,15,1,11,1,13,1,3,1,13,1,13,1,22, -+ 1,26,1,15,1,12,1,30,2,18,1,6,2,13,1,32, -+ 1,114,114,1,0,0,99,2,0,0,0,0,0,0,0,2, -+ 0,0,0,10,0,0,0,67,0,0,0,115,36,0,0,0, -+ 116,0,0,124,0,0,131,1,0,143,18,0,1,116,1,0, -+ 124,0,0,124,1,0,131,2,0,83,87,100,1,0,81,88, -+ 100,1,0,83,41,2,122,54,70,105,110,100,32,97,110,100, -+ 32,108,111,97,100,32,116,104,101,32,109,111,100,117,108,101, -+ 44,32,97,110,100,32,114,101,108,101,97,115,101,32,116,104, -+ 101,32,105,109,112,111,114,116,32,108,111,99,107,46,78,41, -+ 2,114,104,0,0,0,114,114,1,0,0,41,2,114,68,0, -+ 0,0,114,113,1,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,218,14,95,102,105,110,100,95,97,110, -+ 100,95,108,111,97,100,186,8,0,0,115,4,0,0,0,0, -+ 2,13,1,114,115,1,0,0,99,3,0,0,0,0,0,0, -+ 0,5,0,0,0,4,0,0,0,67,0,0,0,115,172,0, -+ 0,0,116,0,0,124,0,0,124,1,0,124,2,0,131,3, -+ 0,1,124,2,0,100,1,0,107,4,0,114,49,0,116,1, -+ 0,124,0,0,124,1,0,124,2,0,131,3,0,125,0,0, -+ 110,0,0,116,2,0,106,3,0,131,0,0,1,124,0,0, -+ 116,4,0,106,5,0,107,7,0,114,87,0,116,6,0,124, -+ 0,0,116,7,0,131,2,0,83,116,4,0,106,5,0,124, -+ 0,0,25,125,3,0,124,3,0,100,2,0,107,8,0,114, -+ 158,0,116,2,0,106,8,0,131,0,0,1,100,3,0,106, -+ 9,0,124,0,0,131,1,0,125,4,0,116,10,0,124,4, -+ 0,100,4,0,124,0,0,131,1,1,130,1,0,110,0,0, -+ 116,11,0,124,0,0,131,1,0,1,124,3,0,83,41,5, -+ 97,50,1,0,0,73,109,112,111,114,116,32,97,110,100,32, -+ 114,101,116,117,114,110,32,116,104,101,32,109,111,100,117,108, -+ 101,32,98,97,115,101,100,32,111,110,32,105,116,115,32,110, -+ 97,109,101,44,32,116,104,101,32,112,97,99,107,97,103,101, -+ 32,116,104,101,32,99,97,108,108,32,105,115,10,32,32,32, -+ 32,98,101,105,110,103,32,109,97,100,101,32,102,114,111,109, -+ 44,32,97,110,100,32,116,104,101,32,108,101,118,101,108,32, -+ 97,100,106,117,115,116,109,101,110,116,46,10,10,32,32,32, -+ 32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,114, -+ 101,112,114,101,115,101,110,116,115,32,116,104,101,32,103,114, -+ 101,97,116,101,115,116,32,99,111,109,109,111,110,32,100,101, -+ 110,111,109,105,110,97,116,111,114,32,111,102,32,102,117,110, -+ 99,116,105,111,110,97,108,105,116,121,10,32,32,32,32,98, -+ 101,116,119,101,101,110,32,105,109,112,111,114,116,95,109,111, -+ 100,117,108,101,32,97,110,100,32,95,95,105,109,112,111,114, -+ 116,95,95,46,32,84,104,105,115,32,105,110,99,108,117,100, -+ 101,115,32,115,101,116,116,105,110,103,32,95,95,112,97,99, -+ 107,97,103,101,95,95,32,105,102,10,32,32,32,32,116,104, -+ 101,32,108,111,97,100,101,114,32,100,105,100,32,110,111,116, -+ 46,10,10,32,32,32,32,114,85,0,0,0,78,122,40,105, -+ 109,112,111,114,116,32,111,102,32,123,125,32,104,97,108,116, -+ 101,100,59,32,78,111,110,101,32,105,110,32,115,121,115,46, -+ 109,111,100,117,108,101,115,114,68,0,0,0,41,12,114,111, -+ 1,0,0,114,105,1,0,0,114,107,0,0,0,114,4,1, -+ 0,0,114,8,0,0,0,114,74,0,0,0,114,115,1,0, -+ 0,218,11,95,103,99,100,95,105,109,112,111,114,116,114,108, -+ 0,0,0,114,48,0,0,0,114,154,0,0,0,114,113,0, -+ 0,0,41,5,114,68,0,0,0,114,103,1,0,0,114,104, -+ 1,0,0,114,180,0,0,0,114,152,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,116,1,0, -+ 0,192,8,0,0,115,26,0,0,0,0,9,16,1,12,1, -+ 21,1,10,1,15,1,13,1,13,1,12,1,10,2,15,1, -+ 21,1,10,1,114,116,1,0,0,99,3,0,0,0,0,0, -+ 0,0,6,0,0,0,17,0,0,0,67,0,0,0,115,1, -+ 1,0,0,116,0,0,124,0,0,100,1,0,131,2,0,114, -+ 253,0,100,2,0,124,1,0,107,6,0,114,89,0,116,1, -+ 0,124,1,0,131,1,0,125,1,0,124,1,0,106,2,0, -+ 100,2,0,131,1,0,1,116,0,0,124,0,0,100,3,0, -+ 131,2,0,114,89,0,124,1,0,106,3,0,124,0,0,106, -+ 4,0,131,1,0,1,113,89,0,110,0,0,120,161,0,124, -+ 1,0,68,93,150,0,125,3,0,116,0,0,124,0,0,124, -+ 3,0,131,2,0,115,96,0,100,4,0,106,5,0,124,0, -+ 0,106,6,0,124,3,0,131,2,0,125,4,0,121,17,0, -+ 116,7,0,124,2,0,124,4,0,131,2,0,1,87,113,246, -+ 0,4,116,8,0,107,10,0,114,242,0,1,125,5,0,1, -+ 122,53,0,116,9,0,124,5,0,131,1,0,106,10,0,116, -+ 11,0,131,1,0,114,221,0,124,5,0,106,12,0,124,4, -+ 0,107,2,0,114,221,0,119,96,0,113,221,0,110,0,0, -+ 130,0,0,87,89,100,5,0,100,5,0,125,5,0,126,5, -+ 0,88,113,246,0,88,113,96,0,113,96,0,87,110,0,0, -+ 124,0,0,83,41,6,122,238,70,105,103,117,114,101,32,111, -+ 117,116,32,119,104,97,116,32,95,95,105,109,112,111,114,116, -+ 95,95,32,115,104,111,117,108,100,32,114,101,116,117,114,110, -+ 46,10,10,32,32,32,32,84,104,101,32,105,109,112,111,114, -+ 116,95,32,112,97,114,97,109,101,116,101,114,32,105,115,32, -+ 97,32,99,97,108,108,97,98,108,101,32,119,104,105,99,104, -+ 32,116,97,107,101,115,32,116,104,101,32,110,97,109,101,32, -+ 111,102,32,109,111,100,117,108,101,32,116,111,10,32,32,32, -+ 32,105,109,112,111,114,116,46,32,73,116,32,105,115,32,114, -+ 101,113,117,105,114,101,100,32,116,111,32,100,101,99,111,117, -+ 112,108,101,32,116,104,101,32,102,117,110,99,116,105,111,110, -+ 32,102,114,111,109,32,97,115,115,117,109,105,110,103,32,105, -+ 109,112,111,114,116,108,105,98,39,115,10,32,32,32,32,105, -+ 109,112,111,114,116,32,105,109,112,108,101,109,101,110,116,97, -+ 116,105,111,110,32,105,115,32,100,101,115,105,114,101,100,46, -+ 10,10,32,32,32,32,114,247,0,0,0,250,1,42,218,7, -+ 95,95,97,108,108,95,95,122,5,123,125,46,123,125,78,41, -+ 13,114,61,0,0,0,114,246,0,0,0,218,6,114,101,109, -+ 111,118,101,114,198,0,0,0,114,118,1,0,0,114,48,0, -+ 0,0,114,58,0,0,0,114,115,0,0,0,114,154,0,0, -+ 0,114,83,1,0,0,114,10,0,0,0,218,15,95,69,82, -+ 82,95,77,83,71,95,80,82,69,70,73,88,114,68,0,0, -+ 0,41,6,114,180,0,0,0,218,8,102,114,111,109,108,105, -+ 115,116,114,113,1,0,0,114,17,0,0,0,90,9,102,114, -+ 111,109,95,110,97,109,101,114,41,1,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,16,95,104,97, -+ 110,100,108,101,95,102,114,111,109,108,105,115,116,216,8,0, -+ 0,115,34,0,0,0,0,10,15,1,12,1,12,1,13,1, -+ 15,1,22,1,13,1,15,1,21,1,3,1,17,1,18,4, -+ 21,1,15,1,9,1,32,1,114,122,1,0,0,99,1,0, -+ 0,0,0,0,0,0,2,0,0,0,2,0,0,0,67,0, -+ 0,0,115,78,0,0,0,124,0,0,106,0,0,100,1,0, -+ 131,1,0,125,1,0,124,1,0,100,2,0,107,8,0,114, -+ 74,0,124,0,0,100,3,0,25,125,1,0,100,4,0,124, -+ 0,0,107,7,0,114,74,0,124,1,0,106,1,0,100,5, -+ 0,131,1,0,100,6,0,25,125,1,0,113,74,0,110,0, -+ 0,124,1,0,83,41,7,122,167,67,97,108,99,117,108,97, -+ 116,101,32,119,104,97,116,32,95,95,112,97,99,107,97,103, -+ 101,95,95,32,115,104,111,117,108,100,32,98,101,46,10,10, -+ 32,32,32,32,95,95,112,97,99,107,97,103,101,95,95,32, -+ 105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101, -+ 100,32,116,111,32,98,101,32,100,101,102,105,110,101,100,32, -+ 111,114,32,99,111,117,108,100,32,98,101,32,115,101,116,32, -+ 116,111,32,78,111,110,101,10,32,32,32,32,116,111,32,114, -+ 101,112,114,101,115,101,110,116,32,116,104,97,116,32,105,116, -+ 115,32,112,114,111,112,101,114,32,118,97,108,117,101,32,105, -+ 115,32,117,110,107,110,111,119,110,46,10,10,32,32,32,32, -+ 114,251,0,0,0,78,114,58,0,0,0,114,247,0,0,0, -+ 114,117,0,0,0,114,85,0,0,0,41,2,114,94,0,0, -+ 0,114,33,0,0,0,41,2,218,7,103,108,111,98,97,108, -+ 115,114,103,1,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,17,95,99,97,108,99,95,95,95,112, -+ 97,99,107,97,103,101,95,95,248,8,0,0,115,12,0,0, -+ 0,0,7,15,1,12,1,10,1,12,1,25,1,114,124,1, -+ 0,0,99,0,0,0,0,0,0,0,0,3,0,0,0,3, -+ 0,0,0,67,0,0,0,115,55,0,0,0,116,0,0,116, -+ 1,0,106,2,0,131,0,0,102,2,0,125,0,0,116,3, -+ 0,116,4,0,102,2,0,125,1,0,116,5,0,116,6,0, -+ 102,2,0,125,2,0,124,0,0,124,1,0,124,2,0,103, -+ 3,0,83,41,1,122,95,82,101,116,117,114,110,115,32,97, -+ 32,108,105,115,116,32,111,102,32,102,105,108,101,45,98,97, -+ 115,101,100,32,109,111,100,117,108,101,32,108,111,97,100,101, -+ 114,115,46,10,10,32,32,32,32,69,97,99,104,32,105,116, -+ 101,109,32,105,115,32,97,32,116,117,112,108,101,32,40,108, -+ 111,97,100,101,114,44,32,115,117,102,102,105,120,101,115,41, -+ 46,10,32,32,32,32,41,7,114,57,1,0,0,114,107,0, -+ 0,0,218,18,101,120,116,101,110,115,105,111,110,95,115,117, -+ 102,102,105,120,101,115,114,9,1,0,0,114,135,0,0,0, -+ 114,8,1,0,0,114,233,0,0,0,41,3,90,10,101,120, -+ 116,101,110,115,105,111,110,115,90,6,115,111,117,114,99,101, -+ 90,8,98,121,116,101,99,111,100,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,241,0,0,0,7,9, -+ 0,0,115,8,0,0,0,0,5,18,1,12,1,12,1,114, -+ 241,0,0,0,99,5,0,0,0,0,0,0,0,9,0,0, -+ 0,5,0,0,0,67,0,0,0,115,227,0,0,0,124,4, -+ 0,100,1,0,107,2,0,114,27,0,116,0,0,124,0,0, -+ 131,1,0,125,5,0,110,54,0,124,1,0,100,2,0,107, -+ 9,0,114,45,0,124,1,0,110,3,0,105,0,0,125,6, -+ 0,116,1,0,124,6,0,131,1,0,125,7,0,116,0,0, -+ 124,0,0,124,7,0,124,4,0,131,3,0,125,5,0,124, -+ 3,0,115,207,0,124,4,0,100,1,0,107,2,0,114,122, -+ 0,116,0,0,124,0,0,106,2,0,100,3,0,131,1,0, -+ 100,1,0,25,131,1,0,83,124,0,0,115,132,0,124,5, -+ 0,83,116,3,0,124,0,0,131,1,0,116,3,0,124,0, -+ 0,106,2,0,100,3,0,131,1,0,100,1,0,25,131,1, -+ 0,24,125,8,0,116,4,0,106,5,0,124,5,0,106,6, -+ 0,100,2,0,116,3,0,124,5,0,106,6,0,131,1,0, -+ 124,8,0,24,133,2,0,25,25,83,110,16,0,116,7,0, -+ 124,5,0,124,3,0,116,0,0,131,3,0,83,100,2,0, -+ 83,41,4,97,214,1,0,0,73,109,112,111,114,116,32,97, -+ 32,109,111,100,117,108,101,46,10,10,32,32,32,32,84,104, -+ 101,32,39,103,108,111,98,97,108,115,39,32,97,114,103,117, -+ 109,101,110,116,32,105,115,32,117,115,101,100,32,116,111,32, -+ 105,110,102,101,114,32,119,104,101,114,101,32,116,104,101,32, -+ 105,109,112,111,114,116,32,105,115,32,111,99,99,117,114,105, -+ 110,103,32,102,114,111,109,10,32,32,32,32,116,111,32,104, -+ 97,110,100,108,101,32,114,101,108,97,116,105,118,101,32,105, -+ 109,112,111,114,116,115,46,32,84,104,101,32,39,108,111,99, -+ 97,108,115,39,32,97,114,103,117,109,101,110,116,32,105,115, -+ 32,105,103,110,111,114,101,100,46,32,84,104,101,10,32,32, -+ 32,32,39,102,114,111,109,108,105,115,116,39,32,97,114,103, -+ 117,109,101,110,116,32,115,112,101,99,105,102,105,101,115,32, -+ 119,104,97,116,32,115,104,111,117,108,100,32,101,120,105,115, -+ 116,32,97,115,32,97,116,116,114,105,98,117,116,101,115,32, -+ 111,110,32,116,104,101,32,109,111,100,117,108,101,10,32,32, -+ 32,32,98,101,105,110,103,32,105,109,112,111,114,116,101,100, -+ 32,40,101,46,103,46,32,96,96,102,114,111,109,32,109,111, -+ 100,117,108,101,32,105,109,112,111,114,116,32,60,102,114,111, -+ 109,108,105,115,116,62,96,96,41,46,32,32,84,104,101,32, -+ 39,108,101,118,101,108,39,10,32,32,32,32,97,114,103,117, -+ 109,101,110,116,32,114,101,112,114,101,115,101,110,116,115,32, -+ 116,104,101,32,112,97,99,107,97,103,101,32,108,111,99,97, -+ 116,105,111,110,32,116,111,32,105,109,112,111,114,116,32,102, -+ 114,111,109,32,105,110,32,97,32,114,101,108,97,116,105,118, -+ 101,10,32,32,32,32,105,109,112,111,114,116,32,40,101,46, -+ 103,46,32,96,96,102,114,111,109,32,46,46,112,107,103,32, -+ 105,109,112,111,114,116,32,109,111,100,96,96,32,119,111,117, -+ 108,100,32,104,97,118,101,32,97,32,39,108,101,118,101,108, -+ 39,32,111,102,32,50,41,46,10,10,32,32,32,32,114,85, -+ 0,0,0,78,114,117,0,0,0,41,8,114,116,1,0,0, -+ 114,124,1,0,0,114,122,0,0,0,114,32,0,0,0,114, -+ 8,0,0,0,114,74,0,0,0,114,58,0,0,0,114,122, -+ 1,0,0,41,9,114,68,0,0,0,114,123,1,0,0,218, -+ 6,108,111,99,97,108,115,114,121,1,0,0,114,104,1,0, -+ 0,114,180,0,0,0,90,8,103,108,111,98,97,108,115,95, -+ 114,103,1,0,0,90,7,99,117,116,95,111,102,102,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,10,95, -+ 95,105,109,112,111,114,116,95,95,18,9,0,0,115,26,0, -+ 0,0,0,11,12,1,15,2,24,1,12,1,18,1,6,3, -+ 12,1,23,1,6,1,4,4,35,3,40,2,114,127,1,0, -+ 0,99,1,0,0,0,0,0,0,0,3,0,0,0,3,0, -+ 0,0,67,0,0,0,115,68,0,0,0,116,0,0,106,1, -+ 0,124,0,0,131,1,0,125,1,0,124,1,0,100,0,0, -+ 107,8,0,114,46,0,116,2,0,100,1,0,124,0,0,23, -+ 131,1,0,130,1,0,110,0,0,116,3,0,124,1,0,131, -+ 1,0,125,2,0,124,2,0,106,4,0,131,0,0,83,41, -+ 2,78,122,25,110,111,32,98,117,105,108,116,45,105,110,32, -+ 109,111,100,117,108,101,32,110,97,109,101,100,32,41,5,114, -+ 11,1,0,0,114,14,1,0,0,114,154,0,0,0,114,175, -+ 0,0,0,114,7,1,0,0,41,3,114,68,0,0,0,114, -+ 178,0,0,0,114,179,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,18,95,98,117,105,108,116, -+ 105,110,95,102,114,111,109,95,110,97,109,101,53,9,0,0, -+ 115,10,0,0,0,0,1,15,1,12,1,19,1,12,1,114, -+ 128,1,0,0,99,2,0,0,0,0,0,0,0,19,0,0, -+ 0,12,0,0,0,67,0,0,0,115,232,2,0,0,124,1, -+ 0,97,0,0,124,0,0,97,1,0,116,1,0,106,2,0, -+ 106,3,0,114,33,0,116,4,0,97,5,0,110,6,0,116, -+ 6,0,97,5,0,116,7,0,116,1,0,131,1,0,125,2, -+ 0,120,138,0,116,1,0,106,8,0,106,9,0,131,0,0, -+ 68,93,121,0,92,2,0,125,3,0,125,4,0,116,10,0, -+ 124,4,0,124,2,0,131,2,0,114,67,0,124,3,0,116, -+ 1,0,106,11,0,107,6,0,114,118,0,116,12,0,125,5, -+ 0,110,27,0,116,0,0,106,13,0,124,3,0,131,1,0, -+ 114,67,0,116,14,0,125,5,0,110,3,0,113,67,0,116, -+ 15,0,124,4,0,124,5,0,131,2,0,125,6,0,116,16, -+ 0,124,6,0,131,1,0,125,7,0,124,7,0,106,17,0, -+ 124,4,0,131,1,0,1,113,67,0,113,67,0,87,116,1, -+ 0,106,8,0,116,18,0,25,125,8,0,120,73,0,100,26, -+ 0,68,93,65,0,125,9,0,124,9,0,116,1,0,106,8, -+ 0,107,7,0,114,248,0,116,19,0,124,9,0,131,1,0, -+ 125,10,0,110,13,0,116,1,0,106,8,0,124,9,0,25, -+ 125,10,0,116,20,0,124,8,0,124,9,0,124,10,0,131, -+ 3,0,1,113,212,0,87,100,5,0,100,6,0,103,1,0, -+ 102,2,0,100,7,0,100,8,0,100,6,0,103,2,0,102, -+ 2,0,102,2,0,125,11,0,120,146,0,124,11,0,68,93, -+ 126,0,92,2,0,125,12,0,125,13,0,116,21,0,100,9, -+ 0,100,10,0,132,0,0,124,13,0,68,131,1,0,131,1, -+ 0,115,108,1,116,22,0,130,1,0,124,13,0,100,11,0, -+ 25,125,14,0,124,12,0,116,1,0,106,8,0,107,6,0, -+ 114,150,1,116,1,0,106,8,0,124,12,0,25,125,15,0, -+ 80,113,65,1,121,17,0,116,19,0,124,12,0,131,1,0, -+ 125,15,0,80,87,113,65,1,4,116,23,0,107,10,0,114, -+ 190,1,1,1,1,119,65,1,89,113,65,1,88,113,65,1, -+ 87,116,23,0,100,12,0,131,1,0,130,1,0,116,20,0, -+ 124,8,0,100,13,0,124,15,0,131,3,0,1,116,20,0, -+ 124,8,0,100,14,0,124,14,0,131,3,0,1,116,20,0, -+ 124,8,0,100,15,0,100,16,0,106,24,0,124,13,0,131, -+ 1,0,131,3,0,1,121,16,0,116,19,0,100,17,0,131, -+ 1,0,125,16,0,87,110,24,0,4,116,23,0,107,10,0, -+ 114,50,2,1,1,1,100,18,0,125,16,0,89,110,1,0, -+ 88,116,20,0,124,8,0,100,17,0,124,16,0,131,3,0, -+ 1,116,19,0,100,19,0,131,1,0,125,17,0,116,20,0, -+ 124,8,0,100,19,0,124,17,0,131,3,0,1,124,12,0, -+ 100,7,0,107,2,0,114,138,2,116,19,0,100,20,0,131, -+ 1,0,125,18,0,116,20,0,124,8,0,100,21,0,124,18, -+ 0,131,3,0,1,110,0,0,116,20,0,124,8,0,100,22, -+ 0,116,25,0,131,0,0,131,3,0,1,116,26,0,106,27, -+ 0,116,0,0,106,28,0,131,0,0,131,1,0,1,124,12, -+ 0,100,7,0,107,2,0,114,228,2,116,29,0,106,30,0, -+ 100,23,0,131,1,0,1,100,24,0,116,26,0,107,6,0, -+ 114,228,2,100,25,0,116,31,0,95,32,0,113,228,2,110, -+ 0,0,100,18,0,83,41,27,122,250,83,101,116,117,112,32, -+ 105,109,112,111,114,116,108,105,98,32,98,121,32,105,109,112, -+ 111,114,116,105,110,103,32,110,101,101,100,101,100,32,98,117, -+ 105,108,116,45,105,110,32,109,111,100,117,108,101,115,32,97, -+ 110,100,32,105,110,106,101,99,116,105,110,103,32,116,104,101, -+ 109,10,32,32,32,32,105,110,116,111,32,116,104,101,32,103, -+ 108,111,98,97,108,32,110,97,109,101,115,112,97,99,101,46, -+ 10,10,32,32,32,32,65,115,32,115,121,115,32,105,115,32, -+ 110,101,101,100,101,100,32,102,111,114,32,115,121,115,46,109, -+ 111,100,117,108,101,115,32,97,99,99,101,115,115,32,97,110, -+ 100,32,95,105,109,112,32,105,115,32,110,101,101,100,101,100, -+ 32,116,111,32,108,111,97,100,32,98,117,105,108,116,45,105, -+ 110,10,32,32,32,32,109,111,100,117,108,101,115,44,32,116, -+ 104,111,115,101,32,116,119,111,32,109,111,100,117,108,101,115, -+ 32,109,117,115,116,32,98,101,32,101,120,112,108,105,99,105, -+ 116,108,121,32,112,97,115,115,101,100,32,105,110,46,10,10, -+ 32,32,32,32,114,50,0,0,0,114,167,0,0,0,218,8, -+ 98,117,105,108,116,105,110,115,114,192,0,0,0,90,5,112, -+ 111,115,105,120,250,1,47,218,2,110,116,250,1,92,99,1, -+ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,115, -+ 0,0,0,115,33,0,0,0,124,0,0,93,23,0,125,1, -+ 0,116,0,0,124,1,0,131,1,0,100,0,0,107,2,0, -+ 86,1,113,3,0,100,1,0,83,41,2,114,30,0,0,0, -+ 78,41,1,114,32,0,0,0,41,2,114,23,0,0,0,114, -+ 131,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,78,0,0,0,105,9,0,0,115,2,0,0, -+ 0,6,0,122,25,95,115,101,116,117,112,46,60,108,111,99, -+ 97,108,115,62,46,60,103,101,110,101,120,112,114,62,114,85, -+ 0,0,0,122,30,105,109,112,111,114,116,108,105,98,32,114, -+ 101,113,117,105,114,101,115,32,112,111,115,105,120,32,111,114, -+ 32,110,116,114,4,0,0,0,114,26,0,0,0,114,22,0, -+ 0,0,114,31,0,0,0,114,86,0,0,0,78,114,112,0, -+ 0,0,90,6,119,105,110,114,101,103,114,24,1,0,0,114, -+ 7,0,0,0,122,4,46,112,121,119,122,6,95,100,46,112, -+ 121,100,84,41,4,122,3,95,105,111,122,9,95,119,97,114, -+ 110,105,110,103,115,122,8,98,117,105,108,116,105,110,115,122, -+ 7,109,97,114,115,104,97,108,41,33,114,107,0,0,0,114, -+ 8,0,0,0,114,118,0,0,0,114,119,0,0,0,114,121, -+ 0,0,0,114,233,0,0,0,114,120,0,0,0,114,67,0, -+ 0,0,114,74,0,0,0,218,5,105,116,101,109,115,114,193, -+ 0,0,0,114,158,0,0,0,114,11,1,0,0,114,163,0, -+ 0,0,114,20,1,0,0,114,248,0,0,0,114,175,0,0, -+ 0,114,255,0,0,0,114,58,0,0,0,114,128,1,0,0, -+ 114,62,0,0,0,218,3,97,108,108,114,101,0,0,0,114, -+ 154,0,0,0,114,27,0,0,0,114,12,0,0,0,114,60, -+ 1,0,0,114,198,0,0,0,114,125,1,0,0,114,135,0, -+ 0,0,114,224,0,0,0,114,23,1,0,0,114,27,1,0, -+ 0,41,19,218,10,115,121,115,95,109,111,100,117,108,101,218, -+ 11,95,105,109,112,95,109,111,100,117,108,101,90,11,109,111, -+ 100,117,108,101,95,116,121,112,101,114,68,0,0,0,114,180, -+ 0,0,0,114,170,0,0,0,114,178,0,0,0,114,179,0, -+ 0,0,90,11,115,101,108,102,95,109,111,100,117,108,101,90, -+ 12,98,117,105,108,116,105,110,95,110,97,109,101,90,14,98, -+ 117,105,108,116,105,110,95,109,111,100,117,108,101,90,10,111, -+ 115,95,100,101,116,97,105,108,115,90,10,98,117,105,108,116, -+ 105,110,95,111,115,114,22,0,0,0,114,26,0,0,0,90, -+ 9,111,115,95,109,111,100,117,108,101,90,13,116,104,114,101, -+ 97,100,95,109,111,100,117,108,101,90,14,119,101,97,107,114, -+ 101,102,95,109,111,100,117,108,101,90,13,119,105,110,114,101, -+ 103,95,109,111,100,117,108,101,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,218,6,95,115,101,116,117,112,61, -+ 9,0,0,115,108,0,0,0,0,9,6,1,6,2,12,1, -+ 9,2,6,3,12,1,28,1,15,1,15,1,9,1,15,1, -+ 9,2,3,1,15,1,12,1,20,3,13,1,13,1,15,1, -+ 15,2,13,1,20,3,33,1,19,2,31,1,10,1,15,1, -+ 13,1,4,2,3,1,12,1,5,1,13,1,12,2,12,1, -+ 16,1,16,1,25,3,3,1,16,1,13,2,11,1,16,3, -+ 12,1,16,3,12,1,12,1,19,3,19,1,19,1,12,1, -+ 13,1,12,1,114,137,1,0,0,99,2,0,0,0,0,0, -+ 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,136, -+ 0,0,0,116,0,0,124,0,0,124,1,0,131,2,0,1, -+ 116,1,0,131,0,0,125,2,0,116,2,0,106,3,0,106, -+ 4,0,116,5,0,106,6,0,124,2,0,140,0,0,103,1, -+ 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,9, -+ 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,10, -+ 0,131,1,0,1,116,11,0,106,12,0,100,1,0,107,2, -+ 0,114,116,0,116,2,0,106,7,0,106,8,0,116,13,0, -+ 131,1,0,1,110,0,0,116,2,0,106,7,0,106,8,0, -+ 116,14,0,131,1,0,1,100,2,0,83,41,3,122,50,73, -+ 110,115,116,97,108,108,32,105,109,112,111,114,116,108,105,98, -+ 32,97,115,32,116,104,101,32,105,109,112,108,101,109,101,110, -+ 116,97,116,105,111,110,32,111,102,32,105,109,112,111,114,116, -+ 46,114,131,1,0,0,78,41,15,114,137,1,0,0,114,241, -+ 0,0,0,114,8,0,0,0,114,79,1,0,0,114,198,0, -+ 0,0,114,87,1,0,0,114,101,1,0,0,114,107,1,0, -+ 0,114,224,0,0,0,114,11,1,0,0,114,20,1,0,0, -+ 114,4,0,0,0,114,58,0,0,0,114,23,1,0,0,114, -+ 74,1,0,0,41,3,114,135,1,0,0,114,136,1,0,0, -+ 90,17,115,117,112,112,111,114,116,101,100,95,108,111,97,100, -+ 101,114,115,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,218,8,95,105,110,115,116,97,108,108,148,9,0,0, -+ 115,16,0,0,0,0,2,13,1,9,1,28,1,16,1,16, -+ 1,15,1,19,1,114,138,1,0,0,41,4,122,3,119,105, -+ 110,114,1,0,0,0,114,2,0,0,0,114,3,0,0,0, -+ 41,92,114,60,0,0,0,114,11,0,0,0,114,12,0,0, -+ 0,114,18,0,0,0,114,20,0,0,0,114,29,0,0,0, -+ 114,39,0,0,0,114,40,0,0,0,114,44,0,0,0,114, -+ 45,0,0,0,114,47,0,0,0,114,56,0,0,0,114,66, -+ 0,0,0,114,69,0,0,0,114,67,0,0,0,218,8,95, -+ 95,99,111,100,101,95,95,114,194,0,0,0,114,70,0,0, -+ 0,114,110,0,0,0,114,93,0,0,0,114,100,0,0,0, -+ 114,83,0,0,0,114,84,0,0,0,114,103,0,0,0,114, -+ 104,0,0,0,114,106,0,0,0,114,113,0,0,0,114,115, -+ 0,0,0,114,16,0,0,0,114,186,0,0,0,114,15,0, -+ 0,0,114,19,0,0,0,90,17,95,82,65,87,95,77,65, -+ 71,73,67,95,78,85,77,66,69,82,114,126,0,0,0,114, -+ 135,0,0,0,114,120,0,0,0,114,121,0,0,0,114,133, -+ 0,0,0,114,136,0,0,0,114,143,0,0,0,114,145,0, -+ 0,0,114,153,0,0,0,114,157,0,0,0,114,162,0,0, -+ 0,114,165,0,0,0,114,173,0,0,0,114,181,0,0,0, -+ 114,191,0,0,0,114,196,0,0,0,114,199,0,0,0,114, -+ 204,0,0,0,114,212,0,0,0,114,213,0,0,0,114,217, -+ 0,0,0,114,174,0,0,0,218,6,111,98,106,101,99,116, -+ 114,242,0,0,0,114,240,0,0,0,114,248,0,0,0,114, -+ 175,0,0,0,114,10,1,0,0,114,11,1,0,0,114,20, -+ 1,0,0,114,23,1,0,0,114,33,1,0,0,114,34,1, -+ 0,0,114,49,1,0,0,114,9,1,0,0,114,8,1,0, -+ 0,114,60,1,0,0,114,57,1,0,0,114,61,1,0,0, -+ 114,252,0,0,0,114,74,1,0,0,114,87,1,0,0,114, -+ 102,1,0,0,114,105,1,0,0,114,106,1,0,0,114,108, -+ 1,0,0,114,111,1,0,0,114,120,1,0,0,114,112,1, -+ 0,0,114,114,1,0,0,114,115,1,0,0,114,116,1,0, -+ 0,114,122,1,0,0,114,124,1,0,0,114,241,0,0,0, -+ 114,127,1,0,0,114,128,1,0,0,114,137,1,0,0,114, -+ 138,1,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,8,60,109,111,100,117,108, -+ 101,62,8,0,0,0,115,170,0,0,0,6,17,6,3,12, -+ 12,12,5,12,5,12,6,12,12,12,10,12,9,12,5,12, -+ 7,15,22,12,8,12,4,15,4,19,20,6,2,6,3,22, -+ 4,19,68,19,21,19,19,12,19,12,20,12,114,22,1,18, -+ 2,6,2,9,2,9,1,9,2,15,27,12,23,12,19,12, -+ 12,18,8,12,18,12,11,12,11,12,17,12,16,21,55,21, -+ 12,18,10,12,14,12,36,19,27,19,106,24,22,9,3,12, -+ 1,15,63,18,45,19,230,15,25,19,70,19,71,19,63,19, -+ 24,22,110,19,41,25,43,25,16,6,3,19,57,19,57,19, -+ 38,19,129,19,146,19,13,12,9,12,9,15,40,12,17,6, -+ 1,10,2,12,27,12,6,18,24,12,32,12,15,12,11,24, -+ 35,12,8,12,87, ++ 114,7,1,0,0,99,4,0,0,0,0,0,0,0,6,0, ++ 0,0,11,0,0,0,67,0,0,0,115,195,0,0,0,124, ++ 0,0,106,0,0,100,1,0,131,1,0,125,4,0,124,0, ++ 0,106,0,0,100,2,0,131,1,0,125,5,0,124,4,0, ++ 115,99,0,124,5,0,114,54,0,124,5,0,106,1,0,125, ++ 4,0,110,45,0,124,2,0,124,3,0,107,2,0,114,84, ++ 0,116,2,0,124,1,0,124,2,0,131,2,0,125,4,0, ++ 110,15,0,116,3,0,124,1,0,124,2,0,131,2,0,125, ++ 4,0,124,5,0,115,126,0,116,4,0,124,1,0,124,2, ++ 0,100,3,0,124,4,0,131,2,1,125,5,0,121,44,0, ++ 124,5,0,124,0,0,100,2,0,60,124,4,0,124,0,0, ++ 100,1,0,60,124,2,0,124,0,0,100,4,0,60,124,3, ++ 0,124,0,0,100,5,0,60,87,110,18,0,4,116,5,0, ++ 107,10,0,114,190,0,1,1,1,89,110,1,0,88,100,0, ++ 0,83,41,6,78,218,10,95,95,108,111,97,100,101,114,95, ++ 95,218,8,95,95,115,112,101,99,95,95,114,128,0,0,0, ++ 90,8,95,95,102,105,108,101,95,95,90,10,95,95,99,97, ++ 99,104,101,100,95,95,41,6,218,3,103,101,116,114,128,0, ++ 0,0,114,224,0,0,0,114,219,0,0,0,114,168,0,0, ++ 0,218,9,69,120,99,101,112,116,105,111,110,41,6,90,2, ++ 110,115,114,107,0,0,0,90,8,112,97,116,104,110,97,109, ++ 101,90,9,99,112,97,116,104,110,97,109,101,114,128,0,0, ++ 0,114,165,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,14,95,102,105,120,95,117,112,95,109, ++ 111,100,117,108,101,32,5,0,0,115,34,0,0,0,0,2, ++ 15,1,15,1,6,1,6,1,12,1,12,1,18,2,15,1, ++ 6,1,21,1,3,1,10,1,10,1,10,1,14,1,13,2, ++ 114,25,1,0,0,99,0,0,0,0,0,0,0,0,3,0, ++ 0,0,3,0,0,0,67,0,0,0,115,55,0,0,0,116, ++ 0,0,116,1,0,106,2,0,131,0,0,102,2,0,125,0, ++ 0,116,3,0,116,4,0,102,2,0,125,1,0,116,5,0, ++ 116,6,0,102,2,0,125,2,0,124,0,0,124,1,0,124, ++ 2,0,103,3,0,83,41,1,122,95,82,101,116,117,114,110, ++ 115,32,97,32,108,105,115,116,32,111,102,32,102,105,108,101, ++ 45,98,97,115,101,100,32,109,111,100,117,108,101,32,108,111, ++ 97,100,101,114,115,46,10,10,32,32,32,32,69,97,99,104, ++ 32,105,116,101,109,32,105,115,32,97,32,116,117,112,108,101, ++ 32,40,108,111,97,100,101,114,44,32,115,117,102,102,105,120, ++ 101,115,41,46,10,32,32,32,32,41,7,114,225,0,0,0, ++ 114,146,0,0,0,218,18,101,120,116,101,110,115,105,111,110, ++ 95,115,117,102,102,105,120,101,115,114,219,0,0,0,114,85, ++ 0,0,0,114,224,0,0,0,114,75,0,0,0,41,3,90, ++ 10,101,120,116,101,110,115,105,111,110,115,90,6,115,111,117, ++ 114,99,101,90,8,98,121,116,101,99,111,100,101,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,162,0,0, ++ 0,55,5,0,0,115,8,0,0,0,0,5,18,1,12,1, ++ 12,1,114,162,0,0,0,99,1,0,0,0,0,0,0,0, ++ 12,0,0,0,12,0,0,0,67,0,0,0,115,70,2,0, ++ 0,124,0,0,97,0,0,116,0,0,106,1,0,97,1,0, ++ 116,0,0,106,2,0,97,2,0,116,1,0,106,3,0,116, ++ 4,0,25,125,1,0,120,76,0,100,26,0,68,93,68,0, ++ 125,2,0,124,2,0,116,1,0,106,3,0,107,7,0,114, ++ 83,0,116,0,0,106,5,0,124,2,0,131,1,0,125,3, ++ 0,110,13,0,116,1,0,106,3,0,124,2,0,25,125,3, ++ 0,116,6,0,124,1,0,124,2,0,124,3,0,131,3,0, ++ 1,113,44,0,87,100,5,0,100,6,0,103,1,0,102,2, ++ 0,100,7,0,100,8,0,100,6,0,103,2,0,102,2,0, ++ 102,2,0,125,4,0,120,149,0,124,4,0,68,93,129,0, ++ 92,2,0,125,5,0,125,6,0,116,7,0,100,9,0,100, ++ 10,0,132,0,0,124,6,0,68,131,1,0,131,1,0,115, ++ 199,0,116,8,0,130,1,0,124,6,0,100,11,0,25,125, ++ 7,0,124,5,0,116,1,0,106,3,0,107,6,0,114,241, ++ 0,116,1,0,106,3,0,124,5,0,25,125,8,0,80,113, ++ 156,0,121,20,0,116,0,0,106,5,0,124,5,0,131,1, ++ 0,125,8,0,80,87,113,156,0,4,116,9,0,107,10,0, ++ 114,28,1,1,1,1,119,156,0,89,113,156,0,88,113,156, ++ 0,87,116,9,0,100,12,0,131,1,0,130,1,0,116,6, ++ 0,124,1,0,100,13,0,124,8,0,131,3,0,1,116,6, ++ 0,124,1,0,100,14,0,124,7,0,131,3,0,1,116,6, ++ 0,124,1,0,100,15,0,100,16,0,106,10,0,124,6,0, ++ 131,1,0,131,3,0,1,121,19,0,116,0,0,106,5,0, ++ 100,17,0,131,1,0,125,9,0,87,110,24,0,4,116,9, ++ 0,107,10,0,114,147,1,1,1,1,100,18,0,125,9,0, ++ 89,110,1,0,88,116,6,0,124,1,0,100,17,0,124,9, ++ 0,131,3,0,1,116,0,0,106,5,0,100,19,0,131,1, ++ 0,125,10,0,116,6,0,124,1,0,100,19,0,124,10,0, ++ 131,3,0,1,124,5,0,100,7,0,107,2,0,114,238,1, ++ 116,0,0,106,5,0,100,20,0,131,1,0,125,11,0,116, ++ 6,0,124,1,0,100,21,0,124,11,0,131,3,0,1,116, ++ 6,0,124,1,0,100,22,0,116,11,0,131,0,0,131,3, ++ 0,1,116,12,0,106,13,0,116,2,0,106,14,0,131,0, ++ 0,131,1,0,1,124,5,0,100,7,0,107,2,0,114,66, ++ 2,116,15,0,106,16,0,100,23,0,131,1,0,1,100,24, ++ 0,116,12,0,107,6,0,114,66,2,100,25,0,116,17,0, ++ 95,18,0,100,18,0,83,41,27,122,205,83,101,116,117,112, ++ 32,116,104,101,32,112,97,116,104,45,98,97,115,101,100,32, ++ 105,109,112,111,114,116,101,114,115,32,102,111,114,32,105,109, ++ 112,111,114,116,108,105,98,32,98,121,32,105,109,112,111,114, ++ 116,105,110,103,32,110,101,101,100,101,100,10,32,32,32,32, ++ 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,115, ++ 32,97,110,100,32,105,110,106,101,99,116,105,110,103,32,116, ++ 104,101,109,32,105,110,116,111,32,116,104,101,32,103,108,111, ++ 98,97,108,32,110,97,109,101,115,112,97,99,101,46,10,10, ++ 32,32,32,32,79,116,104,101,114,32,99,111,109,112,111,110, ++ 101,110,116,115,32,97,114,101,32,101,120,116,114,97,99,116, ++ 101,100,32,102,114,111,109,32,116,104,101,32,99,111,114,101, ++ 32,98,111,111,116,115,116,114,97,112,32,109,111,100,117,108, ++ 101,46,10,10,32,32,32,32,114,50,0,0,0,114,61,0, ++ 0,0,218,8,98,117,105,108,116,105,110,115,114,143,0,0, ++ 0,90,5,112,111,115,105,120,250,1,47,218,2,110,116,250, ++ 1,92,99,1,0,0,0,0,0,0,0,2,0,0,0,3, ++ 0,0,0,115,0,0,0,115,33,0,0,0,124,0,0,93, ++ 23,0,125,1,0,116,0,0,124,1,0,131,1,0,100,0, ++ 0,107,2,0,86,1,113,3,0,100,1,0,83,41,2,114, ++ 30,0,0,0,78,41,1,114,32,0,0,0,41,2,114,23, ++ 0,0,0,114,78,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,228,0,0,0,91,5,0,0, ++ 115,2,0,0,0,6,0,122,25,95,115,101,116,117,112,46, ++ 60,108,111,99,97,108,115,62,46,60,103,101,110,101,120,112, ++ 114,62,114,60,0,0,0,122,30,105,109,112,111,114,116,108, ++ 105,98,32,114,101,113,117,105,114,101,115,32,112,111,115,105, ++ 120,32,111,114,32,110,116,114,4,0,0,0,114,26,0,0, ++ 0,114,22,0,0,0,114,31,0,0,0,90,7,95,116,104, ++ 114,101,97,100,78,90,8,95,119,101,97,107,114,101,102,90, ++ 6,119,105,110,114,101,103,114,170,0,0,0,114,7,0,0, ++ 0,122,4,46,112,121,119,122,6,95,100,46,112,121,100,84, ++ 41,4,122,3,95,105,111,122,9,95,119,97,114,110,105,110, ++ 103,115,122,8,98,117,105,108,116,105,110,115,122,7,109,97, ++ 114,115,104,97,108,41,19,114,122,0,0,0,114,8,0,0, ++ 0,114,146,0,0,0,114,240,0,0,0,114,113,0,0,0, ++ 90,18,95,98,117,105,108,116,105,110,95,102,114,111,109,95, ++ 110,97,109,101,114,117,0,0,0,218,3,97,108,108,218,14, ++ 65,115,115,101,114,116,105,111,110,69,114,114,111,114,114,108, ++ 0,0,0,114,27,0,0,0,114,12,0,0,0,114,230,0, ++ 0,0,114,150,0,0,0,114,26,1,0,0,114,85,0,0, ++ 0,114,164,0,0,0,114,169,0,0,0,114,174,0,0,0, ++ 41,12,218,17,95,98,111,111,116,115,116,114,97,112,95,109, ++ 111,100,117,108,101,90,11,115,101,108,102,95,109,111,100,117, ++ 108,101,90,12,98,117,105,108,116,105,110,95,110,97,109,101, ++ 90,14,98,117,105,108,116,105,110,95,109,111,100,117,108,101, ++ 90,10,111,115,95,100,101,116,97,105,108,115,90,10,98,117, ++ 105,108,116,105,110,95,111,115,114,22,0,0,0,114,26,0, ++ 0,0,90,9,111,115,95,109,111,100,117,108,101,90,13,116, ++ 104,114,101,97,100,95,109,111,100,117,108,101,90,14,119,101, ++ 97,107,114,101,102,95,109,111,100,117,108,101,90,13,119,105, ++ 110,114,101,103,95,109,111,100,117,108,101,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,6,95,115,101,116, ++ 117,112,66,5,0,0,115,82,0,0,0,0,8,6,1,9, ++ 1,9,3,13,1,13,1,15,1,18,2,13,1,20,3,33, ++ 1,19,2,31,1,10,1,15,1,13,1,4,2,3,1,15, ++ 1,5,1,13,1,12,2,12,1,16,1,16,1,25,3,3, ++ 1,19,1,13,2,11,1,16,3,15,1,16,3,12,1,15, ++ 1,16,3,19,1,19,1,12,1,13,1,12,1,114,34,1, ++ 0,0,99,1,0,0,0,0,0,0,0,2,0,0,0,3, ++ 0,0,0,67,0,0,0,115,116,0,0,0,116,0,0,124, ++ 0,0,131,1,0,1,116,1,0,131,0,0,125,1,0,116, ++ 2,0,106,3,0,106,4,0,116,5,0,106,6,0,124,1, ++ 0,140,0,0,103,1,0,131,1,0,1,116,7,0,106,8, ++ 0,100,1,0,107,2,0,114,78,0,116,2,0,106,9,0, ++ 106,10,0,116,11,0,131,1,0,1,116,2,0,106,9,0, ++ 106,10,0,116,12,0,131,1,0,1,116,5,0,124,0,0, ++ 95,5,0,116,13,0,124,0,0,95,13,0,100,2,0,83, ++ 41,3,122,41,73,110,115,116,97,108,108,32,116,104,101,32, + 112,97,116,104,45,98,97,115,101,100,32,105,109,112,111,114, +- 116,101,114,115,32,102,111,114,32,105,109,112,111,114,116,108, +- 105,98,32,98,121,32,105,109,112,111,114,116,105,110,103,32, +- 110,101,101,100,101,100,10,32,32,32,32,98,117,105,108,116, +- 45,105,110,32,109,111,100,117,108,101,115,32,97,110,100,32, +- 105,110,106,101,99,116,105,110,103,32,116,104,101,109,32,105, +- 110,116,111,32,116,104,101,32,103,108,111,98,97,108,32,110, +- 97,109,101,115,112,97,99,101,46,10,10,32,32,32,32,79, +- 116,104,101,114,32,99,111,109,112,111,110,101,110,116,115,32, +- 97,114,101,32,101,120,116,114,97,99,116,101,100,32,102,114, +- 111,109,32,116,104,101,32,99,111,114,101,32,98,111,111,116, +- 115,116,114,97,112,32,109,111,100,117,108,101,46,10,10,32, +- 32,32,32,114,49,0,0,0,114,60,0,0,0,218,8,98, +- 117,105,108,116,105,110,115,114,142,0,0,0,90,5,112,111, +- 115,105,120,250,1,47,218,2,110,116,250,1,92,99,1,0, +- 0,0,0,0,0,0,2,0,0,0,3,0,0,0,115,0, +- 0,0,115,33,0,0,0,124,0,0,93,23,0,125,1,0, +- 116,0,0,124,1,0,131,1,0,100,0,0,107,2,0,86, +- 1,113,3,0,100,1,0,83,41,2,114,29,0,0,0,78, +- 41,1,114,31,0,0,0,41,2,114,22,0,0,0,114,77, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,227,0,0,0,91,5,0,0,115,2,0,0,0, +- 6,0,122,25,95,115,101,116,117,112,46,60,108,111,99,97, +- 108,115,62,46,60,103,101,110,101,120,112,114,62,114,59,0, +- 0,0,122,30,105,109,112,111,114,116,108,105,98,32,114,101, +- 113,117,105,114,101,115,32,112,111,115,105,120,32,111,114,32, +- 110,116,114,3,0,0,0,114,25,0,0,0,114,21,0,0, +- 0,114,30,0,0,0,90,7,95,116,104,114,101,97,100,78, +- 90,8,95,119,101,97,107,114,101,102,90,6,119,105,110,114, +- 101,103,114,169,0,0,0,114,6,0,0,0,122,4,46,112, +- 121,119,122,6,95,100,46,112,121,100,84,41,4,122,3,95, +- 105,111,122,9,95,119,97,114,110,105,110,103,115,122,8,98, +- 117,105,108,116,105,110,115,122,7,109,97,114,115,104,97,108, +- 41,19,114,121,0,0,0,114,7,0,0,0,114,145,0,0, +- 0,114,239,0,0,0,114,112,0,0,0,90,18,95,98,117, +- 105,108,116,105,110,95,102,114,111,109,95,110,97,109,101,114, +- 116,0,0,0,218,3,97,108,108,218,14,65,115,115,101,114, +- 116,105,111,110,69,114,114,111,114,114,107,0,0,0,114,26, +- 0,0,0,114,11,0,0,0,114,229,0,0,0,114,149,0, +- 0,0,114,25,1,0,0,114,84,0,0,0,114,163,0,0, +- 0,114,168,0,0,0,114,173,0,0,0,41,12,218,17,95, +- 98,111,111,116,115,116,114,97,112,95,109,111,100,117,108,101, +- 90,11,115,101,108,102,95,109,111,100,117,108,101,90,12,98, +- 117,105,108,116,105,110,95,110,97,109,101,90,14,98,117,105, +- 108,116,105,110,95,109,111,100,117,108,101,90,10,111,115,95, +- 100,101,116,97,105,108,115,90,10,98,117,105,108,116,105,110, +- 95,111,115,114,21,0,0,0,114,25,0,0,0,90,9,111, +- 115,95,109,111,100,117,108,101,90,13,116,104,114,101,97,100, +- 95,109,111,100,117,108,101,90,14,119,101,97,107,114,101,102, +- 95,109,111,100,117,108,101,90,13,119,105,110,114,101,103,95, +- 109,111,100,117,108,101,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,6,95,115,101,116,117,112,66,5,0, +- 0,115,82,0,0,0,0,8,6,1,9,1,9,3,13,1, +- 13,1,15,1,18,2,13,1,20,3,33,1,19,2,31,1, +- 10,1,15,1,13,1,4,2,3,1,15,1,5,1,13,1, +- 12,2,12,1,16,1,16,1,25,3,3,1,19,1,13,2, +- 11,1,16,3,15,1,16,3,12,1,15,1,16,3,19,1, +- 19,1,12,1,13,1,12,1,114,33,1,0,0,99,1,0, +- 0,0,0,0,0,0,2,0,0,0,3,0,0,0,67,0, +- 0,0,115,116,0,0,0,116,0,0,124,0,0,131,1,0, +- 1,116,1,0,131,0,0,125,1,0,116,2,0,106,3,0, +- 106,4,0,116,5,0,106,6,0,124,1,0,140,0,0,103, +- 1,0,131,1,0,1,116,7,0,106,8,0,100,1,0,107, +- 2,0,114,78,0,116,2,0,106,9,0,106,10,0,116,11, +- 0,131,1,0,1,116,2,0,106,9,0,106,10,0,116,12, +- 0,131,1,0,1,116,5,0,124,0,0,95,5,0,116,13, +- 0,124,0,0,95,13,0,100,2,0,83,41,3,122,41,73, +- 110,115,116,97,108,108,32,116,104,101,32,112,97,116,104,45, +- 98,97,115,101,100,32,105,109,112,111,114,116,32,99,111,109, +- 112,111,110,101,110,116,115,46,114,28,1,0,0,78,41,14, +- 114,33,1,0,0,114,161,0,0,0,114,7,0,0,0,114, +- 254,0,0,0,114,149,0,0,0,114,6,1,0,0,114,19, +- 1,0,0,114,3,0,0,0,114,112,0,0,0,218,9,109, +- 101,116,97,95,112,97,116,104,114,163,0,0,0,114,168,0, +- 0,0,114,249,0,0,0,114,218,0,0,0,41,2,114,32, +- 1,0,0,90,17,115,117,112,112,111,114,116,101,100,95,108, +- 111,97,100,101,114,115,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,8,95,105,110,115,116,97,108,108,134, +- 5,0,0,115,16,0,0,0,0,2,10,1,9,1,28,1, +- 15,1,16,1,16,4,9,1,114,35,1,0,0,41,3,122, +- 3,119,105,110,114,1,0,0,0,114,2,0,0,0,41,57, +- 114,114,0,0,0,114,10,0,0,0,114,11,0,0,0,114, +- 17,0,0,0,114,19,0,0,0,114,28,0,0,0,114,38, +- 0,0,0,114,39,0,0,0,114,43,0,0,0,114,44,0, +- 0,0,114,46,0,0,0,114,55,0,0,0,218,4,116,121, +- 112,101,218,8,95,95,99,111,100,101,95,95,114,144,0,0, +- 0,114,15,0,0,0,114,135,0,0,0,114,14,0,0,0, +- 114,18,0,0,0,90,17,95,82,65,87,95,77,65,71,73, +- 67,95,78,85,77,66,69,82,114,73,0,0,0,114,72,0, +- 0,0,114,84,0,0,0,114,74,0,0,0,90,23,68,69, +- 66,85,71,95,66,89,84,69,67,79,68,69,95,83,85,70, +- 70,73,88,69,83,90,27,79,80,84,73,77,73,90,69,68, +- 95,66,89,84,69,67,79,68,69,95,83,85,70,70,73,88, +- 69,83,114,79,0,0,0,114,85,0,0,0,114,91,0,0, +- 0,114,95,0,0,0,114,97,0,0,0,114,105,0,0,0, +- 114,123,0,0,0,114,130,0,0,0,114,141,0,0,0,114, +- 147,0,0,0,114,150,0,0,0,114,155,0,0,0,218,6, +- 111,98,106,101,99,116,114,162,0,0,0,114,167,0,0,0, +- 114,168,0,0,0,114,184,0,0,0,114,194,0,0,0,114, +- 210,0,0,0,114,218,0,0,0,114,223,0,0,0,114,229, +- 0,0,0,114,224,0,0,0,114,230,0,0,0,114,247,0, +- 0,0,114,249,0,0,0,114,6,1,0,0,114,24,1,0, +- 0,114,161,0,0,0,114,33,1,0,0,114,35,1,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,8,60,109,111,100,117,108,101,62,8,0, +- 0,0,115,100,0,0,0,6,17,6,3,12,12,12,5,12, +- 5,12,6,12,12,12,10,12,9,12,5,12,7,15,22,15, +- 110,22,1,18,2,6,1,6,2,9,2,9,2,10,2,21, +- 44,12,33,12,19,12,12,12,12,18,8,12,28,12,17,21, +- 55,21,12,18,10,12,14,9,3,12,1,15,65,19,64,19, +- 28,22,110,19,41,25,43,25,16,6,3,25,53,19,57,19, +- 41,19,134,19,146,15,23,12,11,12,68, ++ 116,32,99,111,109,112,111,110,101,110,116,115,46,114,29,1, ++ 0,0,78,41,14,114,34,1,0,0,114,162,0,0,0,114, ++ 8,0,0,0,114,255,0,0,0,114,150,0,0,0,114,7, ++ 1,0,0,114,20,1,0,0,114,4,0,0,0,114,113,0, ++ 0,0,218,9,109,101,116,97,95,112,97,116,104,114,164,0, ++ 0,0,114,169,0,0,0,114,250,0,0,0,114,219,0,0, ++ 0,41,2,114,33,1,0,0,90,17,115,117,112,112,111,114, ++ 116,101,100,95,108,111,97,100,101,114,115,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,8,95,105,110,115, ++ 116,97,108,108,134,5,0,0,115,16,0,0,0,0,2,10, ++ 1,9,1,28,1,15,1,16,1,16,4,9,1,114,36,1, ++ 0,0,41,4,122,3,119,105,110,114,1,0,0,0,114,2, ++ 0,0,0,114,3,0,0,0,41,57,114,115,0,0,0,114, ++ 11,0,0,0,114,12,0,0,0,114,18,0,0,0,114,20, ++ 0,0,0,114,29,0,0,0,114,39,0,0,0,114,40,0, ++ 0,0,114,44,0,0,0,114,45,0,0,0,114,47,0,0, ++ 0,114,56,0,0,0,218,4,116,121,112,101,218,8,95,95, ++ 99,111,100,101,95,95,114,145,0,0,0,114,16,0,0,0, ++ 114,136,0,0,0,114,15,0,0,0,114,19,0,0,0,90, ++ 17,95,82,65,87,95,77,65,71,73,67,95,78,85,77,66, ++ 69,82,114,74,0,0,0,114,73,0,0,0,114,85,0,0, ++ 0,114,75,0,0,0,90,23,68,69,66,85,71,95,66,89, ++ 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,90, ++ 27,79,80,84,73,77,73,90,69,68,95,66,89,84,69,67, ++ 79,68,69,95,83,85,70,70,73,88,69,83,114,80,0,0, ++ 0,114,86,0,0,0,114,92,0,0,0,114,96,0,0,0, ++ 114,98,0,0,0,114,106,0,0,0,114,124,0,0,0,114, ++ 131,0,0,0,114,142,0,0,0,114,148,0,0,0,114,151, ++ 0,0,0,114,156,0,0,0,218,6,111,98,106,101,99,116, ++ 114,163,0,0,0,114,168,0,0,0,114,169,0,0,0,114, ++ 185,0,0,0,114,195,0,0,0,114,211,0,0,0,114,219, ++ 0,0,0,114,224,0,0,0,114,230,0,0,0,114,225,0, ++ 0,0,114,231,0,0,0,114,248,0,0,0,114,250,0,0, ++ 0,114,7,1,0,0,114,25,1,0,0,114,162,0,0,0, ++ 114,34,1,0,0,114,36,1,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,8, ++ 60,109,111,100,117,108,101,62,8,0,0,0,115,100,0,0, ++ 0,6,17,6,3,12,12,12,5,12,5,12,6,12,12,12, ++ 10,12,9,12,5,12,7,15,22,15,110,22,1,18,2,6, ++ 1,6,2,9,2,9,2,10,2,21,44,12,33,12,19,12, ++ 12,12,12,18,8,12,28,12,17,21,55,21,12,18,10,12, ++ 14,9,3,12,1,15,65,19,64,19,28,22,110,19,41,25, ++ 43,25,16,6,3,25,53,19,57,19,41,19,134,19,146,15, ++ 23,12,11,12,68, }; diff -Nru orig/Python/marshal.c modified/Python/marshal.c ---- orig/Python/marshal.c 2015-02-03 19:49:05.000000000 +0800 -+++ modified/Python/marshal.c 2015-05-04 12:43:06.000000000 +0800 -@@ -13,17 +13,26 @@ - #include "code.h" +--- orig/Python/marshal.c 2015-12-07 09:39:11.000000000 +0800 ++++ modified/Python/marshal.c 2016-02-15 20:17:07.000000000 +0800 +@@ -14,15 +14,23 @@ #include "marshal.h" + #include "../Modules/hashtable.h" +#ifdef __APPLE__ +# include "TargetConditionals.h" +#endif /* __APPLE__ */ + - #define ABS(x) ((x) < 0 ? -(x) : (x)) - /* High water mark to determine when the marshalled object is dangerously deep * and risks coring the interpreter. When the object stack gets this deep, * raise an exception instead of continuing. * On Windows debug builds, reduce this value. -+ * iOS also requires a reduced value. */ #if defined(MS_WINDOWS) && defined(_DEBUG) --#define MAX_MARSHAL_STACK_DEPTH 1500 -+# define MAX_MARSHAL_STACK_DEPTH 1500 +-#define MAX_MARSHAL_STACK_DEPTH 1000 ++# define MAX_MARSHAL_STACK_DEPTH 1000 #else -#define MAX_MARSHAL_STACK_DEPTH 2000 +# if TARGET_OS_IPHONE +# define MAX_MARSHAL_STACK_DEPTH 1500 +# else +# define MAX_MARSHAL_STACK_DEPTH 2000 -+# endif /* TARGET_OS_IPHONE */ ++# endif #endif #define TYPE_NULL '0' Binary files orig/Tools/iOS-test/.DS_Store and modified/Tools/iOS-test/.DS_Store differ diff -Nru orig/Tools/iOS-test/app/iOS-test/main.py modified/Tools/iOS-test/app/iOS-test/main.py --- orig/Tools/iOS-test/app/iOS-test/main.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/app/iOS-test/main.py 2015-07-17 13:49:19.000000000 +0800 ++++ modified/Tools/iOS-test/app/iOS-test/main.py 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,12 @@ +from datetime import datetime +import platform @@ -39902,13 +36500,13 @@ diff -Nru orig/Tools/iOS-test/app/iOS-test/main.py modified/Tools/iOS-test/app/i + diff -Nru orig/Tools/iOS-test/app_packages/README modified/Tools/iOS-test/app_packages/README --- orig/Tools/iOS-test/app_packages/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/app_packages/README 2015-04-26 21:28:31.000000000 +0800 ++++ modified/Tools/iOS-test/app_packages/README 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1 @@ +This directory exists so that 3rd party packages can be installed here. \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json --- orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 2015-07-04 17:34:59.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,58 @@ +{ + "images" : [ @@ -39971,7 +36569,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Conten \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json --- orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 2015-04-26 21:28:31.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,51 @@ +{ + "images" : [ @@ -40027,12 +36625,12 @@ diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/C \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings --- orig/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 2015-04-26 21:28:31.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1 @@ +/* Localized versions of Info.plist keys */ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist --- orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist 2015-12-20 19:26:56.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,45 @@ + + @@ -40081,7 +36679,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist modified/Tools/iOS-te + diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch --- orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 2015-04-26 21:28:31.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,16 @@ +// +// Prefix header @@ -40102,8 +36700,8 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-te \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/main.m --- orig/Tools/iOS-test/iOS-test/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/main.m 2015-12-21 09:53:22.000000000 +0800 -@@ -0,0 +1,145 @@ ++++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-16 11:43:46.000000000 +0800 +@@ -0,0 +1,151 @@ +// +// main.m +// A main module for starting Python projects under iOS. @@ -40133,7 +36731,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + + python_home = [NSString stringWithFormat:@"%@/Library/Python.framework/Resources", resourcePath, nil]; + NSLog(@"PythonHome is: %@", python_home); -+ wpython_home = _Py_char2wchar([python_home UTF8String], NULL); ++ wpython_home = Py_DecodeLocale([python_home UTF8String], NULL); + Py_SetPythonHome(wpython_home); + + // iOS provides a specific directory for temp files. @@ -40166,10 +36764,20 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + "-u", "all,-audio,-curses,-largefile,-subprocess,-gui", +// "-v", // Verbose test output + "-W", // Display test output on failure -+ ++ ++ + "-x", // Arguments are tests to *exclude* ++ ++// Simulator failures ++// "test_coroutines", // docstring not being populated ++// "test_module", // docstring not being populated ++ +// ARM64 failures -+// "test_unicode", // # ctypes related; PyUnicode_FromFormat ++// "test_coroutines", // docstring not being populated ++// "test_ctypes", // DL loading? ++// "test_module" // docstring not being populated ++// "test_threading", // ctypes related; missing symbol PyThreadState_SetAsyncExc ++// "test_unicode", // encoding problem + +// ARMv7 failures +// "test_cmath", // math domain error @@ -40178,15 +36786,11 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m +// "test_math", // math domain error +// "test_numeric_tower", // +// "test_strtod", // -+ "test_importlib", // Thread locking problem -+ -+// Fails on BOTH -+// "test_ctypes", // DL loading? -+// "test_socket", // Fails due to bad domain? Fails on simulator, OS/X, too. ++// "test_importlib", // Thread locking problem +// "test_threading", // ctypes related; missing symbol PyThreadState_SetAsyncExc + -+// Hard crash on BOTH -+ "test_bytes" // ctypes related; PyBytes_FromFormat ++// COMMON FAILURES ++ "test_bytes" // HARD CRASH ctypes related; PyBytes_FromFormat + + }; + @@ -40204,9 +36808,9 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + int n_test_args = sizeof(test_args) / sizeof (*test_args) + 1; + + python_argv = PyMem_RawMalloc(sizeof(wchar_t*) * n_test_args); -+ python_argv[0] = _Py_char2wchar(main_script, NULL); ++ python_argv[0] = Py_DecodeLocale(main_script, NULL); + for (i = 1; i < n_test_args; i++) { -+ python_argv[i] = _Py_char2wchar(test_args[i-1], NULL); ++ python_argv[i] = Py_DecodeLocale(test_args[i-1], NULL); + } + + PySys_SetArgv(n_test_args, python_argv); @@ -40252,7 +36856,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj --- orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 2015-12-20 22:48:35.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,369 @@ +// !$*UTF8*$! +{ @@ -40624,8 +37228,8 @@ diff -Nru orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj modified/Tools/ + rootObject = 60796EDA19190F4100A9926B /* Project object */; +} diff -Nru orig/config.sub modified/config.sub ---- orig/config.sub 2015-02-03 19:49:02.000000000 +0800 -+++ modified/config.sub 2015-02-15 08:25:31.000000000 +0800 +--- orig/config.sub 2015-12-07 09:39:11.000000000 +0800 ++++ modified/config.sub 2016-02-14 10:29:41.000000000 +0800 @@ -1512,6 +1512,8 @@ ;; -nacl*) @@ -40636,9 +37240,9 @@ diff -Nru orig/config.sub modified/config.sub ;; *) diff -Nru orig/configure modified/configure ---- orig/configure 2015-02-03 19:49:02.000000000 +0800 -+++ modified/configure 2015-04-30 09:18:43.000000000 +0800 -@@ -3290,6 +3290,9 @@ +--- orig/configure 2015-12-07 09:39:11.000000000 +0800 ++++ modified/configure 2016-02-14 10:29:41.000000000 +0800 +@@ -3312,6 +3312,9 @@ *-*-cygwin*) ac_sys_system=Cygwin ;; @@ -40648,7 +37252,7 @@ diff -Nru orig/configure modified/configure *) # for now, limit cross builds to known configurations MACHDEP="unknown" -@@ -3332,6 +3335,15 @@ +@@ -3354,6 +3357,15 @@ _host_cpu=$host_cpu esac ;; @@ -40664,7 +37268,7 @@ diff -Nru orig/configure modified/configure *-*-cygwin*) _host_cpu= ;; -@@ -3411,6 +3423,9 @@ +@@ -3433,6 +3445,9 @@ define_xopen_source=no;; Darwin/1[0-9].*) define_xopen_source=no;; @@ -40674,7 +37278,7 @@ diff -Nru orig/configure modified/configure # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined # or has another value. By not (re)defining it, the defaults come in place. -@@ -5993,11 +6008,17 @@ +@@ -6145,11 +6160,17 @@ fi if test "$cross_compiling" = yes; then @@ -40697,7 +37301,7 @@ diff -Nru orig/configure modified/configure fi -@@ -10421,6 +10442,8 @@ +@@ -10901,6 +10922,8 @@ hp*|HP*) DYNLOADFILE="dynload_hpux.o";; # Use dynload_next.c only on 10.2 and below, which don't have native dlopen() Darwin/[0156]\..*) DYNLOADFILE="dynload_next.o";; @@ -40706,7 +37310,7 @@ diff -Nru orig/configure modified/configure *) # use dynload_shlib.c and dlopen() if we have it; otherwise stub # out any dynamic loading -@@ -16732,7 +16755,17 @@ +@@ -17462,7 +17485,17 @@ echo "creating Modules/Setup.local" >&6 if test ! -f Modules/Setup.local then @@ -40726,8 +37330,8 @@ diff -Nru orig/configure modified/configure echo "creating Makefile" >&6 diff -Nru orig/configure.ac modified/configure.ac ---- orig/configure.ac 2015-02-25 21:21:37.000000000 +0800 -+++ modified/configure.ac 2015-04-30 09:18:57.000000000 +0800 +--- orig/configure.ac 2015-12-07 09:39:11.000000000 +0800 ++++ modified/configure.ac 2016-02-14 10:29:41.000000000 +0800 @@ -373,6 +373,9 @@ *-*-cygwin*) ac_sys_system=Cygwin @@ -40764,7 +37368,7 @@ diff -Nru orig/configure.ac modified/configure.ac # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined # or has another value. By not (re)defining it, the defaults come in place. -@@ -1023,11 +1038,17 @@ +@@ -1152,11 +1167,17 @@ AC_CHECK_TOOLS([READELF], [readelf], [:]) if test "$cross_compiling" = yes; then @@ -40787,7 +37391,7 @@ diff -Nru orig/configure.ac modified/configure.ac fi AC_SUBST(READELF) -@@ -2898,6 +2919,8 @@ +@@ -3153,6 +3174,8 @@ hp*|HP*) DYNLOADFILE="dynload_hpux.o";; # Use dynload_next.c only on 10.2 and below, which don't have native dlopen() Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";; @@ -40796,7 +37400,7 @@ diff -Nru orig/configure.ac modified/configure.ac *) # use dynload_shlib.c and dlopen() if we have it; otherwise stub # out any dynamic loading -@@ -4826,7 +4849,17 @@ +@@ -5209,7 +5232,17 @@ echo "creating Modules/Setup.local" >&AS_MESSAGE_FD if test ! -f Modules/Setup.local then @@ -40817,8 +37421,8 @@ diff -Nru orig/configure.ac modified/configure.ac echo "creating Makefile" >&AS_MESSAGE_FD diff -Nru orig/iOS/Makefile modified/iOS/Makefile --- orig/iOS/Makefile 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/Makefile 2015-07-04 13:38:21.000000000 +0800 -@@ -0,0 +1,248 @@ ++++ modified/iOS/Makefile 2016-02-15 15:51:14.000000000 +0800 +@@ -0,0 +1,251 @@ +# This is a "Meta-makefile" for building an iOS-compatible Python.framework. +# It invokes the base makefile multiple times, once for each hardware platform +# that needs to be supported; then it combines the products into a single "fat" @@ -40868,6 +37472,7 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + +clean: + rm -rf build ++ rm -rf _freeze_importlib + rm -rf ../Python.framework + rm -rf ../Tools/iOS-test/Python.framework + @@ -40883,6 +37488,8 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + # Configure and make the local build, providing compiled resources. + if test -f ../Makefile; then cd .. && make distclean; fi + cd .. && ./configure --prefix=$(IOS_DIR)/build/host --without-ensurepip ++ cd .. && make Programs/_freeze_importlib ++ cp ../Programs/_freeze_importlib . + cd .. && make + cd .. && make install + # Now pack away all the built artefacts so that the top level distclean doesn't touch them @@ -41067,9 +37674,10 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + + # Link the current Python library to the top level + cd $(FRAMEWORK_DIR) && ln -fs Versions/Current/Python +Binary files orig/iOS/Programs and modified/iOS/Programs differ diff -Nru orig/iOS/README modified/iOS/README --- orig/iOS/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/README 2015-12-20 18:59:33.000000000 +0800 ++++ modified/iOS/README 2016-02-15 09:51:43.000000000 +0800 @@ -0,0 +1,165 @@ +==================== +Python on iOS README @@ -41078,7 +37686,7 @@ diff -Nru orig/iOS/README modified/iOS/README +:Authors: + Russell Keith-Magee (2015) + -+:Version: 3.4.2 ++:Version: 3.5.1 + +This document provides a overview of eccentricities of building and using +Python on iOS. @@ -41236,23 +37844,22 @@ diff -Nru orig/iOS/README modified/iOS/README +.. _Rubicon ObjC: http://pybee.org/rubicon +.. _Pyobjus: http://pyobjus.readthedocs.org/ +.. _PyObjC: https://pythonhosted.org/pyobjc/ -Binary files orig/iOS/XCode-sample/.DS_Store and modified/iOS/XCode-sample/.DS_Store differ diff -Nru orig/iOS/XCode-sample/app/sample/main.py modified/iOS/XCode-sample/app/sample/main.py --- orig/iOS/XCode-sample/app/sample/main.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/app/sample/main.py 2015-03-14 22:02:09.000000000 +0800 ++++ modified/iOS/XCode-sample/app/sample/main.py 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,3 @@ + +if __name__ == '__main__': + print("Hello, World.") diff -Nru orig/iOS/XCode-sample/app_packages/README modified/iOS/XCode-sample/app_packages/README --- orig/iOS/XCode-sample/app_packages/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/app_packages/README 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/app_packages/README 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1 @@ +This directory exists so that 3rd party packages can be installed here. \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json --- orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,53 @@ +{ + "images" : [ @@ -41310,7 +37917,7 @@ diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Conten \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json --- orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,51 @@ +{ + "images" : [ @@ -41366,12 +37973,12 @@ diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/C \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings --- orig/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1 @@ +/* Localized versions of Info.plist keys */ diff -Nru orig/iOS/XCode-sample/sample/main.m modified/iOS/XCode-sample/sample/main.m --- orig/iOS/XCode-sample/sample/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/main.m 2015-07-04 23:12:05.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/main.m 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,112 @@ +// +// main.m @@ -41488,7 +38095,7 @@ diff -Nru orig/iOS/XCode-sample/sample/main.m modified/iOS/XCode-sample/sample/m \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/sample-Info.plist modified/iOS/XCode-sample/sample/sample-Info.plist --- orig/iOS/XCode-sample/sample/sample-Info.plist 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/sample-Info.plist 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/sample-Info.plist 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,45 @@ + + @@ -41538,7 +38145,7 @@ diff -Nru orig/iOS/XCode-sample/sample/sample-Info.plist modified/iOS/XCode-samp \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/sample-Prefix.pch modified/iOS/XCode-sample/sample/sample-Prefix.pch --- orig/iOS/XCode-sample/sample/sample-Prefix.pch 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/sample-Prefix.pch 2015-03-14 21:57:52.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/sample-Prefix.pch 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,16 @@ +// +// Prefix header @@ -41559,7 +38166,7 @@ diff -Nru orig/iOS/XCode-sample/sample/sample-Prefix.pch modified/iOS/XCode-samp \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj --- orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 2015-07-04 23:17:10.000000000 +0800 ++++ modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,353 @@ +// !$*UTF8*$! +{ @@ -41914,9 +38521,10 @@ diff -Nru orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj modified/iOS/XC + }; + rootObject = 60796EDA19190F4100A9926B /* Project object */; +} +Binary files orig/iOS/iOS and modified/iOS/iOS differ diff -Nru orig/iOS/include/pyconfig.h modified/iOS/include/pyconfig.h --- orig/iOS/include/pyconfig.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/include/pyconfig.h 2015-05-05 08:36:22.000000000 +0800 ++++ modified/iOS/include/pyconfig.h 2016-02-14 10:29:41.000000000 +0800 @@ -0,0 +1,15 @@ +#ifdef __arm__ +#include "pyconfig-armv7.h" @@ -41934,21 +38542,3 @@ diff -Nru orig/iOS/include/pyconfig.h modified/iOS/include/pyconfig.h +#include "pyconfig-x86_64.h" +#endif \ No newline at end of file -diff -Nru orig/setup.py modified/setup.py ---- orig/setup.py 2015-02-03 19:49:05.000000000 +0800 -+++ modified/setup.py 2015-04-26 07:48:53.000000000 +0800 -@@ -252,7 +252,13 @@ - - build_ext.build_extensions(self) - -- longest = max([len(e.name) for e in self.extensions]) -+ # If there are any missing modules, use the longest name to -+ # set the column width for the list of missing modules. -+ if missing: -+ longest = max([len(m) for m in missing]) -+ else: -+ longest = 0 -+ - if self.failed: - longest = max(longest, max([len(name) for name in self.failed])) - diff --git a/patch/Python/Setup.embedded b/patch/Python/Setup.embedded index 3269bad..c0977ee 100644 --- a/patch/Python/Setup.embedded +++ b/patch/Python/Setup.embedded @@ -60,7 +60,6 @@ resource resource.c select selectmodule.c syslog syslogmodule.c termios termios.c -time timemodule.c unicodedata unicodedata.c zlib zlibmodule.c -I$(prefix)/include -lz From e5b6e440335b46b00d110f3a5a19a2c21d659c71 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 16 Feb 2016 20:16:05 +0800 Subject: [PATCH 02/15] Added BZip2 to the builtins, plus stubs for lzma. --- Makefile | 136 +- patch/Python/Python.patch | 3004 +++++------------------------------ patch/Python/Setup.embedded | 4 +- 3 files changed, 488 insertions(+), 2656 deletions(-) diff --git a/Makefile b/Makefile index 7a4d8cb..7d37eb0 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,22 @@ # # Useful targets: -# - all - build everything -# - iOS - build everything for iOS -# - tvOS - build everything for tvOS -# - watchOS - build everything for watchOS -# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS -# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS +# - all - build everything +# - iOS - build everything for iOS +# - tvOS - build everything for tvOS +# - watchOS - build everything for watchOS +# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS +# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS # - OpenSSL.framework-watchOS - build OpenSSL.framework for watchOS -# - Python.framework-iOS - build Python.framework for iOS -# - Python.framework-tvOS - build Python.framework for tvOS -# - Python.framework-watchOS - build Python.framework for watchOS -# - Python-host - build host python +# - BZip2-iOS - build BZip2 library for iOS +# - BZip2-tvOS - build BZip2 library for tvOS +# - BZip2-watchOS - build BZip2 library for watchOS +# - XZ-iOS - build XZ library for iOS +# - XZ-tvOS - build XZ library for tvOS +# - XZ-watchOS - build XZ library for watchOS +# - Python.framework-iOS - build Python.framework for iOS +# - Python.framework-tvOS - build Python.framework for tvOS +# - Python.framework-watchOS - build Python.framework for watchOS +# - Python-host - build host python # Current director PROJECT_DIR=$(shell pwd) @@ -19,32 +25,36 @@ BUILD_NUMBER=1 # Version of packages that will be compiled by this meta-package PYTHON_VERSION=3.5.1 -PYTHON_VER= $(basename $(PYTHON_VERSION)) +PYTHON_VER= $(basename $(PYTHON_VERSION)) OPENSSL_VERSION_NUMBER=1.0.2 OPENSSL_REVISION=f OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION) +BZIP2_VERSION=1.0.6 + +XZ_VERSION=5.2.2 + # Supported OS -OS= iOS tvOS watchOS +OS= iOS tvOS watchOS # iOS targets TARGETS-iOS=iphonesimulator.x86_64 iphonesimulator.i386 iphoneos.armv7 iphoneos.armv7s iphoneos.arm64 CFLAGS-iOS=-miphoneos-version-min=7.0 -CFLAGS-iphoneos.armv7= -fembed-bitcode -CFLAGS-iphoneos.armv7s= -fembed-bitcode -CFLAGS-iphoneos.arm64= -fembed-bitcode +CFLAGS-iphoneos.armv7= -fembed-bitcode +CFLAGS-iphoneos.armv7s= -fembed-bitcode +CFLAGS-iphoneos.arm64= -fembed-bitcode # tvOS targets TARGETS-tvOS=appletvsimulator.x86_64 appletvos.arm64 CFLAGS-tvOS=-mtvos-version-min=9.0 -CFLAGS-appletvos.arm64= -fembed-bitcode -PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no +CFLAGS-appletvos.arm64= -fembed-bitcode +PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no # watchOS targets TARGETS-watchOS=watchsimulator.i386 watchos.armv7k CFLAGS-watchOS=-mwatchos-version-min=2.0 -CFLAGS-watchos.armv7k= -fembed-bitcode +CFLAGS-watchos.armv7k= -fembed-bitcode PYTHON_CONFIGURE-watchOS=ac_cv_func_sigaltstack=no # override machine for arm64 @@ -80,6 +90,35 @@ downloads/openssl-$(OPENSSL_VERSION).tgz: -if [ ! -e downloads/openssl-$(OPENSSL_VERSION).tgz ]; then curl --fail -L http://openssl.org/source/openssl-$(OPENSSL_VERSION).tar.gz -o downloads/openssl-$(OPENSSL_VERSION).tgz; fi if [ ! -e downloads/openssl-$(OPENSSL_VERSION).tgz ]; then curl --fail -L http://openssl.org/source/old/$(OPENSSL_VERSION_NUMBER)/openssl-$(OPENSSL_VERSION).tar.gz -o downloads/openssl-$(OPENSSL_VERSION).tgz; fi + +########################################################################### +# BZip2 +########################################################################### + +# Clean the bzip2 project +clean-bzip2: + rm -rf build/*/bzip2-$(BZIP2_VERSION)-* \ + build/*/bzip2 + +# Download original OpenSSL source code archive. +downloads/bzip2-$(BZIP2_VERSION).tgz: + mkdir -p downloads + if [ ! -e downloads/bzip2-$(BZIP2_VERSION).tgz ]; then curl --fail -L http://www.bzip.org/$(BZIP2_VERSION)/bzip2-$(BZIP2_VERSION).tar.gz -o downloads/bzip2-$(BZIP2_VERSION).tgz; fi + +########################################################################### +# XZ (LZMA) +########################################################################### + +# Clean the XZ project +clean-xz: + rm -rf build/*/xz-$(XZ_VERSION)-* \ + build/*/xz + +# Download original OpenSSL source code archive. +downloads/xz-$(XZ_VERSION).tgz: + mkdir -p downloads + if [ ! -e downloads/xz-$(XZ_VERSION).tgz ]; then curl --fail -L http://tukaani.org/xz/xz-$(XZ_VERSION).tar.gz -o downloads/xz-$(XZ_VERSION).tgz; fi + ########################################################################### # Python ########################################################################### @@ -122,19 +161,21 @@ $(PYTHON_DIR-host)/dist/bin/python$(PYTHON_VER): $(PYTHON_DIR-host)/Makefile define build-target ARCH-$1= $$(subst .,,$$(suffix $1)) ifdef MACHINE-$$(ARCH-$1) -MACHINE-$1= $$(MACHINE-$$(ARCH-$1)) +MACHINE-$1= $$(MACHINE-$$(ARCH-$1)) else -MACHINE-$1= $$(ARCH-$1) +MACHINE-$1= $$(ARCH-$1) endif -SDK-$1= $$(basename $1) +SDK-$1= $$(basename $1) SDK_ROOT-$1= $$(shell xcrun --sdk $$(SDK-$1) --show-sdk-path) -CC-$1= xcrun --sdk $$(SDK-$1) clang\ +CC-$1= xcrun --sdk $$(SDK-$1) clang\ -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) -OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 -PYTHON_DIR-$1= build/$2/Python-$(PYTHON_VERSION)-$1 -pyconfig.h-$1= pyconfig-$$(ARCH-$1).h +OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 +BZIP2_DIR-$1= build/$2/bzip2-$(BZIP2_VERSION)-$1 +XZ_DIR-$1= build/$2/xz-$(XZ_VERSION)-$1 +PYTHON_DIR-$1= build/$2/Python-$(PYTHON_VERSION)-$1 +pyconfig.h-$1= pyconfig-$$(ARCH-$1).h # Unpack OpenSSL $$(OPENSSL_DIR-$1)/Makefile: downloads/openssl-$(OPENSSL_VERSION).tgz @@ -167,6 +208,35 @@ $$(OPENSSL_DIR-$1)/libssl.a $$(OPENSSL_DIR-$1)/libcrypto.a: $$(OPENSSL_DIR-$1)/M CROSS_SDK="$$(notdir $$(SDK_ROOT-$1))" \ make all +# Unpack BZip2 +$$(BZIP2_DIR-$1)/Makefile: downloads/bzip2-$(BZIP2_VERSION).tgz + # Unpack sources + mkdir -p $$(BZIP2_DIR-$1) + tar zxf downloads/bzip2-$(BZIP2_VERSION).tgz --strip-components 1 -C $$(BZIP2_DIR-$1) + # Patch sources to use correct compiler + sed -ie 's#CC=gcc#CC=$$(CC-$1)#' $$(BZIP2_DIR-$1)/Makefile + # Patch sources to use correct install directory + sed -ie 's#PREFIX=/usr/local#PREFIX=$(PROJECT_DIR)/build/$2/bzip2#' $$(BZIP2_DIR-$1)/Makefile + +# Build BZip2 +$$(BZIP2_DIR-$1)/libbz2.a: $$(BZIP2_DIR-$1)/Makefile + cd $$(BZIP2_DIR-$1) && make install + +# Unpack XZ +$$(XZ_DIR-$1)/Makefile: downloads/xz-$(XZ_VERSION).tgz + # Unpack sources + mkdir -p $$(XZ_DIR-$1) + tar zxf downloads/xz-$(XZ_VERSION).tgz --strip-components 1 -C $$(XZ_DIR-$1) + # Configure the build + cd $$(XZ_DIR-$1) && ./configure \ + CC="$$(CC-$1)" \ + --host=$$(MACHINE-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ + --prefix=$(PROJECT_DIR)/build/$2/xz + +# Build XZ +$$(XZ_DIR-$1)/src/liblzma/.libs/liblzma.a: $$(XZ_DIR-$1)/Makefile + cd $$(XZ_DIR-$1) && make && make install + # Unpack Python $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST) # Unpack target Python @@ -187,7 +257,7 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST $$(PYTHON_CONFIGURE-$2) # Build Python -$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: $$(PYTHON_DIR-$1)/Makefile build/$2/OpenSSL.framework +$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: $$(PYTHON_DIR-$1)/Makefile build/$2/OpenSSL.framework build/$2/bzip2/lib/libbz2.a # Build target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) make all install @@ -219,6 +289,8 @@ define build $$(foreach target,$$(TARGETS-$1),$$(eval $$(call build-target,$$(target),$1))) OPENSSL_FRAMEWORK-$1= build/$1/OpenSSL.framework +BZIP2_LIB-$1= build/$1/bzip2/lib/libbz2.a +XZ_LIB-$1= build/$1/xz/lib/liblzma.a PYTHON_FRAMEWORK-$1= build/$1/Python.framework PYTHON_RESOURCES-$1= $$(PYTHON_FRAMEWORK-$1)/Versions/$(PYTHON_VER)/Resources @@ -258,6 +330,18 @@ build/$1/libcrypto.a: $$(foreach target,$$(TARGETS-$1),$$(OPENSSL_DIR-$$(target) mkdir -p build/$1 xcrun lipo -create -output $$@ $$^ +BZip2-$1: $$(BZIP2_LIB-$1) + +build/$1/bzip2/lib/libbz2.a: $$(foreach target,$$(TARGETS-$1),$$(BZIP2_DIR-$$(target))/libbz2.a) + mkdir -p build/$1/bzip2/lib + xcrun lipo -create -o $$(BZIP2_LIB-$1) $$^ + +XZ-$1: $$(XZ_LIB-$1) + +build/$1/xz/lib/liblzma.a: $$(foreach target,$$(TARGETS-$1),$$(XZ_DIR-$$(target))/src/liblzma/.libs/liblzma.a) + mkdir -p build/$1/xz/lib + xcrun lipo -create -o $$(XZ_LIB-$1) $$^ + Python.framework-$1: $$(PYTHON_FRAMEWORK-$1) # Build Python.framework diff --git a/patch/Python/Python.patch b/patch/Python/Python.patch index 12efa62..8f392ba 100644 --- a/patch/Python/Python.patch +++ b/patch/Python/Python.patch @@ -771,7 +771,7 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/tests/test_sysconfig.py --- orig/Lib/distutils/tests/test_sysconfig.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-16 16:58:16.000000000 +0800 @@ -11,6 +11,7 @@ from distutils.tests import support from test.support import TESTFN, run_unittest, check_warnings @@ -784,7 +784,7 @@ diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/test self.assertIsNotNone(vars['SO']) self.assertEqual(vars['SO'], vars['EXT_SUFFIX']) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "test requires subprocess.Popen()") def test_customize_compiler_before_get_config_vars(self): # Issue #21923: test that a Distribution compiler # instance can be called without an explicit call to @@ -9142,7 +9142,7 @@ diff -Nru orig/Lib/site.py modified/Lib/site.py return USER_SITE diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py --- orig/Lib/subprocess.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/subprocess.py 2016-02-14 11:07:15.000000000 +0800 ++++ modified/Lib/subprocess.py 2016-02-16 16:25:00.000000000 +0800 @@ -357,6 +357,7 @@ import sys @@ -9151,2533 +9151,59 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py import io import os -@@ -455,1320 +456,1324 @@ +@@ -455,10 +456,15 @@ else: _PopenSelector = selectors.SelectSelector -- --__all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", -- "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", ++if _ios: ++ # iOS doesn't support subprocesses. ++ supported = False ++else: ++ supported = True + + __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", + "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", - "SubprocessError", "TimeoutExpired", "CompletedProcess"] -- # NOTE: We intentionally exclude list2cmdline as it is -- # considered an internal implementation detail. issue10838. -- --if _mswindows: -- from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, -- STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, -- STD_ERROR_HANDLE, SW_HIDE, -- STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW) -- -- __all__.extend(["CREATE_NEW_CONSOLE", "CREATE_NEW_PROCESS_GROUP", -- "STD_INPUT_HANDLE", "STD_OUTPUT_HANDLE", -- "STD_ERROR_HANDLE", "SW_HIDE", -- "STARTF_USESTDHANDLES", "STARTF_USESHOWWINDOW"]) -- -- class Handle(int): -- closed = False -- -- def Close(self, CloseHandle=_winapi.CloseHandle): -- if not self.closed: -- self.closed = True -- CloseHandle(self) -- -- def Detach(self): -- if not self.closed: -- self.closed = True -- return int(self) -- raise ValueError("already closed") -- -- def __repr__(self): -- return "%s(%d)" % (self.__class__.__name__, int(self)) -- -- __del__ = Close -- __str__ = __repr__ -- -- --# This lists holds Popen instances for which the underlying process had not --# exited at the time its __del__ method got called: those processes are wait()ed --# for synchronously from _cleanup() when a new Popen object is created, to avoid --# zombie processes. --_active = [] -- --def _cleanup(): -- for inst in _active[:]: -- res = inst._internal_poll(_deadstate=sys.maxsize) -- if res is not None: -- try: -- _active.remove(inst) -- except ValueError: -- # This can happen if two threads create a new Popen instance. -- # It's harmless that it was already removed, so ignore. -- pass -- - PIPE = -1 ++ "SubprocessError", "TimeoutExpired", "CompletedProcess", "supported"] + # NOTE: We intentionally exclude list2cmdline as it is + # considered an internal implementation detail. issue10838. + +@@ -515,7 +521,6 @@ STDOUT = -2 DEVNULL = -3 -+if _ios: -+ # iOS doesn't support subprocesses; however, some modules still import -+ # subprocess, so it's helpful to retain the symbols in the namespace. -+ __all__ = ["PIPE", "STDOUT", "DEVNULL", "CalledProcessError"] -+else: -+ __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", -+ "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", -+ "SubprocessError", "TimeoutExpired", "CompletedProcess"] -+ # NOTE: We intentionally exclude list2cmdline as it is -+ # considered an internal implementation detail. issue10838. - --# XXX This function is only used by multiprocessing and the test suite, --# but it's here so that it can be imported when Python is compiled without --# threads. -- --def _args_from_interpreter_flags(): -- """Return a list of command-line arguments reproducing the current -- settings in sys.flags and sys.warnoptions.""" -- flag_opt_map = { -- 'debug': 'd', -- # 'inspect': 'i', -- # 'interactive': 'i', -- 'optimize': 'O', -- 'dont_write_bytecode': 'B', -- 'no_user_site': 's', -- 'no_site': 'S', -- 'ignore_environment': 'E', -- 'verbose': 'v', -- 'bytes_warning': 'b', -- 'quiet': 'q', -- 'hash_randomization': 'R', -- } -- args = [] -- for flag, opt in flag_opt_map.items(): -- v = getattr(sys.flags, flag) -- if v > 0: -- if flag == 'hash_randomization': -- v = 1 # Handle specification of an exact seed -- args.append('-' + opt * v) -- for opt in sys.warnoptions: -- args.append('-W' + opt) -- return args -- -- --def call(*popenargs, timeout=None, **kwargs): -- """Run command with arguments. Wait for command to complete or -- timeout, then return the returncode attribute. -+ if _mswindows: -+ from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, -+ STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, -+ STD_ERROR_HANDLE, SW_HIDE, -+ STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW) -+ -+ __all__.extend(["CREATE_NEW_CONSOLE", "CREATE_NEW_PROCESS_GROUP", -+ "STD_INPUT_HANDLE", "STD_OUTPUT_HANDLE", -+ "STD_ERROR_HANDLE", "SW_HIDE", -+ "STARTF_USESTDHANDLES", "STARTF_USESHOWWINDOW"]) -+ -+ class Handle(int): -+ closed = False -+ -+ def Close(self, CloseHandle=_winapi.CloseHandle): -+ if not self.closed: -+ self.closed = True -+ CloseHandle(self) -+ -+ def Detach(self): -+ if not self.closed: -+ self.closed = True -+ return int(self) -+ raise ValueError("already closed") -+ -+ def __repr__(self): -+ return "%s(%d)" % (self.__class__.__name__, int(self)) -+ -+ __del__ = Close -+ __str__ = __repr__ -+ -+ -+ # This lists holds Popen instances for which the underlying process had not -+ # exited at the time its __del__ method got called: those processes are wait()ed -+ # for synchronously from _cleanup() when a new Popen object is created, to avoid -+ # zombie processes. -+ _active = [] -+ -+ def _cleanup(): -+ for inst in _active[:]: -+ res = inst._internal_poll(_deadstate=sys.maxsize) -+ if res is not None: -+ try: -+ _active.remove(inst) -+ except ValueError: -+ # This can happen if two threads create a new Popen instance. -+ # It's harmless that it was already removed, so ignore. -+ pass - -- The arguments are the same as for the Popen constructor. Example: - -- retcode = call(["ls", "-l"]) -- """ -- with Popen(*popenargs, **kwargs) as p: -- try: -- return p.wait(timeout=timeout) -- except: -- p.kill() -- p.wait() -- raise -- -- --def check_call(*popenargs, **kwargs): -- """Run command with arguments. Wait for command to complete. If -- the exit code was zero then return, otherwise raise -- CalledProcessError. The CalledProcessError object will have the -- return code in the returncode attribute. -+ # XXX This function is only used by multiprocessing and the test suite, -+ # but it's here so that it can be imported when Python is compiled without -+ # threads. -+ -+ def _args_from_interpreter_flags(): -+ """Return a list of command-line arguments reproducing the current -+ settings in sys.flags and sys.warnoptions.""" -+ flag_opt_map = { -+ 'debug': 'd', -+ # 'inspect': 'i', -+ # 'interactive': 'i', -+ 'optimize': 'O', -+ 'dont_write_bytecode': 'B', -+ 'no_user_site': 's', -+ 'no_site': 'S', -+ 'ignore_environment': 'E', -+ 'verbose': 'v', -+ 'bytes_warning': 'b', -+ 'quiet': 'q', -+ 'hash_randomization': 'R', -+ } -+ args = [] -+ for flag, opt in flag_opt_map.items(): -+ v = getattr(sys.flags, flag) -+ if v > 0: -+ if flag == 'hash_randomization': -+ v = 1 # Handle specification of an exact seed -+ args.append('-' + opt * v) -+ for opt in sys.warnoptions: -+ args.append('-W' + opt) -+ return args -+ -+ -+ def call(*popenargs, timeout=None, **kwargs): -+ """Run command with arguments. Wait for command to complete or -+ timeout, then return the returncode attribute. - -- The arguments are the same as for the call function. Example: -+ The arguments are the same as for the Popen constructor. Example: - -- check_call(["ls", "-l"]) -- """ -- retcode = call(*popenargs, **kwargs) -- if retcode: -- cmd = kwargs.get("args") -- if cmd is None: -- cmd = popenargs[0] -- raise CalledProcessError(retcode, cmd) -- return 0 -- -- --def check_output(*popenargs, timeout=None, **kwargs): -- r"""Run command with arguments and return its output. -- -- If the exit code was non-zero it raises a CalledProcessError. The -- CalledProcessError object will have the return code in the returncode -- attribute and output in the output attribute. -- -- The arguments are the same as for the Popen constructor. Example: -- -- >>> check_output(["ls", "-l", "/dev/null"]) -- b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' -- -- The stdout argument is not allowed as it is used internally. -- To capture standard error in the result, use stderr=STDOUT. -- -- >>> check_output(["/bin/sh", "-c", -- ... "ls -l non_existent_file ; exit 0"], -- ... stderr=STDOUT) -- b'ls: non_existent_file: No such file or directory\n' -- -- There is an additional optional argument, "input", allowing you to -- pass a string to the subprocess's stdin. If you use this argument -- you may not also use the Popen constructor's "stdin" argument, as -- it too will be used internally. Example: -- -- >>> check_output(["sed", "-e", "s/foo/bar/"], -- ... input=b"when in the course of fooman events\n") -- b'when in the course of barman events\n' -+ retcode = call(["ls", "-l"]) -+ """ -+ with Popen(*popenargs, **kwargs) as p: -+ try: -+ return p.wait(timeout=timeout) -+ except: -+ p.kill() -+ p.wait() -+ raise -+ -+ -+ def check_call(*popenargs, **kwargs): -+ """Run command with arguments. Wait for command to complete. If -+ the exit code was zero then return, otherwise raise -+ CalledProcessError. The CalledProcessError object will have the -+ return code in the returncode attribute. - -- If universal_newlines=True is passed, the "input" argument must be a -- string and the return value will be a string rather than bytes. -- """ -- if 'stdout' in kwargs: -- raise ValueError('stdout argument not allowed, it will be overridden.') -+ The arguments are the same as for the call function. Example: - -- if 'input' in kwargs and kwargs['input'] is None: -- # Explicitly passing input=None was previously equivalent to passing an -- # empty string. That is maintained here for backwards compatibility. -- kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b'' -+ check_call(["ls", "-l"]) -+ """ -+ retcode = call(*popenargs, **kwargs) -+ if retcode: -+ cmd = kwargs.get("args") -+ if cmd is None: -+ cmd = popenargs[0] -+ raise CalledProcessError(retcode, cmd) -+ return 0 -+ -+ -+ def check_output(*popenargs, timeout=None, **kwargs): -+ r"""Run command with arguments and return its output. -+ -+ If the exit code was non-zero it raises a CalledProcessError. The -+ CalledProcessError object will have the return code in the returncode -+ attribute and output in the output attribute. -+ -+ The arguments are the same as for the Popen constructor. Example: -+ -+ >>> check_output(["ls", "-l", "/dev/null"]) -+ b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' -+ -+ The stdout argument is not allowed as it is used internally. -+ To capture standard error in the result, use stderr=STDOUT. -+ -+ >>> check_output(["/bin/sh", "-c", -+ ... "ls -l non_existent_file ; exit 0"], -+ ... stderr=STDOUT) -+ b'ls: non_existent_file: No such file or directory\n' -+ -+ There is an additional optional argument, "input", allowing you to -+ pass a string to the subprocess's stdin. If you use this argument -+ you may not also use the Popen constructor's "stdin" argument, as -+ it too will be used internally. Example: -+ -+ >>> check_output(["sed", "-e", "s/foo/bar/"], -+ ... input=b"when in the course of fooman events\n") -+ b'when in the course of barman events\n' - -- return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, -- **kwargs).stdout -+ If universal_newlines=True is passed, the "input" argument must be a -+ string and the return value will be a string rather than bytes. -+ """ -+ if 'stdout' in kwargs: -+ raise ValueError('stdout argument not allowed, it will be overridden.') - -+ if 'input' in kwargs and kwargs['input'] is None: -+ # Explicitly passing input=None was previously equivalent to passing an -+ # empty string. That is maintained here for backwards compatibility. -+ kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b'' - --class CompletedProcess(object): -- """A process that has finished running. -+ return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, -+ **kwargs).stdout - -- This is returned by run(). - -- Attributes: -- args: The list or str args passed to run(). -- returncode: The exit code of the process, negative for signals. -- stdout: The standard output (None if not captured). -- stderr: The standard error (None if not captured). -- """ -- def __init__(self, args, returncode, stdout=None, stderr=None): -- self.args = args -- self.returncode = returncode -- self.stdout = stdout -- self.stderr = stderr -+ class CompletedProcess(object): -+ """A process that has finished running. - -- def __repr__(self): -- args = ['args={!r}'.format(self.args), -- 'returncode={!r}'.format(self.returncode)] -- if self.stdout is not None: -- args.append('stdout={!r}'.format(self.stdout)) -- if self.stderr is not None: -- args.append('stderr={!r}'.format(self.stderr)) -- return "{}({})".format(type(self).__name__, ', '.join(args)) -- -- def check_returncode(self): -- """Raise CalledProcessError if the exit code is non-zero.""" -- if self.returncode: -- raise CalledProcessError(self.returncode, self.args, self.stdout, -- self.stderr) -- -- --def run(*popenargs, input=None, timeout=None, check=False, **kwargs): -- """Run command with arguments and return a CompletedProcess instance. -- -- The returned instance will have attributes args, returncode, stdout and -- stderr. By default, stdout and stderr are not captured, and those attributes -- will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. -- -- If check is True and the exit code was non-zero, it raises a -- CalledProcessError. The CalledProcessError object will have the return code -- in the returncode attribute, and output & stderr attributes if those streams -- were captured. -- -- If timeout is given, and the process takes too long, a TimeoutExpired -- exception will be raised. -- -- There is an optional argument "input", allowing you to -- pass a string to the subprocess's stdin. If you use this argument -- you may not also use the Popen constructor's "stdin" argument, as -- it will be used internally. -- -- The other arguments are the same as for the Popen constructor. -- -- If universal_newlines=True is passed, the "input" argument must be a -- string and stdout/stderr in the returned object will be strings rather than -- bytes. -- """ -- if input is not None: -- if 'stdin' in kwargs: -- raise ValueError('stdin and input arguments may not both be used.') -- kwargs['stdin'] = PIPE -+ This is returned by run(). - -- with Popen(*popenargs, **kwargs) as process: -- try: -- stdout, stderr = process.communicate(input, timeout=timeout) -- except TimeoutExpired: -- process.kill() -- stdout, stderr = process.communicate() -- raise TimeoutExpired(process.args, timeout, output=stdout, -- stderr=stderr) -- except: -- process.kill() -- process.wait() -- raise -- retcode = process.poll() -- if check and retcode: -- raise CalledProcessError(retcode, process.args, -- output=stdout, stderr=stderr) -- return CompletedProcess(process.args, retcode, stdout, stderr) -+ Attributes: -+ args: The list or str args passed to run(). -+ returncode: The exit code of the process, negative for signals. -+ stdout: The standard output (None if not captured). -+ stderr: The standard error (None if not captured). -+ """ -+ def __init__(self, args, returncode, stdout=None, stderr=None): -+ self.args = args -+ self.returncode = returncode -+ self.stdout = stdout -+ self.stderr = stderr - -+ def __repr__(self): -+ args = ['args={!r}'.format(self.args), -+ 'returncode={!r}'.format(self.returncode)] -+ if self.stdout is not None: -+ args.append('stdout={!r}'.format(self.stdout)) -+ if self.stderr is not None: -+ args.append('stderr={!r}'.format(self.stderr)) -+ return "{}({})".format(type(self).__name__, ', '.join(args)) - --def list2cmdline(seq): -- """ -- Translate a sequence of arguments into a command line -- string, using the same rules as the MS C runtime: -+ def check_returncode(self): -+ """Raise CalledProcessError if the exit code is non-zero.""" -+ if self.returncode: -+ raise CalledProcessError(self.returncode, self.args, self.stdout, -+ self.stderr) - -- 1) Arguments are delimited by white space, which is either a -- space or a tab. - -- 2) A string surrounded by double quotation marks is -- interpreted as a single argument, regardless of white space -- contained within. A quoted string can be embedded in an -- argument. -- -- 3) A double quotation mark preceded by a backslash is -- interpreted as a literal double quotation mark. -- -- 4) Backslashes are interpreted literally, unless they -- immediately precede a double quotation mark. -- -- 5) If backslashes immediately precede a double quotation mark, -- every pair of backslashes is interpreted as a literal -- backslash. If the number of backslashes is odd, the last -- backslash escapes the next double quotation mark as -- described in rule 3. -- """ -+ def run(*popenargs, input=None, timeout=None, check=False, **kwargs): -+ """Run command with arguments and return a CompletedProcess instance. - -- # See -- # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx -- # or search http://msdn.microsoft.com for -- # "Parsing C++ Command-Line Arguments" -- result = [] -- needquote = False -- for arg in seq: -- bs_buf = [] -- -- # Add a space to separate this argument from the others -- if result: -- result.append(' ') -- -- needquote = (" " in arg) or ("\t" in arg) or not arg -- if needquote: -- result.append('"') -- -- for c in arg: -- if c == '\\': -- # Don't know if we need to double yet. -- bs_buf.append(c) -- elif c == '"': -- # Double backslashes. -- result.append('\\' * len(bs_buf)*2) -- bs_buf = [] -- result.append('\\"') -- else: -- # Normal char -- if bs_buf: -- result.extend(bs_buf) -- bs_buf = [] -- result.append(c) -+ The returned instance will have attributes args, returncode, stdout and -+ stderr. By default, stdout and stderr are not captured, and those attributes -+ will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. - -- # Add remaining backslashes, if any. -- if bs_buf: -- result.extend(bs_buf) -+ If check is True and the exit code was non-zero, it raises a -+ CalledProcessError. The CalledProcessError object will have the return code -+ in the returncode attribute, and output & stderr attributes if those streams -+ were captured. - -- if needquote: -- result.extend(bs_buf) -- result.append('"') -+ If timeout is given, and the process takes too long, a TimeoutExpired -+ exception will be raised. - -- return ''.join(result) -+ There is an optional argument "input", allowing you to -+ pass a string to the subprocess's stdin. If you use this argument -+ you may not also use the Popen constructor's "stdin" argument, as -+ it will be used internally. - -+ The other arguments are the same as for the Popen constructor. - --# Various tools for executing commands and looking at their output and status. --# -+ If universal_newlines=True is passed, the "input" argument must be a -+ string and stdout/stderr in the returned object will be strings rather than -+ bytes. -+ """ -+ if input is not None: -+ if 'stdin' in kwargs: -+ raise ValueError('stdin and input arguments may not both be used.') -+ kwargs['stdin'] = PIPE - --def getstatusoutput(cmd): -- """ Return (status, output) of executing cmd in a shell. -+ with Popen(*popenargs, **kwargs) as process: -+ try: -+ stdout, stderr = process.communicate(input, timeout=timeout) -+ except TimeoutExpired: -+ process.kill() -+ stdout, stderr = process.communicate() -+ raise TimeoutExpired(process.args, timeout, output=stdout, -+ stderr=stderr) -+ except: -+ process.kill() -+ process.wait() -+ raise -+ retcode = process.poll() -+ if check and retcode: -+ raise CalledProcessError(retcode, process.args, -+ output=stdout, stderr=stderr) -+ return CompletedProcess(process.args, retcode, stdout, stderr) - -- Execute the string 'cmd' in a shell with 'check_output' and -- return a 2-tuple (status, output). Universal newlines mode is used, -- meaning that the result with be decoded to a string. - -- A trailing newline is stripped from the output. -- The exit status for the command can be interpreted -- according to the rules for the function 'wait'. Example: -+ def list2cmdline(seq): -+ """ -+ Translate a sequence of arguments into a command line -+ string, using the same rules as the MS C runtime: - -- >>> import subprocess -- >>> subprocess.getstatusoutput('ls /bin/ls') -- (0, '/bin/ls') -- >>> subprocess.getstatusoutput('cat /bin/junk') -- (256, 'cat: /bin/junk: No such file or directory') -- >>> subprocess.getstatusoutput('/bin/junk') -- (256, 'sh: /bin/junk: not found') -- """ -- try: -- data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) -- status = 0 -- except CalledProcessError as ex: -- data = ex.output -- status = ex.returncode -- if data[-1:] == '\n': -- data = data[:-1] -- return status, data -- --def getoutput(cmd): -- """Return output (stdout or stderr) of executing cmd in a shell. -- -- Like getstatusoutput(), except the exit status is ignored and the return -- value is a string containing the command's output. Example: -- -- >>> import subprocess -- >>> subprocess.getoutput('ls /bin/ls') -- '/bin/ls' -- """ -- return getstatusoutput(cmd)[1] -+ 1) Arguments are delimited by white space, which is either a -+ space or a tab. - -+ 2) A string surrounded by double quotation marks is -+ interpreted as a single argument, regardless of white space -+ contained within. A quoted string can be embedded in an -+ argument. -+ -+ 3) A double quotation mark preceded by a backslash is -+ interpreted as a literal double quotation mark. -+ -+ 4) Backslashes are interpreted literally, unless they -+ immediately precede a double quotation mark. -+ -+ 5) If backslashes immediately precede a double quotation mark, -+ every pair of backslashes is interpreted as a literal -+ backslash. If the number of backslashes is odd, the last -+ backslash escapes the next double quotation mark as -+ described in rule 3. -+ """ - --_PLATFORM_DEFAULT_CLOSE_FDS = object() -+ # See -+ # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx -+ # or search http://msdn.microsoft.com for -+ # "Parsing C++ Command-Line Arguments" -+ result = [] -+ needquote = False -+ for arg in seq: -+ bs_buf = [] -+ -+ # Add a space to separate this argument from the others -+ if result: -+ result.append(' ') -+ -+ needquote = (" " in arg) or ("\t" in arg) or not arg -+ if needquote: -+ result.append('"') -+ -+ for c in arg: -+ if c == '\\': -+ # Don't know if we need to double yet. -+ bs_buf.append(c) -+ elif c == '"': -+ # Double backslashes. -+ result.append('\\' * len(bs_buf)*2) -+ bs_buf = [] -+ result.append('\\"') -+ else: -+ # Normal char -+ if bs_buf: -+ result.extend(bs_buf) -+ bs_buf = [] -+ result.append(c) -+ -+ # Add remaining backslashes, if any. -+ if bs_buf: -+ result.extend(bs_buf) -+ -+ if needquote: -+ result.extend(bs_buf) -+ result.append('"') -+ -+ return ''.join(result) -+ -+ -+ # Various tools for executing commands and looking at their output and status. -+ # -+ -+ def getstatusoutput(cmd): -+ """ Return (status, output) of executing cmd in a shell. -+ -+ Execute the string 'cmd' in a shell with 'check_output' and -+ return a 2-tuple (status, output). Universal newlines mode is used, -+ meaning that the result with be decoded to a string. -+ -+ A trailing newline is stripped from the output. -+ The exit status for the command can be interpreted -+ according to the rules for the function 'wait'. Example: -+ -+ >>> import subprocess -+ >>> subprocess.getstatusoutput('ls /bin/ls') -+ (0, '/bin/ls') -+ >>> subprocess.getstatusoutput('cat /bin/junk') -+ (256, 'cat: /bin/junk: No such file or directory') -+ >>> subprocess.getstatusoutput('/bin/junk') -+ (256, 'sh: /bin/junk: not found') -+ """ -+ try: -+ data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) -+ status = 0 -+ except CalledProcessError as ex: -+ data = ex.output -+ status = ex.returncode -+ if data[-1:] == '\n': -+ data = data[:-1] -+ return status, data -+ -+ def getoutput(cmd): -+ """Return output (stdout or stderr) of executing cmd in a shell. -+ -+ Like getstatusoutput(), except the exit status is ignored and the return -+ value is a string containing the command's output. Example: -+ -+ >>> import subprocess -+ >>> subprocess.getoutput('ls /bin/ls') -+ '/bin/ls' -+ """ -+ return getstatusoutput(cmd)[1] - - --class Popen(object): -+ _PLATFORM_DEFAULT_CLOSE_FDS = object() - -- _child_created = False # Set here since __del__ checks it -- -- def __init__(self, args, bufsize=-1, executable=None, -- stdin=None, stdout=None, stderr=None, -- preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, -- shell=False, cwd=None, env=None, universal_newlines=False, -- startupinfo=None, creationflags=0, -- restore_signals=True, start_new_session=False, -- pass_fds=()): -- """Create new Popen instance.""" -- _cleanup() -- # Held while anything is calling waitpid before returncode has been -- # updated to prevent clobbering returncode if wait() or poll() are -- # called from multiple threads at once. After acquiring the lock, -- # code must re-check self.returncode to see if another thread just -- # finished a waitpid() call. -- self._waitpid_lock = threading.Lock() -- -- self._input = None -- self._communication_started = False -- if bufsize is None: -- bufsize = -1 # Restore default -- if not isinstance(bufsize, int): -- raise TypeError("bufsize must be an integer") - -- if _mswindows: -- if preexec_fn is not None: -- raise ValueError("preexec_fn is not supported on Windows " -- "platforms") -- any_stdio_set = (stdin is not None or stdout is not None or -- stderr is not None) -- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: -- if any_stdio_set: -- close_fds = False -- else: -+ class Popen(object): -+ -+ _child_created = False # Set here since __del__ checks it -+ -+ def __init__(self, args, bufsize=-1, executable=None, -+ stdin=None, stdout=None, stderr=None, -+ preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, -+ shell=False, cwd=None, env=None, universal_newlines=False, -+ startupinfo=None, creationflags=0, -+ restore_signals=True, start_new_session=False, -+ pass_fds=()): -+ """Create new Popen instance.""" -+ _cleanup() -+ # Held while anything is calling waitpid before returncode has been -+ # updated to prevent clobbering returncode if wait() or poll() are -+ # called from multiple threads at once. After acquiring the lock, -+ # code must re-check self.returncode to see if another thread just -+ # finished a waitpid() call. -+ self._waitpid_lock = threading.Lock() -+ -+ self._input = None -+ self._communication_started = False -+ if bufsize is None: -+ bufsize = -1 # Restore default -+ if not isinstance(bufsize, int): -+ raise TypeError("bufsize must be an integer") -+ -+ if _mswindows: -+ if preexec_fn is not None: -+ raise ValueError("preexec_fn is not supported on Windows " -+ "platforms") -+ any_stdio_set = (stdin is not None or stdout is not None or -+ stderr is not None) -+ if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: -+ if any_stdio_set: -+ close_fds = False -+ else: -+ close_fds = True -+ elif close_fds and any_stdio_set: -+ raise ValueError( -+ "close_fds is not supported on Windows platforms" -+ " if you redirect stdin/stdout/stderr") -+ else: -+ # POSIX -+ if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: - close_fds = True -- elif close_fds and any_stdio_set: -- raise ValueError( -- "close_fds is not supported on Windows platforms" -- " if you redirect stdin/stdout/stderr") -- else: -- # POSIX -- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: -- close_fds = True -- if pass_fds and not close_fds: -- warnings.warn("pass_fds overriding close_fds.", RuntimeWarning) -- close_fds = True -- if startupinfo is not None: -- raise ValueError("startupinfo is only supported on Windows " -- "platforms") -- if creationflags != 0: -- raise ValueError("creationflags is only supported on Windows " -- "platforms") -- -- self.args = args -- self.stdin = None -- self.stdout = None -- self.stderr = None -- self.pid = None -- self.returncode = None -- self.universal_newlines = universal_newlines -- -- # Input and output objects. The general principle is like -- # this: -- # -- # Parent Child -- # ------ ----- -- # p2cwrite ---stdin---> p2cread -- # c2pread <--stdout--- c2pwrite -- # errread <--stderr--- errwrite -- # -- # On POSIX, the child objects are file descriptors. On -- # Windows, these are Windows file handles. The parent objects -- # are file descriptors on both platforms. The parent objects -- # are -1 when not using PIPEs. The child objects are -1 -- # when not redirecting. -- -- (p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite) = self._get_handles(stdin, stdout, stderr) -- -- # We wrap OS handles *before* launching the child, otherwise a -- # quickly terminating child could make our fds unwrappable -- # (see #8458). -+ if pass_fds and not close_fds: -+ warnings.warn("pass_fds overriding close_fds.", RuntimeWarning) -+ close_fds = True -+ if startupinfo is not None: -+ raise ValueError("startupinfo is only supported on Windows " -+ "platforms") -+ if creationflags != 0: -+ raise ValueError("creationflags is only supported on Windows " -+ "platforms") -+ -+ self.args = args -+ self.stdin = None -+ self.stdout = None -+ self.stderr = None -+ self.pid = None -+ self.returncode = None -+ self.universal_newlines = universal_newlines -+ -+ # Input and output objects. The general principle is like -+ # this: -+ # -+ # Parent Child -+ # ------ ----- -+ # p2cwrite ---stdin---> p2cread -+ # c2pread <--stdout--- c2pwrite -+ # errread <--stderr--- errwrite -+ # -+ # On POSIX, the child objects are file descriptors. On -+ # Windows, these are Windows file handles. The parent objects -+ # are file descriptors on both platforms. The parent objects -+ # are -1 when not using PIPEs. The child objects are -1 -+ # when not redirecting. -+ -+ (p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite) = self._get_handles(stdin, stdout, stderr) -+ -+ # We wrap OS handles *before* launching the child, otherwise a -+ # quickly terminating child could make our fds unwrappable -+ # (see #8458). -+ -+ if _mswindows: -+ if p2cwrite != -1: -+ p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) -+ if c2pread != -1: -+ c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) -+ if errread != -1: -+ errread = msvcrt.open_osfhandle(errread.Detach(), 0) - -- if _mswindows: - if p2cwrite != -1: -- p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) -+ self.stdin = io.open(p2cwrite, 'wb', bufsize) -+ if universal_newlines: -+ self.stdin = io.TextIOWrapper(self.stdin, write_through=True, -+ line_buffering=(bufsize == 1)) - if c2pread != -1: -- c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) -+ self.stdout = io.open(c2pread, 'rb', bufsize) -+ if universal_newlines: -+ self.stdout = io.TextIOWrapper(self.stdout) - if errread != -1: -- errread = msvcrt.open_osfhandle(errread.Detach(), 0) -- -- if p2cwrite != -1: -- self.stdin = io.open(p2cwrite, 'wb', bufsize) -- if universal_newlines: -- self.stdin = io.TextIOWrapper(self.stdin, write_through=True, -- line_buffering=(bufsize == 1)) -- if c2pread != -1: -- self.stdout = io.open(c2pread, 'rb', bufsize) -- if universal_newlines: -- self.stdout = io.TextIOWrapper(self.stdout) -- if errread != -1: -- self.stderr = io.open(errread, 'rb', bufsize) -- if universal_newlines: -- self.stderr = io.TextIOWrapper(self.stderr) -+ self.stderr = io.open(errread, 'rb', bufsize) -+ if universal_newlines: -+ self.stderr = io.TextIOWrapper(self.stderr) - -- self._closed_child_pipe_fds = False -- try: -- self._execute_child(args, executable, preexec_fn, close_fds, -- pass_fds, cwd, env, -- startupinfo, creationflags, shell, -- p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite, -- restore_signals, start_new_session) -- except: -- # Cleanup if the child failed starting. -- for f in filter(None, (self.stdin, self.stdout, self.stderr)): -- try: -- f.close() -- except OSError: -- pass # Ignore EBADF or other errors. -- -- if not self._closed_child_pipe_fds: -- to_close = [] -- if stdin == PIPE: -- to_close.append(p2cread) -- if stdout == PIPE: -- to_close.append(c2pwrite) -- if stderr == PIPE: -- to_close.append(errwrite) -- if hasattr(self, '_devnull'): -- to_close.append(self._devnull) -- for fd in to_close: -+ self._closed_child_pipe_fds = False -+ try: -+ self._execute_child(args, executable, preexec_fn, close_fds, -+ pass_fds, cwd, env, -+ startupinfo, creationflags, shell, -+ p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite, -+ restore_signals, start_new_session) -+ except: -+ # Cleanup if the child failed starting. -+ for f in filter(None, (self.stdin, self.stdout, self.stderr)): - try: -- os.close(fd) -+ f.close() - except OSError: -- pass -- -- raise -+ pass # Ignore EBADF or other errors. - -+ if not self._closed_child_pipe_fds: -+ to_close = [] -+ if stdin == PIPE: -+ to_close.append(p2cread) -+ if stdout == PIPE: -+ to_close.append(c2pwrite) -+ if stderr == PIPE: -+ to_close.append(errwrite) -+ if hasattr(self, '_devnull'): -+ to_close.append(self._devnull) -+ for fd in to_close: -+ try: -+ os.close(fd) -+ except OSError: -+ pass - -- def _translate_newlines(self, data, encoding): -- data = data.decode(encoding) -- return data.replace("\r\n", "\n").replace("\r", "\n") -- -- def __enter__(self): -- return self -- -- def __exit__(self, type, value, traceback): -- if self.stdout: -- self.stdout.close() -- if self.stderr: -- self.stderr.close() -- try: # Flushing a BufferedWriter may raise an error -- if self.stdin: -- self.stdin.close() -- finally: -- # Wait for the process to terminate, to avoid zombies. -- self.wait() -- -- def __del__(self, _maxsize=sys.maxsize): -- if not self._child_created: -- # We didn't get to successfully create a child process. -- return -- # In case the child hasn't been waited on, check if it's done. -- self._internal_poll(_deadstate=_maxsize) -- if self.returncode is None and _active is not None: -- # Child is still running, keep us alive until we can wait on it. -- _active.append(self) -- -- def _get_devnull(self): -- if not hasattr(self, '_devnull'): -- self._devnull = os.open(os.devnull, os.O_RDWR) -- return self._devnull -- -- def _stdin_write(self, input): -- if input: -- try: -- self.stdin.write(input) -- except BrokenPipeError: -- # communicate() must ignore broken pipe error -- pass -- except OSError as e: -- if e.errno == errno.EINVAL and self.poll() is not None: -- # Issue #19612: On Windows, stdin.write() fails with EINVAL -- # if the process already exited before the write -- pass -- else: -- raise -- self.stdin.close() -+ raise - -- def communicate(self, input=None, timeout=None): -- """Interact with process: Send data to stdin. Read data from -- stdout and stderr, until end-of-file is reached. Wait for -- process to terminate. -- -- The optional "input" argument should be data to be sent to the -- child process (if self.universal_newlines is True, this should -- be a string; if it is False, "input" should be bytes), or -- None, if no data should be sent to the child. - -- communicate() returns a tuple (stdout, stderr). These will be -- bytes or, if self.universal_newlines was True, a string. -- """ -+ def _translate_newlines(self, data, encoding): -+ data = data.decode(encoding) -+ return data.replace("\r\n", "\n").replace("\r", "\n") - -- if self._communication_started and input: -- raise ValueError("Cannot send input after starting communication") -+ def __enter__(self): -+ return self - -- # Optimization: If we are not worried about timeouts, we haven't -- # started communicating, and we have one or zero pipes, using select() -- # or threads is unnecessary. -- if (timeout is None and not self._communication_started and -- [self.stdin, self.stdout, self.stderr].count(None) >= 2): -- stdout = None -- stderr = None -- if self.stdin: -- self._stdin_write(input) -- elif self.stdout: -- stdout = self.stdout.read() -+ def __exit__(self, type, value, traceback): -+ if self.stdout: - self.stdout.close() -- elif self.stderr: -- stderr = self.stderr.read() -+ if self.stderr: - self.stderr.close() -- self.wait() -- else: -- if timeout is not None: -- endtime = _time() + timeout -- else: -- endtime = None -- -- try: -- stdout, stderr = self._communicate(input, endtime, timeout) -+ try: # Flushing a BufferedWriter may raise an error -+ if self.stdin: -+ self.stdin.close() - finally: -- self._communication_started = True -+ # Wait for the process to terminate, to avoid zombies. -+ self.wait() - -- sts = self.wait(timeout=self._remaining_time(endtime)) -+ def __del__(self, _maxsize=sys.maxsize): -+ if not self._child_created: -+ # We didn't get to successfully create a child process. -+ return -+ # In case the child hasn't been waited on, check if it's done. -+ self._internal_poll(_deadstate=_maxsize) -+ if self.returncode is None and _active is not None: -+ # Child is still running, keep us alive until we can wait on it. -+ _active.append(self) -+ -+ def _get_devnull(self): -+ if not hasattr(self, '_devnull'): -+ self._devnull = os.open(os.devnull, os.O_RDWR) -+ return self._devnull - -- return (stdout, stderr) -+ def _stdin_write(self, input): -+ if input: -+ try: -+ self.stdin.write(input) -+ except BrokenPipeError: -+ # communicate() must ignore broken pipe error -+ pass -+ except OSError as e: -+ if e.errno == errno.EINVAL and self.poll() is not None: -+ # Issue #19612: On Windows, stdin.write() fails with EINVAL -+ # if the process already exited before the write -+ pass -+ else: -+ raise -+ self.stdin.close() - -+ def communicate(self, input=None, timeout=None): -+ """Interact with process: Send data to stdin. Read data from -+ stdout and stderr, until end-of-file is reached. Wait for -+ process to terminate. -+ -+ The optional "input" argument should be data to be sent to the -+ child process (if self.universal_newlines is True, this should -+ be a string; if it is False, "input" should be bytes), or -+ None, if no data should be sent to the child. - -- def poll(self): -- return self._internal_poll() -+ communicate() returns a tuple (stdout, stderr). These will be -+ bytes or, if self.universal_newlines was True, a string. -+ """ - -+ if self._communication_started and input: -+ raise ValueError("Cannot send input after starting communication") - -- def _remaining_time(self, endtime): -- """Convenience for _communicate when computing timeouts.""" -- if endtime is None: -- return None -- else: -- return endtime - _time() -+ # Optimization: If we are not worried about timeouts, we haven't -+ # started communicating, and we have one or zero pipes, using select() -+ # or threads is unnecessary. -+ if (timeout is None and not self._communication_started and -+ [self.stdin, self.stdout, self.stderr].count(None) >= 2): -+ stdout = None -+ stderr = None -+ if self.stdin: -+ self._stdin_write(input) -+ elif self.stdout: -+ stdout = self.stdout.read() -+ self.stdout.close() -+ elif self.stderr: -+ stderr = self.stderr.read() -+ self.stderr.close() -+ self.wait() -+ else: -+ if timeout is not None: -+ endtime = _time() + timeout -+ else: -+ endtime = None - -+ try: -+ stdout, stderr = self._communicate(input, endtime, timeout) -+ finally: -+ self._communication_started = True - -- def _check_timeout(self, endtime, orig_timeout): -- """Convenience for checking if a timeout has expired.""" -- if endtime is None: -- return -- if _time() > endtime: -- raise TimeoutExpired(self.args, orig_timeout) -+ sts = self.wait(timeout=self._remaining_time(endtime)) - -+ return (stdout, stderr) - -- if _mswindows: -- # -- # Windows methods -- # -- def _get_handles(self, stdin, stdout, stderr): -- """Construct and return tuple with IO objects: -- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite -- """ -- if stdin is None and stdout is None and stderr is None: -- return (-1, -1, -1, -1, -1, -1) - -- p2cread, p2cwrite = -1, -1 -- c2pread, c2pwrite = -1, -1 -- errread, errwrite = -1, -1 -- -- if stdin is None: -- p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE) -- if p2cread is None: -- p2cread, _ = _winapi.CreatePipe(None, 0) -- p2cread = Handle(p2cread) -- _winapi.CloseHandle(_) -- elif stdin == PIPE: -- p2cread, p2cwrite = _winapi.CreatePipe(None, 0) -- p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite) -- elif stdin == DEVNULL: -- p2cread = msvcrt.get_osfhandle(self._get_devnull()) -- elif isinstance(stdin, int): -- p2cread = msvcrt.get_osfhandle(stdin) -- else: -- # Assuming file-like object -- p2cread = msvcrt.get_osfhandle(stdin.fileno()) -- p2cread = self._make_inheritable(p2cread) -- -- if stdout is None: -- c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE) -- if c2pwrite is None: -- _, c2pwrite = _winapi.CreatePipe(None, 0) -- c2pwrite = Handle(c2pwrite) -- _winapi.CloseHandle(_) -- elif stdout == PIPE: -- c2pread, c2pwrite = _winapi.CreatePipe(None, 0) -- c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite) -- elif stdout == DEVNULL: -- c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) -- elif isinstance(stdout, int): -- c2pwrite = msvcrt.get_osfhandle(stdout) -- else: -- # Assuming file-like object -- c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) -- c2pwrite = self._make_inheritable(c2pwrite) -- -- if stderr is None: -- errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE) -- if errwrite is None: -- _, errwrite = _winapi.CreatePipe(None, 0) -- errwrite = Handle(errwrite) -- _winapi.CloseHandle(_) -- elif stderr == PIPE: -- errread, errwrite = _winapi.CreatePipe(None, 0) -- errread, errwrite = Handle(errread), Handle(errwrite) -- elif stderr == STDOUT: -- errwrite = c2pwrite -- elif stderr == DEVNULL: -- errwrite = msvcrt.get_osfhandle(self._get_devnull()) -- elif isinstance(stderr, int): -- errwrite = msvcrt.get_osfhandle(stderr) -- else: -- # Assuming file-like object -- errwrite = msvcrt.get_osfhandle(stderr.fileno()) -- errwrite = self._make_inheritable(errwrite) -- -- return (p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite) -- -- -- def _make_inheritable(self, handle): -- """Return a duplicate of handle, which is inheritable""" -- h = _winapi.DuplicateHandle( -- _winapi.GetCurrentProcess(), handle, -- _winapi.GetCurrentProcess(), 0, 1, -- _winapi.DUPLICATE_SAME_ACCESS) -- return Handle(h) -- -- -- def _execute_child(self, args, executable, preexec_fn, close_fds, -- pass_fds, cwd, env, -- startupinfo, creationflags, shell, -- p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite, -- unused_restore_signals, unused_start_new_session): -- """Execute program (MS Windows version)""" -- -- assert not pass_fds, "pass_fds not supported on Windows." -- -- if not isinstance(args, str): -- args = list2cmdline(args) -- -- # Process startup details -- if startupinfo is None: -- startupinfo = STARTUPINFO() -- if -1 not in (p2cread, c2pwrite, errwrite): -- startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES -- startupinfo.hStdInput = p2cread -- startupinfo.hStdOutput = c2pwrite -- startupinfo.hStdError = errwrite -- -- if shell: -- startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW -- startupinfo.wShowWindow = _winapi.SW_HIDE -- comspec = os.environ.get("COMSPEC", "cmd.exe") -- args = '{} /c "{}"'.format (comspec, args) -+ def poll(self): -+ return self._internal_poll() - -- # Start the process -- try: -- hp, ht, pid, tid = _winapi.CreateProcess(executable, args, -- # no special security -- None, None, -- int(not close_fds), -- creationflags, -- env, -- cwd, -- startupinfo) -- finally: -- # Child is launched. Close the parent's copy of those pipe -- # handles that only the child should have open. You need -- # to make sure that no handles to the write end of the -- # output pipe are maintained in this process or else the -- # pipe will not close when the child process exits and the -- # ReadFile will hang. -- if p2cread != -1: -- p2cread.Close() -- if c2pwrite != -1: -- c2pwrite.Close() -- if errwrite != -1: -- errwrite.Close() -- if hasattr(self, '_devnull'): -- os.close(self._devnull) -- -- # Retain the process handle, but close the thread handle -- self._child_created = True -- self._handle = Handle(hp) -- self.pid = pid -- _winapi.CloseHandle(ht) -- -- def _internal_poll(self, _deadstate=None, -- _WaitForSingleObject=_winapi.WaitForSingleObject, -- _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0, -- _GetExitCodeProcess=_winapi.GetExitCodeProcess): -- """Check if child process has terminated. Returns returncode -- attribute. - -- This method is called by __del__, so it can only refer to objects -- in its local scope. -+ def _remaining_time(self, endtime): -+ """Convenience for _communicate when computing timeouts.""" -+ if endtime is None: -+ return None -+ else: -+ return endtime - _time() - -- """ -- if self.returncode is None: -- if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: -- self.returncode = _GetExitCodeProcess(self._handle) -- return self.returncode - -+ def _check_timeout(self, endtime, orig_timeout): -+ """Convenience for checking if a timeout has expired.""" -+ if endtime is None: -+ return -+ if _time() > endtime: -+ raise TimeoutExpired(self.args, orig_timeout) - -- def wait(self, timeout=None, endtime=None): -- """Wait for child process to terminate. Returns returncode -- attribute.""" -- if endtime is not None: -- timeout = self._remaining_time(endtime) -- if timeout is None: -- timeout_millis = _winapi.INFINITE -- else: -- timeout_millis = int(timeout * 1000) -- if self.returncode is None: -- result = _winapi.WaitForSingleObject(self._handle, -- timeout_millis) -- if result == _winapi.WAIT_TIMEOUT: -- raise TimeoutExpired(self.args, timeout) -- self.returncode = _winapi.GetExitCodeProcess(self._handle) -- return self.returncode -- -- -- def _readerthread(self, fh, buffer): -- buffer.append(fh.read()) -- fh.close() -- -- -- def _communicate(self, input, endtime, orig_timeout): -- # Start reader threads feeding into a list hanging off of this -- # object, unless they've already been started. -- if self.stdout and not hasattr(self, "_stdout_buff"): -- self._stdout_buff = [] -- self.stdout_thread = \ -- threading.Thread(target=self._readerthread, -- args=(self.stdout, self._stdout_buff)) -- self.stdout_thread.daemon = True -- self.stdout_thread.start() -- if self.stderr and not hasattr(self, "_stderr_buff"): -- self._stderr_buff = [] -- self.stderr_thread = \ -- threading.Thread(target=self._readerthread, -- args=(self.stderr, self._stderr_buff)) -- self.stderr_thread.daemon = True -- self.stderr_thread.start() -- -- if self.stdin: -- self._stdin_write(input) -- -- # Wait for the reader threads, or time out. If we time out, the -- # threads remain reading and the fds left open in case the user -- # calls communicate again. -- if self.stdout is not None: -- self.stdout_thread.join(self._remaining_time(endtime)) -- if self.stdout_thread.is_alive(): -- raise TimeoutExpired(self.args, orig_timeout) -- if self.stderr is not None: -- self.stderr_thread.join(self._remaining_time(endtime)) -- if self.stderr_thread.is_alive(): -- raise TimeoutExpired(self.args, orig_timeout) -- -- # Collect the output from and close both pipes, now that we know -- # both have been read successfully. -- stdout = None -- stderr = None -- if self.stdout: -- stdout = self._stdout_buff -- self.stdout.close() -- if self.stderr: -- stderr = self._stderr_buff -- self.stderr.close() - -- # All data exchanged. Translate lists into strings. -- if stdout is not None: -- stdout = stdout[0] -- if stderr is not None: -- stderr = stderr[0] -+ if _mswindows: -+ # -+ # Windows methods -+ # -+ def _get_handles(self, stdin, stdout, stderr): -+ """Construct and return tuple with IO objects: -+ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite -+ """ -+ if stdin is None and stdout is None and stderr is None: -+ return (-1, -1, -1, -1, -1, -1) -+ -+ p2cread, p2cwrite = -1, -1 -+ c2pread, c2pwrite = -1, -1 -+ errread, errwrite = -1, -1 -+ -+ if stdin is None: -+ p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE) -+ if p2cread is None: -+ p2cread, _ = _winapi.CreatePipe(None, 0) -+ p2cread = Handle(p2cread) -+ _winapi.CloseHandle(_) -+ elif stdin == PIPE: -+ p2cread, p2cwrite = _winapi.CreatePipe(None, 0) -+ p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite) -+ elif stdin == DEVNULL: -+ p2cread = msvcrt.get_osfhandle(self._get_devnull()) -+ elif isinstance(stdin, int): -+ p2cread = msvcrt.get_osfhandle(stdin) -+ else: -+ # Assuming file-like object -+ p2cread = msvcrt.get_osfhandle(stdin.fileno()) -+ p2cread = self._make_inheritable(p2cread) -+ -+ if stdout is None: -+ c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE) -+ if c2pwrite is None: -+ _, c2pwrite = _winapi.CreatePipe(None, 0) -+ c2pwrite = Handle(c2pwrite) -+ _winapi.CloseHandle(_) -+ elif stdout == PIPE: -+ c2pread, c2pwrite = _winapi.CreatePipe(None, 0) -+ c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite) -+ elif stdout == DEVNULL: -+ c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) -+ elif isinstance(stdout, int): -+ c2pwrite = msvcrt.get_osfhandle(stdout) -+ else: -+ # Assuming file-like object -+ c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) -+ c2pwrite = self._make_inheritable(c2pwrite) -+ -+ if stderr is None: -+ errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE) -+ if errwrite is None: -+ _, errwrite = _winapi.CreatePipe(None, 0) -+ errwrite = Handle(errwrite) -+ _winapi.CloseHandle(_) -+ elif stderr == PIPE: -+ errread, errwrite = _winapi.CreatePipe(None, 0) -+ errread, errwrite = Handle(errread), Handle(errwrite) -+ elif stderr == STDOUT: -+ errwrite = c2pwrite -+ elif stderr == DEVNULL: -+ errwrite = msvcrt.get_osfhandle(self._get_devnull()) -+ elif isinstance(stderr, int): -+ errwrite = msvcrt.get_osfhandle(stderr) -+ else: -+ # Assuming file-like object -+ errwrite = msvcrt.get_osfhandle(stderr.fileno()) -+ errwrite = self._make_inheritable(errwrite) -+ -+ return (p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite) -+ -+ -+ def _make_inheritable(self, handle): -+ """Return a duplicate of handle, which is inheritable""" -+ h = _winapi.DuplicateHandle( -+ _winapi.GetCurrentProcess(), handle, -+ _winapi.GetCurrentProcess(), 0, 1, -+ _winapi.DUPLICATE_SAME_ACCESS) -+ return Handle(h) -+ -+ -+ def _execute_child(self, args, executable, preexec_fn, close_fds, -+ pass_fds, cwd, env, -+ startupinfo, creationflags, shell, -+ p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite, -+ unused_restore_signals, unused_start_new_session): -+ """Execute program (MS Windows version)""" -+ -+ assert not pass_fds, "pass_fds not supported on Windows." -+ -+ if not isinstance(args, str): -+ args = list2cmdline(args) -+ -+ # Process startup details -+ if startupinfo is None: -+ startupinfo = STARTUPINFO() -+ if -1 not in (p2cread, c2pwrite, errwrite): -+ startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES -+ startupinfo.hStdInput = p2cread -+ startupinfo.hStdOutput = c2pwrite -+ startupinfo.hStdError = errwrite -+ -+ if shell: -+ startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW -+ startupinfo.wShowWindow = _winapi.SW_HIDE -+ comspec = os.environ.get("COMSPEC", "cmd.exe") -+ args = '{} /c "{}"'.format (comspec, args) - -- return (stdout, stderr) -+ # Start the process -+ try: -+ hp, ht, pid, tid = _winapi.CreateProcess(executable, args, -+ # no special security -+ None, None, -+ int(not close_fds), -+ creationflags, -+ env, -+ cwd, -+ startupinfo) -+ finally: -+ # Child is launched. Close the parent's copy of those pipe -+ # handles that only the child should have open. You need -+ # to make sure that no handles to the write end of the -+ # output pipe are maintained in this process or else the -+ # pipe will not close when the child process exits and the -+ # ReadFile will hang. -+ if p2cread != -1: -+ p2cread.Close() -+ if c2pwrite != -1: -+ c2pwrite.Close() -+ if errwrite != -1: -+ errwrite.Close() -+ if hasattr(self, '_devnull'): -+ os.close(self._devnull) -+ -+ # Retain the process handle, but close the thread handle -+ self._child_created = True -+ self._handle = Handle(hp) -+ self.pid = pid -+ _winapi.CloseHandle(ht) -+ -+ def _internal_poll(self, _deadstate=None, -+ _WaitForSingleObject=_winapi.WaitForSingleObject, -+ _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0, -+ _GetExitCodeProcess=_winapi.GetExitCodeProcess): -+ """Check if child process has terminated. Returns returncode -+ attribute. -+ -+ This method is called by __del__, so it can only refer to objects -+ in its local scope. -+ -+ """ -+ if self.returncode is None: -+ if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: -+ self.returncode = _GetExitCodeProcess(self._handle) -+ return self.returncode - -- def send_signal(self, sig): -- """Send a signal to the process.""" -- # Don't signal a process that we know has already died. -- if self.returncode is not None: -- return -- if sig == signal.SIGTERM: -- self.terminate() -- elif sig == signal.CTRL_C_EVENT: -- os.kill(self.pid, signal.CTRL_C_EVENT) -- elif sig == signal.CTRL_BREAK_EVENT: -- os.kill(self.pid, signal.CTRL_BREAK_EVENT) -- else: -- raise ValueError("Unsupported signal: {}".format(sig)) - -- def terminate(self): -- """Terminates the process.""" -- # Don't terminate a process that we know has already died. -- if self.returncode is not None: -- return -- try: -- _winapi.TerminateProcess(self._handle, 1) -- except PermissionError: -- # ERROR_ACCESS_DENIED (winerror 5) is received when the -- # process already died. -- rc = _winapi.GetExitCodeProcess(self._handle) -- if rc == _winapi.STILL_ACTIVE: -- raise -- self.returncode = rc -+ def wait(self, timeout=None, endtime=None): -+ """Wait for child process to terminate. Returns returncode -+ attribute.""" -+ if endtime is not None: -+ timeout = self._remaining_time(endtime) -+ if timeout is None: -+ timeout_millis = _winapi.INFINITE -+ else: -+ timeout_millis = int(timeout * 1000) -+ if self.returncode is None: -+ result = _winapi.WaitForSingleObject(self._handle, -+ timeout_millis) -+ if result == _winapi.WAIT_TIMEOUT: -+ raise TimeoutExpired(self.args, timeout) -+ self.returncode = _winapi.GetExitCodeProcess(self._handle) -+ return self.returncode - -- kill = terminate - -- else: -- # -- # POSIX methods -- # -- def _get_handles(self, stdin, stdout, stderr): -- """Construct and return tuple with IO objects: -- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite -- """ -- p2cread, p2cwrite = -1, -1 -- c2pread, c2pwrite = -1, -1 -- errread, errwrite = -1, -1 -- -- if stdin is None: -- pass -- elif stdin == PIPE: -- p2cread, p2cwrite = os.pipe() -- elif stdin == DEVNULL: -- p2cread = self._get_devnull() -- elif isinstance(stdin, int): -- p2cread = stdin -- else: -- # Assuming file-like object -- p2cread = stdin.fileno() -+ def _readerthread(self, fh, buffer): -+ buffer.append(fh.read()) -+ fh.close() -+ -+ -+ def _communicate(self, input, endtime, orig_timeout): -+ # Start reader threads feeding into a list hanging off of this -+ # object, unless they've already been started. -+ if self.stdout and not hasattr(self, "_stdout_buff"): -+ self._stdout_buff = [] -+ self.stdout_thread = \ -+ threading.Thread(target=self._readerthread, -+ args=(self.stdout, self._stdout_buff)) -+ self.stdout_thread.daemon = True -+ self.stdout_thread.start() -+ if self.stderr and not hasattr(self, "_stderr_buff"): -+ self._stderr_buff = [] -+ self.stderr_thread = \ -+ threading.Thread(target=self._readerthread, -+ args=(self.stderr, self._stderr_buff)) -+ self.stderr_thread.daemon = True -+ self.stderr_thread.start() -+ -+ if self.stdin: -+ self._stdin_write(input) -+ -+ # Wait for the reader threads, or time out. If we time out, the -+ # threads remain reading and the fds left open in case the user -+ # calls communicate again. -+ if self.stdout is not None: -+ self.stdout_thread.join(self._remaining_time(endtime)) -+ if self.stdout_thread.is_alive(): -+ raise TimeoutExpired(self.args, orig_timeout) -+ if self.stderr is not None: -+ self.stderr_thread.join(self._remaining_time(endtime)) -+ if self.stderr_thread.is_alive(): -+ raise TimeoutExpired(self.args, orig_timeout) - -- if stdout is None: -- pass -- elif stdout == PIPE: -- c2pread, c2pwrite = os.pipe() -- elif stdout == DEVNULL: -- c2pwrite = self._get_devnull() -- elif isinstance(stdout, int): -- c2pwrite = stdout -- else: -- # Assuming file-like object -- c2pwrite = stdout.fileno() -+ # Collect the output from and close both pipes, now that we know -+ # both have been read successfully. -+ stdout = None -+ stderr = None -+ if self.stdout: -+ stdout = self._stdout_buff -+ self.stdout.close() -+ if self.stderr: -+ stderr = self._stderr_buff -+ self.stderr.close() - -- if stderr is None: -- pass -- elif stderr == PIPE: -- errread, errwrite = os.pipe() -- elif stderr == STDOUT: -- errwrite = c2pwrite -- elif stderr == DEVNULL: -- errwrite = self._get_devnull() -- elif isinstance(stderr, int): -- errwrite = stderr -- else: -- # Assuming file-like object -- errwrite = stderr.fileno() -+ # All data exchanged. Translate lists into strings. -+ if stdout is not None: -+ stdout = stdout[0] -+ if stderr is not None: -+ stderr = stderr[0] - -- return (p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite) -- -- -- def _execute_child(self, args, executable, preexec_fn, close_fds, -- pass_fds, cwd, env, -- startupinfo, creationflags, shell, -- p2cread, p2cwrite, -- c2pread, c2pwrite, -- errread, errwrite, -- restore_signals, start_new_session): -- """Execute program (POSIX version)""" -+ return (stdout, stderr) - -- if isinstance(args, (str, bytes)): -- args = [args] -- else: -- args = list(args) -+ def send_signal(self, sig): -+ """Send a signal to the process.""" -+ # Don't signal a process that we know has already died. -+ if self.returncode is not None: -+ return -+ if sig == signal.SIGTERM: -+ self.terminate() -+ elif sig == signal.CTRL_C_EVENT: -+ os.kill(self.pid, signal.CTRL_C_EVENT) -+ elif sig == signal.CTRL_BREAK_EVENT: -+ os.kill(self.pid, signal.CTRL_BREAK_EVENT) -+ else: -+ raise ValueError("Unsupported signal: {}".format(sig)) - -- if shell: -- args = ["/bin/sh", "-c"] + args -- if executable: -- args[0] = executable -- -- if executable is None: -- executable = args[0] -- orig_executable = executable -- -- # For transferring possible exec failure from child to parent. -- # Data format: "exception name:hex errno:description" -- # Pickle is not used; it is complex and involves memory allocation. -- errpipe_read, errpipe_write = os.pipe() -- # errpipe_write must not be in the standard io 0, 1, or 2 fd range. -- low_fds_to_close = [] -- while errpipe_write < 3: -- low_fds_to_close.append(errpipe_write) -- errpipe_write = os.dup(errpipe_write) -- for low_fd in low_fds_to_close: -- os.close(low_fd) -- try: -+ def terminate(self): -+ """Terminates the process.""" -+ # Don't terminate a process that we know has already died. -+ if self.returncode is not None: -+ return - try: -- # We must avoid complex work that could involve -- # malloc or free in the child process to avoid -- # potential deadlocks, thus we do all this here. -- # and pass it to fork_exec() -- -- if env is not None: -- env_list = [os.fsencode(k) + b'=' + os.fsencode(v) -- for k, v in env.items()] -- else: -- env_list = None # Use execv instead of execve. -- executable = os.fsencode(executable) -- if os.path.dirname(executable): -- executable_list = (executable,) -- else: -- # This matches the behavior of os._execvpe(). -- executable_list = tuple( -- os.path.join(os.fsencode(dir), executable) -- for dir in os.get_exec_path(env)) -- fds_to_keep = set(pass_fds) -- fds_to_keep.add(errpipe_write) -- self.pid = _posixsubprocess.fork_exec( -- args, executable_list, -- close_fds, sorted(fds_to_keep), cwd, env_list, -- p2cread, p2cwrite, c2pread, c2pwrite, -- errread, errwrite, -- errpipe_read, errpipe_write, -- restore_signals, start_new_session, preexec_fn) -- self._child_created = True -- finally: -- # be sure the FD is closed no matter what -- os.close(errpipe_write) -+ _winapi.TerminateProcess(self._handle, 1) -+ except PermissionError: -+ # ERROR_ACCESS_DENIED (winerror 5) is received when the -+ # process already died. -+ rc = _winapi.GetExitCodeProcess(self._handle) -+ if rc == _winapi.STILL_ACTIVE: -+ raise -+ self.returncode = rc - -- # self._devnull is not always defined. -- devnull_fd = getattr(self, '_devnull', None) -- if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: -- os.close(p2cread) -- if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: -- os.close(c2pwrite) -- if errwrite != -1 and errread != -1 and errwrite != devnull_fd: -- os.close(errwrite) -- if devnull_fd is not None: -- os.close(devnull_fd) -- # Prevent a double close of these fds from __init__ on error. -- self._closed_child_pipe_fds = True - -- # Wait for exec to fail or succeed; possibly raising an -- # exception (limited in size) -- errpipe_data = bytearray() -- while True: -- part = os.read(errpipe_read, 50000) -- errpipe_data += part -- if not part or len(errpipe_data) > 50000: -- break -- finally: -- # be sure the FD is closed no matter what -- os.close(errpipe_read) -+ kill = terminate - -- if errpipe_data: -- try: -- os.waitpid(self.pid, 0) -- except ChildProcessError: -+ else: -+ # -+ # POSIX methods -+ # -+ def _get_handles(self, stdin, stdout, stderr): -+ """Construct and return tuple with IO objects: -+ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite -+ """ -+ p2cread, p2cwrite = -1, -1 -+ c2pread, c2pwrite = -1, -1 -+ errread, errwrite = -1, -1 -+ -+ if stdin is None: - pass -- try: -- exception_name, hex_errno, err_msg = ( -- errpipe_data.split(b':', 2)) -- except ValueError: -- exception_name = b'SubprocessError' -- hex_errno = b'0' -- err_msg = (b'Bad exception data from child: ' + -- repr(errpipe_data)) -- child_exception_type = getattr( -- builtins, exception_name.decode('ascii'), -- SubprocessError) -- err_msg = err_msg.decode(errors="surrogatepass") -- if issubclass(child_exception_type, OSError) and hex_errno: -- errno_num = int(hex_errno, 16) -- child_exec_never_called = (err_msg == "noexec") -- if child_exec_never_called: -- err_msg = "" -- if errno_num != 0: -- err_msg = os.strerror(errno_num) -- if errno_num == errno.ENOENT: -- if child_exec_never_called: -- # The error must be from chdir(cwd). -- err_msg += ': ' + repr(cwd) -- else: -- err_msg += ': ' + repr(orig_executable) -- raise child_exception_type(errno_num, err_msg) -- raise child_exception_type(err_msg) -- -- -- def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, -- _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, -- _WEXITSTATUS=os.WEXITSTATUS): -- """All callers to this function MUST hold self._waitpid_lock.""" -- # This method is called (indirectly) by __del__, so it cannot -- # refer to anything outside of its local scope. -- if _WIFSIGNALED(sts): -- self.returncode = -_WTERMSIG(sts) -- elif _WIFEXITED(sts): -- self.returncode = _WEXITSTATUS(sts) -- else: -- # Should never happen -- raise SubprocessError("Unknown child exit status!") -+ elif stdin == PIPE: -+ p2cread, p2cwrite = os.pipe() -+ elif stdin == DEVNULL: -+ p2cread = self._get_devnull() -+ elif isinstance(stdin, int): -+ p2cread = stdin -+ else: -+ # Assuming file-like object -+ p2cread = stdin.fileno() - -+ if stdout is None: -+ pass -+ elif stdout == PIPE: -+ c2pread, c2pwrite = os.pipe() -+ elif stdout == DEVNULL: -+ c2pwrite = self._get_devnull() -+ elif isinstance(stdout, int): -+ c2pwrite = stdout -+ else: -+ # Assuming file-like object -+ c2pwrite = stdout.fileno() -+ -+ if stderr is None: -+ pass -+ elif stderr == PIPE: -+ errread, errwrite = os.pipe() -+ elif stderr == STDOUT: -+ errwrite = c2pwrite -+ elif stderr == DEVNULL: -+ errwrite = self._get_devnull() -+ elif isinstance(stderr, int): -+ errwrite = stderr -+ else: -+ # Assuming file-like object -+ errwrite = stderr.fileno() + # XXX This function is only used by multiprocessing and the test suite, + # but it's here so that it can be imported when Python is compiled without + # threads. +@@ -842,6 +847,9 @@ + restore_signals=True, start_new_session=False, + pass_fds=()): + """Create new Popen instance.""" ++ if not supported: ++ raise RuntimeError("subprocesses are not supported on this platform.") ++ + _cleanup() + # Held while anything is calling waitpid before returncode has been + # updated to prevent clobbering returncode if wait() or poll() are +@@ -1560,7 +1568,7 @@ + raise SubprocessError("Unknown child exit status!") + - def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, -- _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): -- """Check if child process has terminated. Returns returncode -- attribute. -+ return (p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite) -+ -+ -+ def _execute_child(self, args, executable, preexec_fn, close_fds, -+ pass_fds, cwd, env, -+ startupinfo, creationflags, shell, -+ p2cread, p2cwrite, -+ c2pread, c2pwrite, -+ errread, errwrite, -+ restore_signals, start_new_session): -+ """Execute program (POSIX version)""" - -- This method is called by __del__, so it cannot reference anything -- outside of the local scope (nor can any methods it calls). -+ if isinstance(args, (str, bytes)): -+ args = [args] -+ else: -+ args = list(args) - -- """ -- if self.returncode is None: -- if not self._waitpid_lock.acquire(False): -- # Something else is busy calling waitpid. Don't allow two -- # at once. We know nothing yet. -- return None -+ if shell: -+ args = ["/bin/sh", "-c"] + args -+ if executable: -+ args[0] = executable -+ -+ if executable is None: -+ executable = args[0] -+ orig_executable = executable -+ -+ # For transferring possible exec failure from child to parent. -+ # Data format: "exception name:hex errno:description" -+ # Pickle is not used; it is complex and involves memory allocation. -+ errpipe_read, errpipe_write = os.pipe() -+ # errpipe_write must not be in the standard io 0, 1, or 2 fd range. -+ low_fds_to_close = [] -+ while errpipe_write < 3: -+ low_fds_to_close.append(errpipe_write) -+ errpipe_write = os.dup(errpipe_write) -+ for low_fd in low_fds_to_close: -+ os.close(low_fd) - try: -- if self.returncode is not None: -- return self.returncode # Another thread waited. -- pid, sts = _waitpid(self.pid, _WNOHANG) -- if pid == self.pid: -- self._handle_exitstatus(sts) -- except OSError as e: -- if _deadstate is not None: -- self.returncode = _deadstate -- elif e.errno == _ECHILD: -- # This happens if SIGCLD is set to be ignored or -- # waiting for child processes has otherwise been -- # disabled for our process. This child is dead, we -- # can't get the status. -- # http://bugs.python.org/issue15756 -- self.returncode = 0 -+ try: -+ # We must avoid complex work that could involve -+ # malloc or free in the child process to avoid -+ # potential deadlocks, thus we do all this here. -+ # and pass it to fork_exec() -+ -+ if env is not None: -+ env_list = [os.fsencode(k) + b'=' + os.fsencode(v) -+ for k, v in env.items()] -+ else: -+ env_list = None # Use execv instead of execve. -+ executable = os.fsencode(executable) -+ if os.path.dirname(executable): -+ executable_list = (executable,) -+ else: -+ # This matches the behavior of os._execvpe(). -+ executable_list = tuple( -+ os.path.join(os.fsencode(dir), executable) -+ for dir in os.get_exec_path(env)) -+ fds_to_keep = set(pass_fds) -+ fds_to_keep.add(errpipe_write) -+ self.pid = _posixsubprocess.fork_exec( -+ args, executable_list, -+ close_fds, sorted(fds_to_keep), cwd, env_list, -+ p2cread, p2cwrite, c2pread, c2pwrite, -+ errread, errwrite, -+ errpipe_read, errpipe_write, -+ restore_signals, start_new_session, preexec_fn) -+ self._child_created = True -+ finally: -+ # be sure the FD is closed no matter what -+ os.close(errpipe_write) -+ -+ # self._devnull is not always defined. -+ devnull_fd = getattr(self, '_devnull', None) -+ if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: -+ os.close(p2cread) -+ if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: -+ os.close(c2pwrite) -+ if errwrite != -1 and errread != -1 and errwrite != devnull_fd: -+ os.close(errwrite) -+ if devnull_fd is not None: -+ os.close(devnull_fd) -+ # Prevent a double close of these fds from __init__ on error. -+ self._closed_child_pipe_fds = True -+ -+ # Wait for exec to fail or succeed; possibly raising an -+ # exception (limited in size) -+ errpipe_data = bytearray() -+ while True: -+ part = os.read(errpipe_read, 50000) -+ errpipe_data += part -+ if not part or len(errpipe_data) > 50000: -+ break - finally: -- self._waitpid_lock.release() -- return self.returncode -- -+ # be sure the FD is closed no matter what -+ os.close(errpipe_read) - -- def _try_wait(self, wait_flags): -- """All callers to this function MUST hold self._waitpid_lock.""" -- try: -- (pid, sts) = os.waitpid(self.pid, wait_flags) -- except ChildProcessError: -- # This happens if SIGCLD is set to be ignored or waiting -- # for child processes has otherwise been disabled for our -- # process. This child is dead, we can't get the status. -- pid = self.pid -- sts = 0 -- return (pid, sts) -+ if errpipe_data: -+ try: -+ os.waitpid(self.pid, 0) -+ except ChildProcessError: -+ pass -+ try: -+ exception_name, hex_errno, err_msg = ( -+ errpipe_data.split(b':', 2)) -+ except ValueError: -+ exception_name = b'SubprocessError' -+ hex_errno = b'0' -+ err_msg = (b'Bad exception data from child: ' + -+ repr(errpipe_data)) -+ child_exception_type = getattr( -+ builtins, exception_name.decode('ascii'), -+ SubprocessError) -+ err_msg = err_msg.decode(errors="surrogatepass") -+ if issubclass(child_exception_type, OSError) and hex_errno: -+ errno_num = int(hex_errno, 16) -+ child_exec_never_called = (err_msg == "noexec") -+ if child_exec_never_called: -+ err_msg = "" -+ if errno_num != 0: -+ err_msg = os.strerror(errno_num) -+ if errno_num == errno.ENOENT: -+ if child_exec_never_called: -+ # The error must be from chdir(cwd). -+ err_msg += ': ' + repr(cwd) -+ else: -+ err_msg += ': ' + repr(orig_executable) -+ raise child_exception_type(errno_num, err_msg) -+ raise child_exception_type(err_msg) -+ -+ -+ def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, -+ _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, -+ _WEXITSTATUS=os.WEXITSTATUS): -+ """All callers to this function MUST hold self._waitpid_lock.""" -+ # This method is called (indirectly) by __del__, so it cannot -+ # refer to anything outside of its local scope. -+ if _WIFSIGNALED(sts): -+ self.returncode = -_WTERMSIG(sts) -+ elif _WIFEXITED(sts): -+ self.returncode = _WEXITSTATUS(sts) -+ else: -+ # Should never happen -+ raise SubprocessError("Unknown child exit status!") - - -- def wait(self, timeout=None, endtime=None): -- """Wait for child process to terminate. Returns returncode -- attribute.""" -- if self.returncode is not None: -+ def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, -+ _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): -+ """Check if child process has terminated. Returns returncode -+ attribute. -+ -+ This method is called by __del__, so it cannot reference anything -+ outside of the local scope (nor can any methods it calls). -+ -+ """ -+ if self.returncode is None: -+ if not self._waitpid_lock.acquire(False): -+ # Something else is busy calling waitpid. Don't allow two -+ # at once. We know nothing yet. -+ return None -+ try: -+ if self.returncode is not None: -+ return self.returncode # Another thread waited. -+ pid, sts = _waitpid(self.pid, _WNOHANG) -+ if pid == self.pid: -+ self._handle_exitstatus(sts) -+ except OSError as e: -+ if _deadstate is not None: -+ self.returncode = _deadstate -+ elif e.errno == _ECHILD: -+ # This happens if SIGCLD is set to be ignored or -+ # waiting for child processes has otherwise been -+ # disabled for our process. This child is dead, we -+ # can't get the status. -+ # http://bugs.python.org/issue15756 -+ self.returncode = 0 -+ finally: -+ self._waitpid_lock.release() - return self.returncode - -- # endtime is preferred to timeout. timeout is only used for -- # printing. -- if endtime is not None or timeout is not None: -- if endtime is None: -- endtime = _time() + timeout -- elif timeout is None: -- timeout = self._remaining_time(endtime) - -- if endtime is not None: -- # Enter a busy loop if we have a timeout. This busy loop was -- # cribbed from Lib/threading.py in Thread.wait() at r71065. -- delay = 0.0005 # 500 us -> initial delay of 1 ms -- while True: -- if self._waitpid_lock.acquire(False): -- try: -+ def _try_wait(self, wait_flags): -+ """All callers to this function MUST hold self._waitpid_lock.""" -+ try: -+ (pid, sts) = os.waitpid(self.pid, wait_flags) -+ except ChildProcessError: -+ # This happens if SIGCLD is set to be ignored or waiting -+ # for child processes has otherwise been disabled for our -+ # process. This child is dead, we can't get the status. -+ pid = self.pid -+ sts = 0 -+ return (pid, sts) -+ -+ -+ def wait(self, timeout=None, endtime=None): -+ """Wait for child process to terminate. Returns returncode -+ attribute.""" -+ if self.returncode is not None: -+ return self.returncode -+ -+ # endtime is preferred to timeout. timeout is only used for -+ # printing. -+ if endtime is not None or timeout is not None: -+ if endtime is None: -+ endtime = _time() + timeout -+ elif timeout is None: -+ timeout = self._remaining_time(endtime) -+ -+ if endtime is not None: -+ # Enter a busy loop if we have a timeout. This busy loop was -+ # cribbed from Lib/threading.py in Thread.wait() at r71065. -+ delay = 0.0005 # 500 us -> initial delay of 1 ms -+ while True: -+ if self._waitpid_lock.acquire(False): -+ try: -+ if self.returncode is not None: -+ break # Another thread waited. -+ (pid, sts) = self._try_wait(os.WNOHANG) -+ assert pid == self.pid or pid == 0 -+ if pid == self.pid: -+ self._handle_exitstatus(sts) -+ break -+ finally: -+ self._waitpid_lock.release() -+ remaining = self._remaining_time(endtime) -+ if remaining <= 0: -+ raise TimeoutExpired(self.args, timeout) -+ delay = min(delay * 2, remaining, .05) -+ time.sleep(delay) -+ else: -+ while self.returncode is None: -+ with self._waitpid_lock: - if self.returncode is not None: - break # Another thread waited. -- (pid, sts) = self._try_wait(os.WNOHANG) -- assert pid == self.pid or pid == 0 -+ (pid, sts) = self._try_wait(0) -+ # Check the pid and loop as waitpid has been known to -+ # return 0 even without WNOHANG in odd situations. -+ # http://bugs.python.org/issue14396. - if pid == self.pid: - self._handle_exitstatus(sts) -- break -- finally: -- self._waitpid_lock.release() -- remaining = self._remaining_time(endtime) -- if remaining <= 0: -- raise TimeoutExpired(self.args, timeout) -- delay = min(delay * 2, remaining, .05) -- time.sleep(delay) -- else: -- while self.returncode is None: -- with self._waitpid_lock: -- if self.returncode is not None: -- break # Another thread waited. -- (pid, sts) = self._try_wait(0) -- # Check the pid and loop as waitpid has been known to -- # return 0 even without WNOHANG in odd situations. -- # http://bugs.python.org/issue14396. -- if pid == self.pid: -- self._handle_exitstatus(sts) -- return self.returncode -- -- -- def _communicate(self, input, endtime, orig_timeout): -- if self.stdin and not self._communication_started: -- # Flush stdio buffer. This might block, if the user has -- # been writing to .stdin in an uncontrolled fashion. -- self.stdin.flush() -- if not input: -- self.stdin.close() -- -- stdout = None -- stderr = None -- -- # Only create this mapping if we haven't already. -- if not self._communication_started: -- self._fileobj2output = {} -- if self.stdout: -- self._fileobj2output[self.stdout] = [] -- if self.stderr: -- self._fileobj2output[self.stderr] = [] -- -- if self.stdout: -- stdout = self._fileobj2output[self.stdout] -- if self.stderr: -- stderr = self._fileobj2output[self.stderr] -+ return self.returncode - -- self._save_input(input) - -- if self._input: -- input_view = memoryview(self._input) -+ def _communicate(self, input, endtime, orig_timeout): -+ if self.stdin and not self._communication_started: -+ # Flush stdio buffer. This might block, if the user has -+ # been writing to .stdin in an uncontrolled fashion. -+ self.stdin.flush() -+ if not input: -+ self.stdin.close() -+ -+ stdout = None -+ stderr = None -+ -+ # Only create this mapping if we haven't already. -+ if not self._communication_started: -+ self._fileobj2output = {} -+ if self.stdout: -+ self._fileobj2output[self.stdout] = [] -+ if self.stderr: -+ self._fileobj2output[self.stderr] = [] - -- with _PopenSelector() as selector: -- if self.stdin and input: -- selector.register(self.stdin, selectors.EVENT_WRITE) - if self.stdout: -- selector.register(self.stdout, selectors.EVENT_READ) -+ stdout = self._fileobj2output[self.stdout] - if self.stderr: -- selector.register(self.stderr, selectors.EVENT_READ) -- -- while selector.get_map(): -- timeout = self._remaining_time(endtime) -- if timeout is not None and timeout < 0: -- raise TimeoutExpired(self.args, orig_timeout) -+ stderr = self._fileobj2output[self.stderr] - -- ready = selector.select(timeout) -- self._check_timeout(endtime, orig_timeout) -+ self._save_input(input) - -- # XXX Rewrite these to use non-blocking I/O on the file -- # objects; they are no longer using C stdio! -+ if self._input: -+ input_view = memoryview(self._input) - -- for key, events in ready: -- if key.fileobj is self.stdin: -- chunk = input_view[self._input_offset : -- self._input_offset + _PIPE_BUF] -- try: -- self._input_offset += os.write(key.fd, chunk) -- except BrokenPipeError: -- selector.unregister(key.fileobj) -- key.fileobj.close() -- else: -- if self._input_offset >= len(self._input): -+ with _PopenSelector() as selector: -+ if self.stdin and input: -+ selector.register(self.stdin, selectors.EVENT_WRITE) -+ if self.stdout: -+ selector.register(self.stdout, selectors.EVENT_READ) -+ if self.stderr: -+ selector.register(self.stderr, selectors.EVENT_READ) -+ -+ while selector.get_map(): -+ timeout = self._remaining_time(endtime) -+ if timeout is not None and timeout < 0: -+ raise TimeoutExpired(self.args, orig_timeout) -+ -+ ready = selector.select(timeout) -+ self._check_timeout(endtime, orig_timeout) -+ -+ # XXX Rewrite these to use non-blocking I/O on the file -+ # objects; they are no longer using C stdio! -+ -+ for key, events in ready: -+ if key.fileobj is self.stdin: -+ chunk = input_view[self._input_offset : -+ self._input_offset + _PIPE_BUF] -+ try: -+ self._input_offset += os.write(key.fd, chunk) -+ except BrokenPipeError: - selector.unregister(key.fileobj) - key.fileobj.close() -- elif key.fileobj in (self.stdout, self.stderr): -- data = os.read(key.fd, 32768) -- if not data: -- selector.unregister(key.fileobj) -- key.fileobj.close() -- self._fileobj2output[key.fileobj].append(data) -- -- self.wait(timeout=self._remaining_time(endtime)) -- -- # All data exchanged. Translate lists into strings. -- if stdout is not None: -- stdout = b''.join(stdout) -- if stderr is not None: -- stderr = b''.join(stderr) -- -- # Translate newlines, if requested. -- # This also turns bytes into strings. -- if self.universal_newlines: -- if stdout is not None: -- stdout = self._translate_newlines(stdout, -- self.stdout.encoding) -- if stderr is not None: -- stderr = self._translate_newlines(stderr, -- self.stderr.encoding) -- -- return (stdout, stderr) -- -+ else: -+ if self._input_offset >= len(self._input): -+ selector.unregister(key.fileobj) -+ key.fileobj.close() -+ elif key.fileobj in (self.stdout, self.stderr): -+ data = os.read(key.fd, 32768) -+ if not data: -+ selector.unregister(key.fileobj) -+ key.fileobj.close() -+ self._fileobj2output[key.fileobj].append(data) - -- def _save_input(self, input): -- # This method is called from the _communicate_with_*() methods -- # so that if we time out while communicating, we can continue -- # sending input if we retry. -- if self.stdin and self._input is None: -- self._input_offset = 0 -- self._input = input -- if self.universal_newlines and input is not None: -- self._input = self._input.encode(self.stdin.encoding) -- -- -- def send_signal(self, sig): -- """Send a signal to the process.""" -- # Skip signalling a process that we know has already died. -- if self.returncode is None: -- os.kill(self.pid, sig) -+ self.wait(timeout=self._remaining_time(endtime)) - -- def terminate(self): -- """Terminate the process with SIGTERM -- """ -- self.send_signal(signal.SIGTERM) -+ # All data exchanged. Translate lists into strings. -+ if stdout is not None: -+ stdout = b''.join(stdout) -+ if stderr is not None: -+ stderr = b''.join(stderr) - -- def kill(self): -- """Kill the process with SIGKILL -- """ -- self.send_signal(signal.SIGKILL) -+ # Translate newlines, if requested. -+ # This also turns bytes into strings. -+ if self.universal_newlines: -+ if stdout is not None: -+ stdout = self._translate_newlines(stdout, -+ self.stdout.encoding) -+ if stderr is not None: -+ stderr = self._translate_newlines(stderr, -+ self.stderr.encoding) -+ -+ return (stdout, stderr) -+ -+ -+ def _save_input(self, input): -+ # This method is called from the _communicate_with_*() methods -+ # so that if we time out while communicating, we can continue -+ # sending input if we retry. -+ if self.stdin and self._input is None: -+ self._input_offset = 0 -+ self._input = input -+ if self.universal_newlines and input is not None: -+ self._input = self._input.encode(self.stdin.encoding) -+ -+ -+ def send_signal(self, sig): -+ """Send a signal to the process.""" -+ # Skip signalling a process that we know has already died. -+ if self.returncode is None: -+ os.kill(self.pid, sig) -+ -+ def terminate(self): -+ """Terminate the process with SIGTERM -+ """ -+ self.send_signal(signal.SIGTERM) -+ -+ def kill(self): -+ """Kill the process with SIGKILL -+ """ -+ self.send_signal(signal.SIGKILL) ++ def _internal_poll(self, _deadstate=None, _waitpid=None, + _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): + """Check if child process has terminated. Returns returncode + attribute. +@@ -1569,6 +1577,8 @@ + outside of the local scope (nor can any methods it calls). + + """ ++ if _waitpid is None: ++ _waitpid = os.waitpid + if self.returncode is None: + if not self._waitpid_lock.acquire(False): + # Something else is busy calling waitpid. Don't allow two diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py --- orig/Lib/sysconfig.py 2015-12-07 09:39:08.000000000 +0800 +++ modified/Lib/sysconfig.py 2016-02-14 10:29:10.000000000 +0800 @@ -11803,7 +9329,7 @@ diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.p b'\xff'.decode(TESTFN_ENCODING) diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/script_helper.py --- orig/Lib/test/support/script_helper.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/support/script_helper.py 2016-02-15 18:25:31.000000000 +0800 ++++ modified/Lib/test/support/script_helper.py 2016-02-16 15:51:58.000000000 +0800 @@ -11,6 +11,7 @@ import py_compile import contextlib @@ -11817,7 +9343,7 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip __cached_interp_requires_environment = None + -+@unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") def interpreter_requires_environment(): """ Returns True if our sys.executable interpreter requires environment @@ -11826,7 +9352,7 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip return _PythonRunResult(rc, out, err), cmd_line + -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def _assert_python(expected_success, *args, **env_vars): res, cmd_line = run_python_until_end(*args, **env_vars) if (res.rc and expected_success) or (not res.rc and not expected_success): @@ -11835,13 +9361,175 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip return _assert_python(False, *args, **env_vars) + -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): """Run a Python subprocess with the given arguments. +diff -Nru orig/Lib/test/test_asyncio/test_events.py modified/Lib/test/test_asyncio/test_events.py +--- orig/Lib/test/test_asyncio/test_events.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_events.py 2016-02-16 17:30:31.000000000 +0800 +@@ -435,6 +435,7 @@ + self._basetest_sock_client_ops(httpd, sock) + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_unix_sock_client_ops(self): + with test_utils.run_test_unix_server() as httpd: + sock = socket.socket(socket.AF_UNIX) +@@ -569,6 +570,7 @@ + self._basetest_create_connection(conn_fut) + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_connection(self): + # Issue #20682: On Mac OS X Tiger, getsockname() returns a + # zero-length address for UNIX socket. +@@ -704,6 +706,7 @@ + + @unittest.skipIf(ssl is None, 'No ssl module') + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_ssl_unix_connection(self): + # Issue #20682: On Mac OS X Tiger, getsockname() returns a + # zero-length address for UNIX socket. +@@ -850,6 +853,7 @@ + return server, path + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_server(self): + proto = MyProto(loop=self.loop) + server, path = self._make_unix_server(lambda: proto) +@@ -878,6 +882,7 @@ + server.close() + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_server_path_socket_error(self): + proto = MyProto(loop=self.loop) + sock = socket.socket() +@@ -947,6 +952,7 @@ + + @unittest.skipIf(ssl is None, 'No ssl module') + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_server_ssl(self): + proto = MyProto(loop=self.loop) + server, path = self._make_ssl_unix_server( +@@ -1015,6 +1021,7 @@ + + @unittest.skipIf(ssl is None, 'No ssl module') + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_server_ssl_verify_failed(self): + proto = MyProto(loop=self.loop) + server, path = self._make_ssl_unix_server( +@@ -1082,6 +1089,7 @@ + + @unittest.skipIf(ssl is None, 'No ssl module') + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_create_unix_server_ssl_verified(self): + proto = MyProto(loop=self.loop) + server, path = self._make_ssl_unix_server( +@@ -1661,6 +1669,7 @@ + self.loop.add_signal_handler(signal.SIGTERM, func) + + ++@unittest.skipUnless(subprocess.supported, "test requires subprocess.Popen()") + class SubprocessTestsMixin: + + def check_terminated(self, returncode): +diff -Nru orig/Lib/test/test_asyncio/test_streams.py modified/Lib/test/test_asyncio/test_streams.py +--- orig/Lib/test/test_asyncio/test_streams.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_streams.py 2016-02-16 17:28:52.000000000 +0800 +@@ -4,6 +4,7 @@ + import os + import queue + import socket ++import subprocess + import sys + import threading + import unittest +@@ -56,6 +57,7 @@ + self._basetest_open_connection(conn_fut) + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_open_unix_connection(self): + with test_utils.run_test_unix_server() as httpd: + conn_fut = asyncio.open_unix_connection(httpd.address, +@@ -86,6 +88,7 @@ + + @unittest.skipIf(ssl is None, 'No ssl module') + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_open_unix_connection_no_loop_ssl(self): + with test_utils.run_test_unix_server(use_ssl=True) as httpd: + conn_fut = asyncio.open_unix_connection( +@@ -112,6 +115,7 @@ + self._basetest_open_connection_error(conn_fut) + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_open_unix_connection_error(self): + with test_utils.run_test_unix_server() as httpd: + conn_fut = asyncio.open_unix_connection(httpd.address, +@@ -509,6 +513,7 @@ + self.assertEqual(msg, b"hello world!\n") + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') ++ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + def test_start_unix_server(self): + + class MyServer: +@@ -577,6 +582,7 @@ + self.assertEqual(msg, b"hello world!\n") + + @unittest.skipIf(sys.platform == 'win32', "Don't have pipes") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") + def test_read_all_from_pipe_reader(self): + # See asyncio issue 168. This test is derived from the example + # subprocess_attach_read_pipe.py, but we configure the +diff -Nru orig/Lib/test/test_asyncio/test_subprocess.py modified/Lib/test/test_asyncio/test_subprocess.py +--- orig/Lib/test/test_asyncio/test_subprocess.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_subprocess.py 2016-02-16 17:22:17.000000000 +0800 +@@ -1,4 +1,5 @@ + import signal ++import subprocess as sp + import sys + import unittest + import warnings +@@ -75,6 +76,7 @@ + transport.close() + + ++@unittest.skipUnless(sp.supported, '"Test requires subprocess.Popen()') + class SubprocessMixin: + + def test_stdin_stdout(self): +diff -Nru orig/Lib/test/test_asyncio/test_unix_events.py modified/Lib/test/test_asyncio/test_unix_events.py +--- orig/Lib/test/test_asyncio/test_unix_events.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_unix_events.py 2016-02-16 17:22:13.000000000 +0800 +@@ -230,6 +230,7 @@ + + @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), + 'UNIX Sockets are not supported') ++@unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") + class SelectorEventLoopUnixSocketTests(test_utils.TestCase): + + def setUp(self): +@@ -793,6 +794,7 @@ + )) + + ++@unittest.skipUnless(hasattr(os, 'waitpid'), 'os.waitpid() is required') + class ChildWatcherTestsMixin: + + ignore_warnings = mock.patch.object(log.logger, "warning") diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py --- orig/Lib/test/test_base64.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_base64.py 2016-02-15 18:35:22.000000000 +0800 ++++ modified/Lib/test/test_base64.py 2016-02-16 15:50:14.000000000 +0800 @@ -3,6 +3,7 @@ import base64 import binascii @@ -11855,18 +9543,18 @@ diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py self.assertTrue(issubclass(binascii.Error, ValueError)) - -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") class TestMain(unittest.TestCase): def tearDown(self): if os.path.exists(support.TESTFN): diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py --- orig/Lib/test/test_capi.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_capi.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_capi.py 2016-02-16 15:50:14.000000000 +0800 @@ -49,6 +49,7 @@ self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test") @unittest.skipUnless(threading, 'Threading required for this test.') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_no_FatalError_infinite_loop(self): with support.SuppressCrashReport(): p = subprocess.Popen([sys.executable, "-c", @@ -11880,12 +9568,12 @@ diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py --- orig/Lib/test/test_cmd_line.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_cmd_line.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_cmd_line.py 2016-02-16 15:50:13.000000000 +0800 @@ -57,6 +57,7 @@ rc, out, err = assert_python_ok('-vv') self.assertNotIn(b'stack overflow', err) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_xoptions(self): def get_xoptions(*args): # use subprocess module directly because test.support.script_helper adds @@ -11893,7 +9581,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py opts = get_xoptions('-Xa', '-Xb=c,d=e') self.assertEqual(opts, {'a': True, 'b': 'c,d=e'}) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_showrefcount(self): def run_python(*args): # this is similar to assert_python_ok but doesn't strip @@ -11901,7 +9589,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # arguments as unicode (using wmain() instead of main()). @unittest.skipIf(sys.platform == 'win32', 'Windows has a native unicode API') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_undecodable_code(self): undecodable = b"\xff" env = os.environ.copy() @@ -11909,7 +9597,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py ) check_output(text) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_unbuffered_output(self): # Test expected operation of the '-u' switch for stream in ('stdout', 'stderr'): @@ -11917,7 +9605,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # for empty and unset PYTHONPATH self.assertEqual(out1, out2) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_displayhook_unencodable(self): for encoding in ('ascii', 'latin-1', 'utf-8'): # We are testing a PYTHON environment variable here, so we can't @@ -11925,7 +9613,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py escaped = repr(text).encode(encoding, 'backslashreplace') self.assertIn(escaped, data) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def check_input(self, code, expected): with tempfile.NamedTemporaryFile("wb+") as stdin: sep = os.linesep.encode('ASCII') @@ -11933,7 +9621,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # Issue #7111: Python should work without standard streams @unittest.skipIf(os.name != 'posix', "test needs POSIX semantics") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def _test_no_stdio(self, streams): code = """if 1: import os, sys @@ -11950,6 +9638,17 @@ diff -Nru orig/Lib/test/test_compileall.py modified/Lib/test/test_compileall.py with self.assertRaisesRegex(ValueError, "workers must be greater or equal to 0"): compileall.compile_dir(self.directory, workers=-1) +diff -Nru orig/Lib/test/test_concurrent_futures.py modified/Lib/test/test_concurrent_futures.py +--- orig/Lib/test/test_concurrent_futures.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_concurrent_futures.py 2016-02-16 17:06:07.000000000 +0800 +@@ -91,6 +91,7 @@ + executor_type = futures.ThreadPoolExecutor + + ++@unittest.skipUnless(hasattr(os, 'fork'), 'os.fork() does not exist on this platform') + class ProcessPoolMixin(ExecutorMixin): + executor_type = futures.ProcessPoolExecutor + diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py --- orig/Lib/test/test_doctest.py 2015-12-07 09:39:09.000000000 +0800 +++ modified/Lib/test/test_doctest.py 2016-02-14 10:29:37.000000000 +0800 @@ -11969,18 +9668,18 @@ diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py diff -Nru orig/Lib/test/test_eintr.py modified/Lib/test/test_eintr.py --- orig/Lib/test/test_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_eintr.py 2016-02-15 18:30:29.000000000 +0800 ++++ modified/Lib/test/test_eintr.py 2016-02-16 15:50:13.000000000 +0800 @@ -9,6 +9,7 @@ @unittest.skipUnless(os.name == "posix", "only supported on Unix") -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") class EINTRTests(unittest.TestCase): @unittest.skipUnless(hasattr(signal, "setitimer"), "requires setitimer()") diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler.py --- orig/Lib/test/test_faulthandler.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_faulthandler.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_faulthandler.py 2016-02-16 15:50:12.000000000 +0800 @@ -24,6 +24,7 @@ TIMEOUT = 0.5 @@ -12009,7 +9708,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler finally: sys.stderr = orig_stderr -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_disabled_by_default(self): # By default, the module should be disabled code = "import faulthandler; print(faulthandler.is_enabled())" @@ -12017,7 +9716,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"False") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_sys_xoptions(self): # Test python -X faulthandler code = "import faulthandler; print(faulthandler.is_enabled())" @@ -12025,7 +9724,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"True") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_env_var(self): # empty env var code = "import faulthandler; print(faulthandler.is_enabled())" @@ -12059,30 +9758,30 @@ diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py def setUp(self): diff -Nru orig/Lib/test/test_file_eintr.py modified/Lib/test/test_file_eintr.py --- orig/Lib/test/test_file_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_file_eintr.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_file_eintr.py 2016-02-16 15:50:11.000000000 +0800 @@ -69,6 +69,7 @@ self.fail('Error from IO process %s:\nSTDOUT:\n%sSTDERR:\n%s\n' % (why, stdout.decode(), stderr.decode())) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def _test_reading(self, data_to_write, read_and_verify_code): """Generic buffered read method test harness to validate EINTR behavior. diff -Nru orig/Lib/test/test_gc.py modified/Lib/test/test_gc.py --- orig/Lib/test/test_gc.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gc.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_gc.py 2016-02-16 15:50:11.000000000 +0800 @@ -650,6 +650,8 @@ del x gc.set_debug(%s) """ + -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def run_command(code): p = subprocess.Popen([sys.executable, "-Wd", "-c", code], stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py --- orig/Lib/test/test_gdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gdb.py 2016-02-14 11:22:03.000000000 +0800 ++++ modified/Lib/test/test_gdb.py 2016-02-16 16:48:39.000000000 +0800 @@ -5,7 +5,6 @@ import os @@ -12103,7 +9802,7 @@ diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py # This is what "no gdb" looks like. There may, however, be other # errors that manifest this way too. raise unittest.SkipTest("Couldn't find gdb on the path") -+ except AttributeError: ++ except RuntimeError: + raise unittest.SkipTest("subprocess module doesn't provide Popen()") # Regex to parse: @@ -12128,7 +9827,7 @@ diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.py --- orig/Lib/test/test_httpservers.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_httpservers.py 2016-02-14 10:29:37.000000000 +0800 ++++ modified/Lib/test/test_httpservers.py 2016-02-16 15:50:10.000000000 +0800 @@ -16,6 +16,7 @@ import urllib.parse import html @@ -12155,7 +9854,7 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p @unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, "This test can't be run reliably as root (issue #13308).") -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") class CGIHTTPServerTestCase(BaseTestCase): class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler): pass @@ -12266,7 +9965,7 @@ diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_tool.py --- orig/Lib/test/test_json/test_tool.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_json/test_tool.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_json/test_tool.py 2016-02-16 15:50:09.000000000 +0800 @@ -7,6 +7,7 @@ from test.support.script_helper import assert_python_ok @@ -12279,18 +9978,18 @@ diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_ ] """) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_stdin_stdout(self): with subprocess.Popen( (sys.executable, '-m', 'json.tool'), diff -Nru orig/Lib/test/test_keyword.py modified/Lib/test/test_keyword.py --- orig/Lib/test/test_keyword.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_keyword.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_keyword.py 2016-02-16 15:50:08.000000000 +0800 @@ -46,6 +46,7 @@ fp.writelines(lines[:lines.index(b"#--start keywords--" + nl) + 1]) fp.writelines(lines[lines.index(b"#--end keywords--" + nl):]) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def _generate_keywords(self, grammar_file, target_keyword_py_file): proc = subprocess.Popen([sys.executable, KEYWORD_FILE, @@ -12390,14 +10089,65 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py requires('largefile', 'test requires %s bytes and a long time to run' % str(0x180000000)) f = open(TESTFN, 'w+b') +diff -Nru orig/Lib/test/test_multiprocessing_fork.py modified/Lib/test/test_multiprocessing_fork.py +--- orig/Lib/test/test_multiprocessing_fork.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_fork.py 2016-02-16 19:53:54.000000000 +0800 +@@ -1,7 +1,13 @@ ++import subprocess + import unittest ++ ++if not subprocess.supported: ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++ + import test._test_multiprocessing + + test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork') + ++ + if __name__ == '__main__': + unittest.main() +diff -Nru orig/Lib/test/test_multiprocessing_forkserver.py modified/Lib/test/test_multiprocessing_forkserver.py +--- orig/Lib/test/test_multiprocessing_forkserver.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_forkserver.py 2016-02-16 19:53:21.000000000 +0800 +@@ -1,7 +1,13 @@ ++import subprocess + import unittest ++ ++if not subprocess.supported: ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++ + import test._test_multiprocessing + + test._test_multiprocessing.install_tests_in_module_dict(globals(), 'forkserver') + ++ + if __name__ == '__main__': + unittest.main() +diff -Nru orig/Lib/test/test_multiprocessing_spawn.py modified/Lib/test/test_multiprocessing_spawn.py +--- orig/Lib/test/test_multiprocessing_spawn.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_spawn.py 2016-02-16 19:53:43.000000000 +0800 +@@ -1,7 +1,13 @@ ++import subprocess + import unittest ++ ++if not subprocess.supported: ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++ + import test._test_multiprocessing + + test._test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') + ++ + if __name__ == '__main__': + unittest.main() diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py --- orig/Lib/test/test_os.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_os.py 2016-02-15 18:29:10.000000000 +0800 ++++ modified/Lib/test/test_os.py 2016-02-16 15:50:07.000000000 +0800 @@ -657,6 +657,7 @@ # Bug 1110478 @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_update2(self): os.environ.clear() os.environ.update(HELLO="World") @@ -12405,7 +10155,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py self.assertEqual(value, "World") @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_os_popen_iter(self): with os.popen( "/bin/sh -c 'echo \"line1\nline2\nline3\"'") as popen: @@ -12421,7 +10171,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py self.assertRaises(OverflowError, os.setreuid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_setreuid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). @@ -12429,7 +10179,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py 'import os,sys;os.setreuid(-1,-1);sys.exit(0)']) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_setregid(self): if os.getuid() != 0 and not HAVE_WHEEL_GROUP: self.assertRaises(OSError, os.setregid, 0, 0) @@ -12437,7 +10187,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py self.assertRaises(OverflowError, os.setregid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_setregid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). @@ -12445,7 +10195,7 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py class PidTests(unittest.TestCase): @unittest.skipUnless(hasattr(os, 'getppid'), "test needs os.getppid") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_getppid(self): p = subprocess.Popen([sys.executable, '-c', 'import os; print(os.getppid())'], @@ -12462,18 +10212,18 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py self.assertGreaterEqual(size.columns, 0) self.assertGreaterEqual(size.lines, 0) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_stty_match(self): """Check if stty returns the same results diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py --- orig/Lib/test/test_pdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pdb.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_pdb.py 2016-02-16 15:50:07.000000000 +0800 @@ -914,6 +914,7 @@ class PdbTestCase(unittest.TestCase): -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def run_pdb(self, script, commands): """Run 'script' lines with pdb and the pdb 'commands'.""" filename = 'main.py' @@ -12481,7 +10231,7 @@ diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py ('bar', 4), ) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_issue7964(self): # open the file as binary so we can force \r\n newline with open(support.TESTFN, 'wb') as f: @@ -12489,7 +10239,7 @@ diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py any('main.py(5)foo()->None' in l for l in stdout.splitlines()), 'Fail to step into the caller after a return') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_issue13210(self): # invoking "continue" on a non-main thread triggered an exception # inside signal.signal @@ -12559,7 +10309,7 @@ diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py for f in (TESTFN, TESTFN2): diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py --- orig/Lib/test/test_platform.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_platform.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_platform.py 2016-02-16 15:50:06.000000000 +0800 @@ -9,11 +9,13 @@ from test import support @@ -12570,7 +10320,7 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py res = platform.architecture() @support.skip_unless_symlink -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_architecture_via_symlink(self): # issue3762 # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. @@ -12595,13 +10345,13 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py ): self.assertEqual(platform._parse_release_file(input), output) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_popen(self): mswindows = (sys.platform == "win32") diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py --- orig/Lib/test/test_poll.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_poll.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_poll.py 2016-02-16 15:50:05.000000000 +0800 @@ -25,6 +25,7 @@ match.append(fd) return match @@ -12614,13 +10364,13 @@ diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py # Another test case for poll(). This is copied from the test case for # select(), modified to use poll() instead. -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_poll2(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py --- orig/Lib/test/test_popen.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_popen.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_popen.py 2016-02-16 15:50:04.000000000 +0800 @@ -5,7 +5,9 @@ import unittest @@ -12637,7 +10387,7 @@ diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py python = '"' + python + '"' # quote embedded space for cmdline + -+@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") class PopenTest(unittest.TestCase): def _do_test_commandline(self, cmdline, expected): @@ -12652,7 +10402,7 @@ diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py def test_popen(self): diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py --- orig/Lib/test/test_posix.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_posix.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_posix.py 2016-02-16 15:50:04.000000000 +0800 @@ -11,8 +11,8 @@ import os import platform @@ -12691,7 +10441,7 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py - @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_getgroups(self): with os.popen('id -G 2>/dev/null') as idg: groups = idg.read().strip() @@ -12709,12 +10459,12 @@ diff -Nru orig/Lib/test/test_pty.py modified/Lib/test/test_pty.py pid, master_fd = pty.fork() diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py --- orig/Lib/test/test_quopri.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_quopri.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_quopri.py 2016-02-16 15:50:03.000000000 +0800 @@ -180,6 +180,7 @@ for p, e in self.HSTRINGS: self.assertEqual(quopri.decodestring(e, header=True), p) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_scriptencode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri"], @@ -12722,18 +10472,18 @@ diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py self.assertEqual(cout[i], e[i]) self.assertEqual(cout, e) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_scriptdecode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri", "-d"], diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_helper.py --- orig/Lib/test/test_script_helper.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_script_helper.py 2016-02-15 19:02:46.000000000 +0800 ++++ modified/Lib/test/test_script_helper.py 2016-02-16 15:51:53.000000000 +0800 @@ -34,6 +34,7 @@ self.assertIn('import sys; sys.exit(0)', error_msg, msg='unexpected command line.') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") @mock.patch('subprocess.Popen') def test_assert_python_isolated_when_env_not_required(self, mock_popen): with mock.patch.object(script_helper, @@ -12741,7 +10491,7 @@ diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_help self.assertIn('-I', popen_command) self.assertNotIn('-E', popen_command) # -I overrides this -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") @mock.patch('subprocess.Popen') def test_assert_python_not_isolated_when_env_is_required(self, mock_popen): """Ensure that -I is not passed when the environment is required.""" @@ -12749,7 +10499,7 @@ diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_help # Reset the private cached state. script_helper.__dict__['__cached_interp_requires_environment'] = None -+ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_true(self, mock_check_call): mock_check_call.side_effect = subprocess.CalledProcessError('', '') @@ -12757,7 +10507,7 @@ diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_help self.assertTrue(script_helper.interpreter_requires_environment()) self.assertEqual(1, mock_check_call.call_count) -+ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_false(self, mock_check_call): # The mocked subprocess.check_call fakes a no-error process. @@ -12765,13 +10515,13 @@ diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_help self.assertFalse(script_helper.interpreter_requires_environment()) self.assertEqual(1, mock_check_call.call_count) -+ @unittest.skipUnless(hasattr(subprocess, 'check_call'), "test requires subprocess.check_call()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_details(self, mock_check_call): script_helper.interpreter_requires_environment() diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py --- orig/Lib/test/test_select.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_select.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_select.py 2016-02-16 15:50:01.000000000 +0800 @@ -1,11 +1,13 @@ import errno import os @@ -12791,13 +10541,13 @@ diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py self.assertIsNot(r, x) self.assertIsNot(w, x) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_select(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' p = os.popen(cmd, 'r') diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py --- orig/Lib/test/test_shutil.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_shutil.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_shutil.py 2016-02-16 15:50:01.000000000 +0800 @@ -51,6 +51,7 @@ except ImportError: ZIP_SUPPORT = shutil.which('zip') @@ -12818,24 +10568,24 @@ diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py self.assertEqual(size.lines, 888) @unittest.skipUnless(os.isatty(sys.__stdout__.fileno()), "not on tty") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_stty_match(self): """Check if stty returns the same results ignoring env diff -Nru orig/Lib/test/test_signal.py modified/Lib/test/test_signal.py --- orig/Lib/test/test_signal.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_signal.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_signal.py 2016-02-16 15:50:00.000000000 +0800 @@ -158,6 +158,7 @@ @unittest.skipIf(sys.platform=='freebsd6', 'inter process signals not reliable (do not mix well with threading) ' 'on freebsd6') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_main(self): # This function spawns a child process to insulate the main # test-running process from all the signals. It then diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py --- orig/Lib/test/test_site.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_site.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_site.py 2016-02-16 15:49:59.000000000 +0800 @@ -31,6 +31,7 @@ os.makedirs(site.USER_SITE) site.addsitedir(site.USER_SITE) @@ -12848,7 +10598,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 " "user-site (site.ENABLE_USER_SITE)") -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_s_option(self): usersite = site.USER_SITE self.assertIn(usersite, sys.path) @@ -12865,7 +10615,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py """Restore sys.path""" sys.path[:] = self.sys_path -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_abs_paths(self): # Make sure all imported modules have their __file__ and __cached__ # attributes as absolute paths. Arranging to put the Lib directory on @@ -12873,7 +10623,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py class StartupImportTests(unittest.TestCase): -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_startup_imports(self): # This tests checks which modules are loaded by Python when it # initially starts upon startup. @@ -13031,7 +10781,7 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver socketserver.StreamRequestHandler, diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_encoding.py --- orig/Lib/test/test_source_encoding.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_source_encoding.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_source_encoding.py 2016-02-16 15:49:58.000000000 +0800 @@ -7,6 +7,7 @@ import sys import subprocess @@ -13044,18 +10794,18 @@ diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_en # two bytes in common with the UTF-8 BOM self.assertRaises(SyntaxError, eval, b'\xef\xbb\x20') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_20731(self): sub = subprocess.Popen([sys.executable, os.path.join(os.path.dirname(__file__), diff -Nru orig/Lib/test/test_subprocess.py modified/Lib/test/test_subprocess.py --- orig/Lib/test/test_subprocess.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_subprocess.py 2016-02-14 10:58:22.000000000 +0800 ++++ modified/Lib/test/test_subprocess.py 2016-02-16 19:32:13.000000000 +0800 @@ -26,6 +26,9 @@ mswindows = (sys.platform == "win32") -+if not hasattr(subprocess, 'Popen'): ++if not subprocess.supported: + raise unittest.SkipTest("subprocess module doesn't provide Popen()") + # @@ -13076,7 +10826,7 @@ diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py import distutils.unixccompiler diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py --- orig/Lib/test/test_sys.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sys.py 2016-02-15 18:27:32.000000000 +0800 ++++ modified/Lib/test/test_sys.py 2016-02-16 15:49:57.000000000 +0800 @@ -20,6 +20,7 @@ except ImportError: threading = None @@ -13089,7 +10839,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py finally: sys.setrecursionlimit(oldlimit) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_recursionlimit_fatalerror(self): # A fatal error occurs if a second recursion limit is hit when recovering # from a first one. @@ -13097,7 +10847,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_clear_type_cache(self): sys._clear_type_cache() -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_ioencoding(self): env = dict(os.environ) @@ -13105,7 +10855,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py @unittest.skipUnless(test.support.FS_NONASCII, 'requires OS support of non-ASCII encodings') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_ioencoding_nonascii(self): env = dict(os.environ) @@ -13113,7 +10863,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py @unittest.skipIf(sys.base_prefix != sys.prefix, 'Test is not venv-compatible') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_executable(self): # sys.executable should be absolute self.assertEqual(os.path.abspath(sys.executable), sys.executable) @@ -13121,13 +10871,13 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py expected = None self.check_fsencoding(fs_encoding, expected) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def c_locale_get_error_handler(self, isolated=False, encoding=None): # Force the POSIX locale env = os.environ.copy() diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py --- orig/Lib/test/test_sysconfig.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sysconfig.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_sysconfig.py 2016-02-16 15:49:56.000000000 +0800 @@ -15,6 +15,7 @@ get_scheme_names, get_config_var, _main) import _osx_support @@ -13146,7 +10896,7 @@ diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py self.assertEqual(get_scheme_names(), wanted) @skip_unless_symlink -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_symlink(self): # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. @@ -13197,7 +10947,7 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py # Python code returned but before the thread state is deleted. diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py --- orig/Lib/test/test_traceback.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_traceback.py 2016-02-15 19:04:24.000000000 +0800 ++++ modified/Lib/test/test_traceback.py 2016-02-16 15:49:56.000000000 +0800 @@ -6,6 +6,7 @@ import sys import unittest @@ -13210,7 +10960,7 @@ diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py err = traceback.format_exception_only(None, None) self.assertEqual(err, ['None\n']) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_encoded_file(self): # Test that tracebacks are correctly printed for encoded source files: # - correct line number (Issue2384) @@ -13222,7 +10972,7 @@ diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py # encoding may be different from the current interpreter, on Windows diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.py --- orig/Lib/test/test_unicodedata.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_unicodedata.py 2016-02-15 18:24:13.000000000 +0800 ++++ modified/Lib/test/test_unicodedata.py 2016-02-16 15:49:55.000000000 +0800 @@ -9,6 +9,7 @@ import sys import unittest @@ -13238,7 +10988,7 @@ diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.p + class UnicodeMiscTest(UnicodeDatabaseTest): -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_failed_import_during_compiling(self): # Issue 4367 # Decoding \N escapes requires the unicodedata module. If it can't be @@ -13274,7 +11024,7 @@ diff -Nru orig/Lib/test/test_urllib2net.py modified/Lib/test/test_urllib2net.py with support.transient_internet(redirect_url_with_frag): diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py --- orig/Lib/test/test_uuid.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_uuid.py 2016-02-15 18:18:31.000000000 +0800 ++++ modified/Lib/test/test_uuid.py 2016-02-16 15:49:54.000000000 +0800 @@ -14,6 +14,7 @@ except: return False @@ -13295,7 +11045,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py class TestInternals(unittest.TestCase): @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_find_mac(self): data = ''' fake hwaddr @@ -13303,7 +11053,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py "%s is not an RFC 4122 node ID" % hex) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_ifconfig_getnode(self): node = uuid._ifconfig_getnode() self.check_node(node, 'ifconfig', True) @@ -13311,7 +11061,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py self.check_node(node, 'ip', True) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_arp_getnode(self): node = uuid._arp_getnode() self.check_node(node, 'arp', True) @@ -13319,13 +11069,13 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py self.check_node(node, 'lanscan', True) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_netstat_getnode(self): node = uuid._netstat_getnode() self.check_node(node, 'netstat', True) diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py --- orig/Lib/test/test_venv.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_venv.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_venv.py 2016-02-16 15:49:46.000000000 +0800 @@ -35,6 +35,7 @@ def failsOnWindows(f): return f @@ -13338,7 +11088,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) @skipInVenv -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_prefixes(self): """ Test that the prefix values are as expected. @@ -13346,7 +11096,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py # point to the venv being used to run the test, and we lose the link # to the source build - so Python can't initialise properly. @skipInVenv -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_executable(self): """ Test that the sys.executable value is as expected. @@ -13354,7 +11104,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py self.assertEqual(out.strip(), envpy.encode()) @unittest.skipUnless(can_symlink(), 'Needs symlinks') -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_executable_symlinks(self): """ Test that the sys.executable value is as expected. @@ -13362,7 +11112,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py @skipInVenv class EnsurePipTest(BaseTest): """Test venv module installation of pip.""" -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def assert_pip_not_installed(self): envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) @@ -13370,7 +11120,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py # Requesting pip fails without SSL (http://bugs.python.org/issue19744) @unittest.skipIf(ssl is None, ensurepip._MISSING_SSL_MESSAGE) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_with_pip(self): rmtree(self.env_dir) with EnvironmentVarGuard() as envvars: @@ -13422,12 +11172,12 @@ diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_b class TestBreak(unittest.TestCase): diff -Nru orig/Lib/unittest/test/test_runner.py modified/Lib/unittest/test/test_runner.py --- orig/Lib/unittest/test/test_runner.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/unittest/test/test_runner.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/unittest/test/test_runner.py 2016-02-16 15:49:39.000000000 +0800 @@ -274,6 +274,7 @@ expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY) self.assertEqual(runner._makeResult(), expectedresult) -+ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") ++ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") def test_warnings(self): """ Check that warnings argument of TextTestRunner correctly affects the @@ -31320,7 +29070,7 @@ diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c n++; diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h --- orig/Python/importlib_external.h 2015-12-07 09:39:11.000000000 +0800 -+++ modified/Python/importlib_external.h 2016-02-16 11:35:20.000000000 +0800 ++++ modified/Python/importlib_external.h 2016-02-16 16:06:55.000000000 +0800 @@ -2,52 +2,52 @@ const unsigned char _Py_M__importlib_external[] = { 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, @@ -36700,8 +34450,8 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-te \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/main.m --- orig/Tools/iOS-test/iOS-test/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-16 11:43:46.000000000 +0800 -@@ -0,0 +1,151 @@ ++++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-16 19:55:51.000000000 +0800 +@@ -0,0 +1,149 @@ +// +// main.m +// A main module for starting Python projects under iOS. @@ -36765,9 +34515,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m +// "-v", // Verbose test output + "-W", // Display test output on failure + -+ + "-x", // Arguments are tests to *exclude* -+ +// Simulator failures +// "test_coroutines", // docstring not being populated +// "test_module", // docstring not being populated diff --git a/patch/Python/Setup.embedded b/patch/Python/Setup.embedded index c0977ee..e087ef7 100644 --- a/patch/Python/Setup.embedded +++ b/patch/Python/Setup.embedded @@ -3,6 +3,7 @@ ##################################################################### _bisect _bisectmodule.c +_bz2 _bz2module.c -I$(srcdir)/../bzip2/include -L$(srcdir)/../bzip2/lib -lbz2 _codecs_cn cjkcodecs/_codecs_cn.c _codecs_hk cjkcodecs/_codecs_hk.c _codecs_iso2022 cjkcodecs/_codecs_iso2022.c @@ -18,6 +19,7 @@ _elementtree _elementtree.c \ _heapq _heapqmodule.c _json _json.c _lsprof _lsprof.o rotatingtree.c +# _lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../xz/lib -llzma _md5 md5module.c _multibytecodec cjkcodecs/multibytecodec.c _multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c @@ -74,12 +76,10 @@ _testimportmultiple _testimportmultiple.c ##################################################################### # Modules that require additional frameworks ##################################################################### -#_bz2 bz2module.c -lbz2 #_curses _cursesmodule.c -lcurses -ltermcap #_curses_panel _curses_panel.c -lpanel -lncurses #_dbm _dbmmodule.c #_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm -#_lzma #_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I... -L... #nis nismodule.c -lnsl #ossaudiodev From 75b2f0df7e4e7718eadd531c5f9f0aebf4cddbea Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 16 Feb 2016 20:17:25 +0800 Subject: [PATCH 03/15] Updated README references. --- README.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index ecb4c29..ecc3b19 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,6 @@ This should enable the code to run on: - iPad Air - iPad Air 2 - iPad retina - - iPad Pro * iPad Mini - iPad Mini (1st gen) - iPad Mini 2 @@ -42,7 +41,7 @@ This should enable the code to run on: - 4th gen * Apple Watch -This repository branch builds a packaged version of **Python 3.4.2**. +This repository branch builds a packaged version of **Python 3.5.1**. Other Python versions are available by cloning other branches of the main repository. @@ -69,9 +68,9 @@ This should: The build products will be in the `build` directory; the compiled frameworks will be in the `dist` directory. -.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz -.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz -.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz +.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz +.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz +.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz Acknowledgements ---------------- From 9266670750bf4cdfc1c13d9ad4a727aa70c313a4 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 17 Feb 2016 12:06:45 +0800 Subject: [PATCH 04/15] Updated patch to use os-based check for subprocess support. --- patch/Python/Python.patch | 622 ++++++++++++++++++++++---------------- 1 file changed, 361 insertions(+), 261 deletions(-) diff --git a/patch/Python/Python.patch b/patch/Python/Python.patch index 8f392ba..70f7582 100644 --- a/patch/Python/Python.patch +++ b/patch/Python/Python.patch @@ -1,3 +1,35 @@ +diff -Nru orig/Doc/library/os.rst modified/Doc/library/os.rst +--- orig/Doc/library/os.rst 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Doc/library/os.rst 2016-02-17 12:02:58.000000000 +0800 +@@ -2743,6 +2743,13 @@ + Python signal handler registered for :const:`SIGABRT` with + :func:`signal.signal`. + ++.. data:: allows_subprocesses ++ ++ Boolean that describes whether subprocesses can be by the operating system. ++ Some platforms (e.g., iOS mobile devices) *implement* calls like ++ :func:`execv` and :func:`spawnv`, but will raise errors or break if ++ called. Calls to create subprocesses should only be invoked if ++ :data:`os.allows_subprocesses` is `True`. + + .. function:: execl(path, arg0, arg1, ...) + execle(path, arg0, arg1, ..., env) +diff -Nru orig/Doc/library/subprocess.rst modified/Doc/library/subprocess.rst +--- orig/Doc/library/subprocess.rst 2015-12-07 09:39:07.000000000 +0800 ++++ modified/Doc/library/subprocess.rst 2016-02-17 12:01:30.000000000 +0800 +@@ -21,6 +21,11 @@ + + :pep:`324` -- PEP proposing the subprocess module + ++:mod:`subprocess` can only be used on platforms that support subprocess ++creation. Some platforms (especially mobile platforms) may not support ++subprocesses; if :data:`os.allows_subprocesses` is `False`, any calls in ++this module that request a subprocess be created will raise a ++:exc:`RuntimeError`. + + Using the :mod:`subprocess` Module + ---------------------------------- diff -Nru orig/Include/datetime.h modified/Include/datetime.h --- orig/Include/datetime.h 2015-12-07 09:39:07.000000000 +0800 +++ modified/Include/datetime.h 2016-02-14 10:29:10.000000000 +0800 @@ -622,12 +654,12 @@ diff -Nru orig/Lib/ctypes/util.py modified/Lib/ctypes/util.py possible = ['lib%s.dylib' % name, diff -Nru orig/Lib/distutils/tests/test_build_ext.py modified/Lib/distutils/tests/test_build_ext.py --- orig/Lib/distutils/tests/test_build_ext.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_ext.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_ext.py 2016-02-17 12:02:50.000000000 +0800 @@ -40,6 +40,7 @@ def build_ext(self, *args, **kwargs): return build_ext(*args, **kwargs) -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_build_ext(self): global ALREADY_TESTED copy_xxmodule_c(self.tmp_dir) @@ -635,29 +667,29 @@ diff -Nru orig/Lib/distutils/tests/test_build_ext.py modified/Lib/distutils/test cmd.run() self.assertEqual(cmd.compiler, 'unix') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_get_outputs(self): tmp_dir = self.mkdtemp() c_file = os.path.join(tmp_dir, 'foo.c') diff -Nru orig/Lib/distutils/tests/test_build_py.py modified/Lib/distutils/tests/test_build_py.py --- orig/Lib/distutils/tests/test_build_py.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_py.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_py.py 2016-02-17 12:02:38.000000000 +0800 @@ -106,6 +106,7 @@ ['boiledeggs.%s.pyc' % sys.implementation.cache_tag]) @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_byte_compile_optimized(self): project_dir, dist = self.create_dist(py_modules=['boiledeggs']) os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_config_cmd.py modified/Lib/distutils/tests/test_config_cmd.py --- orig/Lib/distutils/tests/test_config_cmd.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_config_cmd.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_config_cmd.py 2016-02-17 09:45:32.000000000 +0800 @@ -38,6 +38,7 @@ self.assertEqual(len(self._logs), numlines+1) @unittest.skipIf(sys.platform == 'win32', "can't test on Windows") -+ @unittest.skipUnless(hasattr(os, 'fork'), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_search_cpp(self): pkg_dir, dist = self.create_dist() cmd = config(dist) @@ -709,29 +741,29 @@ diff -Nru orig/Lib/distutils/tests/test_cygwinccompiler.py modified/Lib/distutil diff -Nru orig/Lib/distutils/tests/test_install.py modified/Lib/distutils/tests/test_install.py --- orig/Lib/distutils/tests/test_install.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install.py 2016-02-17 12:02:31.000000000 +0800 @@ -195,6 +195,7 @@ 'UNKNOWN-0.0.0-py%s.%s.egg-info' % sys.version_info[:2]] self.assertEqual(found, expected) -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_record_extensions(self): install_dir = self.mkdtemp() project_dir, dist = self.create_dist(ext_modules=[ diff -Nru orig/Lib/distutils/tests/test_install_lib.py modified/Lib/distutils/tests/test_install_lib.py --- orig/Lib/distutils/tests/test_install_lib.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install_lib.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install_lib.py 2016-02-17 12:02:19.000000000 +0800 @@ -35,6 +35,7 @@ self.assertEqual(cmd.optimize, 2) @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_byte_compile(self): project_dir, dist = self.create_dist() os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/test_spawn.py --- orig/Lib/distutils/tests/test_spawn.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_spawn.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_spawn.py 2016-02-17 12:02:10.000000000 +0800 @@ -1,14 +1,14 @@ """Tests for distutils.spawn.""" import unittest @@ -757,7 +789,7 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te - - @unittest.skipUnless(os.name in ('nt', 'posix'), - 'Runs only under posix or nt') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_spawn(self): tmpdir = self.mkdtemp() @@ -771,7 +803,7 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/tests/test_sysconfig.py --- orig/Lib/distutils/tests/test_sysconfig.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-16 16:58:16.000000000 +0800 ++++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-17 10:15:12.000000000 +0800 @@ -11,6 +11,7 @@ from distutils.tests import support from test.support import TESTFN, run_unittest, check_warnings @@ -784,13 +816,13 @@ diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/test self.assertIsNotNone(vars['SO']) self.assertEqual(vars['SO'], vars['EXT_SUFFIX']) -+ @unittest.skipUnless(subprocess.supported, "test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_customize_compiler_before_get_config_vars(self): # Issue #21923: test that a Distribution compiler # instance can be called without an explicit call to diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/test_util.py --- orig/Lib/distutils/tests/test_util.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_util.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/distutils/tests/test_util.py 2016-02-17 12:02:04.000000000 +0800 @@ -10,12 +10,13 @@ check_environ, split_quoted, strtobool, rfc822_escape, byte_compile, @@ -810,7 +842,7 @@ diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/tes # XXX platforms to be covered: mac -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") def test_check_environ(self): util._environ_checked = 0 if 'HOME' in os.environ: @@ -826,6 +858,40 @@ diff -Nru orig/Lib/importlib/_bootstrap_external.py modified/Lib/importlib/_boot def _make_relax_case(): +diff -Nru orig/Lib/os.py modified/Lib/os.py +--- orig/Lib/os.py 2015-12-07 09:39:08.000000000 +0800 ++++ modified/Lib/os.py 2016-02-17 09:09:10.000000000 +0800 +@@ -32,7 +32,7 @@ + __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", + "defpath", "name", "path", "devnull", "SEEK_SET", "SEEK_CUR", + "SEEK_END", "fsencode", "fsdecode", "get_exec_path", "fdopen", +- "popen", "extsep"] ++ "popen", "extsep", "allows_subprocesses"] + + def _exists(name): + return name in globals() +@@ -115,7 +115,6 @@ + + del _names + +- + if _exists("_have_functions"): + _globals = globals() + def _add(str, fn): +@@ -837,6 +836,13 @@ + fsencode, fsdecode = _fscodec() + del _fscodec + ++ ++if sys.platform == "ios": ++ allows_subprocesses = False ++else: ++ allows_subprocesses = False ++ ++ + # Supply spawn*() (probably only for Unix) + if _exists("fork") and not _exists("spawnv") and _exists("execv"): + diff -Nru orig/Lib/plat-ios/IN.py modified/Lib/plat-ios/IN.py --- orig/Lib/plat-ios/IN.py 1970-01-01 08:00:00.000000000 +0800 +++ modified/Lib/plat-ios/IN.py 2016-02-14 10:29:10.000000000 +0800 @@ -9142,33 +9208,8 @@ diff -Nru orig/Lib/site.py modified/Lib/site.py return USER_SITE diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py --- orig/Lib/subprocess.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/subprocess.py 2016-02-16 16:25:00.000000000 +0800 -@@ -357,6 +357,7 @@ - - import sys - _mswindows = (sys.platform == "win32") -+_ios = (sys.platform == "ios") - - import io - import os -@@ -455,10 +456,15 @@ - else: - _PopenSelector = selectors.SelectSelector - -+if _ios: -+ # iOS doesn't support subprocesses. -+ supported = False -+else: -+ supported = True - - __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", - "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL", -- "SubprocessError", "TimeoutExpired", "CompletedProcess"] -+ "SubprocessError", "TimeoutExpired", "CompletedProcess", "supported"] - # NOTE: We intentionally exclude list2cmdline as it is - # considered an internal implementation detail. issue10838. - -@@ -515,7 +521,6 @@ ++++ modified/Lib/subprocess.py 2016-02-17 09:17:39.000000000 +0800 +@@ -515,7 +515,6 @@ STDOUT = -2 DEVNULL = -3 @@ -9176,17 +9217,17 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py # XXX This function is only used by multiprocessing and the test suite, # but it's here so that it can be imported when Python is compiled without # threads. -@@ -842,6 +847,9 @@ +@@ -842,6 +841,9 @@ restore_signals=True, start_new_session=False, pass_fds=()): """Create new Popen instance.""" -+ if not supported: -+ raise RuntimeError("subprocesses are not supported on this platform.") ++ if not os.allows_subprocesses: ++ raise RuntimeError("Subprocesses are not supported on this platform.") + _cleanup() # Held while anything is calling waitpid before returncode has been # updated to prevent clobbering returncode if wait() or poll() are -@@ -1560,7 +1568,7 @@ +@@ -1560,7 +1562,7 @@ raise SubprocessError("Unknown child exit status!") @@ -9195,7 +9236,7 @@ diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): """Check if child process has terminated. Returns returncode attribute. -@@ -1569,6 +1577,8 @@ +@@ -1569,6 +1571,8 @@ outside of the local scope (nor can any methods it calls). """ @@ -9329,7 +9370,7 @@ diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.p b'\xff'.decode(TESTFN_ENCODING) diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/script_helper.py --- orig/Lib/test/support/script_helper.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/support/script_helper.py 2016-02-16 15:51:58.000000000 +0800 ++++ modified/Lib/test/support/script_helper.py 2016-02-17 09:41:41.000000000 +0800 @@ -11,6 +11,7 @@ import py_compile import contextlib @@ -9343,7 +9384,7 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip __cached_interp_requires_environment = None + -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def interpreter_requires_environment(): """ Returns True if our sys.executable interpreter requires environment @@ -9352,7 +9393,7 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip return _PythonRunResult(rc, out, err), cmd_line + -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def _assert_python(expected_success, *args, **env_vars): res, cmd_line = run_python_until_end(*args, **env_vars) if (res.rc and expected_success) or (not res.rc and not expected_success): @@ -9361,13 +9402,13 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip return _assert_python(False, *args, **env_vars) + -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): """Run a Python subprocess with the given arguments. diff -Nru orig/Lib/test/test_asyncio/test_events.py modified/Lib/test/test_asyncio/test_events.py --- orig/Lib/test/test_asyncio/test_events.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_events.py 2016-02-16 17:30:31.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_events.py 2016-02-17 10:15:11.000000000 +0800 @@ -435,6 +435,7 @@ self._basetest_sock_client_ops(httpd, sock) @@ -9436,13 +9477,13 @@ diff -Nru orig/Lib/test/test_asyncio/test_events.py modified/Lib/test/test_async self.loop.add_signal_handler(signal.SIGTERM, func) -+@unittest.skipUnless(subprocess.supported, "test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class SubprocessTestsMixin: def check_terminated(self, returncode): diff -Nru orig/Lib/test/test_asyncio/test_streams.py modified/Lib/test/test_asyncio/test_streams.py --- orig/Lib/test/test_asyncio/test_streams.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_streams.py 2016-02-16 17:28:52.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_streams.py 2016-02-17 09:41:39.000000000 +0800 @@ -4,6 +4,7 @@ import os import queue @@ -9487,30 +9528,29 @@ diff -Nru orig/Lib/test/test_asyncio/test_streams.py modified/Lib/test/test_asyn self.assertEqual(msg, b"hello world!\n") @unittest.skipIf(sys.platform == 'win32', "Don't have pipes") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_read_all_from_pipe_reader(self): # See asyncio issue 168. This test is derived from the example # subprocess_attach_read_pipe.py, but we configure the diff -Nru orig/Lib/test/test_asyncio/test_subprocess.py modified/Lib/test/test_asyncio/test_subprocess.py --- orig/Lib/test/test_asyncio/test_subprocess.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_subprocess.py 2016-02-16 17:22:17.000000000 +0800 -@@ -1,4 +1,5 @@ ++++ modified/Lib/test/test_asyncio/test_subprocess.py 2016-02-17 09:37:30.000000000 +0800 +@@ -1,3 +1,4 @@ ++import os import signal -+import subprocess as sp import sys import unittest - import warnings @@ -75,6 +76,7 @@ transport.close() -+@unittest.skipUnless(sp.supported, '"Test requires subprocess.Popen()') ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class SubprocessMixin: def test_stdin_stdout(self): diff -Nru orig/Lib/test/test_asyncio/test_unix_events.py modified/Lib/test/test_asyncio/test_unix_events.py --- orig/Lib/test/test_asyncio/test_unix_events.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_unix_events.py 2016-02-16 17:22:13.000000000 +0800 ++++ modified/Lib/test/test_asyncio/test_unix_events.py 2016-02-17 10:15:42.000000000 +0800 @@ -230,6 +230,7 @@ @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), @@ -9523,38 +9563,30 @@ diff -Nru orig/Lib/test/test_asyncio/test_unix_events.py modified/Lib/test/test_ )) -+@unittest.skipUnless(hasattr(os, 'waitpid'), 'os.waitpid() is required') ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class ChildWatcherTestsMixin: ignore_warnings = mock.patch.object(log.logger, "warning") diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py --- orig/Lib/test/test_base64.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_base64.py 2016-02-16 15:50:14.000000000 +0800 -@@ -3,6 +3,7 @@ - import base64 - import binascii - import os -+import subprocess - from array import array - from test.support import script_helper - -@@ -619,7 +620,7 @@ ++++ modified/Lib/test/test_base64.py 2016-02-17 09:41:37.000000000 +0800 +@@ -619,7 +619,7 @@ def test_ErrorHeritage(self): self.assertTrue(issubclass(binascii.Error, ValueError)) - -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class TestMain(unittest.TestCase): def tearDown(self): if os.path.exists(support.TESTFN): diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py --- orig/Lib/test/test_capi.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_capi.py 2016-02-16 15:50:14.000000000 +0800 ++++ modified/Lib/test/test_capi.py 2016-02-17 09:41:32.000000000 +0800 @@ -49,6 +49,7 @@ self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test") @unittest.skipUnless(threading, 'Threading required for this test.') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_no_FatalError_infinite_loop(self): with support.SuppressCrashReport(): p = subprocess.Popen([sys.executable, "-c", @@ -9568,12 +9600,12 @@ diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py --- orig/Lib/test/test_cmd_line.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_cmd_line.py 2016-02-16 15:50:13.000000000 +0800 ++++ modified/Lib/test/test_cmd_line.py 2016-02-17 09:41:27.000000000 +0800 @@ -57,6 +57,7 @@ rc, out, err = assert_python_ok('-vv') self.assertNotIn(b'stack overflow', err) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_xoptions(self): def get_xoptions(*args): # use subprocess module directly because test.support.script_helper adds @@ -9581,7 +9613,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py opts = get_xoptions('-Xa', '-Xb=c,d=e') self.assertEqual(opts, {'a': True, 'b': 'c,d=e'}) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_showrefcount(self): def run_python(*args): # this is similar to assert_python_ok but doesn't strip @@ -9589,7 +9621,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # arguments as unicode (using wmain() instead of main()). @unittest.skipIf(sys.platform == 'win32', 'Windows has a native unicode API') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_undecodable_code(self): undecodable = b"\xff" env = os.environ.copy() @@ -9597,7 +9629,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py ) check_output(text) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_unbuffered_output(self): # Test expected operation of the '-u' switch for stream in ('stdout', 'stderr'): @@ -9605,7 +9637,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # for empty and unset PYTHONPATH self.assertEqual(out1, out2) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_displayhook_unencodable(self): for encoding in ('ascii', 'latin-1', 'utf-8'): # We are testing a PYTHON environment variable here, so we can't @@ -9613,7 +9645,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py escaped = repr(text).encode(encoding, 'backslashreplace') self.assertIn(escaped, data) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def check_input(self, code, expected): with tempfile.NamedTemporaryFile("wb+") as stdin: sep = os.linesep.encode('ASCII') @@ -9621,7 +9653,7 @@ diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py # Issue #7111: Python should work without standard streams @unittest.skipIf(os.name != 'posix', "test needs POSIX semantics") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def _test_no_stdio(self, streams): code = """if 1: import os, sys @@ -9640,12 +9672,12 @@ diff -Nru orig/Lib/test/test_compileall.py modified/Lib/test/test_compileall.py compileall.compile_dir(self.directory, workers=-1) diff -Nru orig/Lib/test/test_concurrent_futures.py modified/Lib/test/test_concurrent_futures.py --- orig/Lib/test/test_concurrent_futures.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_concurrent_futures.py 2016-02-16 17:06:07.000000000 +0800 ++++ modified/Lib/test/test_concurrent_futures.py 2016-02-17 09:48:08.000000000 +0800 @@ -91,6 +91,7 @@ executor_type = futures.ThreadPoolExecutor -+@unittest.skipUnless(hasattr(os, 'fork'), 'os.fork() does not exist on this platform') ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class ProcessPoolMixin(ExecutorMixin): executor_type = futures.ProcessPoolExecutor @@ -9668,18 +9700,18 @@ diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py diff -Nru orig/Lib/test/test_eintr.py modified/Lib/test/test_eintr.py --- orig/Lib/test/test_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_eintr.py 2016-02-16 15:50:13.000000000 +0800 ++++ modified/Lib/test/test_eintr.py 2016-02-17 09:41:22.000000000 +0800 @@ -9,6 +9,7 @@ @unittest.skipUnless(os.name == "posix", "only supported on Unix") -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class EINTRTests(unittest.TestCase): @unittest.skipUnless(hasattr(signal, "setitimer"), "requires setitimer()") diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler.py --- orig/Lib/test/test_faulthandler.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_faulthandler.py 2016-02-16 15:50:12.000000000 +0800 ++++ modified/Lib/test/test_faulthandler.py 2016-02-17 09:41:16.000000000 +0800 @@ -24,6 +24,7 @@ TIMEOUT = 0.5 @@ -9708,7 +9740,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler finally: sys.stderr = orig_stderr -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_disabled_by_default(self): # By default, the module should be disabled code = "import faulthandler; print(faulthandler.is_enabled())" @@ -9716,7 +9748,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"False") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_sys_xoptions(self): # Test python -X faulthandler code = "import faulthandler; print(faulthandler.is_enabled())" @@ -9724,7 +9756,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler output = subprocess.check_output(args, env=env) self.assertEqual(output.rstrip(), b"True") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_env_var(self): # empty env var code = "import faulthandler; print(faulthandler.is_enabled())" @@ -9758,30 +9790,38 @@ diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py def setUp(self): diff -Nru orig/Lib/test/test_file_eintr.py modified/Lib/test/test_file_eintr.py --- orig/Lib/test/test_file_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_file_eintr.py 2016-02-16 15:50:11.000000000 +0800 ++++ modified/Lib/test/test_file_eintr.py 2016-02-17 09:41:13.000000000 +0800 @@ -69,6 +69,7 @@ self.fail('Error from IO process %s:\nSTDOUT:\n%sSTDERR:\n%s\n' % (why, stdout.decode(), stderr.decode())) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def _test_reading(self, data_to_write, read_and_verify_code): """Generic buffered read method test harness to validate EINTR behavior. diff -Nru orig/Lib/test/test_gc.py modified/Lib/test/test_gc.py --- orig/Lib/test/test_gc.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gc.py 2016-02-16 15:50:11.000000000 +0800 -@@ -650,6 +650,8 @@ ++++ modified/Lib/test/test_gc.py 2016-02-17 09:41:09.000000000 +0800 +@@ -4,6 +4,7 @@ + temp_dir) + from test.support.script_helper import assert_python_ok, make_script + ++import os + import sys + import time + import gc +@@ -650,6 +651,8 @@ del x gc.set_debug(%s) """ + -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def run_command(code): p = subprocess.Popen([sys.executable, "-Wd", "-c", code], stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py --- orig/Lib/test/test_gdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gdb.py 2016-02-16 16:48:39.000000000 +0800 ++++ modified/Lib/test/test_gdb.py 2016-02-17 09:37:53.000000000 +0800 @@ -5,7 +5,6 @@ import os @@ -9803,7 +9843,7 @@ diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py # errors that manifest this way too. raise unittest.SkipTest("Couldn't find gdb on the path") + except RuntimeError: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++ raise unittest.SkipTest('Test requires support for subprocesses.') # Regex to parse: # 'GNU gdb (GDB; SUSE Linux Enterprise 12) 7.7\n' -> 7.7 @@ -9827,7 +9867,7 @@ diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.py --- orig/Lib/test/test_httpservers.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_httpservers.py 2016-02-16 15:50:10.000000000 +0800 ++++ modified/Lib/test/test_httpservers.py 2016-02-17 09:40:47.000000000 +0800 @@ -16,6 +16,7 @@ import urllib.parse import html @@ -9854,7 +9894,7 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p @unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, "This test can't be run reliably as root (issue #13308).") -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class CGIHTTPServerTestCase(BaseTestCase): class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler): pass @@ -9965,7 +10005,7 @@ diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_tool.py --- orig/Lib/test/test_json/test_tool.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_json/test_tool.py 2016-02-16 15:50:09.000000000 +0800 ++++ modified/Lib/test/test_json/test_tool.py 2016-02-17 09:40:44.000000000 +0800 @@ -7,6 +7,7 @@ from test.support.script_helper import assert_python_ok @@ -9978,18 +10018,18 @@ diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_ ] """) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_stdin_stdout(self): with subprocess.Popen( (sys.executable, '-m', 'json.tool'), diff -Nru orig/Lib/test/test_keyword.py modified/Lib/test/test_keyword.py --- orig/Lib/test/test_keyword.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_keyword.py 2016-02-16 15:50:08.000000000 +0800 ++++ modified/Lib/test/test_keyword.py 2016-02-17 09:40:38.000000000 +0800 @@ -46,6 +46,7 @@ fp.writelines(lines[:lines.index(b"#--start keywords--" + nl) + 1]) fp.writelines(lines[lines.index(b"#--end keywords--" + nl):]) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def _generate_keywords(self, grammar_file, target_keyword_py_file): proc = subprocess.Popen([sys.executable, KEYWORD_FILE, @@ -10091,13 +10131,13 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py f = open(TESTFN, 'w+b') diff -Nru orig/Lib/test/test_multiprocessing_fork.py modified/Lib/test/test_multiprocessing_fork.py --- orig/Lib/test/test_multiprocessing_fork.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_fork.py 2016-02-16 19:53:54.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_fork.py 2016-02-17 09:38:08.000000000 +0800 @@ -1,7 +1,13 @@ -+import subprocess ++import os import unittest + -+if not subprocess.supported: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++if not os.allows_subprocesses: ++ raise unittest.SkipTest('Test requires support for subprocesses.') + import test._test_multiprocessing @@ -10108,13 +10148,13 @@ diff -Nru orig/Lib/test/test_multiprocessing_fork.py modified/Lib/test/test_mult unittest.main() diff -Nru orig/Lib/test/test_multiprocessing_forkserver.py modified/Lib/test/test_multiprocessing_forkserver.py --- orig/Lib/test/test_multiprocessing_forkserver.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_forkserver.py 2016-02-16 19:53:21.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_forkserver.py 2016-02-17 09:37:46.000000000 +0800 @@ -1,7 +1,13 @@ -+import subprocess ++import os import unittest + -+if not subprocess.supported: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++if not os.allows_subprocesses: ++ raise unittest.SkipTest('Test requires support for subprocesses.') + import test._test_multiprocessing @@ -10125,13 +10165,13 @@ diff -Nru orig/Lib/test/test_multiprocessing_forkserver.py modified/Lib/test/tes unittest.main() diff -Nru orig/Lib/test/test_multiprocessing_spawn.py modified/Lib/test/test_multiprocessing_spawn.py --- orig/Lib/test/test_multiprocessing_spawn.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_spawn.py 2016-02-16 19:53:43.000000000 +0800 ++++ modified/Lib/test/test_multiprocessing_spawn.py 2016-02-17 09:37:41.000000000 +0800 @@ -1,7 +1,13 @@ -+import subprocess ++import os import unittest + -+if not subprocess.supported: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++if not os.allows_subprocesses: ++ raise unittest.SkipTest('Test requires support for subprocesses.') + import test._test_multiprocessing @@ -10142,12 +10182,12 @@ diff -Nru orig/Lib/test/test_multiprocessing_spawn.py modified/Lib/test/test_mul unittest.main() diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py --- orig/Lib/test/test_os.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_os.py 2016-02-16 15:50:07.000000000 +0800 ++++ modified/Lib/test/test_os.py 2016-02-17 09:51:58.000000000 +0800 @@ -657,6 +657,7 @@ # Bug 1110478 @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_update2(self): os.environ.clear() os.environ.update(HELLO="World") @@ -10155,91 +10195,101 @@ diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py self.assertEqual(value, "World") @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_os_popen_iter(self): with os.popen( "/bin/sh -c 'echo \"line1\nline2\nline3\"'") as popen: -@@ -1343,6 +1345,7 @@ +@@ -1343,6 +1345,8 @@ os.execve = orig_execve os.defpath = orig_defpath +@unittest.skipUnless(hasattr(os, 'execv'), "os module doesn't provide execvpe()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class ExecTests(unittest.TestCase): @unittest.skipIf(USING_LINUXTHREADS, "avoid triggering a linuxthreads bug: see issue #4970") -@@ -1604,6 +1607,7 @@ +@@ -1604,6 +1608,7 @@ self.assertRaises(OverflowError, os.setreuid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_setreuid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -1612,6 +1616,7 @@ +@@ -1612,6 +1617,7 @@ 'import os,sys;os.setreuid(-1,-1);sys.exit(0)']) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_setregid(self): if os.getuid() != 0 and not HAVE_WHEEL_GROUP: self.assertRaises(OSError, os.setregid, 0, 0) -@@ -1619,6 +1624,7 @@ +@@ -1619,6 +1625,7 @@ self.assertRaises(OverflowError, os.setregid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_setregid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -2075,6 +2081,7 @@ +@@ -2075,6 +2082,7 @@ class PidTests(unittest.TestCase): @unittest.skipUnless(hasattr(os, 'getppid'), "test needs os.getppid") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_getppid(self): p = subprocess.Popen([sys.executable, '-c', 'import os; print(os.getppid())'], -@@ -2083,6 +2090,8 @@ +@@ -2083,6 +2091,9 @@ # We are the parent of our subprocess self.assertEqual(int(stdout), os.getpid()) + @unittest.skipUnless(hasattr(os, 'spawnv'), "test needs os.spawnv") + @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_waitpid(self): args = [sys.executable, '-c', 'pass'] pid = os.spawnv(os.P_NOWAIT, args[0], args) -@@ -2548,6 +2557,7 @@ +@@ -2548,6 +2559,7 @@ self.assertGreaterEqual(size.columns, 0) self.assertGreaterEqual(size.lines, 0) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_stty_match(self): """Check if stty returns the same results diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py --- orig/Lib/test/test_pdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pdb.py 2016-02-16 15:50:07.000000000 +0800 -@@ -914,6 +914,7 @@ ++++ modified/Lib/test/test_pdb.py 2016-02-17 09:40:08.000000000 +0800 +@@ -1,6 +1,7 @@ + # A test suite for pdb; not very comprehensive at the moment. + + import doctest ++import os + import pdb + import sys + import types +@@ -914,6 +915,7 @@ class PdbTestCase(unittest.TestCase): -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def run_pdb(self, script, commands): """Run 'script' lines with pdb and the pdb 'commands'.""" filename = 'main.py' -@@ -962,6 +963,7 @@ +@@ -962,6 +964,7 @@ ('bar', 4), ) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_issue7964(self): # open the file as binary so we can force \r\n newline with open(support.TESTFN, 'wb') as f: -@@ -1013,6 +1015,7 @@ +@@ -1013,6 +1016,7 @@ any('main.py(5)foo()->None' in l for l in stdout.splitlines()), 'Fail to step into the caller after a return') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_issue13210(self): # invoking "continue" on a non-main thread triggered an exception # inside signal.signal @@ -10309,7 +10359,7 @@ diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py for f in (TESTFN, TESTFN2): diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py --- orig/Lib/test/test_platform.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_platform.py 2016-02-16 15:50:06.000000000 +0800 ++++ modified/Lib/test/test_platform.py 2016-02-17 09:39:54.000000000 +0800 @@ -9,11 +9,13 @@ from test import support @@ -10320,7 +10370,7 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py res = platform.architecture() @support.skip_unless_symlink -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_architecture_via_symlink(self): # issue3762 # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. @@ -10345,13 +10395,13 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py ): self.assertEqual(platform._parse_release_file(input), output) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_popen(self): mswindows = (sys.platform == "win32") diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py --- orig/Lib/test/test_poll.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_poll.py 2016-02-16 15:50:05.000000000 +0800 ++++ modified/Lib/test/test_poll.py 2016-02-17 09:39:49.000000000 +0800 @@ -25,6 +25,7 @@ match.append(fd) return match @@ -10364,34 +10414,33 @@ diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py # Another test case for poll(). This is copied from the test case for # select(), modified to use poll() instead. -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_poll2(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py --- orig/Lib/test/test_popen.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_popen.py 2016-02-16 15:50:04.000000000 +0800 -@@ -5,7 +5,9 @@ ++++ modified/Lib/test/test_popen.py 2016-02-17 09:39:36.000000000 +0800 +@@ -5,7 +5,8 @@ import unittest from test import support -import os, sys +import os -+import subprocess +import sys # Test that command-lines get down as we expect. # To do this we execute: -@@ -16,6 +18,8 @@ +@@ -16,6 +17,8 @@ if ' ' in python: python = '"' + python + '"' # quote embedded space for cmdline + -+@unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class PopenTest(unittest.TestCase): def _do_test_commandline(self, cmdline, expected): -@@ -23,7 +27,7 @@ +@@ -23,7 +26,7 @@ cmd = cmd % (python, cmdline) with os.popen(cmd) as p: data = p.read() @@ -10402,18 +10451,16 @@ diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py def test_popen(self): diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py --- orig/Lib/test/test_posix.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_posix.py 2016-02-16 15:50:04.000000000 +0800 -@@ -11,8 +11,8 @@ ++++ modified/Lib/test/test_posix.py 2016-02-17 11:00:48.000000000 +0800 +@@ -11,7 +11,6 @@ import os import platform import pwd -import shutil import stat -+import subprocess import tempfile import unittest - import warnings -@@ -20,6 +20,7 @@ +@@ -20,6 +19,7 @@ _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(), support.TESTFN + '-dummy-symlink') @@ -10421,50 +10468,99 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py class PosixTester(unittest.TestCase): def setUp(self): -@@ -529,9 +530,10 @@ +@@ -40,17 +40,24 @@ + def testNoArgFunctions(self): + # test posix functions which take no arguments and have + # no side-effects which we need to cleanup (e.g., fork, wait, abort) +- NO_ARG_FUNCTIONS = [ "ctermid", "getcwd", "getcwdb", "uname", +- "times", "getloadavg", +- "getegid", "geteuid", "getgid", "getgroups", +- "getpid", "getpgrp", "getppid", "getuid", "sync", +- ] ++ NO_ARG_FUNCTIONS = [ ++ "ctermid", "getcwd", "getcwdb", "uname", ++ "times", "getloadavg", ++ "getegid", "geteuid", "getgid", ++ "getpid", "getpgrp", "getppid", "getuid", "sync", ++ ] ++ ++ if sys.platform != 'ios': ++ NO_ARG_FUNCTIONS.append("getgroups") + + for name in NO_ARG_FUNCTIONS: + posix_func = getattr(posix, name, None) + if posix_func is not None: +- posix_func() +- self.assertRaises(TypeError, posix_func, 1) ++ try: ++ posix_func() ++ self.assertRaises(TypeError, posix_func, 1) ++ except Exception as e: ++ self.fail('Problem invoking %s: %s' % (name, e)) + + @unittest.skipUnless(hasattr(posix, 'getresuid'), + 'test needs posix.getresuid()') +@@ -529,9 +536,10 @@ check_stat(uid, gid) self.assertRaises(OSError, chown_func, first_param, 0, -1) check_stat(uid, gid) - if 0 not in os.getgroups(): - self.assertRaises(OSError, chown_func, first_param, -1, 0) - check_stat(uid, gid) -+ if hasattr(os, 'getgroups'): ++ if hasattr(os, 'getgroups') and sys.platform != 'ios': + if 0 not in os.getgroups(): + self.assertRaises(OSError, chown_func, first_param, -1, 0) + check_stat(uid, gid) # test illegal types for t in str, float: self.assertRaises(TypeError, chown_func, first_param, t(uid), gid) -@@ -791,8 +793,8 @@ +@@ -791,8 +799,8 @@ group = pwd.getpwuid(os.getuid())[3] self.assertIn(group, posix.getgrouplist(user, group)) - @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_getgroups(self): with os.popen('id -G 2>/dev/null') as idg: groups = idg.read().strip() +@@ -1040,7 +1048,7 @@ + self.assertIsInstance(hi, int) + self.assertGreaterEqual(hi, lo) + # OSX evidently just returns 15 without checking the argument. +- if sys.platform != "darwin": ++ if sys.platform not in("darwin", "ios"): + self.assertRaises(OSError, posix.sched_get_priority_min, -23) + self.assertRaises(OSError, posix.sched_get_priority_max, -23) + +@@ -1212,6 +1220,7 @@ + open(fn, 'wb').close() + self.assertRaises(ValueError, os.stat, fn_with_NUL) + ++ + class PosixGroupsTester(unittest.TestCase): + + def setUp(self): diff -Nru orig/Lib/test/test_pty.py modified/Lib/test/test_pty.py --- orig/Lib/test/test_pty.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pty.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_pty.py 2016-02-17 09:52:41.000000000 +0800 @@ -111,7 +111,7 @@ os.close(slave_fd) os.close(master_fd) - -+ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_fork(self): debug("calling pty.fork()") pid, master_fd = pty.fork() diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py --- orig/Lib/test/test_quopri.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_quopri.py 2016-02-16 15:50:03.000000000 +0800 ++++ modified/Lib/test/test_quopri.py 2016-02-17 09:39:28.000000000 +0800 @@ -180,6 +180,7 @@ for p, e in self.HSTRINGS: self.assertEqual(quopri.decodestring(e, header=True), p) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_scriptencode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri"], @@ -10472,62 +10568,64 @@ diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py self.assertEqual(cout[i], e[i]) self.assertEqual(cout, e) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_scriptdecode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri", "-d"], diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_helper.py --- orig/Lib/test/test_script_helper.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_script_helper.py 2016-02-16 15:51:53.000000000 +0800 -@@ -34,6 +34,7 @@ ++++ modified/Lib/test/test_script_helper.py 2016-02-17 09:38:53.000000000 +0800 +@@ -1,5 +1,6 @@ + """Unittests for test.support.script_helper. Who tests the test helper?""" + ++import os + import subprocess + import sys + from test.support import script_helper +@@ -34,6 +35,7 @@ self.assertIn('import sys; sys.exit(0)', error_msg, msg='unexpected command line.') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @mock.patch('subprocess.Popen') def test_assert_python_isolated_when_env_not_required(self, mock_popen): with mock.patch.object(script_helper, -@@ -52,6 +53,7 @@ +@@ -52,6 +54,7 @@ self.assertIn('-I', popen_command) self.assertNotIn('-E', popen_command) # -I overrides this -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @mock.patch('subprocess.Popen') def test_assert_python_not_isolated_when_env_is_required(self, mock_popen): """Ensure that -I is not passed when the environment is required.""" -@@ -81,6 +83,7 @@ +@@ -81,6 +84,7 @@ # Reset the private cached state. script_helper.__dict__['__cached_interp_requires_environment'] = None -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_true(self, mock_check_call): mock_check_call.side_effect = subprocess.CalledProcessError('', '') -@@ -88,6 +91,7 @@ +@@ -88,6 +92,7 @@ self.assertTrue(script_helper.interpreter_requires_environment()) self.assertEqual(1, mock_check_call.call_count) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_false(self, mock_check_call): # The mocked subprocess.check_call fakes a no-error process. -@@ -95,6 +99,7 @@ +@@ -95,6 +100,7 @@ self.assertFalse(script_helper.interpreter_requires_environment()) self.assertEqual(1, mock_check_call.call_count) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.check_call()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @mock.patch('subprocess.check_call') def test_interpreter_requires_environment_details(self, mock_check_call): script_helper.interpreter_requires_environment() diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py --- orig/Lib/test/test_select.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_select.py 2016-02-16 15:50:01.000000000 +0800 -@@ -1,11 +1,13 @@ - import errno - import os - import select -+import subprocess - import sys ++++ modified/Lib/test/test_select.py 2016-02-17 09:38:45.000000000 +0800 +@@ -5,7 +5,8 @@ import unittest from test import support @@ -10537,17 +10635,17 @@ diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py "can't easily test on this system") class SelectTestCase(unittest.TestCase): -@@ -44,6 +46,7 @@ +@@ -44,6 +45,7 @@ self.assertIsNot(r, x) self.assertIsNot(w, x) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_select(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' p = os.popen(cmd, 'r') diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py --- orig/Lib/test/test_shutil.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_shutil.py 2016-02-16 15:50:01.000000000 +0800 ++++ modified/Lib/test/test_shutil.py 2016-02-17 09:38:37.000000000 +0800 @@ -51,6 +51,7 @@ except ImportError: ZIP_SUPPORT = shutil.which('zip') @@ -10568,24 +10666,24 @@ diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py self.assertEqual(size.lines, 888) @unittest.skipUnless(os.isatty(sys.__stdout__.fileno()), "not on tty") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_stty_match(self): """Check if stty returns the same results ignoring env diff -Nru orig/Lib/test/test_signal.py modified/Lib/test/test_signal.py --- orig/Lib/test/test_signal.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_signal.py 2016-02-16 15:50:00.000000000 +0800 ++++ modified/Lib/test/test_signal.py 2016-02-17 09:38:33.000000000 +0800 @@ -158,6 +158,7 @@ @unittest.skipIf(sys.platform=='freebsd6', 'inter process signals not reliable (do not mix well with threading) ' 'on freebsd6') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_main(self): # This function spawns a child process to insulate the main # test-running process from all the signals. It then diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py --- orig/Lib/test/test_site.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_site.py 2016-02-16 15:49:59.000000000 +0800 ++++ modified/Lib/test/test_site.py 2016-02-17 09:38:29.000000000 +0800 @@ -31,6 +31,7 @@ os.makedirs(site.USER_SITE) site.addsitedir(site.USER_SITE) @@ -10598,7 +10696,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 " "user-site (site.ENABLE_USER_SITE)") -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_s_option(self): usersite = site.USER_SITE self.assertIn(usersite, sys.path) @@ -10615,7 +10713,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py """Restore sys.path""" sys.path[:] = self.sys_path -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_abs_paths(self): # Make sure all imported modules have their __file__ and __cached__ # attributes as absolute paths. Arranging to put the Lib directory on @@ -10623,7 +10721,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py class StartupImportTests(unittest.TestCase): -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_startup_imports(self): # This tests checks which modules are loaded by Python when it # initially starts upon startup. @@ -10746,7 +10844,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py SendrecvmsgUnixStreamTestBase): diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver.py --- orig/Lib/test/test_socketserver.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_socketserver.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_socketserver.py 2016-02-17 11:02:33.000000000 +0800 @@ -7,7 +7,7 @@ import select import signal @@ -10756,8 +10854,12 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver import errno import tempfile import unittest -@@ -31,6 +31,7 @@ - HAVE_FORKING = hasattr(os, "fork") +@@ -28,9 +28,10 @@ + HAVE_UNIX_SOCKETS = hasattr(socket, "AF_UNIX") + requires_unix_sockets = unittest.skipUnless(HAVE_UNIX_SOCKETS, + 'requires Unix sockets') +-HAVE_FORKING = hasattr(os, "fork") ++HAVE_FORKING = hasattr(os, "fork") and os.allows_subprocesses requires_forking = unittest.skipUnless(HAVE_FORKING, 'requires forking') + @@ -10781,7 +10883,7 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver socketserver.StreamRequestHandler, diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_encoding.py --- orig/Lib/test/test_source_encoding.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_source_encoding.py 2016-02-16 15:49:58.000000000 +0800 ++++ modified/Lib/test/test_source_encoding.py 2016-02-17 09:38:26.000000000 +0800 @@ -7,6 +7,7 @@ import sys import subprocess @@ -10794,19 +10896,19 @@ diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_en # two bytes in common with the UTF-8 BOM self.assertRaises(SyntaxError, eval, b'\xef\xbb\x20') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_20731(self): sub = subprocess.Popen([sys.executable, os.path.join(os.path.dirname(__file__), diff -Nru orig/Lib/test/test_subprocess.py modified/Lib/test/test_subprocess.py --- orig/Lib/test/test_subprocess.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_subprocess.py 2016-02-16 19:32:13.000000000 +0800 ++++ modified/Lib/test/test_subprocess.py 2016-02-17 09:36:48.000000000 +0800 @@ -26,6 +26,9 @@ mswindows = (sys.platform == "win32") -+if not subprocess.supported: -+ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++if not os.allows_subprocesses: ++ raise unittest.SkipTest('Test requires support for subprocesses.') + # # Depends on the following external programs: Python @@ -10826,7 +10928,7 @@ diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py import distutils.unixccompiler diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py --- orig/Lib/test/test_sys.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sys.py 2016-02-16 15:49:57.000000000 +0800 ++++ modified/Lib/test/test_sys.py 2016-02-17 09:38:18.000000000 +0800 @@ -20,6 +20,7 @@ except ImportError: threading = None @@ -10839,7 +10941,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py finally: sys.setrecursionlimit(oldlimit) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_recursionlimit_fatalerror(self): # A fatal error occurs if a second recursion limit is hit when recovering # from a first one. @@ -10847,7 +10949,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py def test_clear_type_cache(self): sys._clear_type_cache() -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_ioencoding(self): env = dict(os.environ) @@ -10855,7 +10957,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py @unittest.skipUnless(test.support.FS_NONASCII, 'requires OS support of non-ASCII encodings') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_ioencoding_nonascii(self): env = dict(os.environ) @@ -10863,7 +10965,7 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py @unittest.skipIf(sys.base_prefix != sys.prefix, 'Test is not venv-compatible') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_executable(self): # sys.executable should be absolute self.assertEqual(os.path.abspath(sys.executable), sys.executable) @@ -10871,13 +10973,13 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py expected = None self.check_fsencoding(fs_encoding, expected) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def c_locale_get_error_handler(self, isolated=False, encoding=None): # Force the POSIX locale env = os.environ.copy() diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py --- orig/Lib/test/test_sysconfig.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sysconfig.py 2016-02-16 15:49:56.000000000 +0800 ++++ modified/Lib/test/test_sysconfig.py 2016-02-17 09:42:01.000000000 +0800 @@ -15,6 +15,7 @@ get_scheme_names, get_config_var, _main) import _osx_support @@ -10896,13 +10998,25 @@ diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py self.assertEqual(get_scheme_names(), wanted) @skip_unless_symlink -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_symlink(self): # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. +diff -Nru orig/Lib/test/test_tempfile.py modified/Lib/test/test_tempfile.py +--- orig/Lib/test/test_tempfile.py 2015-12-07 09:39:09.000000000 +0800 ++++ modified/Lib/test/test_tempfile.py 2016-02-17 11:43:31.000000000 +0800 +@@ -23,7 +23,7 @@ + has_stat = 0 + + has_textmode = (tempfile._text_openflags != tempfile._bin_openflags) +-has_spawnl = hasattr(os, 'spawnl') ++has_spawnl = hasattr(os, 'spawnl') and os.allows_subprocesses + + # TEST_FILES may need to be tweaked for systems depending on the maximum + # number of files that can be opened at one time (see ulimit -n) diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py --- orig/Lib/test/test_thread.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_thread.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Lib/test/test_thread.py 2016-02-17 09:53:21.000000000 +0800 @@ -14,12 +14,14 @@ _print_mutex = thread.allocate_lock() @@ -10922,7 +11036,7 @@ diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py @unittest.skipIf(sys.platform.startswith('win'), "This test is only appropriate for POSIX-like systems.") -+ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') @support.reap_threads def test_forkinthread(self): def thread1(): @@ -10947,20 +11061,22 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py # Python code returned but before the thread state is deleted. diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py --- orig/Lib/test/test_traceback.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_traceback.py 2016-02-16 15:49:56.000000000 +0800 -@@ -6,6 +6,7 @@ ++++ modified/Lib/test/test_traceback.py 2016-02-17 11:55:04.000000000 +0800 +@@ -5,7 +5,9 @@ + import linecache import sys import unittest ++import os import re +import subprocess from test import support from test.support import TESTFN, Error, captured_output, unlink, cpython_only from test.support.script_helper import assert_python_ok -@@ -110,11 +111,12 @@ +@@ -110,11 +112,12 @@ err = traceback.format_exception_only(None, None) self.assertEqual(err, ['None\n']) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_encoded_file(self): # Test that tracebacks are correctly printed for encoded source files: # - correct line number (Issue2384) @@ -10972,15 +11088,15 @@ diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py # encoding may be different from the current interpreter, on Windows diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.py --- orig/Lib/test/test_unicodedata.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_unicodedata.py 2016-02-16 15:49:55.000000000 +0800 -@@ -9,6 +9,7 @@ ++++ modified/Lib/test/test_unicodedata.py 2016-02-17 09:41:56.000000000 +0800 +@@ -6,6 +6,7 @@ + + """ + ++import os import sys import unittest import hashlib -+import subprocess - from test.support import script_helper - - encoding = 'utf-8' @@ -222,8 +223,10 @@ self.assertEqual(eaw('\u2010'), 'A') self.assertEqual(eaw('\U00020000'), 'W') @@ -10988,7 +11104,7 @@ diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.p + class UnicodeMiscTest(UnicodeDatabaseTest): -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_failed_import_during_compiling(self): # Issue 4367 # Decoding \N escapes requires the unicodedata module. If it can't be @@ -11024,7 +11140,7 @@ diff -Nru orig/Lib/test/test_urllib2net.py modified/Lib/test/test_urllib2net.py with support.transient_internet(redirect_url_with_frag): diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py --- orig/Lib/test/test_uuid.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_uuid.py 2016-02-16 15:49:54.000000000 +0800 ++++ modified/Lib/test/test_uuid.py 2016-02-17 10:14:39.000000000 +0800 @@ -14,6 +14,7 @@ except: return False @@ -11037,7 +11153,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py equal(str(u), v) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def testIssue8621(self): # On at least some versions of OSX uuid.uuid4 generates # the same sequence of UUIDs in the parent and any @@ -11045,7 +11161,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py class TestInternals(unittest.TestCase): @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_find_mac(self): data = ''' fake hwaddr @@ -11053,7 +11169,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py "%s is not an RFC 4122 node ID" % hex) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_ifconfig_getnode(self): node = uuid._ifconfig_getnode() self.check_node(node, 'ifconfig', True) @@ -11061,7 +11177,7 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py self.check_node(node, 'ip', True) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_arp_getnode(self): node = uuid._arp_getnode() self.check_node(node, 'arp', True) @@ -11069,13 +11185,13 @@ diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py self.check_node(node, 'lanscan', True) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_netstat_getnode(self): node = uuid._netstat_getnode() self.check_node(node, 'netstat', True) diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py --- orig/Lib/test/test_venv.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_venv.py 2016-02-16 15:49:46.000000000 +0800 ++++ modified/Lib/test/test_venv.py 2016-02-17 09:41:45.000000000 +0800 @@ -35,6 +35,7 @@ def failsOnWindows(f): return f @@ -11088,7 +11204,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) @skipInVenv -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_prefixes(self): """ Test that the prefix values are as expected. @@ -11096,7 +11212,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py # point to the venv being used to run the test, and we lose the link # to the source build - so Python can't initialise properly. @skipInVenv -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_executable(self): """ Test that the sys.executable value is as expected. @@ -11104,7 +11220,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py self.assertEqual(out.strip(), envpy.encode()) @unittest.skipUnless(can_symlink(), 'Needs symlinks') -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_executable_symlinks(self): """ Test that the sys.executable value is as expected. @@ -11112,7 +11228,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py @skipInVenv class EnsurePipTest(BaseTest): """Test venv module installation of pip.""" -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def assert_pip_not_installed(self): envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) @@ -11120,7 +11236,7 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py # Requesting pip fails without SSL (http://bugs.python.org/issue19744) @unittest.skipIf(ssl is None, ensurepip._MISSING_SSL_MESSAGE) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_with_pip(self): rmtree(self.env_dir) with EnvironmentVarGuard() as envvars: @@ -11172,12 +11288,12 @@ diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_b class TestBreak(unittest.TestCase): diff -Nru orig/Lib/unittest/test/test_runner.py modified/Lib/unittest/test/test_runner.py --- orig/Lib/unittest/test/test_runner.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/unittest/test/test_runner.py 2016-02-16 15:49:39.000000000 +0800 ++++ modified/Lib/unittest/test/test_runner.py 2016-02-17 09:41:43.000000000 +0800 @@ -274,6 +274,7 @@ expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY) self.assertEqual(runner._makeResult(), expectedresult) -+ @unittest.skipUnless(subprocess.supported, "Test requires subprocess.Popen()") ++ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') def test_warnings(self): """ Check that warnings argument of TextTestRunner correctly affects the @@ -28921,7 +29037,7 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c r = hypot(x, y); diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c --- orig/Modules/posixmodule.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/posixmodule.c 2016-02-14 10:41:08.000000000 +0800 ++++ modified/Modules/posixmodule.c 2016-02-17 09:05:04.000000000 +0800 @@ -20,6 +20,8 @@ # pragma weak statvfs # pragma weak fstatvfs @@ -28931,31 +29047,15 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* __APPLE__ */ #define PY_SSIZE_T_CLEAN -@@ -175,6 +177,23 @@ +@@ -175,7 +177,6 @@ #endif /* _MSC_VER */ #endif /* ! __WATCOMC__ || __QNX__ */ -+// iOS *defines* a number of POSIX functions, but you can't use them -+// because iOS isn't a conventional multiprocess environment. -+#if TARGET_OS_IPHONE -+# undef HAVE_EXECV -+# undef HAVE_FORK -+# undef HAVE_FORK1 -+# undef HAVE_FORKPTY -+# undef HAVE_GETGROUPS -+# undef HAVE_SCHED_H -+# undef HAVE_SENDFILE -+# undef HAVE_SETPRIORITY -+# undef HAVE_SPAWNV -+# undef HAVE_WAIT -+# undef HAVE_WAIT3 -+# undef HAVE_WAIT4 -+# undef HAVE_WAITPID -+#endif /* TARGET_OS_IPHONE */ - +- /*[clinic input] # one of the few times we lie about this name! -@@ -1127,7 +1146,9 @@ + module os +@@ -1127,7 +1128,9 @@ #include static char **environ; #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) @@ -28965,7 +29065,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* !_MSC_VER */ static PyObject * -@@ -1178,7 +1199,7 @@ +@@ -1178,7 +1181,7 @@ Py_DECREF(k); Py_DECREF(v); } @@ -28974,7 +29074,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c if (environ == NULL) return d; /* This part ignores errors */ -@@ -4285,7 +4306,12 @@ +@@ -4285,7 +4288,12 @@ long result; char *bytes = PyBytes_AsString(command); Py_BEGIN_ALLOW_THREADS @@ -29070,7 +29170,7 @@ diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c n++; diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h --- orig/Python/importlib_external.h 2015-12-07 09:39:11.000000000 +0800 -+++ modified/Python/importlib_external.h 2016-02-16 16:06:55.000000000 +0800 ++++ modified/Python/importlib_external.h 2016-02-17 10:08:14.000000000 +0800 @@ -2,52 +2,52 @@ const unsigned char _Py_M__importlib_external[] = { 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, @@ -34450,7 +34550,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-te \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/main.m --- orig/Tools/iOS-test/iOS-test/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-16 19:55:51.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-17 11:57:08.000000000 +0800 @@ -0,0 +1,149 @@ +// +// main.m From bb5695432d007ba2bc777efde91b608c5d115f6a Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 17 Feb 2016 12:07:08 +0800 Subject: [PATCH 05/15] Added unittest and lib2to3 back into distribution list. --- patch/Python/lib-exclude.lst | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/patch/Python/lib-exclude.lst b/patch/Python/lib-exclude.lst index d931a4a..88b5ef8 100644 --- a/patch/Python/lib-exclude.lst +++ b/patch/Python/lib-exclude.lst @@ -1,16 +1,15 @@ -bsddb/* -config-*/* -ctypes/test/* -curses/* +bsddb +config-* +ctypes/test +curses distutils/tests -ensurepip/* -hotshot/* -idlelib/* -lib*/* -site-packages/* +ensurepip +hotshot +idlelib +lib2to3/tests +site-packages sqlite3/test -*test*/* -tkinter/* -turtledemo/* -wsgiref/* -*.pyc +test +turtle.py +turtledemo +wsgiref From 3c4aede35903a9a5c081aedfbb35b9088c661270 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 17 Feb 2016 14:10:32 +0800 Subject: [PATCH 06/15] Added LZMA to the build. --- Makefile | 31 ++++++++++++++++++++----------- patch/Python/Setup.embedded | 2 +- patch/Python/lib-exclude.lst | 25 ++++++++++++------------- 3 files changed, 33 insertions(+), 25 deletions(-) diff --git a/Makefile b/Makefile index 7d37eb0..ef85263 100644 --- a/Makefile +++ b/Makefile @@ -57,8 +57,9 @@ CFLAGS-watchOS=-mwatchos-version-min=2.0 CFLAGS-watchos.armv7k= -fembed-bitcode PYTHON_CONFIGURE-watchOS=ac_cv_func_sigaltstack=no -# override machine for arm64 -MACHINE-arm64=aarch64 +# override machine types for arm64 +MACHINE_DETAILED-arm64=aarch64 +MACHINE_SIMPLE-arm64=arm all: $(foreach os,$(OS),$(os)) @@ -160,16 +161,22 @@ $(PYTHON_DIR-host)/dist/bin/python$(PYTHON_VER): $(PYTHON_DIR-host)/Makefile # - $2 - OS define build-target ARCH-$1= $$(subst .,,$$(suffix $1)) -ifdef MACHINE-$$(ARCH-$1) -MACHINE-$1= $$(MACHINE-$$(ARCH-$1)) +ifdef MACHINE_DETAILED-$$(ARCH-$1) +MACHINE_DETAILED-$1= $$(MACHINE_DETAILED-$$(ARCH-$1)) else -MACHINE-$1= $$(ARCH-$1) +MACHINE_DETAILED-$1= $$(ARCH-$1) +endif +ifdef MACHINE_SIMPLE-$$(ARCH-$1) +MACHINE_SIMPLE-$1= $$(MACHINE_SIMPLE-$$(ARCH-$1)) +else +MACHINE_SIMPLE-$1= $$(ARCH-$1) endif SDK-$1= $$(basename $1) SDK_ROOT-$1= $$(shell xcrun --sdk $$(SDK-$1) --show-sdk-path) -CC-$1= xcrun --sdk $$(SDK-$1) clang\ - -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) +CC-$1= xcrun --sdk $$(SDK-$1) clang\ + -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) +LDFLAGS-$1= -arch $$(ARCH-$1) -isysroot=$$(SDK_ROOT-$1) OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 BZIP2_DIR-$1= build/$2/bzip2-$(BZIP2_VERSION)-$1 @@ -230,7 +237,9 @@ $$(XZ_DIR-$1)/Makefile: downloads/xz-$(XZ_VERSION).tgz # Configure the build cd $$(XZ_DIR-$1) && ./configure \ CC="$$(CC-$1)" \ - --host=$$(MACHINE-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ + LDFLAGS="$$(LDFLAGS-$1)" \ + --disable-shared --enable-static \ + --host=$$(MACHINE_SIMPLE-$1)-apple-darwin \ --prefix=$(PROJECT_DIR)/build/$2/xz # Build XZ @@ -250,14 +259,14 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST # Configure target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) ./configure \ CC="$$(CC-$1)" LD="$$(CC-$1)" \ - --host=$$(MACHINE-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ + --host=$$(MACHINE_DETAILED-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ --prefix=$(PROJECT_DIR)/$$(PYTHON_DIR-$1)/dist \ --without-pymalloc --without-doc-strings --disable-ipv6 --without-ensurepip \ ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no \ $$(PYTHON_CONFIGURE-$2) # Build Python -$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: $$(PYTHON_DIR-$1)/Makefile build/$2/OpenSSL.framework build/$2/bzip2/lib/libbz2.a +$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: $$(PYTHON_DIR-$1)/Makefile build/$2/OpenSSL.framework build/$2/bzip2/lib/libbz2.a build/$2/xz/lib/liblzma.a # Build target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) make all install @@ -267,7 +276,7 @@ build/$2/$$(pyconfig.h-$1): $$(PYTHON_DIR-$1)/dist/include/python$(PYTHON_VER)/p # Dump vars (for test) vars-$1: @echo "ARCH-$1: $$(ARCH-$1)" - @echo "MACHINE-$1: $$(MACHINE-$1)" + @echo "MACHINE_DETAILED-$1: $$(MACHINE_DETAILED-$1)" @echo "SDK-$1: $$(SDK-$1)" @echo "SDK_ROOT-$1: $$(SDK_ROOT-$1)" @echo "CC-$1: $$(CC-$1)" diff --git a/patch/Python/Setup.embedded b/patch/Python/Setup.embedded index e087ef7..3c19d7f 100644 --- a/patch/Python/Setup.embedded +++ b/patch/Python/Setup.embedded @@ -19,7 +19,7 @@ _elementtree _elementtree.c \ _heapq _heapqmodule.c _json _json.c _lsprof _lsprof.o rotatingtree.c -# _lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../xz/lib -llzma +_lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../xz/lib -llzma _md5 md5module.c _multibytecodec cjkcodecs/multibytecodec.c _multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c diff --git a/patch/Python/lib-exclude.lst b/patch/Python/lib-exclude.lst index 88b5ef8..7367ffa 100644 --- a/patch/Python/lib-exclude.lst +++ b/patch/Python/lib-exclude.lst @@ -1,15 +1,14 @@ -bsddb config-* -ctypes/test -curses -distutils/tests -ensurepip -hotshot -idlelib -lib2to3/tests -site-packages -sqlite3/test -test +ctypes/test/* +curses/* +distutils/tests/* +ensurepip/* +idlelib/* +lib2to3/tests/* +site-packages/* +sqlite3/test/* +test/* +tkinter/* turtle.py -turtledemo -wsgiref +turtledemo/* +wsgiref/* From b34e9cab2b7e7e6a570c9bf9bd4ac74023febc13 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 17 Feb 2016 21:52:47 +0800 Subject: [PATCH 07/15] Restored #undefs needed for tvOS and watchOS. --- patch/Python/Python.patch | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/patch/Python/Python.patch b/patch/Python/Python.patch index 70f7582..66111bc 100644 --- a/patch/Python/Python.patch +++ b/patch/Python/Python.patch @@ -29037,7 +29037,7 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c r = hypot(x, y); diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c --- orig/Modules/posixmodule.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/posixmodule.c 2016-02-17 09:05:04.000000000 +0800 ++++ modified/Modules/posixmodule.c 2016-02-17 14:14:22.000000000 +0800 @@ -20,6 +20,8 @@ # pragma weak statvfs # pragma weak fstatvfs @@ -29047,15 +29047,30 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* __APPLE__ */ #define PY_SSIZE_T_CLEAN -@@ -175,7 +177,6 @@ +@@ -175,6 +177,22 @@ #endif /* _MSC_VER */ #endif /* ! __WATCOMC__ || __QNX__ */ -- ++// tvOS and watchOS don't provide a number of important POSIX functions. ++#if defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) || defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) ++# undef HAVE_EXECV ++# undef HAVE_FORK ++# undef HAVE_FORK1 ++# undef HAVE_FORKPTY ++# undef HAVE_GETGROUPS ++# undef HAVE_SCHED_H ++# undef HAVE_SENDFILE ++# undef HAVE_SETPRIORITY ++# undef HAVE_SPAWNV ++# undef HAVE_WAIT ++# undef HAVE_WAIT3 ++# undef HAVE_WAIT4 ++# undef HAVE_WAITPID ++#endif /* TVOS || WATCHOS */ + /*[clinic input] # one of the few times we lie about this name! - module os -@@ -1127,7 +1128,9 @@ +@@ -1127,7 +1145,9 @@ #include static char **environ; #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) @@ -29065,7 +29080,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* !_MSC_VER */ static PyObject * -@@ -1178,7 +1181,7 @@ +@@ -1178,7 +1198,7 @@ Py_DECREF(k); Py_DECREF(v); } @@ -29074,7 +29089,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c if (environ == NULL) return d; /* This part ignores errors */ -@@ -4285,7 +4288,12 @@ +@@ -4285,7 +4305,12 @@ long result; char *bytes = PyBytes_AsString(command); Py_BEGIN_ALLOW_THREADS @@ -29170,7 +29185,7 @@ diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c n++; diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h --- orig/Python/importlib_external.h 2015-12-07 09:39:11.000000000 +0800 -+++ modified/Python/importlib_external.h 2016-02-17 10:08:14.000000000 +0800 ++++ modified/Python/importlib_external.h 2016-02-17 12:30:41.000000000 +0800 @@ -2,52 +2,52 @@ const unsigned char _Py_M__importlib_external[] = { 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, From 88c33c4081f357b736a0e003f091d714d14859fa Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 23 Feb 2016 22:32:50 +0800 Subject: [PATCH 08/15] Added missing entries in download target. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef85263..c6d2654 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ clean: distclean: clean rm -rf downloads -downloads: downloads/openssl-$(OPENSSL_VERSION).tgz downloads/Python-$(PYTHON_VERSION).tgz +downloads: downloads/openssl-$(OPENSSL_VERSION).tgz downloads/bzip2-$(BZIP2_VERSION).tgz downloads/xz-$(XZ_VERSION).tgz downloads/Python-$(PYTHON_VERSION).tgz ########################################################################### # OpenSSL From d431ce0aa1df9748066a13f350e22bcab804e634 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 24 Feb 2016 09:05:18 +0800 Subject: [PATCH 09/15] Added BZip2 and XZ support. --- Makefile | 165 +++++++++++++++++++++++++++++++++++++++++------------ README.rst | 6 +- 2 files changed, 132 insertions(+), 39 deletions(-) diff --git a/Makefile b/Makefile index a230537..f934755 100644 --- a/Makefile +++ b/Makefile @@ -1,54 +1,65 @@ # # Useful targets: -# - all - build everything -# - iOS - build everything for iOS -# - tvOS - build everything for tvOS -# - watchOS - build everything for watchOS -# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS -# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS +# - all - build everything +# - iOS - build everything for iOS +# - tvOS - build everything for tvOS +# - watchOS - build everything for watchOS +# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS +# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS # - OpenSSL.framework-watchOS - build OpenSSL.framework for watchOS -# - Python.framework-iOS - build Python.framework for iOS -# - Python.framework-tvOS - build Python.framework for tvOS -# - Python.framework-watchOS - build Python.framework for watchOS -# - Python-host - build host python +# - BZip2-iOS - build BZip2 library for iOS +# - BZip2-tvOS - build BZip2 library for tvOS +# - BZip2-watchOS - build BZip2 library for watchOS +# - XZ-iOS - build XZ library for iOS +# - XZ-tvOS - build XZ library for tvOS +# - XZ-watchOS - build XZ library for watchOS +# - Python.framework-iOS - build Python.framework for iOS +# - Python.framework-tvOS - build Python.framework for tvOS +# - Python.framework-watchOS - build Python.framework for watchOS +# - Python-host - build host python # Current director PROJECT_DIR=$(shell pwd) -BUILD_NUMBER=4 +BUILD_NUMBER=5 # Version of packages that will be compiled by this meta-package PYTHON_VERSION=3.4.2 -PYTHON_VER= $(basename $(PYTHON_VERSION)) +PYTHON_VER= $(basename $(PYTHON_VERSION)) OPENSSL_VERSION_NUMBER=1.0.2 -OPENSSL_REVISION=e +OPENSSL_REVISION=f OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION) +BZIP2_VERSION=1.0.6 + +XZ_VERSION=5.2.2 + # Supported OS -OS= iOS tvOS watchOS +OS= iOS tvOS watchOS # iOS targets TARGETS-iOS=iphonesimulator.x86_64 iphonesimulator.i386 iphoneos.armv7 iphoneos.armv7s iphoneos.arm64 CFLAGS-iOS=-miphoneos-version-min=7.0 -CFLAGS-iphoneos.armv7= -fembed-bitcode -CFLAGS-iphoneos.armv7s= -fembed-bitcode -CFLAGS-iphoneos.arm64= -fembed-bitcode +CFLAGS-iphoneos.armv7= -fembed-bitcode +CFLAGS-iphoneos.armv7s= -fembed-bitcode +CFLAGS-iphoneos.arm64= -fembed-bitcode # tvOS targets TARGETS-tvOS=appletvsimulator.x86_64 appletvos.arm64 CFLAGS-tvOS=-mtvos-version-min=9.0 -CFLAGS-appletvos.arm64= -fembed-bitcode -PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no +CFLAGS-appletvos.arm64= -fembed-bitcode +PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no # watchOS targets TARGETS-watchOS=watchsimulator.i386 watchos.armv7k CFLAGS-watchOS=-mwatchos-version-min=2.0 -CFLAGS-watchos.armv7k= -fembed-bitcode +CFLAGS-watchos.armv7k= -fembed-bitcode PYTHON_CONFIGURE-watchOS=ac_cv_func_sigaltstack=no -# override machine for arm64 -MACHINE-arm64=aarch64 +# override machine types for arm64 +MACHINE_DETAILED-arm64=aarch64 +MACHINE_SIMPLE-arm64=arm all: $(foreach os,$(OS),$(os)) @@ -60,7 +71,7 @@ clean: distclean: clean rm -rf downloads -downloads: downloads/openssl-$(OPENSSL_VERSION).tgz downloads/Python-$(PYTHON_VERSION).tgz +downloads: downloads/openssl-$(OPENSSL_VERSION).tgz downloads/bzip2-$(BZIP2_VERSION).tgz downloads/xz-$(XZ_VERSION).tgz downloads/Python-$(PYTHON_VERSION).tgz ########################################################################### # OpenSSL @@ -80,6 +91,35 @@ downloads/openssl-$(OPENSSL_VERSION).tgz: -if [ ! -e downloads/openssl-$(OPENSSL_VERSION).tgz ]; then curl --fail -L http://openssl.org/source/openssl-$(OPENSSL_VERSION).tar.gz -o downloads/openssl-$(OPENSSL_VERSION).tgz; fi if [ ! -e downloads/openssl-$(OPENSSL_VERSION).tgz ]; then curl --fail -L http://openssl.org/source/old/$(OPENSSL_VERSION_NUMBER)/openssl-$(OPENSSL_VERSION).tar.gz -o downloads/openssl-$(OPENSSL_VERSION).tgz; fi + +########################################################################### +# BZip2 +########################################################################### + +# Clean the bzip2 project +clean-bzip2: + rm -rf build/*/bzip2-$(BZIP2_VERSION)-* \ + build/*/bzip2 + +# Download original OpenSSL source code archive. +downloads/bzip2-$(BZIP2_VERSION).tgz: + mkdir -p downloads + if [ ! -e downloads/bzip2-$(BZIP2_VERSION).tgz ]; then curl --fail -L http://www.bzip.org/$(BZIP2_VERSION)/bzip2-$(BZIP2_VERSION).tar.gz -o downloads/bzip2-$(BZIP2_VERSION).tgz; fi + +########################################################################### +# XZ (LZMA) +########################################################################### + +# Clean the XZ project +clean-xz: + rm -rf build/*/xz-$(XZ_VERSION)-* \ + build/*/xz + +# Download original OpenSSL source code archive. +downloads/xz-$(XZ_VERSION).tgz: + mkdir -p downloads + if [ ! -e downloads/xz-$(XZ_VERSION).tgz ]; then curl --fail -L http://tukaani.org/xz/xz-$(XZ_VERSION).tar.gz -o downloads/xz-$(XZ_VERSION).tgz; fi + ########################################################################### # Python ########################################################################### @@ -121,20 +161,28 @@ $(PYTHON_DIR-host)/dist/bin/python$(PYTHON_VER): $(PYTHON_DIR-host)/Makefile # - $2 - OS define build-target ARCH-$1= $$(subst .,,$$(suffix $1)) -ifdef MACHINE-$$(ARCH-$1) -MACHINE-$1= $$(MACHINE-$$(ARCH-$1)) +ifdef MACHINE_DETAILED-$$(ARCH-$1) +MACHINE_DETAILED-$1= $$(MACHINE_DETAILED-$$(ARCH-$1)) +else +MACHINE_DETAILED-$1= $$(ARCH-$1) +endif +ifdef MACHINE_SIMPLE-$$(ARCH-$1) +MACHINE_SIMPLE-$1= $$(MACHINE_SIMPLE-$$(ARCH-$1)) else -MACHINE-$1= $$(ARCH-$1) +MACHINE_SIMPLE-$1= $$(ARCH-$1) endif -SDK-$1= $$(basename $1) +SDK-$1= $$(basename $1) SDK_ROOT-$1= $$(shell xcrun --sdk $$(SDK-$1) --show-sdk-path) -CC-$1= xcrun --sdk $$(SDK-$1) clang\ - -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) +CC-$1= xcrun --sdk $$(SDK-$1) clang\ + -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) +LDFLAGS-$1= -arch $$(ARCH-$1) -isysroot=$$(SDK_ROOT-$1) -OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 -PYTHON_DIR-$1= build/$2/Python-$(PYTHON_VERSION)-$1 -pyconfig.h-$1= pyconfig-$$(ARCH-$1).h +OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 +BZIP2_DIR-$1= build/$2/bzip2-$(BZIP2_VERSION)-$1 +XZ_DIR-$1= build/$2/xz-$(XZ_VERSION)-$1 +PYTHON_DIR-$1= build/$2/Python-$(PYTHON_VERSION)-$1 +pyconfig.h-$1= pyconfig-$$(ARCH-$1).h # Unpack OpenSSL $$(OPENSSL_DIR-$1)/Makefile: downloads/openssl-$(OPENSSL_VERSION).tgz @@ -167,6 +215,37 @@ $$(OPENSSL_DIR-$1)/libssl.a $$(OPENSSL_DIR-$1)/libcrypto.a: $$(OPENSSL_DIR-$1)/M CROSS_SDK="$$(notdir $$(SDK_ROOT-$1))" \ make all +# Unpack BZip2 +$$(BZIP2_DIR-$1)/Makefile: downloads/bzip2-$(BZIP2_VERSION).tgz + # Unpack sources + mkdir -p $$(BZIP2_DIR-$1) + tar zxf downloads/bzip2-$(BZIP2_VERSION).tgz --strip-components 1 -C $$(BZIP2_DIR-$1) + # Patch sources to use correct compiler + sed -ie 's#CC=gcc#CC=$$(CC-$1)#' $$(BZIP2_DIR-$1)/Makefile + # Patch sources to use correct install directory + sed -ie 's#PREFIX=/usr/local#PREFIX=$(PROJECT_DIR)/build/$2/bzip2#' $$(BZIP2_DIR-$1)/Makefile + +# Build BZip2 +$$(BZIP2_DIR-$1)/libbz2.a: $$(BZIP2_DIR-$1)/Makefile + cd $$(BZIP2_DIR-$1) && make install + +# Unpack XZ +$$(XZ_DIR-$1)/Makefile: downloads/xz-$(XZ_VERSION).tgz + # Unpack sources + mkdir -p $$(XZ_DIR-$1) + tar zxf downloads/xz-$(XZ_VERSION).tgz --strip-components 1 -C $$(XZ_DIR-$1) + # Configure the build + cd $$(XZ_DIR-$1) && ./configure \ + CC="$$(CC-$1)" \ + LDFLAGS="$$(LDFLAGS-$1)" \ + --disable-shared --enable-static \ + --host=$$(MACHINE_SIMPLE-$1)-apple-darwin \ + --prefix=$(PROJECT_DIR)/build/$2/xz + +# Build XZ +$$(XZ_DIR-$1)/src/liblzma/.libs/liblzma.a: $$(XZ_DIR-$1)/Makefile + cd $$(XZ_DIR-$1) && make && make install + # Unpack Python $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST) # Unpack target Python @@ -178,14 +257,14 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST # Configure target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) ./configure \ CC="$$(CC-$1)" LD="$$(CC-$1)" \ - --host=$$(MACHINE-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ + --host=$$(MACHINE_DETAILED-$1)-apple-ios --build=x86_64-apple-darwin$(shell uname -r) \ --prefix=$(PROJECT_DIR)/$$(PYTHON_DIR-$1)/dist \ --without-pymalloc --without-doc-strings --disable-ipv6 --without-ensurepip \ ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no \ $$(PYTHON_CONFIGURE-$2) # Build Python -$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: $$(PYTHON_DIR-$1)/Makefile build/$2/OpenSSL.framework +$$(PYTHON_DIR-$1)/dist/lib/libpython$(PYTHON_VER).a: build/$2/OpenSSL.framework build/$2/bzip2/lib/libbz2.a build/$2/xz/lib/liblzma.a $$(PYTHON_DIR-$1)/Makefile # Build target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) make all install @@ -195,7 +274,7 @@ build/$2/$$(pyconfig.h-$1): $$(PYTHON_DIR-$1)/dist/include/python$(PYTHON_VER)/p # Dump vars (for test) vars-$1: @echo "ARCH-$1: $$(ARCH-$1)" - @echo "MACHINE-$1: $$(MACHINE-$1)" + @echo "MACHINE_DETAILED-$1: $$(MACHINE_DETAILED-$1)" @echo "SDK-$1: $$(SDK-$1)" @echo "SDK_ROOT-$1: $$(SDK_ROOT-$1)" @echo "CC-$1: $$(CC-$1)" @@ -216,7 +295,9 @@ endef define build $$(foreach target,$$(TARGETS-$1),$$(eval $$(call build-target,$$(target),$1))) -OPENSSL_FRAMEWORK-$1= build/$1/OpenSSL.framework +OPENSSL_FRAMEWORK-$1= build/$1/OpenSSL.framework +BZIP2_LIB-$1= build/$1/bzip2/lib/libbz2.a +XZ_LIB-$1= build/$1/xz/lib/liblzma.a PYTHON_FRAMEWORK-$1= build/$1/Python.framework PYTHON_RESOURCES-$1= $$(PYTHON_FRAMEWORK-$1)/Versions/$(PYTHON_VER)/Resources @@ -256,6 +337,18 @@ build/$1/libcrypto.a: $$(foreach target,$$(TARGETS-$1),$$(OPENSSL_DIR-$$(target) mkdir -p build/$1 xcrun lipo -create -output $$@ $$^ +BZip2-$1: $$(BZIP2_LIB-$1) + +build/$1/bzip2/lib/libbz2.a: $$(foreach target,$$(TARGETS-$1),$$(BZIP2_DIR-$$(target))/libbz2.a) + mkdir -p build/$1/bzip2/lib + xcrun lipo -create -o $$(BZIP2_LIB-$1) $$^ + +XZ-$1: $$(XZ_LIB-$1) + +build/$1/xz/lib/liblzma.a: $$(foreach target,$$(TARGETS-$1),$$(XZ_DIR-$$(target))/src/liblzma/.libs/liblzma.a) + mkdir -p build/$1/xz/lib + xcrun lipo -create -o $$(XZ_LIB-$1) $$^ + Python.framework-$1: $$(PYTHON_FRAMEWORK-$1) # Build Python.framework diff --git a/README.rst b/README.rst index ecb4c29..4c918c7 100644 --- a/README.rst +++ b/README.rst @@ -69,9 +69,9 @@ This should: The build products will be in the `build` directory; the compiled frameworks will be in the `dist` directory. -.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz -.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz -.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-iOS-support.b4.tar.gz +.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b5/Python-3.4.2-iOS-support.b5.tar.gz +.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b5/Python-3.4.2-iOS-support.b5.tar.gz +.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b5/Python-3.4.2-iOS-support.b5.tar.gz Acknowledgements ---------------- From d9ff961fb7453294900804ad032ba911d5a2f017 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 24 Feb 2016 09:27:23 +0800 Subject: [PATCH 10/15] Cleaned up spacing in Makefile. --- Makefile | 70 +++++++++++++++++++++++++++--------------------------- README.rst | 6 ++--- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Makefile b/Makefile index c6d2654..1efd119 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ # # Useful targets: -# - all - build everything -# - iOS - build everything for iOS -# - tvOS - build everything for tvOS -# - watchOS - build everything for watchOS -# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS -# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS -# - OpenSSL.framework-watchOS - build OpenSSL.framework for watchOS -# - BZip2-iOS - build BZip2 library for iOS -# - BZip2-tvOS - build BZip2 library for tvOS -# - BZip2-watchOS - build BZip2 library for watchOS -# - XZ-iOS - build XZ library for iOS -# - XZ-tvOS - build XZ library for tvOS -# - XZ-watchOS - build XZ library for watchOS -# - Python.framework-iOS - build Python.framework for iOS -# - Python.framework-tvOS - build Python.framework for tvOS -# - Python.framework-watchOS - build Python.framework for watchOS -# - Python-host - build host python +# - all - build everything +# - iOS - build everything for iOS +# - tvOS - build everything for tvOS +# - watchOS - build everything for watchOS +# - OpenSSL.framework-iOS - build OpenSSL.framework for iOS +# - OpenSSL.framework-tvOS - build OpenSSL.framework for tvOS +# - OpenSSL.framework-watchOS - build OpenSSL.framework for watchOS +# - BZip2-iOS - build BZip2 library for iOS +# - BZip2-tvOS - build BZip2 library for tvOS +# - BZip2-watchOS - build BZip2 library for watchOS +# - XZ-iOS - build XZ library for iOS +# - XZ-tvOS - build XZ library for tvOS +# - XZ-watchOS - build XZ library for watchOS +# - Python.framework-iOS - build Python.framework for iOS +# - Python.framework-tvOS - build Python.framework for tvOS +# - Python.framework-watchOS - build Python.framework for watchOS +# - Python-host - build host python # Current director PROJECT_DIR=$(shell pwd) @@ -41,21 +41,21 @@ OS= iOS tvOS watchOS # iOS targets TARGETS-iOS=iphonesimulator.x86_64 iphonesimulator.i386 iphoneos.armv7 iphoneos.armv7s iphoneos.arm64 CFLAGS-iOS=-miphoneos-version-min=7.0 -CFLAGS-iphoneos.armv7= -fembed-bitcode +CFLAGS-iphoneos.armv7= -fembed-bitcode CFLAGS-iphoneos.armv7s= -fembed-bitcode -CFLAGS-iphoneos.arm64= -fembed-bitcode +CFLAGS-iphoneos.arm64= -fembed-bitcode # tvOS targets TARGETS-tvOS=appletvsimulator.x86_64 appletvos.arm64 CFLAGS-tvOS=-mtvos-version-min=9.0 CFLAGS-appletvos.arm64= -fembed-bitcode -PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no +PYTHON_CONFIGURE-tvOS= ac_cv_func_sigaltstack=no # watchOS targets TARGETS-watchOS=watchsimulator.i386 watchos.armv7k CFLAGS-watchOS=-mwatchos-version-min=2.0 -CFLAGS-watchos.armv7k= -fembed-bitcode -PYTHON_CONFIGURE-watchOS=ac_cv_func_sigaltstack=no +CFLAGS-watchos.armv7k= -fembed-bitcode +PYTHON_CONFIGURE-watchOS= ac_cv_func_sigaltstack=no # override machine types for arm64 MACHINE_DETAILED-arm64=aarch64 @@ -173,16 +173,16 @@ MACHINE_SIMPLE-$1= $$(ARCH-$1) endif SDK-$1= $$(basename $1) -SDK_ROOT-$1= $$(shell xcrun --sdk $$(SDK-$1) --show-sdk-path) -CC-$1= xcrun --sdk $$(SDK-$1) clang\ +SDK_ROOT-$1=$$(shell xcrun --sdk $$(SDK-$1) --show-sdk-path) +CC-$1=xcrun --sdk $$(SDK-$1) clang\ -arch $$(ARCH-$1) --sysroot=$$(SDK_ROOT-$1) $$(CFLAGS-$2) $$(CFLAGS-$1) -LDFLAGS-$1= -arch $$(ARCH-$1) -isysroot=$$(SDK_ROOT-$1) +LDFLAGS-$1=-arch $$(ARCH-$1) -isysroot=$$(SDK_ROOT-$1) -OPENSSL_DIR-$1= build/$2/openssl-$(OPENSSL_VERSION)-$1 -BZIP2_DIR-$1= build/$2/bzip2-$(BZIP2_VERSION)-$1 -XZ_DIR-$1= build/$2/xz-$(XZ_VERSION)-$1 -PYTHON_DIR-$1= build/$2/Python-$(PYTHON_VERSION)-$1 -pyconfig.h-$1= pyconfig-$$(ARCH-$1).h +OPENSSL_DIR-$1=build/$2/openssl-$(OPENSSL_VERSION)-$1 +BZIP2_DIR-$1=build/$2/bzip2-$(BZIP2_VERSION)-$1 +XZ_DIR-$1=build/$2/xz-$(XZ_VERSION)-$1 +PYTHON_DIR-$1=build/$2/Python-$(PYTHON_VERSION)-$1 +pyconfig.h-$1=pyconfig-$$(ARCH-$1).h # Unpack OpenSSL $$(OPENSSL_DIR-$1)/Makefile: downloads/openssl-$(OPENSSL_VERSION).tgz @@ -297,11 +297,11 @@ endef define build $$(foreach target,$$(TARGETS-$1),$$(eval $$(call build-target,$$(target),$1))) -OPENSSL_FRAMEWORK-$1= build/$1/OpenSSL.framework -BZIP2_LIB-$1= build/$1/bzip2/lib/libbz2.a -XZ_LIB-$1= build/$1/xz/lib/liblzma.a -PYTHON_FRAMEWORK-$1= build/$1/Python.framework -PYTHON_RESOURCES-$1= $$(PYTHON_FRAMEWORK-$1)/Versions/$(PYTHON_VER)/Resources +OPENSSL_FRAMEWORK-$1=build/$1/OpenSSL.framework +BZIP2_LIB-$1=build/$1/bzip2/lib/libbz2.a +XZ_LIB-$1=build/$1/xz/lib/liblzma.a +PYTHON_FRAMEWORK-$1=build/$1/Python.framework +PYTHON_RESOURCES-$1=$$(PYTHON_FRAMEWORK-$1)/Versions/$(PYTHON_VER)/Resources $1: dist/Python-$(PYTHON_VERSION)-$1-support.b$(BUILD_NUMBER).tar.gz diff --git a/README.rst b/README.rst index ecc3b19..247f7d3 100644 --- a/README.rst +++ b/README.rst @@ -68,9 +68,9 @@ This should: The build products will be in the `build` directory; the compiled frameworks will be in the `dist` directory. -.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz -.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz -.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-i1S-support.b1.tar.gz +.. _for iOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-iOS-support.b1.tar.gz +.. _for tvOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-iOS-support.b1.tar.gz +.. _for watchOS: https://github.com/pybee/Python-iOS-support/releases/download/3.5.1-b1/Python-3.5.1-iOS-support.b1.tar.gz Acknowledgements ---------------- From 03bea6625c7d6e1707e37a24801ec3c507cd9ecb Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 24 Feb 2016 15:08:16 +0800 Subject: [PATCH 11/15] Reverted accidental merge of 3.5 patch. --- Makefile | 4 +- patch/Python/Python.patch | 18067 +++++++++++++++++++++++------------- 2 files changed, 11808 insertions(+), 6263 deletions(-) diff --git a/Makefile b/Makefile index 3ac2dcf..0d9d196 100644 --- a/Makefile +++ b/Makefile @@ -252,10 +252,8 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST mkdir -p $$(PYTHON_DIR-$1) tar zxf downloads/Python-$(PYTHON_VERSION).tgz --strip-components 1 -C $$(PYTHON_DIR-$1) # Apply target Python patches - cd $$(PYTHON_DIR-$1) && patch -p1 <$(PROJECT_DIR)/patch/Python/Python.patch + cd $$(PYTHON_DIR-$1) && patch -p1 < $(PROJECT_DIR)/patch/Python/Python.patch cp -f $(PROJECT_DIR)/patch/Python/Setup.embedded $$(PYTHON_DIR-$1)/Modules/Setup.embedded - # Copy in the host _freeze_importlib - cp $(PYTHON_DIR-host)/Programs/_freeze_importlib $$(PYTHON_DIR-$1)/iOS/_freeze_importlib # Configure target Python cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) ./configure \ CC="$$(CC-$1)" LD="$$(CC-$1)" \ diff --git a/patch/Python/Python.patch b/patch/Python/Python.patch index 66111bc..d114418 100644 --- a/patch/Python/Python.patch +++ b/patch/Python/Python.patch @@ -1,38 +1,6 @@ -diff -Nru orig/Doc/library/os.rst modified/Doc/library/os.rst ---- orig/Doc/library/os.rst 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Doc/library/os.rst 2016-02-17 12:02:58.000000000 +0800 -@@ -2743,6 +2743,13 @@ - Python signal handler registered for :const:`SIGABRT` with - :func:`signal.signal`. - -+.. data:: allows_subprocesses -+ -+ Boolean that describes whether subprocesses can be by the operating system. -+ Some platforms (e.g., iOS mobile devices) *implement* calls like -+ :func:`execv` and :func:`spawnv`, but will raise errors or break if -+ called. Calls to create subprocesses should only be invoked if -+ :data:`os.allows_subprocesses` is `True`. - - .. function:: execl(path, arg0, arg1, ...) - execle(path, arg0, arg1, ..., env) -diff -Nru orig/Doc/library/subprocess.rst modified/Doc/library/subprocess.rst ---- orig/Doc/library/subprocess.rst 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Doc/library/subprocess.rst 2016-02-17 12:01:30.000000000 +0800 -@@ -21,6 +21,11 @@ - - :pep:`324` -- PEP proposing the subprocess module - -+:mod:`subprocess` can only be used on platforms that support subprocess -+creation. Some platforms (especially mobile platforms) may not support -+subprocesses; if :data:`os.allows_subprocesses` is `False`, any calls in -+this module that request a subprocess be created will raise a -+:exc:`RuntimeError`. - - Using the :mod:`subprocess` Module - ---------------------------------- diff -Nru orig/Include/datetime.h modified/Include/datetime.h ---- orig/Include/datetime.h 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Include/datetime.h 2016-02-14 10:29:10.000000000 +0800 +--- orig/Include/datetime.h 2015-02-03 19:49:02.000000000 +0800 ++++ modified/Include/datetime.h 2015-04-27 13:51:52.000000000 +0800 @@ -166,6 +166,11 @@ #define PyDateTime_CAPSULE_NAME "datetime.datetime_CAPI" @@ -59,8 +27,8 @@ diff -Nru orig/Include/datetime.h modified/Include/datetime.h #define PyDate_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->DateType) #define PyDate_CheckExact(op) (Py_TYPE(op) == PyDateTimeAPI->DateType) diff -Nru orig/Lib/ctypes/test/test_as_parameter.py modified/Lib/ctypes/test/test_as_parameter.py ---- orig/Lib/ctypes/test/test_as_parameter.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_as_parameter.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_as_parameter.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_as_parameter.py 2015-06-28 21:35:59.000000000 +0800 @@ -1,9 +1,11 @@ +import os import unittest @@ -83,8 +51,8 @@ diff -Nru orig/Lib/ctypes/test/test_as_parameter.py modified/Lib/ctypes/test/tes def wrap(self, param): return param diff -Nru orig/Lib/ctypes/test/test_bitfields.py modified/Lib/ctypes/test/test_bitfields.py ---- orig/Lib/ctypes/test/test_bitfields.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_bitfields.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_bitfields.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_bitfields.py 2015-06-28 21:36:06.000000000 +0800 @@ -1,11 +1,12 @@ from ctypes import * from ctypes.test import need_symbol @@ -109,8 +77,8 @@ diff -Nru orig/Lib/ctypes/test/test_bitfields.py modified/Lib/ctypes/test/test_b ##for n in "ABCDEFGHIMNOPQRS": diff -Nru orig/Lib/ctypes/test/test_buffers.py modified/Lib/ctypes/test/test_buffers.py ---- orig/Lib/ctypes/test/test_buffers.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_buffers.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_buffers.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_buffers.py 2015-04-27 21:02:18.000000000 +0800 @@ -2,6 +2,7 @@ from ctypes.test import need_symbol import unittest @@ -120,8 +88,8 @@ diff -Nru orig/Lib/ctypes/test/test_buffers.py modified/Lib/ctypes/test/test_buf def test_buffer(self): diff -Nru orig/Lib/ctypes/test/test_callbacks.py modified/Lib/ctypes/test/test_callbacks.py ---- orig/Lib/ctypes/test/test_callbacks.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_callbacks.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_callbacks.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_callbacks.py 2015-06-28 21:36:18.000000000 +0800 @@ -1,8 +1,10 @@ +import os import unittest @@ -161,8 +129,8 @@ diff -Nru orig/Lib/ctypes/test/test_callbacks.py modified/Lib/ctypes/test/test_c c_double, c_double) # All this function does is call the callback with its args squared diff -Nru orig/Lib/ctypes/test/test_cfuncs.py modified/Lib/ctypes/test/test_cfuncs.py ---- orig/Lib/ctypes/test/test_cfuncs.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_cfuncs.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_cfuncs.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_cfuncs.py 2015-06-28 21:36:25.000000000 +0800 @@ -1,17 +1,20 @@ # A lot of failures in these tests on Mac OS X. # Byte order related? @@ -195,8 +163,8 @@ diff -Nru orig/Lib/ctypes/test/test_cfuncs.py modified/Lib/ctypes/test/test_cfun if __name__ == '__main__': unittest.main() diff -Nru orig/Lib/ctypes/test/test_checkretval.py modified/Lib/ctypes/test/test_checkretval.py ---- orig/Lib/ctypes/test/test_checkretval.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_checkretval.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_checkretval.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_checkretval.py 2015-06-28 21:36:10.000000000 +0800 @@ -1,8 +1,10 @@ +import os import unittest @@ -218,8 +186,8 @@ diff -Nru orig/Lib/ctypes/test/test_checkretval.py modified/Lib/ctypes/test/test dll._testfunc_p_p.restype = CHECKED diff -Nru orig/Lib/ctypes/test/test_funcptr.py modified/Lib/ctypes/test/test_funcptr.py ---- orig/Lib/ctypes/test/test_funcptr.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_funcptr.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_funcptr.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_funcptr.py 2015-06-28 21:36:31.000000000 +0800 @@ -1,4 +1,5 @@ -import os, unittest +import os @@ -240,8 +208,8 @@ diff -Nru orig/Lib/ctypes/test/test_funcptr.py modified/Lib/ctypes/test/test_fun class CFuncPtrTestCase(unittest.TestCase): def test_basic(self): diff -Nru orig/Lib/ctypes/test/test_functions.py modified/Lib/ctypes/test/test_functions.py ---- orig/Lib/ctypes/test/test_functions.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_functions.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_functions.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_functions.py 2015-06-28 21:36:38.000000000 +0800 @@ -7,7 +7,9 @@ from ctypes import * @@ -278,8 +246,8 @@ diff -Nru orig/Lib/ctypes/test/test_functions.py modified/Lib/ctypes/test/test_f def test_mro(self): diff -Nru orig/Lib/ctypes/test/test_libc.py modified/Lib/ctypes/test/test_libc.py ---- orig/Lib/ctypes/test/test_libc.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_libc.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_libc.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_libc.py 2015-06-28 21:36:41.000000000 +0800 @@ -1,14 +1,18 @@ +import os import unittest @@ -301,8 +269,8 @@ diff -Nru orig/Lib/ctypes/test/test_libc.py modified/Lib/ctypes/test/test_libc.p def test_sqrt(self): lib.my_sqrt.argtypes = c_double, diff -Nru orig/Lib/ctypes/test/test_parameters.py modified/Lib/ctypes/test/test_parameters.py ---- orig/Lib/ctypes/test/test_parameters.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_parameters.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_parameters.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_parameters.py 2015-06-28 21:36:45.000000000 +0800 @@ -1,6 +1,9 @@ -import unittest, sys +import os @@ -324,8 +292,8 @@ diff -Nru orig/Lib/ctypes/test/test_parameters.py modified/Lib/ctypes/test/test_ # TypeError: has no from_param method self.assertRaises(TypeError, setattr, func, "argtypes", (object,)) diff -Nru orig/Lib/ctypes/test/test_pickling.py modified/Lib/ctypes/test/test_pickling.py ---- orig/Lib/ctypes/test/test_pickling.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_pickling.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_pickling.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_pickling.py 2015-06-28 21:36:49.000000000 +0800 @@ -1,8 +1,11 @@ -import unittest import pickle @@ -341,8 +309,8 @@ diff -Nru orig/Lib/ctypes/test/test_pickling.py modified/Lib/ctypes/test/test_pi class X(Structure): _fields_ = [("a", c_int), ("b", c_double)] diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_pointers.py ---- orig/Lib/ctypes/test/test_pointers.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_pointers.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_pointers.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_pointers.py 2015-06-28 21:38:12.000000000 +0800 @@ -1,4 +1,6 @@ -import unittest, sys +import os @@ -366,9 +334,9 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po - dll = CDLL(_ctypes_test.__file__) + dll = CDLL(getattr(_ctypes_test, '__file__', os.environ['TEST_EXECUTABLE'])) func = dll._testfunc_p_p - if sizeof(c_longlong) == sizeof(c_void_p): - func.restype = c_longlong -@@ -38,7 +41,7 @@ + func.restype = c_long + +@@ -35,7 +38,7 @@ self.assertEqual(res[0], 12345678) def test_change_pointers(self): @@ -377,7 +345,7 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po func = dll._testfunc_p_p i = c_int(87654) -@@ -73,7 +76,7 @@ +@@ -70,7 +73,7 @@ return 0 callback = PROTOTYPE(func) @@ -386,7 +354,7 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po # This function expects a function pointer, # and calls this with an integer pointer as parameter. # The int pointer points to a table containing the numbers 1..10 -@@ -138,7 +141,7 @@ +@@ -135,7 +138,7 @@ def test_charpp(self): """Test that a character pointer-to-pointer is correctly passed""" @@ -396,8 +364,8 @@ diff -Nru orig/Lib/ctypes/test/test_pointers.py modified/Lib/ctypes/test/test_po func.restype = c_char_p argv = (c_char_p * 2)() diff -Nru orig/Lib/ctypes/test/test_prototypes.py modified/Lib/ctypes/test/test_prototypes.py ---- orig/Lib/ctypes/test/test_prototypes.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_prototypes.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_prototypes.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_prototypes.py 2015-06-28 21:37:34.000000000 +0800 @@ -1,6 +1,7 @@ +import os +import unittest @@ -419,8 +387,8 @@ diff -Nru orig/Lib/ctypes/test/test_prototypes.py modified/Lib/ctypes/test/test_ # Return machine address `a` as a (possibly long) non-negative integer. # Starting with Python 2.5, id(anything) is always non-negative, and diff -Nru orig/Lib/ctypes/test/test_refcounts.py modified/Lib/ctypes/test/test_refcounts.py ---- orig/Lib/ctypes/test/test_refcounts.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_refcounts.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_refcounts.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_refcounts.py 2015-06-28 21:37:38.000000000 +0800 @@ -1,13 +1,17 @@ -import unittest -from test import support @@ -443,8 +411,8 @@ diff -Nru orig/Lib/ctypes/test/test_refcounts.py modified/Lib/ctypes/test/test_r class RefcountTestCase(unittest.TestCase): diff -Nru orig/Lib/ctypes/test/test_returnfuncptrs.py modified/Lib/ctypes/test/test_returnfuncptrs.py ---- orig/Lib/ctypes/test/test_returnfuncptrs.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_returnfuncptrs.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_returnfuncptrs.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_returnfuncptrs.py 2015-06-28 21:37:45.000000000 +0800 @@ -1,15 +1,16 @@ +import os import unittest @@ -499,8 +467,8 @@ diff -Nru orig/Lib/ctypes/test/test_returnfuncptrs.py modified/Lib/ctypes/test/t self.assertEqual(strchr(b"abcdef", b"x"), None) self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0) diff -Nru orig/Lib/ctypes/test/test_slicing.py modified/Lib/ctypes/test/test_slicing.py ---- orig/Lib/ctypes/test/test_slicing.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_slicing.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_slicing.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_slicing.py 2015-06-28 21:37:52.000000000 +0800 @@ -1,3 +1,4 @@ +import os import unittest @@ -534,8 +502,8 @@ diff -Nru orig/Lib/ctypes/test/test_slicing.py modified/Lib/ctypes/test/test_sli dll.my_wcsdup.argtypes = POINTER(c_wchar), dll.my_free.restype = None diff -Nru orig/Lib/ctypes/test/test_stringptr.py modified/Lib/ctypes/test/test_stringptr.py ---- orig/Lib/ctypes/test/test_stringptr.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_stringptr.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_stringptr.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_stringptr.py 2015-06-28 21:37:55.000000000 +0800 @@ -1,10 +1,12 @@ +import os import unittest @@ -551,8 +519,8 @@ diff -Nru orig/Lib/ctypes/test/test_stringptr.py modified/Lib/ctypes/test/test_s class StringPtrTestCase(unittest.TestCase): diff -Nru orig/Lib/ctypes/test/test_unicode.py modified/Lib/ctypes/test/test_unicode.py ---- orig/Lib/ctypes/test/test_unicode.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_unicode.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_unicode.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_unicode.py 2015-06-28 21:37:59.000000000 +0800 @@ -1,13 +1,15 @@ +import os import unittest @@ -580,8 +548,8 @@ diff -Nru orig/Lib/ctypes/test/test_unicode.py modified/Lib/ctypes/test/test_uni class StringTestCase(UnicodeTestCase): def setUp(self): diff -Nru orig/Lib/ctypes/test/test_values.py modified/Lib/ctypes/test/test_values.py ---- orig/Lib/ctypes/test/test_values.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_values.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_values.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_values.py 2015-06-28 21:38:03.000000000 +0800 @@ -2,18 +2,20 @@ A testcase which accesses *values* in a dll. """ @@ -618,8 +586,8 @@ diff -Nru orig/Lib/ctypes/test/test_values.py modified/Lib/ctypes/test/test_valu class Win_ValuesTestCase(unittest.TestCase): """This test only works when python itself is a dll/shared library""" diff -Nru orig/Lib/ctypes/test/test_win32.py modified/Lib/ctypes/test/test_win32.py ---- orig/Lib/ctypes/test/test_win32.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/test/test_win32.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/ctypes/test/test_win32.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/test/test_win32.py 2015-06-28 21:38:08.000000000 +0800 @@ -1,7 +1,9 @@ # Windows specific tests @@ -638,12 +606,12 @@ diff -Nru orig/Lib/ctypes/test/test_win32.py modified/Lib/ctypes/test/test_win32 - dll = CDLL(_ctypes_test.__file__) + dll = CDLL(getattr(_ctypes_test, '__file__', os.environ['TEST_EXECUTABLE'])) - pt = POINT(15, 25) - left = c_long.in_dll(dll, 'left') + pt = POINT(10, 10) + rect = RECT(0, 0, 20, 20) diff -Nru orig/Lib/ctypes/util.py modified/Lib/ctypes/util.py ---- orig/Lib/ctypes/util.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/ctypes/util.py 2016-02-14 10:29:10.000000000 +0800 -@@ -76,7 +76,7 @@ +--- orig/Lib/ctypes/util.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/ctypes/util.py 2015-02-28 19:22:12.000000000 +0800 +@@ -70,7 +70,7 @@ def find_library(name): return name @@ -653,49 +621,49 @@ diff -Nru orig/Lib/ctypes/util.py modified/Lib/ctypes/util.py def find_library(name): possible = ['lib%s.dylib' % name, diff -Nru orig/Lib/distutils/tests/test_build_ext.py modified/Lib/distutils/tests/test_build_ext.py ---- orig/Lib/distutils/tests/test_build_ext.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_ext.py 2016-02-17 12:02:50.000000000 +0800 -@@ -40,6 +40,7 @@ - def build_ext(self, *args, **kwargs): - return build_ext(*args, **kwargs) +--- orig/Lib/distutils/tests/test_build_ext.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_ext.py 2015-05-03 00:00:04.000000000 +0800 +@@ -37,6 +37,7 @@ + from distutils.command import build_ext + build_ext.USER_BASE = site.USER_BASE -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_build_ext(self): global ALREADY_TESTED copy_xxmodule_c(self.tmp_dir) -@@ -288,6 +289,7 @@ +@@ -285,6 +286,7 @@ cmd.run() self.assertEqual(cmd.compiler, 'unix') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_get_outputs(self): tmp_dir = self.mkdtemp() c_file = os.path.join(tmp_dir, 'foo.c') diff -Nru orig/Lib/distutils/tests/test_build_py.py modified/Lib/distutils/tests/test_build_py.py ---- orig/Lib/distutils/tests/test_build_py.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_build_py.py 2016-02-17 12:02:38.000000000 +0800 +--- orig/Lib/distutils/tests/test_build_py.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_build_py.py 2015-05-03 00:00:35.000000000 +0800 @@ -106,6 +106,7 @@ ['boiledeggs.%s.pyc' % sys.implementation.cache_tag]) @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_byte_compile_optimized(self): project_dir, dist = self.create_dist(py_modules=['boiledeggs']) os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_config_cmd.py modified/Lib/distutils/tests/test_config_cmd.py ---- orig/Lib/distutils/tests/test_config_cmd.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_config_cmd.py 2016-02-17 09:45:32.000000000 +0800 +--- orig/Lib/distutils/tests/test_config_cmd.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_config_cmd.py 2015-05-03 00:01:43.000000000 +0800 @@ -38,6 +38,7 @@ self.assertEqual(len(self._logs), numlines+1) @unittest.skipIf(sys.platform == 'win32', "can't test on Windows") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(os, 'fork'), "distutils cannot spawn child processes") def test_search_cpp(self): pkg_dir, dist = self.create_dist() cmd = config(dist) diff -Nru orig/Lib/distutils/tests/test_cygwinccompiler.py modified/Lib/distutils/tests/test_cygwinccompiler.py ---- orig/Lib/distutils/tests/test_cygwinccompiler.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_cygwinccompiler.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/distutils/tests/test_cygwinccompiler.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_cygwinccompiler.py 2015-04-30 08:21:03.000000000 +0800 @@ -3,16 +3,19 @@ import sys import os @@ -740,30 +708,30 @@ diff -Nru orig/Lib/distutils/tests/test_cygwinccompiler.py modified/Lib/distutil self.assertEqual(get_msvcr(), None) diff -Nru orig/Lib/distutils/tests/test_install.py modified/Lib/distutils/tests/test_install.py ---- orig/Lib/distutils/tests/test_install.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install.py 2016-02-17 12:02:31.000000000 +0800 -@@ -195,6 +195,7 @@ +--- orig/Lib/distutils/tests/test_install.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install.py 2015-05-02 23:58:59.000000000 +0800 +@@ -197,6 +197,7 @@ 'UNKNOWN-0.0.0-py%s.%s.egg-info' % sys.version_info[:2]] self.assertEqual(found, expected) -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_record_extensions(self): install_dir = self.mkdtemp() project_dir, dist = self.create_dist(ext_modules=[ diff -Nru orig/Lib/distutils/tests/test_install_lib.py modified/Lib/distutils/tests/test_install_lib.py ---- orig/Lib/distutils/tests/test_install_lib.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_install_lib.py 2016-02-17 12:02:19.000000000 +0800 +--- orig/Lib/distutils/tests/test_install_lib.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_install_lib.py 2015-05-03 00:02:08.000000000 +0800 @@ -35,6 +35,7 @@ self.assertEqual(cmd.optimize, 2) @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_byte_compile(self): project_dir, dist = self.create_dist() os.chdir(project_dir) diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/test_spawn.py ---- orig/Lib/distutils/tests/test_spawn.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_spawn.py 2016-02-17 12:02:10.000000000 +0800 +--- orig/Lib/distutils/tests/test_spawn.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_spawn.py 2015-05-03 00:03:50.000000000 +0800 @@ -1,14 +1,14 @@ """Tests for distutils.spawn.""" import unittest @@ -789,7 +757,7 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te - - @unittest.skipUnless(os.name in ('nt', 'posix'), - 'Runs only under posix or nt') -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_spawn(self): tmpdir = self.mkdtemp() @@ -802,8 +770,8 @@ diff -Nru orig/Lib/distutils/tests/test_spawn.py modified/Lib/distutils/tests/te return unittest.makeSuite(SpawnTestCase) diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/tests/test_sysconfig.py ---- orig/Lib/distutils/tests/test_sysconfig.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_sysconfig.py 2016-02-17 10:15:12.000000000 +0800 +--- orig/Lib/distutils/tests/test_sysconfig.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_sysconfig.py 2015-05-04 14:42:47.000000000 +0800 @@ -11,6 +11,7 @@ from distutils.tests import support from test.support import TESTFN, run_unittest, check_warnings @@ -816,13 +784,13 @@ diff -Nru orig/Lib/distutils/tests/test_sysconfig.py modified/Lib/distutils/test self.assertIsNotNone(vars['SO']) self.assertEqual(vars['SO'], vars['EXT_SUFFIX']) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_customize_compiler_before_get_config_vars(self): # Issue #21923: test that a Distribution compiler # instance can be called without an explicit call to diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/test_util.py ---- orig/Lib/distutils/tests/test_util.py 2015-12-07 09:39:07.000000000 +0800 -+++ modified/Lib/distutils/tests/test_util.py 2016-02-17 12:02:04.000000000 +0800 +--- orig/Lib/distutils/tests/test_util.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/distutils/tests/test_util.py 2015-05-03 00:04:32.000000000 +0800 @@ -10,12 +10,13 @@ check_environ, split_quoted, strtobool, rfc822_escape, byte_compile, @@ -842,13 +810,13 @@ diff -Nru orig/Lib/distutils/tests/test_util.py modified/Lib/distutils/tests/tes # XXX platforms to be covered: mac -+ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork') and os.allows_subprocesses), "distutils cannot spawn child processes") ++ @unittest.skipUnless(os.name == 'nt' or (os.name == 'posix' and hasattr(os, 'fork')), "distutils cannot spawn child processes") def test_check_environ(self): util._environ_checked = 0 if 'HOME' in os.environ: -diff -Nru orig/Lib/importlib/_bootstrap_external.py modified/Lib/importlib/_bootstrap_external.py ---- orig/Lib/importlib/_bootstrap_external.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/importlib/_bootstrap_external.py 2016-02-14 11:00:13.000000000 +0800 +diff -Nru orig/Lib/importlib/_bootstrap.py modified/Lib/importlib/_bootstrap.py +--- orig/Lib/importlib/_bootstrap.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/importlib/_bootstrap.py 2015-05-02 11:56:09.000000000 +0800 @@ -22,7 +22,7 @@ # Bootstrap-related code ###################################################### @@ -858,43 +826,9 @@ diff -Nru orig/Lib/importlib/_bootstrap_external.py modified/Lib/importlib/_boot def _make_relax_case(): -diff -Nru orig/Lib/os.py modified/Lib/os.py ---- orig/Lib/os.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/os.py 2016-02-17 09:09:10.000000000 +0800 -@@ -32,7 +32,7 @@ - __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", - "defpath", "name", "path", "devnull", "SEEK_SET", "SEEK_CUR", - "SEEK_END", "fsencode", "fsdecode", "get_exec_path", "fdopen", -- "popen", "extsep"] -+ "popen", "extsep", "allows_subprocesses"] - - def _exists(name): - return name in globals() -@@ -115,7 +115,6 @@ - - del _names - -- - if _exists("_have_functions"): - _globals = globals() - def _add(str, fn): -@@ -837,6 +836,13 @@ - fsencode, fsdecode = _fscodec() - del _fscodec - -+ -+if sys.platform == "ios": -+ allows_subprocesses = False -+else: -+ allows_subprocesses = False -+ -+ - # Supply spawn*() (probably only for Unix) - if _exists("fork") and not _exists("spawnv") and _exists("execv"): - diff -Nru orig/Lib/plat-ios/IN.py modified/Lib/plat-ios/IN.py --- orig/Lib/plat-ios/IN.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Lib/plat-ios/IN.py 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/plat-ios/IN.py 2015-07-04 14:09:06.000000000 +0800 @@ -0,0 +1,8269 @@ +# Generated by h2py from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/usr/include/netinet/in.h + @@ -9167,15 +9101,15 @@ diff -Nru orig/Lib/plat-ios/IN.py modified/Lib/plat-ios/IN.py +IPV6CTL_MAXID = 51 diff -Nru orig/Lib/plat-ios/regen modified/Lib/plat-ios/regen --- orig/Lib/plat-ios/regen 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Lib/plat-ios/regen 2016-02-14 10:29:10.000000000 +0800 ++++ modified/Lib/plat-ios/regen 2015-04-26 09:08:15.000000000 +0800 @@ -0,0 +1,3 @@ +#! /bin/sh +set -v +include=`xcrun --sdk iphoneos --show-sdk-path`/usr/include python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' `xcrun --sdk iphoneos --show-sdk-path`/usr/include/netinet/in.h diff -Nru orig/Lib/platform.py modified/Lib/platform.py ---- orig/Lib/platform.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/platform.py 2016-02-14 10:29:10.000000000 +0800 -@@ -810,7 +810,7 @@ +--- orig/Lib/platform.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/platform.py 2015-02-28 19:30:28.000000000 +0800 +@@ -841,7 +841,7 @@ """ Interface to the system's uname command. """ @@ -9184,7 +9118,7 @@ diff -Nru orig/Lib/platform.py modified/Lib/platform.py # XXX Others too ? return default try: -@@ -833,7 +833,7 @@ +@@ -864,7 +864,7 @@ default in case the command should fail. """ @@ -9194,8 +9128,8 @@ diff -Nru orig/Lib/platform.py modified/Lib/platform.py return default target = _follow_symlinks(target) diff -Nru orig/Lib/site.py modified/Lib/site.py ---- orig/Lib/site.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/site.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/site.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/site.py 2015-07-04 21:19:43.000000000 +0800 @@ -266,6 +266,9 @@ if get_config_var('PYTHONFRAMEWORK'): USER_SITE = get_path('purelib', 'osx_framework_user') @@ -9207,47 +9141,2465 @@ diff -Nru orig/Lib/site.py modified/Lib/site.py USER_SITE = get_path('purelib', '%s_user' % os.name) return USER_SITE diff -Nru orig/Lib/subprocess.py modified/Lib/subprocess.py ---- orig/Lib/subprocess.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/subprocess.py 2016-02-17 09:17:39.000000000 +0800 -@@ -515,7 +515,6 @@ +--- orig/Lib/subprocess.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/subprocess.py 2015-06-28 20:16:04.000000000 +0800 +@@ -423,1268 +423,1269 @@ + else: + _PopenSelector = selectors.SelectSelector + +- +-__all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", +- "getoutput", "check_output", "CalledProcessError", "DEVNULL"] +- +-if mswindows: +- from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, +- STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, +- STD_ERROR_HANDLE, SW_HIDE, +- STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW) +- +- __all__.extend(["CREATE_NEW_CONSOLE", "CREATE_NEW_PROCESS_GROUP", +- "STD_INPUT_HANDLE", "STD_OUTPUT_HANDLE", +- "STD_ERROR_HANDLE", "SW_HIDE", +- "STARTF_USESTDHANDLES", "STARTF_USESHOWWINDOW"]) +- +- class Handle(int): +- closed = False +- +- def Close(self, CloseHandle=_winapi.CloseHandle): +- if not self.closed: +- self.closed = True +- CloseHandle(self) +- +- def Detach(self): +- if not self.closed: +- self.closed = True +- return int(self) +- raise ValueError("already closed") +- +- def __repr__(self): +- return "Handle(%d)" % int(self) +- +- __del__ = Close +- __str__ = __repr__ +- +-try: +- MAXFD = os.sysconf("SC_OPEN_MAX") +-except: +- MAXFD = 256 +- +-# This lists holds Popen instances for which the underlying process had not +-# exited at the time its __del__ method got called: those processes are wait()ed +-# for synchronously from _cleanup() when a new Popen object is created, to avoid +-# zombie processes. +-_active = [] +- +-def _cleanup(): +- for inst in _active[:]: +- res = inst._internal_poll(_deadstate=sys.maxsize) +- if res is not None: +- try: +- _active.remove(inst) +- except ValueError: +- # This can happen if two threads create a new Popen instance. +- # It's harmless that it was already removed, so ignore. +- pass +- + PIPE = -1 STDOUT = -2 DEVNULL = -3 ++if sys.platform == 'ios': ++ # iOS doesn't support subprocesses; however, some modules still import ++ # subprocess, so it's helpful to retain the symbols in the namespace. ++ __all__ = ["PIPE", "STDOUT", "DEVNULL", "CalledProcessError"] ++else: ++ __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", ++ "getoutput", "check_output", "CalledProcessError", "DEVNULL"] + +-def _eintr_retry_call(func, *args): +- while True: +- try: +- return func(*args) +- except InterruptedError: +- continue +- +- +-# XXX This function is only used by multiprocessing and the test suite, +-# but it's here so that it can be imported when Python is compiled without +-# threads. +- +-def _args_from_interpreter_flags(): +- """Return a list of command-line arguments reproducing the current +- settings in sys.flags and sys.warnoptions.""" +- flag_opt_map = { +- 'debug': 'd', +- # 'inspect': 'i', +- # 'interactive': 'i', +- 'optimize': 'O', +- 'dont_write_bytecode': 'B', +- 'no_user_site': 's', +- 'no_site': 'S', +- 'ignore_environment': 'E', +- 'verbose': 'v', +- 'bytes_warning': 'b', +- 'quiet': 'q', +- 'hash_randomization': 'R', +- } +- args = [] +- for flag, opt in flag_opt_map.items(): +- v = getattr(sys.flags, flag) +- if v > 0: +- if flag == 'hash_randomization': +- v = 1 # Handle specification of an exact seed +- args.append('-' + opt * v) +- for opt in sys.warnoptions: +- args.append('-W' + opt) +- return args +- +- +-def call(*popenargs, timeout=None, **kwargs): +- """Run command with arguments. Wait for command to complete or +- timeout, then return the returncode attribute. +- +- The arguments are the same as for the Popen constructor. Example: +- +- retcode = call(["ls", "-l"]) +- """ +- with Popen(*popenargs, **kwargs) as p: +- try: +- return p.wait(timeout=timeout) +- except: +- p.kill() +- p.wait() +- raise +- +- +-def check_call(*popenargs, **kwargs): +- """Run command with arguments. Wait for command to complete. If +- the exit code was zero then return, otherwise raise +- CalledProcessError. The CalledProcessError object will have the +- return code in the returncode attribute. +- +- The arguments are the same as for the call function. Example: +- +- check_call(["ls", "-l"]) +- """ +- retcode = call(*popenargs, **kwargs) +- if retcode: +- cmd = kwargs.get("args") +- if cmd is None: +- cmd = popenargs[0] +- raise CalledProcessError(retcode, cmd) +- return 0 +- +- +-def check_output(*popenargs, timeout=None, **kwargs): +- r"""Run command with arguments and return its output. +- +- If the exit code was non-zero it raises a CalledProcessError. The +- CalledProcessError object will have the return code in the returncode +- attribute and output in the output attribute. +- +- The arguments are the same as for the Popen constructor. Example: +- +- >>> check_output(["ls", "-l", "/dev/null"]) +- b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' +- +- The stdout argument is not allowed as it is used internally. +- To capture standard error in the result, use stderr=STDOUT. +- +- >>> check_output(["/bin/sh", "-c", +- ... "ls -l non_existent_file ; exit 0"], +- ... stderr=STDOUT) +- b'ls: non_existent_file: No such file or directory\n' +- +- There is an additional optional argument, "input", allowing you to +- pass a string to the subprocess's stdin. If you use this argument +- you may not also use the Popen constructor's "stdin" argument, as +- it too will be used internally. Example: +- +- >>> check_output(["sed", "-e", "s/foo/bar/"], +- ... input=b"when in the course of fooman events\n") +- b'when in the course of barman events\n' +- +- If universal_newlines=True is passed, the return value will be a +- string rather than bytes. +- """ +- if 'stdout' in kwargs: +- raise ValueError('stdout argument not allowed, it will be overridden.') +- if 'input' in kwargs: +- if 'stdin' in kwargs: +- raise ValueError('stdin and input arguments may not both be used.') +- inputdata = kwargs['input'] +- del kwargs['input'] +- kwargs['stdin'] = PIPE +- else: +- inputdata = None +- with Popen(*popenargs, stdout=PIPE, **kwargs) as process: +- try: +- output, unused_err = process.communicate(inputdata, timeout=timeout) +- except TimeoutExpired: +- process.kill() +- output, unused_err = process.communicate() +- raise TimeoutExpired(process.args, timeout, output=output) +- except: +- process.kill() +- process.wait() +- raise +- retcode = process.poll() +- if retcode: +- raise CalledProcessError(retcode, process.args, output=output) +- return output +- +- +-def list2cmdline(seq): +- """ +- Translate a sequence of arguments into a command line +- string, using the same rules as the MS C runtime: +- +- 1) Arguments are delimited by white space, which is either a +- space or a tab. +- +- 2) A string surrounded by double quotation marks is +- interpreted as a single argument, regardless of white space +- contained within. A quoted string can be embedded in an +- argument. +- +- 3) A double quotation mark preceded by a backslash is +- interpreted as a literal double quotation mark. +- +- 4) Backslashes are interpreted literally, unless they +- immediately precede a double quotation mark. +- +- 5) If backslashes immediately precede a double quotation mark, +- every pair of backslashes is interpreted as a literal +- backslash. If the number of backslashes is odd, the last +- backslash escapes the next double quotation mark as +- described in rule 3. +- """ +- +- # See +- # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx +- # or search http://msdn.microsoft.com for +- # "Parsing C++ Command-Line Arguments" +- result = [] +- needquote = False +- for arg in seq: +- bs_buf = [] +- +- # Add a space to separate this argument from the others +- if result: +- result.append(' ') +- +- needquote = (" " in arg) or ("\t" in arg) or not arg +- if needquote: +- result.append('"') +- +- for c in arg: +- if c == '\\': +- # Don't know if we need to double yet. +- bs_buf.append(c) +- elif c == '"': +- # Double backslashes. +- result.append('\\' * len(bs_buf)*2) +- bs_buf = [] +- result.append('\\"') +- else: +- # Normal char +- if bs_buf: +- result.extend(bs_buf) +- bs_buf = [] +- result.append(c) +- +- # Add remaining backslashes, if any. +- if bs_buf: +- result.extend(bs_buf) +- +- if needquote: +- result.extend(bs_buf) +- result.append('"') +- +- return ''.join(result) +- +- +-# Various tools for executing commands and looking at their output and status. +-# +- +-def getstatusoutput(cmd): +- """ Return (status, output) of executing cmd in a shell. ++ if mswindows: ++ from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP, ++ STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, ++ STD_ERROR_HANDLE, SW_HIDE, ++ STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW) ++ ++ __all__.extend(["CREATE_NEW_CONSOLE", "CREATE_NEW_PROCESS_GROUP", ++ "STD_INPUT_HANDLE", "STD_OUTPUT_HANDLE", ++ "STD_ERROR_HANDLE", "SW_HIDE", ++ "STARTF_USESTDHANDLES", "STARTF_USESHOWWINDOW"]) ++ ++ class Handle(int): ++ closed = False ++ ++ def Close(self, CloseHandle=_winapi.CloseHandle): ++ if not self.closed: ++ self.closed = True ++ CloseHandle(self) ++ ++ def Detach(self): ++ if not self.closed: ++ self.closed = True ++ return int(self) ++ raise ValueError("already closed") + +- Execute the string 'cmd' in a shell with 'check_output' and +- return a 2-tuple (status, output). Universal newlines mode is used, +- meaning that the result with be decoded to a string. ++ def __repr__(self): ++ return "Handle(%d)" % int(self) + +- A trailing newline is stripped from the output. +- The exit status for the command can be interpreted +- according to the rules for the function 'wait'. Example: ++ __del__ = Close ++ __str__ = __repr__ + +- >>> import subprocess +- >>> subprocess.getstatusoutput('ls /bin/ls') +- (0, '/bin/ls') +- >>> subprocess.getstatusoutput('cat /bin/junk') +- (256, 'cat: /bin/junk: No such file or directory') +- >>> subprocess.getstatusoutput('/bin/junk') +- (256, 'sh: /bin/junk: not found') +- """ + try: +- data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) +- status = 0 +- except CalledProcessError as ex: +- data = ex.output +- status = ex.returncode +- if data[-1:] == '\n': +- data = data[:-1] +- return status, data - - # XXX This function is only used by multiprocessing and the test suite, - # but it's here so that it can be imported when Python is compiled without - # threads. -@@ -842,6 +841,9 @@ - restore_signals=True, start_new_session=False, - pass_fds=()): - """Create new Popen instance.""" -+ if not os.allows_subprocesses: -+ raise RuntimeError("Subprocesses are not supported on this platform.") -+ - _cleanup() - # Held while anything is calling waitpid before returncode has been - # updated to prevent clobbering returncode if wait() or poll() are -@@ -1560,7 +1562,7 @@ - raise SubprocessError("Unknown child exit status!") +-def getoutput(cmd): +- """Return output (stdout or stderr) of executing cmd in a shell. +- +- Like getstatusoutput(), except the exit status is ignored and the return +- value is a string containing the command's output. Example: +- +- >>> import subprocess +- >>> subprocess.getoutput('ls /bin/ls') +- '/bin/ls' +- """ +- return getstatusoutput(cmd)[1] +- +- +-_PLATFORM_DEFAULT_CLOSE_FDS = object() +- +- +-class Popen(object): +- +- _child_created = False # Set here since __del__ checks it +- +- def __init__(self, args, bufsize=-1, executable=None, +- stdin=None, stdout=None, stderr=None, +- preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, +- shell=False, cwd=None, env=None, universal_newlines=False, +- startupinfo=None, creationflags=0, +- restore_signals=True, start_new_session=False, +- pass_fds=()): +- """Create new Popen instance.""" +- _cleanup() +- # Held while anything is calling waitpid before returncode has been +- # updated to prevent clobbering returncode if wait() or poll() are +- # called from multiple threads at once. After acquiring the lock, +- # code must re-check self.returncode to see if another thread just +- # finished a waitpid() call. +- self._waitpid_lock = threading.Lock() +- +- self._input = None +- self._communication_started = False +- if bufsize is None: +- bufsize = -1 # Restore default +- if not isinstance(bufsize, int): +- raise TypeError("bufsize must be an integer") ++ MAXFD = os.sysconf("SC_OPEN_MAX") ++ except: ++ MAXFD = 256 ++ ++ # This lists holds Popen instances for which the underlying process had not ++ # exited at the time its __del__ method got called: those processes are wait()ed ++ # for synchronously from _cleanup() when a new Popen object is created, to avoid ++ # zombie processes. ++ _active = [] ++ ++ def _cleanup(): ++ for inst in _active[:]: ++ res = inst._internal_poll(_deadstate=sys.maxsize) ++ if res is not None: ++ try: ++ _active.remove(inst) ++ except ValueError: ++ # This can happen if two threads create a new Popen instance. ++ # It's harmless that it was already removed, so ignore. ++ pass + +- if mswindows: +- if preexec_fn is not None: +- raise ValueError("preexec_fn is not supported on Windows " +- "platforms") +- any_stdio_set = (stdin is not None or stdout is not None or +- stderr is not None) +- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: +- if any_stdio_set: +- close_fds = False ++ def _eintr_retry_call(func, *args): ++ while True: ++ try: ++ return func(*args) ++ except InterruptedError: ++ continue ++ ++ ++ # XXX This function is only used by multiprocessing and the test suite, ++ # but it's here so that it can be imported when Python is compiled without ++ # threads. ++ ++ def _args_from_interpreter_flags(): ++ """Return a list of command-line arguments reproducing the current ++ settings in sys.flags and sys.warnoptions.""" ++ flag_opt_map = { ++ 'debug': 'd', ++ # 'inspect': 'i', ++ # 'interactive': 'i', ++ 'optimize': 'O', ++ 'dont_write_bytecode': 'B', ++ 'no_user_site': 's', ++ 'no_site': 'S', ++ 'ignore_environment': 'E', ++ 'verbose': 'v', ++ 'bytes_warning': 'b', ++ 'quiet': 'q', ++ 'hash_randomization': 'R', ++ } ++ args = [] ++ for flag, opt in flag_opt_map.items(): ++ v = getattr(sys.flags, flag) ++ if v > 0: ++ if flag == 'hash_randomization': ++ v = 1 # Handle specification of an exact seed ++ args.append('-' + opt * v) ++ for opt in sys.warnoptions: ++ args.append('-W' + opt) ++ return args ++ ++ ++ def call(*popenargs, timeout=None, **kwargs): ++ """Run command with arguments. Wait for command to complete or ++ timeout, then return the returncode attribute. ++ ++ The arguments are the same as for the Popen constructor. Example: ++ ++ retcode = call(["ls", "-l"]) ++ """ ++ with Popen(*popenargs, **kwargs) as p: ++ try: ++ return p.wait(timeout=timeout) ++ except: ++ p.kill() ++ p.wait() ++ raise ++ ++ ++ def check_call(*popenargs, **kwargs): ++ """Run command with arguments. Wait for command to complete. If ++ the exit code was zero then return, otherwise raise ++ CalledProcessError. The CalledProcessError object will have the ++ return code in the returncode attribute. ++ ++ The arguments are the same as for the call function. Example: ++ ++ check_call(["ls", "-l"]) ++ """ ++ retcode = call(*popenargs, **kwargs) ++ if retcode: ++ cmd = kwargs.get("args") ++ if cmd is None: ++ cmd = popenargs[0] ++ raise CalledProcessError(retcode, cmd) ++ return 0 ++ ++ ++ def check_output(*popenargs, timeout=None, **kwargs): ++ r"""Run command with arguments and return its output. ++ ++ If the exit code was non-zero it raises a CalledProcessError. The ++ CalledProcessError object will have the return code in the returncode ++ attribute and output in the output attribute. ++ ++ The arguments are the same as for the Popen constructor. Example: ++ ++ >>> check_output(["ls", "-l", "/dev/null"]) ++ b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' ++ ++ The stdout argument is not allowed as it is used internally. ++ To capture standard error in the result, use stderr=STDOUT. ++ ++ >>> check_output(["/bin/sh", "-c", ++ ... "ls -l non_existent_file ; exit 0"], ++ ... stderr=STDOUT) ++ b'ls: non_existent_file: No such file or directory\n' ++ ++ There is an additional optional argument, "input", allowing you to ++ pass a string to the subprocess's stdin. If you use this argument ++ you may not also use the Popen constructor's "stdin" argument, as ++ it too will be used internally. Example: ++ ++ >>> check_output(["sed", "-e", "s/foo/bar/"], ++ ... input=b"when in the course of fooman events\n") ++ b'when in the course of barman events\n' ++ ++ If universal_newlines=True is passed, the return value will be a ++ string rather than bytes. ++ """ ++ if 'stdout' in kwargs: ++ raise ValueError('stdout argument not allowed, it will be overridden.') ++ if 'input' in kwargs: ++ if 'stdin' in kwargs: ++ raise ValueError('stdin and input arguments may not both be used.') ++ inputdata = kwargs['input'] ++ del kwargs['input'] ++ kwargs['stdin'] = PIPE ++ else: ++ inputdata = None ++ with Popen(*popenargs, stdout=PIPE, **kwargs) as process: ++ try: ++ output, unused_err = process.communicate(inputdata, timeout=timeout) ++ except TimeoutExpired: ++ process.kill() ++ output, unused_err = process.communicate() ++ raise TimeoutExpired(process.args, timeout, output=output) ++ except: ++ process.kill() ++ process.wait() ++ raise ++ retcode = process.poll() ++ if retcode: ++ raise CalledProcessError(retcode, process.args, output=output) ++ return output ++ ++ ++ def list2cmdline(seq): ++ """ ++ Translate a sequence of arguments into a command line ++ string, using the same rules as the MS C runtime: ++ ++ 1) Arguments are delimited by white space, which is either a ++ space or a tab. ++ ++ 2) A string surrounded by double quotation marks is ++ interpreted as a single argument, regardless of white space ++ contained within. A quoted string can be embedded in an ++ argument. ++ ++ 3) A double quotation mark preceded by a backslash is ++ interpreted as a literal double quotation mark. ++ ++ 4) Backslashes are interpreted literally, unless they ++ immediately precede a double quotation mark. ++ ++ 5) If backslashes immediately precede a double quotation mark, ++ every pair of backslashes is interpreted as a literal ++ backslash. If the number of backslashes is odd, the last ++ backslash escapes the next double quotation mark as ++ described in rule 3. ++ """ ++ ++ # See ++ # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx ++ # or search http://msdn.microsoft.com for ++ # "Parsing C++ Command-Line Arguments" ++ result = [] ++ needquote = False ++ for arg in seq: ++ bs_buf = [] ++ ++ # Add a space to separate this argument from the others ++ if result: ++ result.append(' ') ++ ++ needquote = (" " in arg) or ("\t" in arg) or not arg ++ if needquote: ++ result.append('"') ++ ++ for c in arg: ++ if c == '\\': ++ # Don't know if we need to double yet. ++ bs_buf.append(c) ++ elif c == '"': ++ # Double backslashes. ++ result.append('\\' * len(bs_buf)*2) ++ bs_buf = [] ++ result.append('\\"') + else: ++ # Normal char ++ if bs_buf: ++ result.extend(bs_buf) ++ bs_buf = [] ++ result.append(c) ++ ++ # Add remaining backslashes, if any. ++ if bs_buf: ++ result.extend(bs_buf) ++ ++ if needquote: ++ result.extend(bs_buf) ++ result.append('"') ++ ++ return ''.join(result) ++ ++ ++ # Various tools for executing commands and looking at their output and status. ++ # ++ ++ def getstatusoutput(cmd): ++ """ Return (status, output) of executing cmd in a shell. ++ ++ Execute the string 'cmd' in a shell with 'check_output' and ++ return a 2-tuple (status, output). Universal newlines mode is used, ++ meaning that the result with be decoded to a string. ++ ++ A trailing newline is stripped from the output. ++ The exit status for the command can be interpreted ++ according to the rules for the function 'wait'. Example: ++ ++ >>> import subprocess ++ >>> subprocess.getstatusoutput('ls /bin/ls') ++ (0, '/bin/ls') ++ >>> subprocess.getstatusoutput('cat /bin/junk') ++ (256, 'cat: /bin/junk: No such file or directory') ++ >>> subprocess.getstatusoutput('/bin/junk') ++ (256, 'sh: /bin/junk: not found') ++ """ ++ try: ++ data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT) ++ status = 0 ++ except CalledProcessError as ex: ++ data = ex.output ++ status = ex.returncode ++ if data[-1:] == '\n': ++ data = data[:-1] ++ return status, data ++ ++ def getoutput(cmd): ++ """Return output (stdout or stderr) of executing cmd in a shell. ++ ++ Like getstatusoutput(), except the exit status is ignored and the return ++ value is a string containing the command's output. Example: ++ ++ >>> import subprocess ++ >>> subprocess.getoutput('ls /bin/ls') ++ '/bin/ls' ++ """ ++ return getstatusoutput(cmd)[1] ++ ++ _PLATFORM_DEFAULT_CLOSE_FDS = object() ++ ++ class Popen(object): ++ ++ _child_created = False # Set here since __del__ checks it ++ ++ def __init__(self, args, bufsize=-1, executable=None, ++ stdin=None, stdout=None, stderr=None, ++ preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS, ++ shell=False, cwd=None, env=None, universal_newlines=False, ++ startupinfo=None, creationflags=0, ++ restore_signals=True, start_new_session=False, ++ pass_fds=()): ++ """Create new Popen instance.""" ++ _cleanup() ++ # Held while anything is calling waitpid before returncode has been ++ # updated to prevent clobbering returncode if wait() or poll() are ++ # called from multiple threads at once. After acquiring the lock, ++ # code must re-check self.returncode to see if another thread just ++ # finished a waitpid() call. ++ self._waitpid_lock = threading.Lock() ++ ++ self._input = None ++ self._communication_started = False ++ if bufsize is None: ++ bufsize = -1 # Restore default ++ if not isinstance(bufsize, int): ++ raise TypeError("bufsize must be an integer") ++ ++ if mswindows: ++ if preexec_fn is not None: ++ raise ValueError("preexec_fn is not supported on Windows " ++ "platforms") ++ any_stdio_set = (stdin is not None or stdout is not None or ++ stderr is not None) ++ if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: ++ if any_stdio_set: ++ close_fds = False ++ else: ++ close_fds = True ++ elif close_fds and any_stdio_set: ++ raise ValueError( ++ "close_fds is not supported on Windows platforms" ++ " if you redirect stdin/stdout/stderr") ++ else: ++ # POSIX ++ if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: + close_fds = True +- elif close_fds and any_stdio_set: +- raise ValueError( +- "close_fds is not supported on Windows platforms" +- " if you redirect stdin/stdout/stderr") +- else: +- # POSIX +- if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS: +- close_fds = True +- if pass_fds and not close_fds: +- warnings.warn("pass_fds overriding close_fds.", RuntimeWarning) +- close_fds = True +- if startupinfo is not None: +- raise ValueError("startupinfo is only supported on Windows " +- "platforms") +- if creationflags != 0: +- raise ValueError("creationflags is only supported on Windows " +- "platforms") +- +- self.args = args +- self.stdin = None +- self.stdout = None +- self.stderr = None +- self.pid = None +- self.returncode = None +- self.universal_newlines = universal_newlines +- +- # Input and output objects. The general principle is like +- # this: +- # +- # Parent Child +- # ------ ----- +- # p2cwrite ---stdin---> p2cread +- # c2pread <--stdout--- c2pwrite +- # errread <--stderr--- errwrite +- # +- # On POSIX, the child objects are file descriptors. On +- # Windows, these are Windows file handles. The parent objects +- # are file descriptors on both platforms. The parent objects +- # are -1 when not using PIPEs. The child objects are -1 +- # when not redirecting. +- +- (p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite) = self._get_handles(stdin, stdout, stderr) +- +- # We wrap OS handles *before* launching the child, otherwise a +- # quickly terminating child could make our fds unwrappable +- # (see #8458). ++ if pass_fds and not close_fds: ++ warnings.warn("pass_fds overriding close_fds.", RuntimeWarning) ++ close_fds = True ++ if startupinfo is not None: ++ raise ValueError("startupinfo is only supported on Windows " ++ "platforms") ++ if creationflags != 0: ++ raise ValueError("creationflags is only supported on Windows " ++ "platforms") ++ ++ self.args = args ++ self.stdin = None ++ self.stdout = None ++ self.stderr = None ++ self.pid = None ++ self.returncode = None ++ self.universal_newlines = universal_newlines ++ ++ # Input and output objects. The general principle is like ++ # this: ++ # ++ # Parent Child ++ # ------ ----- ++ # p2cwrite ---stdin---> p2cread ++ # c2pread <--stdout--- c2pwrite ++ # errread <--stderr--- errwrite ++ # ++ # On POSIX, the child objects are file descriptors. On ++ # Windows, these are Windows file handles. The parent objects ++ # are file descriptors on both platforms. The parent objects ++ # are -1 when not using PIPEs. The child objects are -1 ++ # when not redirecting. ++ ++ (p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite) = self._get_handles(stdin, stdout, stderr) ++ ++ # We wrap OS handles *before* launching the child, otherwise a ++ # quickly terminating child could make our fds unwrappable ++ # (see #8458). ++ ++ if mswindows: ++ if p2cwrite != -1: ++ p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) ++ if c2pread != -1: ++ c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) ++ if errread != -1: ++ errread = msvcrt.open_osfhandle(errread.Detach(), 0) + +- if mswindows: + if p2cwrite != -1: +- p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) ++ self.stdin = io.open(p2cwrite, 'wb', bufsize) ++ if universal_newlines: ++ self.stdin = io.TextIOWrapper(self.stdin, write_through=True) + if c2pread != -1: +- c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) ++ self.stdout = io.open(c2pread, 'rb', bufsize) ++ if universal_newlines: ++ self.stdout = io.TextIOWrapper(self.stdout) + if errread != -1: +- errread = msvcrt.open_osfhandle(errread.Detach(), 0) +- +- if p2cwrite != -1: +- self.stdin = io.open(p2cwrite, 'wb', bufsize) +- if universal_newlines: +- self.stdin = io.TextIOWrapper(self.stdin, write_through=True) +- if c2pread != -1: +- self.stdout = io.open(c2pread, 'rb', bufsize) +- if universal_newlines: +- self.stdout = io.TextIOWrapper(self.stdout) +- if errread != -1: +- self.stderr = io.open(errread, 'rb', bufsize) +- if universal_newlines: +- self.stderr = io.TextIOWrapper(self.stderr) ++ self.stderr = io.open(errread, 'rb', bufsize) ++ if universal_newlines: ++ self.stderr = io.TextIOWrapper(self.stderr) + +- self._closed_child_pipe_fds = False +- try: +- self._execute_child(args, executable, preexec_fn, close_fds, +- pass_fds, cwd, env, +- startupinfo, creationflags, shell, +- p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite, +- restore_signals, start_new_session) +- except: +- # Cleanup if the child failed starting. +- for f in filter(None, (self.stdin, self.stdout, self.stderr)): +- try: +- f.close() +- except OSError: +- pass # Ignore EBADF or other errors. +- +- if not self._closed_child_pipe_fds: +- to_close = [] +- if stdin == PIPE: +- to_close.append(p2cread) +- if stdout == PIPE: +- to_close.append(c2pwrite) +- if stderr == PIPE: +- to_close.append(errwrite) +- if hasattr(self, '_devnull'): +- to_close.append(self._devnull) +- for fd in to_close: ++ self._closed_child_pipe_fds = False ++ try: ++ self._execute_child(args, executable, preexec_fn, close_fds, ++ pass_fds, cwd, env, ++ startupinfo, creationflags, shell, ++ p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite, ++ restore_signals, start_new_session) ++ except: ++ # Cleanup if the child failed starting. ++ for f in filter(None, (self.stdin, self.stdout, self.stderr)): + try: +- os.close(fd) ++ f.close() + except OSError: +- pass ++ pass # Ignore EBADF or other errors. + +- raise ++ if not self._closed_child_pipe_fds: ++ to_close = [] ++ if stdin == PIPE: ++ to_close.append(p2cread) ++ if stdout == PIPE: ++ to_close.append(c2pwrite) ++ if stderr == PIPE: ++ to_close.append(errwrite) ++ if hasattr(self, '_devnull'): ++ to_close.append(self._devnull) ++ for fd in to_close: ++ try: ++ os.close(fd) ++ except OSError: ++ pass + ++ raise + +- def _translate_newlines(self, data, encoding): +- data = data.decode(encoding) +- return data.replace("\r\n", "\n").replace("\r", "\n") +- +- def __enter__(self): +- return self +- +- def __exit__(self, type, value, traceback): +- if self.stdout: +- self.stdout.close() +- if self.stderr: +- self.stderr.close() +- if self.stdin: +- self.stdin.close() +- # Wait for the process to terminate, to avoid zombies. +- self.wait() +- +- def __del__(self, _maxsize=sys.maxsize): +- if not self._child_created: +- # We didn't get to successfully create a child process. +- return +- # In case the child hasn't been waited on, check if it's done. +- self._internal_poll(_deadstate=_maxsize) +- if self.returncode is None and _active is not None: +- # Child is still running, keep us alive until we can wait on it. +- _active.append(self) +- +- def _get_devnull(self): +- if not hasattr(self, '_devnull'): +- self._devnull = os.open(os.devnull, os.O_RDWR) +- return self._devnull +- +- def communicate(self, input=None, timeout=None): +- """Interact with process: Send data to stdin. Read data from +- stdout and stderr, until end-of-file is reached. Wait for +- process to terminate. The optional input argument should be +- bytes to be sent to the child process, or None, if no data +- should be sent to the child. +- +- communicate() returns a tuple (stdout, stderr).""" +- +- if self._communication_started and input: +- raise ValueError("Cannot send input after starting communication") +- +- # Optimization: If we are not worried about timeouts, we haven't +- # started communicating, and we have one or zero pipes, using select() +- # or threads is unnecessary. +- if (timeout is None and not self._communication_started and +- [self.stdin, self.stdout, self.stderr].count(None) >= 2): +- stdout = None +- stderr = None +- if self.stdin: +- if input: +- try: +- self.stdin.write(input) +- except OSError as e: +- if e.errno != errno.EPIPE and e.errno != errno.EINVAL: +- raise +- self.stdin.close() +- elif self.stdout: +- stdout = _eintr_retry_call(self.stdout.read) +- self.stdout.close() +- elif self.stderr: +- stderr = _eintr_retry_call(self.stderr.read) +- self.stderr.close() +- self.wait() +- else: +- if timeout is not None: +- endtime = _time() + timeout +- else: +- endtime = None + +- try: +- stdout, stderr = self._communicate(input, endtime, timeout) +- finally: +- self._communication_started = True ++ def _translate_newlines(self, data, encoding): ++ data = data.decode(encoding) ++ return data.replace("\r\n", "\n").replace("\r", "\n") + +- sts = self.wait(timeout=self._remaining_time(endtime)) ++ def __enter__(self): ++ return self + +- return (stdout, stderr) ++ def __exit__(self, type, value, traceback): ++ if self.stdout: ++ self.stdout.close() ++ if self.stderr: ++ self.stderr.close() ++ if self.stdin: ++ self.stdin.close() ++ # Wait for the process to terminate, to avoid zombies. ++ self.wait() + ++ def __del__(self, _maxsize=sys.maxsize): ++ if not self._child_created: ++ # We didn't get to successfully create a child process. ++ return ++ # In case the child hasn't been waited on, check if it's done. ++ self._internal_poll(_deadstate=_maxsize) ++ if self.returncode is None and _active is not None: ++ # Child is still running, keep us alive until we can wait on it. ++ _active.append(self) ++ ++ def _get_devnull(self): ++ if not hasattr(self, '_devnull'): ++ self._devnull = os.open(os.devnull, os.O_RDWR) ++ return self._devnull ++ ++ def communicate(self, input=None, timeout=None): ++ """Interact with process: Send data to stdin. Read data from ++ stdout and stderr, until end-of-file is reached. Wait for ++ process to terminate. The optional input argument should be ++ bytes to be sent to the child process, or None, if no data ++ should be sent to the child. ++ ++ communicate() returns a tuple (stdout, stderr).""" ++ ++ if self._communication_started and input: ++ raise ValueError("Cannot send input after starting communication") ++ ++ # Optimization: If we are not worried about timeouts, we haven't ++ # started communicating, and we have one or zero pipes, using select() ++ # or threads is unnecessary. ++ if (timeout is None and not self._communication_started and ++ [self.stdin, self.stdout, self.stderr].count(None) >= 2): ++ stdout = None ++ stderr = None ++ if self.stdin: ++ if input: ++ try: ++ self.stdin.write(input) ++ except OSError as e: ++ if e.errno != errno.EPIPE and e.errno != errno.EINVAL: ++ raise ++ self.stdin.close() ++ elif self.stdout: ++ stdout = _eintr_retry_call(self.stdout.read) ++ self.stdout.close() ++ elif self.stderr: ++ stderr = _eintr_retry_call(self.stderr.read) ++ self.stderr.close() ++ self.wait() ++ else: ++ if timeout is not None: ++ endtime = _time() + timeout ++ else: ++ endtime = None +- def poll(self): +- return self._internal_poll() ++ try: ++ stdout, stderr = self._communicate(input, endtime, timeout) ++ finally: ++ self._communication_started = True + ++ sts = self.wait(timeout=self._remaining_time(endtime)) + +- def _remaining_time(self, endtime): +- """Convenience for _communicate when computing timeouts.""" +- if endtime is None: +- return None +- else: +- return endtime - _time() ++ return (stdout, stderr) + + +- def _check_timeout(self, endtime, orig_timeout): +- """Convenience for checking if a timeout has expired.""" +- if endtime is None: +- return +- if _time() > endtime: +- raise TimeoutExpired(self.args, orig_timeout) ++ def poll(self): ++ return self._internal_poll() + + +- if mswindows: +- # +- # Windows methods +- # +- def _get_handles(self, stdin, stdout, stderr): +- """Construct and return tuple with IO objects: +- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite +- """ +- if stdin is None and stdout is None and stderr is None: +- return (-1, -1, -1, -1, -1, -1) +- +- p2cread, p2cwrite = -1, -1 +- c2pread, c2pwrite = -1, -1 +- errread, errwrite = -1, -1 +- +- if stdin is None: +- p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE) +- if p2cread is None: +- p2cread, _ = _winapi.CreatePipe(None, 0) +- p2cread = Handle(p2cread) +- _winapi.CloseHandle(_) +- elif stdin == PIPE: +- p2cread, p2cwrite = _winapi.CreatePipe(None, 0) +- p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite) +- elif stdin == DEVNULL: +- p2cread = msvcrt.get_osfhandle(self._get_devnull()) +- elif isinstance(stdin, int): +- p2cread = msvcrt.get_osfhandle(stdin) ++ def _remaining_time(self, endtime): ++ """Convenience for _communicate when computing timeouts.""" ++ if endtime is None: ++ return None + else: +- # Assuming file-like object +- p2cread = msvcrt.get_osfhandle(stdin.fileno()) +- p2cread = self._make_inheritable(p2cread) +- +- if stdout is None: +- c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE) +- if c2pwrite is None: +- _, c2pwrite = _winapi.CreatePipe(None, 0) +- c2pwrite = Handle(c2pwrite) +- _winapi.CloseHandle(_) +- elif stdout == PIPE: +- c2pread, c2pwrite = _winapi.CreatePipe(None, 0) +- c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite) +- elif stdout == DEVNULL: +- c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) +- elif isinstance(stdout, int): +- c2pwrite = msvcrt.get_osfhandle(stdout) +- else: +- # Assuming file-like object +- c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) +- c2pwrite = self._make_inheritable(c2pwrite) +- +- if stderr is None: +- errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE) +- if errwrite is None: +- _, errwrite = _winapi.CreatePipe(None, 0) +- errwrite = Handle(errwrite) +- _winapi.CloseHandle(_) +- elif stderr == PIPE: +- errread, errwrite = _winapi.CreatePipe(None, 0) +- errread, errwrite = Handle(errread), Handle(errwrite) +- elif stderr == STDOUT: +- errwrite = c2pwrite +- elif stderr == DEVNULL: +- errwrite = msvcrt.get_osfhandle(self._get_devnull()) +- elif isinstance(stderr, int): +- errwrite = msvcrt.get_osfhandle(stderr) +- else: +- # Assuming file-like object +- errwrite = msvcrt.get_osfhandle(stderr.fileno()) +- errwrite = self._make_inheritable(errwrite) +- +- return (p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite) +- +- +- def _make_inheritable(self, handle): +- """Return a duplicate of handle, which is inheritable""" +- h = _winapi.DuplicateHandle( +- _winapi.GetCurrentProcess(), handle, +- _winapi.GetCurrentProcess(), 0, 1, +- _winapi.DUPLICATE_SAME_ACCESS) +- return Handle(h) +- +- +- def _execute_child(self, args, executable, preexec_fn, close_fds, +- pass_fds, cwd, env, +- startupinfo, creationflags, shell, +- p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite, +- unused_restore_signals, unused_start_new_session): +- """Execute program (MS Windows version)""" +- +- assert not pass_fds, "pass_fds not supported on Windows." +- +- if not isinstance(args, str): +- args = list2cmdline(args) +- +- # Process startup details +- if startupinfo is None: +- startupinfo = STARTUPINFO() +- if -1 not in (p2cread, c2pwrite, errwrite): +- startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES +- startupinfo.hStdInput = p2cread +- startupinfo.hStdOutput = c2pwrite +- startupinfo.hStdError = errwrite +- +- if shell: +- startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW +- startupinfo.wShowWindow = _winapi.SW_HIDE +- comspec = os.environ.get("COMSPEC", "cmd.exe") +- args = '{} /c "{}"'.format (comspec, args) ++ return endtime - _time() + +- # Start the process +- try: +- hp, ht, pid, tid = _winapi.CreateProcess(executable, args, +- # no special security +- None, None, +- int(not close_fds), +- creationflags, +- env, +- cwd, +- startupinfo) +- finally: +- # Child is launched. Close the parent's copy of those pipe +- # handles that only the child should have open. You need +- # to make sure that no handles to the write end of the +- # output pipe are maintained in this process or else the +- # pipe will not close when the child process exits and the +- # ReadFile will hang. +- if p2cread != -1: +- p2cread.Close() +- if c2pwrite != -1: +- c2pwrite.Close() +- if errwrite != -1: +- errwrite.Close() +- if hasattr(self, '_devnull'): +- os.close(self._devnull) +- +- # Retain the process handle, but close the thread handle +- self._child_created = True +- self._handle = Handle(hp) +- self.pid = pid +- _winapi.CloseHandle(ht) +- +- def _internal_poll(self, _deadstate=None, +- _WaitForSingleObject=_winapi.WaitForSingleObject, +- _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0, +- _GetExitCodeProcess=_winapi.GetExitCodeProcess): +- """Check if child process has terminated. Returns returncode +- attribute. +- +- This method is called by __del__, so it can only refer to objects +- in its local scope. +- +- """ +- if self.returncode is None: +- if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: +- self.returncode = _GetExitCodeProcess(self._handle) +- return self.returncode +- +- +- def wait(self, timeout=None, endtime=None): +- """Wait for child process to terminate. Returns returncode +- attribute.""" +- if endtime is not None: +- timeout = self._remaining_time(endtime) +- if timeout is None: +- timeout_millis = _winapi.INFINITE +- else: +- timeout_millis = int(timeout * 1000) +- if self.returncode is None: +- result = _winapi.WaitForSingleObject(self._handle, +- timeout_millis) +- if result == _winapi.WAIT_TIMEOUT: +- raise TimeoutExpired(self.args, timeout) +- self.returncode = _winapi.GetExitCodeProcess(self._handle) +- return self.returncode +- +- +- def _readerthread(self, fh, buffer): +- buffer.append(fh.read()) +- fh.close() +- +- +- def _communicate(self, input, endtime, orig_timeout): +- # Start reader threads feeding into a list hanging off of this +- # object, unless they've already been started. +- if self.stdout and not hasattr(self, "_stdout_buff"): +- self._stdout_buff = [] +- self.stdout_thread = \ +- threading.Thread(target=self._readerthread, +- args=(self.stdout, self._stdout_buff)) +- self.stdout_thread.daemon = True +- self.stdout_thread.start() +- if self.stderr and not hasattr(self, "_stderr_buff"): +- self._stderr_buff = [] +- self.stderr_thread = \ +- threading.Thread(target=self._readerthread, +- args=(self.stderr, self._stderr_buff)) +- self.stderr_thread.daemon = True +- self.stderr_thread.start() + +- if self.stdin: +- if input is not None: +- try: +- self.stdin.write(input) +- except OSError as e: +- if e.errno == errno.EPIPE: +- # communicate() should ignore pipe full error +- pass +- elif (e.errno == errno.EINVAL +- and self.poll() is not None): +- # Issue #19612: stdin.write() fails with EINVAL +- # if the process already exited before the write +- pass +- else: +- raise +- self.stdin.close() ++ def _check_timeout(self, endtime, orig_timeout): ++ """Convenience for checking if a timeout has expired.""" ++ if endtime is None: ++ return ++ if _time() > endtime: ++ raise TimeoutExpired(self.args, orig_timeout) + +- # Wait for the reader threads, or time out. If we time out, the +- # threads remain reading and the fds left open in case the user +- # calls communicate again. +- if self.stdout is not None: +- self.stdout_thread.join(self._remaining_time(endtime)) +- if self.stdout_thread.is_alive(): +- raise TimeoutExpired(self.args, orig_timeout) +- if self.stderr is not None: +- self.stderr_thread.join(self._remaining_time(endtime)) +- if self.stderr_thread.is_alive(): +- raise TimeoutExpired(self.args, orig_timeout) +- +- # Collect the output from and close both pipes, now that we know +- # both have been read successfully. +- stdout = None +- stderr = None +- if self.stdout: +- stdout = self._stdout_buff +- self.stdout.close() +- if self.stderr: +- stderr = self._stderr_buff +- self.stderr.close() + +- # All data exchanged. Translate lists into strings. +- if stdout is not None: +- stdout = stdout[0] +- if stderr is not None: +- stderr = stderr[0] ++ if mswindows: ++ # ++ # Windows methods ++ # ++ def _get_handles(self, stdin, stdout, stderr): ++ """Construct and return tuple with IO objects: ++ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite ++ """ ++ if stdin is None and stdout is None and stderr is None: ++ return (-1, -1, -1, -1, -1, -1) ++ ++ p2cread, p2cwrite = -1, -1 ++ c2pread, c2pwrite = -1, -1 ++ errread, errwrite = -1, -1 ++ ++ if stdin is None: ++ p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE) ++ if p2cread is None: ++ p2cread, _ = _winapi.CreatePipe(None, 0) ++ p2cread = Handle(p2cread) ++ _winapi.CloseHandle(_) ++ elif stdin == PIPE: ++ p2cread, p2cwrite = _winapi.CreatePipe(None, 0) ++ p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite) ++ elif stdin == DEVNULL: ++ p2cread = msvcrt.get_osfhandle(self._get_devnull()) ++ elif isinstance(stdin, int): ++ p2cread = msvcrt.get_osfhandle(stdin) ++ else: ++ # Assuming file-like object ++ p2cread = msvcrt.get_osfhandle(stdin.fileno()) ++ p2cread = self._make_inheritable(p2cread) ++ ++ if stdout is None: ++ c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE) ++ if c2pwrite is None: ++ _, c2pwrite = _winapi.CreatePipe(None, 0) ++ c2pwrite = Handle(c2pwrite) ++ _winapi.CloseHandle(_) ++ elif stdout == PIPE: ++ c2pread, c2pwrite = _winapi.CreatePipe(None, 0) ++ c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite) ++ elif stdout == DEVNULL: ++ c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) ++ elif isinstance(stdout, int): ++ c2pwrite = msvcrt.get_osfhandle(stdout) ++ else: ++ # Assuming file-like object ++ c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) ++ c2pwrite = self._make_inheritable(c2pwrite) ++ ++ if stderr is None: ++ errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE) ++ if errwrite is None: ++ _, errwrite = _winapi.CreatePipe(None, 0) ++ errwrite = Handle(errwrite) ++ _winapi.CloseHandle(_) ++ elif stderr == PIPE: ++ errread, errwrite = _winapi.CreatePipe(None, 0) ++ errread, errwrite = Handle(errread), Handle(errwrite) ++ elif stderr == STDOUT: ++ errwrite = c2pwrite ++ elif stderr == DEVNULL: ++ errwrite = msvcrt.get_osfhandle(self._get_devnull()) ++ elif isinstance(stderr, int): ++ errwrite = msvcrt.get_osfhandle(stderr) ++ else: ++ # Assuming file-like object ++ errwrite = msvcrt.get_osfhandle(stderr.fileno()) ++ errwrite = self._make_inheritable(errwrite) ++ ++ return (p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite) ++ ++ ++ def _make_inheritable(self, handle): ++ """Return a duplicate of handle, which is inheritable""" ++ h = _winapi.DuplicateHandle( ++ _winapi.GetCurrentProcess(), handle, ++ _winapi.GetCurrentProcess(), 0, 1, ++ _winapi.DUPLICATE_SAME_ACCESS) ++ return Handle(h) ++ ++ ++ def _execute_child(self, args, executable, preexec_fn, close_fds, ++ pass_fds, cwd, env, ++ startupinfo, creationflags, shell, ++ p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite, ++ unused_restore_signals, unused_start_new_session): ++ """Execute program (MS Windows version)""" ++ ++ assert not pass_fds, "pass_fds not supported on Windows." ++ ++ if not isinstance(args, str): ++ args = list2cmdline(args) ++ ++ # Process startup details ++ if startupinfo is None: ++ startupinfo = STARTUPINFO() ++ if -1 not in (p2cread, c2pwrite, errwrite): ++ startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES ++ startupinfo.hStdInput = p2cread ++ startupinfo.hStdOutput = c2pwrite ++ startupinfo.hStdError = errwrite ++ ++ if shell: ++ startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW ++ startupinfo.wShowWindow = _winapi.SW_HIDE ++ comspec = os.environ.get("COMSPEC", "cmd.exe") ++ args = '{} /c "{}"'.format (comspec, args) + +- return (stdout, stderr) ++ # Start the process ++ try: ++ hp, ht, pid, tid = _winapi.CreateProcess(executable, args, ++ # no special security ++ None, None, ++ int(not close_fds), ++ creationflags, ++ env, ++ cwd, ++ startupinfo) ++ finally: ++ # Child is launched. Close the parent's copy of those pipe ++ # handles that only the child should have open. You need ++ # to make sure that no handles to the write end of the ++ # output pipe are maintained in this process or else the ++ # pipe will not close when the child process exits and the ++ # ReadFile will hang. ++ if p2cread != -1: ++ p2cread.Close() ++ if c2pwrite != -1: ++ c2pwrite.Close() ++ if errwrite != -1: ++ errwrite.Close() ++ if hasattr(self, '_devnull'): ++ os.close(self._devnull) ++ ++ # Retain the process handle, but close the thread handle ++ self._child_created = True ++ self._handle = Handle(hp) ++ self.pid = pid ++ _winapi.CloseHandle(ht) ++ ++ def _internal_poll(self, _deadstate=None, ++ _WaitForSingleObject=_winapi.WaitForSingleObject, ++ _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0, ++ _GetExitCodeProcess=_winapi.GetExitCodeProcess): ++ """Check if child process has terminated. Returns returncode ++ attribute. ++ ++ This method is called by __del__, so it can only refer to objects ++ in its local scope. ++ ++ """ ++ if self.returncode is None: ++ if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0: ++ self.returncode = _GetExitCodeProcess(self._handle) ++ return self.returncode + +- def send_signal(self, sig): +- """Send a signal to the process +- """ +- if sig == signal.SIGTERM: +- self.terminate() +- elif sig == signal.CTRL_C_EVENT: +- os.kill(self.pid, signal.CTRL_C_EVENT) +- elif sig == signal.CTRL_BREAK_EVENT: +- os.kill(self.pid, signal.CTRL_BREAK_EVENT) +- else: +- raise ValueError("Unsupported signal: {}".format(sig)) + +- def terminate(self): +- """Terminates the process +- """ +- try: +- _winapi.TerminateProcess(self._handle, 1) +- except PermissionError: +- # ERROR_ACCESS_DENIED (winerror 5) is received when the +- # process already died. +- rc = _winapi.GetExitCodeProcess(self._handle) +- if rc == _winapi.STILL_ACTIVE: +- raise +- self.returncode = rc ++ def wait(self, timeout=None, endtime=None): ++ """Wait for child process to terminate. Returns returncode ++ attribute.""" ++ if endtime is not None: ++ timeout = self._remaining_time(endtime) ++ if timeout is None: ++ timeout_millis = _winapi.INFINITE ++ else: ++ timeout_millis = int(timeout * 1000) ++ if self.returncode is None: ++ result = _winapi.WaitForSingleObject(self._handle, ++ timeout_millis) ++ if result == _winapi.WAIT_TIMEOUT: ++ raise TimeoutExpired(self.args, timeout) ++ self.returncode = _winapi.GetExitCodeProcess(self._handle) ++ return self.returncode + +- kill = terminate + +- else: +- # +- # POSIX methods +- # +- def _get_handles(self, stdin, stdout, stderr): +- """Construct and return tuple with IO objects: +- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite +- """ +- p2cread, p2cwrite = -1, -1 +- c2pread, c2pwrite = -1, -1 +- errread, errwrite = -1, -1 +- +- if stdin is None: +- pass +- elif stdin == PIPE: +- p2cread, p2cwrite = os.pipe() +- elif stdin == DEVNULL: +- p2cread = self._get_devnull() +- elif isinstance(stdin, int): +- p2cread = stdin +- else: +- # Assuming file-like object +- p2cread = stdin.fileno() ++ def _readerthread(self, fh, buffer): ++ buffer.append(fh.read()) ++ fh.close() ++ ++ ++ def _communicate(self, input, endtime, orig_timeout): ++ # Start reader threads feeding into a list hanging off of this ++ # object, unless they've already been started. ++ if self.stdout and not hasattr(self, "_stdout_buff"): ++ self._stdout_buff = [] ++ self.stdout_thread = \ ++ threading.Thread(target=self._readerthread, ++ args=(self.stdout, self._stdout_buff)) ++ self.stdout_thread.daemon = True ++ self.stdout_thread.start() ++ if self.stderr and not hasattr(self, "_stderr_buff"): ++ self._stderr_buff = [] ++ self.stderr_thread = \ ++ threading.Thread(target=self._readerthread, ++ args=(self.stderr, self._stderr_buff)) ++ self.stderr_thread.daemon = True ++ self.stderr_thread.start() + +- if stdout is None: +- pass +- elif stdout == PIPE: +- c2pread, c2pwrite = os.pipe() +- elif stdout == DEVNULL: +- c2pwrite = self._get_devnull() +- elif isinstance(stdout, int): +- c2pwrite = stdout +- else: +- # Assuming file-like object +- c2pwrite = stdout.fileno() ++ if self.stdin: ++ if input is not None: ++ try: ++ self.stdin.write(input) ++ except OSError as e: ++ if e.errno == errno.EPIPE: ++ # communicate() should ignore pipe full error ++ pass ++ elif (e.errno == errno.EINVAL ++ and self.poll() is not None): ++ # Issue #19612: stdin.write() fails with EINVAL ++ # if the process already exited before the write ++ pass ++ else: ++ raise ++ self.stdin.close() + +- if stderr is None: +- pass +- elif stderr == PIPE: +- errread, errwrite = os.pipe() +- elif stderr == STDOUT: +- errwrite = c2pwrite +- elif stderr == DEVNULL: +- errwrite = self._get_devnull() +- elif isinstance(stderr, int): +- errwrite = stderr +- else: +- # Assuming file-like object +- errwrite = stderr.fileno() ++ # Wait for the reader threads, or time out. If we time out, the ++ # threads remain reading and the fds left open in case the user ++ # calls communicate again. ++ if self.stdout is not None: ++ self.stdout_thread.join(self._remaining_time(endtime)) ++ if self.stdout_thread.is_alive(): ++ raise TimeoutExpired(self.args, orig_timeout) ++ if self.stderr is not None: ++ self.stderr_thread.join(self._remaining_time(endtime)) ++ if self.stderr_thread.is_alive(): ++ raise TimeoutExpired(self.args, orig_timeout) + +- return (p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite) +- +- +- def _close_fds(self, fds_to_keep): +- start_fd = 3 +- for fd in sorted(fds_to_keep): +- if fd >= start_fd: +- os.closerange(start_fd, fd) +- start_fd = fd + 1 +- if start_fd <= MAXFD: +- os.closerange(start_fd, MAXFD) +- +- +- def _execute_child(self, args, executable, preexec_fn, close_fds, +- pass_fds, cwd, env, +- startupinfo, creationflags, shell, +- p2cread, p2cwrite, +- c2pread, c2pwrite, +- errread, errwrite, +- restore_signals, start_new_session): +- """Execute program (POSIX version)""" ++ # Collect the output from and close both pipes, now that we know ++ # both have been read successfully. ++ stdout = None ++ stderr = None ++ if self.stdout: ++ stdout = self._stdout_buff ++ self.stdout.close() ++ if self.stderr: ++ stderr = self._stderr_buff ++ self.stderr.close() + +- if isinstance(args, (str, bytes)): +- args = [args] +- else: +- args = list(args) ++ # All data exchanged. Translate lists into strings. ++ if stdout is not None: ++ stdout = stdout[0] ++ if stderr is not None: ++ stderr = stderr[0] + +- if shell: +- args = ["/bin/sh", "-c"] + args +- if executable: +- args[0] = executable +- +- if executable is None: +- executable = args[0] +- orig_executable = executable +- +- # For transferring possible exec failure from child to parent. +- # Data format: "exception name:hex errno:description" +- # Pickle is not used; it is complex and involves memory allocation. +- errpipe_read, errpipe_write = os.pipe() +- # errpipe_write must not be in the standard io 0, 1, or 2 fd range. +- low_fds_to_close = [] +- while errpipe_write < 3: +- low_fds_to_close.append(errpipe_write) +- errpipe_write = os.dup(errpipe_write) +- for low_fd in low_fds_to_close: +- os.close(low_fd) +- try: +- try: +- # We must avoid complex work that could involve +- # malloc or free in the child process to avoid +- # potential deadlocks, thus we do all this here. +- # and pass it to fork_exec() +- +- if env is not None: +- env_list = [os.fsencode(k) + b'=' + os.fsencode(v) +- for k, v in env.items()] +- else: +- env_list = None # Use execv instead of execve. +- executable = os.fsencode(executable) +- if os.path.dirname(executable): +- executable_list = (executable,) +- else: +- # This matches the behavior of os._execvpe(). +- executable_list = tuple( +- os.path.join(os.fsencode(dir), executable) +- for dir in os.get_exec_path(env)) +- fds_to_keep = set(pass_fds) +- fds_to_keep.add(errpipe_write) +- self.pid = _posixsubprocess.fork_exec( +- args, executable_list, +- close_fds, sorted(fds_to_keep), cwd, env_list, +- p2cread, p2cwrite, c2pread, c2pwrite, +- errread, errwrite, +- errpipe_read, errpipe_write, +- restore_signals, start_new_session, preexec_fn) +- self._child_created = True +- finally: +- # be sure the FD is closed no matter what +- os.close(errpipe_write) ++ return (stdout, stderr) + +- # self._devnull is not always defined. +- devnull_fd = getattr(self, '_devnull', None) +- if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: +- os.close(p2cread) +- if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: +- os.close(c2pwrite) +- if errwrite != -1 and errread != -1 and errwrite != devnull_fd: +- os.close(errwrite) +- if devnull_fd is not None: +- os.close(devnull_fd) +- # Prevent a double close of these fds from __init__ on error. +- self._closed_child_pipe_fds = True +- +- # Wait for exec to fail or succeed; possibly raising an +- # exception (limited in size) +- errpipe_data = bytearray() +- while True: +- part = _eintr_retry_call(os.read, errpipe_read, 50000) +- errpipe_data += part +- if not part or len(errpipe_data) > 50000: +- break +- finally: +- # be sure the FD is closed no matter what +- os.close(errpipe_read) ++ def send_signal(self, sig): ++ """Send a signal to the process ++ """ ++ if sig == signal.SIGTERM: ++ self.terminate() ++ elif sig == signal.CTRL_C_EVENT: ++ os.kill(self.pid, signal.CTRL_C_EVENT) ++ elif sig == signal.CTRL_BREAK_EVENT: ++ os.kill(self.pid, signal.CTRL_BREAK_EVENT) ++ else: ++ raise ValueError("Unsupported signal: {}".format(sig)) + +- if errpipe_data: ++ def terminate(self): ++ """Terminates the process ++ """ + try: +- _eintr_retry_call(os.waitpid, self.pid, 0) +- except OSError as e: +- if e.errno != errno.ECHILD: ++ _winapi.TerminateProcess(self._handle, 1) ++ except PermissionError: ++ # ERROR_ACCESS_DENIED (winerror 5) is received when the ++ # process already died. ++ rc = _winapi.GetExitCodeProcess(self._handle) ++ if rc == _winapi.STILL_ACTIVE: + raise +- try: +- exception_name, hex_errno, err_msg = ( +- errpipe_data.split(b':', 2)) +- except ValueError: +- exception_name = b'SubprocessError' +- hex_errno = b'0' +- err_msg = (b'Bad exception data from child: ' + +- repr(errpipe_data)) +- child_exception_type = getattr( +- builtins, exception_name.decode('ascii'), +- SubprocessError) +- err_msg = err_msg.decode(errors="surrogatepass") +- if issubclass(child_exception_type, OSError) and hex_errno: +- errno_num = int(hex_errno, 16) +- child_exec_never_called = (err_msg == "noexec") +- if child_exec_never_called: +- err_msg = "" +- if errno_num != 0: +- err_msg = os.strerror(errno_num) +- if errno_num == errno.ENOENT: +- if child_exec_never_called: +- # The error must be from chdir(cwd). +- err_msg += ': ' + repr(cwd) +- else: +- err_msg += ': ' + repr(orig_executable) +- raise child_exception_type(errno_num, err_msg) +- raise child_exception_type(err_msg) ++ self.returncode = rc + ++ kill = terminate + +- def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, +- _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, +- _WEXITSTATUS=os.WEXITSTATUS): +- """All callers to this function MUST hold self._waitpid_lock.""" +- # This method is called (indirectly) by __del__, so it cannot +- # refer to anything outside of its local scope. +- if _WIFSIGNALED(sts): +- self.returncode = -_WTERMSIG(sts) +- elif _WIFEXITED(sts): +- self.returncode = _WEXITSTATUS(sts) +- else: +- # Should never happen +- raise SubprocessError("Unknown child exit status!") ++ else: ++ # ++ # POSIX methods ++ # ++ def _get_handles(self, stdin, stdout, stderr): ++ """Construct and return tuple with IO objects: ++ p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite ++ """ ++ p2cread, p2cwrite = -1, -1 ++ c2pread, c2pwrite = -1, -1 ++ errread, errwrite = -1, -1 ++ ++ if stdin is None: ++ pass ++ elif stdin == PIPE: ++ p2cread, p2cwrite = os.pipe() ++ elif stdin == DEVNULL: ++ p2cread = self._get_devnull() ++ elif isinstance(stdin, int): ++ p2cread = stdin ++ else: ++ # Assuming file-like object ++ p2cread = stdin.fileno() ++ ++ if stdout is None: ++ pass ++ elif stdout == PIPE: ++ c2pread, c2pwrite = os.pipe() ++ elif stdout == DEVNULL: ++ c2pwrite = self._get_devnull() ++ elif isinstance(stdout, int): ++ c2pwrite = stdout ++ else: ++ # Assuming file-like object ++ c2pwrite = stdout.fileno() ++ ++ if stderr is None: ++ pass ++ elif stderr == PIPE: ++ errread, errwrite = os.pipe() ++ elif stderr == STDOUT: ++ errwrite = c2pwrite ++ elif stderr == DEVNULL: ++ errwrite = self._get_devnull() ++ elif isinstance(stderr, int): ++ errwrite = stderr ++ else: ++ # Assuming file-like object ++ errwrite = stderr.fileno() + ++ return (p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite) ++ ++ ++ def _close_fds(self, fds_to_keep): ++ start_fd = 3 ++ for fd in sorted(fds_to_keep): ++ if fd >= start_fd: ++ os.closerange(start_fd, fd) ++ start_fd = fd + 1 ++ if start_fd <= MAXFD: ++ os.closerange(start_fd, MAXFD) ++ ++ ++ def _execute_child(self, args, executable, preexec_fn, close_fds, ++ pass_fds, cwd, env, ++ startupinfo, creationflags, shell, ++ p2cread, p2cwrite, ++ c2pread, c2pwrite, ++ errread, errwrite, ++ restore_signals, start_new_session): ++ """Execute program (POSIX version)""" - def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, -+ def _internal_poll(self, _deadstate=None, _waitpid=None, - _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): - """Check if child process has terminated. Returns returncode - attribute. -@@ -1569,6 +1571,8 @@ - outside of the local scope (nor can any methods it calls). - - """ -+ if _waitpid is None: -+ _waitpid = os.waitpid - if self.returncode is None: - if not self._waitpid_lock.acquire(False): - # Something else is busy calling waitpid. Don't allow two +- _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): +- """Check if child process has terminated. Returns returncode +- attribute. +- +- This method is called by __del__, so it cannot reference anything +- outside of the local scope (nor can any methods it calls). +- +- """ +- if self.returncode is None: +- if not self._waitpid_lock.acquire(False): +- # Something else is busy calling waitpid. Don't allow two +- # at once. We know nothing yet. +- return None ++ if isinstance(args, (str, bytes)): ++ args = [args] ++ else: ++ args = list(args) ++ ++ if shell: ++ args = ["/bin/sh", "-c"] + args ++ if executable: ++ args[0] = executable ++ ++ if executable is None: ++ executable = args[0] ++ orig_executable = executable ++ ++ # For transferring possible exec failure from child to parent. ++ # Data format: "exception name:hex errno:description" ++ # Pickle is not used; it is complex and involves memory allocation. ++ errpipe_read, errpipe_write = os.pipe() ++ # errpipe_write must not be in the standard io 0, 1, or 2 fd range. ++ low_fds_to_close = [] ++ while errpipe_write < 3: ++ low_fds_to_close.append(errpipe_write) ++ errpipe_write = os.dup(errpipe_write) ++ for low_fd in low_fds_to_close: ++ os.close(low_fd) + try: +- if self.returncode is not None: +- return self.returncode # Another thread waited. +- pid, sts = _waitpid(self.pid, _WNOHANG) +- if pid == self.pid: +- self._handle_exitstatus(sts) +- except OSError as e: +- if _deadstate is not None: +- self.returncode = _deadstate +- elif e.errno == _ECHILD: +- # This happens if SIGCLD is set to be ignored or +- # waiting for child processes has otherwise been +- # disabled for our process. This child is dead, we +- # can't get the status. +- # http://bugs.python.org/issue15756 +- self.returncode = 0 ++ try: ++ # We must avoid complex work that could involve ++ # malloc or free in the child process to avoid ++ # potential deadlocks, thus we do all this here. ++ # and pass it to fork_exec() ++ ++ if env is not None: ++ env_list = [os.fsencode(k) + b'=' + os.fsencode(v) ++ for k, v in env.items()] ++ else: ++ env_list = None # Use execv instead of execve. ++ executable = os.fsencode(executable) ++ if os.path.dirname(executable): ++ executable_list = (executable,) ++ else: ++ # This matches the behavior of os._execvpe(). ++ executable_list = tuple( ++ os.path.join(os.fsencode(dir), executable) ++ for dir in os.get_exec_path(env)) ++ fds_to_keep = set(pass_fds) ++ fds_to_keep.add(errpipe_write) ++ self.pid = _posixsubprocess.fork_exec( ++ args, executable_list, ++ close_fds, sorted(fds_to_keep), cwd, env_list, ++ p2cread, p2cwrite, c2pread, c2pwrite, ++ errread, errwrite, ++ errpipe_read, errpipe_write, ++ restore_signals, start_new_session, preexec_fn) ++ self._child_created = True ++ finally: ++ # be sure the FD is closed no matter what ++ os.close(errpipe_write) ++ ++ # self._devnull is not always defined. ++ devnull_fd = getattr(self, '_devnull', None) ++ if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: ++ os.close(p2cread) ++ if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: ++ os.close(c2pwrite) ++ if errwrite != -1 and errread != -1 and errwrite != devnull_fd: ++ os.close(errwrite) ++ if devnull_fd is not None: ++ os.close(devnull_fd) ++ # Prevent a double close of these fds from __init__ on error. ++ self._closed_child_pipe_fds = True ++ ++ # Wait for exec to fail or succeed; possibly raising an ++ # exception (limited in size) ++ errpipe_data = bytearray() ++ while True: ++ part = _eintr_retry_call(os.read, errpipe_read, 50000) ++ errpipe_data += part ++ if not part or len(errpipe_data) > 50000: ++ break + finally: +- self._waitpid_lock.release() +- return self.returncode ++ # be sure the FD is closed no matter what ++ os.close(errpipe_read) ++ ++ if errpipe_data: ++ try: ++ _eintr_retry_call(os.waitpid, self.pid, 0) ++ except OSError as e: ++ if e.errno != errno.ECHILD: ++ raise ++ try: ++ exception_name, hex_errno, err_msg = ( ++ errpipe_data.split(b':', 2)) ++ except ValueError: ++ exception_name = b'SubprocessError' ++ hex_errno = b'0' ++ err_msg = (b'Bad exception data from child: ' + ++ repr(errpipe_data)) ++ child_exception_type = getattr( ++ builtins, exception_name.decode('ascii'), ++ SubprocessError) ++ err_msg = err_msg.decode(errors="surrogatepass") ++ if issubclass(child_exception_type, OSError) and hex_errno: ++ errno_num = int(hex_errno, 16) ++ child_exec_never_called = (err_msg == "noexec") ++ if child_exec_never_called: ++ err_msg = "" ++ if errno_num != 0: ++ err_msg = os.strerror(errno_num) ++ if errno_num == errno.ENOENT: ++ if child_exec_never_called: ++ # The error must be from chdir(cwd). ++ err_msg += ': ' + repr(cwd) ++ else: ++ err_msg += ': ' + repr(orig_executable) ++ raise child_exception_type(errno_num, err_msg) ++ raise child_exception_type(err_msg) + + +- def _try_wait(self, wait_flags): +- """All callers to this function MUST hold self._waitpid_lock.""" +- try: +- (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags) +- except OSError as e: +- if e.errno != errno.ECHILD: +- raise +- # This happens if SIGCLD is set to be ignored or waiting +- # for child processes has otherwise been disabled for our +- # process. This child is dead, we can't get the status. +- pid = self.pid +- sts = 0 +- return (pid, sts) +- +- +- def wait(self, timeout=None, endtime=None): +- """Wait for child process to terminate. Returns returncode +- attribute.""" +- if self.returncode is not None: +- return self.returncode ++ def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED, ++ _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED, ++ _WEXITSTATUS=os.WEXITSTATUS): ++ """All callers to this function MUST hold self._waitpid_lock.""" ++ # This method is called (indirectly) by __del__, so it cannot ++ # refer to anything outside of its local scope. ++ if _WIFSIGNALED(sts): ++ self.returncode = -_WTERMSIG(sts) ++ elif _WIFEXITED(sts): ++ self.returncode = _WEXITSTATUS(sts) ++ else: ++ # Should never happen ++ raise SubprocessError("Unknown child exit status!") + +- # endtime is preferred to timeout. timeout is only used for +- # printing. +- if endtime is not None or timeout is not None: +- if endtime is None: +- endtime = _time() + timeout +- elif timeout is None: +- timeout = self._remaining_time(endtime) + +- if endtime is not None: +- # Enter a busy loop if we have a timeout. This busy loop was +- # cribbed from Lib/threading.py in Thread.wait() at r71065. +- delay = 0.0005 # 500 us -> initial delay of 1 ms +- while True: +- if self._waitpid_lock.acquire(False): +- try: +- if self.returncode is not None: +- break # Another thread waited. +- (pid, sts) = self._try_wait(os.WNOHANG) +- assert pid == self.pid or pid == 0 +- if pid == self.pid: +- self._handle_exitstatus(sts) +- break +- finally: +- self._waitpid_lock.release() +- remaining = self._remaining_time(endtime) +- if remaining <= 0: +- raise TimeoutExpired(self.args, timeout) +- delay = min(delay * 2, remaining, .05) +- time.sleep(delay) +- else: +- while self.returncode is None: +- with self._waitpid_lock: ++ def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid, ++ _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD): ++ """Check if child process has terminated. Returns returncode ++ attribute. ++ ++ This method is called by __del__, so it cannot reference anything ++ outside of the local scope (nor can any methods it calls). ++ ++ """ ++ if self.returncode is None: ++ if not self._waitpid_lock.acquire(False): ++ # Something else is busy calling waitpid. Don't allow two ++ # at once. We know nothing yet. ++ return None ++ try: + if self.returncode is not None: +- break # Another thread waited. +- (pid, sts) = self._try_wait(0) +- # Check the pid and loop as waitpid has been known to +- # return 0 even without WNOHANG in odd situations. +- # http://bugs.python.org/issue14396. ++ return self.returncode # Another thread waited. ++ pid, sts = _waitpid(self.pid, _WNOHANG) + if pid == self.pid: + self._handle_exitstatus(sts) +- return self.returncode +- +- +- def _communicate(self, input, endtime, orig_timeout): +- if self.stdin and not self._communication_started: +- # Flush stdio buffer. This might block, if the user has +- # been writing to .stdin in an uncontrolled fashion. +- self.stdin.flush() +- if not input: +- self.stdin.close() +- +- stdout = None +- stderr = None ++ except OSError as e: ++ if _deadstate is not None: ++ self.returncode = _deadstate ++ elif e.errno == _ECHILD: ++ # This happens if SIGCLD is set to be ignored or ++ # waiting for child processes has otherwise been ++ # disabled for our process. This child is dead, we ++ # can't get the status. ++ # http://bugs.python.org/issue15756 ++ self.returncode = 0 ++ finally: ++ self._waitpid_lock.release() ++ return self.returncode + +- # Only create this mapping if we haven't already. +- if not self._communication_started: +- self._fileobj2output = {} +- if self.stdout: +- self._fileobj2output[self.stdout] = [] +- if self.stderr: +- self._fileobj2output[self.stderr] = [] + +- if self.stdout: +- stdout = self._fileobj2output[self.stdout] +- if self.stderr: +- stderr = self._fileobj2output[self.stderr] ++ def _try_wait(self, wait_flags): ++ """All callers to this function MUST hold self._waitpid_lock.""" ++ try: ++ (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags) ++ except OSError as e: ++ if e.errno != errno.ECHILD: ++ raise ++ # This happens if SIGCLD is set to be ignored or waiting ++ # for child processes has otherwise been disabled for our ++ # process. This child is dead, we can't get the status. ++ pid = self.pid ++ sts = 0 ++ return (pid, sts) ++ ++ ++ def wait(self, timeout=None, endtime=None): ++ """Wait for child process to terminate. Returns returncode ++ attribute.""" ++ if self.returncode is not None: ++ return self.returncode ++ ++ # endtime is preferred to timeout. timeout is only used for ++ # printing. ++ if endtime is not None or timeout is not None: ++ if endtime is None: ++ endtime = _time() + timeout ++ elif timeout is None: ++ timeout = self._remaining_time(endtime) ++ ++ if endtime is not None: ++ # Enter a busy loop if we have a timeout. This busy loop was ++ # cribbed from Lib/threading.py in Thread.wait() at r71065. ++ delay = 0.0005 # 500 us -> initial delay of 1 ms ++ while True: ++ if self._waitpid_lock.acquire(False): ++ try: ++ if self.returncode is not None: ++ break # Another thread waited. ++ (pid, sts) = self._try_wait(os.WNOHANG) ++ assert pid == self.pid or pid == 0 ++ if pid == self.pid: ++ self._handle_exitstatus(sts) ++ break ++ finally: ++ self._waitpid_lock.release() ++ remaining = self._remaining_time(endtime) ++ if remaining <= 0: ++ raise TimeoutExpired(self.args, timeout) ++ delay = min(delay * 2, remaining, .05) ++ time.sleep(delay) ++ else: ++ while self.returncode is None: ++ with self._waitpid_lock: ++ if self.returncode is not None: ++ break # Another thread waited. ++ (pid, sts) = self._try_wait(0) ++ # Check the pid and loop as waitpid has been known to ++ # return 0 even without WNOHANG in odd situations. ++ # http://bugs.python.org/issue14396. ++ if pid == self.pid: ++ self._handle_exitstatus(sts) ++ return self.returncode + +- self._save_input(input) + +- if self._input: +- input_view = memoryview(self._input) ++ def _communicate(self, input, endtime, orig_timeout): ++ if self.stdin and not self._communication_started: ++ # Flush stdio buffer. This might block, if the user has ++ # been writing to .stdin in an uncontrolled fashion. ++ self.stdin.flush() ++ if not input: ++ self.stdin.close() ++ ++ stdout = None ++ stderr = None ++ ++ # Only create this mapping if we haven't already. ++ if not self._communication_started: ++ self._fileobj2output = {} ++ if self.stdout: ++ self._fileobj2output[self.stdout] = [] ++ if self.stderr: ++ self._fileobj2output[self.stderr] = [] + +- with _PopenSelector() as selector: +- if self.stdin and input: +- selector.register(self.stdin, selectors.EVENT_WRITE) + if self.stdout: +- selector.register(self.stdout, selectors.EVENT_READ) ++ stdout = self._fileobj2output[self.stdout] + if self.stderr: +- selector.register(self.stderr, selectors.EVENT_READ) ++ stderr = self._fileobj2output[self.stderr] + +- while selector.get_map(): +- timeout = self._remaining_time(endtime) +- if timeout is not None and timeout < 0: +- raise TimeoutExpired(self.args, orig_timeout) +- +- ready = selector.select(timeout) +- self._check_timeout(endtime, orig_timeout) ++ self._save_input(input) + +- # XXX Rewrite these to use non-blocking I/O on the file +- # objects; they are no longer using C stdio! ++ if self._input: ++ input_view = memoryview(self._input) + +- for key, events in ready: +- if key.fileobj is self.stdin: +- chunk = input_view[self._input_offset : +- self._input_offset + _PIPE_BUF] +- try: +- self._input_offset += os.write(key.fd, chunk) +- except OSError as e: +- if e.errno == errno.EPIPE: +- selector.unregister(key.fileobj) +- key.fileobj.close() ++ with _PopenSelector() as selector: ++ if self.stdin and input: ++ selector.register(self.stdin, selectors.EVENT_WRITE) ++ if self.stdout: ++ selector.register(self.stdout, selectors.EVENT_READ) ++ if self.stderr: ++ selector.register(self.stderr, selectors.EVENT_READ) ++ ++ while selector.get_map(): ++ timeout = self._remaining_time(endtime) ++ if timeout is not None and timeout < 0: ++ raise TimeoutExpired(self.args, orig_timeout) ++ ++ ready = selector.select(timeout) ++ self._check_timeout(endtime, orig_timeout) ++ ++ # XXX Rewrite these to use non-blocking I/O on the file ++ # objects; they are no longer using C stdio! ++ ++ for key, events in ready: ++ if key.fileobj is self.stdin: ++ chunk = input_view[self._input_offset : ++ self._input_offset + _PIPE_BUF] ++ try: ++ self._input_offset += os.write(key.fd, chunk) ++ except OSError as e: ++ if e.errno == errno.EPIPE: ++ selector.unregister(key.fileobj) ++ key.fileobj.close() ++ else: ++ raise + else: +- raise +- else: +- if self._input_offset >= len(self._input): ++ if self._input_offset >= len(self._input): ++ selector.unregister(key.fileobj) ++ key.fileobj.close() ++ elif key.fileobj in (self.stdout, self.stderr): ++ data = os.read(key.fd, 32768) ++ if not data: + selector.unregister(key.fileobj) + key.fileobj.close() +- elif key.fileobj in (self.stdout, self.stderr): +- data = os.read(key.fd, 32768) +- if not data: +- selector.unregister(key.fileobj) +- key.fileobj.close() +- self._fileobj2output[key.fileobj].append(data) +- +- self.wait(timeout=self._remaining_time(endtime)) +- +- # All data exchanged. Translate lists into strings. +- if stdout is not None: +- stdout = b''.join(stdout) +- if stderr is not None: +- stderr = b''.join(stderr) +- +- # Translate newlines, if requested. +- # This also turns bytes into strings. +- if self.universal_newlines: +- if stdout is not None: +- stdout = self._translate_newlines(stdout, +- self.stdout.encoding) +- if stderr is not None: +- stderr = self._translate_newlines(stderr, +- self.stderr.encoding) ++ self._fileobj2output[key.fileobj].append(data) + +- return (stdout, stderr) ++ self.wait(timeout=self._remaining_time(endtime)) + ++ # All data exchanged. Translate lists into strings. ++ if stdout is not None: ++ stdout = b''.join(stdout) ++ if stderr is not None: ++ stderr = b''.join(stderr) + +- def _save_input(self, input): +- # This method is called from the _communicate_with_*() methods +- # so that if we time out while communicating, we can continue +- # sending input if we retry. +- if self.stdin and self._input is None: +- self._input_offset = 0 +- self._input = input +- if self.universal_newlines and input is not None: +- self._input = self._input.encode(self.stdin.encoding) +- +- +- def send_signal(self, sig): +- """Send a signal to the process +- """ +- os.kill(self.pid, sig) +- +- def terminate(self): +- """Terminate the process with SIGTERM +- """ +- self.send_signal(signal.SIGTERM) +- +- def kill(self): +- """Kill the process with SIGKILL +- """ +- self.send_signal(signal.SIGKILL) ++ # Translate newlines, if requested. ++ # This also turns bytes into strings. ++ if self.universal_newlines: ++ if stdout is not None: ++ stdout = self._translate_newlines(stdout, ++ self.stdout.encoding) ++ if stderr is not None: ++ stderr = self._translate_newlines(stderr, ++ self.stderr.encoding) ++ ++ return (stdout, stderr) ++ ++ ++ def _save_input(self, input): ++ # This method is called from the _communicate_with_*() methods ++ # so that if we time out while communicating, we can continue ++ # sending input if we retry. ++ if self.stdin and self._input is None: ++ self._input_offset = 0 ++ self._input = input ++ if self.universal_newlines and input is not None: ++ self._input = self._input.encode(self.stdin.encoding) ++ ++ ++ def send_signal(self, sig): ++ """Send a signal to the process ++ """ ++ os.kill(self.pid, sig) ++ ++ def terminate(self): ++ """Terminate the process with SIGTERM ++ """ ++ self.send_signal(signal.SIGTERM) ++ ++ def kill(self): ++ """Kill the process with SIGKILL ++ """ ++ self.send_signal(signal.SIGKILL) diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py ---- orig/Lib/sysconfig.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/sysconfig.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/sysconfig.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/sysconfig.py 2015-07-04 21:18:58.000000000 +0800 @@ -78,6 +78,15 @@ 'scripts': '{userbase}/bin', 'data': '{userbase}', @@ -9264,7 +11616,7 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py } _SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include', -@@ -174,6 +183,8 @@ +@@ -181,6 +190,8 @@ if os.name == 'posix': # the default scheme for posix is posix_prefix return 'posix_prefix' @@ -9273,7 +11625,7 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py return os.name -@@ -198,6 +209,11 @@ +@@ -205,6 +216,11 @@ else: return joinuser("~", "Library", framework, "%d.%d" % sys.version_info[:2]) @@ -9286,8 +11638,8 @@ diff -Nru orig/Lib/sysconfig.py modified/Lib/sysconfig.py if env_base: return env_base diff -Nru orig/Lib/test/__main__.py modified/Lib/test/__main__.py ---- orig/Lib/test/__main__.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/__main__.py 2016-02-14 10:29:10.000000000 +0800 +--- orig/Lib/test/__main__.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/__main__.py 2015-05-04 07:57:38.000000000 +0800 @@ -1,3 +1,5 @@ +import sys from test import regrtest @@ -9296,9 +11648,9 @@ diff -Nru orig/Lib/test/__main__.py modified/Lib/test/__main__.py +result = regrtest.main_in_temp_cwd() +sys.exit(result) diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py ---- orig/Lib/test/regrtest.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/regrtest.py 2016-02-14 10:29:10.000000000 +0800 -@@ -551,7 +551,7 @@ +--- orig/Lib/test/regrtest.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/regrtest.py 2015-05-04 07:58:07.000000000 +0800 +@@ -538,7 +538,7 @@ sys.stdout.flush() print() # Force a newline (just in case) print(json.dumps(result)) @@ -9307,7 +11659,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py good = [] bad = [] -@@ -693,7 +693,7 @@ +@@ -678,7 +678,7 @@ from threading import Thread except ImportError: print("Multiprocess option requires thread support") @@ -9316,7 +11668,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py from queue import Queue debug_output_pat = re.compile(r"\[\d+ refs, \d+ blocks\]$") output = Queue() -@@ -863,7 +863,7 @@ +@@ -840,7 +840,7 @@ if ns.runleaks: os.system("leaks %d" % os.getpid()) @@ -9325,7 +11677,7 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py # small set of tests to determine if we have a basically functioning interpreter -@@ -1588,7 +1588,9 @@ +@@ -1561,7 +1561,9 @@ # change the CWD, the original CWD will be used. The original CWD is # available from support.SAVEDCWD. with support.temp_cwd(test_cwd, quiet=True): @@ -9336,42 +11688,17 @@ diff -Nru orig/Lib/test/regrtest.py modified/Lib/test/regrtest.py if __name__ == '__main__': -@@ -1613,4 +1615,5 @@ +@@ -1586,4 +1588,5 @@ # sanity check assert __file__ == os.path.abspath(sys.argv[0]) - main_in_temp_cwd() + result = main_in_temp_cwd() + sys.exit(retval) -diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.py ---- orig/Lib/test/support/__init__.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/support/__init__.py 2016-02-14 10:29:37.000000000 +0800 -@@ -788,8 +788,8 @@ - - # TESTFN_UNICODE is a non-ascii filename - TESTFN_UNICODE = TESTFN + "-\xe0\xf2\u0258\u0141\u011f" --if sys.platform == 'darwin': -- # In Mac OS X's VFS API file names are, by definition, canonically -+if sys.platform in ('darwin', 'ios'): -+ # In iOS and Mac OS X, VFS API file names are, by definition, canonically - # decomposed Unicode, encoded using UTF-8. See QA1173: - # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html - import unicodedata -@@ -815,8 +815,8 @@ - 'Unicode filename tests may not be effective' - % (TESTFN_UNENCODABLE, TESTFN_ENCODING)) - TESTFN_UNENCODABLE = None --# Mac OS X denies unencodable filenames (invalid utf-8) --elif sys.platform != 'darwin': -+# Mac OS X and iOS deny unencodable filenames (invalid utf-8) -+elif sys.platform not in ('darwin', 'ios'): - try: - # ascii and utf-8 cannot encode the byte 0xff - b'\xff'.decode(TESTFN_ENCODING) -diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/script_helper.py ---- orig/Lib/test/support/script_helper.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/support/script_helper.py 2016-02-17 09:41:41.000000000 +0800 -@@ -11,6 +11,7 @@ +diff -Nru orig/Lib/test/script_helper.py modified/Lib/test/script_helper.py +--- orig/Lib/test/script_helper.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/script_helper.py 2015-05-04 14:42:40.000000000 +0800 +@@ -10,12 +10,15 @@ import py_compile import contextlib import shutil @@ -9379,218 +11706,141 @@ diff -Nru orig/Lib/test/support/script_helper.py modified/Lib/test/support/scrip import zipfile from importlib.util import source_from_cache -@@ -20,6 +21,8 @@ - # Cached result of the expensive test performed in the function below. - __cached_interp_requires_environment = None + from test.support import make_legacy_pyc, strip_python_stderr, temp_dir + ++ + # Executing the interpreter in a subprocess ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") + def _assert_python(expected_success, *args, **env_vars): + if '__isolated' in env_vars: + isolated = env_vars.pop('__isolated') +@@ -55,6 +58,7 @@ + "stderr follows:\n%s" % (rc, err.decode('ascii', 'ignore'))) + return rc, out, err + -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def interpreter_requires_environment(): + def assert_python_ok(*args, **env_vars): + """ + Assert that running the interpreter with `args` and optional environment +@@ -68,6 +72,7 @@ """ - Returns True if our sys.executable interpreter requires environment -@@ -92,6 +95,8 @@ - err = strip_python_stderr(err) - return _PythonRunResult(rc, out, err), cmd_line + return _assert_python(True, *args, **env_vars) + -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def _assert_python(expected_success, *args, **env_vars): - res, cmd_line = run_python_until_end(*args, **env_vars) - if (res.rc and expected_success) or (not res.rc and not expected_success): -@@ -144,6 +149,8 @@ + def assert_python_failure(*args, **env_vars): + """ + Assert that running the interpreter with `args` and optional environment +@@ -78,6 +83,8 @@ """ return _assert_python(False, *args, **env_vars) + -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): """Run a Python subprocess with the given arguments. -diff -Nru orig/Lib/test/test_asyncio/test_events.py modified/Lib/test/test_asyncio/test_events.py ---- orig/Lib/test/test_asyncio/test_events.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_events.py 2016-02-17 10:15:11.000000000 +0800 -@@ -435,6 +435,7 @@ - self._basetest_sock_client_ops(httpd, sock) - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_unix_sock_client_ops(self): - with test_utils.run_test_unix_server() as httpd: - sock = socket.socket(socket.AF_UNIX) -@@ -569,6 +570,7 @@ - self._basetest_create_connection(conn_fut) - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_connection(self): - # Issue #20682: On Mac OS X Tiger, getsockname() returns a - # zero-length address for UNIX socket. -@@ -704,6 +706,7 @@ - - @unittest.skipIf(ssl is None, 'No ssl module') - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_ssl_unix_connection(self): - # Issue #20682: On Mac OS X Tiger, getsockname() returns a - # zero-length address for UNIX socket. -@@ -850,6 +853,7 @@ - return server, path - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_server(self): - proto = MyProto(loop=self.loop) - server, path = self._make_unix_server(lambda: proto) -@@ -878,6 +882,7 @@ - server.close() - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_server_path_socket_error(self): - proto = MyProto(loop=self.loop) - sock = socket.socket() -@@ -947,6 +952,7 @@ +@@ -98,6 +105,7 @@ + stdout=stdout, stderr=stderr, + **kw) - @unittest.skipIf(ssl is None, 'No ssl module') - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_server_ssl(self): - proto = MyProto(loop=self.loop) - server, path = self._make_ssl_unix_server( -@@ -1015,6 +1021,7 @@ ++ + def kill_python(p): + """Run the given Popen process until completion and return stdout.""" + p.stdin.close() +@@ -109,6 +117,7 @@ + subprocess._cleanup() + return data - @unittest.skipIf(ssl is None, 'No ssl module') - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_server_ssl_verify_failed(self): - proto = MyProto(loop=self.loop) - server, path = self._make_ssl_unix_server( -@@ -1082,6 +1089,7 @@ ++ + def make_script(script_dir, script_basename, source, omit_suffix=False): + script_filename = script_basename + if not omit_suffix: +@@ -121,6 +130,7 @@ + importlib.invalidate_caches() + return script_name - @unittest.skipIf(ssl is None, 'No ssl module') - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_create_unix_server_ssl_verified(self): - proto = MyProto(loop=self.loop) - server, path = self._make_ssl_unix_server( -@@ -1661,6 +1669,7 @@ - self.loop.add_signal_handler(signal.SIGTERM, func) ++ + def make_zip_script(zip_dir, zip_basename, script_name, name_in_zip=None): + zip_filename = zip_basename+os.extsep+'zip' + zip_name = os.path.join(zip_dir, zip_filename) +@@ -142,10 +152,12 @@ + # zip_file.close() + return zip_name, os.path.join(zip_name, name_in_zip) ++ + def make_pkg(pkg_dir, init_source=''): + os.mkdir(pkg_dir) + make_script(pkg_dir, '__init__', init_source) -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - class SubprocessTestsMixin: ++ + def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, + source, depth=1, compiled=False): + unlink = [] +diff -Nru orig/Lib/test/support/__init__.py modified/Lib/test/support/__init__.py +--- orig/Lib/test/support/__init__.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/support/__init__.py 2015-05-04 13:16:34.000000000 +0800 +@@ -778,8 +778,8 @@ - def check_terminated(self, returncode): -diff -Nru orig/Lib/test/test_asyncio/test_streams.py modified/Lib/test/test_asyncio/test_streams.py ---- orig/Lib/test/test_asyncio/test_streams.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_streams.py 2016-02-17 09:41:39.000000000 +0800 -@@ -4,6 +4,7 @@ + # TESTFN_UNICODE is a non-ascii filename + TESTFN_UNICODE = TESTFN + "-\xe0\xf2\u0258\u0141\u011f" +-if sys.platform == 'darwin': +- # In Mac OS X's VFS API file names are, by definition, canonically ++if sys.platform in ('darwin', 'ios'): ++ # In iOS and Mac OS X, VFS API file names are, by definition, canonically + # decomposed Unicode, encoded using UTF-8. See QA1173: + # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html + import unicodedata +@@ -805,8 +805,8 @@ + 'Unicode filename tests may not be effective' + % (TESTFN_UNENCODABLE, TESTFN_ENCODING)) + TESTFN_UNENCODABLE = None +-# Mac OS X denies unencodable filenames (invalid utf-8) +-elif sys.platform != 'darwin': ++# Mac OS X and iOS deny unencodable filenames (invalid utf-8) ++elif sys.platform not in ('darwin', 'ios'): + try: + # ascii and utf-8 cannot encode the byte 0xff + b'\xff'.decode(TESTFN_ENCODING) +diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py +--- orig/Lib/test/test_base64.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_base64.py 2015-05-04 14:42:53.000000000 +0800 +@@ -5,7 +5,6 @@ import os - import queue - import socket -+import subprocess - import sys - import threading - import unittest -@@ -56,6 +57,7 @@ - self._basetest_open_connection(conn_fut) - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_open_unix_connection(self): - with test_utils.run_test_unix_server() as httpd: - conn_fut = asyncio.open_unix_connection(httpd.address, -@@ -86,6 +88,7 @@ - - @unittest.skipIf(ssl is None, 'No ssl module') - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_open_unix_connection_no_loop_ssl(self): - with test_utils.run_test_unix_server(use_ssl=True) as httpd: - conn_fut = asyncio.open_unix_connection( -@@ -112,6 +115,7 @@ - self._basetest_open_connection_error(conn_fut) - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_open_unix_connection_error(self): - with test_utils.run_test_unix_server() as httpd: - conn_fut = asyncio.open_unix_connection(httpd.address, -@@ -509,6 +513,7 @@ - self.assertEqual(msg, b"hello world!\n") - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), 'No UNIX Sockets') -+ @unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - def test_start_unix_server(self): - - class MyServer: -@@ -577,6 +582,7 @@ - self.assertEqual(msg, b"hello world!\n") - - @unittest.skipIf(sys.platform == 'win32', "Don't have pipes") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def test_read_all_from_pipe_reader(self): - # See asyncio issue 168. This test is derived from the example - # subprocess_attach_read_pipe.py, but we configure the -diff -Nru orig/Lib/test/test_asyncio/test_subprocess.py modified/Lib/test/test_asyncio/test_subprocess.py ---- orig/Lib/test/test_asyncio/test_subprocess.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_subprocess.py 2016-02-17 09:37:30.000000000 +0800 -@@ -1,3 +1,4 @@ -+import os - import signal import sys - import unittest -@@ -75,6 +76,7 @@ - transport.close() - - -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - class SubprocessMixin: - - def test_stdin_stdout(self): -diff -Nru orig/Lib/test/test_asyncio/test_unix_events.py modified/Lib/test/test_asyncio/test_unix_events.py ---- orig/Lib/test/test_asyncio/test_unix_events.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_asyncio/test_unix_events.py 2016-02-17 10:15:42.000000000 +0800 -@@ -230,6 +230,7 @@ - - @unittest.skipUnless(hasattr(socket, 'AF_UNIX'), - 'UNIX Sockets are not supported') -+@unittest.skipIf(sys.platform == 'ios', "iOS doesn't fully support UNIX sockets.") - class SelectorEventLoopUnixSocketTests(test_utils.TestCase): - - def setUp(self): -@@ -793,6 +794,7 @@ - )) - + import subprocess +-import struct + from array import array -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - class ChildWatcherTestsMixin: - ignore_warnings = mock.patch.object(log.logger, "warning") -diff -Nru orig/Lib/test/test_base64.py modified/Lib/test/test_base64.py ---- orig/Lib/test/test_base64.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_base64.py 2016-02-17 09:41:37.000000000 +0800 -@@ -619,7 +619,7 @@ - def test_ErrorHeritage(self): +@@ -622,7 +621,7 @@ self.assertTrue(issubclass(binascii.Error, ValueError)) + - -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") class TestMain(unittest.TestCase): def tearDown(self): if os.path.exists(support.TESTFN): +@@ -658,7 +657,6 @@ + self.assertEqual(output.rstrip(), b'a\xffb') + + +- + def test_main(): + support.run_unittest(__name__) + diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py ---- orig/Lib/test/test_capi.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_capi.py 2016-02-17 09:41:32.000000000 +0800 -@@ -49,6 +49,7 @@ +--- orig/Lib/test/test_capi.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_capi.py 2015-05-04 14:42:39.000000000 +0800 +@@ -44,6 +44,7 @@ self.assertRaises(AttributeError, setattr, inst.testfunction, "attribute", "test") @unittest.skipUnless(threading, 'Threading required for this test.') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_no_FatalError_infinite_loop(self): with support.SuppressCrashReport(): p = subprocess.Popen([sys.executable, "-c", -@@ -520,6 +521,7 @@ +@@ -433,6 +434,7 @@ self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords, (), {}, b'', [42]) @@ -9599,92 +11849,68 @@ diff -Nru orig/Lib/test/test_capi.py modified/Lib/test/test_capi.py class TestThreadState(unittest.TestCase): diff -Nru orig/Lib/test/test_cmd_line.py modified/Lib/test/test_cmd_line.py ---- orig/Lib/test/test_cmd_line.py 2015-12-07 09:39:08.000000000 +0800 -+++ modified/Lib/test/test_cmd_line.py 2016-02-17 09:41:27.000000000 +0800 -@@ -57,6 +57,7 @@ +--- orig/Lib/test/test_cmd_line.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_cmd_line.py 2015-05-04 14:43:14.000000000 +0800 +@@ -56,6 +56,7 @@ rc, out, err = assert_python_ok('-vv') self.assertNotIn(b'stack overflow', err) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_xoptions(self): def get_xoptions(*args): - # use subprocess module directly because test.support.script_helper adds -@@ -73,6 +74,7 @@ + # use subprocess module directly because test.script_helper adds +@@ -72,6 +73,7 @@ opts = get_xoptions('-Xa', '-Xb=c,d=e') self.assertEqual(opts, {'a': True, 'b': 'c,d=e'}) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_showrefcount(self): def run_python(*args): # this is similar to assert_python_ok but doesn't strip -@@ -146,6 +148,7 @@ +@@ -145,6 +147,7 @@ # arguments as unicode (using wmain() instead of main()). @unittest.skipIf(sys.platform == 'win32', 'Windows has a native unicode API') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_undecodable_code(self): undecodable = b"\xff" env = os.environ.copy() -@@ -210,6 +213,7 @@ +@@ -209,6 +212,7 @@ ) check_output(text) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_unbuffered_output(self): # Test expected operation of the '-u' switch for stream in ('stdout', 'stderr'): -@@ -269,6 +273,7 @@ +@@ -268,6 +272,7 @@ # for empty and unset PYTHONPATH self.assertEqual(out1, out2) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_displayhook_unencodable(self): for encoding in ('ascii', 'latin-1', 'utf-8'): - # We are testing a PYTHON environment variable here, so we can't -@@ -291,6 +296,7 @@ + env = os.environ.copy() +@@ -286,6 +291,7 @@ escaped = repr(text).encode(encoding, 'backslashreplace') self.assertIn(escaped, data) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def check_input(self, code, expected): with tempfile.NamedTemporaryFile("wb+") as stdin: sep = os.linesep.encode('ASCII') -@@ -363,6 +369,7 @@ +@@ -357,6 +363,7 @@ # Issue #7111: Python should work without standard streams @unittest.skipIf(os.name != 'posix', "test needs POSIX semantics") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def _test_no_stdio(self, streams): code = """if 1: import os, sys -diff -Nru orig/Lib/test/test_compileall.py modified/Lib/test/test_compileall.py ---- orig/Lib/test/test_compileall.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_compileall.py 2016-02-16 11:42:28.000000000 +0800 -@@ -120,7 +120,8 @@ - compileall.compile_dir(self.directory, quiet=True, workers=5) - self.assertTrue(pool_mock.called) - -- def test_compile_workers_non_positive(self): -+ @mock.patch('compileall.ProcessPoolExecutor') -+ def test_compile_workers_non_positive(self, pool_mock): - with self.assertRaisesRegex(ValueError, - "workers must be greater or equal to 0"): - compileall.compile_dir(self.directory, workers=-1) -diff -Nru orig/Lib/test/test_concurrent_futures.py modified/Lib/test/test_concurrent_futures.py ---- orig/Lib/test/test_concurrent_futures.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_concurrent_futures.py 2016-02-17 09:48:08.000000000 +0800 -@@ -91,6 +91,7 @@ - executor_type = futures.ThreadPoolExecutor - - -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - class ProcessPoolMixin(ExecutorMixin): - executor_type = futures.ProcessPoolExecutor - diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py ---- orig/Lib/test/test_doctest.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_doctest.py 2016-02-14 10:29:37.000000000 +0800 -@@ -2707,7 +2707,12 @@ +--- orig/Lib/test/test_doctest.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_doctest.py 2015-04-27 21:32:27.000000000 +0800 +@@ -2657,7 +2657,12 @@ TestResults(failed=1, attempted=1) """ @@ -9698,21 +11924,18 @@ diff -Nru orig/Lib/test/test_doctest.py modified/Lib/test/test_doctest.py The doctest module can be used to run doctests against an arbitrary file. These tests test this CLI functionality. -diff -Nru orig/Lib/test/test_eintr.py modified/Lib/test/test_eintr.py ---- orig/Lib/test/test_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_eintr.py 2016-02-17 09:41:22.000000000 +0800 -@@ -9,6 +9,7 @@ - - - @unittest.skipUnless(os.name == "posix", "only supported on Unix") -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - class EINTRTests(unittest.TestCase): - - @unittest.skipUnless(hasattr(signal, "setitimer"), "requires setitimer()") diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler.py ---- orig/Lib/test/test_faulthandler.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_faulthandler.py 2016-02-17 09:41:16.000000000 +0800 -@@ -24,6 +24,7 @@ +--- orig/Lib/test/test_faulthandler.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_faulthandler.py 2015-05-04 14:45:25.000000000 +0800 +@@ -7,7 +7,6 @@ + import subprocess + import sys + from test import support, script_helper +-from test.script_helper import assert_python_ok + import tempfile + import unittest + from textwrap import dedent +@@ -20,6 +19,7 @@ TIMEOUT = 0.5 @@ -9720,7 +11943,7 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler def expected_traceback(lineno1, lineno2, header, min_count=1): regex = header regex += ' File "", line %s in func\n' % lineno1 -@@ -33,6 +34,7 @@ +@@ -29,6 +29,7 @@ else: return '^' + regex + '$' @@ -9728,41 +11951,41 @@ diff -Nru orig/Lib/test/test_faulthandler.py modified/Lib/test/test_faulthandler @contextmanager def temporary_filename(): filename = tempfile.mktemp() -@@ -41,6 +43,7 @@ +@@ -37,6 +38,7 @@ finally: support.unlink(filename) + class FaultHandlerTests(unittest.TestCase): - def get_output(self, code, filename=None, fd=None): + def get_output(self, code, filename=None): """ -@@ -282,6 +285,7 @@ +@@ -247,6 +249,7 @@ finally: sys.stderr = orig_stderr -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_disabled_by_default(self): # By default, the module should be disabled code = "import faulthandler; print(faulthandler.is_enabled())" -@@ -294,6 +298,7 @@ - output = subprocess.check_output(args, env=env) +@@ -255,6 +258,7 @@ + output = subprocess.check_output(args) self.assertEqual(output.rstrip(), b"False") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_sys_xoptions(self): # Test python -X faulthandler code = "import faulthandler; print(faulthandler.is_enabled())" -@@ -306,6 +311,7 @@ - output = subprocess.check_output(args, env=env) +@@ -263,6 +267,7 @@ + output = subprocess.check_output(args) self.assertEqual(output.rstrip(), b"True") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_env_var(self): # empty env var code = "import faulthandler; print(faulthandler.is_enabled())" diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py ---- orig/Lib/test/test_fcntl.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_fcntl.py 2016-02-14 10:29:37.000000000 +0800 +--- orig/Lib/test/test_fcntl.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_fcntl.py 2015-04-27 21:44:57.000000000 +0800 @@ -23,7 +23,7 @@ start_len = "qq" @@ -9789,67 +12012,44 @@ diff -Nru orig/Lib/test/test_fcntl.py modified/Lib/test/test_fcntl.py def setUp(self): diff -Nru orig/Lib/test/test_file_eintr.py modified/Lib/test/test_file_eintr.py ---- orig/Lib/test/test_file_eintr.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_file_eintr.py 2016-02-17 09:41:13.000000000 +0800 -@@ -69,6 +69,7 @@ +--- orig/Lib/test/test_file_eintr.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_file_eintr.py 2015-05-04 14:42:38.000000000 +0800 +@@ -68,6 +68,7 @@ self.fail('Error from IO process %s:\nSTDOUT:\n%sSTDERR:\n%s\n' % (why, stdout.decode(), stderr.decode())) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def _test_reading(self, data_to_write, read_and_verify_code): """Generic buffered read method test harness to validate EINTR behavior. diff -Nru orig/Lib/test/test_gc.py modified/Lib/test/test_gc.py ---- orig/Lib/test/test_gc.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gc.py 2016-02-17 09:41:09.000000000 +0800 -@@ -4,6 +4,7 @@ - temp_dir) - from test.support.script_helper import assert_python_ok, make_script - -+import os - import sys - import time - import gc -@@ -650,6 +651,8 @@ +--- orig/Lib/test/test_gc.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_gc.py 2015-05-04 14:42:37.000000000 +0800 +@@ -633,6 +633,8 @@ del x gc.set_debug(%s) """ + -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def run_command(code): p = subprocess.Popen([sys.executable, "-Wd", "-c", code], stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_gdb.py modified/Lib/test/test_gdb.py ---- orig/Lib/test/test_gdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_gdb.py 2016-02-17 09:37:53.000000000 +0800 -@@ -5,7 +5,6 @@ - - import os - import re --import pprint - import subprocess - import sys - import sysconfig -@@ -21,6 +20,7 @@ - from test import support - from test.support import run_unittest, findfile, python_is_optimized - -+ - def get_gdb_version(): - try: - proc = subprocess.Popen(["gdb", "-nx", "--version"], -@@ -32,6 +32,8 @@ - # This is what "no gdb" looks like. There may, however, be other - # errors that manifest this way too. - raise unittest.SkipTest("Couldn't find gdb on the path") -+ except RuntimeError: -+ raise unittest.SkipTest('Test requires support for subprocesses.') - - # Regex to parse: - # 'GNU gdb (GDB; SUSE Linux Enterprise 12) 7.7\n' -> 7.7 +--- orig/Lib/test/test_gdb.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_gdb.py 2015-05-03 00:05:45.000000000 +0800 +@@ -28,6 +28,9 @@ + # This is what "no gdb" looks like. There may, however, be other + # errors that manifest this way too. + raise unittest.SkipTest("Couldn't find gdb on the path") ++except AttributeError: ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") ++ + gdb_version_number = re.search(b"^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version) + gdb_major_version = int(gdb_version_number.group(1)) + gdb_minor_version = int(gdb_version_number.group(2)) diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py ---- orig/Lib/test/test_getpass.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_getpass.py 2016-02-14 10:29:37.000000000 +0800 +--- orig/Lib/test/test_getpass.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_getpass.py 2015-05-02 22:48:44.000000000 +0800 @@ -1,5 +1,6 @@ import getpass import os @@ -9866,8 +12066,8 @@ diff -Nru orig/Lib/test/test_getpass.py modified/Lib/test/test_getpass.py class GetpassGetuserTest(unittest.TestCase): diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.py ---- orig/Lib/test/test_httpservers.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_httpservers.py 2016-02-17 09:40:47.000000000 +0800 +--- orig/Lib/test/test_httpservers.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_httpservers.py 2015-06-28 20:16:12.000000000 +0800 @@ -16,6 +16,7 @@ import urllib.parse import html @@ -9876,7 +12076,7 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p import tempfile from io import BytesIO -@@ -331,11 +332,11 @@ +@@ -277,11 +278,11 @@ with open(os.path.join(self.tempdir, filename), 'wb') as f: f.write(support.TESTFN_UNDECODABLE) response = self.request(self.tempdir_name + '/') @@ -9889,24 +12089,24 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p + if name != 'test': # Ignore a filename created in setUp(). filename = name break - body = self.check_status_and_reason(response, HTTPStatus.OK) -@@ -438,6 +439,7 @@ + body = self.check_status_and_reason(response, 200) +@@ -362,6 +363,7 @@ @unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, "This test can't be run reliably as root (issue #13308).") -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") class CGIHTTPServerTestCase(BaseTestCase): class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler): pass -@@ -653,6 +655,7 @@ +@@ -550,6 +552,7 @@ def log_message(self, format, *args): pass + class RejectingSocketlessRequestHandler(SocketlessRequestHandler): def handle_expect_100(self): - self.send_error(HTTPStatus.EXPECTATION_FAILED) -@@ -683,7 +686,7 @@ + self.send_error(417) +@@ -580,7 +583,7 @@ HTTPResponseMatch = re.compile(b'HTTP/1.[0-9]+ 200 OK') @@ -9915,18 +12115,18 @@ diff -Nru orig/Lib/test/test_httpservers.py modified/Lib/test/test_httpservers.p self.handler = SocketlessRequestHandler() def send_typical_request(self, message): -@@ -873,6 +876,7 @@ - self.handler.handle() - self.assertRaises(StopIteration, next, close_values) +@@ -731,6 +734,7 @@ + self.assertEqual(result[0], b'HTTP/1.1 400 Line too long\r\n') + self.assertFalse(self.handler.get_called) + class SimpleHTTPRequestHandlerTestCase(unittest.TestCase): """ Test url parsing """ def setUp(self): diff -Nru orig/Lib/test/test_imp.py modified/Lib/test/test_imp.py ---- orig/Lib/test/test_imp.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_imp.py 2016-02-14 10:29:37.000000000 +0800 -@@ -20,7 +20,7 @@ +--- orig/Lib/test/test_imp.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_imp.py 2015-04-30 10:07:30.000000000 +0800 +@@ -19,7 +19,7 @@ """Decorator to skip a test if not running under CPython or lacking imp.load_dynamic().""" meth = support.cpython_only(meth) @@ -9935,10 +12135,10 @@ diff -Nru orig/Lib/test/test_imp.py modified/Lib/test/test_imp.py 'imp.load_dynamic() required')(meth) -diff -Nru orig/Lib/test/test_import/__init__.py modified/Lib/test/test_import/__init__.py ---- orig/Lib/test/test_import/__init__.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_import/__init__.py 2016-02-15 19:36:49.000000000 +0800 -@@ -278,6 +278,7 @@ +diff -Nru orig/Lib/test/test_import.py modified/Lib/test/test_import.py +--- orig/Lib/test/test_import.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_import.py 2015-07-04 22:52:30.000000000 +0800 +@@ -280,6 +280,7 @@ """)) script_helper.assert_python_ok(testfn) @@ -9947,11 +12147,11 @@ diff -Nru orig/Lib/test/test_import/__init__.py modified/Lib/test/test_import/__ # A modification timestamp larger than 2**32 should not be a problem # when importing a module (issue #11235). diff -Nru orig/Lib/test/test_importlib/extension/test_finder.py modified/Lib/test/test_importlib/extension/test_finder.py ---- orig/Lib/test/test_importlib/extension/test_finder.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_importlib/extension/test_finder.py 2016-02-14 10:29:41.000000000 +0800 -@@ -3,11 +3,13 @@ +--- orig/Lib/test/test_importlib/extension/test_finder.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_importlib/extension/test_finder.py 2015-04-30 22:06:18.000000000 +0800 +@@ -4,11 +4,13 @@ - machinery = util.import_importlib('importlib.machinery') + machinery = test_util.import_importlib('importlib.machinery') +import sys import unittest @@ -9964,29 +12164,46 @@ diff -Nru orig/Lib/test/test_importlib/extension/test_finder.py modified/Lib/tes """Test the finder for extension modules.""" diff -Nru orig/Lib/test/test_importlib/extension/test_loader.py modified/Lib/test/test_importlib/extension/test_loader.py ---- orig/Lib/test/test_importlib/extension/test_loader.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_importlib/extension/test_loader.py 2016-02-15 20:18:13.000000000 +0800 -@@ -11,6 +11,7 @@ - import importlib +--- orig/Lib/test/test_importlib/extension/test_loader.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_importlib/extension/test_loader.py 2015-04-30 21:52:11.000000000 +0800 +@@ -10,6 +10,7 @@ + import unittest +@unittest.skipIf(sys.platform == 'ios', 'iOS does not support dynamic loading') class LoaderTests(abc.LoaderTests): """Test load_module() for extension modules.""" -@@ -82,6 +83,8 @@ - Source_LoaderTests - ) = util.test_both(LoaderTests, machinery=machinery) +diff -Nru orig/Lib/test/test_importlib/source/test_case_sensitivity.py modified/Lib/test/test_importlib/source/test_case_sensitivity.py +--- orig/Lib/test/test_importlib/source/test_case_sensitivity.py 2015-02-03 19:49:03.000000000 +0800 ++++ modified/Lib/test/test_importlib/source/test_case_sensitivity.py 2015-05-02 19:23:40.000000000 +0800 +@@ -63,18 +63,22 @@ + self.assertIsNotNone(insensitive) + self.assertIn(self.name, insensitive.get_filename(self.name)) + -+@unittest.skipIf(sys.platform == 'ios', 'iOS does not support dynamic loading') - class MultiPhaseExtensionModuleTests(abc.LoaderTests): - """Test loading extension modules with multi-phase initialization (PEP 489) - """ + class CaseSensitivityTestPEP302(CaseSensitivityTest): + def find(self, finder): + return finder.find_module(self.name) + ++ + Frozen_CaseSensitivityTestPEP302, Source_CaseSensitivityTestPEP302 = util.test_both( + CaseSensitivityTestPEP302, importlib=importlib, machinery=machinery) + ++ + class CaseSensitivityTestPEP451(CaseSensitivityTest): + def find(self, finder): + found = finder.find_spec(self.name) + return found.loader if found is not None else found + ++ + Frozen_CaseSensitivityTestPEP451, Source_CaseSensitivityTestPEP451 = util.test_both( + CaseSensitivityTestPEP451, importlib=importlib, machinery=machinery) + diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py ---- orig/Lib/test/test_io.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_io.py 2016-02-14 10:29:41.000000000 +0800 -@@ -416,7 +416,7 @@ +--- orig/Lib/test/test_io.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_io.py 2015-05-04 10:09:23.000000000 +0800 +@@ -420,7 +420,7 @@ # On Windows and Mac OSX this test comsumes large resources; It takes # a long time to build the >2GB file and takes >2GB of disk space # therefore the resource must be enabled to run this test. @@ -9995,48 +12212,48 @@ diff -Nru orig/Lib/test/test_io.py modified/Lib/test/test_io.py support.requires( 'largefile', 'test requires %s bytes and a long time to run' % self.LARGE) -@@ -715,6 +715,7 @@ +@@ -688,6 +688,7 @@ support.gc_collect() - self.assertIsNone(wr(), wr) + self.assertTrue(wr() is None, wr) + class PyIOTest(IOTest): pass diff -Nru orig/Lib/test/test_json/test_tool.py modified/Lib/test/test_json/test_tool.py ---- orig/Lib/test/test_json/test_tool.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_json/test_tool.py 2016-02-17 09:40:44.000000000 +0800 -@@ -7,6 +7,7 @@ - from test.support.script_helper import assert_python_ok - +--- orig/Lib/test/test_json/test_tool.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_json/test_tool.py 2015-05-04 14:42:37.000000000 +0800 +@@ -6,6 +6,7 @@ + from test import support + from test.script_helper import assert_python_ok + class TestTool(unittest.TestCase): data = """ -@@ -60,6 +61,7 @@ +@@ -37,6 +38,7 @@ ] """) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_stdin_stdout(self): with subprocess.Popen( (sys.executable, '-m', 'json.tool'), diff -Nru orig/Lib/test/test_keyword.py modified/Lib/test/test_keyword.py ---- orig/Lib/test/test_keyword.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_keyword.py 2016-02-17 09:40:38.000000000 +0800 +--- orig/Lib/test/test_keyword.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_keyword.py 2015-05-04 14:42:36.000000000 +0800 @@ -46,6 +46,7 @@ fp.writelines(lines[:lines.index(b"#--start keywords--" + nl) + 1]) fp.writelines(lines[lines.index(b"#--end keywords--" + nl):]) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def _generate_keywords(self, grammar_file, target_keyword_py_file): proc = subprocess.Popen([sys.executable, KEYWORD_FILE, diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py ---- orig/Lib/test/test_logging.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_logging.py 2016-02-14 10:29:41.000000000 +0800 -@@ -1452,9 +1452,20 @@ +--- orig/Lib/test/test_logging.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_logging.py 2015-07-04 22:52:40.000000000 +0800 +@@ -1460,9 +1460,20 @@ # just need a name - file can't be present, or we'll get an # 'address already in use' error. os.remove(fn) @@ -10057,7 +12274,7 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py @unittest.skipUnless(threading, 'Threading required for this test.') class UnixSocketHandlerTest(SocketHandlerTest): -@@ -1527,6 +1538,7 @@ +@@ -1535,6 +1546,7 @@ self.assertEqual(self.log_output, "spam\neggs\n") @unittest.skipUnless(hasattr(socket, "AF_UNIX"), "Unix sockets required") @@ -10065,7 +12282,7 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py @unittest.skipUnless(threading, 'Threading required for this test.') class UnixDatagramHandlerTest(DatagramHandlerTest): -@@ -1602,6 +1614,7 @@ +@@ -1610,6 +1622,7 @@ self.assertEqual(self.log_output, b'<11>h\xc3\xa4m-sp\xc3\xa4m') @unittest.skipUnless(hasattr(socket, "AF_UNIX"), "Unix sockets required") @@ -10074,8 +12291,8 @@ diff -Nru orig/Lib/test/test_logging.py modified/Lib/test/test_logging.py class UnixSysLogHandlerTest(SysLogHandlerTest): diff -Nru orig/Lib/test/test_mailcap.py modified/Lib/test/test_mailcap.py ---- orig/Lib/test/test_mailcap.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_mailcap.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_mailcap.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_mailcap.py 2015-05-04 14:35:55.000000000 +0800 @@ -1,6 +1,7 @@ import mailcap import os @@ -10094,11 +12311,11 @@ diff -Nru orig/Lib/test/test_mailcap.py modified/Lib/test/test_mailcap.py # findmatch() will automatically check any "test" conditions and skip # the entry if the check fails. diff -Nru orig/Lib/test/test_marshal.py modified/Lib/test/test_marshal.py ---- orig/Lib/test/test_marshal.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_marshal.py 2016-02-14 10:29:41.000000000 +0800 -@@ -195,7 +195,10 @@ +--- orig/Lib/test/test_marshal.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_marshal.py 2015-05-04 10:29:33.000000000 +0800 +@@ -190,7 +190,10 @@ if os.name == 'nt' and hasattr(sys, 'gettotalrefcount'): - MAX_MARSHAL_STACK_DEPTH = 1000 + MAX_MARSHAL_STACK_DEPTH = 1500 else: - MAX_MARSHAL_STACK_DEPTH = 2000 + if sys.platform == 'ios': @@ -10109,8 +12326,8 @@ diff -Nru orig/Lib/test/test_marshal.py modified/Lib/test/test_marshal.py last.append([0]) last = last[-1] diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py ---- orig/Lib/test/test_mmap.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_mmap.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_mmap.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_mmap.py 2015-05-04 13:15:53.000000000 +0800 @@ -229,7 +229,7 @@ with open(TESTFN, "r+b") as f: self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, access=4) @@ -10120,7 +12337,7 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py # Try incompatible flags, prot and access parameters. with open(TESTFN, "r+b") as f: self.assertRaises(ValueError, mmap.mmap, f.fileno(), mapsize, -@@ -722,7 +722,7 @@ +@@ -718,7 +718,7 @@ unlink(TESTFN) def _make_test_file(self, num_zeroes, tail): @@ -10129,173 +12346,103 @@ diff -Nru orig/Lib/test/test_mmap.py modified/Lib/test/test_mmap.py requires('largefile', 'test requires %s bytes and a long time to run' % str(0x180000000)) f = open(TESTFN, 'w+b') -diff -Nru orig/Lib/test/test_multiprocessing_fork.py modified/Lib/test/test_multiprocessing_fork.py ---- orig/Lib/test/test_multiprocessing_fork.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_fork.py 2016-02-17 09:38:08.000000000 +0800 -@@ -1,7 +1,13 @@ -+import os - import unittest -+ -+if not os.allows_subprocesses: -+ raise unittest.SkipTest('Test requires support for subprocesses.') -+ - import test._test_multiprocessing - - test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork') - -+ - if __name__ == '__main__': - unittest.main() -diff -Nru orig/Lib/test/test_multiprocessing_forkserver.py modified/Lib/test/test_multiprocessing_forkserver.py ---- orig/Lib/test/test_multiprocessing_forkserver.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_forkserver.py 2016-02-17 09:37:46.000000000 +0800 -@@ -1,7 +1,13 @@ -+import os - import unittest -+ -+if not os.allows_subprocesses: -+ raise unittest.SkipTest('Test requires support for subprocesses.') -+ - import test._test_multiprocessing - - test._test_multiprocessing.install_tests_in_module_dict(globals(), 'forkserver') - -+ - if __name__ == '__main__': - unittest.main() -diff -Nru orig/Lib/test/test_multiprocessing_spawn.py modified/Lib/test/test_multiprocessing_spawn.py ---- orig/Lib/test/test_multiprocessing_spawn.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_multiprocessing_spawn.py 2016-02-17 09:37:41.000000000 +0800 -@@ -1,7 +1,13 @@ -+import os - import unittest -+ -+if not os.allows_subprocesses: -+ raise unittest.SkipTest('Test requires support for subprocesses.') -+ - import test._test_multiprocessing - - test._test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn') - -+ - if __name__ == '__main__': - unittest.main() diff -Nru orig/Lib/test/test_os.py modified/Lib/test/test_os.py ---- orig/Lib/test/test_os.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_os.py 2016-02-17 09:51:58.000000000 +0800 -@@ -657,6 +657,7 @@ +--- orig/Lib/test/test_os.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_os.py 2015-05-04 14:42:36.000000000 +0800 +@@ -555,6 +555,7 @@ # Bug 1110478 @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_update2(self): os.environ.clear() os.environ.update(HELLO="World") -@@ -665,6 +666,7 @@ +@@ -563,6 +564,7 @@ self.assertEqual(value, "World") @unittest.skipUnless(os.path.exists('/bin/sh'), 'requires /bin/sh') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_os_popen_iter(self): with os.popen( "/bin/sh -c 'echo \"line1\nline2\nline3\"'") as popen: -@@ -1343,6 +1345,8 @@ +@@ -1147,6 +1149,7 @@ os.execve = orig_execve os.defpath = orig_defpath +@unittest.skipUnless(hasattr(os, 'execv'), "os module doesn't provide execvpe()") -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') class ExecTests(unittest.TestCase): @unittest.skipIf(USING_LINUXTHREADS, "avoid triggering a linuxthreads bug: see issue #4970") -@@ -1604,6 +1608,7 @@ +@@ -1398,6 +1401,7 @@ self.assertRaises(OverflowError, os.setreuid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_setreuid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -1612,6 +1617,7 @@ +@@ -1406,6 +1410,7 @@ 'import os,sys;os.setreuid(-1,-1);sys.exit(0)']) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_setregid(self): if os.getuid() != 0 and not HAVE_WHEEL_GROUP: self.assertRaises(OSError, os.setregid, 0, 0) -@@ -1619,6 +1625,7 @@ +@@ -1413,6 +1418,7 @@ self.assertRaises(OverflowError, os.setregid, 0, 1<<32) @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_setregid_neg1(self): # Needs to accept -1. We run this in a subprocess to avoid # altering the test runner's process state (issue8045). -@@ -2075,6 +2082,7 @@ +@@ -1838,6 +1844,7 @@ class PidTests(unittest.TestCase): @unittest.skipUnless(hasattr(os, 'getppid'), "test needs os.getppid") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_getppid(self): p = subprocess.Popen([sys.executable, '-c', 'import os; print(os.getppid())'], -@@ -2083,6 +2091,9 @@ - # We are the parent of our subprocess - self.assertEqual(int(stdout), os.getpid()) - -+ @unittest.skipUnless(hasattr(os, 'spawnv'), "test needs os.spawnv") -+ @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def test_waitpid(self): - args = [sys.executable, '-c', 'pass'] - pid = os.spawnv(os.P_NOWAIT, args[0], args) -@@ -2548,6 +2559,7 @@ +@@ -2295,6 +2302,7 @@ self.assertGreaterEqual(size.columns, 0) self.assertGreaterEqual(size.lines, 0) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_stty_match(self): """Check if stty returns the same results diff -Nru orig/Lib/test/test_pdb.py modified/Lib/test/test_pdb.py ---- orig/Lib/test/test_pdb.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pdb.py 2016-02-17 09:40:08.000000000 +0800 -@@ -1,6 +1,7 @@ - # A test suite for pdb; not very comprehensive at the moment. - - import doctest -+import os - import pdb - import sys - import types -@@ -914,6 +915,7 @@ +--- orig/Lib/test/test_pdb.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_pdb.py 2015-05-04 14:42:35.000000000 +0800 +@@ -910,6 +910,7 @@ class PdbTestCase(unittest.TestCase): -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def run_pdb(self, script, commands): """Run 'script' lines with pdb and the pdb 'commands'.""" filename = 'main.py' -@@ -962,6 +964,7 @@ +@@ -957,6 +958,7 @@ ('bar', 4), ) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_issue7964(self): # open the file as binary so we can force \r\n newline with open(support.TESTFN, 'wb') as f: -@@ -1013,6 +1016,7 @@ +@@ -1008,6 +1010,7 @@ any('main.py(5)foo()->None' in l for l in stdout.splitlines()), 'Fail to step into the caller after a return') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_issue13210(self): # invoking "continue" on a non-main thread triggered an exception # inside signal.signal diff -Nru orig/Lib/test/test_pep277.py modified/Lib/test/test_pep277.py ---- orig/Lib/test/test_pep277.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pep277.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_pep277.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_pep277.py 2015-05-04 13:16:06.000000000 +0800 @@ -27,7 +27,7 @@ # these normal forms. For example, HFS Plus uses a variant of Normal Form D # in which U+2000 through U+2FFF, U+F900 through U+FAFF, and U+2F800 through @@ -10333,8 +12480,8 @@ diff -Nru orig/Lib/test/test_pep277.py modified/Lib/test/test_pep277.py sf0 = set(self.files) with warnings.catch_warnings(): diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py ---- orig/Lib/test/test_pipes.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pipes.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_pipes.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_pipes.py 2015-05-02 21:03:07.000000000 +0800 @@ -1,17 +1,21 @@ import pipes import os @@ -10358,8 +12505,8 @@ diff -Nru orig/Lib/test/test_pipes.py modified/Lib/test/test_pipes.py def tearDown(self): for f in (TESTFN, TESTFN2): diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py ---- orig/Lib/test/test_platform.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_platform.py 2016-02-17 09:39:54.000000000 +0800 +--- orig/Lib/test/test_platform.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_platform.py 2015-05-04 14:43:41.000000000 +0800 @@ -9,11 +9,13 @@ from test import support @@ -10370,7 +12517,7 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py res = platform.architecture() @support.skip_unless_symlink -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_architecture_via_symlink(self): # issue3762 # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. @@ -10391,17 +12538,17 @@ diff -Nru orig/Lib/test/test_platform.py modified/Lib/test/test_platform.py @unittest.skipUnless(sys.platform == 'darwin', "OSX only test") def test_mac_ver_with_fork(self): # Issue7895: platform.mac_ver() crashes when using fork without exec -@@ -272,6 +273,7 @@ +@@ -265,6 +266,7 @@ ): self.assertEqual(platform._parse_release_file(input), output) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_popen(self): mswindows = (sys.platform == "win32") diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py ---- orig/Lib/test/test_poll.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_poll.py 2016-02-17 09:39:49.000000000 +0800 +--- orig/Lib/test/test_poll.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_poll.py 2015-05-04 14:43:49.000000000 +0800 @@ -25,6 +25,7 @@ match.append(fd) return match @@ -10414,33 +12561,34 @@ diff -Nru orig/Lib/test/test_poll.py modified/Lib/test/test_poll.py # Another test case for poll(). This is copied from the test case for # select(), modified to use poll() instead. -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_poll2(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py ---- orig/Lib/test/test_popen.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_popen.py 2016-02-17 09:39:36.000000000 +0800 -@@ -5,7 +5,8 @@ +--- orig/Lib/test/test_popen.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_popen.py 2015-05-04 14:42:34.000000000 +0800 +@@ -5,7 +5,9 @@ import unittest from test import support -import os, sys +import os ++import subprocess +import sys # Test that command-lines get down as we expect. # To do this we execute: -@@ -16,6 +17,8 @@ +@@ -16,6 +18,8 @@ if ' ' in python: python = '"' + python + '"' # quote embedded space for cmdline + -+@unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++@unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") class PopenTest(unittest.TestCase): def _do_test_commandline(self, cmdline, expected): -@@ -23,7 +26,7 @@ +@@ -23,7 +27,7 @@ cmd = cmd % (python, cmdline) with os.popen(cmd) as p: data = p.read() @@ -10449,18 +12597,28 @@ diff -Nru orig/Lib/test/test_popen.py modified/Lib/test/test_popen.py self.assertEqual(got, expected) def test_popen(self): +@@ -57,6 +61,7 @@ + with os.popen("echo hello") as f: + self.assertEqual(list(f), ["hello\n"]) + ++ + def test_main(): + support.run_unittest(PopenTest) + diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py ---- orig/Lib/test/test_posix.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_posix.py 2016-02-17 11:00:48.000000000 +0800 -@@ -11,7 +11,6 @@ - import os +--- orig/Lib/test/test_posix.py 2015-05-02 23:43:12.000000000 +0800 ++++ modified/Lib/test/test_posix.py 2015-05-04 14:42:33.000000000 +0800 +@@ -12,8 +12,8 @@ + import fcntl import platform import pwd -import shutil import stat ++import subprocess import tempfile import unittest -@@ -20,6 +19,7 @@ + import warnings +@@ -21,6 +21,7 @@ _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(), support.TESTFN + '-dummy-symlink') @@ -10468,164 +12626,70 @@ diff -Nru orig/Lib/test/test_posix.py modified/Lib/test/test_posix.py class PosixTester(unittest.TestCase): def setUp(self): -@@ -40,17 +40,24 @@ - def testNoArgFunctions(self): - # test posix functions which take no arguments and have - # no side-effects which we need to cleanup (e.g., fork, wait, abort) -- NO_ARG_FUNCTIONS = [ "ctermid", "getcwd", "getcwdb", "uname", -- "times", "getloadavg", -- "getegid", "geteuid", "getgid", "getgroups", -- "getpid", "getpgrp", "getppid", "getuid", "sync", -- ] -+ NO_ARG_FUNCTIONS = [ -+ "ctermid", "getcwd", "getcwdb", "uname", -+ "times", "getloadavg", -+ "getegid", "geteuid", "getgid", -+ "getpid", "getpgrp", "getppid", "getuid", "sync", -+ ] -+ -+ if sys.platform != 'ios': -+ NO_ARG_FUNCTIONS.append("getgroups") - - for name in NO_ARG_FUNCTIONS: - posix_func = getattr(posix, name, None) - if posix_func is not None: -- posix_func() -- self.assertRaises(TypeError, posix_func, 1) -+ try: -+ posix_func() -+ self.assertRaises(TypeError, posix_func, 1) -+ except Exception as e: -+ self.fail('Problem invoking %s: %s' % (name, e)) - - @unittest.skipUnless(hasattr(posix, 'getresuid'), - 'test needs posix.getresuid()') -@@ -529,9 +536,10 @@ +@@ -492,9 +493,10 @@ check_stat(uid, gid) self.assertRaises(OSError, chown_func, first_param, 0, -1) check_stat(uid, gid) - if 0 not in os.getgroups(): - self.assertRaises(OSError, chown_func, first_param, -1, 0) - check_stat(uid, gid) -+ if hasattr(os, 'getgroups') and sys.platform != 'ios': ++ if hasattr(os, 'getgroups'): + if 0 not in os.getgroups(): + self.assertRaises(OSError, chown_func, first_param, -1, 0) + check_stat(uid, gid) # test illegal types for t in str, float: self.assertRaises(TypeError, chown_func, first_param, t(uid), gid) -@@ -791,8 +799,8 @@ +@@ -754,8 +756,8 @@ group = pwd.getpwuid(os.getuid())[3] self.assertIn(group, posix.getgrouplist(user, group)) - @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_getgroups(self): with os.popen('id -G 2>/dev/null') as idg: groups = idg.read().strip() -@@ -1040,7 +1048,7 @@ - self.assertIsInstance(hi, int) - self.assertGreaterEqual(hi, lo) - # OSX evidently just returns 15 without checking the argument. -- if sys.platform != "darwin": -+ if sys.platform not in("darwin", "ios"): - self.assertRaises(OSError, posix.sched_get_priority_min, -23) - self.assertRaises(OSError, posix.sched_get_priority_max, -23) - -@@ -1212,6 +1220,7 @@ - open(fn, 'wb').close() - self.assertRaises(ValueError, os.stat, fn_with_NUL) - -+ - class PosixGroupsTester(unittest.TestCase): - - def setUp(self): diff -Nru orig/Lib/test/test_pty.py modified/Lib/test/test_pty.py ---- orig/Lib/test/test_pty.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_pty.py 2016-02-17 09:52:41.000000000 +0800 -@@ -111,7 +111,7 @@ +--- orig/Lib/test/test_pty.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_pty.py 2015-05-04 14:42:26.000000000 +0800 +@@ -110,7 +110,7 @@ os.close(slave_fd) os.close(master_fd) - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") def test_fork(self): debug("calling pty.fork()") pid, master_fd = pty.fork() diff -Nru orig/Lib/test/test_quopri.py modified/Lib/test/test_quopri.py ---- orig/Lib/test/test_quopri.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_quopri.py 2016-02-17 09:39:28.000000000 +0800 -@@ -180,6 +180,7 @@ +--- orig/Lib/test/test_quopri.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_quopri.py 2015-05-04 14:42:33.000000000 +0800 +@@ -174,6 +174,7 @@ for p, e in self.HSTRINGS: self.assertEqual(quopri.decodestring(e, header=True), p) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_scriptencode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri"], -@@ -196,6 +197,7 @@ +@@ -190,6 +191,7 @@ self.assertEqual(cout[i], e[i]) self.assertEqual(cout, e) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_scriptdecode(self): (p, e) = self.STRINGS[-1] process = subprocess.Popen([sys.executable, "-mquopri", "-d"], -diff -Nru orig/Lib/test/test_script_helper.py modified/Lib/test/test_script_helper.py ---- orig/Lib/test/test_script_helper.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_script_helper.py 2016-02-17 09:38:53.000000000 +0800 -@@ -1,5 +1,6 @@ - """Unittests for test.support.script_helper. Who tests the test helper?""" - -+import os - import subprocess - import sys - from test.support import script_helper -@@ -34,6 +35,7 @@ - self.assertIn('import sys; sys.exit(0)', error_msg, - msg='unexpected command line.') - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - @mock.patch('subprocess.Popen') - def test_assert_python_isolated_when_env_not_required(self, mock_popen): - with mock.patch.object(script_helper, -@@ -52,6 +54,7 @@ - self.assertIn('-I', popen_command) - self.assertNotIn('-E', popen_command) # -I overrides this - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - @mock.patch('subprocess.Popen') - def test_assert_python_not_isolated_when_env_is_required(self, mock_popen): - """Ensure that -I is not passed when the environment is required.""" -@@ -81,6 +84,7 @@ - # Reset the private cached state. - script_helper.__dict__['__cached_interp_requires_environment'] = None - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - @mock.patch('subprocess.check_call') - def test_interpreter_requires_environment_true(self, mock_check_call): - mock_check_call.side_effect = subprocess.CalledProcessError('', '') -@@ -88,6 +92,7 @@ - self.assertTrue(script_helper.interpreter_requires_environment()) - self.assertEqual(1, mock_check_call.call_count) - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - @mock.patch('subprocess.check_call') - def test_interpreter_requires_environment_false(self, mock_check_call): - # The mocked subprocess.check_call fakes a no-error process. -@@ -95,6 +100,7 @@ - self.assertFalse(script_helper.interpreter_requires_environment()) - self.assertEqual(1, mock_check_call.call_count) - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - @mock.patch('subprocess.check_call') - def test_interpreter_requires_environment_details(self, mock_check_call): - script_helper.interpreter_requires_environment() diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py ---- orig/Lib/test/test_select.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_select.py 2016-02-17 09:38:45.000000000 +0800 -@@ -5,7 +5,8 @@ +--- orig/Lib/test/test_select.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_select.py 2015-05-04 14:42:32.000000000 +0800 +@@ -1,11 +1,13 @@ + import errno + import os + import select ++import subprocess + import sys import unittest from test import support @@ -10635,26 +12699,26 @@ diff -Nru orig/Lib/test/test_select.py modified/Lib/test/test_select.py "can't easily test on this system") class SelectTestCase(unittest.TestCase): -@@ -44,6 +45,7 @@ +@@ -44,6 +46,7 @@ self.assertIsNot(r, x) self.assertIsNot(w, x) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_select(self): cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' p = os.popen(cmd, 'r') diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py ---- orig/Lib/test/test_shutil.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_shutil.py 2016-02-17 09:38:37.000000000 +0800 -@@ -51,6 +51,7 @@ +--- orig/Lib/test/test_shutil.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_shutil.py 2015-07-04 22:52:47.000000000 +0800 +@@ -48,6 +48,7 @@ except ImportError: - ZIP_SUPPORT = shutil.which('zip') + ZIP_SUPPORT = find_executable('zip') + def _fake_rename(*args, **kwargs): # Pretend the destination path is on a different filesystem. raise OSError(getattr(errno, 'EXDEV', 18), "Invalid cross-device link") -@@ -1373,6 +1374,7 @@ +@@ -1318,6 +1319,7 @@ self.assertEqual(['foo'], os.listdir(rv)) @@ -10662,28 +12726,28 @@ diff -Nru orig/Lib/test/test_shutil.py modified/Lib/test/test_shutil.py class TestWhich(unittest.TestCase): def setUp(self): -@@ -1814,6 +1816,7 @@ +@@ -1741,6 +1743,7 @@ self.assertEqual(size.lines, 888) @unittest.skipUnless(os.isatty(sys.__stdout__.fileno()), "not on tty") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_stty_match(self): """Check if stty returns the same results ignoring env diff -Nru orig/Lib/test/test_signal.py modified/Lib/test/test_signal.py ---- orig/Lib/test/test_signal.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_signal.py 2016-02-17 09:38:33.000000000 +0800 -@@ -158,6 +158,7 @@ +--- orig/Lib/test/test_signal.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_signal.py 2015-05-04 14:42:31.000000000 +0800 +@@ -135,6 +135,7 @@ @unittest.skipIf(sys.platform=='freebsd6', 'inter process signals not reliable (do not mix well with threading) ' 'on freebsd6') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_main(self): # This function spawns a child process to insulate the main # test-running process from all the signals. It then diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py ---- orig/Lib/test/test_site.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_site.py 2016-02-17 09:38:29.000000000 +0800 +--- orig/Lib/test/test_site.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_site.py 2015-07-04 21:21:33.000000000 +0800 @@ -31,6 +31,7 @@ os.makedirs(site.USER_SITE) site.addsitedir(site.USER_SITE) @@ -10696,7 +12760,7 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 " "user-site (site.ENABLE_USER_SITE)") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_s_option(self): usersite = site.USER_SITE self.assertIn(usersite, sys.path) @@ -10709,26 +12773,26 @@ diff -Nru orig/Lib/test/test_site.py modified/Lib/test/test_site.py # OS X framework builds site.PREFIXES = ['Python.framework'] dirs = site.getsitepackages() -@@ -320,6 +322,7 @@ +@@ -322,6 +324,7 @@ """Restore sys.path""" sys.path[:] = self.sys_path -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_abs_paths(self): # Make sure all imported modules have their __file__ and __cached__ # attributes as absolute paths. Arranging to put the Lib directory on -@@ -435,6 +438,7 @@ +@@ -432,6 +435,7 @@ class StartupImportTests(unittest.TestCase): -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_startup_imports(self): # This tests checks which modules are loaded by Python when it # initially starts upon startup. diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py ---- orig/Lib/test/test_socket.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_socket.py 2016-02-15 19:36:34.000000000 +0800 -@@ -532,6 +532,7 @@ +--- orig/Lib/test/test_socket.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_socket.py 2015-07-04 22:53:12.000000000 +0800 +@@ -530,6 +530,7 @@ sock.bind(path) self.addCleanup(support.unlink, path) @@ -10736,7 +12800,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py class UnixStreamBase(UnixSocketTestBase): """Base class for Unix-domain SOCK_STREAM tests.""" -@@ -783,8 +784,7 @@ +@@ -774,8 +775,7 @@ self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqhn, repr(all_host_names))) def test_host_resolution(self): @@ -10746,7 +12810,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py self.assertRaises(OSError, socket.gethostbyname, addr) self.assertRaises(OSError, socket.gethostbyaddr, addr) -@@ -796,6 +796,12 @@ +@@ -787,6 +787,12 @@ for host in [support.HOST]: self.assertIn(host, socket.gethostbyaddr(host)[2]) @@ -10759,52 +12823,52 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(hasattr(socket, 'sethostname'), "test needs socket.sethostname()") @unittest.skipUnless(hasattr(socket, 'gethostname'), "test needs socket.gethostname()") def test_sethostname(self): -@@ -896,7 +902,7 @@ - # I've ordered this by protocols that have both a tcp and udp - # protocol, at least for modern Linuxes. - if (sys.platform.startswith(('freebsd', 'netbsd', 'gnukfreebsd')) -- or sys.platform in ('linux', 'darwin')): -+ or sys.platform in ('linux', 'darwin', 'ios')): - # avoid the 'echo' service on this platform, as there is an - # assumption breaking non-standard port/protocol entry - services = ('daytime', 'qotd', 'domain') -@@ -2748,7 +2754,7 @@ +@@ -1286,7 +1292,7 @@ + # these should all be successful + socket.gethostbyname('испытание.python.org') + socket.gethostbyname_ex('испытание.python.org') +- socket.getaddrinfo('испытание.python.org',0,socket.AF_UNSPEC,socket.SOCK_STREAM) ++ socket.getaddrinfo('испытание.python.org', 0, socket.AF_UNSPEC, socket.SOCK_STREAM) + # this may not work if the forward lookup choses the IPv6 address, as that doesn't + # have a reverse entry yet + # socket.gethostbyaddr('испытание.python.org') +@@ -2727,7 +2733,7 @@ def _testFDPassCMSG_LEN(self): self.createAndSendFDs(1) - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") - @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") @requireAttrs(socket, "CMSG_SPACE") def testFDPassSeparate(self): -@@ -2759,7 +2765,7 @@ + # Pass two FDs in two separate arrays. Arrays may be combined +@@ -2737,7 +2743,7 @@ maxcmsgs=2) @testFDPassSeparate.client_skip - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") - @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") def _testFDPassSeparate(self): fd0, fd1 = self.newFDs(2) -@@ -2772,7 +2778,7 @@ + self.assertEqual( +@@ -2749,7 +2755,7 @@ array.array("i", [fd1]))]), len(MSG)) - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") - @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") @requireAttrs(socket, "CMSG_SPACE") def testFDPassSeparateMinSpace(self): -@@ -2785,7 +2791,7 @@ + # Pass two FDs in two separate arrays, receiving them into the +@@ -2761,7 +2767,7 @@ maxcmsgs=2, ignoreflags=socket.MSG_CTRUNC) @testFDPassSeparateMinSpace.client_skip - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958") + @unittest.skipIf(sys.platform in ("darwin", "ios"), "skipping, see issue #12958") - @unittest.skipIf(sys.platform.startswith("aix"), "skipping, see issue #22397") def _testFDPassSeparateMinSpace(self): fd0, fd1 = self.newFDs(2) -@@ -3557,12 +3563,14 @@ + self.assertEqual( +@@ -3532,12 +3538,14 @@ @requireAttrs(socket.socket, "sendmsg") @requireAttrs(socket, "AF_UNIX") @@ -10819,7 +12883,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(thread, 'Threading required for this test.') class RecvmsgUnixStreamTest(RecvmsgTests, RecvmsgGenericStreamTests, SendrecvmsgUnixStreamTestBase): -@@ -3570,6 +3578,7 @@ +@@ -3545,6 +3553,7 @@ @requireAttrs(socket.socket, "recvmsg_into") @requireAttrs(socket, "AF_UNIX") @@ -10827,7 +12891,7 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py @unittest.skipUnless(thread, 'Threading required for this test.') class RecvmsgIntoUnixStreamTest(RecvmsgIntoTests, RecvmsgGenericStreamTests, SendrecvmsgUnixStreamTestBase): -@@ -3577,12 +3586,14 @@ +@@ -3552,12 +3561,14 @@ @requireAttrs(socket.socket, "sendmsg", "recvmsg") @requireAttrs(socket, "AF_UNIX", "SOL_SOCKET", "SCM_RIGHTS") @@ -10843,9 +12907,9 @@ diff -Nru orig/Lib/test/test_socket.py modified/Lib/test/test_socket.py class RecvmsgIntoSCMRightsStreamTest(RecvmsgIntoMixin, SCMRightsTest, SendrecvmsgUnixStreamTestBase): diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver.py ---- orig/Lib/test/test_socketserver.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_socketserver.py 2016-02-17 11:02:33.000000000 +0800 -@@ -7,7 +7,7 @@ +--- orig/Lib/test/test_socketserver.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_socketserver.py 2015-07-04 22:53:26.000000000 +0800 +@@ -8,7 +8,7 @@ import select import signal import socket @@ -10854,12 +12918,8 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver import errno import tempfile import unittest -@@ -28,9 +28,10 @@ - HAVE_UNIX_SOCKETS = hasattr(socket, "AF_UNIX") - requires_unix_sockets = unittest.skipUnless(HAVE_UNIX_SOCKETS, - 'requires Unix sockets') --HAVE_FORKING = hasattr(os, "fork") -+HAVE_FORKING = hasattr(os, "fork") and os.allows_subprocesses +@@ -32,6 +32,7 @@ + HAVE_FORKING = hasattr(os, "fork") requires_forking = unittest.skipUnless(HAVE_FORKING, 'requires forking') + @@ -10882,8 +12942,8 @@ diff -Nru orig/Lib/test/test_socketserver.py modified/Lib/test/test_socketserver self.run_server(socketserver.ThreadingUnixStreamServer, socketserver.StreamRequestHandler, diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_encoding.py ---- orig/Lib/test/test_source_encoding.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_source_encoding.py 2016-02-17 09:38:26.000000000 +0800 +--- orig/Lib/test/test_source_encoding.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_source_encoding.py 2015-05-04 14:44:09.000000000 +0800 @@ -7,6 +7,7 @@ import sys import subprocess @@ -10896,26 +12956,26 @@ diff -Nru orig/Lib/test/test_source_encoding.py modified/Lib/test/test_source_en # two bytes in common with the UTF-8 BOM self.assertRaises(SyntaxError, eval, b'\xef\xbb\x20') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_20731(self): sub = subprocess.Popen([sys.executable, os.path.join(os.path.dirname(__file__), diff -Nru orig/Lib/test/test_subprocess.py modified/Lib/test/test_subprocess.py ---- orig/Lib/test/test_subprocess.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_subprocess.py 2016-02-17 09:36:48.000000000 +0800 +--- orig/Lib/test/test_subprocess.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_subprocess.py 2015-05-02 21:04:07.000000000 +0800 @@ -26,6 +26,9 @@ mswindows = (sys.platform == "win32") -+if not os.allows_subprocesses: -+ raise unittest.SkipTest('Test requires support for subprocesses.') ++if not hasattr(subprocess, 'Popen'): ++ raise unittest.SkipTest("subprocess module doesn't provide Popen()") + # # Depends on the following external programs: Python # diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py ---- orig/Lib/test/test_sundry.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sundry.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_sundry.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_sundry.py 2015-04-30 10:12:55.000000000 +0800 @@ -20,7 +20,8 @@ import distutils.bcppcompiler @@ -10924,11 +12984,11 @@ diff -Nru orig/Lib/test/test_sundry.py modified/Lib/test/test_sundry.py + if sys.platform.startswith('win'): + import distutils.cygwinccompiler import distutils.filelist - import distutils.text_file - import distutils.unixccompiler + if sys.platform.startswith('win'): + import distutils.msvccompiler diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py ---- orig/Lib/test/test_sys.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sys.py 2016-02-17 09:38:18.000000000 +0800 +--- orig/Lib/test/test_sys.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_sys.py 2015-05-04 14:44:19.000000000 +0800 @@ -20,6 +20,7 @@ except ImportError: threading = None @@ -10937,49 +12997,41 @@ diff -Nru orig/Lib/test/test_sys.py modified/Lib/test/test_sys.py class SysModuleTest(unittest.TestCase): def setUp(self): -@@ -255,6 +256,7 @@ +@@ -216,6 +217,7 @@ finally: sys.setrecursionlimit(oldlimit) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_recursionlimit_fatalerror(self): # A fatal error occurs if a second recursion limit is hit when recovering # from a first one. -@@ -582,6 +584,7 @@ +@@ -542,6 +544,7 @@ def test_clear_type_cache(self): sys._clear_type_cache() -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_ioencoding(self): env = dict(os.environ) -@@ -627,6 +630,7 @@ +@@ -587,6 +590,7 @@ @unittest.skipUnless(test.support.FS_NONASCII, 'requires OS support of non-ASCII encodings') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_ioencoding_nonascii(self): env = dict(os.environ) -@@ -639,6 +643,7 @@ +@@ -599,6 +603,7 @@ @unittest.skipIf(sys.base_prefix != sys.prefix, 'Test is not venv-compatible') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_executable(self): # sys.executable should be absolute self.assertEqual(os.path.abspath(sys.executable), sys.executable) -@@ -675,6 +680,7 @@ - expected = None - self.check_fsencoding(fs_encoding, expected) - -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def c_locale_get_error_handler(self, isolated=False, encoding=None): - # Force the POSIX locale - env = os.environ.copy() diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py ---- orig/Lib/test/test_sysconfig.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_sysconfig.py 2016-02-17 09:42:01.000000000 +0800 +--- orig/Lib/test/test_sysconfig.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_sysconfig.py 2015-07-04 22:53:33.000000000 +0800 @@ -15,6 +15,7 @@ get_scheme_names, get_config_var, _main) import _osx_support @@ -10998,25 +13050,13 @@ diff -Nru orig/Lib/test/test_sysconfig.py modified/Lib/test/test_sysconfig.py self.assertEqual(get_scheme_names(), wanted) @skip_unless_symlink -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_symlink(self): # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. -diff -Nru orig/Lib/test/test_tempfile.py modified/Lib/test/test_tempfile.py ---- orig/Lib/test/test_tempfile.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_tempfile.py 2016-02-17 11:43:31.000000000 +0800 -@@ -23,7 +23,7 @@ - has_stat = 0 - - has_textmode = (tempfile._text_openflags != tempfile._bin_openflags) --has_spawnl = hasattr(os, 'spawnl') -+has_spawnl = hasattr(os, 'spawnl') and os.allows_subprocesses - - # TEST_FILES may need to be tweaked for systems depending on the maximum - # number of files that can be opened at one time (see ulimit -n) diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py ---- orig/Lib/test/test_thread.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_thread.py 2016-02-17 09:53:21.000000000 +0800 +--- orig/Lib/test/test_thread.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_thread.py 2015-05-04 14:44:49.000000000 +0800 @@ -14,12 +14,14 @@ _print_mutex = thread.allocate_lock() @@ -11036,14 +13076,14 @@ diff -Nru orig/Lib/test/test_thread.py modified/Lib/test/test_thread.py @unittest.skipIf(sys.platform.startswith('win'), "This test is only appropriate for POSIX-like systems.") -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") @support.reap_threads def test_forkinthread(self): def thread1(): diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py ---- orig/Lib/test/test_threading.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_threading.py 2016-02-14 10:29:41.000000000 +0800 -@@ -824,6 +824,7 @@ +--- orig/Lib/test/test_threading.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_threading.py 2015-05-02 16:19:47.000000000 +0800 +@@ -825,6 +825,7 @@ class SubinterpThreadingTests(BaseTestCase): @@ -11051,7 +13091,7 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py def test_threads_join(self): # Non-daemon threads should be joined at subinterpreter shutdown # (issue #18808) -@@ -847,6 +848,7 @@ +@@ -848,6 +849,7 @@ # The thread was joined properly. self.assertEqual(os.read(r, 1), b"x") @@ -11060,23 +13100,21 @@ diff -Nru orig/Lib/test/test_threading.py modified/Lib/test/test_threading.py # Same as above, but a delay gets introduced after the thread's # Python code returned but before the thread state is deleted. diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py ---- orig/Lib/test/test_traceback.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_traceback.py 2016-02-17 11:55:04.000000000 +0800 -@@ -5,7 +5,9 @@ - import linecache +--- orig/Lib/test/test_traceback.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_traceback.py 2015-05-04 14:42:29.000000000 +0800 +@@ -1,6 +1,7 @@ + """Test cases for traceback module""" + + from io import StringIO ++import subprocess import sys import unittest -+import os import re -+import subprocess - from test import support - from test.support import TESTFN, Error, captured_output, unlink, cpython_only - from test.support.script_helper import assert_python_ok -@@ -110,11 +112,12 @@ +@@ -101,11 +102,12 @@ err = traceback.format_exception_only(None, None) self.assertEqual(err, ['None\n']) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_encoded_file(self): # Test that tracebacks are correctly printed for encoded source files: # - correct line number (Issue2384) @@ -11087,112 +13125,89 @@ diff -Nru orig/Lib/test/test_traceback.py modified/Lib/test/test_traceback.py # The spawned subprocess has its stdout redirected to a PIPE, and its # encoding may be different from the current interpreter, on Windows diff -Nru orig/Lib/test/test_unicodedata.py modified/Lib/test/test_unicodedata.py ---- orig/Lib/test/test_unicodedata.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_unicodedata.py 2016-02-17 09:41:56.000000000 +0800 -@@ -6,6 +6,7 @@ - - """ - -+import os - import sys - import unittest - import hashlib -@@ -222,8 +223,10 @@ +--- orig/Lib/test/test_unicodedata.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_unicodedata.py 2015-05-04 14:42:28.000000000 +0800 +@@ -222,8 +222,10 @@ self.assertEqual(eaw('\u2010'), 'A') self.assertEqual(eaw('\U00020000'), 'W') + class UnicodeMiscTest(UnicodeDatabaseTest): -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_failed_import_during_compiling(self): # Issue 4367 # Decoding \N escapes requires the unicodedata module. If it can't be diff -Nru orig/Lib/test/test_urllib2net.py modified/Lib/test/test_urllib2net.py ---- orig/Lib/test/test_urllib2net.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_urllib2net.py 2016-02-15 18:20:45.000000000 +0800 -@@ -7,6 +7,10 @@ - import urllib.error - import urllib.request - import sys -+try: -+ import ssl -+except ImportError: -+ ssl = None - - support.requires("network") - -@@ -148,6 +152,7 @@ +--- orig/Lib/test/test_urllib2net.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_urllib2net.py 2015-05-04 13:16:45.000000000 +0800 +@@ -156,6 +156,7 @@ ## self._test_urls(urls, self._extra_handlers()+[bauth, dauth]) + @unittest.skipIf(ssl is None, 'test requires ssl module') def test_urlwithfrag(self): - urlwith_frag = "http://www.pythontest.net/index.html#frag" + urlwith_frag = "https://docs.python.org/2/glossary.html#glossary" with support.transient_internet(urlwith_frag): -@@ -156,6 +161,7 @@ +@@ -164,6 +165,7 @@ self.assertEqual(res.geturl(), - "http://www.pythontest.net/index.html#frag") + "https://docs.python.org/2/glossary.html#glossary") + @unittest.skipIf(ssl is None, 'test requires ssl module') def test_redirect_url_withfrag(self): - redirect_url_with_frag = "http://www.pythontest.net/redir/with_frag/" + redirect_url_with_frag = "http://bit.ly/1iSHToT" with support.transient_internet(redirect_url_with_frag): diff -Nru orig/Lib/test/test_uuid.py modified/Lib/test/test_uuid.py ---- orig/Lib/test/test_uuid.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_uuid.py 2016-02-17 10:14:39.000000000 +0800 -@@ -14,6 +14,7 @@ +--- orig/Lib/test/test_uuid.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_uuid.py 2015-05-04 14:44:34.000000000 +0800 +@@ -3,9 +3,11 @@ + import builtins + import io + import os ++import subprocess + import shutil + import uuid + ++ + def importable(name): + try: + __import__(name) +@@ -13,6 +15,7 @@ except: return False + class TestUUID(unittest.TestCase): - def test_UUID(self): - equal = self.assertEqual -@@ -388,6 +389,7 @@ - equal(str(u), v) - - @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def testIssue8621(self): - # On at least some versions of OSX uuid.uuid4 generates - # the same sequence of UUIDs in the parent and any -@@ -412,6 +414,7 @@ - - class TestInternals(unittest.TestCase): - @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def test_find_mac(self): - data = ''' - fake hwaddr -@@ -449,6 +452,7 @@ - "%s is not an RFC 4122 node ID" % hex) + last_node = None + source2node = {} +@@ -314,6 +317,7 @@ + TestUUID.last_node = node @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_ifconfig_getnode(self): node = uuid._ifconfig_getnode() - self.check_node(node, 'ifconfig', True) -@@ -459,6 +463,7 @@ - self.check_node(node, 'ip', True) - - @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def test_arp_getnode(self): - node = uuid._arp_getnode() - self.check_node(node, 'arp', True) -@@ -469,6 +474,7 @@ - self.check_node(node, 'lanscan', True) + if node is not None: +@@ -472,6 +476,7 @@ + equal(str(u), v) @unittest.skipUnless(os.name == 'posix', 'requires Posix') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') - def test_netstat_getnode(self): - node = uuid._netstat_getnode() - self.check_node(node, 'netstat', True) ++ @unittest.skipUnless(hasattr(os, 'fork'), "test requires os.fork()") + def testIssue8621(self): + # On at least some versions of OSX uuid.uuid4 generates + # the same sequence of UUIDs in the parent and any diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py ---- orig/Lib/test/test_venv.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_venv.py 2016-02-17 09:41:45.000000000 +0800 -@@ -35,6 +35,7 @@ +--- orig/Lib/test/test_venv.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_venv.py 2015-05-04 14:44:42.000000000 +0800 +@@ -15,7 +15,6 @@ + import tempfile + from test.support import (captured_stdout, captured_stderr, run_unittest, + can_symlink, EnvironmentVarGuard) +-import textwrap + import unittest + import venv + +@@ -36,6 +35,7 @@ def failsOnWindows(f): return f @@ -11200,49 +13215,49 @@ diff -Nru orig/Lib/test/test_venv.py modified/Lib/test/test_venv.py class BaseTest(unittest.TestCase): """Base class for venv tests.""" -@@ -111,6 +112,7 @@ +@@ -112,6 +112,7 @@ self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn) @skipInVenv -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_prefixes(self): """ Test that the prefix values are as expected. -@@ -249,6 +251,7 @@ +@@ -250,6 +251,7 @@ # point to the venv being used to run the test, and we lose the link # to the source build - so Python can't initialise properly. @skipInVenv -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_executable(self): """ Test that the sys.executable value is as expected. -@@ -263,6 +266,7 @@ +@@ -264,6 +266,7 @@ self.assertEqual(out.strip(), envpy.encode()) @unittest.skipUnless(can_symlink(), 'Needs symlinks') -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_executable_symlinks(self): """ Test that the sys.executable value is as expected. -@@ -281,6 +285,7 @@ +@@ -282,6 +285,7 @@ @skipInVenv class EnsurePipTest(BaseTest): """Test venv module installation of pip.""" -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def assert_pip_not_installed(self): envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe) -@@ -319,6 +324,7 @@ +@@ -320,6 +324,7 @@ # Requesting pip fails without SSL (http://bugs.python.org/issue19744) @unittest.skipIf(ssl is None, ensurepip._MISSING_SSL_MESSAGE) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_with_pip(self): - rmtree(self.env_dir) + shutil.rmtree(self.env_dir) with EnvironmentVarGuard() as envvars: diff -Nru orig/Lib/test/test_webbrowser.py modified/Lib/test/test_webbrowser.py ---- orig/Lib/test/test_webbrowser.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_webbrowser.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/test/test_webbrowser.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_webbrowser.py 2015-04-30 10:04:24.000000000 +0800 @@ -2,8 +2,11 @@ import unittest import subprocess @@ -11256,17 +13271,17 @@ diff -Nru orig/Lib/test/test_webbrowser.py modified/Lib/test/test_webbrowser.py URL = 'http://www.example.com' CMD_NAME = 'test' diff -Nru orig/Lib/test/test_zipfile.py modified/Lib/test/test_zipfile.py ---- orig/Lib/test/test_zipfile.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/test/test_zipfile.py 2016-02-14 10:29:41.000000000 +0800 -@@ -692,6 +692,7 @@ - self.skipTest('requires write access to the installed location') - unlink(filename) +--- orig/Lib/test/test_zipfile.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/test/test_zipfile.py 2015-07-04 22:53:46.000000000 +0800 +@@ -583,6 +583,7 @@ + if name + 'o' not in namelist: + self.assertIn(name + 'c', namelist) + @unittest.skipIf(sys.dont_write_bytecode, "Test requires ability to write bytecode") def test_write_pyfile(self): - self.requiresWriteAccess(os.path.dirname(__file__)) with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: -@@ -736,6 +737,7 @@ + fn = __file__ +@@ -625,6 +626,7 @@ self.assertCompiledIn('email/__init__.py', names) self.assertCompiledIn('email/mime/text.py', names) @@ -11275,8 +13290,8 @@ diff -Nru orig/Lib/test/test_zipfile.py modified/Lib/test/test_zipfile.py import test packagedir = os.path.dirname(test.__file__) diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_break.py ---- orig/Lib/unittest/test/test_break.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/unittest/test/test_break.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/unittest/test/test_break.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/unittest/test/test_break.py 2015-04-27 09:20:54.000000000 +0800 @@ -9,7 +9,7 @@ @@ -11287,19 +13302,19 @@ diff -Nru orig/Lib/unittest/test/test_break.py modified/Lib/unittest/test/test_b "if threads have been used") class TestBreak(unittest.TestCase): diff -Nru orig/Lib/unittest/test/test_runner.py modified/Lib/unittest/test/test_runner.py ---- orig/Lib/unittest/test/test_runner.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/unittest/test/test_runner.py 2016-02-17 09:41:43.000000000 +0800 -@@ -274,6 +274,7 @@ +--- orig/Lib/unittest/test/test_runner.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/unittest/test/test_runner.py 2015-05-04 14:42:27.000000000 +0800 +@@ -270,6 +270,7 @@ expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY) self.assertEqual(runner._makeResult(), expectedresult) -+ @unittest.skipUnless(os.allows_subprocesses, 'Test requires support for subprocesses.') ++ @unittest.skipUnless(hasattr(subprocess, 'Popen'), "test requires subprocess.Popen()") def test_warnings(self): """ Check that warnings argument of TextTestRunner correctly affects the diff -Nru orig/Lib/webbrowser.py modified/Lib/webbrowser.py ---- orig/Lib/webbrowser.py 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Lib/webbrowser.py 2016-02-14 10:29:41.000000000 +0800 +--- orig/Lib/webbrowser.py 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Lib/webbrowser.py 2015-03-15 00:57:57.000000000 +0800 @@ -602,6 +602,57 @@ register("firefox", None, MacOSXOSAScript('firefox'), -1) register("MacOSX", None, MacOSXOSAScript('default'), -1) @@ -11358,51 +13373,10 @@ diff -Nru orig/Lib/webbrowser.py modified/Lib/webbrowser.py # OK, now that we know what the default preference orders for each # platform are, allow user to override them with the BROWSER variable. -diff -Nru orig/Makefile.pre.in modified/Makefile.pre.in ---- orig/Makefile.pre.in 2015-12-07 09:39:09.000000000 +0800 -+++ modified/Makefile.pre.in 2016-02-15 15:50:35.000000000 +0800 -@@ -712,11 +712,11 @@ - $(LINKCC) $(PY_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) - - Python/importlib_external.h: $(srcdir)/Lib/importlib/_bootstrap_external.py Programs/_freeze_importlib -- ./Programs/_freeze_importlib \ -+ ./iOS/_freeze_importlib \ - $(srcdir)/Lib/importlib/_bootstrap_external.py Python/importlib_external.h - - Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Programs/_freeze_importlib -- ./Programs/_freeze_importlib \ -+ ./iOS/_freeze_importlib \ - $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h - - -@@ -777,10 +777,12 @@ - - $(IO_OBJS): $(IO_H) - --$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGEN) -+$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS) - @$(MKDIR_P) Include -+ $(MAKE) $(PGEN) - $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C) --$(GRAMMAR_C): $(GRAMMAR_H) -+$(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS) -+ $(MAKE) $(GRAMMAR_H) - touch $(GRAMMAR_C) - - $(PGEN): $(PGENOBJS) -@@ -862,7 +864,7 @@ - - Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h - --Python/frozen.o: Python/importlib.h Python/importlib_external.h -+Python/frozen.o: Python/importlib.h Python/importlib_external.h - - Objects/typeobject.o: Objects/typeslots.inc - Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded --- orig/Modules/Setup.embedded 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.embedded 2016-02-14 12:15:08.000000000 +0800 -@@ -0,0 +1,90 @@ ++++ modified/Modules/Setup.embedded 2015-07-04 23:36:43.000000000 +0800 +@@ -0,0 +1,91 @@ +##################################################################### +# Static compilation instructions for all binary modules. +##################################################################### @@ -11464,6 +13438,7 @@ diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded +select selectmodule.c +syslog syslogmodule.c +termios termios.c ++time timemodule.c +unicodedata unicodedata.c +zlib zlibmodule.c -I$(prefix)/include -lz + @@ -11495,7 +13470,7 @@ diff -Nru orig/Modules/Setup.embedded modified/Modules/Setup.embedded +#spwd spwdmodule.c diff -Nru orig/Modules/Setup.ios-aarch64 modified/Modules/Setup.ios-aarch64 --- orig/Modules/Setup.ios-aarch64 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-aarch64 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/Setup.ios-aarch64 2015-12-20 23:03:15.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -11534,7 +13509,7 @@ diff -Nru orig/Modules/Setup.ios-aarch64 modified/Modules/Setup.ios-aarch64 + -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 diff -Nru orig/Modules/Setup.ios-arm modified/Modules/Setup.ios-arm --- orig/Modules/Setup.ios-arm 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-arm 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/Setup.ios-arm 2015-12-20 23:02:39.000000000 +0800 @@ -0,0 +1,36 @@ + +##################################################################### @@ -11574,7 +13549,7 @@ diff -Nru orig/Modules/Setup.ios-arm modified/Modules/Setup.ios-arm + -DCONFIG_32=1 -DANSI=1 diff -Nru orig/Modules/Setup.ios-i386 modified/Modules/Setup.ios-i386 --- orig/Modules/Setup.ios-i386 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-i386 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/Setup.ios-i386 2015-12-20 23:01:44.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -11613,7 +13588,7 @@ diff -Nru orig/Modules/Setup.ios-i386 modified/Modules/Setup.ios-i386 + -DCONFIG_32=1 -DANSI=1 diff -Nru orig/Modules/Setup.ios-x86_64 modified/Modules/Setup.ios-x86_64 --- orig/Modules/Setup.ios-x86_64 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/Setup.ios-x86_64 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/Setup.ios-x86_64 2015-12-20 23:01:43.000000000 +0800 @@ -0,0 +1,35 @@ + +##################################################################### @@ -11652,7 +13627,7 @@ diff -Nru orig/Modules/Setup.ios-x86_64 modified/Modules/Setup.ios-x86_64 + -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 diff -Nru orig/Modules/_ctypes/libffi_ios/LICENSE modified/Modules/_ctypes/libffi_ios/LICENSE --- orig/Modules/_ctypes/libffi_ios/LICENSE 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/LICENSE 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/LICENSE 2015-04-26 07:29:16.000000000 +0800 @@ -0,0 +1,21 @@ +libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others. +See source files for details. @@ -11677,7 +13652,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/LICENSE modified/Modules/_ctypes/libff +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff -Nru orig/Modules/_ctypes/libffi_ios/README modified/Modules/_ctypes/libffi_ios/README --- orig/Modules/_ctypes/libffi_ios/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/README 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/README 2015-12-21 09:55:54.000000000 +0800 @@ -0,0 +1,450 @@ +Status +====== @@ -12131,7 +14106,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/README modified/Modules/_ctypes/libffi +libffi-discuss@sourceware.org. diff -Nru orig/Modules/_ctypes/libffi_ios/README.python modified/Modules/_ctypes/libffi_ios/README.python --- orig/Modules/_ctypes/libffi_ios/README.python 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/README.python 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/README.python 2015-12-20 18:48:11.000000000 +0800 @@ -0,0 +1,14 @@ +This directory contains the generated source code for running libffi +on iOS platforms (physical and simulator). It contains support for @@ -12149,7 +14124,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/README.python modified/Modules/_ctypes +and patched verion of libffi 4. diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c --- orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c 2015-12-20 22:04:51.000000000 +0800 @@ -0,0 +1,934 @@ +#ifdef __arm64__ + @@ -13088,7 +15063,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/ffi_arm64.c modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/internal.h modified/Modules/_ctypes/libffi_ios/aarch64/internal.h --- orig/Modules/_ctypes/libffi_ios/aarch64/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/internal.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/internal.h 2015-12-20 19:03:29.000000000 +0800 @@ -0,0 +1,67 @@ +/* +Permission is hereby granted, free of charge, to any person obtaining @@ -13159,7 +15134,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/internal.h modified/Modules/_c +#define CALL_CONTEXT_SIZE (N_V_ARG_REG * 16 + N_X_ARG_REG * 8) diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S --- orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S 2015-12-20 22:31:37.000000000 +0800 @@ -0,0 +1,443 @@ +#ifdef __arm64__ + @@ -13607,7 +15582,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/aarch64/sysv_arm64.S modified/Modules/ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c --- orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c 2015-12-20 22:05:17.000000000 +0800 @@ -0,0 +1,813 @@ +#ifdef __arm__ + @@ -14425,7 +16400,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/ffi_armv7.c modified/Modules/_ctyp \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/internal.h modified/Modules/_ctypes/libffi_ios/arm/internal.h --- orig/Modules/_ctypes/libffi_ios/arm/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/internal.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/internal.h 2015-12-20 19:03:21.000000000 +0800 @@ -0,0 +1,7 @@ +#define ARM_TYPE_VFP_S 0 +#define ARM_TYPE_VFP_D 1 @@ -14436,7 +16411,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/internal.h modified/Modules/_ctype +#define ARM_TYPE_STRUCT 6 diff -Nru orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S --- orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S 2015-12-20 22:31:41.000000000 +0800 @@ -0,0 +1,388 @@ +#ifdef __arm__ + @@ -14829,7 +16804,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/sysv_armv7.S modified/Modules/_cty \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S --- orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S 2015-12-20 18:50:24.000000000 +0800 @@ -0,0 +1,5 @@ +#ifdef __arm__ + @@ -14839,7 +16814,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/arm/trampoline_armv7.S modified/Module \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/closures.c modified/Modules/_ctypes/libffi_ios/closures.c --- orig/Modules/_ctypes/libffi_ios/closures.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/closures.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/closures.c 2015-12-20 22:04:37.000000000 +0800 @@ -0,0 +1,925 @@ +/* ----------------------------------------------------------------------- + closures.c - Copyright (c) 2007, 2009, 2010 Red Hat, Inc. @@ -15768,7 +17743,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/closures.c modified/Modules/_ctypes/li +#endif /* FFI_CLOSURES */ diff -Nru orig/Modules/_ctypes/libffi_ios/debug.c modified/Modules/_ctypes/libffi_ios/debug.c --- orig/Modules/_ctypes/libffi_ios/debug.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/debug.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/debug.c 2015-12-20 22:33:34.000000000 +0800 @@ -0,0 +1,64 @@ +/* ----------------------------------------------------------------------- + debug.c - Copyright (c) 1996 Red Hat, Inc. @@ -15836,7 +17811,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/debug.c modified/Modules/_ctypes/libff +} diff -Nru orig/Modules/_ctypes/libffi_ios/dlmalloc.c modified/Modules/_ctypes/libffi_ios/dlmalloc.c --- orig/Modules/_ctypes/libffi_ios/dlmalloc.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/dlmalloc.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/dlmalloc.c 2015-12-20 18:49:03.000000000 +0800 @@ -0,0 +1,5161 @@ +/* + This is a version (aka dlmalloc) of malloc/free/realloc written by @@ -21001,7 +22976,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/dlmalloc.c modified/Modules/_ctypes/li +*/ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi.h modified/Modules/_ctypes/libffi_ios/include/ffi.h --- orig/Modules/_ctypes/libffi_ios/include/ffi.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi.h 2015-12-20 18:55:19.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -21029,7 +23004,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi.h modified/Modules/_ctypes +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_arm64.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __arm64__ + @@ -21542,7 +23517,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_arm64.h modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_armv7.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __arm__ + @@ -22055,7 +24030,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_armv7.h modified/Modules/_ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_cfi.h 2015-12-20 18:55:19.000000000 +0800 @@ -0,0 +1,55 @@ +/* ----------------------------------------------------------------------- + ffi_cfi.h - Copyright (c) 2014 Red Hat, Inc. @@ -22114,7 +24089,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_cfi.h modified/Modules/_ct +#endif /* FFI_CFI_H */ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_common.h modified/Modules/_ctypes/libffi_ios/include/ffi_common.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_common.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_common.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_common.h 2015-12-20 18:55:19.000000000 +0800 @@ -0,0 +1,132 @@ +/* ----------------------------------------------------------------------- + ffi_common.h - Copyright (C) 2011, 2012, 2013 Anthony Green @@ -22250,7 +24225,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_common.h modified/Modules/ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_i386.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __i386__ + @@ -22763,7 +24738,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_i386.h modified/Modules/_c \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,508 @@ +#ifdef __x86_64__ + @@ -23276,7 +25251,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffi_x86_64.h modified/Modules/ \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig.h modified/Modules/_ctypes/libffi_ios/include/fficonfig.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig.h 2015-12-20 18:55:19.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -23304,7 +25279,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig.h modified/Modules/_ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __arm64__ + @@ -23523,7 +25498,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_arm64.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __arm__ + @@ -23742,7 +25717,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_armv7.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __i386__ + @@ -23961,7 +25936,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_i386.h modified/Modu \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,214 @@ +#ifdef __x86_64__ + @@ -24180,7 +26155,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/fficonfig_x86_64.h modified/Mo \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget.h modified/Modules/_ctypes/libffi_ios/include/ffitarget.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget.h 2015-12-20 18:55:19.000000000 +0800 @@ -0,0 +1,24 @@ +#ifdef __arm64__ + @@ -24208,7 +26183,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget.h modified/Modules/_ +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h 2015-12-20 22:05:32.000000000 +0800 @@ -0,0 +1,85 @@ +#ifdef __arm64__ + @@ -24298,7 +26273,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_arm64.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h 2015-12-20 22:05:39.000000000 +0800 @@ -0,0 +1,87 @@ +#ifdef __arm__ + @@ -24390,7 +26365,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_armv7.h modified/Mod \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,144 @@ +#ifdef __i386__ + @@ -24539,7 +26514,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_i386.h modified/Modu \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h --- orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h 2015-12-20 18:55:29.000000000 +0800 @@ -0,0 +1,144 @@ +#ifdef __x86_64__ + @@ -24688,7 +26663,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/include/ffitarget_x86_64.h modified/Mo \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/java_raw_api.c modified/Modules/_ctypes/libffi_ios/java_raw_api.c --- orig/Modules/_ctypes/libffi_ios/java_raw_api.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/java_raw_api.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/java_raw_api.c 2015-12-20 18:49:11.000000000 +0800 @@ -0,0 +1,374 @@ +/* ----------------------------------------------------------------------- + java_raw_api.c - Copyright (c) 1999, 2007, 2008 Red Hat, Inc. @@ -25066,7 +27041,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/java_raw_api.c modified/Modules/_ctype +#endif /* !NO_JAVA_RAW_API */ diff -Nru orig/Modules/_ctypes/libffi_ios/prep_cif.c modified/Modules/_ctypes/libffi_ios/prep_cif.c --- orig/Modules/_ctypes/libffi_ios/prep_cif.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/prep_cif.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/prep_cif.c 2015-12-20 18:49:22.000000000 +0800 @@ -0,0 +1,242 @@ +/* ----------------------------------------------------------------------- + prep_cif.c - Copyright (c) 2011, 2012 Anthony Green @@ -25312,7 +27287,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/prep_cif.c modified/Modules/_ctypes/li +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/raw_api.c modified/Modules/_ctypes/libffi_ios/raw_api.c --- orig/Modules/_ctypes/libffi_ios/raw_api.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/raw_api.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/raw_api.c 2015-12-20 18:49:26.000000000 +0800 @@ -0,0 +1,267 @@ +/* ----------------------------------------------------------------------- + raw_api.c - Copyright (c) 1999, 2008 Red Hat, Inc. @@ -25583,11 +27558,11 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/raw_api.c modified/Modules/_ctypes/lib +#endif /* !FFI_NO_RAW_API */ diff -Nru orig/Modules/_ctypes/libffi_ios/types.c modified/Modules/_ctypes/libffi_ios/types.c --- orig/Modules/_ctypes/libffi_ios/types.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/types.c 2016-02-14 12:09:55.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/types.c 2015-12-20 18:49:29.000000000 +0800 @@ -0,0 +1,106 @@ +/* ----------------------------------------------------------------------- + types.c - Copyright (c) 1996, 1998 Red Hat, Inc. -+ ++ + Predefined ffi_types needed by libffi. + + Permission is hereby granted, free of charge, to any person obtaining @@ -25646,54 +27621,54 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/types.c modified/Modules/_ctypes/libff + (ffi_type **)ffi_elements_complex_##name \ +} + -+// /* Size and alignment are fake here. They must not be 0. */ -+// const ffi_type ffi_type_void = { -+// 1, 1, FFI_TYPE_VOID, NULL -+// }; -+ -+// FFI_TYPEDEF(uint8, UINT8, FFI_TYPE_UINT8, const); -+// FFI_TYPEDEF(sint8, SINT8, FFI_TYPE_SINT8, const); -+// FFI_TYPEDEF(uint16, UINT16, FFI_TYPE_UINT16, const); -+// FFI_TYPEDEF(sint16, SINT16, FFI_TYPE_SINT16, const); -+// FFI_TYPEDEF(uint32, UINT32, FFI_TYPE_UINT32, const); -+// FFI_TYPEDEF(sint32, SINT32, FFI_TYPE_SINT32, const); -+// FFI_TYPEDEF(uint64, UINT64, FFI_TYPE_UINT64, const); -+// FFI_TYPEDEF(sint64, SINT64, FFI_TYPE_SINT64, const); -+ -+// FFI_TYPEDEF(pointer, void*, FFI_TYPE_POINTER, const); -+ -+// FFI_TYPEDEF(float, float, FFI_TYPE_FLOAT, const); -+// FFI_TYPEDEF(double, double, FFI_TYPE_DOUBLE, const); -+ -+// #if !defined HAVE_LONG_DOUBLE_VARIANT || defined __alpha__ -+// #define FFI_LDBL_CONST const -+// #else -+// #define FFI_LDBL_CONST -+// #endif -+ -+// #ifdef __alpha__ -+// /* Even if we're not configured to default to 128-bit long double, -+// maintain binary compatibility, as -mlong-double-128 can be used -+// at any time. */ -+// /* Validate the hard-coded number below. */ -+// # if defined(__LONG_DOUBLE_128__) && FFI_TYPE_LONGDOUBLE != 4 -+// # error FFI_TYPE_LONGDOUBLE out of date -+// # endif -+// const ffi_type ffi_type_longdouble = { 16, 16, 4, NULL }; -+// #elif FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE -+// FFI_TYPEDEF(longdouble, long double, FFI_TYPE_LONGDOUBLE, FFI_LDBL_CONST); -+// #endif -+ -+// #ifdef FFI_TARGET_HAS_COMPLEX_TYPE -+// FFI_COMPLEX_TYPEDEF(float, float, const); -+// FFI_COMPLEX_TYPEDEF(double, double, const); -+// #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE -+// FFI_COMPLEX_TYPEDEF(longdouble, long double, FFI_LDBL_CONST); -+// #endif -+// #endif ++/* Size and alignment are fake here. They must not be 0. */ ++const ffi_type ffi_type_void = { ++ 1, 1, FFI_TYPE_VOID, NULL ++}; ++ ++FFI_TYPEDEF(uint8, UINT8, FFI_TYPE_UINT8, const); ++FFI_TYPEDEF(sint8, SINT8, FFI_TYPE_SINT8, const); ++FFI_TYPEDEF(uint16, UINT16, FFI_TYPE_UINT16, const); ++FFI_TYPEDEF(sint16, SINT16, FFI_TYPE_SINT16, const); ++FFI_TYPEDEF(uint32, UINT32, FFI_TYPE_UINT32, const); ++FFI_TYPEDEF(sint32, SINT32, FFI_TYPE_SINT32, const); ++FFI_TYPEDEF(uint64, UINT64, FFI_TYPE_UINT64, const); ++FFI_TYPEDEF(sint64, SINT64, FFI_TYPE_SINT64, const); ++ ++FFI_TYPEDEF(pointer, void*, FFI_TYPE_POINTER, const); ++ ++FFI_TYPEDEF(float, float, FFI_TYPE_FLOAT, const); ++FFI_TYPEDEF(double, double, FFI_TYPE_DOUBLE, const); ++ ++#if !defined HAVE_LONG_DOUBLE_VARIANT || defined __alpha__ ++#define FFI_LDBL_CONST const ++#else ++#define FFI_LDBL_CONST ++#endif ++ ++#ifdef __alpha__ ++/* Even if we're not configured to default to 128-bit long double, ++ maintain binary compatibility, as -mlong-double-128 can be used ++ at any time. */ ++/* Validate the hard-coded number below. */ ++# if defined(__LONG_DOUBLE_128__) && FFI_TYPE_LONGDOUBLE != 4 ++# error FFI_TYPE_LONGDOUBLE out of date ++# endif ++const ffi_type ffi_type_longdouble = { 16, 16, 4, NULL }; ++#elif FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE ++FFI_TYPEDEF(longdouble, long double, FFI_TYPE_LONGDOUBLE, FFI_LDBL_CONST); ++#endif ++ ++#ifdef FFI_TARGET_HAS_COMPLEX_TYPE ++FFI_COMPLEX_TYPEDEF(float, float, const); ++FFI_COMPLEX_TYPEDEF(double, double, const); ++#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE ++FFI_COMPLEX_TYPEDEF(longdouble, long double, FFI_LDBL_CONST); ++#endif ++#endif diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c --- orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c 2015-12-20 18:53:04.000000000 +0800 @@ -0,0 +1,829 @@ +#ifdef __x86_64__ + @@ -26527,7 +28502,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi64_x86_64.c modified/Modules/_c \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c --- orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/ffi_i386.c 2015-12-20 18:53:04.000000000 +0800 @@ -0,0 +1,734 @@ +#ifdef __i386__ + @@ -27266,7 +29241,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/ffi_i386.c modified/Modules/_ctype \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal.h modified/Modules/_ctypes/libffi_ios/x86/internal.h --- orig/Modules/_ctypes/libffi_ios/x86/internal.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/internal.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/internal.h 2015-12-20 19:03:47.000000000 +0800 @@ -0,0 +1,29 @@ +#define X86_RET_FLOAT 0 +#define X86_RET_DOUBLE 1 @@ -27299,7 +29274,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal.h modified/Modules/_ctype +#endif diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal64.h modified/Modules/_ctypes/libffi_ios/x86/internal64.h --- orig/Modules/_ctypes/libffi_ios/x86/internal64.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/internal64.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/internal64.h 2015-12-20 19:03:50.000000000 +0800 @@ -0,0 +1,22 @@ +#define UNIX64_RET_VOID 0 +#define UNIX64_RET_UINT8 1 @@ -27325,7 +29300,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/internal64.h modified/Modules/_cty +#define UNIX64_SIZE_SHIFT 12 diff -Nru orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S --- orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/sysv_i386.S 2015-12-20 18:53:04.000000000 +0800 @@ -0,0 +1,1045 @@ +#ifdef __i386__ + @@ -28375,7 +30350,7 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/sysv_i386.S modified/Modules/_ctyp \ No newline at end of file diff -Nru orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S --- orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S 2015-12-20 18:53:04.000000000 +0800 @@ -0,0 +1,551 @@ +#ifdef __x86_64__ + @@ -28930,9 +30905,9 @@ diff -Nru orig/Modules/_ctypes/libffi_ios/x86/unix64_x86_64.S modified/Modules/_ +#endif \ No newline at end of file diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c ---- orig/Modules/_posixsubprocess.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/_posixsubprocess.c 2016-02-14 10:29:41.000000000 +0800 -@@ -490,11 +490,15 @@ +--- orig/Modules/_posixsubprocess.c 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Modules/_posixsubprocess.c 2015-12-21 13:03:32.000000000 +0800 +@@ -479,11 +479,15 @@ saved_errno = 0; for (i = 0; exec_array[i] != NULL; ++i) { const char *executable = exec_array[i]; @@ -28948,7 +30923,7 @@ diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c if (errno != ENOENT && errno != ENOTDIR && saved_errno == 0) { saved_errno = errno; } -@@ -662,7 +666,12 @@ +@@ -646,7 +650,12 @@ cwd_obj2 = NULL; } @@ -28962,8 +30937,8 @@ diff -Nru orig/Modules/_posixsubprocess.c modified/Modules/_posixsubprocess.c /* Child process */ /* diff -Nru orig/Modules/makesetup modified/Modules/makesetup ---- orig/Modules/makesetup 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/makesetup 2016-02-14 10:29:41.000000000 +0800 +--- orig/Modules/makesetup 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Modules/makesetup 2015-06-28 14:39:04.000000000 +0800 @@ -128,7 +128,7 @@ # Output DEFS in reverse order so first definition overrides @@ -29004,9 +30979,18 @@ diff -Nru orig/Modules/makesetup modified/Modules/makesetup *.m) obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C *) continue;; esac +@@ -266,7 +271,7 @@ + *) sed -e " + 1i$NL/* Generated automatically from $config by makesetup. */ + /MARKER 1/i$NL$EXTDECLS +- ++ + /MARKER 2/i$NL$INITBITS + + " $config >config.c diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c ---- orig/Modules/mathmodule.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/mathmodule.c 2016-02-14 10:29:41.000000000 +0800 +--- orig/Modules/mathmodule.c 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Modules/mathmodule.c 2015-05-04 13:53:01.000000000 +0800 @@ -55,6 +55,10 @@ #include "Python.h" #include "_math.h" @@ -29018,7 +31002,7 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c /* sin(pi*x), giving accurate results for all finite x (especially x integral or close to an integer). This is here for use in the -@@ -1810,6 +1814,16 @@ +@@ -1746,6 +1750,16 @@ return PyFloat_FromDouble(fabs(x)); if (Py_IS_INFINITY(y)) return PyFloat_FromDouble(fabs(y)); @@ -29036,8 +31020,8 @@ diff -Nru orig/Modules/mathmodule.c modified/Modules/mathmodule.c PyFPE_START_PROTECT("in math_hypot", return 0); r = hypot(x, y); diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c ---- orig/Modules/posixmodule.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/posixmodule.c 2016-02-17 14:14:22.000000000 +0800 +--- orig/Modules/posixmodule.c 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Modules/posixmodule.c 2015-12-21 13:03:32.000000000 +0800 @@ -20,6 +20,8 @@ # pragma weak statvfs # pragma weak fstatvfs @@ -29047,12 +31031,13 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* __APPLE__ */ #define PY_SSIZE_T_CLEAN -@@ -175,6 +177,22 @@ - #endif /* _MSC_VER */ +@@ -180,6 +182,23 @@ + #endif /* __BORLANDC__ */ #endif /* ! __WATCOMC__ || __QNX__ */ -+// tvOS and watchOS don't provide a number of important POSIX functions. -+#if defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) || defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) ++// iOS *defines* a number of POSIX functions, but you can't use them ++// because iOS isn't a conventional multiprocess environment. ++#if TARGET_OS_IPHONE +# undef HAVE_EXECV +# undef HAVE_FORK +# undef HAVE_FORK1 @@ -29066,11 +31051,11 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c +# undef HAVE_WAIT3 +# undef HAVE_WAIT4 +# undef HAVE_WAITPID -+#endif /* TVOS || WATCHOS */ ++#endif /* TARGET_OS_IPHONE */ /*[clinic input] - # one of the few times we lie about this name! -@@ -1127,7 +1145,9 @@ + module os +@@ -1178,7 +1197,9 @@ #include static char **environ; #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) @@ -29080,7 +31065,7 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c #endif /* !_MSC_VER */ static PyObject * -@@ -1178,7 +1198,7 @@ +@@ -1229,7 +1250,7 @@ Py_DECREF(k); Py_DECREF(v); } @@ -29089,22 +31074,22 @@ diff -Nru orig/Modules/posixmodule.c modified/Modules/posixmodule.c if (environ == NULL) return d; /* This part ignores errors */ -@@ -4285,7 +4305,12 @@ - long result; - char *bytes = PyBytes_AsString(command); +@@ -4444,7 +4465,12 @@ + + command = PyBytes_AsString(command_obj); Py_BEGIN_ALLOW_THREADS +#if defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) || defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) -+ result = -1; ++ sts = -1; + errno = ENOTSUP; +#else - result = system(bytes); + sts = system(command); +#endif Py_END_ALLOW_THREADS - return result; - } + Py_DECREF(command_obj); + #endif diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c ---- orig/Modules/pwdmodule.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Modules/pwdmodule.c 2016-02-14 10:29:41.000000000 +0800 +--- orig/Modules/pwdmodule.c 2015-02-03 19:49:04.000000000 +0800 ++++ modified/Modules/pwdmodule.c 2015-05-02 23:37:06.000000000 +0800 @@ -1,6 +1,10 @@ /* UNIX password file access module */ @@ -29116,7 +31101,7 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c #include "Python.h" #include "posixmodule.h" -@@ -118,6 +122,21 @@ +@@ -105,6 +109,21 @@ return NULL; } if ((p = getpwuid(uid)) == NULL) { @@ -29138,7 +31123,7 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c PyObject *uid_obj = _PyLong_FromUid(uid); if (uid_obj == NULL) return NULL; -@@ -153,6 +172,22 @@ +@@ -136,6 +155,22 @@ if (PyBytes_AsStringAndSize(bytes, &name, NULL) == -1) goto out; if ((p = getpwnam(name)) == NULL) { @@ -29161,18 +31146,18 @@ diff -Nru orig/Modules/pwdmodule.c modified/Modules/pwdmodule.c PyErr_Format(PyExc_KeyError, "getpwnam(): name not found: %s", name); goto out; -@@ -196,6 +231,7 @@ +@@ -176,6 +211,7 @@ } #endif + static PyMethodDef pwd_methods[] = { - PWD_GETPWUID_METHODDEF - PWD_GETPWNAM_METHODDEF + {"getpwuid", pwd_getpwuid, METH_VARARGS, pwd_getpwuid__doc__}, + {"getpwnam", pwd_getpwnam, METH_VARARGS, pwd_getpwnam__doc__}, diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c ---- orig/Objects/bytesobject.c 2015-12-07 09:39:10.000000000 +0800 -+++ modified/Objects/bytesobject.c 2016-02-14 10:29:41.000000000 +0800 -@@ -201,8 +201,8 @@ +--- orig/Objects/bytesobject.c 2015-02-03 19:49:05.000000000 +0800 ++++ modified/Objects/bytesobject.c 2015-08-03 12:54:33.000000000 +0800 +@@ -199,8 +199,8 @@ int c = va_arg(count, int); if (c < 0 || c > 255) { PyErr_SetString(PyExc_OverflowError, @@ -29183,14 +31168,14 @@ diff -Nru orig/Objects/bytesobject.c modified/Objects/bytesobject.c return NULL; } n++; -diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h ---- orig/Python/importlib_external.h 2015-12-07 09:39:11.000000000 +0800 -+++ modified/Python/importlib_external.h 2016-02-17 12:30:41.000000000 +0800 -@@ -2,52 +2,52 @@ - const unsigned char _Py_M__importlib_external[] = { +diff -Nru orig/Python/importlib.h modified/Python/importlib.h +--- orig/Python/importlib.h 2015-02-03 19:49:05.000000000 +0800 ++++ modified/Python/importlib.h 2015-05-02 11:58:42.000000000 +0800 +@@ -2,84 +2,84 @@ + const unsigned char _Py_M__importlib[] = { 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, - 0,64,0,0,0,115,228,2,0,0,100,0,0,90,0,0, -- 100,96,0,90,1,0,100,4,0,100,5,0,132,0,0,90, + 0,64,0,0,0,115,228,4,0,0,100,0,0,90,0,0, +- 100,163,0,90,1,0,100,4,0,100,5,0,132,0,0,90, - 2,0,100,6,0,100,7,0,132,0,0,90,3,0,100,8, - 0,100,9,0,132,0,0,90,4,0,100,10,0,100,11,0, - 132,0,0,90,5,0,100,12,0,100,13,0,132,0,0,90, @@ -29198,7 +31183,40 @@ diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h - 0,100,17,0,132,0,0,90,8,0,100,18,0,100,19,0, - 132,0,0,90,9,0,100,20,0,100,21,0,132,0,0,90, - 10,0,100,22,0,100,23,0,100,24,0,132,1,0,90,11, -+ 100,97,0,90,1,0,100,5,0,100,6,0,132,0,0,90, +- 0,100,25,0,100,26,0,132,0,0,90,12,0,100,27,0, +- 100,28,0,132,0,0,90,13,0,101,14,0,101,12,0,106, +- 15,0,131,1,0,90,16,0,71,100,29,0,100,30,0,132, +- 0,0,100,30,0,131,2,0,90,17,0,105,0,0,90,18, +- 0,105,0,0,90,19,0,71,100,31,0,100,32,0,132,0, +- 0,100,32,0,101,20,0,131,3,0,90,21,0,71,100,33, +- 0,100,34,0,132,0,0,100,34,0,131,2,0,90,22,0, +- 71,100,35,0,100,36,0,132,0,0,100,36,0,131,2,0, +- 90,23,0,71,100,37,0,100,38,0,132,0,0,100,38,0, +- 131,2,0,90,24,0,100,39,0,100,40,0,132,0,0,90, +- 25,0,100,41,0,100,42,0,132,0,0,90,26,0,100,43, +- 0,100,44,0,132,0,0,90,27,0,100,45,0,106,28,0, +- 100,46,0,100,47,0,131,2,0,100,48,0,23,90,29,0, +- 101,30,0,106,31,0,101,29,0,100,47,0,131,2,0,90, +- 32,0,100,49,0,90,33,0,100,50,0,103,1,0,90,34, +- 0,100,51,0,103,1,0,90,35,0,100,52,0,103,1,0, +- 90,36,0,100,53,0,100,54,0,100,55,0,132,1,0,90, +- 37,0,100,56,0,100,57,0,132,0,0,90,38,0,100,58, +- 0,100,59,0,132,0,0,90,39,0,100,60,0,100,61,0, +- 132,0,0,90,40,0,100,62,0,100,63,0,100,64,0,100, +- 65,0,132,0,1,90,41,0,100,66,0,100,67,0,132,0, +- 0,90,42,0,100,68,0,100,69,0,132,0,0,90,43,0, +- 100,70,0,100,71,0,132,0,0,90,44,0,100,72,0,100, +- 73,0,132,0,0,90,45,0,100,74,0,100,75,0,132,0, +- 0,90,46,0,100,53,0,100,53,0,100,53,0,100,76,0, +- 100,77,0,132,3,0,90,47,0,100,53,0,100,53,0,100, +- 53,0,100,78,0,100,79,0,132,3,0,90,48,0,100,80, +- 0,100,80,0,100,81,0,100,82,0,132,2,0,90,49,0, +- 100,83,0,100,84,0,132,0,0,90,50,0,100,85,0,100, +- 86,0,132,0,0,90,51,0,71,100,87,0,100,88,0,132, +- 0,0,100,88,0,131,2,0,90,52,0,71,100,89,0,100, +- 90,0,132,0,0,100,90,0,131,2,0,90,53,0,100,91, +- 0,100,53,0,100,92,0,100,53,0,100,93,0,100,94,0, ++ 100,164,0,90,1,0,100,5,0,100,6,0,132,0,0,90, + 2,0,100,7,0,100,8,0,132,0,0,90,3,0,100,9, + 0,100,10,0,132,0,0,90,4,0,100,11,0,100,12,0, + 132,0,0,90,5,0,100,13,0,100,14,0,132,0,0,90, @@ -29206,2021 +31224,4476 @@ diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h + 0,100,18,0,132,0,0,90,8,0,100,19,0,100,20,0, + 132,0,0,90,9,0,100,21,0,100,22,0,132,0,0,90, + 10,0,100,23,0,100,24,0,100,25,0,132,1,0,90,11, - 0,101,12,0,101,11,0,106,13,0,131,1,0,90,14,0, -- 100,25,0,106,15,0,100,26,0,100,27,0,131,2,0,100, -- 28,0,23,90,16,0,101,17,0,106,18,0,101,16,0,100, -- 27,0,131,2,0,90,19,0,100,29,0,90,20,0,100,30, -- 0,90,21,0,100,31,0,103,1,0,90,22,0,100,32,0, -+ 100,26,0,106,15,0,100,27,0,100,28,0,131,2,0,100, -+ 29,0,23,90,16,0,101,17,0,106,18,0,101,16,0,100, -+ 28,0,131,2,0,90,19,0,100,30,0,90,20,0,100,31, -+ 0,90,21,0,100,32,0,103,1,0,90,22,0,100,33,0, - 103,1,0,90,23,0,101,23,0,4,90,24,0,90,25,0, -- 100,33,0,100,34,0,100,33,0,100,35,0,100,36,0,132, -- 1,1,90,26,0,100,37,0,100,38,0,132,0,0,90,27, -- 0,100,39,0,100,40,0,132,0,0,90,28,0,100,41,0, -- 100,42,0,132,0,0,90,29,0,100,43,0,100,44,0,132, -- 0,0,90,30,0,100,45,0,100,46,0,100,47,0,100,48, -- 0,132,0,1,90,31,0,100,49,0,100,50,0,132,0,0, -- 90,32,0,100,51,0,100,52,0,132,0,0,90,33,0,100, -- 33,0,100,33,0,100,33,0,100,53,0,100,54,0,132,3, -- 0,90,34,0,100,33,0,100,33,0,100,33,0,100,55,0, -- 100,56,0,132,3,0,90,35,0,100,57,0,100,57,0,100, -- 58,0,100,59,0,132,2,0,90,36,0,100,60,0,100,61, -+ 100,34,0,100,35,0,100,34,0,100,36,0,100,37,0,132, -+ 1,1,90,26,0,100,38,0,100,39,0,132,0,0,90,27, -+ 0,100,40,0,100,41,0,132,0,0,90,28,0,100,42,0, -+ 100,43,0,132,0,0,90,29,0,100,44,0,100,45,0,132, -+ 0,0,90,30,0,100,46,0,100,47,0,100,48,0,100,49, -+ 0,132,0,1,90,31,0,100,50,0,100,51,0,132,0,0, -+ 90,32,0,100,52,0,100,53,0,132,0,0,90,33,0,100, -+ 34,0,100,34,0,100,34,0,100,54,0,100,55,0,132,3, -+ 0,90,34,0,100,34,0,100,34,0,100,34,0,100,56,0, -+ 100,57,0,132,3,0,90,35,0,100,58,0,100,58,0,100, -+ 59,0,100,60,0,132,2,0,90,36,0,100,61,0,100,62, - 0,132,0,0,90,37,0,101,38,0,131,0,0,90,39,0, -- 100,33,0,100,62,0,100,33,0,100,63,0,101,39,0,100, -- 64,0,100,65,0,132,1,2,90,40,0,71,100,66,0,100, -- 67,0,132,0,0,100,67,0,131,2,0,90,41,0,71,100, -- 68,0,100,69,0,132,0,0,100,69,0,131,2,0,90,42, -- 0,71,100,70,0,100,71,0,132,0,0,100,71,0,101,42, -- 0,131,3,0,90,43,0,71,100,72,0,100,73,0,132,0, -- 0,100,73,0,131,2,0,90,44,0,71,100,74,0,100,75, -- 0,132,0,0,100,75,0,101,44,0,101,43,0,131,4,0, -- 90,45,0,71,100,76,0,100,77,0,132,0,0,100,77,0, -+ 100,34,0,100,63,0,100,34,0,100,64,0,101,39,0,100, -+ 65,0,100,66,0,132,1,2,90,40,0,71,100,67,0,100, -+ 68,0,132,0,0,100,68,0,131,2,0,90,41,0,71,100, -+ 69,0,100,70,0,132,0,0,100,70,0,131,2,0,90,42, -+ 0,71,100,71,0,100,72,0,132,0,0,100,72,0,101,42, -+ 0,131,3,0,90,43,0,71,100,73,0,100,74,0,132,0, -+ 0,100,74,0,131,2,0,90,44,0,71,100,75,0,100,76, -+ 0,132,0,0,100,76,0,101,44,0,101,43,0,131,4,0, -+ 90,45,0,71,100,77,0,100,78,0,132,0,0,100,78,0, - 101,44,0,101,42,0,131,4,0,90,46,0,103,0,0,90, -- 47,0,71,100,78,0,100,79,0,132,0,0,100,79,0,101, -- 44,0,101,42,0,131,4,0,90,48,0,71,100,80,0,100, -- 81,0,132,0,0,100,81,0,131,2,0,90,49,0,71,100, -- 82,0,100,83,0,132,0,0,100,83,0,131,2,0,90,50, -- 0,71,100,84,0,100,85,0,132,0,0,100,85,0,131,2, -- 0,90,51,0,71,100,86,0,100,87,0,132,0,0,100,87, -- 0,131,2,0,90,52,0,100,33,0,100,88,0,100,89,0, -- 132,1,0,90,53,0,100,90,0,100,91,0,132,0,0,90, -- 54,0,100,92,0,100,93,0,132,0,0,90,55,0,100,94, -- 0,100,95,0,132,0,0,90,56,0,100,33,0,83,41,97, -+ 47,0,71,100,79,0,100,80,0,132,0,0,100,80,0,101, -+ 44,0,101,42,0,131,4,0,90,48,0,71,100,81,0,100, -+ 82,0,132,0,0,100,82,0,131,2,0,90,49,0,71,100, -+ 83,0,100,84,0,132,0,0,100,84,0,131,2,0,90,50, -+ 0,71,100,85,0,100,86,0,132,0,0,100,86,0,131,2, -+ 0,90,51,0,71,100,87,0,100,88,0,132,0,0,100,88, -+ 0,131,2,0,90,52,0,100,34,0,100,89,0,100,90,0, -+ 132,1,0,90,53,0,100,91,0,100,92,0,132,0,0,90, -+ 54,0,100,93,0,100,94,0,132,0,0,90,55,0,100,95, -+ 0,100,96,0,132,0,0,90,56,0,100,34,0,83,41,98, - 97,94,1,0,0,67,111,114,101,32,105,109,112,108,101,109, - 101,110,116,97,116,105,111,110,32,111,102,32,112,97,116,104, - 45,98,97,115,101,100,32,105,109,112,111,114,116,46,10,10, -@@ -71,2527 +71,2528 @@ - 105,99,45,102,97,99,105,110,103,32,118,101,114,115,105,111, - 110,32,111,102,32,116,104,105,115,32,109,111,100,117,108,101, - 46,10,10,218,3,119,105,110,218,6,99,121,103,119,105,110, -- 218,6,100,97,114,119,105,110,99,0,0,0,0,0,0,0, -- 0,1,0,0,0,2,0,0,0,67,0,0,0,115,49,0, -- 0,0,116,0,0,106,1,0,106,2,0,116,3,0,131,1, -- 0,114,33,0,100,1,0,100,2,0,132,0,0,125,0,0, -- 110,12,0,100,3,0,100,2,0,132,0,0,125,0,0,124, -- 0,0,83,41,4,78,99,0,0,0,0,0,0,0,0,0, -- 0,0,0,2,0,0,0,83,0,0,0,115,13,0,0,0, -- 100,1,0,116,0,0,106,1,0,107,6,0,83,41,2,122, -+ 218,6,100,97,114,119,105,110,218,3,105,111,115,99,0,0, -+ 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, -+ 0,0,115,49,0,0,0,116,0,0,106,1,0,106,2,0, -+ 116,3,0,131,1,0,114,33,0,100,1,0,100,2,0,132, -+ 0,0,125,0,0,110,12,0,100,3,0,100,2,0,132,0, -+ 0,125,0,0,124,0,0,83,41,4,78,99,0,0,0,0, -+ 0,0,0,0,0,0,0,0,2,0,0,0,83,0,0,0, -+ 115,13,0,0,0,100,1,0,116,0,0,106,1,0,107,6, -+ 0,83,41,2,122,53,84,114,117,101,32,105,102,32,102,105, -+ 108,101,110,97,109,101,115,32,109,117,115,116,32,98,101,32, -+ 99,104,101,99,107,101,100,32,99,97,115,101,45,105,110,115, -+ 101,110,115,105,116,105,118,101,108,121,46,115,12,0,0,0, -+ 80,89,84,72,79,78,67,65,83,69,79,75,41,2,218,3, -+ 95,111,115,90,7,101,110,118,105,114,111,110,169,0,114,5, -+ 0,0,0,114,5,0,0,0,250,38,60,102,114,111,122,101, -+ 110,32,105,109,112,111,114,116,108,105,98,46,95,98,111,111, -+ 116,115,116,114,97,112,95,101,120,116,101,114,110,97,108,62, -+ 218,11,95,114,101,108,97,120,95,99,97,115,101,30,0,0, -+ 0,115,2,0,0,0,0,2,122,37,95,109,97,107,101,95, -+ 114,101,108,97,120,95,99,97,115,101,46,60,108,111,99,97, -+ 108,115,62,46,95,114,101,108,97,120,95,99,97,115,101,99, -+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, -+ 83,0,0,0,115,4,0,0,0,100,1,0,83,41,2,122, - 53,84,114,117,101,32,105,102,32,102,105,108,101,110,97,109, - 101,115,32,109,117,115,116,32,98,101,32,99,104,101,99,107, - 101,100,32,99,97,115,101,45,105,110,115,101,110,115,105,116, -- 105,118,101,108,121,46,115,12,0,0,0,80,89,84,72,79, -- 78,67,65,83,69,79,75,41,2,218,3,95,111,115,90,7, -- 101,110,118,105,114,111,110,169,0,114,4,0,0,0,114,4, -- 0,0,0,250,38,60,102,114,111,122,101,110,32,105,109,112, -- 111,114,116,108,105,98,46,95,98,111,111,116,115,116,114,97, -- 112,95,101,120,116,101,114,110,97,108,62,218,11,95,114,101, -- 108,97,120,95,99,97,115,101,30,0,0,0,115,2,0,0, -- 0,0,2,122,37,95,109,97,107,101,95,114,101,108,97,120, -- 95,99,97,115,101,46,60,108,111,99,97,108,115,62,46,95, -- 114,101,108,97,120,95,99,97,115,101,99,0,0,0,0,0, -- 0,0,0,0,0,0,0,1,0,0,0,83,0,0,0,115, -- 4,0,0,0,100,1,0,83,41,2,122,53,84,114,117,101, -- 32,105,102,32,102,105,108,101,110,97,109,101,115,32,109,117, -- 115,116,32,98,101,32,99,104,101,99,107,101,100,32,99,97, -- 115,101,45,105,110,115,101,110,115,105,116,105,118,101,108,121, -- 46,70,114,4,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,6,0,0,0, -- 34,0,0,0,115,2,0,0,0,0,2,41,4,218,3,115, -- 121,115,218,8,112,108,97,116,102,111,114,109,218,10,115,116, -- 97,114,116,115,119,105,116,104,218,27,95,67,65,83,69,95, -- 73,78,83,69,78,83,73,84,73,86,69,95,80,76,65,84, -- 70,79,82,77,83,41,1,114,6,0,0,0,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,218,16,95,109,97, -- 107,101,95,114,101,108,97,120,95,99,97,115,101,28,0,0, -- 0,115,8,0,0,0,0,1,18,1,15,4,12,3,114,11, -- 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, -- 3,0,0,0,67,0,0,0,115,26,0,0,0,116,0,0, -- 124,0,0,131,1,0,100,1,0,64,106,1,0,100,2,0, -- 100,3,0,131,2,0,83,41,4,122,42,67,111,110,118,101, -- 114,116,32,97,32,51,50,45,98,105,116,32,105,110,116,101, -- 103,101,114,32,116,111,32,108,105,116,116,108,101,45,101,110, -- 100,105,97,110,46,108,3,0,0,0,255,127,255,127,3,0, -- 233,4,0,0,0,218,6,108,105,116,116,108,101,41,2,218, -- 3,105,110,116,218,8,116,111,95,98,121,116,101,115,41,1, -- 218,1,120,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,218,7,95,119,95,108,111,110,103,40,0,0,0,115, -- 2,0,0,0,0,2,114,17,0,0,0,99,1,0,0,0, -- 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, -- 115,16,0,0,0,116,0,0,106,1,0,124,0,0,100,1, -- 0,131,2,0,83,41,2,122,47,67,111,110,118,101,114,116, -- 32,52,32,98,121,116,101,115,32,105,110,32,108,105,116,116, -- 108,101,45,101,110,100,105,97,110,32,116,111,32,97,110,32, -- 105,110,116,101,103,101,114,46,114,13,0,0,0,41,2,114, -- 14,0,0,0,218,10,102,114,111,109,95,98,121,116,101,115, -- 41,1,90,9,105,110,116,95,98,121,116,101,115,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,7,95,114, -- 95,108,111,110,103,45,0,0,0,115,2,0,0,0,0,2, -- 114,19,0,0,0,99,0,0,0,0,0,0,0,0,1,0, -- 0,0,3,0,0,0,71,0,0,0,115,26,0,0,0,116, -- 0,0,106,1,0,100,1,0,100,2,0,132,0,0,124,0, -- 0,68,131,1,0,131,1,0,83,41,3,122,31,82,101,112, -- 108,97,99,101,109,101,110,116,32,102,111,114,32,111,115,46, -- 112,97,116,104,46,106,111,105,110,40,41,46,99,1,0,0, -- 0,0,0,0,0,2,0,0,0,4,0,0,0,83,0,0, -- 0,115,37,0,0,0,103,0,0,124,0,0,93,27,0,125, -- 1,0,124,1,0,114,6,0,124,1,0,106,0,0,116,1, -- 0,131,1,0,145,2,0,113,6,0,83,114,4,0,0,0, -- 41,2,218,6,114,115,116,114,105,112,218,15,112,97,116,104, -- 95,115,101,112,97,114,97,116,111,114,115,41,2,218,2,46, -- 48,218,4,112,97,114,116,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,250,10,60,108,105,115,116,99,111,109, -- 112,62,52,0,0,0,115,2,0,0,0,9,1,122,30,95, -- 112,97,116,104,95,106,111,105,110,46,60,108,111,99,97,108, -- 115,62,46,60,108,105,115,116,99,111,109,112,62,41,2,218, -- 8,112,97,116,104,95,115,101,112,218,4,106,111,105,110,41, -- 1,218,10,112,97,116,104,95,112,97,114,116,115,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,112, -- 97,116,104,95,106,111,105,110,50,0,0,0,115,4,0,0, -- 0,0,2,15,1,114,28,0,0,0,99,1,0,0,0,0, -- 0,0,0,5,0,0,0,5,0,0,0,67,0,0,0,115, -- 134,0,0,0,116,0,0,116,1,0,131,1,0,100,1,0, -- 107,2,0,114,52,0,124,0,0,106,2,0,116,3,0,131, -+ 105,118,101,108,121,46,70,114,5,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,7,0,0,0,34,0,0,0,115,2,0,0,0,0,2, -+ 41,4,218,3,115,121,115,218,8,112,108,97,116,102,111,114, -+ 109,218,10,115,116,97,114,116,115,119,105,116,104,218,27,95, -+ 67,65,83,69,95,73,78,83,69,78,83,73,84,73,86,69, -+ 95,80,76,65,84,70,79,82,77,83,41,1,114,7,0,0, -+ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 218,16,95,109,97,107,101,95,114,101,108,97,120,95,99,97, -+ 115,101,28,0,0,0,115,8,0,0,0,0,1,18,1,15, -+ 4,12,3,114,12,0,0,0,99,1,0,0,0,0,0,0, -+ 0,1,0,0,0,3,0,0,0,67,0,0,0,115,26,0, -+ 0,0,116,0,0,124,0,0,131,1,0,100,1,0,64,106, -+ 1,0,100,2,0,100,3,0,131,2,0,83,41,4,122,42, -+ 67,111,110,118,101,114,116,32,97,32,51,50,45,98,105,116, -+ 32,105,110,116,101,103,101,114,32,116,111,32,108,105,116,116, -+ 108,101,45,101,110,100,105,97,110,46,108,3,0,0,0,255, -+ 127,255,127,3,0,233,4,0,0,0,218,6,108,105,116,116, -+ 108,101,41,2,218,3,105,110,116,218,8,116,111,95,98,121, -+ 116,101,115,41,1,218,1,120,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,218,7,95,119,95,108,111,110,103, -+ 40,0,0,0,115,2,0,0,0,0,2,114,18,0,0,0, -+ 99,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0, -+ 0,67,0,0,0,115,16,0,0,0,116,0,0,106,1,0, -+ 124,0,0,100,1,0,131,2,0,83,41,2,122,47,67,111, -+ 110,118,101,114,116,32,52,32,98,121,116,101,115,32,105,110, -+ 32,108,105,116,116,108,101,45,101,110,100,105,97,110,32,116, -+ 111,32,97,110,32,105,110,116,101,103,101,114,46,114,14,0, -+ 0,0,41,2,114,15,0,0,0,218,10,102,114,111,109,95, -+ 98,121,116,101,115,41,1,90,9,105,110,116,95,98,121,116, -+ 101,115,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,7,95,114,95,108,111,110,103,45,0,0,0,115,2, -+ 0,0,0,0,2,114,20,0,0,0,99,0,0,0,0,0, -+ 0,0,0,1,0,0,0,3,0,0,0,71,0,0,0,115, -+ 26,0,0,0,116,0,0,106,1,0,100,1,0,100,2,0, -+ 132,0,0,124,0,0,68,131,1,0,131,1,0,83,41,3, -+ 122,31,82,101,112,108,97,99,101,109,101,110,116,32,102,111, -+ 114,32,111,115,46,112,97,116,104,46,106,111,105,110,40,41, -+ 46,99,1,0,0,0,0,0,0,0,2,0,0,0,4,0, -+ 0,0,83,0,0,0,115,37,0,0,0,103,0,0,124,0, -+ 0,93,27,0,125,1,0,124,1,0,114,6,0,124,1,0, -+ 106,0,0,116,1,0,131,1,0,145,2,0,113,6,0,83, -+ 114,5,0,0,0,41,2,218,6,114,115,116,114,105,112,218, -+ 15,112,97,116,104,95,115,101,112,97,114,97,116,111,114,115, -+ 41,2,218,2,46,48,218,4,112,97,114,116,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,250,10,60,108,105, -+ 115,116,99,111,109,112,62,52,0,0,0,115,2,0,0,0, -+ 9,1,122,30,95,112,97,116,104,95,106,111,105,110,46,60, -+ 108,111,99,97,108,115,62,46,60,108,105,115,116,99,111,109, -+ 112,62,41,2,218,8,112,97,116,104,95,115,101,112,218,4, -+ 106,111,105,110,41,1,218,10,112,97,116,104,95,112,97,114, -+ 116,115,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,10,95,112,97,116,104,95,106,111,105,110,50,0,0, -+ 0,115,4,0,0,0,0,2,15,1,114,29,0,0,0,99, -+ 1,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, -+ 67,0,0,0,115,134,0,0,0,116,0,0,116,1,0,131, -+ 1,0,100,1,0,107,2,0,114,52,0,124,0,0,106,2, -+ 0,116,3,0,131,1,0,92,3,0,125,1,0,125,2,0, -+ 125,3,0,124,1,0,124,3,0,102,2,0,83,120,69,0, -+ 116,4,0,124,0,0,131,1,0,68,93,55,0,125,4,0, -+ 124,4,0,116,1,0,107,6,0,114,65,0,124,0,0,106, -+ 5,0,124,4,0,100,2,0,100,1,0,131,1,1,92,2, -+ 0,125,1,0,125,3,0,124,1,0,124,3,0,102,2,0, -+ 83,113,65,0,87,100,3,0,124,0,0,102,2,0,83,41, -+ 4,122,32,82,101,112,108,97,99,101,109,101,110,116,32,102, -+ 111,114,32,111,115,46,112,97,116,104,46,115,112,108,105,116, -+ 40,41,46,233,1,0,0,0,90,8,109,97,120,115,112,108, -+ 105,116,218,0,41,6,218,3,108,101,110,114,22,0,0,0, -+ 218,10,114,112,97,114,116,105,116,105,111,110,114,26,0,0, -+ 0,218,8,114,101,118,101,114,115,101,100,218,6,114,115,112, -+ 108,105,116,41,5,218,4,112,97,116,104,90,5,102,114,111, -+ 110,116,218,1,95,218,4,116,97,105,108,114,17,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 11,95,112,97,116,104,95,115,112,108,105,116,56,0,0,0, -+ 115,16,0,0,0,0,2,18,1,24,1,10,1,19,1,12, -+ 1,27,1,14,1,114,39,0,0,0,99,1,0,0,0,0, -+ 0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,115, -+ 13,0,0,0,116,0,0,106,1,0,124,0,0,131,1,0, -+ 83,41,1,122,126,83,116,97,116,32,116,104,101,32,112,97, -+ 116,104,46,10,10,32,32,32,32,77,97,100,101,32,97,32, -+ 115,101,112,97,114,97,116,101,32,102,117,110,99,116,105,111, -+ 110,32,116,111,32,109,97,107,101,32,105,116,32,101,97,115, -+ 105,101,114,32,116,111,32,111,118,101,114,114,105,100,101,32, -+ 105,110,32,101,120,112,101,114,105,109,101,110,116,115,10,32, -+ 32,32,32,40,101,46,103,46,32,99,97,99,104,101,32,115, -+ 116,97,116,32,114,101,115,117,108,116,115,41,46,10,10,32, -+ 32,32,32,41,2,114,4,0,0,0,90,4,115,116,97,116, -+ 41,1,114,36,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,218,10,95,112,97,116,104,95,115,116, -+ 97,116,68,0,0,0,115,2,0,0,0,0,7,114,40,0, -+ 0,0,99,2,0,0,0,0,0,0,0,3,0,0,0,11, -+ 0,0,0,67,0,0,0,115,58,0,0,0,121,16,0,116, -+ 0,0,124,0,0,131,1,0,125,2,0,87,110,22,0,4, -+ 116,1,0,107,10,0,114,40,0,1,1,1,100,1,0,83, -+ 89,110,1,0,88,124,2,0,106,2,0,100,2,0,64,124, -+ 1,0,107,2,0,83,41,3,122,49,84,101,115,116,32,119, -+ 104,101,116,104,101,114,32,116,104,101,32,112,97,116,104,32, -+ 105,115,32,116,104,101,32,115,112,101,99,105,102,105,101,100, -+ 32,109,111,100,101,32,116,121,112,101,46,70,105,0,240,0, -+ 0,41,3,114,40,0,0,0,218,7,79,83,69,114,114,111, -+ 114,218,7,115,116,95,109,111,100,101,41,3,114,36,0,0, -+ 0,218,4,109,111,100,101,90,9,115,116,97,116,95,105,110, -+ 102,111,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,18,95,112,97,116,104,95,105,115,95,109,111,100,101, -+ 95,116,121,112,101,78,0,0,0,115,10,0,0,0,0,2, -+ 3,1,16,1,13,1,9,1,114,44,0,0,0,99,1,0, -+ 0,0,0,0,0,0,1,0,0,0,3,0,0,0,67,0, -+ 0,0,115,13,0,0,0,116,0,0,124,0,0,100,1,0, -+ 131,2,0,83,41,2,122,31,82,101,112,108,97,99,101,109, -+ 101,110,116,32,102,111,114,32,111,115,46,112,97,116,104,46, -+ 105,115,102,105,108,101,46,105,0,128,0,0,41,1,114,44, -+ 0,0,0,41,1,114,36,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,12,95,112,97,116,104, -+ 95,105,115,102,105,108,101,87,0,0,0,115,2,0,0,0, -+ 0,2,114,45,0,0,0,99,1,0,0,0,0,0,0,0, -+ 1,0,0,0,3,0,0,0,67,0,0,0,115,31,0,0, -+ 0,124,0,0,115,18,0,116,0,0,106,1,0,131,0,0, -+ 125,0,0,116,2,0,124,0,0,100,1,0,131,2,0,83, -+ 41,2,122,30,82,101,112,108,97,99,101,109,101,110,116,32, -+ 102,111,114,32,111,115,46,112,97,116,104,46,105,115,100,105, -+ 114,46,105,0,64,0,0,41,3,114,4,0,0,0,218,6, -+ 103,101,116,99,119,100,114,44,0,0,0,41,1,114,36,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,11,95,112,97,116,104,95,105,115,100,105,114,92,0, -+ 0,0,115,6,0,0,0,0,2,6,1,12,1,114,47,0, -+ 0,0,105,182,1,0,0,99,3,0,0,0,0,0,0,0, -+ 6,0,0,0,17,0,0,0,67,0,0,0,115,193,0,0, -+ 0,100,1,0,106,0,0,124,0,0,116,1,0,124,0,0, -+ 131,1,0,131,2,0,125,3,0,116,2,0,106,3,0,124, -+ 3,0,116,2,0,106,4,0,116,2,0,106,5,0,66,116, -+ 2,0,106,6,0,66,124,2,0,100,2,0,64,131,3,0, -+ 125,4,0,121,61,0,116,7,0,106,8,0,124,4,0,100, -+ 3,0,131,2,0,143,20,0,125,5,0,124,5,0,106,9, -+ 0,124,1,0,131,1,0,1,87,100,4,0,81,82,88,116, -+ 2,0,106,10,0,124,3,0,124,0,0,131,2,0,1,87, -+ 110,59,0,4,116,11,0,107,10,0,114,188,0,1,1,1, -+ 121,17,0,116,2,0,106,12,0,124,3,0,131,1,0,1, -+ 87,110,18,0,4,116,11,0,107,10,0,114,180,0,1,1, -+ 1,89,110,1,0,88,130,0,0,89,110,1,0,88,100,4, -+ 0,83,41,5,122,162,66,101,115,116,45,101,102,102,111,114, -+ 116,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114, -+ 105,116,101,32,100,97,116,97,32,116,111,32,97,32,112,97, -+ 116,104,32,97,116,111,109,105,99,97,108,108,121,46,10,32, -+ 32,32,32,66,101,32,112,114,101,112,97,114,101,100,32,116, -+ 111,32,104,97,110,100,108,101,32,97,32,70,105,108,101,69, -+ 120,105,115,116,115,69,114,114,111,114,32,105,102,32,99,111, -+ 110,99,117,114,114,101,110,116,32,119,114,105,116,105,110,103, -+ 32,111,102,32,116,104,101,10,32,32,32,32,116,101,109,112, -+ 111,114,97,114,121,32,102,105,108,101,32,105,115,32,97,116, -+ 116,101,109,112,116,101,100,46,122,5,123,125,46,123,125,105, -+ 182,1,0,0,90,2,119,98,78,41,13,218,6,102,111,114, -+ 109,97,116,218,2,105,100,114,4,0,0,0,90,4,111,112, -+ 101,110,90,6,79,95,69,88,67,76,90,7,79,95,67,82, -+ 69,65,84,90,8,79,95,87,82,79,78,76,89,218,3,95, -+ 105,111,218,6,70,105,108,101,73,79,218,5,119,114,105,116, -+ 101,218,7,114,101,112,108,97,99,101,114,41,0,0,0,90, -+ 6,117,110,108,105,110,107,41,6,114,36,0,0,0,218,4, -+ 100,97,116,97,114,43,0,0,0,90,8,112,97,116,104,95, -+ 116,109,112,90,2,102,100,218,4,102,105,108,101,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,13,95,119, -+ 114,105,116,101,95,97,116,111,109,105,99,99,0,0,0,115, -+ 26,0,0,0,0,5,24,1,9,1,33,1,3,3,21,1, -+ 20,1,20,1,13,1,3,1,17,1,13,1,5,1,114,56, -+ 0,0,0,105,22,13,0,0,233,2,0,0,0,114,14,0, -+ 0,0,115,2,0,0,0,13,10,90,11,95,95,112,121,99, -+ 97,99,104,101,95,95,122,4,111,112,116,45,122,3,46,112, -+ 121,122,4,46,112,121,99,78,218,12,111,112,116,105,109,105, -+ 122,97,116,105,111,110,99,2,0,0,0,1,0,0,0,11, -+ 0,0,0,6,0,0,0,67,0,0,0,115,87,1,0,0, -+ 124,1,0,100,1,0,107,9,0,114,76,0,116,0,0,106, -+ 1,0,100,2,0,116,2,0,131,2,0,1,124,2,0,100, -+ 1,0,107,9,0,114,58,0,100,3,0,125,3,0,116,3, -+ 0,124,3,0,131,1,0,130,1,0,124,1,0,114,70,0, -+ 100,4,0,110,3,0,100,5,0,125,2,0,116,4,0,124, -+ 0,0,131,1,0,92,2,0,125,4,0,125,5,0,124,5, -+ 0,106,5,0,100,6,0,131,1,0,92,3,0,125,6,0, -+ 125,7,0,125,8,0,116,6,0,106,7,0,106,8,0,125, -+ 9,0,124,9,0,100,1,0,107,8,0,114,154,0,116,9, -+ 0,100,7,0,131,1,0,130,1,0,100,4,0,106,10,0, -+ 124,6,0,114,172,0,124,6,0,110,3,0,124,8,0,124, -+ 7,0,124,9,0,103,3,0,131,1,0,125,10,0,124,2, -+ 0,100,1,0,107,8,0,114,241,0,116,6,0,106,11,0, -+ 106,12,0,100,8,0,107,2,0,114,229,0,100,4,0,125, -+ 2,0,110,12,0,116,6,0,106,11,0,106,12,0,125,2, -+ 0,116,13,0,124,2,0,131,1,0,125,2,0,124,2,0, -+ 100,4,0,107,3,0,114,63,1,124,2,0,106,14,0,131, -+ 0,0,115,42,1,116,15,0,100,9,0,106,16,0,124,2, -+ 0,131,1,0,131,1,0,130,1,0,100,10,0,106,16,0, -+ 124,10,0,116,17,0,124,2,0,131,3,0,125,10,0,116, -+ 18,0,124,4,0,116,19,0,124,10,0,116,20,0,100,8, -+ 0,25,23,131,3,0,83,41,11,97,254,2,0,0,71,105, -+ 118,101,110,32,116,104,101,32,112,97,116,104,32,116,111,32, -+ 97,32,46,112,121,32,102,105,108,101,44,32,114,101,116,117, -+ 114,110,32,116,104,101,32,112,97,116,104,32,116,111,32,105, -+ 116,115,32,46,112,121,99,32,102,105,108,101,46,10,10,32, -+ 32,32,32,84,104,101,32,46,112,121,32,102,105,108,101,32, -+ 100,111,101,115,32,110,111,116,32,110,101,101,100,32,116,111, -+ 32,101,120,105,115,116,59,32,116,104,105,115,32,115,105,109, -+ 112,108,121,32,114,101,116,117,114,110,115,32,116,104,101,32, -+ 112,97,116,104,32,116,111,32,116,104,101,10,32,32,32,32, -+ 46,112,121,99,32,102,105,108,101,32,99,97,108,99,117,108, -+ 97,116,101,100,32,97,115,32,105,102,32,116,104,101,32,46, -+ 112,121,32,102,105,108,101,32,119,101,114,101,32,105,109,112, -+ 111,114,116,101,100,46,10,10,32,32,32,32,84,104,101,32, -+ 39,111,112,116,105,109,105,122,97,116,105,111,110,39,32,112, -+ 97,114,97,109,101,116,101,114,32,99,111,110,116,114,111,108, -+ 115,32,116,104,101,32,112,114,101,115,117,109,101,100,32,111, -+ 112,116,105,109,105,122,97,116,105,111,110,32,108,101,118,101, -+ 108,32,111,102,10,32,32,32,32,116,104,101,32,98,121,116, -+ 101,99,111,100,101,32,102,105,108,101,46,32,73,102,32,39, -+ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,105,115, -+ 32,110,111,116,32,78,111,110,101,44,32,116,104,101,32,115, -+ 116,114,105,110,103,32,114,101,112,114,101,115,101,110,116,97, -+ 116,105,111,110,10,32,32,32,32,111,102,32,116,104,101,32, -+ 97,114,103,117,109,101,110,116,32,105,115,32,116,97,107,101, -+ 110,32,97,110,100,32,118,101,114,105,102,105,101,100,32,116, -+ 111,32,98,101,32,97,108,112,104,97,110,117,109,101,114,105, -+ 99,32,40,101,108,115,101,32,86,97,108,117,101,69,114,114, -+ 111,114,10,32,32,32,32,105,115,32,114,97,105,115,101,100, -+ 41,46,10,10,32,32,32,32,84,104,101,32,100,101,98,117, -+ 103,95,111,118,101,114,114,105,100,101,32,112,97,114,97,109, -+ 101,116,101,114,32,105,115,32,100,101,112,114,101,99,97,116, -+ 101,100,46,32,73,102,32,100,101,98,117,103,95,111,118,101, -+ 114,114,105,100,101,32,105,115,32,110,111,116,32,78,111,110, -+ 101,44,10,32,32,32,32,97,32,84,114,117,101,32,118,97, -+ 108,117,101,32,105,115,32,116,104,101,32,115,97,109,101,32, -+ 97,115,32,115,101,116,116,105,110,103,32,39,111,112,116,105, -+ 109,105,122,97,116,105,111,110,39,32,116,111,32,116,104,101, -+ 32,101,109,112,116,121,32,115,116,114,105,110,103,10,32,32, -+ 32,32,119,104,105,108,101,32,97,32,70,97,108,115,101,32, -+ 118,97,108,117,101,32,105,115,32,101,113,117,105,118,97,108, -+ 101,110,116,32,116,111,32,115,101,116,116,105,110,103,32,39, -+ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,116,111, -+ 32,39,49,39,46,10,10,32,32,32,32,73,102,32,115,121, -+ 115,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110, -+ 46,99,97,99,104,101,95,116,97,103,32,105,115,32,78,111, -+ 110,101,32,116,104,101,110,32,78,111,116,73,109,112,108,101, -+ 109,101,110,116,101,100,69,114,114,111,114,32,105,115,32,114, -+ 97,105,115,101,100,46,10,10,32,32,32,32,78,122,70,116, -+ 104,101,32,100,101,98,117,103,95,111,118,101,114,114,105,100, -+ 101,32,112,97,114,97,109,101,116,101,114,32,105,115,32,100, -+ 101,112,114,101,99,97,116,101,100,59,32,117,115,101,32,39, -+ 111,112,116,105,109,105,122,97,116,105,111,110,39,32,105,110, -+ 115,116,101,97,100,122,50,100,101,98,117,103,95,111,118,101, -+ 114,114,105,100,101,32,111,114,32,111,112,116,105,109,105,122, -+ 97,116,105,111,110,32,109,117,115,116,32,98,101,32,115,101, -+ 116,32,116,111,32,78,111,110,101,114,31,0,0,0,114,30, -+ 0,0,0,218,1,46,122,36,115,121,115,46,105,109,112,108, -+ 101,109,101,110,116,97,116,105,111,110,46,99,97,99,104,101, -+ 95,116,97,103,32,105,115,32,78,111,110,101,233,0,0,0, -+ 0,122,24,123,33,114,125,32,105,115,32,110,111,116,32,97, -+ 108,112,104,97,110,117,109,101,114,105,99,122,7,123,125,46, -+ 123,125,123,125,41,21,218,9,95,119,97,114,110,105,110,103, -+ 115,218,4,119,97,114,110,218,18,68,101,112,114,101,99,97, -+ 116,105,111,110,87,97,114,110,105,110,103,218,9,84,121,112, -+ 101,69,114,114,111,114,114,39,0,0,0,114,33,0,0,0, -+ 114,8,0,0,0,218,14,105,109,112,108,101,109,101,110,116, -+ 97,116,105,111,110,218,9,99,97,99,104,101,95,116,97,103, -+ 218,19,78,111,116,73,109,112,108,101,109,101,110,116,101,100, -+ 69,114,114,111,114,114,27,0,0,0,218,5,102,108,97,103, -+ 115,218,8,111,112,116,105,109,105,122,101,218,3,115,116,114, -+ 218,7,105,115,97,108,110,117,109,218,10,86,97,108,117,101, -+ 69,114,114,111,114,114,48,0,0,0,218,4,95,79,80,84, -+ 114,29,0,0,0,218,8,95,80,89,67,65,67,72,69,218, -+ 17,66,89,84,69,67,79,68,69,95,83,85,70,70,73,88, -+ 69,83,41,11,114,36,0,0,0,90,14,100,101,98,117,103, -+ 95,111,118,101,114,114,105,100,101,114,58,0,0,0,218,7, -+ 109,101,115,115,97,103,101,218,4,104,101,97,100,114,38,0, -+ 0,0,90,4,98,97,115,101,218,3,115,101,112,218,4,114, -+ 101,115,116,90,3,116,97,103,90,15,97,108,109,111,115,116, -+ 95,102,105,108,101,110,97,109,101,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,218,17,99,97,99,104,101,95, -+ 102,114,111,109,95,115,111,117,114,99,101,243,0,0,0,115, -+ 46,0,0,0,0,18,12,1,9,1,7,1,12,1,6,1, -+ 12,1,18,1,18,1,24,1,12,1,12,1,12,1,36,1, -+ 12,1,18,1,9,2,12,1,12,1,12,1,12,1,21,1, -+ 21,1,114,80,0,0,0,99,1,0,0,0,0,0,0,0, -+ 8,0,0,0,5,0,0,0,67,0,0,0,115,62,1,0, -+ 0,116,0,0,106,1,0,106,2,0,100,1,0,107,8,0, -+ 114,30,0,116,3,0,100,2,0,131,1,0,130,1,0,116, -+ 4,0,124,0,0,131,1,0,92,2,0,125,1,0,125,2, -+ 0,116,4,0,124,1,0,131,1,0,92,2,0,125,1,0, -+ 125,3,0,124,3,0,116,5,0,107,3,0,114,102,0,116, -+ 6,0,100,3,0,106,7,0,116,5,0,124,0,0,131,2, -+ 0,131,1,0,130,1,0,124,2,0,106,8,0,100,4,0, -+ 131,1,0,125,4,0,124,4,0,100,11,0,107,7,0,114, -+ 153,0,116,6,0,100,7,0,106,7,0,124,2,0,131,1, -+ 0,131,1,0,130,1,0,110,125,0,124,4,0,100,6,0, -+ 107,2,0,114,22,1,124,2,0,106,9,0,100,4,0,100, -+ 5,0,131,2,0,100,12,0,25,125,5,0,124,5,0,106, -+ 10,0,116,11,0,131,1,0,115,223,0,116,6,0,100,8, -+ 0,106,7,0,116,11,0,131,1,0,131,1,0,130,1,0, -+ 124,5,0,116,12,0,116,11,0,131,1,0,100,1,0,133, -+ 2,0,25,125,6,0,124,6,0,106,13,0,131,0,0,115, -+ 22,1,116,6,0,100,9,0,106,7,0,124,5,0,131,1, -+ 0,131,1,0,130,1,0,124,2,0,106,14,0,100,4,0, -+ 131,1,0,100,10,0,25,125,7,0,116,15,0,124,1,0, -+ 124,7,0,116,16,0,100,10,0,25,23,131,2,0,83,41, -+ 13,97,110,1,0,0,71,105,118,101,110,32,116,104,101,32, -+ 112,97,116,104,32,116,111,32,97,32,46,112,121,99,46,32, -+ 102,105,108,101,44,32,114,101,116,117,114,110,32,116,104,101, -+ 32,112,97,116,104,32,116,111,32,105,116,115,32,46,112,121, -+ 32,102,105,108,101,46,10,10,32,32,32,32,84,104,101,32, -+ 46,112,121,99,32,102,105,108,101,32,100,111,101,115,32,110, -+ 111,116,32,110,101,101,100,32,116,111,32,101,120,105,115,116, -+ 59,32,116,104,105,115,32,115,105,109,112,108,121,32,114,101, -+ 116,117,114,110,115,32,116,104,101,32,112,97,116,104,32,116, -+ 111,10,32,32,32,32,116,104,101,32,46,112,121,32,102,105, -+ 108,101,32,99,97,108,99,117,108,97,116,101,100,32,116,111, -+ 32,99,111,114,114,101,115,112,111,110,100,32,116,111,32,116, -+ 104,101,32,46,112,121,99,32,102,105,108,101,46,32,32,73, -+ 102,32,112,97,116,104,32,100,111,101,115,10,32,32,32,32, -+ 110,111,116,32,99,111,110,102,111,114,109,32,116,111,32,80, -+ 69,80,32,51,49,52,55,47,52,56,56,32,102,111,114,109, -+ 97,116,44,32,86,97,108,117,101,69,114,114,111,114,32,119, -+ 105,108,108,32,98,101,32,114,97,105,115,101,100,46,32,73, -+ 102,10,32,32,32,32,115,121,115,46,105,109,112,108,101,109, -+ 101,110,116,97,116,105,111,110,46,99,97,99,104,101,95,116, -+ 97,103,32,105,115,32,78,111,110,101,32,116,104,101,110,32, -+ 78,111,116,73,109,112,108,101,109,101,110,116,101,100,69,114, -+ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,10, -+ 32,32,32,32,78,122,36,115,121,115,46,105,109,112,108,101, -+ 109,101,110,116,97,116,105,111,110,46,99,97,99,104,101,95, -+ 116,97,103,32,105,115,32,78,111,110,101,122,37,123,125,32, -+ 110,111,116,32,98,111,116,116,111,109,45,108,101,118,101,108, -+ 32,100,105,114,101,99,116,111,114,121,32,105,110,32,123,33, -+ 114,125,114,59,0,0,0,114,57,0,0,0,233,3,0,0, -+ 0,122,33,101,120,112,101,99,116,101,100,32,111,110,108,121, -+ 32,50,32,111,114,32,51,32,100,111,116,115,32,105,110,32, -+ 123,33,114,125,122,57,111,112,116,105,109,105,122,97,116,105, -+ 111,110,32,112,111,114,116,105,111,110,32,111,102,32,102,105, -+ 108,101,110,97,109,101,32,100,111,101,115,32,110,111,116,32, -+ 115,116,97,114,116,32,119,105,116,104,32,123,33,114,125,122, -+ 52,111,112,116,105,109,105,122,97,116,105,111,110,32,108,101, -+ 118,101,108,32,123,33,114,125,32,105,115,32,110,111,116,32, -+ 97,110,32,97,108,112,104,97,110,117,109,101,114,105,99,32, -+ 118,97,108,117,101,114,60,0,0,0,62,2,0,0,0,114, -+ 57,0,0,0,114,81,0,0,0,233,254,255,255,255,41,17, -+ 114,8,0,0,0,114,65,0,0,0,114,66,0,0,0,114, -+ 67,0,0,0,114,39,0,0,0,114,74,0,0,0,114,72, -+ 0,0,0,114,48,0,0,0,218,5,99,111,117,110,116,114, -+ 35,0,0,0,114,10,0,0,0,114,73,0,0,0,114,32, -+ 0,0,0,114,71,0,0,0,218,9,112,97,114,116,105,116, -+ 105,111,110,114,29,0,0,0,218,15,83,79,85,82,67,69, -+ 95,83,85,70,70,73,88,69,83,41,8,114,36,0,0,0, -+ 114,77,0,0,0,90,16,112,121,99,97,99,104,101,95,102, -+ 105,108,101,110,97,109,101,90,7,112,121,99,97,99,104,101, -+ 90,9,100,111,116,95,99,111,117,110,116,114,58,0,0,0, -+ 90,9,111,112,116,95,108,101,118,101,108,90,13,98,97,115, -+ 101,95,102,105,108,101,110,97,109,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,17,115,111,117,114,99, -+ 101,95,102,114,111,109,95,99,97,99,104,101,31,1,0,0, -+ 115,44,0,0,0,0,9,18,1,12,1,18,1,18,1,12, -+ 1,9,1,15,1,15,1,12,1,9,1,15,1,12,1,22, -+ 1,15,1,9,1,12,1,22,1,12,1,9,1,12,1,19, -+ 1,114,86,0,0,0,99,1,0,0,0,0,0,0,0,5, -+ 0,0,0,12,0,0,0,67,0,0,0,115,164,0,0,0, -+ 116,0,0,124,0,0,131,1,0,100,1,0,107,2,0,114, -+ 22,0,100,2,0,83,124,0,0,106,1,0,100,3,0,131, - 1,0,92,3,0,125,1,0,125,2,0,125,3,0,124,1, -- 0,124,3,0,102,2,0,83,120,69,0,116,4,0,124,0, -- 0,131,1,0,68,93,55,0,125,4,0,124,4,0,116,1, -- 0,107,6,0,114,65,0,124,0,0,106,5,0,124,4,0, -- 100,2,0,100,1,0,131,1,1,92,2,0,125,1,0,125, -- 3,0,124,1,0,124,3,0,102,2,0,83,113,65,0,87, -- 100,3,0,124,0,0,102,2,0,83,41,4,122,32,82,101, ++ 0,100,26,0,100,27,0,132,0,0,90,12,0,100,28,0, ++ 100,29,0,132,0,0,90,13,0,101,14,0,101,12,0,106, ++ 15,0,131,1,0,90,16,0,71,100,30,0,100,31,0,132, ++ 0,0,100,31,0,131,2,0,90,17,0,105,0,0,90,18, ++ 0,105,0,0,90,19,0,71,100,32,0,100,33,0,132,0, ++ 0,100,33,0,101,20,0,131,3,0,90,21,0,71,100,34, ++ 0,100,35,0,132,0,0,100,35,0,131,2,0,90,22,0, ++ 71,100,36,0,100,37,0,132,0,0,100,37,0,131,2,0, ++ 90,23,0,71,100,38,0,100,39,0,132,0,0,100,39,0, ++ 131,2,0,90,24,0,100,40,0,100,41,0,132,0,0,90, ++ 25,0,100,42,0,100,43,0,132,0,0,90,26,0,100,44, ++ 0,100,45,0,132,0,0,90,27,0,100,46,0,106,28,0, ++ 100,47,0,100,48,0,131,2,0,100,49,0,23,90,29,0, ++ 101,30,0,106,31,0,101,29,0,100,48,0,131,2,0,90, ++ 32,0,100,50,0,90,33,0,100,51,0,103,1,0,90,34, ++ 0,100,52,0,103,1,0,90,35,0,100,53,0,103,1,0, ++ 90,36,0,100,54,0,100,55,0,100,56,0,132,1,0,90, ++ 37,0,100,57,0,100,58,0,132,0,0,90,38,0,100,59, ++ 0,100,60,0,132,0,0,90,39,0,100,61,0,100,62,0, ++ 132,0,0,90,40,0,100,63,0,100,64,0,100,65,0,100, ++ 66,0,132,0,1,90,41,0,100,67,0,100,68,0,132,0, ++ 0,90,42,0,100,69,0,100,70,0,132,0,0,90,43,0, ++ 100,71,0,100,72,0,132,0,0,90,44,0,100,73,0,100, ++ 74,0,132,0,0,90,45,0,100,75,0,100,76,0,132,0, ++ 0,90,46,0,100,54,0,100,54,0,100,54,0,100,77,0, ++ 100,78,0,132,3,0,90,47,0,100,54,0,100,54,0,100, ++ 54,0,100,79,0,100,80,0,132,3,0,90,48,0,100,81, ++ 0,100,81,0,100,82,0,100,83,0,132,2,0,90,49,0, ++ 100,84,0,100,85,0,132,0,0,90,50,0,100,86,0,100, ++ 87,0,132,0,0,90,51,0,71,100,88,0,100,89,0,132, ++ 0,0,100,89,0,131,2,0,90,52,0,71,100,90,0,100, ++ 91,0,132,0,0,100,91,0,131,2,0,90,53,0,100,92, ++ 0,100,54,0,100,93,0,100,54,0,100,94,0,100,95,0, + 132,0,2,90,54,0,101,55,0,131,0,0,90,56,0,100, +- 53,0,100,95,0,100,53,0,100,96,0,101,56,0,100,97, +- 0,100,98,0,132,1,2,90,57,0,100,53,0,100,53,0, +- 100,99,0,100,100,0,132,2,0,90,58,0,71,100,101,0, +- 100,102,0,132,0,0,100,102,0,131,2,0,90,59,0,100, +- 53,0,100,103,0,100,104,0,132,1,0,90,60,0,71,100, +- 105,0,100,106,0,132,0,0,100,106,0,131,2,0,90,61, +- 0,71,100,107,0,100,108,0,132,0,0,100,108,0,131,2, +- 0,90,62,0,71,100,109,0,100,110,0,132,0,0,100,110, +- 0,131,2,0,90,63,0,71,100,111,0,100,112,0,132,0, +- 0,100,112,0,131,2,0,90,64,0,71,100,113,0,100,114, +- 0,132,0,0,100,114,0,101,64,0,131,3,0,90,65,0, +- 71,100,115,0,100,116,0,132,0,0,100,116,0,131,2,0, +- 90,66,0,71,100,117,0,100,118,0,132,0,0,100,118,0, +- 101,66,0,101,65,0,131,4,0,90,67,0,71,100,119,0, +- 100,120,0,132,0,0,100,120,0,101,66,0,101,64,0,131, +- 4,0,90,68,0,103,0,0,90,69,0,71,100,121,0,100, +- 122,0,132,0,0,100,122,0,131,2,0,90,70,0,71,100, +- 123,0,100,124,0,132,0,0,100,124,0,131,2,0,90,71, +- 0,71,100,125,0,100,126,0,132,0,0,100,126,0,131,2, +- 0,90,72,0,71,100,127,0,100,128,0,132,0,0,100,128, +- 0,131,2,0,90,73,0,71,100,129,0,100,130,0,132,0, +- 0,100,130,0,131,2,0,90,74,0,71,100,131,0,100,132, +- 0,132,0,0,100,132,0,131,2,0,90,75,0,100,133,0, +- 100,134,0,132,0,0,90,76,0,100,135,0,100,136,0,132, +- 0,0,90,77,0,100,53,0,100,137,0,100,138,0,132,1, +- 0,90,78,0,100,139,0,100,140,0,132,0,0,90,79,0, +- 100,141,0,90,80,0,101,80,0,100,142,0,23,90,81,0, +- 100,143,0,100,144,0,132,0,0,90,82,0,100,145,0,100, +- 146,0,132,0,0,90,83,0,100,53,0,100,80,0,100,147, +- 0,100,148,0,132,2,0,90,84,0,100,149,0,100,150,0, +- 132,0,0,90,85,0,100,151,0,100,152,0,132,0,0,90, +- 86,0,100,153,0,100,154,0,132,0,0,90,87,0,100,53, +- 0,100,53,0,102,0,0,100,80,0,100,155,0,100,156,0, +- 132,4,0,90,88,0,100,157,0,100,158,0,132,0,0,90, +- 89,0,100,159,0,100,160,0,132,0,0,90,90,0,100,161, +- 0,100,162,0,132,0,0,90,91,0,100,53,0,83,41,164, ++ 54,0,100,96,0,100,54,0,100,97,0,101,56,0,100,98, ++ 0,100,99,0,132,1,2,90,57,0,100,54,0,100,54,0, ++ 100,100,0,100,101,0,132,2,0,90,58,0,71,100,102,0, ++ 100,103,0,132,0,0,100,103,0,131,2,0,90,59,0,100, ++ 54,0,100,104,0,100,105,0,132,1,0,90,60,0,71,100, ++ 106,0,100,107,0,132,0,0,100,107,0,131,2,0,90,61, ++ 0,71,100,108,0,100,109,0,132,0,0,100,109,0,131,2, ++ 0,90,62,0,71,100,110,0,100,111,0,132,0,0,100,111, ++ 0,131,2,0,90,63,0,71,100,112,0,100,113,0,132,0, ++ 0,100,113,0,131,2,0,90,64,0,71,100,114,0,100,115, ++ 0,132,0,0,100,115,0,101,64,0,131,3,0,90,65,0, ++ 71,100,116,0,100,117,0,132,0,0,100,117,0,131,2,0, ++ 90,66,0,71,100,118,0,100,119,0,132,0,0,100,119,0, ++ 101,66,0,101,65,0,131,4,0,90,67,0,71,100,120,0, ++ 100,121,0,132,0,0,100,121,0,101,66,0,101,64,0,131, ++ 4,0,90,68,0,103,0,0,90,69,0,71,100,122,0,100, ++ 123,0,132,0,0,100,123,0,131,2,0,90,70,0,71,100, ++ 124,0,100,125,0,132,0,0,100,125,0,131,2,0,90,71, ++ 0,71,100,126,0,100,127,0,132,0,0,100,127,0,131,2, ++ 0,90,72,0,71,100,128,0,100,129,0,132,0,0,100,129, ++ 0,131,2,0,90,73,0,71,100,130,0,100,131,0,132,0, ++ 0,100,131,0,131,2,0,90,74,0,71,100,132,0,100,133, ++ 0,132,0,0,100,133,0,131,2,0,90,75,0,100,134,0, ++ 100,135,0,132,0,0,90,76,0,100,136,0,100,137,0,132, ++ 0,0,90,77,0,100,54,0,100,138,0,100,139,0,132,1, ++ 0,90,78,0,100,140,0,100,141,0,132,0,0,90,79,0, ++ 100,142,0,90,80,0,101,80,0,100,143,0,23,90,81,0, ++ 100,144,0,100,145,0,132,0,0,90,82,0,100,146,0,100, ++ 147,0,132,0,0,90,83,0,100,54,0,100,81,0,100,148, ++ 0,100,149,0,132,2,0,90,84,0,100,150,0,100,151,0, ++ 132,0,0,90,85,0,100,152,0,100,153,0,132,0,0,90, ++ 86,0,100,154,0,100,155,0,132,0,0,90,87,0,100,54, ++ 0,100,54,0,102,0,0,100,81,0,100,156,0,100,157,0, ++ 132,4,0,90,88,0,100,158,0,100,159,0,132,0,0,90, ++ 89,0,100,160,0,100,161,0,132,0,0,90,90,0,100,162, ++ 0,100,163,0,132,0,0,90,91,0,100,54,0,83,41,165, + 97,83,1,0,0,67,111,114,101,32,105,109,112,108,101,109, + 101,110,116,97,116,105,111,110,32,111,102,32,105,109,112,111, + 114,116,46,10,10,84,104,105,115,32,109,111,100,117,108,101, +@@ -102,2102 +102,3127 @@ + 32,112,117,98,108,105,99,45,102,97,99,105,110,103,32,118, + 101,114,115,105,111,110,32,111,102,32,116,104,105,115,32,109, + 111,100,117,108,101,46,10,10,218,3,119,105,110,218,6,99, +- 121,103,119,105,110,218,6,100,97,114,119,105,110,99,0,0, +- 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, +- 0,0,115,49,0,0,0,116,0,0,106,1,0,106,2,0, +- 116,3,0,131,1,0,114,33,0,100,1,0,100,2,0,132, +- 0,0,125,0,0,110,12,0,100,3,0,100,2,0,132,0, +- 0,125,0,0,124,0,0,83,41,4,78,99,0,0,0,0, +- 0,0,0,0,0,0,0,0,2,0,0,0,83,0,0,0, +- 115,13,0,0,0,100,1,0,116,0,0,106,1,0,107,6, +- 0,83,41,2,122,53,84,114,117,101,32,105,102,32,102,105, +- 108,101,110,97,109,101,115,32,109,117,115,116,32,98,101,32, +- 99,104,101,99,107,101,100,32,99,97,115,101,45,105,110,115, +- 101,110,115,105,116,105,118,101,108,121,46,115,12,0,0,0, +- 80,89,84,72,79,78,67,65,83,69,79,75,41,2,218,3, +- 95,111,115,90,7,101,110,118,105,114,111,110,169,0,114,4, +- 0,0,0,114,4,0,0,0,250,29,60,102,114,111,122,101, +- 110,32,105,109,112,111,114,116,108,105,98,46,95,98,111,111, +- 116,115,116,114,97,112,62,218,11,95,114,101,108,97,120,95, +- 99,97,115,101,30,0,0,0,115,2,0,0,0,0,2,122, +- 37,95,109,97,107,101,95,114,101,108,97,120,95,99,97,115, +- 101,46,60,108,111,99,97,108,115,62,46,95,114,101,108,97, +- 120,95,99,97,115,101,99,0,0,0,0,0,0,0,0,0, +- 0,0,0,1,0,0,0,83,0,0,0,115,4,0,0,0, +- 100,1,0,83,41,2,122,53,84,114,117,101,32,105,102,32, +- 102,105,108,101,110,97,109,101,115,32,109,117,115,116,32,98, +- 101,32,99,104,101,99,107,101,100,32,99,97,115,101,45,105, +- 110,115,101,110,115,105,116,105,118,101,108,121,46,70,114,4, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,6,0,0,0,34,0,0,0, +- 115,2,0,0,0,0,2,41,4,218,3,115,121,115,218,8, +- 112,108,97,116,102,111,114,109,218,10,115,116,97,114,116,115, +- 119,105,116,104,218,27,95,67,65,83,69,95,73,78,83,69, +- 78,83,73,84,73,86,69,95,80,76,65,84,70,79,82,77, +- 83,41,1,114,6,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,16,95,109,97,107,101,95,114, +- 101,108,97,120,95,99,97,115,101,28,0,0,0,115,8,0, +- 0,0,0,1,18,1,15,4,12,3,114,11,0,0,0,99, +- 1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0, +- 67,0,0,0,115,26,0,0,0,116,0,0,124,0,0,131, +- 1,0,100,1,0,64,106,1,0,100,2,0,100,3,0,131, +- 2,0,83,41,4,122,42,67,111,110,118,101,114,116,32,97, +- 32,51,50,45,98,105,116,32,105,110,116,101,103,101,114,32, +- 116,111,32,108,105,116,116,108,101,45,101,110,100,105,97,110, +- 46,108,3,0,0,0,255,127,255,127,3,0,233,4,0,0, +- 0,218,6,108,105,116,116,108,101,41,2,218,3,105,110,116, +- 218,8,116,111,95,98,121,116,101,115,41,1,218,1,120,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,7, +- 95,119,95,108,111,110,103,40,0,0,0,115,2,0,0,0, +- 0,2,114,17,0,0,0,99,1,0,0,0,0,0,0,0, +- 1,0,0,0,3,0,0,0,67,0,0,0,115,16,0,0, +- 0,116,0,0,106,1,0,124,0,0,100,1,0,131,2,0, +- 83,41,2,122,47,67,111,110,118,101,114,116,32,52,32,98, +- 121,116,101,115,32,105,110,32,108,105,116,116,108,101,45,101, +- 110,100,105,97,110,32,116,111,32,97,110,32,105,110,116,101, +- 103,101,114,46,114,13,0,0,0,41,2,114,14,0,0,0, +- 218,10,102,114,111,109,95,98,121,116,101,115,41,1,90,9, +- 105,110,116,95,98,121,116,101,115,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,7,95,114,95,108,111,110, +- 103,45,0,0,0,115,2,0,0,0,0,2,114,19,0,0, +- 0,99,0,0,0,0,0,0,0,0,1,0,0,0,3,0, +- 0,0,71,0,0,0,115,26,0,0,0,116,0,0,106,1, +- 0,100,1,0,100,2,0,132,0,0,124,0,0,68,131,1, +- 0,131,1,0,83,41,3,122,31,82,101,112,108,97,99,101, +- 109,101,110,116,32,102,111,114,32,111,115,46,112,97,116,104, +- 46,106,111,105,110,40,41,46,99,1,0,0,0,0,0,0, +- 0,2,0,0,0,4,0,0,0,83,0,0,0,115,37,0, +- 0,0,103,0,0,124,0,0,93,27,0,125,1,0,124,1, +- 0,114,6,0,124,1,0,106,0,0,116,1,0,131,1,0, +- 145,2,0,113,6,0,83,114,4,0,0,0,41,2,218,6, +- 114,115,116,114,105,112,218,15,112,97,116,104,95,115,101,112, +- 97,114,97,116,111,114,115,41,2,218,2,46,48,218,4,112, +- 97,114,116,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,250,10,60,108,105,115,116,99,111,109,112,62,52,0, +- 0,0,115,2,0,0,0,9,1,122,30,95,112,97,116,104, +- 95,106,111,105,110,46,60,108,111,99,97,108,115,62,46,60, +- 108,105,115,116,99,111,109,112,62,41,2,218,8,112,97,116, +- 104,95,115,101,112,218,4,106,111,105,110,41,1,218,10,112, +- 97,116,104,95,112,97,114,116,115,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,10,95,112,97,116,104,95, +- 106,111,105,110,50,0,0,0,115,4,0,0,0,0,2,15, +- 1,114,28,0,0,0,99,1,0,0,0,0,0,0,0,5, +- 0,0,0,5,0,0,0,67,0,0,0,115,134,0,0,0, +- 116,0,0,116,1,0,131,1,0,100,1,0,107,2,0,114, +- 52,0,124,0,0,106,2,0,116,3,0,131,1,0,92,3, +- 0,125,1,0,125,2,0,125,3,0,124,1,0,124,3,0, +- 102,2,0,83,120,69,0,116,4,0,124,0,0,131,1,0, +- 68,93,55,0,125,4,0,124,4,0,116,1,0,107,6,0, +- 114,65,0,124,0,0,106,5,0,124,4,0,100,2,0,100, +- 1,0,131,1,1,92,2,0,125,1,0,125,3,0,124,1, +- 0,124,3,0,102,2,0,83,113,65,0,87,100,3,0,124, +- 0,0,102,2,0,83,41,4,122,32,82,101,112,108,97,99, +- 101,109,101,110,116,32,102,111,114,32,111,115,46,112,97,116, +- 104,46,115,112,108,105,116,40,41,46,233,1,0,0,0,90, +- 8,109,97,120,115,112,108,105,116,218,0,41,6,218,3,108, +- 101,110,114,21,0,0,0,218,10,114,112,97,114,116,105,116, +- 105,111,110,114,25,0,0,0,218,8,114,101,118,101,114,115, +- 101,100,218,6,114,115,112,108,105,116,41,5,218,4,112,97, +- 116,104,90,5,102,114,111,110,116,218,1,95,218,4,116,97, +- 105,108,114,16,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,11,95,112,97,116,104,95,115,112, +- 108,105,116,56,0,0,0,115,16,0,0,0,0,2,18,1, +- 24,1,10,1,19,1,12,1,27,1,14,1,114,38,0,0, +- 0,99,1,0,0,0,0,0,0,0,1,0,0,0,2,0, +- 0,0,67,0,0,0,115,13,0,0,0,116,0,0,106,1, +- 0,124,0,0,131,1,0,83,41,1,122,126,83,116,97,116, +- 32,116,104,101,32,112,97,116,104,46,10,10,32,32,32,32, +- 77,97,100,101,32,97,32,115,101,112,97,114,97,116,101,32, +- 102,117,110,99,116,105,111,110,32,116,111,32,109,97,107,101, +- 32,105,116,32,101,97,115,105,101,114,32,116,111,32,111,118, +- 101,114,114,105,100,101,32,105,110,32,101,120,112,101,114,105, +- 109,101,110,116,115,10,32,32,32,32,40,101,46,103,46,32, +- 99,97,99,104,101,32,115,116,97,116,32,114,101,115,117,108, +- 116,115,41,46,10,10,32,32,32,32,41,2,114,3,0,0, +- 0,90,4,115,116,97,116,41,1,114,35,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,10,95, +- 112,97,116,104,95,115,116,97,116,68,0,0,0,115,2,0, +- 0,0,0,7,114,39,0,0,0,99,2,0,0,0,0,0, +- 0,0,3,0,0,0,11,0,0,0,67,0,0,0,115,58, +- 0,0,0,121,16,0,116,0,0,124,0,0,131,1,0,125, +- 2,0,87,110,22,0,4,116,1,0,107,10,0,114,40,0, +- 1,1,1,100,1,0,83,89,110,1,0,88,124,2,0,106, +- 2,0,100,2,0,64,124,1,0,107,2,0,83,41,3,122, +- 49,84,101,115,116,32,119,104,101,116,104,101,114,32,116,104, +- 101,32,112,97,116,104,32,105,115,32,116,104,101,32,115,112, +- 101,99,105,102,105,101,100,32,109,111,100,101,32,116,121,112, +- 101,46,70,105,0,240,0,0,41,3,114,39,0,0,0,218, +- 7,79,83,69,114,114,111,114,218,7,115,116,95,109,111,100, +- 101,41,3,114,35,0,0,0,218,4,109,111,100,101,90,9, +- 115,116,97,116,95,105,110,102,111,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,18,95,112,97,116,104,95, +- 105,115,95,109,111,100,101,95,116,121,112,101,78,0,0,0, +- 115,10,0,0,0,0,2,3,1,16,1,13,1,9,1,114, +- 43,0,0,0,99,1,0,0,0,0,0,0,0,1,0,0, +- 0,3,0,0,0,67,0,0,0,115,13,0,0,0,116,0, +- 0,124,0,0,100,1,0,131,2,0,83,41,2,122,31,82, +- 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, +- 115,46,112,97,116,104,46,105,115,102,105,108,101,46,105,0, +- 128,0,0,41,1,114,43,0,0,0,41,1,114,35,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,12,95,112,97,116,104,95,105,115,102,105,108,101,87,0, +- 0,0,115,2,0,0,0,0,2,114,44,0,0,0,99,1, +- 0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,67, +- 0,0,0,115,34,0,0,0,124,0,0,115,21,0,116,0, +- 0,106,1,0,131,0,0,125,0,0,110,0,0,116,2,0, +- 124,0,0,100,1,0,131,2,0,83,41,2,122,30,82,101, - 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, -- 46,112,97,116,104,46,115,112,108,105,116,40,41,46,233,1, -- 0,0,0,90,8,109,97,120,115,112,108,105,116,218,0,41, -- 6,218,3,108,101,110,114,21,0,0,0,218,10,114,112,97, -- 114,116,105,116,105,111,110,114,25,0,0,0,218,8,114,101, -- 118,101,114,115,101,100,218,6,114,115,112,108,105,116,41,5, -- 218,4,112,97,116,104,90,5,102,114,111,110,116,218,1,95, -- 218,4,116,97,105,108,114,16,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,11,95,112,97,116, -- 104,95,115,112,108,105,116,56,0,0,0,115,16,0,0,0, -- 0,2,18,1,24,1,10,1,19,1,12,1,27,1,14,1, -- 114,38,0,0,0,99,1,0,0,0,0,0,0,0,1,0, -- 0,0,2,0,0,0,67,0,0,0,115,13,0,0,0,116, -- 0,0,106,1,0,124,0,0,131,1,0,83,41,1,122,126, -- 83,116,97,116,32,116,104,101,32,112,97,116,104,46,10,10, -- 32,32,32,32,77,97,100,101,32,97,32,115,101,112,97,114, -- 97,116,101,32,102,117,110,99,116,105,111,110,32,116,111,32, -- 109,97,107,101,32,105,116,32,101,97,115,105,101,114,32,116, -- 111,32,111,118,101,114,114,105,100,101,32,105,110,32,101,120, -- 112,101,114,105,109,101,110,116,115,10,32,32,32,32,40,101, -- 46,103,46,32,99,97,99,104,101,32,115,116,97,116,32,114, -- 101,115,117,108,116,115,41,46,10,10,32,32,32,32,41,2, -- 114,3,0,0,0,90,4,115,116,97,116,41,1,114,35,0, +- 46,112,97,116,104,46,105,115,100,105,114,46,105,0,64,0, +- 0,41,3,114,3,0,0,0,218,6,103,101,116,99,119,100, +- 114,43,0,0,0,41,1,114,35,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,11,95,112,97, +- 116,104,95,105,115,100,105,114,92,0,0,0,115,6,0,0, +- 0,0,2,6,1,15,1,114,46,0,0,0,105,182,1,0, +- 0,99,3,0,0,0,0,0,0,0,6,0,0,0,17,0, +- 0,0,67,0,0,0,115,192,0,0,0,100,1,0,106,0, +- 0,124,0,0,116,1,0,124,0,0,131,1,0,131,2,0, +- 125,3,0,116,2,0,106,3,0,124,3,0,116,2,0,106, +- 4,0,116,2,0,106,5,0,66,116,2,0,106,6,0,66, +- 124,2,0,100,2,0,64,131,3,0,125,4,0,121,60,0, +- 116,7,0,106,8,0,124,4,0,100,3,0,131,2,0,143, +- 20,0,125,5,0,124,5,0,106,9,0,124,1,0,131,1, +- 0,1,87,100,4,0,81,88,116,2,0,106,10,0,124,3, +- 0,124,0,0,131,2,0,1,87,110,59,0,4,116,11,0, +- 107,10,0,114,187,0,1,1,1,121,17,0,116,2,0,106, +- 12,0,124,3,0,131,1,0,1,87,110,18,0,4,116,11, +- 0,107,10,0,114,179,0,1,1,1,89,110,1,0,88,130, +- 0,0,89,110,1,0,88,100,4,0,83,41,5,122,162,66, +- 101,115,116,45,101,102,102,111,114,116,32,102,117,110,99,116, +- 105,111,110,32,116,111,32,119,114,105,116,101,32,100,97,116, +- 97,32,116,111,32,97,32,112,97,116,104,32,97,116,111,109, +- 105,99,97,108,108,121,46,10,32,32,32,32,66,101,32,112, +- 114,101,112,97,114,101,100,32,116,111,32,104,97,110,100,108, +- 101,32,97,32,70,105,108,101,69,120,105,115,116,115,69,114, +- 114,111,114,32,105,102,32,99,111,110,99,117,114,114,101,110, +- 116,32,119,114,105,116,105,110,103,32,111,102,32,116,104,101, +- 10,32,32,32,32,116,101,109,112,111,114,97,114,121,32,102, +- 105,108,101,32,105,115,32,97,116,116,101,109,112,116,101,100, +- 46,122,5,123,125,46,123,125,105,182,1,0,0,90,2,119, +- 98,78,41,13,218,6,102,111,114,109,97,116,218,2,105,100, +- 114,3,0,0,0,90,4,111,112,101,110,90,6,79,95,69, +- 88,67,76,90,7,79,95,67,82,69,65,84,90,8,79,95, +- 87,82,79,78,76,89,218,3,95,105,111,218,6,70,105,108, +- 101,73,79,218,5,119,114,105,116,101,218,7,114,101,112,108, +- 97,99,101,114,40,0,0,0,90,6,117,110,108,105,110,107, +- 41,6,114,35,0,0,0,218,4,100,97,116,97,114,42,0, +- 0,0,90,8,112,97,116,104,95,116,109,112,90,2,102,100, +- 218,4,102,105,108,101,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,13,95,119,114,105,116,101,95,97,116, +- 111,109,105,99,99,0,0,0,115,26,0,0,0,0,5,24, +- 1,9,1,33,1,3,3,21,1,19,1,20,1,13,1,3, +- 1,17,1,13,1,5,1,114,55,0,0,0,99,2,0,0, +- 0,0,0,0,0,3,0,0,0,7,0,0,0,67,0,0, +- 0,115,95,0,0,0,120,69,0,100,1,0,100,2,0,100, +- 3,0,100,4,0,103,4,0,68,93,49,0,125,2,0,116, +- 0,0,124,1,0,124,2,0,131,2,0,114,19,0,116,1, +- 0,124,0,0,124,2,0,116,2,0,124,1,0,124,2,0, +- 131,2,0,131,3,0,1,113,19,0,113,19,0,87,124,0, +- 0,106,3,0,106,4,0,124,1,0,106,3,0,131,1,0, +- 1,100,5,0,83,41,6,122,47,83,105,109,112,108,101,32, +- 115,117,98,115,116,105,116,117,116,101,32,102,111,114,32,102, +- 117,110,99,116,111,111,108,115,46,117,112,100,97,116,101,95, +- 119,114,97,112,112,101,114,46,218,10,95,95,109,111,100,117, +- 108,101,95,95,218,8,95,95,110,97,109,101,95,95,218,12, +- 95,95,113,117,97,108,110,97,109,101,95,95,218,7,95,95, +- 100,111,99,95,95,78,41,5,218,7,104,97,115,97,116,116, +- 114,218,7,115,101,116,97,116,116,114,218,7,103,101,116,97, +- 116,116,114,218,8,95,95,100,105,99,116,95,95,218,6,117, +- 112,100,97,116,101,41,3,90,3,110,101,119,90,3,111,108, +- 100,114,52,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,5,95,119,114,97,112,121,0,0,0, +- 115,8,0,0,0,0,2,25,1,15,1,32,1,114,65,0, +- 0,0,99,1,0,0,0,0,0,0,0,1,0,0,0,2, +- 0,0,0,67,0,0,0,115,16,0,0,0,116,0,0,116, +- 1,0,131,1,0,124,0,0,131,1,0,83,41,1,78,41, +- 2,218,4,116,121,112,101,114,7,0,0,0,41,1,218,4, +- 110,97,109,101,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,11,95,110,101,119,95,109,111,100,117,108,101, +- 129,0,0,0,115,2,0,0,0,0,1,114,68,0,0,0, ++ 121,103,119,105,110,218,6,100,97,114,119,105,110,218,3,105, ++ 111,115,99,0,0,0,0,0,0,0,0,1,0,0,0,2, ++ 0,0,0,67,0,0,0,115,49,0,0,0,116,0,0,106, ++ 1,0,106,2,0,116,3,0,131,1,0,114,33,0,100,1, ++ 0,100,2,0,132,0,0,125,0,0,110,12,0,100,3,0, ++ 100,2,0,132,0,0,125,0,0,124,0,0,83,41,4,78, + 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, +- 0,64,0,0,0,115,58,0,0,0,101,0,0,90,1,0, +- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, +- 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, +- 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, +- 100,8,0,83,41,9,218,13,95,77,97,110,97,103,101,82, +- 101,108,111,97,100,122,63,77,97,110,97,103,101,115,32,116, +- 104,101,32,112,111,115,115,105,98,108,101,32,99,108,101,97, +- 110,45,117,112,32,111,102,32,115,121,115,46,109,111,100,117, +- 108,101,115,32,102,111,114,32,108,111,97,100,95,109,111,100, +- 117,108,101,40,41,46,99,2,0,0,0,0,0,0,0,2, ++ 0,83,0,0,0,115,13,0,0,0,100,1,0,116,0,0, ++ 106,1,0,107,6,0,83,41,2,122,53,84,114,117,101,32, ++ 105,102,32,102,105,108,101,110,97,109,101,115,32,109,117,115, ++ 116,32,98,101,32,99,104,101,99,107,101,100,32,99,97,115, ++ 101,45,105,110,115,101,110,115,105,116,105,118,101,108,121,46, ++ 115,12,0,0,0,80,89,84,72,79,78,67,65,83,69,79, ++ 75,41,2,218,3,95,111,115,90,7,101,110,118,105,114,111, ++ 110,169,0,114,5,0,0,0,114,5,0,0,0,250,29,60, ++ 102,114,111,122,101,110,32,105,109,112,111,114,116,108,105,98, ++ 46,95,98,111,111,116,115,116,114,97,112,62,218,11,95,114, ++ 101,108,97,120,95,99,97,115,101,30,0,0,0,115,2,0, ++ 0,0,0,2,122,37,95,109,97,107,101,95,114,101,108,97, ++ 120,95,99,97,115,101,46,60,108,111,99,97,108,115,62,46, ++ 95,114,101,108,97,120,95,99,97,115,101,99,0,0,0,0, ++ 0,0,0,0,0,0,0,0,1,0,0,0,83,0,0,0, ++ 115,4,0,0,0,100,1,0,83,41,2,122,53,84,114,117, ++ 101,32,105,102,32,102,105,108,101,110,97,109,101,115,32,109, ++ 117,115,116,32,98,101,32,99,104,101,99,107,101,100,32,99, ++ 97,115,101,45,105,110,115,101,110,115,105,116,105,118,101,108, ++ 121,46,70,114,5,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,7,0,0, ++ 0,34,0,0,0,115,2,0,0,0,0,2,41,4,218,3, ++ 115,121,115,218,8,112,108,97,116,102,111,114,109,218,10,115, ++ 116,97,114,116,115,119,105,116,104,218,27,95,67,65,83,69, ++ 95,73,78,83,69,78,83,73,84,73,86,69,95,80,76,65, ++ 84,70,79,82,77,83,41,1,114,7,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,16,95,109, ++ 97,107,101,95,114,101,108,97,120,95,99,97,115,101,28,0, ++ 0,0,115,8,0,0,0,0,1,18,1,15,4,12,3,114, ++ 12,0,0,0,99,1,0,0,0,0,0,0,0,1,0,0, ++ 0,3,0,0,0,67,0,0,0,115,26,0,0,0,116,0, ++ 0,124,0,0,131,1,0,100,1,0,64,106,1,0,100,2, ++ 0,100,3,0,131,2,0,83,41,4,122,42,67,111,110,118, ++ 101,114,116,32,97,32,51,50,45,98,105,116,32,105,110,116, ++ 101,103,101,114,32,116,111,32,108,105,116,116,108,101,45,101, ++ 110,100,105,97,110,46,108,3,0,0,0,255,127,255,127,3, ++ 0,233,4,0,0,0,218,6,108,105,116,116,108,101,41,2, ++ 218,3,105,110,116,218,8,116,111,95,98,121,116,101,115,41, ++ 1,218,1,120,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,7,95,119,95,108,111,110,103,40,0,0,0, ++ 115,2,0,0,0,0,2,114,18,0,0,0,99,1,0,0, ++ 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, ++ 0,115,16,0,0,0,116,0,0,106,1,0,124,0,0,100, ++ 1,0,131,2,0,83,41,2,122,47,67,111,110,118,101,114, ++ 116,32,52,32,98,121,116,101,115,32,105,110,32,108,105,116, ++ 116,108,101,45,101,110,100,105,97,110,32,116,111,32,97,110, ++ 32,105,110,116,101,103,101,114,46,114,14,0,0,0,41,2, ++ 114,15,0,0,0,218,10,102,114,111,109,95,98,121,116,101, ++ 115,41,1,90,9,105,110,116,95,98,121,116,101,115,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,7,95, ++ 114,95,108,111,110,103,45,0,0,0,115,2,0,0,0,0, ++ 2,114,20,0,0,0,99,0,0,0,0,0,0,0,0,1, ++ 0,0,0,3,0,0,0,71,0,0,0,115,26,0,0,0, ++ 116,0,0,106,1,0,100,1,0,100,2,0,132,0,0,124, ++ 0,0,68,131,1,0,131,1,0,83,41,3,122,31,82,101, ++ 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, ++ 46,112,97,116,104,46,106,111,105,110,40,41,46,99,1,0, ++ 0,0,0,0,0,0,2,0,0,0,4,0,0,0,83,0, ++ 0,0,115,37,0,0,0,103,0,0,124,0,0,93,27,0, ++ 125,1,0,124,1,0,114,6,0,124,1,0,106,0,0,116, ++ 1,0,131,1,0,145,2,0,113,6,0,83,114,5,0,0, ++ 0,41,2,218,6,114,115,116,114,105,112,218,15,112,97,116, ++ 104,95,115,101,112,97,114,97,116,111,114,115,41,2,218,2, ++ 46,48,218,4,112,97,114,116,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,250,10,60,108,105,115,116,99,111, ++ 109,112,62,52,0,0,0,115,2,0,0,0,9,1,122,30, ++ 95,112,97,116,104,95,106,111,105,110,46,60,108,111,99,97, ++ 108,115,62,46,60,108,105,115,116,99,111,109,112,62,41,2, ++ 218,8,112,97,116,104,95,115,101,112,218,4,106,111,105,110, ++ 41,1,218,10,112,97,116,104,95,112,97,114,116,115,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,10,95, ++ 112,97,116,104,95,106,111,105,110,50,0,0,0,115,4,0, ++ 0,0,0,2,15,1,114,29,0,0,0,99,1,0,0,0, ++ 0,0,0,0,5,0,0,0,5,0,0,0,67,0,0,0, ++ 115,134,0,0,0,116,0,0,116,1,0,131,1,0,100,1, ++ 0,107,2,0,114,52,0,124,0,0,106,2,0,116,3,0, ++ 131,1,0,92,3,0,125,1,0,125,2,0,125,3,0,124, ++ 1,0,124,3,0,102,2,0,83,120,69,0,116,4,0,124, ++ 0,0,131,1,0,68,93,55,0,125,4,0,124,4,0,116, ++ 1,0,107,6,0,114,65,0,124,0,0,106,5,0,124,4, ++ 0,100,2,0,100,1,0,131,1,1,92,2,0,125,1,0, ++ 125,3,0,124,1,0,124,3,0,102,2,0,83,113,65,0, ++ 87,100,3,0,124,0,0,102,2,0,83,41,4,122,32,82, ++ 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, ++ 115,46,112,97,116,104,46,115,112,108,105,116,40,41,46,233, ++ 1,0,0,0,90,8,109,97,120,115,112,108,105,116,218,0, ++ 41,6,218,3,108,101,110,114,22,0,0,0,218,10,114,112, ++ 97,114,116,105,116,105,111,110,114,26,0,0,0,218,8,114, ++ 101,118,101,114,115,101,100,218,6,114,115,112,108,105,116,41, ++ 5,218,4,112,97,116,104,90,5,102,114,111,110,116,218,1, ++ 95,218,4,116,97,105,108,114,17,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,11,95,112,97, ++ 116,104,95,115,112,108,105,116,56,0,0,0,115,16,0,0, ++ 0,0,2,18,1,24,1,10,1,19,1,12,1,27,1,14, ++ 1,114,39,0,0,0,99,1,0,0,0,0,0,0,0,1, + 0,0,0,2,0,0,0,67,0,0,0,115,13,0,0,0, +- 124,1,0,124,0,0,95,0,0,100,0,0,83,41,1,78, +- 41,1,218,5,95,110,97,109,101,41,2,218,4,115,101,108, +- 102,114,67,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,8,95,95,105,110,105,116,95,95,141, +- 0,0,0,115,2,0,0,0,0,1,122,22,95,77,97,110, +- 97,103,101,82,101,108,111,97,100,46,95,95,105,110,105,116, +- 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2, +- 0,0,0,67,0,0,0,115,25,0,0,0,124,0,0,106, +- 0,0,116,1,0,106,2,0,107,6,0,124,0,0,95,3, +- 0,100,0,0,83,41,1,78,41,4,114,70,0,0,0,114, +- 7,0,0,0,218,7,109,111,100,117,108,101,115,218,10,95, +- 105,115,95,114,101,108,111,97,100,41,1,114,71,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, +- 9,95,95,101,110,116,101,114,95,95,144,0,0,0,115,2, +- 0,0,0,0,1,122,23,95,77,97,110,97,103,101,82,101, +- 108,111,97,100,46,95,95,101,110,116,101,114,95,95,99,1, +- 0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,71, +- 0,0,0,115,80,0,0,0,116,0,0,100,1,0,100,2, +- 0,132,0,0,124,1,0,68,131,1,0,131,1,0,114,76, +- 0,124,0,0,106,1,0,12,114,76,0,121,17,0,116,2, +- 0,106,3,0,124,0,0,106,4,0,61,87,113,76,0,4, +- 116,5,0,107,10,0,114,72,0,1,1,1,89,113,76,0, +- 88,110,0,0,100,0,0,83,41,3,78,99,1,0,0,0, +- 0,0,0,0,2,0,0,0,3,0,0,0,115,0,0,0, +- 115,27,0,0,0,124,0,0,93,17,0,125,1,0,124,1, +- 0,100,0,0,107,9,0,86,1,113,3,0,100,0,0,83, +- 41,1,78,114,4,0,0,0,41,2,114,22,0,0,0,218, +- 3,97,114,103,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,250,9,60,103,101,110,101,120,112,114,62,148,0, +- 0,0,115,2,0,0,0,6,0,122,41,95,77,97,110,97, +- 103,101,82,101,108,111,97,100,46,95,95,101,120,105,116,95, +- 95,46,60,108,111,99,97,108,115,62,46,60,103,101,110,101, +- 120,112,114,62,41,6,218,3,97,110,121,114,74,0,0,0, +- 114,7,0,0,0,114,73,0,0,0,114,70,0,0,0,218, +- 8,75,101,121,69,114,114,111,114,41,2,114,71,0,0,0, +- 218,4,97,114,103,115,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,8,95,95,101,120,105,116,95,95,147, +- 0,0,0,115,10,0,0,0,0,1,35,1,3,1,17,1, +- 13,1,122,22,95,77,97,110,97,103,101,82,101,108,111,97, +- 100,46,95,95,101,120,105,116,95,95,78,41,7,114,57,0, +- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, +- 0,114,72,0,0,0,114,75,0,0,0,114,81,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,69,0,0,0,137,0,0,0,115,8,0, +- 0,0,12,2,6,2,12,3,12,3,114,69,0,0,0,99, +- 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +- 64,0,0,0,115,16,0,0,0,101,0,0,90,1,0,100, +- 0,0,90,2,0,100,1,0,83,41,2,218,14,95,68,101, +- 97,100,108,111,99,107,69,114,114,111,114,78,41,3,114,57, +- 0,0,0,114,56,0,0,0,114,58,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,218,10,95,112,97,116,104,95,115,116,97,116,68,0,0, -- 0,115,2,0,0,0,0,7,114,39,0,0,0,99,2,0, -- 0,0,0,0,0,0,3,0,0,0,11,0,0,0,67,0, -- 0,0,115,58,0,0,0,121,16,0,116,0,0,124,0,0, -- 131,1,0,125,2,0,87,110,22,0,4,116,1,0,107,10, -- 0,114,40,0,1,1,1,100,1,0,83,89,110,1,0,88, -- 124,2,0,106,2,0,100,2,0,64,124,1,0,107,2,0, -- 83,41,3,122,49,84,101,115,116,32,119,104,101,116,104,101, -- 114,32,116,104,101,32,112,97,116,104,32,105,115,32,116,104, -- 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,101, -- 32,116,121,112,101,46,70,105,0,240,0,0,41,3,114,39, -- 0,0,0,218,7,79,83,69,114,114,111,114,218,7,115,116, -- 95,109,111,100,101,41,3,114,35,0,0,0,218,4,109,111, -- 100,101,90,9,115,116,97,116,95,105,110,102,111,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,18,95,112, -- 97,116,104,95,105,115,95,109,111,100,101,95,116,121,112,101, -- 78,0,0,0,115,10,0,0,0,0,2,3,1,16,1,13, -- 1,9,1,114,43,0,0,0,99,1,0,0,0,0,0,0, -- 0,1,0,0,0,3,0,0,0,67,0,0,0,115,13,0, -- 0,0,116,0,0,124,0,0,100,1,0,131,2,0,83,41, -- 2,122,31,82,101,112,108,97,99,101,109,101,110,116,32,102, -- 111,114,32,111,115,46,112,97,116,104,46,105,115,102,105,108, -- 101,46,105,0,128,0,0,41,1,114,43,0,0,0,41,1, -- 114,35,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,12,95,112,97,116,104,95,105,115,102,105, -- 108,101,87,0,0,0,115,2,0,0,0,0,2,114,44,0, -- 0,0,99,1,0,0,0,0,0,0,0,1,0,0,0,3, -- 0,0,0,67,0,0,0,115,31,0,0,0,124,0,0,115, -- 18,0,116,0,0,106,1,0,131,0,0,125,0,0,116,2, -- 0,124,0,0,100,1,0,131,2,0,83,41,2,122,30,82, -- 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, -- 115,46,112,97,116,104,46,105,115,100,105,114,46,105,0,64, -- 0,0,41,3,114,3,0,0,0,218,6,103,101,116,99,119, -- 100,114,43,0,0,0,41,1,114,35,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,11,95,112, -- 97,116,104,95,105,115,100,105,114,92,0,0,0,115,6,0, -- 0,0,0,2,6,1,12,1,114,46,0,0,0,105,182,1, -- 0,0,99,3,0,0,0,0,0,0,0,6,0,0,0,17, -- 0,0,0,67,0,0,0,115,193,0,0,0,100,1,0,106, -- 0,0,124,0,0,116,1,0,124,0,0,131,1,0,131,2, -- 0,125,3,0,116,2,0,106,3,0,124,3,0,116,2,0, -- 106,4,0,116,2,0,106,5,0,66,116,2,0,106,6,0, -- 66,124,2,0,100,2,0,64,131,3,0,125,4,0,121,61, -- 0,116,7,0,106,8,0,124,4,0,100,3,0,131,2,0, -- 143,20,0,125,5,0,124,5,0,106,9,0,124,1,0,131, -- 1,0,1,87,100,4,0,81,82,88,116,2,0,106,10,0, -- 124,3,0,124,0,0,131,2,0,1,87,110,59,0,4,116, -- 11,0,107,10,0,114,188,0,1,1,1,121,17,0,116,2, -- 0,106,12,0,124,3,0,131,1,0,1,87,110,18,0,4, -- 116,11,0,107,10,0,114,180,0,1,1,1,89,110,1,0, -- 88,130,0,0,89,110,1,0,88,100,4,0,83,41,5,122, -- 162,66,101,115,116,45,101,102,102,111,114,116,32,102,117,110, -- 99,116,105,111,110,32,116,111,32,119,114,105,116,101,32,100, -- 97,116,97,32,116,111,32,97,32,112,97,116,104,32,97,116, -- 111,109,105,99,97,108,108,121,46,10,32,32,32,32,66,101, -- 32,112,114,101,112,97,114,101,100,32,116,111,32,104,97,110, -- 100,108,101,32,97,32,70,105,108,101,69,120,105,115,116,115, -- 69,114,114,111,114,32,105,102,32,99,111,110,99,117,114,114, -- 101,110,116,32,119,114,105,116,105,110,103,32,111,102,32,116, -- 104,101,10,32,32,32,32,116,101,109,112,111,114,97,114,121, -- 32,102,105,108,101,32,105,115,32,97,116,116,101,109,112,116, -- 101,100,46,122,5,123,125,46,123,125,105,182,1,0,0,90, -- 2,119,98,78,41,13,218,6,102,111,114,109,97,116,218,2, -- 105,100,114,3,0,0,0,90,4,111,112,101,110,90,6,79, -- 95,69,88,67,76,90,7,79,95,67,82,69,65,84,90,8, -- 79,95,87,82,79,78,76,89,218,3,95,105,111,218,6,70, -- 105,108,101,73,79,218,5,119,114,105,116,101,218,7,114,101, -- 112,108,97,99,101,114,40,0,0,0,90,6,117,110,108,105, -- 110,107,41,6,114,35,0,0,0,218,4,100,97,116,97,114, -- 42,0,0,0,90,8,112,97,116,104,95,116,109,112,90,2, -- 102,100,218,4,102,105,108,101,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,13,95,119,114,105,116,101,95, -- 97,116,111,109,105,99,99,0,0,0,115,26,0,0,0,0, -- 5,24,1,9,1,33,1,3,3,21,1,20,1,20,1,13, -- 1,3,1,17,1,13,1,5,1,114,55,0,0,0,105,22, -- 13,0,0,233,2,0,0,0,114,13,0,0,0,115,2,0, +- 0,114,82,0,0,0,162,0,0,0,115,2,0,0,0,12, +- 1,114,82,0,0,0,99,0,0,0,0,0,0,0,0,0, +- 0,0,0,2,0,0,0,64,0,0,0,115,82,0,0,0, +- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, +- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, +- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, +- 132,0,0,90,6,0,100,8,0,100,9,0,132,0,0,90, +- 7,0,100,10,0,100,11,0,132,0,0,90,8,0,100,12, +- 0,83,41,13,218,11,95,77,111,100,117,108,101,76,111,99, +- 107,122,169,65,32,114,101,99,117,114,115,105,118,101,32,108, +- 111,99,107,32,105,109,112,108,101,109,101,110,116,97,116,105, +- 111,110,32,119,104,105,99,104,32,105,115,32,97,98,108,101, +- 32,116,111,32,100,101,116,101,99,116,32,100,101,97,100,108, +- 111,99,107,115,10,32,32,32,32,40,101,46,103,46,32,116, +- 104,114,101,97,100,32,49,32,116,114,121,105,110,103,32,116, +- 111,32,116,97,107,101,32,108,111,99,107,115,32,65,32,116, +- 104,101,110,32,66,44,32,97,110,100,32,116,104,114,101,97, +- 100,32,50,32,116,114,121,105,110,103,32,116,111,10,32,32, +- 32,32,116,97,107,101,32,108,111,99,107,115,32,66,32,116, +- 104,101,110,32,65,41,46,10,32,32,32,32,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, +- 0,115,70,0,0,0,116,0,0,106,1,0,131,0,0,124, +- 0,0,95,2,0,116,0,0,106,1,0,131,0,0,124,0, +- 0,95,3,0,124,1,0,124,0,0,95,4,0,100,0,0, +- 124,0,0,95,5,0,100,1,0,124,0,0,95,6,0,100, +- 1,0,124,0,0,95,7,0,100,0,0,83,41,2,78,233, +- 0,0,0,0,41,8,218,7,95,116,104,114,101,97,100,90, +- 13,97,108,108,111,99,97,116,101,95,108,111,99,107,218,4, +- 108,111,99,107,218,6,119,97,107,101,117,112,114,67,0,0, +- 0,218,5,111,119,110,101,114,218,5,99,111,117,110,116,218, +- 7,119,97,105,116,101,114,115,41,2,114,71,0,0,0,114, +- 67,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,72,0,0,0,172,0,0,0,115,12,0,0, +- 0,0,1,15,1,15,1,9,1,9,1,9,1,122,20,95, +- 77,111,100,117,108,101,76,111,99,107,46,95,95,105,110,105, +- 116,95,95,99,1,0,0,0,0,0,0,0,4,0,0,0, +- 2,0,0,0,67,0,0,0,115,87,0,0,0,116,0,0, +- 106,1,0,131,0,0,125,1,0,124,0,0,106,2,0,125, +- 2,0,120,59,0,116,3,0,106,4,0,124,2,0,131,1, +- 0,125,3,0,124,3,0,100,0,0,107,8,0,114,55,0, +- 100,1,0,83,124,3,0,106,2,0,125,2,0,124,2,0, +- 124,1,0,107,2,0,114,24,0,100,2,0,83,113,24,0, +- 100,0,0,83,41,3,78,70,84,41,5,114,85,0,0,0, +- 218,9,103,101,116,95,105,100,101,110,116,114,88,0,0,0, +- 218,12,95,98,108,111,99,107,105,110,103,95,111,110,218,3, +- 103,101,116,41,4,114,71,0,0,0,218,2,109,101,218,3, +- 116,105,100,114,86,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,12,104,97,115,95,100,101,97, +- 100,108,111,99,107,180,0,0,0,115,18,0,0,0,0,2, +- 12,1,9,1,3,1,15,1,12,1,4,1,9,1,12,1, +- 122,24,95,77,111,100,117,108,101,76,111,99,107,46,104,97, +- 115,95,100,101,97,100,108,111,99,107,99,1,0,0,0,0, +- 0,0,0,2,0,0,0,17,0,0,0,67,0,0,0,115, +- 214,0,0,0,116,0,0,106,1,0,131,0,0,125,1,0, +- 124,0,0,116,2,0,124,1,0,60,122,177,0,120,170,0, +- 124,0,0,106,3,0,143,130,0,1,124,0,0,106,4,0, +- 100,1,0,107,2,0,115,68,0,124,0,0,106,5,0,124, +- 1,0,107,2,0,114,96,0,124,1,0,124,0,0,95,5, +- 0,124,0,0,4,106,4,0,100,2,0,55,2,95,4,0, +- 100,3,0,83,124,0,0,106,6,0,131,0,0,114,127,0, +- 116,7,0,100,4,0,124,0,0,22,131,1,0,130,1,0, +- 110,0,0,124,0,0,106,8,0,106,9,0,100,5,0,131, +- 1,0,114,163,0,124,0,0,4,106,10,0,100,2,0,55, +- 2,95,10,0,110,0,0,87,100,6,0,81,88,124,0,0, +- 106,8,0,106,9,0,131,0,0,1,124,0,0,106,8,0, +- 106,11,0,131,0,0,1,113,28,0,87,100,6,0,116,2, +- 0,124,1,0,61,88,100,6,0,83,41,7,122,185,10,32, +- 32,32,32,32,32,32,32,65,99,113,117,105,114,101,32,116, +- 104,101,32,109,111,100,117,108,101,32,108,111,99,107,46,32, +- 32,73,102,32,97,32,112,111,116,101,110,116,105,97,108,32, +- 100,101,97,100,108,111,99,107,32,105,115,32,100,101,116,101, +- 99,116,101,100,44,10,32,32,32,32,32,32,32,32,97,32, +- 95,68,101,97,100,108,111,99,107,69,114,114,111,114,32,105, +- 115,32,114,97,105,115,101,100,46,10,32,32,32,32,32,32, +- 32,32,79,116,104,101,114,119,105,115,101,44,32,116,104,101, +- 32,108,111,99,107,32,105,115,32,97,108,119,97,121,115,32, +- 97,99,113,117,105,114,101,100,32,97,110,100,32,84,114,117, +- 101,32,105,115,32,114,101,116,117,114,110,101,100,46,10,32, +- 32,32,32,32,32,32,32,114,84,0,0,0,114,29,0,0, +- 0,84,122,23,100,101,97,100,108,111,99,107,32,100,101,116, +- 101,99,116,101,100,32,98,121,32,37,114,70,78,41,12,114, +- 85,0,0,0,114,91,0,0,0,114,92,0,0,0,114,86, +- 0,0,0,114,89,0,0,0,114,88,0,0,0,114,96,0, +- 0,0,114,82,0,0,0,114,87,0,0,0,218,7,97,99, +- 113,117,105,114,101,114,90,0,0,0,218,7,114,101,108,101, +- 97,115,101,41,2,114,71,0,0,0,114,95,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,97, +- 0,0,0,192,0,0,0,115,32,0,0,0,0,6,12,1, +- 10,1,3,1,3,1,10,1,30,1,9,1,15,1,4,1, +- 12,1,19,1,18,1,24,2,13,1,20,2,122,19,95,77, +- 111,100,117,108,101,76,111,99,107,46,97,99,113,117,105,114, +- 101,99,1,0,0,0,0,0,0,0,2,0,0,0,10,0, +- 0,0,67,0,0,0,115,165,0,0,0,116,0,0,106,1, +- 0,131,0,0,125,1,0,124,0,0,106,2,0,143,138,0, +- 1,124,0,0,106,3,0,124,1,0,107,3,0,114,52,0, +- 116,4,0,100,1,0,131,1,0,130,1,0,110,0,0,124, +- 0,0,106,5,0,100,2,0,107,4,0,115,73,0,116,6, +- 0,130,1,0,124,0,0,4,106,5,0,100,3,0,56,2, +- 95,5,0,124,0,0,106,5,0,100,2,0,107,2,0,114, +- 155,0,100,0,0,124,0,0,95,3,0,124,0,0,106,7, +- 0,114,155,0,124,0,0,4,106,7,0,100,3,0,56,2, +- 95,7,0,124,0,0,106,8,0,106,9,0,131,0,0,1, +- 113,155,0,110,0,0,87,100,0,0,81,88,100,0,0,83, +- 41,4,78,122,31,99,97,110,110,111,116,32,114,101,108,101, +- 97,115,101,32,117,110,45,97,99,113,117,105,114,101,100,32, +- 108,111,99,107,114,84,0,0,0,114,29,0,0,0,41,10, +- 114,85,0,0,0,114,91,0,0,0,114,86,0,0,0,114, +- 88,0,0,0,218,12,82,117,110,116,105,109,101,69,114,114, +- 111,114,114,89,0,0,0,218,14,65,115,115,101,114,116,105, +- 111,110,69,114,114,111,114,114,90,0,0,0,114,87,0,0, +- 0,114,98,0,0,0,41,2,114,71,0,0,0,114,95,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,98,0,0,0,217,0,0,0,115,22,0,0,0,0, +- 1,12,1,10,1,15,1,15,1,21,1,15,1,15,1,9, +- 1,9,1,15,1,122,19,95,77,111,100,117,108,101,76,111, +- 99,107,46,114,101,108,101,97,115,101,99,1,0,0,0,0, +- 0,0,0,1,0,0,0,4,0,0,0,67,0,0,0,115, +- 25,0,0,0,100,1,0,106,0,0,124,0,0,106,1,0, +- 116,2,0,124,0,0,131,1,0,131,2,0,83,41,2,78, +- 122,23,95,77,111,100,117,108,101,76,111,99,107,40,123,33, +- 114,125,41,32,97,116,32,123,125,41,3,114,47,0,0,0, +- 114,67,0,0,0,114,48,0,0,0,41,1,114,71,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,8,95,95,114,101,112,114,95,95,230,0,0,0,115,2, +- 0,0,0,0,1,122,20,95,77,111,100,117,108,101,76,111, +- 99,107,46,95,95,114,101,112,114,95,95,78,41,9,114,57, +- 0,0,0,114,56,0,0,0,114,58,0,0,0,114,59,0, +- 0,0,114,72,0,0,0,114,96,0,0,0,114,97,0,0, +- 0,114,98,0,0,0,114,101,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 83,0,0,0,166,0,0,0,115,12,0,0,0,12,4,6, +- 2,12,8,12,12,12,25,12,13,114,83,0,0,0,99,0, +- 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,64, +- 0,0,0,115,70,0,0,0,101,0,0,90,1,0,100,0, +- 0,90,2,0,100,1,0,90,3,0,100,2,0,100,3,0, +- 132,0,0,90,4,0,100,4,0,100,5,0,132,0,0,90, +- 5,0,100,6,0,100,7,0,132,0,0,90,6,0,100,8, +- 0,100,9,0,132,0,0,90,7,0,100,10,0,83,41,11, +- 218,16,95,68,117,109,109,121,77,111,100,117,108,101,76,111, +- 99,107,122,86,65,32,115,105,109,112,108,101,32,95,77,111, +- 100,117,108,101,76,111,99,107,32,101,113,117,105,118,97,108, +- 101,110,116,32,102,111,114,32,80,121,116,104,111,110,32,98, +- 117,105,108,100,115,32,119,105,116,104,111,117,116,10,32,32, +- 32,32,109,117,108,116,105,45,116,104,114,101,97,100,105,110, +- 103,32,115,117,112,112,111,114,116,46,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, +- 22,0,0,0,124,1,0,124,0,0,95,0,0,100,1,0, +- 124,0,0,95,1,0,100,0,0,83,41,2,78,114,84,0, +- 0,0,41,2,114,67,0,0,0,114,89,0,0,0,41,2, +- 114,71,0,0,0,114,67,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,72,0,0,0,238,0, +- 0,0,115,4,0,0,0,0,1,9,1,122,25,95,68,117, +- 109,109,121,77,111,100,117,108,101,76,111,99,107,46,95,95, +- 105,110,105,116,95,95,99,1,0,0,0,0,0,0,0,1, +- 0,0,0,3,0,0,0,67,0,0,0,115,19,0,0,0, +- 124,0,0,4,106,0,0,100,1,0,55,2,95,0,0,100, +- 2,0,83,41,3,78,114,29,0,0,0,84,41,1,114,89, +- 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,97,0,0,0,242,0, +- 0,0,115,4,0,0,0,0,1,15,1,122,24,95,68,117, +- 109,109,121,77,111,100,117,108,101,76,111,99,107,46,97,99, +- 113,117,105,114,101,99,1,0,0,0,0,0,0,0,1,0, +- 0,0,3,0,0,0,67,0,0,0,115,49,0,0,0,124, +- 0,0,106,0,0,100,1,0,107,2,0,114,30,0,116,1, +- 0,100,2,0,131,1,0,130,1,0,110,0,0,124,0,0, +- 4,106,0,0,100,3,0,56,2,95,0,0,100,0,0,83, +- 41,4,78,114,84,0,0,0,122,31,99,97,110,110,111,116, ++ 116,0,0,106,1,0,124,0,0,131,1,0,83,41,1,122, ++ 126,83,116,97,116,32,116,104,101,32,112,97,116,104,46,10, ++ 10,32,32,32,32,77,97,100,101,32,97,32,115,101,112,97, ++ 114,97,116,101,32,102,117,110,99,116,105,111,110,32,116,111, ++ 32,109,97,107,101,32,105,116,32,101,97,115,105,101,114,32, ++ 116,111,32,111,118,101,114,114,105,100,101,32,105,110,32,101, ++ 120,112,101,114,105,109,101,110,116,115,10,32,32,32,32,40, ++ 101,46,103,46,32,99,97,99,104,101,32,115,116,97,116,32, ++ 114,101,115,117,108,116,115,41,46,10,10,32,32,32,32,41, ++ 2,114,4,0,0,0,90,4,115,116,97,116,41,1,114,36, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,218,10,95,112,97,116,104,95,115,116,97,116,68,0, ++ 0,0,115,2,0,0,0,0,7,114,40,0,0,0,99,2, ++ 0,0,0,0,0,0,0,3,0,0,0,11,0,0,0,67, ++ 0,0,0,115,58,0,0,0,121,16,0,116,0,0,124,0, ++ 0,131,1,0,125,2,0,87,110,22,0,4,116,1,0,107, ++ 10,0,114,40,0,1,1,1,100,1,0,83,89,110,1,0, ++ 88,124,2,0,106,2,0,100,2,0,64,124,1,0,107,2, ++ 0,83,41,3,122,49,84,101,115,116,32,119,104,101,116,104, ++ 101,114,32,116,104,101,32,112,97,116,104,32,105,115,32,116, ++ 104,101,32,115,112,101,99,105,102,105,101,100,32,109,111,100, ++ 101,32,116,121,112,101,46,70,105,0,240,0,0,41,3,114, ++ 40,0,0,0,218,7,79,83,69,114,114,111,114,218,7,115, ++ 116,95,109,111,100,101,41,3,114,36,0,0,0,218,4,109, ++ 111,100,101,90,9,115,116,97,116,95,105,110,102,111,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,18,95, ++ 112,97,116,104,95,105,115,95,109,111,100,101,95,116,121,112, ++ 101,78,0,0,0,115,10,0,0,0,0,2,3,1,16,1, ++ 13,1,9,1,114,44,0,0,0,99,1,0,0,0,0,0, ++ 0,0,1,0,0,0,3,0,0,0,67,0,0,0,115,13, ++ 0,0,0,116,0,0,124,0,0,100,1,0,131,2,0,83, ++ 41,2,122,31,82,101,112,108,97,99,101,109,101,110,116,32, ++ 102,111,114,32,111,115,46,112,97,116,104,46,105,115,102,105, ++ 108,101,46,105,0,128,0,0,41,1,114,44,0,0,0,41, ++ 1,114,36,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,12,95,112,97,116,104,95,105,115,102, ++ 105,108,101,87,0,0,0,115,2,0,0,0,0,2,114,45, ++ 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, ++ 3,0,0,0,67,0,0,0,115,34,0,0,0,124,0,0, ++ 115,21,0,116,0,0,106,1,0,131,0,0,125,0,0,110, ++ 0,0,116,2,0,124,0,0,100,1,0,131,2,0,83,41, ++ 2,122,30,82,101,112,108,97,99,101,109,101,110,116,32,102, ++ 111,114,32,111,115,46,112,97,116,104,46,105,115,100,105,114, ++ 46,105,0,64,0,0,41,3,114,4,0,0,0,218,6,103, ++ 101,116,99,119,100,114,44,0,0,0,41,1,114,36,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,11,95,112,97,116,104,95,105,115,100,105,114,92,0,0, ++ 0,115,6,0,0,0,0,2,6,1,15,1,114,47,0,0, ++ 0,105,182,1,0,0,99,3,0,0,0,0,0,0,0,6, ++ 0,0,0,17,0,0,0,67,0,0,0,115,192,0,0,0, ++ 100,1,0,106,0,0,124,0,0,116,1,0,124,0,0,131, ++ 1,0,131,2,0,125,3,0,116,2,0,106,3,0,124,3, ++ 0,116,2,0,106,4,0,116,2,0,106,5,0,66,116,2, ++ 0,106,6,0,66,124,2,0,100,2,0,64,131,3,0,125, ++ 4,0,121,60,0,116,7,0,106,8,0,124,4,0,100,3, ++ 0,131,2,0,143,20,0,125,5,0,124,5,0,106,9,0, ++ 124,1,0,131,1,0,1,87,100,4,0,81,88,116,2,0, ++ 106,10,0,124,3,0,124,0,0,131,2,0,1,87,110,59, ++ 0,4,116,11,0,107,10,0,114,187,0,1,1,1,121,17, ++ 0,116,2,0,106,12,0,124,3,0,131,1,0,1,87,110, ++ 18,0,4,116,11,0,107,10,0,114,179,0,1,1,1,89, ++ 110,1,0,88,130,0,0,89,110,1,0,88,100,4,0,83, ++ 41,5,122,162,66,101,115,116,45,101,102,102,111,114,116,32, ++ 102,117,110,99,116,105,111,110,32,116,111,32,119,114,105,116, ++ 101,32,100,97,116,97,32,116,111,32,97,32,112,97,116,104, ++ 32,97,116,111,109,105,99,97,108,108,121,46,10,32,32,32, ++ 32,66,101,32,112,114,101,112,97,114,101,100,32,116,111,32, ++ 104,97,110,100,108,101,32,97,32,70,105,108,101,69,120,105, ++ 115,116,115,69,114,114,111,114,32,105,102,32,99,111,110,99, ++ 117,114,114,101,110,116,32,119,114,105,116,105,110,103,32,111, ++ 102,32,116,104,101,10,32,32,32,32,116,101,109,112,111,114, ++ 97,114,121,32,102,105,108,101,32,105,115,32,97,116,116,101, ++ 109,112,116,101,100,46,122,5,123,125,46,123,125,105,182,1, ++ 0,0,90,2,119,98,78,41,13,218,6,102,111,114,109,97, ++ 116,218,2,105,100,114,4,0,0,0,90,4,111,112,101,110, ++ 90,6,79,95,69,88,67,76,90,7,79,95,67,82,69,65, ++ 84,90,8,79,95,87,82,79,78,76,89,218,3,95,105,111, ++ 218,6,70,105,108,101,73,79,218,5,119,114,105,116,101,218, ++ 7,114,101,112,108,97,99,101,114,41,0,0,0,90,6,117, ++ 110,108,105,110,107,41,6,114,36,0,0,0,218,4,100,97, ++ 116,97,114,43,0,0,0,90,8,112,97,116,104,95,116,109, ++ 112,90,2,102,100,218,4,102,105,108,101,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,13,95,119,114,105, ++ 116,101,95,97,116,111,109,105,99,99,0,0,0,115,26,0, ++ 0,0,0,5,24,1,9,1,33,1,3,3,21,1,19,1, ++ 20,1,13,1,3,1,17,1,13,1,5,1,114,56,0,0, ++ 0,99,2,0,0,0,0,0,0,0,3,0,0,0,7,0, ++ 0,0,67,0,0,0,115,95,0,0,0,120,69,0,100,1, ++ 0,100,2,0,100,3,0,100,4,0,103,4,0,68,93,49, ++ 0,125,2,0,116,0,0,124,1,0,124,2,0,131,2,0, ++ 114,19,0,116,1,0,124,0,0,124,2,0,116,2,0,124, ++ 1,0,124,2,0,131,2,0,131,3,0,1,113,19,0,113, ++ 19,0,87,124,0,0,106,3,0,106,4,0,124,1,0,106, ++ 3,0,131,1,0,1,100,5,0,83,41,6,122,47,83,105, ++ 109,112,108,101,32,115,117,98,115,116,105,116,117,116,101,32, ++ 102,111,114,32,102,117,110,99,116,111,111,108,115,46,117,112, ++ 100,97,116,101,95,119,114,97,112,112,101,114,46,218,10,95, ++ 95,109,111,100,117,108,101,95,95,218,8,95,95,110,97,109, ++ 101,95,95,218,12,95,95,113,117,97,108,110,97,109,101,95, ++ 95,218,7,95,95,100,111,99,95,95,78,41,5,218,7,104, ++ 97,115,97,116,116,114,218,7,115,101,116,97,116,116,114,218, ++ 7,103,101,116,97,116,116,114,218,8,95,95,100,105,99,116, ++ 95,95,218,6,117,112,100,97,116,101,41,3,90,3,110,101, ++ 119,90,3,111,108,100,114,53,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,5,95,119,114,97, ++ 112,121,0,0,0,115,8,0,0,0,0,2,25,1,15,1, ++ 32,1,114,66,0,0,0,99,1,0,0,0,0,0,0,0, ++ 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, ++ 0,116,0,0,116,1,0,131,1,0,124,0,0,131,1,0, ++ 83,41,1,78,41,2,218,4,116,121,112,101,114,8,0,0, ++ 0,41,1,218,4,110,97,109,101,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,11,95,110,101,119,95,109, ++ 111,100,117,108,101,129,0,0,0,115,2,0,0,0,0,1, ++ 114,69,0,0,0,99,0,0,0,0,0,0,0,0,0,0, ++ 0,0,2,0,0,0,64,0,0,0,115,58,0,0,0,101, ++ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, ++ 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, ++ 100,5,0,132,0,0,90,5,0,100,6,0,100,7,0,132, ++ 0,0,90,6,0,100,8,0,83,41,9,218,13,95,77,97, ++ 110,97,103,101,82,101,108,111,97,100,122,63,77,97,110,97, ++ 103,101,115,32,116,104,101,32,112,111,115,115,105,98,108,101, ++ 32,99,108,101,97,110,45,117,112,32,111,102,32,115,121,115, ++ 46,109,111,100,117,108,101,115,32,102,111,114,32,108,111,97, ++ 100,95,109,111,100,117,108,101,40,41,46,99,2,0,0,0, ++ 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, ++ 115,13,0,0,0,124,1,0,124,0,0,95,0,0,100,0, ++ 0,83,41,1,78,41,1,218,5,95,110,97,109,101,41,2, ++ 218,4,115,101,108,102,114,68,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,8,95,95,105,110, ++ 105,116,95,95,141,0,0,0,115,2,0,0,0,0,1,122, ++ 22,95,77,97,110,97,103,101,82,101,108,111,97,100,46,95, ++ 95,105,110,105,116,95,95,99,1,0,0,0,0,0,0,0, ++ 1,0,0,0,2,0,0,0,67,0,0,0,115,25,0,0, ++ 0,124,0,0,106,0,0,116,1,0,106,2,0,107,6,0, ++ 124,0,0,95,3,0,100,0,0,83,41,1,78,41,4,114, ++ 71,0,0,0,114,8,0,0,0,218,7,109,111,100,117,108, ++ 101,115,218,10,95,105,115,95,114,101,108,111,97,100,41,1, ++ 114,72,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,218,9,95,95,101,110,116,101,114,95,95,144, ++ 0,0,0,115,2,0,0,0,0,1,122,23,95,77,97,110, ++ 97,103,101,82,101,108,111,97,100,46,95,95,101,110,116,101, ++ 114,95,95,99,1,0,0,0,0,0,0,0,2,0,0,0, ++ 11,0,0,0,71,0,0,0,115,80,0,0,0,116,0,0, ++ 100,1,0,100,2,0,132,0,0,124,1,0,68,131,1,0, ++ 131,1,0,114,76,0,124,0,0,106,1,0,12,114,76,0, ++ 121,17,0,116,2,0,106,3,0,124,0,0,106,4,0,61, ++ 87,113,76,0,4,116,5,0,107,10,0,114,72,0,1,1, ++ 1,89,113,76,0,88,110,0,0,100,0,0,83,41,3,78, ++ 99,1,0,0,0,0,0,0,0,2,0,0,0,3,0,0, ++ 0,115,0,0,0,115,27,0,0,0,124,0,0,93,17,0, ++ 125,1,0,124,1,0,100,0,0,107,9,0,86,1,113,3, ++ 0,100,0,0,83,41,1,78,114,5,0,0,0,41,2,114, ++ 23,0,0,0,218,3,97,114,103,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,250,9,60,103,101,110,101,120, ++ 112,114,62,148,0,0,0,115,2,0,0,0,6,0,122,41, ++ 95,77,97,110,97,103,101,82,101,108,111,97,100,46,95,95, ++ 101,120,105,116,95,95,46,60,108,111,99,97,108,115,62,46, ++ 60,103,101,110,101,120,112,114,62,41,6,218,3,97,110,121, ++ 114,75,0,0,0,114,8,0,0,0,114,74,0,0,0,114, ++ 71,0,0,0,218,8,75,101,121,69,114,114,111,114,41,2, ++ 114,72,0,0,0,218,4,97,114,103,115,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,8,95,95,101,120, ++ 105,116,95,95,147,0,0,0,115,10,0,0,0,0,1,35, ++ 1,3,1,17,1,13,1,122,22,95,77,97,110,97,103,101, ++ 82,101,108,111,97,100,46,95,95,101,120,105,116,95,95,78, ++ 41,7,114,58,0,0,0,114,57,0,0,0,114,59,0,0, ++ 0,114,60,0,0,0,114,73,0,0,0,114,76,0,0,0, ++ 114,82,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,70,0,0,0,137,0, ++ 0,0,115,8,0,0,0,12,2,6,2,12,3,12,3,114, ++ 70,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, ++ 0,1,0,0,0,64,0,0,0,115,16,0,0,0,101,0, ++ 0,90,1,0,100,0,0,90,2,0,100,1,0,83,41,2, ++ 218,14,95,68,101,97,100,108,111,99,107,69,114,114,111,114, ++ 78,41,3,114,58,0,0,0,114,57,0,0,0,114,59,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,83,0,0,0,162,0,0,0,115, ++ 2,0,0,0,12,1,114,83,0,0,0,99,0,0,0,0, ++ 0,0,0,0,0,0,0,0,2,0,0,0,64,0,0,0, ++ 115,82,0,0,0,101,0,0,90,1,0,100,0,0,90,2, ++ 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, ++ 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, ++ 6,0,100,7,0,132,0,0,90,6,0,100,8,0,100,9, ++ 0,132,0,0,90,7,0,100,10,0,100,11,0,132,0,0, ++ 90,8,0,100,12,0,83,41,13,218,11,95,77,111,100,117, ++ 108,101,76,111,99,107,122,169,65,32,114,101,99,117,114,115, ++ 105,118,101,32,108,111,99,107,32,105,109,112,108,101,109,101, ++ 110,116,97,116,105,111,110,32,119,104,105,99,104,32,105,115, ++ 32,97,98,108,101,32,116,111,32,100,101,116,101,99,116,32, ++ 100,101,97,100,108,111,99,107,115,10,32,32,32,32,40,101, ++ 46,103,46,32,116,104,114,101,97,100,32,49,32,116,114,121, ++ 105,110,103,32,116,111,32,116,97,107,101,32,108,111,99,107, ++ 115,32,65,32,116,104,101,110,32,66,44,32,97,110,100,32, ++ 116,104,114,101,97,100,32,50,32,116,114,121,105,110,103,32, ++ 116,111,10,32,32,32,32,116,97,107,101,32,108,111,99,107, ++ 115,32,66,32,116,104,101,110,32,65,41,46,10,32,32,32, ++ 32,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, ++ 0,0,67,0,0,0,115,70,0,0,0,116,0,0,106,1, ++ 0,131,0,0,124,0,0,95,2,0,116,0,0,106,1,0, ++ 131,0,0,124,0,0,95,3,0,124,1,0,124,0,0,95, ++ 4,0,100,0,0,124,0,0,95,5,0,100,1,0,124,0, ++ 0,95,6,0,100,1,0,124,0,0,95,7,0,100,0,0, ++ 83,41,2,78,233,0,0,0,0,41,8,218,7,95,116,104, ++ 114,101,97,100,90,13,97,108,108,111,99,97,116,101,95,108, ++ 111,99,107,218,4,108,111,99,107,218,6,119,97,107,101,117, ++ 112,114,68,0,0,0,218,5,111,119,110,101,114,218,5,99, ++ 111,117,110,116,218,7,119,97,105,116,101,114,115,41,2,114, ++ 72,0,0,0,114,68,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,73,0,0,0,172,0,0, ++ 0,115,12,0,0,0,0,1,15,1,15,1,9,1,9,1, ++ 9,1,122,20,95,77,111,100,117,108,101,76,111,99,107,46, ++ 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, ++ 0,4,0,0,0,2,0,0,0,67,0,0,0,115,87,0, ++ 0,0,116,0,0,106,1,0,131,0,0,125,1,0,124,0, ++ 0,106,2,0,125,2,0,120,59,0,116,3,0,106,4,0, ++ 124,2,0,131,1,0,125,3,0,124,3,0,100,0,0,107, ++ 8,0,114,55,0,100,1,0,83,124,3,0,106,2,0,125, ++ 2,0,124,2,0,124,1,0,107,2,0,114,24,0,100,2, ++ 0,83,113,24,0,100,0,0,83,41,3,78,70,84,41,5, ++ 114,86,0,0,0,218,9,103,101,116,95,105,100,101,110,116, ++ 114,89,0,0,0,218,12,95,98,108,111,99,107,105,110,103, ++ 95,111,110,218,3,103,101,116,41,4,114,72,0,0,0,218, ++ 2,109,101,218,3,116,105,100,114,87,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,12,104,97, ++ 115,95,100,101,97,100,108,111,99,107,180,0,0,0,115,18, ++ 0,0,0,0,2,12,1,9,1,3,1,15,1,12,1,4, ++ 1,9,1,12,1,122,24,95,77,111,100,117,108,101,76,111, ++ 99,107,46,104,97,115,95,100,101,97,100,108,111,99,107,99, ++ 1,0,0,0,0,0,0,0,2,0,0,0,16,0,0,0, ++ 67,0,0,0,115,214,0,0,0,116,0,0,106,1,0,131, ++ 0,0,125,1,0,124,0,0,116,2,0,124,1,0,60,122, ++ 177,0,120,170,0,124,0,0,106,3,0,143,130,0,1,124, ++ 0,0,106,4,0,100,1,0,107,2,0,115,68,0,124,0, ++ 0,106,5,0,124,1,0,107,2,0,114,96,0,124,1,0, ++ 124,0,0,95,5,0,124,0,0,4,106,4,0,100,2,0, ++ 55,2,95,4,0,100,3,0,83,124,0,0,106,6,0,131, ++ 0,0,114,127,0,116,7,0,100,4,0,124,0,0,22,131, ++ 1,0,130,1,0,110,0,0,124,0,0,106,8,0,106,9, ++ 0,100,5,0,131,1,0,114,163,0,124,0,0,4,106,10, ++ 0,100,2,0,55,2,95,10,0,110,0,0,87,100,6,0, ++ 81,88,124,0,0,106,8,0,106,9,0,131,0,0,1,124, ++ 0,0,106,8,0,106,11,0,131,0,0,1,113,28,0,87, ++ 100,6,0,116,2,0,124,1,0,61,88,100,6,0,83,41, ++ 7,122,185,10,32,32,32,32,32,32,32,32,65,99,113,117, ++ 105,114,101,32,116,104,101,32,109,111,100,117,108,101,32,108, ++ 111,99,107,46,32,32,73,102,32,97,32,112,111,116,101,110, ++ 116,105,97,108,32,100,101,97,100,108,111,99,107,32,105,115, ++ 32,100,101,116,101,99,116,101,100,44,10,32,32,32,32,32, ++ 32,32,32,97,32,95,68,101,97,100,108,111,99,107,69,114, ++ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,32, ++ 32,32,32,32,32,32,32,79,116,104,101,114,119,105,115,101, ++ 44,32,116,104,101,32,108,111,99,107,32,105,115,32,97,108, ++ 119,97,121,115,32,97,99,113,117,105,114,101,100,32,97,110, ++ 100,32,84,114,117,101,32,105,115,32,114,101,116,117,114,110, ++ 101,100,46,10,32,32,32,32,32,32,32,32,114,85,0,0, ++ 0,114,30,0,0,0,84,122,23,100,101,97,100,108,111,99, ++ 107,32,100,101,116,101,99,116,101,100,32,98,121,32,37,114, ++ 70,78,41,12,114,86,0,0,0,114,92,0,0,0,114,93, ++ 0,0,0,114,87,0,0,0,114,90,0,0,0,114,89,0, ++ 0,0,114,97,0,0,0,114,83,0,0,0,114,88,0,0, ++ 0,218,7,97,99,113,117,105,114,101,114,91,0,0,0,218, ++ 7,114,101,108,101,97,115,101,41,2,114,72,0,0,0,114, ++ 96,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,98,0,0,0,192,0,0,0,115,32,0,0, ++ 0,0,6,12,1,10,1,3,1,3,1,10,1,30,1,9, ++ 1,15,1,4,1,12,1,19,1,18,1,24,2,13,1,20, ++ 2,122,19,95,77,111,100,117,108,101,76,111,99,107,46,97, ++ 99,113,117,105,114,101,99,1,0,0,0,0,0,0,0,2, ++ 0,0,0,10,0,0,0,67,0,0,0,115,165,0,0,0, ++ 116,0,0,106,1,0,131,0,0,125,1,0,124,0,0,106, ++ 2,0,143,138,0,1,124,0,0,106,3,0,124,1,0,107, ++ 3,0,114,52,0,116,4,0,100,1,0,131,1,0,130,1, ++ 0,110,0,0,124,0,0,106,5,0,100,2,0,107,4,0, ++ 115,73,0,116,6,0,130,1,0,124,0,0,4,106,5,0, ++ 100,3,0,56,2,95,5,0,124,0,0,106,5,0,100,2, ++ 0,107,2,0,114,155,0,100,0,0,124,0,0,95,3,0, ++ 124,0,0,106,7,0,114,155,0,124,0,0,4,106,7,0, ++ 100,3,0,56,2,95,7,0,124,0,0,106,8,0,106,9, ++ 0,131,0,0,1,113,155,0,110,0,0,87,100,0,0,81, ++ 88,100,0,0,83,41,4,78,122,31,99,97,110,110,111,116, + 32,114,101,108,101,97,115,101,32,117,110,45,97,99,113,117, +- 105,114,101,100,32,108,111,99,107,114,29,0,0,0,41,2, +- 114,89,0,0,0,114,99,0,0,0,41,1,114,71,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 114,98,0,0,0,246,0,0,0,115,6,0,0,0,0,1, +- 15,1,15,1,122,24,95,68,117,109,109,121,77,111,100,117, +- 108,101,76,111,99,107,46,114,101,108,101,97,115,101,99,1, +- 0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,67, +- 0,0,0,115,25,0,0,0,100,1,0,106,0,0,124,0, +- 0,106,1,0,116,2,0,124,0,0,131,1,0,131,2,0, +- 83,41,2,78,122,28,95,68,117,109,109,121,77,111,100,117, +- 108,101,76,111,99,107,40,123,33,114,125,41,32,97,116,32, +- 123,125,41,3,114,47,0,0,0,114,67,0,0,0,114,48, +- 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,101,0,0,0,251,0, +- 0,0,115,2,0,0,0,0,1,122,25,95,68,117,109,109, +- 121,77,111,100,117,108,101,76,111,99,107,46,95,95,114,101, +- 112,114,95,95,78,41,8,114,57,0,0,0,114,56,0,0, +- 0,114,58,0,0,0,114,59,0,0,0,114,72,0,0,0, +- 114,97,0,0,0,114,98,0,0,0,114,101,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,102,0,0,0,234,0,0,0,115,10,0,0, +- 0,12,2,6,2,12,4,12,4,12,5,114,102,0,0,0, +- 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, +- 0,64,0,0,0,115,52,0,0,0,101,0,0,90,1,0, +- 100,0,0,90,2,0,100,1,0,100,2,0,132,0,0,90, +- 3,0,100,3,0,100,4,0,132,0,0,90,4,0,100,5, +- 0,100,6,0,132,0,0,90,5,0,100,7,0,83,41,8, +- 218,18,95,77,111,100,117,108,101,76,111,99,107,77,97,110, +- 97,103,101,114,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,2,0,0,0,67,0,0,0,115,22,0,0,0,124,1, +- 0,124,0,0,95,0,0,100,0,0,124,0,0,95,1,0, +- 100,0,0,83,41,1,78,41,2,114,70,0,0,0,218,5, +- 95,108,111,99,107,41,2,114,71,0,0,0,114,67,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 114,72,0,0,0,1,1,0,0,115,4,0,0,0,0,1, +- 9,1,122,27,95,77,111,100,117,108,101,76,111,99,107,77, +- 97,110,97,103,101,114,46,95,95,105,110,105,116,95,95,99, +- 1,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0, +- 67,0,0,0,115,53,0,0,0,122,22,0,116,0,0,124, +- 0,0,106,1,0,131,1,0,124,0,0,95,2,0,87,100, +- 0,0,116,3,0,106,4,0,131,0,0,1,88,124,0,0, +- 106,2,0,106,5,0,131,0,0,1,100,0,0,83,41,1, +- 78,41,6,218,16,95,103,101,116,95,109,111,100,117,108,101, +- 95,108,111,99,107,114,70,0,0,0,114,104,0,0,0,218, +- 4,95,105,109,112,218,12,114,101,108,101,97,115,101,95,108, +- 111,99,107,114,97,0,0,0,41,1,114,71,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,75, +- 0,0,0,5,1,0,0,115,8,0,0,0,0,1,3,1, +- 22,2,11,1,122,28,95,77,111,100,117,108,101,76,111,99, +- 107,77,97,110,97,103,101,114,46,95,95,101,110,116,101,114, +- 95,95,99,1,0,0,0,0,0,0,0,3,0,0,0,1, +- 0,0,0,79,0,0,0,115,17,0,0,0,124,0,0,106, +- 0,0,106,1,0,131,0,0,1,100,0,0,83,41,1,78, +- 41,2,114,104,0,0,0,114,98,0,0,0,41,3,114,71, +- 0,0,0,114,80,0,0,0,218,6,107,119,97,114,103,115, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 81,0,0,0,12,1,0,0,115,2,0,0,0,0,1,122, +- 27,95,77,111,100,117,108,101,76,111,99,107,77,97,110,97, +- 103,101,114,46,95,95,101,120,105,116,95,95,78,41,6,114, +- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,72, +- 0,0,0,114,75,0,0,0,114,81,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,103,0,0,0,255,0,0,0,115,6,0,0,0,12, +- 2,12,4,12,7,114,103,0,0,0,99,1,0,0,0,0, +- 0,0,0,3,0,0,0,11,0,0,0,3,0,0,0,115, +- 142,0,0,0,100,1,0,125,1,0,121,17,0,116,0,0, +- 136,0,0,25,131,0,0,125,1,0,87,110,18,0,4,116, +- 1,0,107,10,0,114,43,0,1,1,1,89,110,1,0,88, +- 124,1,0,100,1,0,107,8,0,114,138,0,116,2,0,100, +- 1,0,107,8,0,114,83,0,116,3,0,136,0,0,131,1, +- 0,125,1,0,110,12,0,116,4,0,136,0,0,131,1,0, +- 125,1,0,135,0,0,102,1,0,100,2,0,100,3,0,134, +- 0,0,125,2,0,116,5,0,106,6,0,124,1,0,124,2, +- 0,131,2,0,116,0,0,136,0,0,60,110,0,0,124,1, +- 0,83,41,4,122,109,71,101,116,32,111,114,32,99,114,101, +- 97,116,101,32,116,104,101,32,109,111,100,117,108,101,32,108, ++ 105,114,101,100,32,108,111,99,107,114,85,0,0,0,114,30, ++ 0,0,0,41,10,114,86,0,0,0,114,92,0,0,0,114, ++ 87,0,0,0,114,89,0,0,0,218,12,82,117,110,116,105, ++ 109,101,69,114,114,111,114,114,90,0,0,0,218,14,65,115, ++ 115,101,114,116,105,111,110,69,114,114,111,114,114,91,0,0, ++ 0,114,88,0,0,0,114,99,0,0,0,41,2,114,72,0, ++ 0,0,114,96,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,99,0,0,0,217,0,0,0,115, ++ 22,0,0,0,0,1,12,1,10,1,15,1,15,1,21,1, ++ 15,1,15,1,9,1,9,1,15,1,122,19,95,77,111,100, ++ 117,108,101,76,111,99,107,46,114,101,108,101,97,115,101,99, ++ 1,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0, ++ 67,0,0,0,115,25,0,0,0,100,1,0,106,0,0,124, ++ 0,0,106,1,0,116,2,0,124,0,0,131,1,0,131,2, ++ 0,83,41,2,78,122,23,95,77,111,100,117,108,101,76,111, ++ 99,107,40,123,33,114,125,41,32,97,116,32,123,125,41,3, ++ 114,48,0,0,0,114,68,0,0,0,114,49,0,0,0,41, ++ 1,114,72,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,8,95,95,114,101,112,114,95,95,230, ++ 0,0,0,115,2,0,0,0,0,1,122,20,95,77,111,100, ++ 117,108,101,76,111,99,107,46,95,95,114,101,112,114,95,95, ++ 78,41,9,114,58,0,0,0,114,57,0,0,0,114,59,0, ++ 0,0,114,60,0,0,0,114,73,0,0,0,114,97,0,0, ++ 0,114,98,0,0,0,114,99,0,0,0,114,102,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,84,0,0,0,166,0,0,0,115,12,0, ++ 0,0,12,4,6,2,12,8,12,12,12,25,12,13,114,84, ++ 0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, ++ 2,0,0,0,64,0,0,0,115,70,0,0,0,101,0,0, ++ 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, ++ 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, ++ 0,132,0,0,90,5,0,100,6,0,100,7,0,132,0,0, ++ 90,6,0,100,8,0,100,9,0,132,0,0,90,7,0,100, ++ 10,0,83,41,11,218,16,95,68,117,109,109,121,77,111,100, ++ 117,108,101,76,111,99,107,122,86,65,32,115,105,109,112,108, ++ 101,32,95,77,111,100,117,108,101,76,111,99,107,32,101,113, ++ 117,105,118,97,108,101,110,116,32,102,111,114,32,80,121,116, ++ 104,111,110,32,98,117,105,108,100,115,32,119,105,116,104,111, ++ 117,116,10,32,32,32,32,109,117,108,116,105,45,116,104,114, ++ 101,97,100,105,110,103,32,115,117,112,112,111,114,116,46,99, ++ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, ++ 67,0,0,0,115,22,0,0,0,124,1,0,124,0,0,95, ++ 0,0,100,1,0,124,0,0,95,1,0,100,0,0,83,41, ++ 2,78,114,85,0,0,0,41,2,114,68,0,0,0,114,90, ++ 0,0,0,41,2,114,72,0,0,0,114,68,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,73, ++ 0,0,0,238,0,0,0,115,4,0,0,0,0,1,9,1, ++ 122,25,95,68,117,109,109,121,77,111,100,117,108,101,76,111, ++ 99,107,46,95,95,105,110,105,116,95,95,99,1,0,0,0, ++ 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, ++ 115,19,0,0,0,124,0,0,4,106,0,0,100,1,0,55, ++ 2,95,0,0,100,2,0,83,41,3,78,114,30,0,0,0, ++ 84,41,1,114,90,0,0,0,41,1,114,72,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,98, ++ 0,0,0,242,0,0,0,115,4,0,0,0,0,1,15,1, ++ 122,24,95,68,117,109,109,121,77,111,100,117,108,101,76,111, ++ 99,107,46,97,99,113,117,105,114,101,99,1,0,0,0,0, ++ 0,0,0,1,0,0,0,3,0,0,0,67,0,0,0,115, ++ 49,0,0,0,124,0,0,106,0,0,100,1,0,107,2,0, ++ 114,30,0,116,1,0,100,2,0,131,1,0,130,1,0,110, ++ 0,0,124,0,0,4,106,0,0,100,3,0,56,2,95,0, ++ 0,100,0,0,83,41,4,78,114,85,0,0,0,122,31,99, ++ 97,110,110,111,116,32,114,101,108,101,97,115,101,32,117,110, ++ 45,97,99,113,117,105,114,101,100,32,108,111,99,107,114,30, ++ 0,0,0,41,2,114,90,0,0,0,114,100,0,0,0,41, ++ 1,114,72,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,114,99,0,0,0,246,0,0,0,115,6, ++ 0,0,0,0,1,15,1,15,1,122,24,95,68,117,109,109, ++ 121,77,111,100,117,108,101,76,111,99,107,46,114,101,108,101, ++ 97,115,101,99,1,0,0,0,0,0,0,0,1,0,0,0, ++ 4,0,0,0,67,0,0,0,115,25,0,0,0,100,1,0, ++ 106,0,0,124,0,0,106,1,0,116,2,0,124,0,0,131, ++ 1,0,131,2,0,83,41,2,78,122,28,95,68,117,109,109, ++ 121,77,111,100,117,108,101,76,111,99,107,40,123,33,114,125, ++ 41,32,97,116,32,123,125,41,3,114,48,0,0,0,114,68, ++ 0,0,0,114,49,0,0,0,41,1,114,72,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,102, ++ 0,0,0,251,0,0,0,115,2,0,0,0,0,1,122,25, ++ 95,68,117,109,109,121,77,111,100,117,108,101,76,111,99,107, ++ 46,95,95,114,101,112,114,95,95,78,41,8,114,58,0,0, ++ 0,114,57,0,0,0,114,59,0,0,0,114,60,0,0,0, ++ 114,73,0,0,0,114,98,0,0,0,114,99,0,0,0,114, ++ 102,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,103,0,0,0,234,0,0, ++ 0,115,10,0,0,0,12,2,6,2,12,4,12,4,12,5, ++ 114,103,0,0,0,99,0,0,0,0,0,0,0,0,0,0, ++ 0,0,2,0,0,0,64,0,0,0,115,52,0,0,0,101, ++ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,100,2, ++ 0,132,0,0,90,3,0,100,3,0,100,4,0,132,0,0, ++ 90,4,0,100,5,0,100,6,0,132,0,0,90,5,0,100, ++ 7,0,83,41,8,218,18,95,77,111,100,117,108,101,76,111, ++ 99,107,77,97,110,97,103,101,114,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,22, ++ 0,0,0,124,1,0,124,0,0,95,0,0,100,0,0,124, ++ 0,0,95,1,0,100,0,0,83,41,1,78,41,2,114,71, ++ 0,0,0,218,5,95,108,111,99,107,41,2,114,72,0,0, ++ 0,114,68,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,114,73,0,0,0,1,1,0,0,115,4, ++ 0,0,0,0,1,9,1,122,27,95,77,111,100,117,108,101, ++ 76,111,99,107,77,97,110,97,103,101,114,46,95,95,105,110, ++ 105,116,95,95,99,1,0,0,0,0,0,0,0,1,0,0, ++ 0,10,0,0,0,67,0,0,0,115,53,0,0,0,122,22, ++ 0,116,0,0,124,0,0,106,1,0,131,1,0,124,0,0, ++ 95,2,0,87,100,0,0,116,3,0,106,4,0,131,0,0, ++ 1,88,124,0,0,106,2,0,106,5,0,131,0,0,1,100, ++ 0,0,83,41,1,78,41,6,218,16,95,103,101,116,95,109, ++ 111,100,117,108,101,95,108,111,99,107,114,71,0,0,0,114, ++ 105,0,0,0,218,4,95,105,109,112,218,12,114,101,108,101, ++ 97,115,101,95,108,111,99,107,114,98,0,0,0,41,1,114, ++ 72,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,76,0,0,0,5,1,0,0,115,8,0,0, ++ 0,0,1,3,1,22,2,11,1,122,28,95,77,111,100,117, ++ 108,101,76,111,99,107,77,97,110,97,103,101,114,46,95,95, ++ 101,110,116,101,114,95,95,99,1,0,0,0,0,0,0,0, ++ 3,0,0,0,1,0,0,0,79,0,0,0,115,17,0,0, ++ 0,124,0,0,106,0,0,106,1,0,131,0,0,1,100,0, ++ 0,83,41,1,78,41,2,114,105,0,0,0,114,99,0,0, ++ 0,41,3,114,72,0,0,0,114,81,0,0,0,218,6,107, ++ 119,97,114,103,115,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,82,0,0,0,12,1,0,0,115,2,0, ++ 0,0,0,1,122,27,95,77,111,100,117,108,101,76,111,99, ++ 107,77,97,110,97,103,101,114,46,95,95,101,120,105,116,95, ++ 95,78,41,6,114,58,0,0,0,114,57,0,0,0,114,59, ++ 0,0,0,114,73,0,0,0,114,76,0,0,0,114,82,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,104,0,0,0,255,0,0,0,115, ++ 6,0,0,0,12,2,12,4,12,7,114,104,0,0,0,99, ++ 1,0,0,0,0,0,0,0,3,0,0,0,11,0,0,0, ++ 3,0,0,0,115,142,0,0,0,100,1,0,125,1,0,121, ++ 17,0,116,0,0,136,0,0,25,131,0,0,125,1,0,87, ++ 110,18,0,4,116,1,0,107,10,0,114,43,0,1,1,1, ++ 89,110,1,0,88,124,1,0,100,1,0,107,8,0,114,138, ++ 0,116,2,0,100,1,0,107,8,0,114,83,0,116,3,0, ++ 136,0,0,131,1,0,125,1,0,110,12,0,116,4,0,136, ++ 0,0,131,1,0,125,1,0,135,0,0,102,1,0,100,2, ++ 0,100,3,0,134,0,0,125,2,0,116,5,0,106,6,0, ++ 124,1,0,124,2,0,131,2,0,116,0,0,136,0,0,60, ++ 110,0,0,124,1,0,83,41,4,122,109,71,101,116,32,111, ++ 114,32,99,114,101,97,116,101,32,116,104,101,32,109,111,100, ++ 117,108,101,32,108,111,99,107,32,102,111,114,32,97,32,103, ++ 105,118,101,110,32,109,111,100,117,108,101,32,110,97,109,101, ++ 46,10,10,32,32,32,32,83,104,111,117,108,100,32,111,110, ++ 108,121,32,98,101,32,99,97,108,108,101,100,32,119,105,116, ++ 104,32,116,104,101,32,105,109,112,111,114,116,32,108,111,99, ++ 107,32,116,97,107,101,110,46,78,99,1,0,0,0,0,0, ++ 0,0,1,0,0,0,2,0,0,0,19,0,0,0,115,11, ++ 0,0,0,116,0,0,136,0,0,61,100,0,0,83,41,1, ++ 78,41,1,218,13,95,109,111,100,117,108,101,95,108,111,99, ++ 107,115,41,1,114,37,0,0,0,41,1,114,68,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,2,99,98,32,1, ++ 0,0,115,2,0,0,0,0,1,122,28,95,103,101,116,95, ++ 109,111,100,117,108,101,95,108,111,99,107,46,60,108,111,99, ++ 97,108,115,62,46,99,98,41,7,114,110,0,0,0,114,80, ++ 0,0,0,114,86,0,0,0,114,103,0,0,0,114,84,0, ++ 0,0,218,8,95,119,101,97,107,114,101,102,90,3,114,101, ++ 102,41,3,114,68,0,0,0,114,87,0,0,0,114,111,0, ++ 0,0,114,5,0,0,0,41,1,114,68,0,0,0,114,6, ++ 0,0,0,114,106,0,0,0,18,1,0,0,115,24,0,0, ++ 0,0,4,6,1,3,1,17,1,13,1,5,1,12,1,12, ++ 1,15,2,12,1,18,2,25,1,114,106,0,0,0,99,1, ++ 0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,67, ++ 0,0,0,115,71,0,0,0,116,0,0,124,0,0,131,1, ++ 0,125,1,0,116,1,0,106,2,0,131,0,0,1,121,14, ++ 0,124,1,0,106,3,0,131,0,0,1,87,110,18,0,4, ++ 116,4,0,107,10,0,114,56,0,1,1,1,89,110,11,0, ++ 88,124,1,0,106,5,0,131,0,0,1,100,1,0,83,41, ++ 2,97,21,1,0,0,82,101,108,101,97,115,101,32,116,104, ++ 101,32,103,108,111,98,97,108,32,105,109,112,111,114,116,32, ++ 108,111,99,107,44,32,97,110,100,32,97,99,113,117,105,114, ++ 101,115,32,116,104,101,110,32,114,101,108,101,97,115,101,32, ++ 116,104,101,10,32,32,32,32,109,111,100,117,108,101,32,108, + 111,99,107,32,102,111,114,32,97,32,103,105,118,101,110,32, +- 109,111,100,117,108,101,32,110,97,109,101,46,10,10,32,32, +- 32,32,83,104,111,117,108,100,32,111,110,108,121,32,98,101, +- 32,99,97,108,108,101,100,32,119,105,116,104,32,116,104,101, +- 32,105,109,112,111,114,116,32,108,111,99,107,32,116,97,107, +- 101,110,46,78,99,1,0,0,0,0,0,0,0,1,0,0, +- 0,2,0,0,0,19,0,0,0,115,11,0,0,0,116,0, +- 0,136,0,0,61,100,0,0,83,41,1,78,41,1,218,13, +- 95,109,111,100,117,108,101,95,108,111,99,107,115,41,1,114, +- 36,0,0,0,41,1,114,67,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,2,99,98,32,1,0,0,115,2,0, +- 0,0,0,1,122,28,95,103,101,116,95,109,111,100,117,108, +- 101,95,108,111,99,107,46,60,108,111,99,97,108,115,62,46, +- 99,98,41,7,114,109,0,0,0,114,79,0,0,0,114,85, +- 0,0,0,114,102,0,0,0,114,83,0,0,0,218,8,95, +- 119,101,97,107,114,101,102,90,3,114,101,102,41,3,114,67, +- 0,0,0,114,86,0,0,0,114,110,0,0,0,114,4,0, +- 0,0,41,1,114,67,0,0,0,114,5,0,0,0,114,105, +- 0,0,0,18,1,0,0,115,24,0,0,0,0,4,6,1, +- 3,1,17,1,13,1,5,1,12,1,12,1,15,2,12,1, +- 18,2,25,1,114,105,0,0,0,99,1,0,0,0,0,0, +- 0,0,2,0,0,0,11,0,0,0,67,0,0,0,115,71, +- 0,0,0,116,0,0,124,0,0,131,1,0,125,1,0,116, +- 1,0,106,2,0,131,0,0,1,121,14,0,124,1,0,106, +- 3,0,131,0,0,1,87,110,18,0,4,116,4,0,107,10, +- 0,114,56,0,1,1,1,89,110,11,0,88,124,1,0,106, +- 5,0,131,0,0,1,100,1,0,83,41,2,97,21,1,0, +- 0,82,101,108,101,97,115,101,32,116,104,101,32,103,108,111, +- 98,97,108,32,105,109,112,111,114,116,32,108,111,99,107,44, +- 32,97,110,100,32,97,99,113,117,105,114,101,115,32,116,104, +- 101,110,32,114,101,108,101,97,115,101,32,116,104,101,10,32, +- 32,32,32,109,111,100,117,108,101,32,108,111,99,107,32,102, +- 111,114,32,97,32,103,105,118,101,110,32,109,111,100,117,108, +- 101,32,110,97,109,101,46,10,32,32,32,32,84,104,105,115, +- 32,105,115,32,117,115,101,100,32,116,111,32,101,110,115,117, +- 114,101,32,97,32,109,111,100,117,108,101,32,105,115,32,99, +- 111,109,112,108,101,116,101,108,121,32,105,110,105,116,105,97, +- 108,105,122,101,100,44,32,105,110,32,116,104,101,10,32,32, +- 32,32,101,118,101,110,116,32,105,116,32,105,115,32,98,101, +- 105,110,103,32,105,109,112,111,114,116,101,100,32,98,121,32, +- 97,110,111,116,104,101,114,32,116,104,114,101,97,100,46,10, +- 10,32,32,32,32,83,104,111,117,108,100,32,111,110,108,121, +- 32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32, +- 116,104,101,32,105,109,112,111,114,116,32,108,111,99,107,32, +- 116,97,107,101,110,46,78,41,6,114,105,0,0,0,114,106, +- 0,0,0,114,107,0,0,0,114,97,0,0,0,114,82,0, +- 0,0,114,98,0,0,0,41,2,114,67,0,0,0,114,86, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,218,19,95,108,111,99,107,95,117,110,108,111,99,107, +- 95,109,111,100,117,108,101,37,1,0,0,115,14,0,0,0, +- 0,7,12,1,10,1,3,1,14,1,13,3,5,2,114,112, +- 0,0,0,99,1,0,0,0,0,0,0,0,3,0,0,0, +- 3,0,0,0,79,0,0,0,115,13,0,0,0,124,0,0, +- 124,1,0,124,2,0,142,0,0,83,41,1,97,46,1,0, +- 0,114,101,109,111,118,101,95,105,109,112,111,114,116,108,105, +- 98,95,102,114,97,109,101,115,32,105,110,32,105,109,112,111, +- 114,116,46,99,32,119,105,108,108,32,97,108,119,97,121,115, +- 32,114,101,109,111,118,101,32,115,101,113,117,101,110,99,101, +- 115,10,32,32,32,32,111,102,32,105,109,112,111,114,116,108, +- 105,98,32,102,114,97,109,101,115,32,116,104,97,116,32,101, +- 110,100,32,119,105,116,104,32,97,32,99,97,108,108,32,116, +- 111,32,116,104,105,115,32,102,117,110,99,116,105,111,110,10, +- 10,32,32,32,32,85,115,101,32,105,116,32,105,110,115,116, +- 101,97,100,32,111,102,32,97,32,110,111,114,109,97,108,32, +- 99,97,108,108,32,105,110,32,112,108,97,99,101,115,32,119, +- 104,101,114,101,32,105,110,99,108,117,100,105,110,103,32,116, +- 104,101,32,105,109,112,111,114,116,108,105,98,10,32,32,32, +- 32,102,114,97,109,101,115,32,105,110,116,114,111,100,117,99, +- 101,115,32,117,110,119,97,110,116,101,100,32,110,111,105,115, +- 101,32,105,110,116,111,32,116,104,101,32,116,114,97,99,101, +- 98,97,99,107,32,40,101,46,103,46,32,119,104,101,110,32, +- 101,120,101,99,117,116,105,110,103,10,32,32,32,32,109,111, +- 100,117,108,101,32,99,111,100,101,41,10,32,32,32,32,114, +- 4,0,0,0,41,3,218,1,102,114,80,0,0,0,90,4, +- 107,119,100,115,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,25,95,99,97,108,108,95,119,105,116,104,95, +- 102,114,97,109,101,115,95,114,101,109,111,118,101,100,57,1, +- 0,0,115,2,0,0,0,0,8,114,114,0,0,0,105,238, +- 12,0,0,233,2,0,0,0,114,13,0,0,0,115,2,0, - 0,0,13,10,90,11,95,95,112,121,99,97,99,104,101,95, -- 95,122,4,111,112,116,45,122,3,46,112,121,122,4,46,112, -- 121,99,78,218,12,111,112,116,105,109,105,122,97,116,105,111, -- 110,99,2,0,0,0,1,0,0,0,11,0,0,0,6,0, -- 0,0,67,0,0,0,115,87,1,0,0,124,1,0,100,1, -- 0,107,9,0,114,76,0,116,0,0,106,1,0,100,2,0, -- 116,2,0,131,2,0,1,124,2,0,100,1,0,107,9,0, -- 114,58,0,100,3,0,125,3,0,116,3,0,124,3,0,131, -- 1,0,130,1,0,124,1,0,114,70,0,100,4,0,110,3, -- 0,100,5,0,125,2,0,116,4,0,124,0,0,131,1,0, -- 92,2,0,125,4,0,125,5,0,124,5,0,106,5,0,100, -- 6,0,131,1,0,92,3,0,125,6,0,125,7,0,125,8, -- 0,116,6,0,106,7,0,106,8,0,125,9,0,124,9,0, -- 100,1,0,107,8,0,114,154,0,116,9,0,100,7,0,131, -- 1,0,130,1,0,100,4,0,106,10,0,124,6,0,114,172, -- 0,124,6,0,110,3,0,124,8,0,124,7,0,124,9,0, -- 103,3,0,131,1,0,125,10,0,124,2,0,100,1,0,107, -- 8,0,114,241,0,116,6,0,106,11,0,106,12,0,100,8, -- 0,107,2,0,114,229,0,100,4,0,125,2,0,110,12,0, -- 116,6,0,106,11,0,106,12,0,125,2,0,116,13,0,124, -- 2,0,131,1,0,125,2,0,124,2,0,100,4,0,107,3, -- 0,114,63,1,124,2,0,106,14,0,131,0,0,115,42,1, -- 116,15,0,100,9,0,106,16,0,124,2,0,131,1,0,131, -- 1,0,130,1,0,100,10,0,106,16,0,124,10,0,116,17, -- 0,124,2,0,131,3,0,125,10,0,116,18,0,124,4,0, -- 116,19,0,124,10,0,116,20,0,100,8,0,25,23,131,3, -- 0,83,41,11,97,254,2,0,0,71,105,118,101,110,32,116, -- 104,101,32,112,97,116,104,32,116,111,32,97,32,46,112,121, -- 32,102,105,108,101,44,32,114,101,116,117,114,110,32,116,104, -- 101,32,112,97,116,104,32,116,111,32,105,116,115,32,46,112, -- 121,99,32,102,105,108,101,46,10,10,32,32,32,32,84,104, -- 101,32,46,112,121,32,102,105,108,101,32,100,111,101,115,32, -- 110,111,116,32,110,101,101,100,32,116,111,32,101,120,105,115, -- 116,59,32,116,104,105,115,32,115,105,109,112,108,121,32,114, -- 101,116,117,114,110,115,32,116,104,101,32,112,97,116,104,32, -- 116,111,32,116,104,101,10,32,32,32,32,46,112,121,99,32, -- 102,105,108,101,32,99,97,108,99,117,108,97,116,101,100,32, -- 97,115,32,105,102,32,116,104,101,32,46,112,121,32,102,105, -- 108,101,32,119,101,114,101,32,105,109,112,111,114,116,101,100, -- 46,10,10,32,32,32,32,84,104,101,32,39,111,112,116,105, -- 109,105,122,97,116,105,111,110,39,32,112,97,114,97,109,101, -- 116,101,114,32,99,111,110,116,114,111,108,115,32,116,104,101, -- 32,112,114,101,115,117,109,101,100,32,111,112,116,105,109,105, -- 122,97,116,105,111,110,32,108,101,118,101,108,32,111,102,10, -- 32,32,32,32,116,104,101,32,98,121,116,101,99,111,100,101, -- 32,102,105,108,101,46,32,73,102,32,39,111,112,116,105,109, -- 105,122,97,116,105,111,110,39,32,105,115,32,110,111,116,32, -- 78,111,110,101,44,32,116,104,101,32,115,116,114,105,110,103, -- 32,114,101,112,114,101,115,101,110,116,97,116,105,111,110,10, -- 32,32,32,32,111,102,32,116,104,101,32,97,114,103,117,109, -- 101,110,116,32,105,115,32,116,97,107,101,110,32,97,110,100, -- 32,118,101,114,105,102,105,101,100,32,116,111,32,98,101,32, -- 97,108,112,104,97,110,117,109,101,114,105,99,32,40,101,108, -- 115,101,32,86,97,108,117,101,69,114,114,111,114,10,32,32, -- 32,32,105,115,32,114,97,105,115,101,100,41,46,10,10,32, -- 32,32,32,84,104,101,32,100,101,98,117,103,95,111,118,101, -- 114,114,105,100,101,32,112,97,114,97,109,101,116,101,114,32, -- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,73, -- 102,32,100,101,98,117,103,95,111,118,101,114,114,105,100,101, -- 32,105,115,32,110,111,116,32,78,111,110,101,44,10,32,32, -- 32,32,97,32,84,114,117,101,32,118,97,108,117,101,32,105, -- 115,32,116,104,101,32,115,97,109,101,32,97,115,32,115,101, -- 116,116,105,110,103,32,39,111,112,116,105,109,105,122,97,116, -- 105,111,110,39,32,116,111,32,116,104,101,32,101,109,112,116, -- 121,32,115,116,114,105,110,103,10,32,32,32,32,119,104,105, -- 108,101,32,97,32,70,97,108,115,101,32,118,97,108,117,101, -- 32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116, -- 111,32,115,101,116,116,105,110,103,32,39,111,112,116,105,109, -- 105,122,97,116,105,111,110,39,32,116,111,32,39,49,39,46, -- 10,10,32,32,32,32,73,102,32,115,121,115,46,105,109,112, -- 108,101,109,101,110,116,97,116,105,111,110,46,99,97,99,104, -- 101,95,116,97,103,32,105,115,32,78,111,110,101,32,116,104, -- 101,110,32,78,111,116,73,109,112,108,101,109,101,110,116,101, -- 100,69,114,114,111,114,32,105,115,32,114,97,105,115,101,100, -- 46,10,10,32,32,32,32,78,122,70,116,104,101,32,100,101, -- 98,117,103,95,111,118,101,114,114,105,100,101,32,112,97,114, -- 97,109,101,116,101,114,32,105,115,32,100,101,112,114,101,99, -- 97,116,101,100,59,32,117,115,101,32,39,111,112,116,105,109, -- 105,122,97,116,105,111,110,39,32,105,110,115,116,101,97,100, -- 122,50,100,101,98,117,103,95,111,118,101,114,114,105,100,101, -- 32,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110, -- 32,109,117,115,116,32,98,101,32,115,101,116,32,116,111,32, -- 78,111,110,101,114,30,0,0,0,114,29,0,0,0,218,1, -- 46,122,36,115,121,115,46,105,109,112,108,101,109,101,110,116, -- 97,116,105,111,110,46,99,97,99,104,101,95,116,97,103,32, -- 105,115,32,78,111,110,101,233,0,0,0,0,122,24,123,33, -- 114,125,32,105,115,32,110,111,116,32,97,108,112,104,97,110, -- 117,109,101,114,105,99,122,7,123,125,46,123,125,123,125,41, -- 21,218,9,95,119,97,114,110,105,110,103,115,218,4,119,97, -- 114,110,218,18,68,101,112,114,101,99,97,116,105,111,110,87, -- 97,114,110,105,110,103,218,9,84,121,112,101,69,114,114,111, -- 114,114,38,0,0,0,114,32,0,0,0,114,7,0,0,0, -- 218,14,105,109,112,108,101,109,101,110,116,97,116,105,111,110, -- 218,9,99,97,99,104,101,95,116,97,103,218,19,78,111,116, -- 73,109,112,108,101,109,101,110,116,101,100,69,114,114,111,114, -- 114,26,0,0,0,218,5,102,108,97,103,115,218,8,111,112, -- 116,105,109,105,122,101,218,3,115,116,114,218,7,105,115,97, -- 108,110,117,109,218,10,86,97,108,117,101,69,114,114,111,114, -- 114,47,0,0,0,218,4,95,79,80,84,114,28,0,0,0, -- 218,8,95,80,89,67,65,67,72,69,218,17,66,89,84,69, -- 67,79,68,69,95,83,85,70,70,73,88,69,83,41,11,114, -- 35,0,0,0,90,14,100,101,98,117,103,95,111,118,101,114, -- 114,105,100,101,114,57,0,0,0,218,7,109,101,115,115,97, -- 103,101,218,4,104,101,97,100,114,37,0,0,0,90,4,98, -- 97,115,101,218,3,115,101,112,218,4,114,101,115,116,90,3, -- 116,97,103,90,15,97,108,109,111,115,116,95,102,105,108,101, -- 110,97,109,101,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,17,99,97,99,104,101,95,102,114,111,109,95, -- 115,111,117,114,99,101,243,0,0,0,115,46,0,0,0,0, -- 18,12,1,9,1,7,1,12,1,6,1,12,1,18,1,18, -- 1,24,1,12,1,12,1,12,1,36,1,12,1,18,1,9, -- 2,12,1,12,1,12,1,12,1,21,1,21,1,114,79,0, -- 0,0,99,1,0,0,0,0,0,0,0,8,0,0,0,5, -- 0,0,0,67,0,0,0,115,62,1,0,0,116,0,0,106, -- 1,0,106,2,0,100,1,0,107,8,0,114,30,0,116,3, -- 0,100,2,0,131,1,0,130,1,0,116,4,0,124,0,0, -- 131,1,0,92,2,0,125,1,0,125,2,0,116,4,0,124, -- 1,0,131,1,0,92,2,0,125,1,0,125,3,0,124,3, -- 0,116,5,0,107,3,0,114,102,0,116,6,0,100,3,0, -- 106,7,0,116,5,0,124,0,0,131,2,0,131,1,0,130, -- 1,0,124,2,0,106,8,0,100,4,0,131,1,0,125,4, -- 0,124,4,0,100,11,0,107,7,0,114,153,0,116,6,0, -- 100,7,0,106,7,0,124,2,0,131,1,0,131,1,0,130, -- 1,0,110,125,0,124,4,0,100,6,0,107,2,0,114,22, -- 1,124,2,0,106,9,0,100,4,0,100,5,0,131,2,0, -- 100,12,0,25,125,5,0,124,5,0,106,10,0,116,11,0, -- 131,1,0,115,223,0,116,6,0,100,8,0,106,7,0,116, -- 11,0,131,1,0,131,1,0,130,1,0,124,5,0,116,12, -- 0,116,11,0,131,1,0,100,1,0,133,2,0,25,125,6, -- 0,124,6,0,106,13,0,131,0,0,115,22,1,116,6,0, -- 100,9,0,106,7,0,124,5,0,131,1,0,131,1,0,130, -- 1,0,124,2,0,106,14,0,100,4,0,131,1,0,100,10, -- 0,25,125,7,0,116,15,0,124,1,0,124,7,0,116,16, -- 0,100,10,0,25,23,131,2,0,83,41,13,97,110,1,0, -- 0,71,105,118,101,110,32,116,104,101,32,112,97,116,104,32, -- 116,111,32,97,32,46,112,121,99,46,32,102,105,108,101,44, -- 32,114,101,116,117,114,110,32,116,104,101,32,112,97,116,104, -- 32,116,111,32,105,116,115,32,46,112,121,32,102,105,108,101, -- 46,10,10,32,32,32,32,84,104,101,32,46,112,121,99,32, -- 102,105,108,101,32,100,111,101,115,32,110,111,116,32,110,101, -- 101,100,32,116,111,32,101,120,105,115,116,59,32,116,104,105, -- 115,32,115,105,109,112,108,121,32,114,101,116,117,114,110,115, -- 32,116,104,101,32,112,97,116,104,32,116,111,10,32,32,32, -- 32,116,104,101,32,46,112,121,32,102,105,108,101,32,99,97, -- 108,99,117,108,97,116,101,100,32,116,111,32,99,111,114,114, -- 101,115,112,111,110,100,32,116,111,32,116,104,101,32,46,112, -- 121,99,32,102,105,108,101,46,32,32,73,102,32,112,97,116, -- 104,32,100,111,101,115,10,32,32,32,32,110,111,116,32,99, -- 111,110,102,111,114,109,32,116,111,32,80,69,80,32,51,49, -- 52,55,47,52,56,56,32,102,111,114,109,97,116,44,32,86, -- 97,108,117,101,69,114,114,111,114,32,119,105,108,108,32,98, -- 101,32,114,97,105,115,101,100,46,32,73,102,10,32,32,32, -- 32,115,121,115,46,105,109,112,108,101,109,101,110,116,97,116, -- 105,111,110,46,99,97,99,104,101,95,116,97,103,32,105,115, -- 32,78,111,110,101,32,116,104,101,110,32,78,111,116,73,109, -- 112,108,101,109,101,110,116,101,100,69,114,114,111,114,32,105, -- 115,32,114,97,105,115,101,100,46,10,10,32,32,32,32,78, +- 95,122,3,46,112,121,122,4,46,112,121,99,122,4,46,112, +- 121,111,78,99,2,0,0,0,0,0,0,0,11,0,0,0, +- 6,0,0,0,67,0,0,0,115,180,0,0,0,124,1,0, +- 100,1,0,107,8,0,114,25,0,116,0,0,106,1,0,106, +- 2,0,12,110,3,0,124,1,0,125,2,0,124,2,0,114, +- 46,0,116,3,0,125,3,0,110,6,0,116,4,0,125,3, +- 0,116,5,0,124,0,0,131,1,0,92,2,0,125,4,0, +- 125,5,0,124,5,0,106,6,0,100,2,0,131,1,0,92, +- 3,0,125,6,0,125,7,0,125,8,0,116,0,0,106,7, +- 0,106,8,0,125,9,0,124,9,0,100,1,0,107,8,0, +- 114,133,0,116,9,0,100,3,0,131,1,0,130,1,0,110, +- 0,0,100,4,0,106,10,0,124,6,0,124,7,0,124,9, +- 0,124,3,0,100,5,0,25,103,4,0,131,1,0,125,10, +- 0,116,11,0,124,4,0,116,12,0,124,10,0,131,3,0, +- 83,41,6,97,244,1,0,0,71,105,118,101,110,32,116,104, +- 101,32,112,97,116,104,32,116,111,32,97,32,46,112,121,32, +- 102,105,108,101,44,32,114,101,116,117,114,110,32,116,104,101, +- 32,112,97,116,104,32,116,111,32,105,116,115,32,46,112,121, +- 99,47,46,112,121,111,32,102,105,108,101,46,10,10,32,32, +- 32,32,84,104,101,32,46,112,121,32,102,105,108,101,32,100, +- 111,101,115,32,110,111,116,32,110,101,101,100,32,116,111,32, +- 101,120,105,115,116,59,32,116,104,105,115,32,115,105,109,112, +- 108,121,32,114,101,116,117,114,110,115,32,116,104,101,32,112, +- 97,116,104,32,116,111,32,116,104,101,10,32,32,32,32,46, +- 112,121,99,47,46,112,121,111,32,102,105,108,101,32,99,97, +- 108,99,117,108,97,116,101,100,32,97,115,32,105,102,32,116, +- 104,101,32,46,112,121,32,102,105,108,101,32,119,101,114,101, +- 32,105,109,112,111,114,116,101,100,46,32,32,84,104,101,32, +- 101,120,116,101,110,115,105,111,110,10,32,32,32,32,119,105, +- 108,108,32,98,101,32,46,112,121,99,32,117,110,108,101,115, +- 115,32,115,121,115,46,102,108,97,103,115,46,111,112,116,105, +- 109,105,122,101,32,105,115,32,110,111,110,45,122,101,114,111, +- 44,32,116,104,101,110,32,105,116,32,119,105,108,108,32,98, +- 101,32,46,112,121,111,46,10,10,32,32,32,32,73,102,32, +- 100,101,98,117,103,95,111,118,101,114,114,105,100,101,32,105, +- 115,32,110,111,116,32,78,111,110,101,44,32,116,104,101,110, +- 32,105,116,32,109,117,115,116,32,98,101,32,97,32,98,111, +- 111,108,101,97,110,32,97,110,100,32,105,115,32,117,115,101, +- 100,32,105,110,10,32,32,32,32,112,108,97,99,101,32,111, +- 102,32,115,121,115,46,102,108,97,103,115,46,111,112,116,105, +- 109,105,122,101,46,10,10,32,32,32,32,73,102,32,115,121, +- 115,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110, +- 46,99,97,99,104,101,95,116,97,103,32,105,115,32,78,111, +- 110,101,32,116,104,101,110,32,78,111,116,73,109,112,108,101, +- 109,101,110,116,101,100,69,114,114,111,114,32,105,115,32,114, +- 97,105,115,101,100,46,10,10,32,32,32,32,78,218,1,46, - 122,36,115,121,115,46,105,109,112,108,101,109,101,110,116,97, - 116,105,111,110,46,99,97,99,104,101,95,116,97,103,32,105, -- 115,32,78,111,110,101,122,37,123,125,32,110,111,116,32,98, -- 111,116,116,111,109,45,108,101,118,101,108,32,100,105,114,101, -- 99,116,111,114,121,32,105,110,32,123,33,114,125,114,58,0, -- 0,0,114,56,0,0,0,233,3,0,0,0,122,33,101,120, -- 112,101,99,116,101,100,32,111,110,108,121,32,50,32,111,114, -- 32,51,32,100,111,116,115,32,105,110,32,123,33,114,125,122, -- 57,111,112,116,105,109,105,122,97,116,105,111,110,32,112,111, -- 114,116,105,111,110,32,111,102,32,102,105,108,101,110,97,109, -- 101,32,100,111,101,115,32,110,111,116,32,115,116,97,114,116, -- 32,119,105,116,104,32,123,33,114,125,122,52,111,112,116,105, -- 109,105,122,97,116,105,111,110,32,108,101,118,101,108,32,123, -- 33,114,125,32,105,115,32,110,111,116,32,97,110,32,97,108, -- 112,104,97,110,117,109,101,114,105,99,32,118,97,108,117,101, -- 114,59,0,0,0,62,2,0,0,0,114,56,0,0,0,114, -- 80,0,0,0,233,254,255,255,255,41,17,114,7,0,0,0, -- 114,64,0,0,0,114,65,0,0,0,114,66,0,0,0,114, -- 38,0,0,0,114,73,0,0,0,114,71,0,0,0,114,47, -- 0,0,0,218,5,99,111,117,110,116,114,34,0,0,0,114, -- 9,0,0,0,114,72,0,0,0,114,31,0,0,0,114,70, -- 0,0,0,218,9,112,97,114,116,105,116,105,111,110,114,28, -- 0,0,0,218,15,83,79,85,82,67,69,95,83,85,70,70, -- 73,88,69,83,41,8,114,35,0,0,0,114,76,0,0,0, -- 90,16,112,121,99,97,99,104,101,95,102,105,108,101,110,97, -- 109,101,90,7,112,121,99,97,99,104,101,90,9,100,111,116, -- 95,99,111,117,110,116,114,57,0,0,0,90,9,111,112,116, -- 95,108,101,118,101,108,90,13,98,97,115,101,95,102,105,108, -- 101,110,97,109,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,17,115,111,117,114,99,101,95,102,114,111, -- 109,95,99,97,99,104,101,31,1,0,0,115,44,0,0,0, -- 0,9,18,1,12,1,18,1,18,1,12,1,9,1,15,1, -- 15,1,12,1,9,1,15,1,12,1,22,1,15,1,9,1, -- 12,1,22,1,12,1,9,1,12,1,19,1,114,85,0,0, -- 0,99,1,0,0,0,0,0,0,0,5,0,0,0,12,0, -- 0,0,67,0,0,0,115,164,0,0,0,116,0,0,124,0, -- 0,131,1,0,100,1,0,107,2,0,114,22,0,100,2,0, -- 83,124,0,0,106,1,0,100,3,0,131,1,0,92,3,0, -- 125,1,0,125,2,0,125,3,0,124,1,0,12,115,81,0, -- 124,3,0,106,2,0,131,0,0,100,7,0,100,8,0,133, -- 2,0,25,100,6,0,107,3,0,114,85,0,124,0,0,83, -- 121,16,0,116,3,0,124,0,0,131,1,0,125,4,0,87, -- 110,40,0,4,116,4,0,116,5,0,102,2,0,107,10,0, -- 114,143,0,1,1,1,124,0,0,100,2,0,100,9,0,133, -- 2,0,25,125,4,0,89,110,1,0,88,116,6,0,124,4, -- 0,131,1,0,114,160,0,124,4,0,83,124,0,0,83,41, -- 10,122,188,67,111,110,118,101,114,116,32,97,32,98,121,116, -- 101,99,111,100,101,32,102,105,108,101,32,112,97,116,104,32, -- 116,111,32,97,32,115,111,117,114,99,101,32,112,97,116,104, -- 32,40,105,102,32,112,111,115,115,105,98,108,101,41,46,10, -- 10,32,32,32,32,84,104,105,115,32,102,117,110,99,116,105, -- 111,110,32,101,120,105,115,116,115,32,112,117,114,101,108,121, -- 32,102,111,114,32,98,97,99,107,119,97,114,100,115,45,99, -- 111,109,112,97,116,105,98,105,108,105,116,121,32,102,111,114, -- 10,32,32,32,32,80,121,73,109,112,111,114,116,95,69,120, -- 101,99,67,111,100,101,77,111,100,117,108,101,87,105,116,104, -- 70,105,108,101,110,97,109,101,115,40,41,32,105,110,32,116, -- 104,101,32,67,32,65,80,73,46,10,10,32,32,32,32,114, -- 59,0,0,0,78,114,58,0,0,0,114,80,0,0,0,114, -- 29,0,0,0,90,2,112,121,233,253,255,255,255,233,255,255, -- 255,255,114,87,0,0,0,41,7,114,31,0,0,0,114,32, -- 0,0,0,218,5,108,111,119,101,114,114,85,0,0,0,114, -- 66,0,0,0,114,71,0,0,0,114,44,0,0,0,41,5, -- 218,13,98,121,116,101,99,111,100,101,95,112,97,116,104,114, -- 78,0,0,0,114,36,0,0,0,90,9,101,120,116,101,110, -- 115,105,111,110,218,11,115,111,117,114,99,101,95,112,97,116, -- 104,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,15,95,103,101,116,95,115,111,117,114,99,101,102,105,108, -- 101,64,1,0,0,115,20,0,0,0,0,7,18,1,4,1, -- 24,1,35,1,4,1,3,1,16,1,19,1,21,1,114,91, -- 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, -- 11,0,0,0,67,0,0,0,115,92,0,0,0,124,0,0, -- 106,0,0,116,1,0,116,2,0,131,1,0,131,1,0,114, -- 59,0,121,14,0,116,3,0,124,0,0,131,1,0,83,87, -- 113,88,0,4,116,4,0,107,10,0,114,55,0,1,1,1, -- 89,113,88,0,88,110,29,0,124,0,0,106,0,0,116,1, -- 0,116,5,0,131,1,0,131,1,0,114,84,0,124,0,0, -- 83,100,0,0,83,100,0,0,83,41,1,78,41,6,218,8, -- 101,110,100,115,119,105,116,104,218,5,116,117,112,108,101,114, -- 84,0,0,0,114,79,0,0,0,114,66,0,0,0,114,74, -- 0,0,0,41,1,218,8,102,105,108,101,110,97,109,101,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,11, -- 95,103,101,116,95,99,97,99,104,101,100,83,1,0,0,115, -- 16,0,0,0,0,1,21,1,3,1,14,1,13,1,8,1, -- 21,1,4,2,114,95,0,0,0,99,1,0,0,0,0,0, -- 0,0,2,0,0,0,11,0,0,0,67,0,0,0,115,60, -- 0,0,0,121,19,0,116,0,0,124,0,0,131,1,0,106, -- 1,0,125,1,0,87,110,24,0,4,116,2,0,107,10,0, -- 114,45,0,1,1,1,100,1,0,125,1,0,89,110,1,0, -- 88,124,1,0,100,2,0,79,125,1,0,124,1,0,83,41, -- 3,122,51,67,97,108,99,117,108,97,116,101,32,116,104,101, -- 32,109,111,100,101,32,112,101,114,109,105,115,115,105,111,110, -- 115,32,102,111,114,32,97,32,98,121,116,101,99,111,100,101, -- 32,102,105,108,101,46,105,182,1,0,0,233,128,0,0,0, -- 41,3,114,39,0,0,0,114,41,0,0,0,114,40,0,0, -- 0,41,2,114,35,0,0,0,114,42,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,99, -- 97,108,99,95,109,111,100,101,95,1,0,0,115,12,0,0, -- 0,0,2,3,1,19,1,13,1,11,3,10,1,114,97,0, -- 0,0,218,9,118,101,114,98,111,115,105,116,121,114,29,0, -- 0,0,99,1,0,0,0,1,0,0,0,3,0,0,0,4, -- 0,0,0,71,0,0,0,115,75,0,0,0,116,0,0,106, -- 1,0,106,2,0,124,1,0,107,5,0,114,71,0,124,0, -- 0,106,3,0,100,6,0,131,1,0,115,43,0,100,3,0, -- 124,0,0,23,125,0,0,116,4,0,124,0,0,106,5,0, -- 124,2,0,140,0,0,100,4,0,116,0,0,106,6,0,131, -- 1,1,1,100,5,0,83,41,7,122,61,80,114,105,110,116, -- 32,116,104,101,32,109,101,115,115,97,103,101,32,116,111,32, -- 115,116,100,101,114,114,32,105,102,32,45,118,47,80,89,84, -- 72,79,78,86,69,82,66,79,83,69,32,105,115,32,116,117, -- 114,110,101,100,32,111,110,46,250,1,35,250,7,105,109,112, -- 111,114,116,32,122,2,35,32,114,54,0,0,0,78,41,2, -- 114,99,0,0,0,114,100,0,0,0,41,7,114,7,0,0, -- 0,114,67,0,0,0,218,7,118,101,114,98,111,115,101,114, -- 9,0,0,0,218,5,112,114,105,110,116,114,47,0,0,0, -- 218,6,115,116,100,101,114,114,41,3,114,75,0,0,0,114, -- 98,0,0,0,218,4,97,114,103,115,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,16,95,118,101,114,98, -- 111,115,101,95,109,101,115,115,97,103,101,107,1,0,0,115, -- 8,0,0,0,0,2,18,1,15,1,10,1,114,105,0,0, -- 0,99,1,0,0,0,0,0,0,0,3,0,0,0,11,0, -- 0,0,3,0,0,0,115,84,0,0,0,100,1,0,135,0, -- 0,102,1,0,100,2,0,100,3,0,134,1,0,125,1,0, -- 121,13,0,116,0,0,106,1,0,125,2,0,87,110,30,0, -- 4,116,2,0,107,10,0,114,66,0,1,1,1,100,4,0, -- 100,5,0,132,0,0,125,2,0,89,110,1,0,88,124,2, -- 0,124,1,0,136,0,0,131,2,0,1,124,1,0,83,41, -- 6,122,252,68,101,99,111,114,97,116,111,114,32,116,111,32, -- 118,101,114,105,102,121,32,116,104,97,116,32,116,104,101,32, -- 109,111,100,117,108,101,32,98,101,105,110,103,32,114,101,113, -- 117,101,115,116,101,100,32,109,97,116,99,104,101,115,32,116, -- 104,101,32,111,110,101,32,116,104,101,10,32,32,32,32,108, -- 111,97,100,101,114,32,99,97,110,32,104,97,110,100,108,101, -- 46,10,10,32,32,32,32,84,104,101,32,102,105,114,115,116, -- 32,97,114,103,117,109,101,110,116,32,40,115,101,108,102,41, -- 32,109,117,115,116,32,100,101,102,105,110,101,32,95,110,97, -- 109,101,32,119,104,105,99,104,32,116,104,101,32,115,101,99, -- 111,110,100,32,97,114,103,117,109,101,110,116,32,105,115,10, -- 32,32,32,32,99,111,109,112,97,114,101,100,32,97,103,97, -- 105,110,115,116,46,32,73,102,32,116,104,101,32,99,111,109, -- 112,97,114,105,115,111,110,32,102,97,105,108,115,32,116,104, -- 101,110,32,73,109,112,111,114,116,69,114,114,111,114,32,105, -- 115,32,114,97,105,115,101,100,46,10,10,32,32,32,32,78, -- 99,2,0,0,0,0,0,0,0,4,0,0,0,5,0,0, -- 0,31,0,0,0,115,89,0,0,0,124,1,0,100,0,0, -- 107,8,0,114,24,0,124,0,0,106,0,0,125,1,0,110, -- 46,0,124,0,0,106,0,0,124,1,0,107,3,0,114,70, -- 0,116,1,0,100,1,0,124,0,0,106,0,0,124,1,0, -- 102,2,0,22,100,2,0,124,1,0,131,1,1,130,1,0, -- 136,0,0,124,0,0,124,1,0,124,2,0,124,3,0,142, -- 2,0,83,41,3,78,122,30,108,111,97,100,101,114,32,102, -- 111,114,32,37,115,32,99,97,110,110,111,116,32,104,97,110, -- 100,108,101,32,37,115,218,4,110,97,109,101,41,2,114,106, -- 0,0,0,218,11,73,109,112,111,114,116,69,114,114,111,114, -- 41,4,218,4,115,101,108,102,114,106,0,0,0,114,104,0, -- 0,0,90,6,107,119,97,114,103,115,41,1,218,6,109,101, -- 116,104,111,100,114,4,0,0,0,114,5,0,0,0,218,19, -- 95,99,104,101,99,107,95,110,97,109,101,95,119,114,97,112, -- 112,101,114,123,1,0,0,115,12,0,0,0,0,1,12,1, -- 12,1,15,1,6,1,25,1,122,40,95,99,104,101,99,107, -- 95,110,97,109,101,46,60,108,111,99,97,108,115,62,46,95, -- 99,104,101,99,107,95,110,97,109,101,95,119,114,97,112,112, -- 101,114,99,2,0,0,0,0,0,0,0,3,0,0,0,7, -- 0,0,0,83,0,0,0,115,92,0,0,0,120,66,0,100, -- 1,0,100,2,0,100,3,0,100,4,0,103,4,0,68,93, -- 46,0,125,2,0,116,0,0,124,1,0,124,2,0,131,2, -- 0,114,19,0,116,1,0,124,0,0,124,2,0,116,2,0, -- 124,1,0,124,2,0,131,2,0,131,3,0,1,113,19,0, -- 87,124,0,0,106,3,0,106,4,0,124,1,0,106,3,0, -- 131,1,0,1,100,0,0,83,41,5,78,218,10,95,95,109, -- 111,100,117,108,101,95,95,218,8,95,95,110,97,109,101,95, -- 95,218,12,95,95,113,117,97,108,110,97,109,101,95,95,218, -- 7,95,95,100,111,99,95,95,41,5,218,7,104,97,115,97, -- 116,116,114,218,7,115,101,116,97,116,116,114,218,7,103,101, -- 116,97,116,116,114,218,8,95,95,100,105,99,116,95,95,218, -- 6,117,112,100,97,116,101,41,3,90,3,110,101,119,90,3, -- 111,108,100,114,52,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,5,95,119,114,97,112,134,1, -- 0,0,115,8,0,0,0,0,1,25,1,15,1,29,1,122, -- 26,95,99,104,101,99,107,95,110,97,109,101,46,60,108,111, -- 99,97,108,115,62,46,95,119,114,97,112,41,3,218,10,95, -- 98,111,111,116,115,116,114,97,112,114,120,0,0,0,218,9, -- 78,97,109,101,69,114,114,111,114,41,3,114,109,0,0,0, -- 114,110,0,0,0,114,120,0,0,0,114,4,0,0,0,41, -- 1,114,109,0,0,0,114,5,0,0,0,218,11,95,99,104, -- 101,99,107,95,110,97,109,101,115,1,0,0,115,14,0,0, -- 0,0,8,21,7,3,1,13,1,13,2,17,5,13,1,114, -- 123,0,0,0,99,2,0,0,0,0,0,0,0,5,0,0, -- 0,4,0,0,0,67,0,0,0,115,84,0,0,0,124,0, +- 115,32,78,111,110,101,114,30,0,0,0,114,84,0,0,0, +- 41,13,114,7,0,0,0,218,5,102,108,97,103,115,218,8, +- 111,112,116,105,109,105,122,101,218,23,68,69,66,85,71,95, +- 66,89,84,69,67,79,68,69,95,83,85,70,70,73,88,69, +- 83,218,27,79,80,84,73,77,73,90,69,68,95,66,89,84, +- 69,67,79,68,69,95,83,85,70,70,73,88,69,83,114,38, +- 0,0,0,218,9,112,97,114,116,105,116,105,111,110,218,14, +- 105,109,112,108,101,109,101,110,116,97,116,105,111,110,218,9, +- 99,97,99,104,101,95,116,97,103,218,19,78,111,116,73,109, +- 112,108,101,109,101,110,116,101,100,69,114,114,111,114,114,26, +- 0,0,0,114,28,0,0,0,218,8,95,80,89,67,65,67, +- 72,69,41,11,114,35,0,0,0,90,14,100,101,98,117,103, +- 95,111,118,101,114,114,105,100,101,218,5,100,101,98,117,103, +- 218,8,115,117,102,102,105,120,101,115,218,4,104,101,97,100, +- 114,37,0,0,0,218,13,98,97,115,101,95,102,105,108,101, +- 110,97,109,101,218,3,115,101,112,114,36,0,0,0,90,3, +- 116,97,103,218,8,102,105,108,101,110,97,109,101,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,17,99,97, +- 99,104,101,95,102,114,111,109,95,115,111,117,114,99,101,181, +- 1,0,0,115,22,0,0,0,0,13,31,1,6,1,9,2, +- 6,1,18,1,24,1,12,1,12,1,15,1,31,1,114,132, ++ 109,111,100,117,108,101,32,110,97,109,101,46,10,32,32,32, ++ 32,84,104,105,115,32,105,115,32,117,115,101,100,32,116,111, ++ 32,101,110,115,117,114,101,32,97,32,109,111,100,117,108,101, ++ 32,105,115,32,99,111,109,112,108,101,116,101,108,121,32,105, ++ 110,105,116,105,97,108,105,122,101,100,44,32,105,110,32,116, ++ 104,101,10,32,32,32,32,101,118,101,110,116,32,105,116,32, ++ 105,115,32,98,101,105,110,103,32,105,109,112,111,114,116,101, ++ 100,32,98,121,32,97,110,111,116,104,101,114,32,116,104,114, ++ 101,97,100,46,10,10,32,32,32,32,83,104,111,117,108,100, ++ 32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32, ++ 119,105,116,104,32,116,104,101,32,105,109,112,111,114,116,32, ++ 108,111,99,107,32,116,97,107,101,110,46,78,41,6,114,106, ++ 0,0,0,114,107,0,0,0,114,108,0,0,0,114,98,0, ++ 0,0,114,83,0,0,0,114,99,0,0,0,41,2,114,68, ++ 0,0,0,114,87,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,218,19,95,108,111,99,107,95,117, ++ 110,108,111,99,107,95,109,111,100,117,108,101,37,1,0,0, ++ 115,14,0,0,0,0,7,12,1,10,1,3,1,14,1,13, ++ 3,5,2,114,113,0,0,0,99,1,0,0,0,0,0,0, ++ 0,3,0,0,0,3,0,0,0,79,0,0,0,115,13,0, ++ 0,0,124,0,0,124,1,0,124,2,0,142,0,0,83,41, ++ 1,97,46,1,0,0,114,101,109,111,118,101,95,105,109,112, ++ 111,114,116,108,105,98,95,102,114,97,109,101,115,32,105,110, ++ 32,105,109,112,111,114,116,46,99,32,119,105,108,108,32,97, ++ 108,119,97,121,115,32,114,101,109,111,118,101,32,115,101,113, ++ 117,101,110,99,101,115,10,32,32,32,32,111,102,32,105,109, ++ 112,111,114,116,108,105,98,32,102,114,97,109,101,115,32,116, ++ 104,97,116,32,101,110,100,32,119,105,116,104,32,97,32,99, ++ 97,108,108,32,116,111,32,116,104,105,115,32,102,117,110,99, ++ 116,105,111,110,10,10,32,32,32,32,85,115,101,32,105,116, ++ 32,105,110,115,116,101,97,100,32,111,102,32,97,32,110,111, ++ 114,109,97,108,32,99,97,108,108,32,105,110,32,112,108,97, ++ 99,101,115,32,119,104,101,114,101,32,105,110,99,108,117,100, ++ 105,110,103,32,116,104,101,32,105,109,112,111,114,116,108,105, ++ 98,10,32,32,32,32,102,114,97,109,101,115,32,105,110,116, ++ 114,111,100,117,99,101,115,32,117,110,119,97,110,116,101,100, ++ 32,110,111,105,115,101,32,105,110,116,111,32,116,104,101,32, ++ 116,114,97,99,101,98,97,99,107,32,40,101,46,103,46,32, ++ 119,104,101,110,32,101,120,101,99,117,116,105,110,103,10,32, ++ 32,32,32,109,111,100,117,108,101,32,99,111,100,101,41,10, ++ 32,32,32,32,114,5,0,0,0,41,3,218,1,102,114,81, ++ 0,0,0,90,4,107,119,100,115,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,25,95,99,97,108,108,95, ++ 119,105,116,104,95,102,114,97,109,101,115,95,114,101,109,111, ++ 118,101,100,57,1,0,0,115,2,0,0,0,0,8,114,115, ++ 0,0,0,105,238,12,0,0,233,2,0,0,0,114,14,0, ++ 0,0,115,2,0,0,0,13,10,90,11,95,95,112,121,99, ++ 97,99,104,101,95,95,122,3,46,112,121,122,4,46,112,121, ++ 99,122,4,46,112,121,111,78,99,2,0,0,0,0,0,0, ++ 0,11,0,0,0,6,0,0,0,67,0,0,0,115,180,0, ++ 0,0,124,1,0,100,1,0,107,8,0,114,25,0,116,0, ++ 0,106,1,0,106,2,0,12,110,3,0,124,1,0,125,2, ++ 0,124,2,0,114,46,0,116,3,0,125,3,0,110,6,0, ++ 116,4,0,125,3,0,116,5,0,124,0,0,131,1,0,92, ++ 2,0,125,4,0,125,5,0,124,5,0,106,6,0,100,2, ++ 0,131,1,0,92,3,0,125,6,0,125,7,0,125,8,0, ++ 116,0,0,106,7,0,106,8,0,125,9,0,124,9,0,100, ++ 1,0,107,8,0,114,133,0,116,9,0,100,3,0,131,1, ++ 0,130,1,0,110,0,0,100,4,0,106,10,0,124,6,0, ++ 124,7,0,124,9,0,124,3,0,100,5,0,25,103,4,0, ++ 131,1,0,125,10,0,116,11,0,124,4,0,116,12,0,124, ++ 10,0,131,3,0,83,41,6,97,244,1,0,0,71,105,118, ++ 101,110,32,116,104,101,32,112,97,116,104,32,116,111,32,97, ++ 32,46,112,121,32,102,105,108,101,44,32,114,101,116,117,114, ++ 110,32,116,104,101,32,112,97,116,104,32,116,111,32,105,116, ++ 115,32,46,112,121,99,47,46,112,121,111,32,102,105,108,101, ++ 46,10,10,32,32,32,32,84,104,101,32,46,112,121,32,102, ++ 105,108,101,32,100,111,101,115,32,110,111,116,32,110,101,101, ++ 100,32,116,111,32,101,120,105,115,116,59,32,116,104,105,115, ++ 32,115,105,109,112,108,121,32,114,101,116,117,114,110,115,32, ++ 116,104,101,32,112,97,116,104,32,116,111,32,116,104,101,10, ++ 32,32,32,32,46,112,121,99,47,46,112,121,111,32,102,105, ++ 108,101,32,99,97,108,99,117,108,97,116,101,100,32,97,115, ++ 32,105,102,32,116,104,101,32,46,112,121,32,102,105,108,101, ++ 32,119,101,114,101,32,105,109,112,111,114,116,101,100,46,32, ++ 32,84,104,101,32,101,120,116,101,110,115,105,111,110,10,32, ++ 32,32,32,119,105,108,108,32,98,101,32,46,112,121,99,32, ++ 117,110,108,101,115,115,32,115,121,115,46,102,108,97,103,115, ++ 46,111,112,116,105,109,105,122,101,32,105,115,32,110,111,110, ++ 45,122,101,114,111,44,32,116,104,101,110,32,105,116,32,119, ++ 105,108,108,32,98,101,32,46,112,121,111,46,10,10,32,32, ++ 32,32,73,102,32,100,101,98,117,103,95,111,118,101,114,114, ++ 105,100,101,32,105,115,32,110,111,116,32,78,111,110,101,44, ++ 32,116,104,101,110,32,105,116,32,109,117,115,116,32,98,101, ++ 32,97,32,98,111,111,108,101,97,110,32,97,110,100,32,105, ++ 115,32,117,115,101,100,32,105,110,10,32,32,32,32,112,108, ++ 97,99,101,32,111,102,32,115,121,115,46,102,108,97,103,115, ++ 46,111,112,116,105,109,105,122,101,46,10,10,32,32,32,32, ++ 73,102,32,115,121,115,46,105,109,112,108,101,109,101,110,116, ++ 97,116,105,111,110,46,99,97,99,104,101,95,116,97,103,32, ++ 105,115,32,78,111,110,101,32,116,104,101,110,32,78,111,116, ++ 73,109,112,108,101,109,101,110,116,101,100,69,114,114,111,114, ++ 32,105,115,32,114,97,105,115,101,100,46,10,10,32,32,32, ++ 32,78,218,1,46,122,36,115,121,115,46,105,109,112,108,101, ++ 109,101,110,116,97,116,105,111,110,46,99,97,99,104,101,95, ++ 116,97,103,32,105,115,32,78,111,110,101,114,31,0,0,0, ++ 114,85,0,0,0,41,13,114,8,0,0,0,218,5,102,108, ++ 97,103,115,218,8,111,112,116,105,109,105,122,101,218,23,68, ++ 69,66,85,71,95,66,89,84,69,67,79,68,69,95,83,85, ++ 70,70,73,88,69,83,218,27,79,80,84,73,77,73,90,69, ++ 68,95,66,89,84,69,67,79,68,69,95,83,85,70,70,73, ++ 88,69,83,114,39,0,0,0,218,9,112,97,114,116,105,116, ++ 105,111,110,218,14,105,109,112,108,101,109,101,110,116,97,116, ++ 105,111,110,218,9,99,97,99,104,101,95,116,97,103,218,19, ++ 78,111,116,73,109,112,108,101,109,101,110,116,101,100,69,114, ++ 114,111,114,114,27,0,0,0,114,29,0,0,0,218,8,95, ++ 80,89,67,65,67,72,69,41,11,114,36,0,0,0,90,14, ++ 100,101,98,117,103,95,111,118,101,114,114,105,100,101,218,5, ++ 100,101,98,117,103,218,8,115,117,102,102,105,120,101,115,218, ++ 4,104,101,97,100,114,38,0,0,0,218,13,98,97,115,101, ++ 95,102,105,108,101,110,97,109,101,218,3,115,101,112,114,37, ++ 0,0,0,90,3,116,97,103,218,8,102,105,108,101,110,97, ++ 109,101,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,17,99,97,99,104,101,95,102,114,111,109,95,115,111, ++ 117,114,99,101,181,1,0,0,115,22,0,0,0,0,13,31, ++ 1,6,1,9,2,6,1,18,1,24,1,12,1,12,1,15, ++ 1,31,1,114,133,0,0,0,99,1,0,0,0,0,0,0, ++ 0,5,0,0,0,5,0,0,0,67,0,0,0,115,193,0, ++ 0,0,116,0,0,106,1,0,106,2,0,100,1,0,107,8, ++ 0,114,33,0,116,3,0,100,2,0,131,1,0,130,1,0, ++ 110,0,0,116,4,0,124,0,0,131,1,0,92,2,0,125, ++ 1,0,125,2,0,116,4,0,124,1,0,131,1,0,92,2, ++ 0,125,1,0,125,3,0,124,3,0,116,5,0,107,3,0, ++ 114,108,0,116,6,0,100,3,0,106,7,0,116,5,0,124, ++ 0,0,131,2,0,131,1,0,130,1,0,110,0,0,124,2, ++ 0,106,8,0,100,4,0,131,1,0,100,5,0,107,3,0, ++ 114,153,0,116,6,0,100,6,0,106,7,0,124,2,0,131, ++ 1,0,131,1,0,130,1,0,110,0,0,124,2,0,106,9, ++ 0,100,4,0,131,1,0,100,7,0,25,125,4,0,116,10, ++ 0,124,1,0,124,4,0,116,11,0,100,7,0,25,23,131, ++ 2,0,83,41,8,97,121,1,0,0,71,105,118,101,110,32, ++ 116,104,101,32,112,97,116,104,32,116,111,32,97,32,46,112, ++ 121,99,46,47,46,112,121,111,32,102,105,108,101,44,32,114, ++ 101,116,117,114,110,32,116,104,101,32,112,97,116,104,32,116, ++ 111,32,105,116,115,32,46,112,121,32,102,105,108,101,46,10, ++ 10,32,32,32,32,84,104,101,32,46,112,121,99,47,46,112, ++ 121,111,32,102,105,108,101,32,100,111,101,115,32,110,111,116, ++ 32,110,101,101,100,32,116,111,32,101,120,105,115,116,59,32, ++ 116,104,105,115,32,115,105,109,112,108,121,32,114,101,116,117, ++ 114,110,115,32,116,104,101,32,112,97,116,104,32,116,111,10, ++ 32,32,32,32,116,104,101,32,46,112,121,32,102,105,108,101, ++ 32,99,97,108,99,117,108,97,116,101,100,32,116,111,32,99, ++ 111,114,114,101,115,112,111,110,100,32,116,111,32,116,104,101, ++ 32,46,112,121,99,47,46,112,121,111,32,102,105,108,101,46, ++ 32,32,73,102,32,112,97,116,104,32,100,111,101,115,10,32, ++ 32,32,32,110,111,116,32,99,111,110,102,111,114,109,32,116, ++ 111,32,80,69,80,32,51,49,52,55,32,102,111,114,109,97, ++ 116,44,32,86,97,108,117,101,69,114,114,111,114,32,119,105, ++ 108,108,32,98,101,32,114,97,105,115,101,100,46,32,73,102, ++ 10,32,32,32,32,115,121,115,46,105,109,112,108,101,109,101, ++ 110,116,97,116,105,111,110,46,99,97,99,104,101,95,116,97, ++ 103,32,105,115,32,78,111,110,101,32,116,104,101,110,32,78, ++ 111,116,73,109,112,108,101,109,101,110,116,101,100,69,114,114, ++ 111,114,32,105,115,32,114,97,105,115,101,100,46,10,10,32, ++ 32,32,32,78,122,36,115,121,115,46,105,109,112,108,101,109, ++ 101,110,116,97,116,105,111,110,46,99,97,99,104,101,95,116, ++ 97,103,32,105,115,32,78,111,110,101,122,37,123,125,32,110, ++ 111,116,32,98,111,116,116,111,109,45,108,101,118,101,108,32, ++ 100,105,114,101,99,116,111,114,121,32,105,110,32,123,33,114, ++ 125,114,117,0,0,0,114,116,0,0,0,122,28,101,120,112, ++ 101,99,116,101,100,32,111,110,108,121,32,50,32,100,111,116, ++ 115,32,105,110,32,123,33,114,125,114,85,0,0,0,41,12, ++ 114,8,0,0,0,114,123,0,0,0,114,124,0,0,0,114, ++ 125,0,0,0,114,39,0,0,0,114,126,0,0,0,218,10, ++ 86,97,108,117,101,69,114,114,111,114,114,48,0,0,0,114, ++ 90,0,0,0,114,122,0,0,0,114,29,0,0,0,218,15, ++ 83,79,85,82,67,69,95,83,85,70,70,73,88,69,83,41, ++ 5,114,36,0,0,0,114,129,0,0,0,90,16,112,121,99, ++ 97,99,104,101,95,102,105,108,101,110,97,109,101,90,7,112, ++ 121,99,97,99,104,101,114,130,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,17,115,111,117,114, ++ 99,101,95,102,114,111,109,95,99,97,99,104,101,208,1,0, ++ 0,115,24,0,0,0,0,9,18,1,15,1,18,1,18,1, ++ 12,1,3,1,24,1,21,1,3,1,21,1,19,1,114,136, + 0,0,0,99,1,0,0,0,0,0,0,0,5,0,0,0, +- 5,0,0,0,67,0,0,0,115,193,0,0,0,116,0,0, +- 106,1,0,106,2,0,100,1,0,107,8,0,114,33,0,116, +- 3,0,100,2,0,131,1,0,130,1,0,110,0,0,116,4, +- 0,124,0,0,131,1,0,92,2,0,125,1,0,125,2,0, +- 116,4,0,124,1,0,131,1,0,92,2,0,125,1,0,125, +- 3,0,124,3,0,116,5,0,107,3,0,114,108,0,116,6, +- 0,100,3,0,106,7,0,116,5,0,124,0,0,131,2,0, +- 131,1,0,130,1,0,110,0,0,124,2,0,106,8,0,100, +- 4,0,131,1,0,100,5,0,107,3,0,114,153,0,116,6, +- 0,100,6,0,106,7,0,124,2,0,131,1,0,131,1,0, +- 130,1,0,110,0,0,124,2,0,106,9,0,100,4,0,131, +- 1,0,100,7,0,25,125,4,0,116,10,0,124,1,0,124, +- 4,0,116,11,0,100,7,0,25,23,131,2,0,83,41,8, +- 97,121,1,0,0,71,105,118,101,110,32,116,104,101,32,112, +- 97,116,104,32,116,111,32,97,32,46,112,121,99,46,47,46, +- 112,121,111,32,102,105,108,101,44,32,114,101,116,117,114,110, +- 32,116,104,101,32,112,97,116,104,32,116,111,32,105,116,115, +- 32,46,112,121,32,102,105,108,101,46,10,10,32,32,32,32, +- 84,104,101,32,46,112,121,99,47,46,112,121,111,32,102,105, +- 108,101,32,100,111,101,115,32,110,111,116,32,110,101,101,100, +- 32,116,111,32,101,120,105,115,116,59,32,116,104,105,115,32, +- 115,105,109,112,108,121,32,114,101,116,117,114,110,115,32,116, +- 104,101,32,112,97,116,104,32,116,111,10,32,32,32,32,116, +- 104,101,32,46,112,121,32,102,105,108,101,32,99,97,108,99, +- 117,108,97,116,101,100,32,116,111,32,99,111,114,114,101,115, +- 112,111,110,100,32,116,111,32,116,104,101,32,46,112,121,99, +- 47,46,112,121,111,32,102,105,108,101,46,32,32,73,102,32, +- 112,97,116,104,32,100,111,101,115,10,32,32,32,32,110,111, +- 116,32,99,111,110,102,111,114,109,32,116,111,32,80,69,80, +- 32,51,49,52,55,32,102,111,114,109,97,116,44,32,86,97, +- 108,117,101,69,114,114,111,114,32,119,105,108,108,32,98,101, +- 32,114,97,105,115,101,100,46,32,73,102,10,32,32,32,32, +- 115,121,115,46,105,109,112,108,101,109,101,110,116,97,116,105, +- 111,110,46,99,97,99,104,101,95,116,97,103,32,105,115,32, +- 78,111,110,101,32,116,104,101,110,32,78,111,116,73,109,112, +- 108,101,109,101,110,116,101,100,69,114,114,111,114,32,105,115, +- 32,114,97,105,115,101,100,46,10,10,32,32,32,32,78,122, +- 36,115,121,115,46,105,109,112,108,101,109,101,110,116,97,116, +- 105,111,110,46,99,97,99,104,101,95,116,97,103,32,105,115, +- 32,78,111,110,101,122,37,123,125,32,110,111,116,32,98,111, +- 116,116,111,109,45,108,101,118,101,108,32,100,105,114,101,99, +- 116,111,114,121,32,105,110,32,123,33,114,125,114,116,0,0, +- 0,114,115,0,0,0,122,28,101,120,112,101,99,116,101,100, +- 32,111,110,108,121,32,50,32,100,111,116,115,32,105,110,32, +- 123,33,114,125,114,84,0,0,0,41,12,114,7,0,0,0, +- 114,122,0,0,0,114,123,0,0,0,114,124,0,0,0,114, +- 38,0,0,0,114,125,0,0,0,218,10,86,97,108,117,101, +- 69,114,114,111,114,114,47,0,0,0,114,89,0,0,0,114, +- 121,0,0,0,114,28,0,0,0,218,15,83,79,85,82,67, +- 69,95,83,85,70,70,73,88,69,83,41,5,114,35,0,0, +- 0,114,128,0,0,0,90,16,112,121,99,97,99,104,101,95, +- 102,105,108,101,110,97,109,101,90,7,112,121,99,97,99,104, +- 101,114,129,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,17,115,111,117,114,99,101,95,102,114, +- 111,109,95,99,97,99,104,101,208,1,0,0,115,24,0,0, +- 0,0,9,18,1,15,1,18,1,18,1,12,1,3,1,24, +- 1,21,1,3,1,21,1,19,1,114,135,0,0,0,99,1, +- 0,0,0,0,0,0,0,5,0,0,0,13,0,0,0,67, +- 0,0,0,115,164,0,0,0,116,0,0,124,0,0,131,1, +- 0,100,1,0,107,2,0,114,22,0,100,2,0,83,124,0, +- 0,106,1,0,100,3,0,131,1,0,92,3,0,125,1,0, +- 125,2,0,125,3,0,124,1,0,12,115,81,0,124,3,0, +- 106,2,0,131,0,0,100,7,0,100,8,0,133,2,0,25, +- 100,6,0,107,3,0,114,85,0,124,0,0,83,121,16,0, +- 116,3,0,124,0,0,131,1,0,125,4,0,87,110,40,0, +- 4,116,4,0,116,5,0,102,2,0,107,10,0,114,143,0, +- 1,1,1,124,0,0,100,2,0,100,9,0,133,2,0,25, +- 125,4,0,89,110,1,0,88,116,6,0,124,4,0,131,1, +- 0,114,160,0,124,4,0,83,124,0,0,83,41,10,122,188, +- 67,111,110,118,101,114,116,32,97,32,98,121,116,101,99,111, +- 100,101,32,102,105,108,101,32,112,97,116,104,32,116,111,32, +- 97,32,115,111,117,114,99,101,32,112,97,116,104,32,40,105, +- 102,32,112,111,115,115,105,98,108,101,41,46,10,10,32,32, +- 32,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32, +- 101,120,105,115,116,115,32,112,117,114,101,108,121,32,102,111, +- 114,32,98,97,99,107,119,97,114,100,115,45,99,111,109,112, +- 97,116,105,98,105,108,105,116,121,32,102,111,114,10,32,32, +- 32,32,80,121,73,109,112,111,114,116,95,69,120,101,99,67, +- 111,100,101,77,111,100,117,108,101,87,105,116,104,70,105,108, +- 101,110,97,109,101,115,40,41,32,105,110,32,116,104,101,32, +- 67,32,65,80,73,46,10,10,32,32,32,32,114,84,0,0, +- 0,78,114,116,0,0,0,233,3,0,0,0,114,29,0,0, +- 0,90,2,112,121,233,253,255,255,255,233,255,255,255,255,114, +- 138,0,0,0,41,7,114,31,0,0,0,114,32,0,0,0, +- 218,5,108,111,119,101,114,114,135,0,0,0,114,124,0,0, +- 0,114,133,0,0,0,114,44,0,0,0,41,5,218,13,98, +- 121,116,101,99,111,100,101,95,112,97,116,104,90,4,114,101, +- 115,116,114,36,0,0,0,90,9,101,120,116,101,110,115,105, +- 111,110,218,11,115,111,117,114,99,101,95,112,97,116,104,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,15, +- 95,103,101,116,95,115,111,117,114,99,101,102,105,108,101,231, +- 1,0,0,115,20,0,0,0,0,7,18,1,4,1,24,1, +- 35,1,4,1,3,1,16,1,19,1,21,1,114,142,0,0, +- 0,99,1,0,0,0,0,0,0,0,2,0,0,0,11,0, +- 0,0,67,0,0,0,115,60,0,0,0,121,19,0,116,0, +- 0,124,0,0,131,1,0,106,1,0,125,1,0,87,110,24, +- 0,4,116,2,0,107,10,0,114,45,0,1,1,1,100,1, +- 0,125,1,0,89,110,1,0,88,124,1,0,100,2,0,79, +- 125,1,0,124,1,0,83,41,3,122,51,67,97,108,99,117, +- 108,97,116,101,32,116,104,101,32,109,111,100,101,32,112,101, +- 114,109,105,115,115,105,111,110,115,32,102,111,114,32,97,32, +- 98,121,116,101,99,111,100,101,32,102,105,108,101,46,105,182, +- 1,0,0,233,128,0,0,0,41,3,114,39,0,0,0,114, +- 41,0,0,0,114,40,0,0,0,41,2,114,35,0,0,0, +- 114,42,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,10,95,99,97,108,99,95,109,111,100,101, +- 250,1,0,0,115,12,0,0,0,0,2,3,1,19,1,13, +- 1,11,3,10,1,114,144,0,0,0,218,9,118,101,114,98, +- 111,115,105,116,121,114,29,0,0,0,99,1,0,0,0,1, +- 0,0,0,3,0,0,0,4,0,0,0,71,0,0,0,115, +- 81,0,0,0,116,0,0,106,1,0,106,2,0,124,1,0, +- 107,5,0,114,77,0,124,0,0,106,3,0,100,6,0,131, +- 1,0,115,46,0,100,3,0,124,0,0,23,125,0,0,110, +- 0,0,116,4,0,124,0,0,106,5,0,124,2,0,140,0, +- 0,100,4,0,116,0,0,106,6,0,131,1,1,1,110,0, +- 0,100,5,0,83,41,7,122,61,80,114,105,110,116,32,116, +- 104,101,32,109,101,115,115,97,103,101,32,116,111,32,115,116, +- 100,101,114,114,32,105,102,32,45,118,47,80,89,84,72,79, +- 78,86,69,82,66,79,83,69,32,105,115,32,116,117,114,110, +- 101,100,32,111,110,46,250,1,35,250,7,105,109,112,111,114, +- 116,32,122,2,35,32,114,54,0,0,0,78,41,2,114,146, +- 0,0,0,114,147,0,0,0,41,7,114,7,0,0,0,114, +- 117,0,0,0,218,7,118,101,114,98,111,115,101,114,9,0, +- 0,0,218,5,112,114,105,110,116,114,47,0,0,0,218,6, +- 115,116,100,101,114,114,41,3,218,7,109,101,115,115,97,103, +- 101,114,145,0,0,0,114,80,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,16,95,118,101,114, +- 98,111,115,101,95,109,101,115,115,97,103,101,6,2,0,0, +- 115,8,0,0,0,0,2,18,1,15,1,13,1,114,152,0, +- 0,0,99,1,0,0,0,0,0,0,0,2,0,0,0,4, +- 0,0,0,3,0,0,0,115,38,0,0,0,100,1,0,135, +- 0,0,102,1,0,100,2,0,100,3,0,134,1,0,125,1, +- 0,116,0,0,124,1,0,136,0,0,131,2,0,1,124,1, +- 0,83,41,4,122,252,68,101,99,111,114,97,116,111,114,32, +- 116,111,32,118,101,114,105,102,121,32,116,104,97,116,32,116, +- 104,101,32,109,111,100,117,108,101,32,98,101,105,110,103,32, +- 114,101,113,117,101,115,116,101,100,32,109,97,116,99,104,101, +- 115,32,116,104,101,32,111,110,101,32,116,104,101,10,32,32, +- 32,32,108,111,97,100,101,114,32,99,97,110,32,104,97,110, +- 100,108,101,46,10,10,32,32,32,32,84,104,101,32,102,105, +- 114,115,116,32,97,114,103,117,109,101,110,116,32,40,115,101, +- 108,102,41,32,109,117,115,116,32,100,101,102,105,110,101,32, +- 95,110,97,109,101,32,119,104,105,99,104,32,116,104,101,32, +- 115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32, +- 105,115,10,32,32,32,32,99,111,109,112,97,114,101,100,32, +- 97,103,97,105,110,115,116,46,32,73,102,32,116,104,101,32, +- 99,111,109,112,97,114,105,115,111,110,32,102,97,105,108,115, +- 32,116,104,101,110,32,73,109,112,111,114,116,69,114,114,111, +- 114,32,105,115,32,114,97,105,115,101,100,46,10,10,32,32, +- 32,32,78,99,2,0,0,0,0,0,0,0,4,0,0,0, +- 5,0,0,0,31,0,0,0,115,83,0,0,0,124,1,0, +- 100,0,0,107,8,0,114,24,0,124,0,0,106,0,0,125, +- 1,0,110,40,0,124,0,0,106,0,0,124,1,0,107,3, +- 0,114,64,0,116,1,0,100,1,0,124,1,0,22,100,2, +- 0,124,1,0,131,1,1,130,1,0,110,0,0,136,0,0, +- 124,0,0,124,1,0,124,2,0,124,3,0,142,2,0,83, +- 41,3,78,122,23,108,111,97,100,101,114,32,99,97,110,110, +- 111,116,32,104,97,110,100,108,101,32,37,115,114,67,0,0, +- 0,41,2,114,67,0,0,0,218,11,73,109,112,111,114,116, +- 69,114,114,111,114,41,4,114,71,0,0,0,114,67,0,0, +- 0,114,80,0,0,0,114,108,0,0,0,41,1,218,6,109, +- 101,116,104,111,100,114,4,0,0,0,114,5,0,0,0,218, +- 19,95,99,104,101,99,107,95,110,97,109,101,95,119,114,97, +- 112,112,101,114,22,2,0,0,115,10,0,0,0,0,1,12, +- 1,12,1,15,1,25,1,122,40,95,99,104,101,99,107,95, +- 110,97,109,101,46,60,108,111,99,97,108,115,62,46,95,99, +- 104,101,99,107,95,110,97,109,101,95,119,114,97,112,112,101, +- 114,41,1,114,65,0,0,0,41,2,114,154,0,0,0,114, +- 155,0,0,0,114,4,0,0,0,41,1,114,154,0,0,0, +- 114,5,0,0,0,218,11,95,99,104,101,99,107,95,110,97, +- 109,101,14,2,0,0,115,6,0,0,0,0,8,21,6,13, +- 1,114,156,0,0,0,99,1,0,0,0,0,0,0,0,2, +- 0,0,0,3,0,0,0,3,0,0,0,115,35,0,0,0, +- 135,0,0,102,1,0,100,1,0,100,2,0,134,0,0,125, +- 1,0,116,0,0,124,1,0,136,0,0,131,2,0,1,124, +- 1,0,83,41,3,122,49,68,101,99,111,114,97,116,111,114, +- 32,116,111,32,118,101,114,105,102,121,32,116,104,101,32,110, +- 97,109,101,100,32,109,111,100,117,108,101,32,105,115,32,98, +- 117,105,108,116,45,105,110,46,99,2,0,0,0,0,0,0, +- 0,2,0,0,0,4,0,0,0,19,0,0,0,115,58,0, +- 0,0,124,1,0,116,0,0,106,1,0,107,7,0,114,45, +- 0,116,2,0,100,1,0,106,3,0,124,1,0,131,1,0, +- 100,2,0,124,1,0,131,1,1,130,1,0,110,0,0,136, +- 0,0,124,0,0,124,1,0,131,2,0,83,41,3,78,122, +- 29,123,33,114,125,32,105,115,32,110,111,116,32,97,32,98, +- 117,105,108,116,45,105,110,32,109,111,100,117,108,101,114,67, +- 0,0,0,41,4,114,7,0,0,0,218,20,98,117,105,108, +- 116,105,110,95,109,111,100,117,108,101,95,110,97,109,101,115, +- 114,153,0,0,0,114,47,0,0,0,41,2,114,71,0,0, +- 0,218,8,102,117,108,108,110,97,109,101,41,1,218,3,102, +- 120,110,114,4,0,0,0,114,5,0,0,0,218,25,95,114, +- 101,113,117,105,114,101,115,95,98,117,105,108,116,105,110,95, +- 119,114,97,112,112,101,114,34,2,0,0,115,8,0,0,0, +- 0,1,15,1,18,1,12,1,122,52,95,114,101,113,117,105, +- 114,101,115,95,98,117,105,108,116,105,110,46,60,108,111,99, +- 97,108,115,62,46,95,114,101,113,117,105,114,101,115,95,98, +- 117,105,108,116,105,110,95,119,114,97,112,112,101,114,41,1, +- 114,65,0,0,0,41,2,114,159,0,0,0,114,160,0,0, +- 0,114,4,0,0,0,41,1,114,159,0,0,0,114,5,0, +- 0,0,218,17,95,114,101,113,117,105,114,101,115,95,98,117, +- 105,108,116,105,110,32,2,0,0,115,6,0,0,0,0,2, +- 18,5,13,1,114,161,0,0,0,99,1,0,0,0,0,0, +- 0,0,2,0,0,0,3,0,0,0,3,0,0,0,115,35, +- 0,0,0,135,0,0,102,1,0,100,1,0,100,2,0,134, +- 0,0,125,1,0,116,0,0,124,1,0,136,0,0,131,2, +- 0,1,124,1,0,83,41,3,122,47,68,101,99,111,114,97, +- 116,111,114,32,116,111,32,118,101,114,105,102,121,32,116,104, +- 101,32,110,97,109,101,100,32,109,111,100,117,108,101,32,105, +- 115,32,102,114,111,122,101,110,46,99,2,0,0,0,0,0, +- 0,0,2,0,0,0,4,0,0,0,19,0,0,0,115,58, +- 0,0,0,116,0,0,106,1,0,124,1,0,131,1,0,115, +- 45,0,116,2,0,100,1,0,106,3,0,124,1,0,131,1, +- 0,100,2,0,124,1,0,131,1,1,130,1,0,110,0,0, +- 136,0,0,124,0,0,124,1,0,131,2,0,83,41,3,78, +- 122,27,123,33,114,125,32,105,115,32,110,111,116,32,97,32, +- 102,114,111,122,101,110,32,109,111,100,117,108,101,114,67,0, +- 0,0,41,4,114,106,0,0,0,218,9,105,115,95,102,114, +- 111,122,101,110,114,153,0,0,0,114,47,0,0,0,41,2, +- 114,71,0,0,0,114,158,0,0,0,41,1,114,159,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,24,95,114,101, +- 113,117,105,114,101,115,95,102,114,111,122,101,110,95,119,114, +- 97,112,112,101,114,45,2,0,0,115,8,0,0,0,0,1, +- 15,1,18,1,12,1,122,50,95,114,101,113,117,105,114,101, +- 115,95,102,114,111,122,101,110,46,60,108,111,99,97,108,115, +- 62,46,95,114,101,113,117,105,114,101,115,95,102,114,111,122, +- 101,110,95,119,114,97,112,112,101,114,41,1,114,65,0,0, +- 0,41,2,114,159,0,0,0,114,163,0,0,0,114,4,0, +- 0,0,41,1,114,159,0,0,0,114,5,0,0,0,218,16, +- 95,114,101,113,117,105,114,101,115,95,102,114,111,122,101,110, +- 43,2,0,0,115,6,0,0,0,0,2,18,5,13,1,114, +- 164,0,0,0,99,2,0,0,0,0,0,0,0,5,0,0, +- 0,5,0,0,0,67,0,0,0,115,87,0,0,0,124,0, - 0,106,0,0,124,1,0,131,1,0,92,2,0,125,2,0, -- 125,3,0,124,2,0,100,1,0,107,8,0,114,80,0,116, -- 1,0,124,3,0,131,1,0,114,80,0,100,2,0,125,4, +- 125,3,0,124,2,0,100,1,0,107,8,0,114,83,0,116, +- 1,0,124,3,0,131,1,0,114,83,0,100,2,0,125,4, - 0,116,2,0,106,3,0,124,4,0,106,4,0,124,3,0, -- 100,3,0,25,131,1,0,116,5,0,131,2,0,1,124,2, -- 0,83,41,4,122,155,84,114,121,32,116,111,32,102,105,110, -- 100,32,97,32,108,111,97,100,101,114,32,102,111,114,32,116, -- 104,101,32,115,112,101,99,105,102,105,101,100,32,109,111,100, -- 117,108,101,32,98,121,32,100,101,108,101,103,97,116,105,110, -- 103,32,116,111,10,32,32,32,32,115,101,108,102,46,102,105, -- 110,100,95,108,111,97,100,101,114,40,41,46,10,10,32,32, -- 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115, -- 32,100,101,112,114,101,99,97,116,101,100,32,105,110,32,102, -- 97,118,111,114,32,111,102,32,102,105,110,100,101,114,46,102, -- 105,110,100,95,115,112,101,99,40,41,46,10,10,32,32,32, -- 32,78,122,44,78,111,116,32,105,109,112,111,114,116,105,110, -- 103,32,100,105,114,101,99,116,111,114,121,32,123,125,58,32, -- 109,105,115,115,105,110,103,32,95,95,105,110,105,116,95,95, -- 114,59,0,0,0,41,6,218,11,102,105,110,100,95,108,111, -- 97,100,101,114,114,31,0,0,0,114,60,0,0,0,114,61, -- 0,0,0,114,47,0,0,0,218,13,73,109,112,111,114,116, -- 87,97,114,110,105,110,103,41,5,114,108,0,0,0,218,8, -- 102,117,108,108,110,97,109,101,218,6,108,111,97,100,101,114, -- 218,8,112,111,114,116,105,111,110,115,218,3,109,115,103,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,17, -- 95,102,105,110,100,95,109,111,100,117,108,101,95,115,104,105, -- 109,143,1,0,0,115,10,0,0,0,0,10,21,1,24,1, -- 6,1,29,1,114,130,0,0,0,99,4,0,0,0,0,0, -- 0,0,11,0,0,0,19,0,0,0,67,0,0,0,115,240, -- 1,0,0,105,0,0,125,4,0,124,2,0,100,1,0,107, -- 9,0,114,31,0,124,2,0,124,4,0,100,2,0,60,110, -- 6,0,100,3,0,125,2,0,124,3,0,100,1,0,107,9, -- 0,114,59,0,124,3,0,124,4,0,100,4,0,60,124,0, -- 0,100,1,0,100,5,0,133,2,0,25,125,5,0,124,0, -- 0,100,5,0,100,6,0,133,2,0,25,125,6,0,124,0, -- 0,100,6,0,100,7,0,133,2,0,25,125,7,0,124,5, -- 0,116,0,0,107,3,0,114,168,0,100,8,0,106,1,0, -- 124,2,0,124,5,0,131,2,0,125,8,0,116,2,0,100, -- 9,0,124,8,0,131,2,0,1,116,3,0,124,8,0,124, -- 4,0,141,1,0,130,1,0,110,119,0,116,4,0,124,6, -- 0,131,1,0,100,5,0,107,3,0,114,229,0,100,10,0, -- 106,1,0,124,2,0,131,1,0,125,8,0,116,2,0,100, -- 9,0,124,8,0,131,2,0,1,116,5,0,124,8,0,131, -- 1,0,130,1,0,110,58,0,116,4,0,124,7,0,131,1, -- 0,100,5,0,107,3,0,114,31,1,100,11,0,106,1,0, -- 124,2,0,131,1,0,125,8,0,116,2,0,100,9,0,124, -- 8,0,131,2,0,1,116,5,0,124,8,0,131,1,0,130, -- 1,0,124,1,0,100,1,0,107,9,0,114,226,1,121,20, -- 0,116,6,0,124,1,0,100,12,0,25,131,1,0,125,9, -- 0,87,110,18,0,4,116,7,0,107,10,0,114,83,1,1, -- 1,1,89,110,62,0,88,116,8,0,124,6,0,131,1,0, -- 124,9,0,107,3,0,114,145,1,100,13,0,106,1,0,124, -- 2,0,131,1,0,125,8,0,116,2,0,100,9,0,124,8, -- 0,131,2,0,1,116,3,0,124,8,0,124,4,0,141,1, -- 0,130,1,0,121,18,0,124,1,0,100,14,0,25,100,15, -- 0,64,125,10,0,87,110,18,0,4,116,7,0,107,10,0, -- 114,183,1,1,1,1,89,110,43,0,88,116,8,0,124,7, -- 0,131,1,0,124,10,0,107,3,0,114,226,1,116,3,0, -- 100,13,0,106,1,0,124,2,0,131,1,0,124,4,0,141, -- 1,0,130,1,0,124,0,0,100,7,0,100,1,0,133,2, -- 0,25,83,41,16,97,122,1,0,0,86,97,108,105,100,97, -- 116,101,32,116,104,101,32,104,101,97,100,101,114,32,111,102, -- 32,116,104,101,32,112,97,115,115,101,100,45,105,110,32,98, -- 121,116,101,99,111,100,101,32,97,103,97,105,110,115,116,32, -- 115,111,117,114,99,101,95,115,116,97,116,115,32,40,105,102, -- 10,32,32,32,32,103,105,118,101,110,41,32,97,110,100,32, -- 114,101,116,117,114,110,105,110,103,32,116,104,101,32,98,121, -- 116,101,99,111,100,101,32,116,104,97,116,32,99,97,110,32, -- 98,101,32,99,111,109,112,105,108,101,100,32,98,121,32,99, -- 111,109,112,105,108,101,40,41,46,10,10,32,32,32,32,65, -- 108,108,32,111,116,104,101,114,32,97,114,103,117,109,101,110, -- 116,115,32,97,114,101,32,117,115,101,100,32,116,111,32,101, -- 110,104,97,110,99,101,32,101,114,114,111,114,32,114,101,112, -- 111,114,116,105,110,103,46,10,10,32,32,32,32,73,109,112, -- 111,114,116,69,114,114,111,114,32,105,115,32,114,97,105,115, -- 101,100,32,119,104,101,110,32,116,104,101,32,109,97,103,105, -- 99,32,110,117,109,98,101,114,32,105,115,32,105,110,99,111, -- 114,114,101,99,116,32,111,114,32,116,104,101,32,98,121,116, -- 101,99,111,100,101,32,105,115,10,32,32,32,32,102,111,117, -- 110,100,32,116,111,32,98,101,32,115,116,97,108,101,46,32, -- 69,79,70,69,114,114,111,114,32,105,115,32,114,97,105,115, -- 101,100,32,119,104,101,110,32,116,104,101,32,100,97,116,97, -- 32,105,115,32,102,111,117,110,100,32,116,111,32,98,101,10, -- 32,32,32,32,116,114,117,110,99,97,116,101,100,46,10,10, -- 32,32,32,32,78,114,106,0,0,0,122,10,60,98,121,116, -- 101,99,111,100,101,62,114,35,0,0,0,114,12,0,0,0, -- 233,8,0,0,0,233,12,0,0,0,122,30,98,97,100,32, -- 109,97,103,105,99,32,110,117,109,98,101,114,32,105,110,32, -- 123,33,114,125,58,32,123,33,114,125,122,2,123,125,122,43, -- 114,101,97,99,104,101,100,32,69,79,70,32,119,104,105,108, -- 101,32,114,101,97,100,105,110,103,32,116,105,109,101,115,116, -- 97,109,112,32,105,110,32,123,33,114,125,122,48,114,101,97, -- 99,104,101,100,32,69,79,70,32,119,104,105,108,101,32,114, -- 101,97,100,105,110,103,32,115,105,122,101,32,111,102,32,115, -- 111,117,114,99,101,32,105,110,32,123,33,114,125,218,5,109, -- 116,105,109,101,122,26,98,121,116,101,99,111,100,101,32,105, -- 115,32,115,116,97,108,101,32,102,111,114,32,123,33,114,125, -- 218,4,115,105,122,101,108,3,0,0,0,255,127,255,127,3, -- 0,41,9,218,12,77,65,71,73,67,95,78,85,77,66,69, -- 82,114,47,0,0,0,114,105,0,0,0,114,107,0,0,0, -- 114,31,0,0,0,218,8,69,79,70,69,114,114,111,114,114, -- 14,0,0,0,218,8,75,101,121,69,114,114,111,114,114,19, -- 0,0,0,41,11,114,53,0,0,0,218,12,115,111,117,114, -- 99,101,95,115,116,97,116,115,114,106,0,0,0,114,35,0, -- 0,0,90,11,101,120,99,95,100,101,116,97,105,108,115,90, -- 5,109,97,103,105,99,90,13,114,97,119,95,116,105,109,101, -- 115,116,97,109,112,90,8,114,97,119,95,115,105,122,101,114, -- 75,0,0,0,218,12,115,111,117,114,99,101,95,109,116,105, -- 109,101,218,11,115,111,117,114,99,101,95,115,105,122,101,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,25, -- 95,118,97,108,105,100,97,116,101,95,98,121,116,101,99,111, -- 100,101,95,104,101,97,100,101,114,160,1,0,0,115,76,0, -- 0,0,0,11,6,1,12,1,13,3,6,1,12,1,10,1, -- 16,1,16,1,16,1,12,1,18,1,13,1,18,1,18,1, -- 15,1,13,1,15,1,18,1,15,1,13,1,12,1,12,1, -- 3,1,20,1,13,1,5,2,18,1,15,1,13,1,15,1, -- 3,1,18,1,13,1,5,2,18,1,15,1,9,1,114,141, -- 0,0,0,99,4,0,0,0,0,0,0,0,5,0,0,0, -- 6,0,0,0,67,0,0,0,115,112,0,0,0,116,0,0, -- 106,1,0,124,0,0,131,1,0,125,4,0,116,2,0,124, -- 4,0,116,3,0,131,2,0,114,75,0,116,4,0,100,1, -- 0,124,2,0,131,2,0,1,124,3,0,100,2,0,107,9, -- 0,114,71,0,116,5,0,106,6,0,124,4,0,124,3,0, -- 131,2,0,1,124,4,0,83,116,7,0,100,3,0,106,8, -- 0,124,2,0,131,1,0,100,4,0,124,1,0,100,5,0, -- 124,2,0,131,1,2,130,1,0,100,2,0,83,41,6,122, -- 60,67,111,109,112,105,108,101,32,98,121,116,101,99,111,100, -- 101,32,97,115,32,114,101,116,117,114,110,101,100,32,98,121, -- 32,95,118,97,108,105,100,97,116,101,95,98,121,116,101,99, -- 111,100,101,95,104,101,97,100,101,114,40,41,46,122,21,99, -- 111,100,101,32,111,98,106,101,99,116,32,102,114,111,109,32, -- 123,33,114,125,78,122,23,78,111,110,45,99,111,100,101,32, -- 111,98,106,101,99,116,32,105,110,32,123,33,114,125,114,106, -- 0,0,0,114,35,0,0,0,41,9,218,7,109,97,114,115, -- 104,97,108,90,5,108,111,97,100,115,218,10,105,115,105,110, -- 115,116,97,110,99,101,218,10,95,99,111,100,101,95,116,121, -- 112,101,114,105,0,0,0,218,4,95,105,109,112,90,16,95, -- 102,105,120,95,99,111,95,102,105,108,101,110,97,109,101,114, -- 107,0,0,0,114,47,0,0,0,41,5,114,53,0,0,0, -- 114,106,0,0,0,114,89,0,0,0,114,90,0,0,0,218, -- 4,99,111,100,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,17,95,99,111,109,112,105,108,101,95,98, -- 121,116,101,99,111,100,101,215,1,0,0,115,16,0,0,0, -- 0,2,15,1,15,1,13,1,12,1,16,1,4,2,18,1, -- 114,147,0,0,0,114,59,0,0,0,99,3,0,0,0,0, -- 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, -- 76,0,0,0,116,0,0,116,1,0,131,1,0,125,3,0, -- 124,3,0,106,2,0,116,3,0,124,1,0,131,1,0,131, -- 1,0,1,124,3,0,106,2,0,116,3,0,124,2,0,131, -- 1,0,131,1,0,1,124,3,0,106,2,0,116,4,0,106, -- 5,0,124,0,0,131,1,0,131,1,0,1,124,3,0,83, -- 41,1,122,80,67,111,109,112,105,108,101,32,97,32,99,111, -- 100,101,32,111,98,106,101,99,116,32,105,110,116,111,32,98, -- 121,116,101,99,111,100,101,32,102,111,114,32,119,114,105,116, -- 105,110,103,32,111,117,116,32,116,111,32,97,32,98,121,116, -- 101,45,99,111,109,112,105,108,101,100,10,32,32,32,32,102, -- 105,108,101,46,41,6,218,9,98,121,116,101,97,114,114,97, -- 121,114,135,0,0,0,218,6,101,120,116,101,110,100,114,17, -- 0,0,0,114,142,0,0,0,90,5,100,117,109,112,115,41, -- 4,114,146,0,0,0,114,133,0,0,0,114,140,0,0,0, -- 114,53,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,17,95,99,111,100,101,95,116,111,95,98, -- 121,116,101,99,111,100,101,227,1,0,0,115,10,0,0,0, -- 0,3,12,1,19,1,19,1,22,1,114,150,0,0,0,99, -- 1,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0, -- 67,0,0,0,115,89,0,0,0,100,1,0,100,2,0,108, -- 0,0,125,1,0,116,1,0,106,2,0,124,0,0,131,1, -- 0,106,3,0,125,2,0,124,1,0,106,4,0,124,2,0, -- 131,1,0,125,3,0,116,1,0,106,5,0,100,2,0,100, -- 3,0,131,2,0,125,4,0,124,4,0,106,6,0,124,0, -- 0,106,6,0,124,3,0,100,1,0,25,131,1,0,131,1, -- 0,83,41,4,122,121,68,101,99,111,100,101,32,98,121,116, -- 101,115,32,114,101,112,114,101,115,101,110,116,105,110,103,32, -- 115,111,117,114,99,101,32,99,111,100,101,32,97,110,100,32, -- 114,101,116,117,114,110,32,116,104,101,32,115,116,114,105,110, -- 103,46,10,10,32,32,32,32,85,110,105,118,101,114,115,97, -- 108,32,110,101,119,108,105,110,101,32,115,117,112,112,111,114, -- 116,32,105,115,32,117,115,101,100,32,105,110,32,116,104,101, -- 32,100,101,99,111,100,105,110,103,46,10,32,32,32,32,114, -- 59,0,0,0,78,84,41,7,218,8,116,111,107,101,110,105, -- 122,101,114,49,0,0,0,90,7,66,121,116,101,115,73,79, -- 90,8,114,101,97,100,108,105,110,101,90,15,100,101,116,101, -- 99,116,95,101,110,99,111,100,105,110,103,90,25,73,110,99, -- 114,101,109,101,110,116,97,108,78,101,119,108,105,110,101,68, -- 101,99,111,100,101,114,218,6,100,101,99,111,100,101,41,5, -- 218,12,115,111,117,114,99,101,95,98,121,116,101,115,114,151, -- 0,0,0,90,21,115,111,117,114,99,101,95,98,121,116,101, -- 115,95,114,101,97,100,108,105,110,101,218,8,101,110,99,111, -- 100,105,110,103,90,15,110,101,119,108,105,110,101,95,100,101, -- 99,111,100,101,114,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,13,100,101,99,111,100,101,95,115,111,117, -- 114,99,101,237,1,0,0,115,10,0,0,0,0,5,12,1, -- 18,1,15,1,18,1,114,155,0,0,0,114,127,0,0,0, -- 218,26,115,117,98,109,111,100,117,108,101,95,115,101,97,114, -- 99,104,95,108,111,99,97,116,105,111,110,115,99,2,0,0, -- 0,2,0,0,0,9,0,0,0,19,0,0,0,67,0,0, -- 0,115,89,1,0,0,124,1,0,100,1,0,107,8,0,114, -- 73,0,100,2,0,125,1,0,116,0,0,124,2,0,100,3, -- 0,131,2,0,114,73,0,121,19,0,124,2,0,106,1,0, -- 124,0,0,131,1,0,125,1,0,87,110,18,0,4,116,2, -- 0,107,10,0,114,72,0,1,1,1,89,110,1,0,88,116, -- 3,0,106,4,0,124,0,0,124,2,0,100,4,0,124,1, -- 0,131,2,1,125,4,0,100,5,0,124,4,0,95,5,0, -- 124,2,0,100,1,0,107,8,0,114,194,0,120,73,0,116, -- 6,0,131,0,0,68,93,58,0,92,2,0,125,5,0,125, -- 6,0,124,1,0,106,7,0,116,8,0,124,6,0,131,1, -- 0,131,1,0,114,128,0,124,5,0,124,0,0,124,1,0, -- 131,2,0,125,2,0,124,2,0,124,4,0,95,9,0,80, -- 113,128,0,87,100,1,0,83,124,3,0,116,10,0,107,8, -- 0,114,23,1,116,0,0,124,2,0,100,6,0,131,2,0, -- 114,32,1,121,19,0,124,2,0,106,11,0,124,0,0,131, -- 1,0,125,7,0,87,110,18,0,4,116,2,0,107,10,0, -- 114,4,1,1,1,1,89,113,32,1,88,124,7,0,114,32, -- 1,103,0,0,124,4,0,95,12,0,110,9,0,124,3,0, -- 124,4,0,95,12,0,124,4,0,106,12,0,103,0,0,107, -- 2,0,114,85,1,124,1,0,114,85,1,116,13,0,124,1, -- 0,131,1,0,100,7,0,25,125,8,0,124,4,0,106,12, -- 0,106,14,0,124,8,0,131,1,0,1,124,4,0,83,41, -- 8,97,61,1,0,0,82,101,116,117,114,110,32,97,32,109, -- 111,100,117,108,101,32,115,112,101,99,32,98,97,115,101,100, -- 32,111,110,32,97,32,102,105,108,101,32,108,111,99,97,116, -- 105,111,110,46,10,10,32,32,32,32,84,111,32,105,110,100, -- 105,99,97,116,101,32,116,104,97,116,32,116,104,101,32,109, -- 111,100,117,108,101,32,105,115,32,97,32,112,97,99,107,97, -- 103,101,44,32,115,101,116,10,32,32,32,32,115,117,98,109, -- 111,100,117,108,101,95,115,101,97,114,99,104,95,108,111,99, -- 97,116,105,111,110,115,32,116,111,32,97,32,108,105,115,116, -- 32,111,102,32,100,105,114,101,99,116,111,114,121,32,112,97, -- 116,104,115,46,32,32,65,110,10,32,32,32,32,101,109,112, -- 116,121,32,108,105,115,116,32,105,115,32,115,117,102,102,105, -- 99,105,101,110,116,44,32,116,104,111,117,103,104,32,105,116, -- 115,32,110,111,116,32,111,116,104,101,114,119,105,115,101,32, -- 117,115,101,102,117,108,32,116,111,32,116,104,101,10,32,32, -- 32,32,105,109,112,111,114,116,32,115,121,115,116,101,109,46, -- 10,10,32,32,32,32,84,104,101,32,108,111,97,100,101,114, -- 32,109,117,115,116,32,116,97,107,101,32,97,32,115,112,101, -- 99,32,97,115,32,105,116,115,32,111,110,108,121,32,95,95, -- 105,110,105,116,95,95,40,41,32,97,114,103,46,10,10,32, -- 32,32,32,78,122,9,60,117,110,107,110,111,119,110,62,218, -- 12,103,101,116,95,102,105,108,101,110,97,109,101,218,6,111, -- 114,105,103,105,110,84,218,10,105,115,95,112,97,99,107,97, -- 103,101,114,59,0,0,0,41,15,114,115,0,0,0,114,157, -- 0,0,0,114,107,0,0,0,114,121,0,0,0,218,10,77, -- 111,100,117,108,101,83,112,101,99,90,13,95,115,101,116,95, -- 102,105,108,101,97,116,116,114,218,27,95,103,101,116,95,115, -- 117,112,112,111,114,116,101,100,95,102,105,108,101,95,108,111, -- 97,100,101,114,115,114,92,0,0,0,114,93,0,0,0,114, -- 127,0,0,0,218,9,95,80,79,80,85,76,65,84,69,114, -- 159,0,0,0,114,156,0,0,0,114,38,0,0,0,218,6, -- 97,112,112,101,110,100,41,9,114,106,0,0,0,90,8,108, -- 111,99,97,116,105,111,110,114,127,0,0,0,114,156,0,0, -- 0,218,4,115,112,101,99,218,12,108,111,97,100,101,114,95, -- 99,108,97,115,115,218,8,115,117,102,102,105,120,101,115,114, -- 159,0,0,0,90,7,100,105,114,110,97,109,101,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,218,23,115,112, -- 101,99,95,102,114,111,109,95,102,105,108,101,95,108,111,99, -- 97,116,105,111,110,254,1,0,0,115,60,0,0,0,0,12, -- 12,4,6,1,15,2,3,1,19,1,13,1,5,8,24,1, -- 9,3,12,1,22,1,21,1,15,1,9,1,5,2,4,3, -- 12,2,15,1,3,1,19,1,13,1,5,2,6,1,12,2, -- 9,1,15,1,6,1,16,1,16,2,114,167,0,0,0,99, -- 0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0, -- 64,0,0,0,115,121,0,0,0,101,0,0,90,1,0,100, -- 0,0,90,2,0,100,1,0,90,3,0,100,2,0,90,4, -- 0,100,3,0,90,5,0,100,4,0,90,6,0,101,7,0, -- 100,5,0,100,6,0,132,0,0,131,1,0,90,8,0,101, -- 7,0,100,7,0,100,8,0,132,0,0,131,1,0,90,9, -- 0,101,7,0,100,9,0,100,9,0,100,10,0,100,11,0, -- 132,2,0,131,1,0,90,10,0,101,7,0,100,9,0,100, -- 12,0,100,13,0,132,1,0,131,1,0,90,11,0,100,9, -- 0,83,41,14,218,21,87,105,110,100,111,119,115,82,101,103, -- 105,115,116,114,121,70,105,110,100,101,114,122,62,77,101,116, -- 97,32,112,97,116,104,32,102,105,110,100,101,114,32,102,111, -- 114,32,109,111,100,117,108,101,115,32,100,101,99,108,97,114, -- 101,100,32,105,110,32,116,104,101,32,87,105,110,100,111,119, -- 115,32,114,101,103,105,115,116,114,121,46,122,59,83,111,102, -- 116,119,97,114,101,92,80,121,116,104,111,110,92,80,121,116, -- 104,111,110,67,111,114,101,92,123,115,121,115,95,118,101,114, -- 115,105,111,110,125,92,77,111,100,117,108,101,115,92,123,102, -- 117,108,108,110,97,109,101,125,122,65,83,111,102,116,119,97, -- 114,101,92,80,121,116,104,111,110,92,80,121,116,104,111,110, -- 67,111,114,101,92,123,115,121,115,95,118,101,114,115,105,111, -- 110,125,92,77,111,100,117,108,101,115,92,123,102,117,108,108, -- 110,97,109,101,125,92,68,101,98,117,103,70,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,11,0,0,0,67,0,0, -- 0,115,67,0,0,0,121,23,0,116,0,0,106,1,0,116, -- 0,0,106,2,0,124,1,0,131,2,0,83,87,110,37,0, -- 4,116,3,0,107,10,0,114,62,0,1,1,1,116,0,0, -- 106,1,0,116,0,0,106,4,0,124,1,0,131,2,0,83, -- 89,110,1,0,88,100,0,0,83,41,1,78,41,5,218,7, -- 95,119,105,110,114,101,103,90,7,79,112,101,110,75,101,121, -- 90,17,72,75,69,89,95,67,85,82,82,69,78,84,95,85, -- 83,69,82,114,40,0,0,0,90,18,72,75,69,89,95,76, -- 79,67,65,76,95,77,65,67,72,73,78,69,41,2,218,3, -- 99,108,115,218,3,107,101,121,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,14,95,111,112,101,110,95,114, -- 101,103,105,115,116,114,121,76,2,0,0,115,8,0,0,0, -- 0,2,3,1,23,1,13,1,122,36,87,105,110,100,111,119, -- 115,82,101,103,105,115,116,114,121,70,105,110,100,101,114,46, -- 95,111,112,101,110,95,114,101,103,105,115,116,114,121,99,2, -- 0,0,0,0,0,0,0,6,0,0,0,16,0,0,0,67, -- 0,0,0,115,143,0,0,0,124,0,0,106,0,0,114,21, -- 0,124,0,0,106,1,0,125,2,0,110,9,0,124,0,0, -- 106,2,0,125,2,0,124,2,0,106,3,0,100,1,0,124, -- 1,0,100,2,0,116,4,0,106,5,0,100,0,0,100,3, -- 0,133,2,0,25,131,0,2,125,3,0,121,47,0,124,0, -- 0,106,6,0,124,3,0,131,1,0,143,25,0,125,4,0, -- 116,7,0,106,8,0,124,4,0,100,4,0,131,2,0,125, -- 5,0,87,100,0,0,81,82,88,87,110,22,0,4,116,9, -- 0,107,10,0,114,138,0,1,1,1,100,0,0,83,89,110, -- 1,0,88,124,5,0,83,41,5,78,114,126,0,0,0,90, -- 11,115,121,115,95,118,101,114,115,105,111,110,114,80,0,0, -- 0,114,30,0,0,0,41,10,218,11,68,69,66,85,71,95, -- 66,85,73,76,68,218,18,82,69,71,73,83,84,82,89,95, -- 75,69,89,95,68,69,66,85,71,218,12,82,69,71,73,83, -- 84,82,89,95,75,69,89,114,47,0,0,0,114,7,0,0, -- 0,218,7,118,101,114,115,105,111,110,114,172,0,0,0,114, -- 169,0,0,0,90,10,81,117,101,114,121,86,97,108,117,101, -- 114,40,0,0,0,41,6,114,170,0,0,0,114,126,0,0, -- 0,90,12,114,101,103,105,115,116,114,121,95,107,101,121,114, -- 171,0,0,0,90,4,104,107,101,121,218,8,102,105,108,101, -- 112,97,116,104,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,218,16,95,115,101,97,114,99,104,95,114,101,103, -- 105,115,116,114,121,83,2,0,0,115,22,0,0,0,0,2, -- 9,1,12,2,9,1,15,1,22,1,3,1,18,1,29,1, -- 13,1,9,1,122,38,87,105,110,100,111,119,115,82,101,103, -- 105,115,116,114,121,70,105,110,100,101,114,46,95,115,101,97, -- 114,99,104,95,114,101,103,105,115,116,114,121,78,99,4,0, -- 0,0,0,0,0,0,8,0,0,0,14,0,0,0,67,0, -- 0,0,115,158,0,0,0,124,0,0,106,0,0,124,1,0, -- 131,1,0,125,4,0,124,4,0,100,0,0,107,8,0,114, -- 31,0,100,0,0,83,121,14,0,116,1,0,124,4,0,131, -- 1,0,1,87,110,22,0,4,116,2,0,107,10,0,114,69, -- 0,1,1,1,100,0,0,83,89,110,1,0,88,120,81,0, -- 116,3,0,131,0,0,68,93,70,0,92,2,0,125,5,0, -- 125,6,0,124,4,0,106,4,0,116,5,0,124,6,0,131, -- 1,0,131,1,0,114,80,0,116,6,0,106,7,0,124,1, -- 0,124,5,0,124,1,0,124,4,0,131,2,0,100,1,0, -- 124,4,0,131,2,1,125,7,0,124,7,0,83,113,80,0, -- 87,100,0,0,83,41,2,78,114,158,0,0,0,41,8,114, -- 178,0,0,0,114,39,0,0,0,114,40,0,0,0,114,161, -- 0,0,0,114,92,0,0,0,114,93,0,0,0,114,121,0, -- 0,0,218,16,115,112,101,99,95,102,114,111,109,95,108,111, -- 97,100,101,114,41,8,114,170,0,0,0,114,126,0,0,0, -- 114,35,0,0,0,218,6,116,97,114,103,101,116,114,177,0, -- 0,0,114,127,0,0,0,114,166,0,0,0,114,164,0,0, +- 100,3,0,25,131,1,0,116,5,0,131,2,0,1,110,0, +- 0,124,2,0,83,41,4,122,155,84,114,121,32,116,111,32, +- 102,105,110,100,32,97,32,108,111,97,100,101,114,32,102,111, +- 114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, +- 109,111,100,117,108,101,32,98,121,32,100,101,108,101,103,97, +- 116,105,110,103,32,116,111,10,32,32,32,32,115,101,108,102, +- 46,102,105,110,100,95,108,111,97,100,101,114,40,41,46,10, +- 10,32,32,32,32,84,104,105,115,32,109,101,116,104,111,100, +- 32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,105, +- 110,32,102,97,118,111,114,32,111,102,32,102,105,110,100,101, +- 114,46,102,105,110,100,95,115,112,101,99,40,41,46,10,10, +- 32,32,32,32,78,122,44,78,111,116,32,105,109,112,111,114, +- 116,105,110,103,32,100,105,114,101,99,116,111,114,121,32,123, +- 125,58,32,109,105,115,115,105,110,103,32,95,95,105,110,105, +- 116,95,95,114,84,0,0,0,41,6,218,11,102,105,110,100, +- 95,108,111,97,100,101,114,114,31,0,0,0,218,9,95,119, +- 97,114,110,105,110,103,115,218,4,119,97,114,110,114,47,0, +- 0,0,218,13,73,109,112,111,114,116,87,97,114,110,105,110, +- 103,41,5,114,71,0,0,0,114,158,0,0,0,218,6,108, +- 111,97,100,101,114,218,8,112,111,114,116,105,111,110,115,218, +- 3,109,115,103,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,17,95,102,105,110,100,95,109,111,100,117,108, +- 101,95,115,104,105,109,54,2,0,0,115,10,0,0,0,0, +- 10,21,1,24,1,6,1,32,1,114,172,0,0,0,99,2, +- 0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,67, +- 0,0,0,115,93,0,0,0,116,0,0,124,1,0,124,0, +- 0,131,2,0,125,2,0,116,1,0,124,2,0,131,1,0, +- 125,3,0,124,1,0,116,2,0,106,3,0,107,6,0,114, +- 79,0,116,2,0,106,3,0,124,1,0,25,125,4,0,124, +- 3,0,106,4,0,124,4,0,131,1,0,1,116,2,0,106, +- 3,0,124,1,0,25,83,124,3,0,106,5,0,131,0,0, +- 83,100,1,0,83,41,2,122,128,76,111,97,100,32,116,104, +- 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,117, +- 108,101,32,105,110,116,111,32,115,121,115,46,109,111,100,117, +- 108,101,115,32,97,110,100,32,114,101,116,117,114,110,32,105, +- 116,46,10,10,32,32,32,32,84,104,105,115,32,109,101,116, +- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, +- 100,46,32,32,85,115,101,32,108,111,97,100,101,114,46,101, +- 120,101,99,95,109,111,100,117,108,101,32,105,110,115,116,101, +- 97,100,46,10,10,32,32,32,32,78,41,6,218,16,115,112, +- 101,99,95,102,114,111,109,95,108,111,97,100,101,114,218,12, +- 95,83,112,101,99,77,101,116,104,111,100,115,114,7,0,0, +- 0,114,73,0,0,0,218,4,101,120,101,99,218,4,108,111, +- 97,100,41,5,114,71,0,0,0,114,158,0,0,0,218,4, +- 115,112,101,99,218,7,109,101,116,104,111,100,115,218,6,109, +- 111,100,117,108,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,17,95,108,111,97,100,95,109,111,100,117, +- 108,101,95,115,104,105,109,71,2,0,0,115,14,0,0,0, +- 0,6,15,1,12,1,15,1,13,1,13,1,11,2,114,180, +- 0,0,0,99,4,0,0,0,0,0,0,0,11,0,0,0, +- 19,0,0,0,67,0,0,0,115,243,1,0,0,105,0,0, +- 125,4,0,124,2,0,100,1,0,107,9,0,114,31,0,124, +- 2,0,124,4,0,100,2,0,60,110,6,0,100,3,0,125, +- 2,0,124,3,0,100,1,0,107,9,0,114,62,0,124,3, +- 0,124,4,0,100,4,0,60,110,0,0,124,0,0,100,1, +- 0,100,5,0,133,2,0,25,125,5,0,124,0,0,100,5, +- 0,100,6,0,133,2,0,25,125,6,0,124,0,0,100,6, +- 0,100,7,0,133,2,0,25,125,7,0,124,5,0,116,0, +- 0,107,3,0,114,168,0,100,8,0,106,1,0,124,2,0, +- 124,5,0,131,2,0,125,8,0,116,2,0,124,8,0,131, +- 1,0,1,116,3,0,124,8,0,124,4,0,141,1,0,130, +- 1,0,110,116,0,116,4,0,124,6,0,131,1,0,100,5, +- 0,107,3,0,114,226,0,100,9,0,106,1,0,124,2,0, +- 131,1,0,125,8,0,116,2,0,124,8,0,131,1,0,1, +- 116,5,0,124,8,0,131,1,0,130,1,0,110,58,0,116, +- 4,0,124,7,0,131,1,0,100,5,0,107,3,0,114,28, +- 1,100,10,0,106,1,0,124,2,0,131,1,0,125,8,0, +- 116,2,0,124,8,0,131,1,0,1,116,5,0,124,8,0, +- 131,1,0,130,1,0,110,0,0,124,1,0,100,1,0,107, +- 9,0,114,229,1,121,20,0,116,6,0,124,1,0,100,11, +- 0,25,131,1,0,125,9,0,87,110,18,0,4,116,7,0, +- 107,10,0,114,80,1,1,1,1,89,110,62,0,88,116,8, +- 0,124,6,0,131,1,0,124,9,0,107,3,0,114,142,1, +- 100,12,0,106,1,0,124,2,0,131,1,0,125,8,0,116, +- 2,0,124,8,0,131,1,0,1,116,3,0,124,8,0,124, +- 4,0,141,1,0,130,1,0,110,0,0,121,18,0,124,1, +- 0,100,13,0,25,100,14,0,64,125,10,0,87,110,18,0, +- 4,116,7,0,107,10,0,114,180,1,1,1,1,89,113,229, +- 1,88,116,8,0,124,7,0,131,1,0,124,10,0,107,3, +- 0,114,229,1,116,3,0,100,12,0,106,1,0,124,2,0, +- 131,1,0,124,4,0,141,1,0,130,1,0,113,229,1,110, +- 0,0,124,0,0,100,7,0,100,1,0,133,2,0,25,83, +- 41,15,97,122,1,0,0,86,97,108,105,100,97,116,101,32, +- 116,104,101,32,104,101,97,100,101,114,32,111,102,32,116,104, +- 101,32,112,97,115,115,101,100,45,105,110,32,98,121,116,101, +- 99,111,100,101,32,97,103,97,105,110,115,116,32,115,111,117, +- 114,99,101,95,115,116,97,116,115,32,40,105,102,10,32,32, +- 32,32,103,105,118,101,110,41,32,97,110,100,32,114,101,116, +- 117,114,110,105,110,103,32,116,104,101,32,98,121,116,101,99, +- 111,100,101,32,116,104,97,116,32,99,97,110,32,98,101,32, +- 99,111,109,112,105,108,101,100,32,98,121,32,99,111,109,112, +- 105,108,101,40,41,46,10,10,32,32,32,32,65,108,108,32, +- 111,116,104,101,114,32,97,114,103,117,109,101,110,116,115,32, +- 97,114,101,32,117,115,101,100,32,116,111,32,101,110,104,97, +- 110,99,101,32,101,114,114,111,114,32,114,101,112,111,114,116, +- 105,110,103,46,10,10,32,32,32,32,73,109,112,111,114,116, +- 69,114,114,111,114,32,105,115,32,114,97,105,115,101,100,32, +- 119,104,101,110,32,116,104,101,32,109,97,103,105,99,32,110, +- 117,109,98,101,114,32,105,115,32,105,110,99,111,114,114,101, +- 99,116,32,111,114,32,116,104,101,32,98,121,116,101,99,111, +- 100,101,32,105,115,10,32,32,32,32,102,111,117,110,100,32, +- 116,111,32,98,101,32,115,116,97,108,101,46,32,69,79,70, +- 69,114,114,111,114,32,105,115,32,114,97,105,115,101,100,32, +- 119,104,101,110,32,116,104,101,32,100,97,116,97,32,105,115, +- 32,102,111,117,110,100,32,116,111,32,98,101,10,32,32,32, +- 32,116,114,117,110,99,97,116,101,100,46,10,10,32,32,32, +- 32,78,114,67,0,0,0,122,10,60,98,121,116,101,99,111, +- 100,101,62,114,35,0,0,0,114,12,0,0,0,233,8,0, +- 0,0,233,12,0,0,0,122,30,98,97,100,32,109,97,103, +- 105,99,32,110,117,109,98,101,114,32,105,110,32,123,33,114, +- 125,58,32,123,33,114,125,122,43,114,101,97,99,104,101,100, +- 32,69,79,70,32,119,104,105,108,101,32,114,101,97,100,105, +- 110,103,32,116,105,109,101,115,116,97,109,112,32,105,110,32, +- 123,33,114,125,122,48,114,101,97,99,104,101,100,32,69,79, +- 70,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32, +- 115,105,122,101,32,111,102,32,115,111,117,114,99,101,32,105, +- 110,32,123,33,114,125,218,5,109,116,105,109,101,122,26,98, +- 121,116,101,99,111,100,101,32,105,115,32,115,116,97,108,101, +- 32,102,111,114,32,123,33,114,125,218,4,115,105,122,101,108, +- 3,0,0,0,255,127,255,127,3,0,41,9,218,12,77,65, +- 71,73,67,95,78,85,77,66,69,82,114,47,0,0,0,114, +- 152,0,0,0,114,153,0,0,0,114,31,0,0,0,218,8, +- 69,79,70,69,114,114,111,114,114,14,0,0,0,114,79,0, +- 0,0,114,19,0,0,0,41,11,114,53,0,0,0,218,12, +- 115,111,117,114,99,101,95,115,116,97,116,115,114,67,0,0, +- 0,114,35,0,0,0,90,11,101,120,99,95,100,101,116,97, +- 105,108,115,90,5,109,97,103,105,99,90,13,114,97,119,95, +- 116,105,109,101,115,116,97,109,112,90,8,114,97,119,95,115, +- 105,122,101,114,151,0,0,0,218,12,115,111,117,114,99,101, +- 95,109,116,105,109,101,218,11,115,111,117,114,99,101,95,115, +- 105,122,101,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,218,25,95,118,97,108,105,100,97,116,101,95,98,121, +- 116,101,99,111,100,101,95,104,101,97,100,101,114,87,2,0, +- 0,115,76,0,0,0,0,11,6,1,12,1,13,3,6,1, +- 12,1,13,1,16,1,16,1,16,1,12,1,18,1,10,1, +- 18,1,18,1,15,1,10,1,15,1,18,1,15,1,10,1, +- 15,1,12,1,3,1,20,1,13,1,5,2,18,1,15,1, +- 10,1,18,1,3,1,18,1,13,1,5,2,18,1,15,1, +- 15,1,114,190,0,0,0,99,4,0,0,0,0,0,0,0, +- 5,0,0,0,6,0,0,0,67,0,0,0,115,115,0,0, +- 0,116,0,0,106,1,0,124,0,0,131,1,0,125,4,0, +- 116,2,0,124,4,0,116,3,0,131,2,0,114,78,0,116, +- 4,0,100,1,0,124,2,0,131,2,0,1,124,3,0,100, +- 2,0,107,9,0,114,74,0,116,5,0,106,6,0,124,4, +- 0,124,3,0,131,2,0,1,110,0,0,124,4,0,83,116, +- 7,0,100,3,0,106,8,0,124,2,0,131,1,0,100,4, +- 0,124,1,0,100,5,0,124,2,0,131,1,2,130,1,0, +- 100,2,0,83,41,6,122,60,67,111,109,112,105,108,101,32, +- 98,121,116,101,99,111,100,101,32,97,115,32,114,101,116,117, +- 114,110,101,100,32,98,121,32,95,118,97,108,105,100,97,116, +- 101,95,98,121,116,101,99,111,100,101,95,104,101,97,100,101, +- 114,40,41,46,122,21,99,111,100,101,32,111,98,106,101,99, +- 116,32,102,114,111,109,32,123,33,114,125,78,122,23,78,111, +- 110,45,99,111,100,101,32,111,98,106,101,99,116,32,105,110, +- 32,123,33,114,125,114,67,0,0,0,114,35,0,0,0,41, +- 9,218,7,109,97,114,115,104,97,108,90,5,108,111,97,100, +- 115,218,10,105,115,105,110,115,116,97,110,99,101,218,10,95, +- 99,111,100,101,95,116,121,112,101,114,152,0,0,0,114,106, +- 0,0,0,90,16,95,102,105,120,95,99,111,95,102,105,108, +- 101,110,97,109,101,114,153,0,0,0,114,47,0,0,0,41, +- 5,114,53,0,0,0,114,67,0,0,0,114,140,0,0,0, +- 114,141,0,0,0,218,4,99,111,100,101,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,17,95,99,111,109, +- 112,105,108,101,95,98,121,116,101,99,111,100,101,142,2,0, +- 0,115,16,0,0,0,0,2,15,1,15,1,13,1,12,1, +- 19,1,4,2,18,1,114,195,0,0,0,114,84,0,0,0, +- 99,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0, +- 0,67,0,0,0,115,76,0,0,0,116,0,0,116,1,0, +- 131,1,0,125,3,0,124,3,0,106,2,0,116,3,0,124, +- 1,0,131,1,0,131,1,0,1,124,3,0,106,2,0,116, +- 3,0,124,2,0,131,1,0,131,1,0,1,124,3,0,106, +- 2,0,116,4,0,106,5,0,124,0,0,131,1,0,131,1, +- 0,1,124,3,0,83,41,1,122,80,67,111,109,112,105,108, +- 101,32,97,32,99,111,100,101,32,111,98,106,101,99,116,32, +- 105,110,116,111,32,98,121,116,101,99,111,100,101,32,102,111, +- 114,32,119,114,105,116,105,110,103,32,111,117,116,32,116,111, +- 32,97,32,98,121,116,101,45,99,111,109,112,105,108,101,100, +- 10,32,32,32,32,102,105,108,101,46,41,6,218,9,98,121, +- 116,101,97,114,114,97,121,114,185,0,0,0,218,6,101,120, +- 116,101,110,100,114,17,0,0,0,114,191,0,0,0,90,5, +- 100,117,109,112,115,41,4,114,194,0,0,0,114,183,0,0, +- 0,114,189,0,0,0,114,53,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,17,95,99,111,100, +- 101,95,116,111,95,98,121,116,101,99,111,100,101,154,2,0, +- 0,115,10,0,0,0,0,3,12,1,19,1,19,1,22,1, +- 114,198,0,0,0,99,1,0,0,0,0,0,0,0,5,0, +- 0,0,4,0,0,0,67,0,0,0,115,89,0,0,0,100, +- 1,0,100,2,0,108,0,0,125,1,0,116,1,0,106,2, +- 0,124,0,0,131,1,0,106,3,0,125,2,0,124,1,0, +- 106,4,0,124,2,0,131,1,0,125,3,0,116,1,0,106, +- 5,0,100,2,0,100,3,0,131,2,0,125,4,0,124,4, +- 0,106,6,0,124,0,0,106,6,0,124,3,0,100,1,0, +- 25,131,1,0,131,1,0,83,41,4,122,121,68,101,99,111, +- 100,101,32,98,121,116,101,115,32,114,101,112,114,101,115,101, +- 110,116,105,110,103,32,115,111,117,114,99,101,32,99,111,100, +- 101,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101, +- 32,115,116,114,105,110,103,46,10,10,32,32,32,32,85,110, +- 105,118,101,114,115,97,108,32,110,101,119,108,105,110,101,32, +- 115,117,112,112,111,114,116,32,105,115,32,117,115,101,100,32, +- 105,110,32,116,104,101,32,100,101,99,111,100,105,110,103,46, +- 10,32,32,32,32,114,84,0,0,0,78,84,41,7,218,8, +- 116,111,107,101,110,105,122,101,114,49,0,0,0,90,7,66, +- 121,116,101,115,73,79,90,8,114,101,97,100,108,105,110,101, +- 90,15,100,101,116,101,99,116,95,101,110,99,111,100,105,110, +- 103,90,25,73,110,99,114,101,109,101,110,116,97,108,78,101, +- 119,108,105,110,101,68,101,99,111,100,101,114,218,6,100,101, +- 99,111,100,101,41,5,218,12,115,111,117,114,99,101,95,98, +- 121,116,101,115,114,199,0,0,0,90,21,115,111,117,114,99, +- 101,95,98,121,116,101,115,95,114,101,97,100,108,105,110,101, +- 218,8,101,110,99,111,100,105,110,103,90,15,110,101,119,108, +- 105,110,101,95,100,101,99,111,100,101,114,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,13,100,101,99,111, +- 100,101,95,115,111,117,114,99,101,164,2,0,0,115,10,0, +- 0,0,0,5,12,1,18,1,15,1,18,1,114,203,0,0, +- 0,99,1,0,0,0,0,0,0,0,5,0,0,0,35,0, +- 0,0,67,0,0,0,115,15,1,0,0,116,0,0,124,0, +- 0,100,1,0,100,0,0,131,3,0,125,1,0,116,1,0, +- 124,1,0,100,2,0,131,2,0,114,74,0,121,17,0,124, +- 1,0,106,2,0,124,0,0,131,1,0,83,87,113,74,0, +- 4,116,3,0,107,10,0,114,70,0,1,1,1,89,113,74, +- 0,88,110,0,0,121,13,0,124,0,0,106,4,0,125,2, +- 0,87,110,18,0,4,116,5,0,107,10,0,114,107,0,1, +- 1,1,89,110,29,0,88,124,2,0,100,0,0,107,9,0, +- 114,136,0,116,6,0,124,2,0,131,1,0,106,2,0,131, +- 0,0,83,121,13,0,124,0,0,106,7,0,125,3,0,87, +- 110,24,0,4,116,5,0,107,10,0,114,175,0,1,1,1, +- 100,3,0,125,3,0,89,110,1,0,88,121,13,0,124,0, +- 0,106,8,0,125,4,0,87,110,59,0,4,116,5,0,107, +- 10,0,114,250,0,1,1,1,124,1,0,100,0,0,107,8, +- 0,114,230,0,100,4,0,106,9,0,124,3,0,131,1,0, +- 83,100,5,0,106,9,0,124,3,0,124,1,0,131,2,0, +- 83,89,110,17,0,88,100,6,0,106,9,0,124,3,0,124, +- 4,0,131,2,0,83,100,0,0,83,41,7,78,218,10,95, +- 95,108,111,97,100,101,114,95,95,218,11,109,111,100,117,108, +- 101,95,114,101,112,114,250,1,63,122,13,60,109,111,100,117, +- 108,101,32,123,33,114,125,62,122,20,60,109,111,100,117,108, +- 101,32,123,33,114,125,32,40,123,33,114,125,41,62,122,23, +- 60,109,111,100,117,108,101,32,123,33,114,125,32,102,114,111, +- 109,32,123,33,114,125,62,41,10,114,62,0,0,0,114,60, +- 0,0,0,114,205,0,0,0,218,9,69,120,99,101,112,116, +- 105,111,110,218,8,95,95,115,112,101,99,95,95,218,14,65, +- 116,116,114,105,98,117,116,101,69,114,114,111,114,114,174,0, +- 0,0,114,57,0,0,0,218,8,95,95,102,105,108,101,95, +- 95,114,47,0,0,0,41,5,114,179,0,0,0,114,169,0, +- 0,0,114,177,0,0,0,114,67,0,0,0,114,131,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,9,102,105,110,100,95,115,112,101,99,98,2,0,0,115, -- 26,0,0,0,0,2,15,1,12,1,4,1,3,1,14,1, -- 13,1,9,1,22,1,21,1,9,1,15,1,9,1,122,31, -- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, -- 105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,99, -+ 0,12,115,81,0,124,3,0,106,2,0,131,0,0,100,7, -+ 0,100,8,0,133,2,0,25,100,6,0,107,3,0,114,85, -+ 0,124,0,0,83,121,16,0,116,3,0,124,0,0,131,1, -+ 0,125,4,0,87,110,40,0,4,116,4,0,116,5,0,102, -+ 2,0,107,10,0,114,143,0,1,1,1,124,0,0,100,2, -+ 0,100,9,0,133,2,0,25,125,4,0,89,110,1,0,88, -+ 116,6,0,124,4,0,131,1,0,114,160,0,124,4,0,83, -+ 124,0,0,83,41,10,122,188,67,111,110,118,101,114,116,32, -+ 97,32,98,121,116,101,99,111,100,101,32,102,105,108,101,32, -+ 112,97,116,104,32,116,111,32,97,32,115,111,117,114,99,101, -+ 32,112,97,116,104,32,40,105,102,32,112,111,115,115,105,98, -+ 108,101,41,46,10,10,32,32,32,32,84,104,105,115,32,102, -+ 117,110,99,116,105,111,110,32,101,120,105,115,116,115,32,112, -+ 117,114,101,108,121,32,102,111,114,32,98,97,99,107,119,97, -+ 114,100,115,45,99,111,109,112,97,116,105,98,105,108,105,116, -+ 121,32,102,111,114,10,32,32,32,32,80,121,73,109,112,111, -+ 114,116,95,69,120,101,99,67,111,100,101,77,111,100,117,108, -+ 101,87,105,116,104,70,105,108,101,110,97,109,101,115,40,41, -+ 32,105,110,32,116,104,101,32,67,32,65,80,73,46,10,10, -+ 32,32,32,32,114,60,0,0,0,78,114,59,0,0,0,114, -+ 81,0,0,0,114,30,0,0,0,90,2,112,121,233,253,255, -+ 255,255,233,255,255,255,255,114,88,0,0,0,41,7,114,32, -+ 0,0,0,114,33,0,0,0,218,5,108,111,119,101,114,114, -+ 86,0,0,0,114,67,0,0,0,114,72,0,0,0,114,45, -+ 0,0,0,41,5,218,13,98,121,116,101,99,111,100,101,95, -+ 112,97,116,104,114,79,0,0,0,114,37,0,0,0,90,9, -+ 101,120,116,101,110,115,105,111,110,218,11,115,111,117,114,99, -+ 101,95,112,97,116,104,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,15,95,103,101,116,95,115,111,117,114, -+ 99,101,102,105,108,101,64,1,0,0,115,20,0,0,0,0, -+ 7,18,1,4,1,24,1,35,1,4,1,3,1,16,1,19, -+ 1,21,1,114,92,0,0,0,99,1,0,0,0,0,0,0, -+ 0,1,0,0,0,11,0,0,0,67,0,0,0,115,92,0, -+ 0,0,124,0,0,106,0,0,116,1,0,116,2,0,131,1, -+ 0,131,1,0,114,59,0,121,14,0,116,3,0,124,0,0, -+ 131,1,0,83,87,113,88,0,4,116,4,0,107,10,0,114, -+ 55,0,1,1,1,89,113,88,0,88,110,29,0,124,0,0, -+ 106,0,0,116,1,0,116,5,0,131,1,0,131,1,0,114, -+ 84,0,124,0,0,83,100,0,0,83,100,0,0,83,41,1, -+ 78,41,6,218,8,101,110,100,115,119,105,116,104,218,5,116, -+ 117,112,108,101,114,85,0,0,0,114,80,0,0,0,114,67, -+ 0,0,0,114,75,0,0,0,41,1,218,8,102,105,108,101, -+ 110,97,109,101,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,11,95,103,101,116,95,99,97,99,104,101,100, -+ 83,1,0,0,115,16,0,0,0,0,1,21,1,3,1,14, -+ 1,13,1,8,1,21,1,4,2,114,96,0,0,0,99,1, -+ 0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,67, -+ 0,0,0,115,60,0,0,0,121,19,0,116,0,0,124,0, -+ 0,131,1,0,106,1,0,125,1,0,87,110,24,0,4,116, -+ 2,0,107,10,0,114,45,0,1,1,1,100,1,0,125,1, -+ 0,89,110,1,0,88,124,1,0,100,2,0,79,125,1,0, -+ 124,1,0,83,41,3,122,51,67,97,108,99,117,108,97,116, -+ 101,32,116,104,101,32,109,111,100,101,32,112,101,114,109,105, -+ 115,115,105,111,110,115,32,102,111,114,32,97,32,98,121,116, -+ 101,99,111,100,101,32,102,105,108,101,46,105,182,1,0,0, -+ 233,128,0,0,0,41,3,114,40,0,0,0,114,42,0,0, -+ 0,114,41,0,0,0,41,2,114,36,0,0,0,114,43,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,10,95,99,97,108,99,95,109,111,100,101,95,1,0, -+ 0,115,12,0,0,0,0,2,3,1,19,1,13,1,11,3, -+ 10,1,114,98,0,0,0,218,9,118,101,114,98,111,115,105, -+ 116,121,114,30,0,0,0,99,1,0,0,0,1,0,0,0, -+ 3,0,0,0,4,0,0,0,71,0,0,0,115,75,0,0, -+ 0,116,0,0,106,1,0,106,2,0,124,1,0,107,5,0, -+ 114,71,0,124,0,0,106,3,0,100,6,0,131,1,0,115, -+ 43,0,100,3,0,124,0,0,23,125,0,0,116,4,0,124, -+ 0,0,106,5,0,124,2,0,140,0,0,100,4,0,116,0, -+ 0,106,6,0,131,1,1,1,100,5,0,83,41,7,122,61, -+ 80,114,105,110,116,32,116,104,101,32,109,101,115,115,97,103, -+ 101,32,116,111,32,115,116,100,101,114,114,32,105,102,32,45, -+ 118,47,80,89,84,72,79,78,86,69,82,66,79,83,69,32, -+ 105,115,32,116,117,114,110,101,100,32,111,110,46,250,1,35, -+ 250,7,105,109,112,111,114,116,32,122,2,35,32,114,55,0, -+ 0,0,78,41,2,114,100,0,0,0,114,101,0,0,0,41, -+ 7,114,8,0,0,0,114,68,0,0,0,218,7,118,101,114, -+ 98,111,115,101,114,10,0,0,0,218,5,112,114,105,110,116, -+ 114,48,0,0,0,218,6,115,116,100,101,114,114,41,3,114, -+ 76,0,0,0,114,99,0,0,0,218,4,97,114,103,115,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,16, -+ 95,118,101,114,98,111,115,101,95,109,101,115,115,97,103,101, -+ 107,1,0,0,115,8,0,0,0,0,2,18,1,15,1,10, -+ 1,114,106,0,0,0,99,1,0,0,0,0,0,0,0,3, -+ 0,0,0,11,0,0,0,3,0,0,0,115,84,0,0,0, -+ 100,1,0,135,0,0,102,1,0,100,2,0,100,3,0,134, -+ 1,0,125,1,0,121,13,0,116,0,0,106,1,0,125,2, -+ 0,87,110,30,0,4,116,2,0,107,10,0,114,66,0,1, -+ 1,1,100,4,0,100,5,0,132,0,0,125,2,0,89,110, -+ 1,0,88,124,2,0,124,1,0,136,0,0,131,2,0,1, -+ 124,1,0,83,41,6,122,252,68,101,99,111,114,97,116,111, -+ 114,32,116,111,32,118,101,114,105,102,121,32,116,104,97,116, -+ 32,116,104,101,32,109,111,100,117,108,101,32,98,101,105,110, -+ 103,32,114,101,113,117,101,115,116,101,100,32,109,97,116,99, -+ 104,101,115,32,116,104,101,32,111,110,101,32,116,104,101,10, -+ 32,32,32,32,108,111,97,100,101,114,32,99,97,110,32,104, -+ 97,110,100,108,101,46,10,10,32,32,32,32,84,104,101,32, -+ 102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,40, -+ 115,101,108,102,41,32,109,117,115,116,32,100,101,102,105,110, -+ 101,32,95,110,97,109,101,32,119,104,105,99,104,32,116,104, -+ 101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110, -+ 116,32,105,115,10,32,32,32,32,99,111,109,112,97,114,101, -+ 100,32,97,103,97,105,110,115,116,46,32,73,102,32,116,104, -+ 101,32,99,111,109,112,97,114,105,115,111,110,32,102,97,105, -+ 108,115,32,116,104,101,110,32,73,109,112,111,114,116,69,114, -+ 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,10, -+ 32,32,32,32,78,99,2,0,0,0,0,0,0,0,4,0, -+ 0,0,5,0,0,0,31,0,0,0,115,89,0,0,0,124, -+ 1,0,100,0,0,107,8,0,114,24,0,124,0,0,106,0, -+ 0,125,1,0,110,46,0,124,0,0,106,0,0,124,1,0, -+ 107,3,0,114,70,0,116,1,0,100,1,0,124,0,0,106, -+ 0,0,124,1,0,102,2,0,22,100,2,0,124,1,0,131, -+ 1,1,130,1,0,136,0,0,124,0,0,124,1,0,124,2, -+ 0,124,3,0,142,2,0,83,41,3,78,122,30,108,111,97, -+ 100,101,114,32,102,111,114,32,37,115,32,99,97,110,110,111, -+ 116,32,104,97,110,100,108,101,32,37,115,218,4,110,97,109, -+ 101,41,2,114,107,0,0,0,218,11,73,109,112,111,114,116, -+ 69,114,114,111,114,41,4,218,4,115,101,108,102,114,107,0, -+ 0,0,114,105,0,0,0,90,6,107,119,97,114,103,115,41, -+ 1,218,6,109,101,116,104,111,100,114,5,0,0,0,114,6, -+ 0,0,0,218,19,95,99,104,101,99,107,95,110,97,109,101, -+ 95,119,114,97,112,112,101,114,123,1,0,0,115,12,0,0, -+ 0,0,1,12,1,12,1,15,1,6,1,25,1,122,40,95, -+ 99,104,101,99,107,95,110,97,109,101,46,60,108,111,99,97, -+ 108,115,62,46,95,99,104,101,99,107,95,110,97,109,101,95, -+ 119,114,97,112,112,101,114,99,2,0,0,0,0,0,0,0, -+ 3,0,0,0,7,0,0,0,83,0,0,0,115,92,0,0, -+ 0,120,66,0,100,1,0,100,2,0,100,3,0,100,4,0, -+ 103,4,0,68,93,46,0,125,2,0,116,0,0,124,1,0, -+ 124,2,0,131,2,0,114,19,0,116,1,0,124,0,0,124, -+ 2,0,116,2,0,124,1,0,124,2,0,131,2,0,131,3, -+ 0,1,113,19,0,87,124,0,0,106,3,0,106,4,0,124, -+ 1,0,106,3,0,131,1,0,1,100,0,0,83,41,5,78, -+ 218,10,95,95,109,111,100,117,108,101,95,95,218,8,95,95, -+ 110,97,109,101,95,95,218,12,95,95,113,117,97,108,110,97, -+ 109,101,95,95,218,7,95,95,100,111,99,95,95,41,5,218, -+ 7,104,97,115,97,116,116,114,218,7,115,101,116,97,116,116, -+ 114,218,7,103,101,116,97,116,116,114,218,8,95,95,100,105, -+ 99,116,95,95,218,6,117,112,100,97,116,101,41,3,90,3, -+ 110,101,119,90,3,111,108,100,114,53,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,5,95,119, -+ 114,97,112,134,1,0,0,115,8,0,0,0,0,1,25,1, -+ 15,1,29,1,122,26,95,99,104,101,99,107,95,110,97,109, -+ 101,46,60,108,111,99,97,108,115,62,46,95,119,114,97,112, -+ 41,3,218,10,95,98,111,111,116,115,116,114,97,112,114,121, -+ 0,0,0,218,9,78,97,109,101,69,114,114,111,114,41,3, -+ 114,110,0,0,0,114,111,0,0,0,114,121,0,0,0,114, -+ 5,0,0,0,41,1,114,110,0,0,0,114,6,0,0,0, -+ 218,11,95,99,104,101,99,107,95,110,97,109,101,115,1,0, -+ 0,115,14,0,0,0,0,8,21,7,3,1,13,1,13,2, -+ 17,5,13,1,114,124,0,0,0,99,2,0,0,0,0,0, -+ 0,0,5,0,0,0,4,0,0,0,67,0,0,0,115,84, +- 218,12,95,109,111,100,117,108,101,95,114,101,112,114,178,2, +- 0,0,115,46,0,0,0,0,2,18,1,15,4,3,1,17, +- 1,13,1,8,1,3,1,13,1,13,1,5,2,12,1,16, +- 4,3,1,13,1,13,1,11,1,3,1,13,1,13,1,12, +- 1,13,2,21,2,114,211,0,0,0,99,0,0,0,0,0, +- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, +- 52,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, +- 100,1,0,100,2,0,132,0,0,90,3,0,100,3,0,100, +- 4,0,132,0,0,90,4,0,100,5,0,100,6,0,132,0, +- 0,90,5,0,100,7,0,83,41,8,218,17,95,105,110,115, +- 116,97,108,108,101,100,95,115,97,102,101,108,121,99,2,0, +- 0,0,0,0,0,0,2,0,0,0,2,0,0,0,67,0, +- 0,0,115,25,0,0,0,124,1,0,124,0,0,95,0,0, +- 124,1,0,106,1,0,124,0,0,95,2,0,100,0,0,83, +- 41,1,78,41,3,218,7,95,109,111,100,117,108,101,114,208, +- 0,0,0,218,5,95,115,112,101,99,41,2,114,71,0,0, +- 0,114,179,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,72,0,0,0,216,2,0,0,115,4, +- 0,0,0,0,1,9,1,122,26,95,105,110,115,116,97,108, +- 108,101,100,95,115,97,102,101,108,121,46,95,95,105,110,105, +- 116,95,95,99,1,0,0,0,0,0,0,0,1,0,0,0, +- 3,0,0,0,67,0,0,0,115,38,0,0,0,100,1,0, +- 124,0,0,106,0,0,95,1,0,124,0,0,106,2,0,116, +- 3,0,106,4,0,124,0,0,106,0,0,106,5,0,60,100, +- 0,0,83,41,2,78,84,41,6,114,214,0,0,0,218,13, +- 95,105,110,105,116,105,97,108,105,122,105,110,103,114,213,0, +- 0,0,114,7,0,0,0,114,73,0,0,0,114,67,0,0, +- 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,75,0,0,0,220,2,0,0, +- 115,4,0,0,0,0,4,12,1,122,27,95,105,110,115,116, ++ 12,0,0,0,67,0,0,0,115,164,0,0,0,116,0,0, ++ 124,0,0,131,1,0,100,1,0,107,2,0,114,22,0,100, ++ 2,0,83,124,0,0,106,1,0,100,3,0,131,1,0,92, ++ 3,0,125,1,0,125,2,0,125,3,0,124,1,0,12,115, ++ 81,0,124,3,0,106,2,0,131,0,0,100,7,0,100,8, ++ 0,133,2,0,25,100,6,0,107,3,0,114,85,0,124,0, ++ 0,83,121,16,0,116,3,0,124,0,0,131,1,0,125,4, ++ 0,87,110,40,0,4,116,4,0,116,5,0,102,2,0,107, ++ 10,0,114,143,0,1,1,1,124,0,0,100,2,0,100,9, ++ 0,133,2,0,25,125,4,0,89,110,1,0,88,116,6,0, ++ 124,4,0,131,1,0,114,160,0,124,4,0,83,124,0,0, ++ 83,41,10,122,188,67,111,110,118,101,114,116,32,97,32,98, ++ 121,116,101,99,111,100,101,32,102,105,108,101,32,112,97,116, ++ 104,32,116,111,32,97,32,115,111,117,114,99,101,32,112,97, ++ 116,104,32,40,105,102,32,112,111,115,115,105,98,108,101,41, ++ 46,10,10,32,32,32,32,84,104,105,115,32,102,117,110,99, ++ 116,105,111,110,32,101,120,105,115,116,115,32,112,117,114,101, ++ 108,121,32,102,111,114,32,98,97,99,107,119,97,114,100,115, ++ 45,99,111,109,112,97,116,105,98,105,108,105,116,121,32,102, ++ 111,114,10,32,32,32,32,80,121,73,109,112,111,114,116,95, ++ 69,120,101,99,67,111,100,101,77,111,100,117,108,101,87,105, ++ 116,104,70,105,108,101,110,97,109,101,115,40,41,32,105,110, ++ 32,116,104,101,32,67,32,65,80,73,46,10,10,32,32,32, ++ 32,114,85,0,0,0,78,114,117,0,0,0,233,3,0,0, ++ 0,114,30,0,0,0,90,2,112,121,233,253,255,255,255,233, ++ 255,255,255,255,114,139,0,0,0,41,7,114,32,0,0,0, ++ 114,33,0,0,0,218,5,108,111,119,101,114,114,136,0,0, ++ 0,114,125,0,0,0,114,134,0,0,0,114,45,0,0,0, ++ 41,5,218,13,98,121,116,101,99,111,100,101,95,112,97,116, ++ 104,90,4,114,101,115,116,114,37,0,0,0,90,9,101,120, ++ 116,101,110,115,105,111,110,218,11,115,111,117,114,99,101,95, ++ 112,97,116,104,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,15,95,103,101,116,95,115,111,117,114,99,101, ++ 102,105,108,101,231,1,0,0,115,20,0,0,0,0,7,18, ++ 1,4,1,24,1,35,1,4,1,3,1,16,1,19,1,21, ++ 1,114,143,0,0,0,99,1,0,0,0,0,0,0,0,2, ++ 0,0,0,11,0,0,0,67,0,0,0,115,60,0,0,0, ++ 121,19,0,116,0,0,124,0,0,131,1,0,106,1,0,125, ++ 1,0,87,110,24,0,4,116,2,0,107,10,0,114,45,0, ++ 1,1,1,100,1,0,125,1,0,89,110,1,0,88,124,1, ++ 0,100,2,0,79,125,1,0,124,1,0,83,41,3,122,51, ++ 67,97,108,99,117,108,97,116,101,32,116,104,101,32,109,111, ++ 100,101,32,112,101,114,109,105,115,115,105,111,110,115,32,102, ++ 111,114,32,97,32,98,121,116,101,99,111,100,101,32,102,105, ++ 108,101,46,105,182,1,0,0,233,128,0,0,0,41,3,114, ++ 40,0,0,0,114,42,0,0,0,114,41,0,0,0,41,2, ++ 114,36,0,0,0,114,43,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,10,95,99,97,108,99, ++ 95,109,111,100,101,250,1,0,0,115,12,0,0,0,0,2, ++ 3,1,19,1,13,1,11,3,10,1,114,145,0,0,0,218, ++ 9,118,101,114,98,111,115,105,116,121,114,30,0,0,0,99, ++ 1,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0, ++ 71,0,0,0,115,81,0,0,0,116,0,0,106,1,0,106, ++ 2,0,124,1,0,107,5,0,114,77,0,124,0,0,106,3, ++ 0,100,6,0,131,1,0,115,46,0,100,3,0,124,0,0, ++ 23,125,0,0,110,0,0,116,4,0,124,0,0,106,5,0, ++ 124,2,0,140,0,0,100,4,0,116,0,0,106,6,0,131, ++ 1,1,1,110,0,0,100,5,0,83,41,7,122,61,80,114, ++ 105,110,116,32,116,104,101,32,109,101,115,115,97,103,101,32, ++ 116,111,32,115,116,100,101,114,114,32,105,102,32,45,118,47, ++ 80,89,84,72,79,78,86,69,82,66,79,83,69,32,105,115, ++ 32,116,117,114,110,101,100,32,111,110,46,250,1,35,250,7, ++ 105,109,112,111,114,116,32,122,2,35,32,114,55,0,0,0, ++ 78,41,2,114,147,0,0,0,114,148,0,0,0,41,7,114, ++ 8,0,0,0,114,118,0,0,0,218,7,118,101,114,98,111, ++ 115,101,114,10,0,0,0,218,5,112,114,105,110,116,114,48, ++ 0,0,0,218,6,115,116,100,101,114,114,41,3,218,7,109, ++ 101,115,115,97,103,101,114,146,0,0,0,114,81,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 16,95,118,101,114,98,111,115,101,95,109,101,115,115,97,103, ++ 101,6,2,0,0,115,8,0,0,0,0,2,18,1,15,1, ++ 13,1,114,153,0,0,0,99,1,0,0,0,0,0,0,0, ++ 2,0,0,0,4,0,0,0,3,0,0,0,115,38,0,0, ++ 0,100,1,0,135,0,0,102,1,0,100,2,0,100,3,0, ++ 134,1,0,125,1,0,116,0,0,124,1,0,136,0,0,131, ++ 2,0,1,124,1,0,83,41,4,122,252,68,101,99,111,114, ++ 97,116,111,114,32,116,111,32,118,101,114,105,102,121,32,116, ++ 104,97,116,32,116,104,101,32,109,111,100,117,108,101,32,98, ++ 101,105,110,103,32,114,101,113,117,101,115,116,101,100,32,109, ++ 97,116,99,104,101,115,32,116,104,101,32,111,110,101,32,116, ++ 104,101,10,32,32,32,32,108,111,97,100,101,114,32,99,97, ++ 110,32,104,97,110,100,108,101,46,10,10,32,32,32,32,84, ++ 104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110, ++ 116,32,40,115,101,108,102,41,32,109,117,115,116,32,100,101, ++ 102,105,110,101,32,95,110,97,109,101,32,119,104,105,99,104, ++ 32,116,104,101,32,115,101,99,111,110,100,32,97,114,103,117, ++ 109,101,110,116,32,105,115,10,32,32,32,32,99,111,109,112, ++ 97,114,101,100,32,97,103,97,105,110,115,116,46,32,73,102, ++ 32,116,104,101,32,99,111,109,112,97,114,105,115,111,110,32, ++ 102,97,105,108,115,32,116,104,101,110,32,73,109,112,111,114, ++ 116,69,114,114,111,114,32,105,115,32,114,97,105,115,101,100, ++ 46,10,10,32,32,32,32,78,99,2,0,0,0,0,0,0, ++ 0,4,0,0,0,5,0,0,0,31,0,0,0,115,83,0, ++ 0,0,124,1,0,100,0,0,107,8,0,114,24,0,124,0, ++ 0,106,0,0,125,1,0,110,40,0,124,0,0,106,0,0, ++ 124,1,0,107,3,0,114,64,0,116,1,0,100,1,0,124, ++ 1,0,22,100,2,0,124,1,0,131,1,1,130,1,0,110, ++ 0,0,136,0,0,124,0,0,124,1,0,124,2,0,124,3, ++ 0,142,2,0,83,41,3,78,122,23,108,111,97,100,101,114, ++ 32,99,97,110,110,111,116,32,104,97,110,100,108,101,32,37, ++ 115,114,68,0,0,0,41,2,114,68,0,0,0,218,11,73, ++ 109,112,111,114,116,69,114,114,111,114,41,4,114,72,0,0, ++ 0,114,68,0,0,0,114,81,0,0,0,114,109,0,0,0, ++ 41,1,218,6,109,101,116,104,111,100,114,5,0,0,0,114, ++ 6,0,0,0,218,19,95,99,104,101,99,107,95,110,97,109, ++ 101,95,119,114,97,112,112,101,114,22,2,0,0,115,10,0, ++ 0,0,0,1,12,1,12,1,15,1,25,1,122,40,95,99, ++ 104,101,99,107,95,110,97,109,101,46,60,108,111,99,97,108, ++ 115,62,46,95,99,104,101,99,107,95,110,97,109,101,95,119, ++ 114,97,112,112,101,114,41,1,114,66,0,0,0,41,2,114, ++ 155,0,0,0,114,156,0,0,0,114,5,0,0,0,41,1, ++ 114,155,0,0,0,114,6,0,0,0,218,11,95,99,104,101, ++ 99,107,95,110,97,109,101,14,2,0,0,115,6,0,0,0, ++ 0,8,21,6,13,1,114,157,0,0,0,99,1,0,0,0, ++ 0,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0, ++ 115,35,0,0,0,135,0,0,102,1,0,100,1,0,100,2, ++ 0,134,0,0,125,1,0,116,0,0,124,1,0,136,0,0, ++ 131,2,0,1,124,1,0,83,41,3,122,49,68,101,99,111, ++ 114,97,116,111,114,32,116,111,32,118,101,114,105,102,121,32, ++ 116,104,101,32,110,97,109,101,100,32,109,111,100,117,108,101, ++ 32,105,115,32,98,117,105,108,116,45,105,110,46,99,2,0, ++ 0,0,0,0,0,0,2,0,0,0,4,0,0,0,19,0, ++ 0,0,115,58,0,0,0,124,1,0,116,0,0,106,1,0, ++ 107,7,0,114,45,0,116,2,0,100,1,0,106,3,0,124, ++ 1,0,131,1,0,100,2,0,124,1,0,131,1,1,130,1, ++ 0,110,0,0,136,0,0,124,0,0,124,1,0,131,2,0, ++ 83,41,3,78,122,29,123,33,114,125,32,105,115,32,110,111, ++ 116,32,97,32,98,117,105,108,116,45,105,110,32,109,111,100, ++ 117,108,101,114,68,0,0,0,41,4,114,8,0,0,0,218, ++ 20,98,117,105,108,116,105,110,95,109,111,100,117,108,101,95, ++ 110,97,109,101,115,114,154,0,0,0,114,48,0,0,0,41, ++ 2,114,72,0,0,0,218,8,102,117,108,108,110,97,109,101, ++ 41,1,218,3,102,120,110,114,5,0,0,0,114,6,0,0, ++ 0,218,25,95,114,101,113,117,105,114,101,115,95,98,117,105, ++ 108,116,105,110,95,119,114,97,112,112,101,114,34,2,0,0, ++ 115,8,0,0,0,0,1,15,1,18,1,12,1,122,52,95, ++ 114,101,113,117,105,114,101,115,95,98,117,105,108,116,105,110, ++ 46,60,108,111,99,97,108,115,62,46,95,114,101,113,117,105, ++ 114,101,115,95,98,117,105,108,116,105,110,95,119,114,97,112, ++ 112,101,114,41,1,114,66,0,0,0,41,2,114,160,0,0, ++ 0,114,161,0,0,0,114,5,0,0,0,41,1,114,160,0, ++ 0,0,114,6,0,0,0,218,17,95,114,101,113,117,105,114, ++ 101,115,95,98,117,105,108,116,105,110,32,2,0,0,115,6, ++ 0,0,0,0,2,18,5,13,1,114,162,0,0,0,99,1, ++ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,3, ++ 0,0,0,115,35,0,0,0,135,0,0,102,1,0,100,1, ++ 0,100,2,0,134,0,0,125,1,0,116,0,0,124,1,0, ++ 136,0,0,131,2,0,1,124,1,0,83,41,3,122,47,68, ++ 101,99,111,114,97,116,111,114,32,116,111,32,118,101,114,105, ++ 102,121,32,116,104,101,32,110,97,109,101,100,32,109,111,100, ++ 117,108,101,32,105,115,32,102,114,111,122,101,110,46,99,2, ++ 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,19, ++ 0,0,0,115,58,0,0,0,116,0,0,106,1,0,124,1, ++ 0,131,1,0,115,45,0,116,2,0,100,1,0,106,3,0, ++ 124,1,0,131,1,0,100,2,0,124,1,0,131,1,1,130, ++ 1,0,110,0,0,136,0,0,124,0,0,124,1,0,131,2, ++ 0,83,41,3,78,122,27,123,33,114,125,32,105,115,32,110, ++ 111,116,32,97,32,102,114,111,122,101,110,32,109,111,100,117, ++ 108,101,114,68,0,0,0,41,4,114,107,0,0,0,218,9, ++ 105,115,95,102,114,111,122,101,110,114,154,0,0,0,114,48, ++ 0,0,0,41,2,114,72,0,0,0,114,159,0,0,0,41, ++ 1,114,160,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,24,95,114,101,113,117,105,114,101,115,95,102,114,111,122, ++ 101,110,95,119,114,97,112,112,101,114,45,2,0,0,115,8, ++ 0,0,0,0,1,15,1,18,1,12,1,122,50,95,114,101, ++ 113,117,105,114,101,115,95,102,114,111,122,101,110,46,60,108, ++ 111,99,97,108,115,62,46,95,114,101,113,117,105,114,101,115, ++ 95,102,114,111,122,101,110,95,119,114,97,112,112,101,114,41, ++ 1,114,66,0,0,0,41,2,114,160,0,0,0,114,164,0, ++ 0,0,114,5,0,0,0,41,1,114,160,0,0,0,114,6, ++ 0,0,0,218,16,95,114,101,113,117,105,114,101,115,95,102, ++ 114,111,122,101,110,43,2,0,0,115,6,0,0,0,0,2, ++ 18,5,13,1,114,165,0,0,0,99,2,0,0,0,0,0, ++ 0,0,5,0,0,0,4,0,0,0,67,0,0,0,115,87, + 0,0,0,124,0,0,106,0,0,124,1,0,131,1,0,92, + 2,0,125,2,0,125,3,0,124,2,0,100,1,0,107,8, -+ 0,114,80,0,116,1,0,124,3,0,131,1,0,114,80,0, ++ 0,114,83,0,116,1,0,124,3,0,131,1,0,114,83,0, + 100,2,0,125,4,0,116,2,0,106,3,0,124,4,0,106, + 4,0,124,3,0,100,3,0,25,131,1,0,116,5,0,131, -+ 2,0,1,124,2,0,83,41,4,122,155,84,114,121,32,116, -+ 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32, -+ 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, -+ 100,32,109,111,100,117,108,101,32,98,121,32,100,101,108,101, -+ 103,97,116,105,110,103,32,116,111,10,32,32,32,32,115,101, -+ 108,102,46,102,105,110,100,95,108,111,97,100,101,114,40,41, -+ 46,10,10,32,32,32,32,84,104,105,115,32,109,101,116,104, -+ 111,100,32,105,115,32,100,101,112,114,101,99,97,116,101,100, -+ 32,105,110,32,102,97,118,111,114,32,111,102,32,102,105,110, -+ 100,101,114,46,102,105,110,100,95,115,112,101,99,40,41,46, -+ 10,10,32,32,32,32,78,122,44,78,111,116,32,105,109,112, -+ 111,114,116,105,110,103,32,100,105,114,101,99,116,111,114,121, -+ 32,123,125,58,32,109,105,115,115,105,110,103,32,95,95,105, -+ 110,105,116,95,95,114,60,0,0,0,41,6,218,11,102,105, -+ 110,100,95,108,111,97,100,101,114,114,32,0,0,0,114,61, -+ 0,0,0,114,62,0,0,0,114,48,0,0,0,218,13,73, -+ 109,112,111,114,116,87,97,114,110,105,110,103,41,5,114,109, -+ 0,0,0,218,8,102,117,108,108,110,97,109,101,218,6,108, -+ 111,97,100,101,114,218,8,112,111,114,116,105,111,110,115,218, -+ 3,109,115,103,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,17,95,102,105,110,100,95,109,111,100,117,108, -+ 101,95,115,104,105,109,143,1,0,0,115,10,0,0,0,0, -+ 10,21,1,24,1,6,1,29,1,114,131,0,0,0,99,4, -+ 0,0,0,0,0,0,0,11,0,0,0,19,0,0,0,67, -+ 0,0,0,115,240,1,0,0,105,0,0,125,4,0,124,2, -+ 0,100,1,0,107,9,0,114,31,0,124,2,0,124,4,0, -+ 100,2,0,60,110,6,0,100,3,0,125,2,0,124,3,0, -+ 100,1,0,107,9,0,114,59,0,124,3,0,124,4,0,100, -+ 4,0,60,124,0,0,100,1,0,100,5,0,133,2,0,25, -+ 125,5,0,124,0,0,100,5,0,100,6,0,133,2,0,25, -+ 125,6,0,124,0,0,100,6,0,100,7,0,133,2,0,25, -+ 125,7,0,124,5,0,116,0,0,107,3,0,114,168,0,100, -+ 8,0,106,1,0,124,2,0,124,5,0,131,2,0,125,8, -+ 0,116,2,0,100,9,0,124,8,0,131,2,0,1,116,3, -+ 0,124,8,0,124,4,0,141,1,0,130,1,0,110,119,0, -+ 116,4,0,124,6,0,131,1,0,100,5,0,107,3,0,114, -+ 229,0,100,10,0,106,1,0,124,2,0,131,1,0,125,8, -+ 0,116,2,0,100,9,0,124,8,0,131,2,0,1,116,5, -+ 0,124,8,0,131,1,0,130,1,0,110,58,0,116,4,0, -+ 124,7,0,131,1,0,100,5,0,107,3,0,114,31,1,100, -+ 11,0,106,1,0,124,2,0,131,1,0,125,8,0,116,2, -+ 0,100,9,0,124,8,0,131,2,0,1,116,5,0,124,8, -+ 0,131,1,0,130,1,0,124,1,0,100,1,0,107,9,0, -+ 114,226,1,121,20,0,116,6,0,124,1,0,100,12,0,25, -+ 131,1,0,125,9,0,87,110,18,0,4,116,7,0,107,10, -+ 0,114,83,1,1,1,1,89,110,62,0,88,116,8,0,124, -+ 6,0,131,1,0,124,9,0,107,3,0,114,145,1,100,13, -+ 0,106,1,0,124,2,0,131,1,0,125,8,0,116,2,0, -+ 100,9,0,124,8,0,131,2,0,1,116,3,0,124,8,0, -+ 124,4,0,141,1,0,130,1,0,121,18,0,124,1,0,100, -+ 14,0,25,100,15,0,64,125,10,0,87,110,18,0,4,116, -+ 7,0,107,10,0,114,183,1,1,1,1,89,110,43,0,88, -+ 116,8,0,124,7,0,131,1,0,124,10,0,107,3,0,114, -+ 226,1,116,3,0,100,13,0,106,1,0,124,2,0,131,1, -+ 0,124,4,0,141,1,0,130,1,0,124,0,0,100,7,0, -+ 100,1,0,133,2,0,25,83,41,16,97,122,1,0,0,86, -+ 97,108,105,100,97,116,101,32,116,104,101,32,104,101,97,100, -+ 101,114,32,111,102,32,116,104,101,32,112,97,115,115,101,100, -+ 45,105,110,32,98,121,116,101,99,111,100,101,32,97,103,97, -+ 105,110,115,116,32,115,111,117,114,99,101,95,115,116,97,116, -+ 115,32,40,105,102,10,32,32,32,32,103,105,118,101,110,41, -+ 32,97,110,100,32,114,101,116,117,114,110,105,110,103,32,116, -+ 104,101,32,98,121,116,101,99,111,100,101,32,116,104,97,116, -+ 32,99,97,110,32,98,101,32,99,111,109,112,105,108,101,100, -+ 32,98,121,32,99,111,109,112,105,108,101,40,41,46,10,10, -+ 32,32,32,32,65,108,108,32,111,116,104,101,114,32,97,114, -+ 103,117,109,101,110,116,115,32,97,114,101,32,117,115,101,100, -+ 32,116,111,32,101,110,104,97,110,99,101,32,101,114,114,111, -+ 114,32,114,101,112,111,114,116,105,110,103,46,10,10,32,32, -+ 32,32,73,109,112,111,114,116,69,114,114,111,114,32,105,115, -+ 32,114,97,105,115,101,100,32,119,104,101,110,32,116,104,101, -+ 32,109,97,103,105,99,32,110,117,109,98,101,114,32,105,115, -+ 32,105,110,99,111,114,114,101,99,116,32,111,114,32,116,104, -+ 101,32,98,121,116,101,99,111,100,101,32,105,115,10,32,32, -+ 32,32,102,111,117,110,100,32,116,111,32,98,101,32,115,116, -+ 97,108,101,46,32,69,79,70,69,114,114,111,114,32,105,115, -+ 32,114,97,105,115,101,100,32,119,104,101,110,32,116,104,101, -+ 32,100,97,116,97,32,105,115,32,102,111,117,110,100,32,116, -+ 111,32,98,101,10,32,32,32,32,116,114,117,110,99,97,116, -+ 101,100,46,10,10,32,32,32,32,78,114,107,0,0,0,122, -+ 10,60,98,121,116,101,99,111,100,101,62,114,36,0,0,0, -+ 114,13,0,0,0,233,8,0,0,0,233,12,0,0,0,122, -+ 30,98,97,100,32,109,97,103,105,99,32,110,117,109,98,101, -+ 114,32,105,110,32,123,33,114,125,58,32,123,33,114,125,122, -+ 2,123,125,122,43,114,101,97,99,104,101,100,32,69,79,70, -+ 32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,116, -+ 105,109,101,115,116,97,109,112,32,105,110,32,123,33,114,125, -+ 122,48,114,101,97,99,104,101,100,32,69,79,70,32,119,104, -+ 105,108,101,32,114,101,97,100,105,110,103,32,115,105,122,101, -+ 32,111,102,32,115,111,117,114,99,101,32,105,110,32,123,33, -+ 114,125,218,5,109,116,105,109,101,122,26,98,121,116,101,99, -+ 111,100,101,32,105,115,32,115,116,97,108,101,32,102,111,114, -+ 32,123,33,114,125,218,4,115,105,122,101,108,3,0,0,0, -+ 255,127,255,127,3,0,41,9,218,12,77,65,71,73,67,95, -+ 78,85,77,66,69,82,114,48,0,0,0,114,106,0,0,0, -+ 114,108,0,0,0,114,32,0,0,0,218,8,69,79,70,69, -+ 114,114,111,114,114,15,0,0,0,218,8,75,101,121,69,114, -+ 114,111,114,114,20,0,0,0,41,11,114,54,0,0,0,218, -+ 12,115,111,117,114,99,101,95,115,116,97,116,115,114,107,0, -+ 0,0,114,36,0,0,0,90,11,101,120,99,95,100,101,116, -+ 97,105,108,115,90,5,109,97,103,105,99,90,13,114,97,119, -+ 95,116,105,109,101,115,116,97,109,112,90,8,114,97,119,95, -+ 115,105,122,101,114,76,0,0,0,218,12,115,111,117,114,99, -+ 101,95,109,116,105,109,101,218,11,115,111,117,114,99,101,95, -+ 115,105,122,101,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,25,95,118,97,108,105,100,97,116,101,95,98, -+ 121,116,101,99,111,100,101,95,104,101,97,100,101,114,160,1, -+ 0,0,115,76,0,0,0,0,11,6,1,12,1,13,3,6, -+ 1,12,1,10,1,16,1,16,1,16,1,12,1,18,1,13, -+ 1,18,1,18,1,15,1,13,1,15,1,18,1,15,1,13, -+ 1,12,1,12,1,3,1,20,1,13,1,5,2,18,1,15, -+ 1,13,1,15,1,3,1,18,1,13,1,5,2,18,1,15, -+ 1,9,1,114,142,0,0,0,99,4,0,0,0,0,0,0, -+ 0,5,0,0,0,6,0,0,0,67,0,0,0,115,112,0, -+ 0,0,116,0,0,106,1,0,124,0,0,131,1,0,125,4, -+ 0,116,2,0,124,4,0,116,3,0,131,2,0,114,75,0, -+ 116,4,0,100,1,0,124,2,0,131,2,0,1,124,3,0, -+ 100,2,0,107,9,0,114,71,0,116,5,0,106,6,0,124, -+ 4,0,124,3,0,131,2,0,1,124,4,0,83,116,7,0, -+ 100,3,0,106,8,0,124,2,0,131,1,0,100,4,0,124, -+ 1,0,100,5,0,124,2,0,131,1,2,130,1,0,100,2, -+ 0,83,41,6,122,60,67,111,109,112,105,108,101,32,98,121, -+ 116,101,99,111,100,101,32,97,115,32,114,101,116,117,114,110, -+ 101,100,32,98,121,32,95,118,97,108,105,100,97,116,101,95, -+ 98,121,116,101,99,111,100,101,95,104,101,97,100,101,114,40, -+ 41,46,122,21,99,111,100,101,32,111,98,106,101,99,116,32, -+ 102,114,111,109,32,123,33,114,125,78,122,23,78,111,110,45, -+ 99,111,100,101,32,111,98,106,101,99,116,32,105,110,32,123, -+ 33,114,125,114,107,0,0,0,114,36,0,0,0,41,9,218, -+ 7,109,97,114,115,104,97,108,90,5,108,111,97,100,115,218, -+ 10,105,115,105,110,115,116,97,110,99,101,218,10,95,99,111, -+ 100,101,95,116,121,112,101,114,106,0,0,0,218,4,95,105, -+ 109,112,90,16,95,102,105,120,95,99,111,95,102,105,108,101, -+ 110,97,109,101,114,108,0,0,0,114,48,0,0,0,41,5, -+ 114,54,0,0,0,114,107,0,0,0,114,90,0,0,0,114, -+ 91,0,0,0,218,4,99,111,100,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,17,95,99,111,109,112, -+ 105,108,101,95,98,121,116,101,99,111,100,101,215,1,0,0, -+ 115,16,0,0,0,0,2,15,1,15,1,13,1,12,1,16, -+ 1,4,2,18,1,114,148,0,0,0,114,60,0,0,0,99, - 3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, -- 67,0,0,0,115,45,0,0,0,124,0,0,106,0,0,124, -- 1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,1, -- 0,107,9,0,114,37,0,124,3,0,106,1,0,83,100,1, -- 0,83,100,1,0,83,41,2,122,108,70,105,110,100,32,109, -- 111,100,117,108,101,32,110,97,109,101,100,32,105,110,32,116, -- 104,101,32,114,101,103,105,115,116,114,121,46,10,10,32,32, -- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, -- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, -- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, -- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, -- 32,32,32,32,32,32,78,41,2,114,181,0,0,0,114,127, -- 0,0,0,41,4,114,170,0,0,0,114,126,0,0,0,114, -- 35,0,0,0,114,164,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,218,11,102,105,110,100,95,109, -- 111,100,117,108,101,114,2,0,0,115,8,0,0,0,0,7, -- 18,1,12,1,7,2,122,33,87,105,110,100,111,119,115,82, -- 101,103,105,115,116,114,121,70,105,110,100,101,114,46,102,105, -- 110,100,95,109,111,100,117,108,101,41,12,114,112,0,0,0, -- 114,111,0,0,0,114,113,0,0,0,114,114,0,0,0,114, -- 175,0,0,0,114,174,0,0,0,114,173,0,0,0,218,11, -- 99,108,97,115,115,109,101,116,104,111,100,114,172,0,0,0, -- 114,178,0,0,0,114,181,0,0,0,114,182,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,168,0,0,0,64,2,0,0,115,20,0,0, -- 0,12,2,6,3,6,3,6,2,6,2,18,7,18,15,3, -- 1,21,15,3,1,114,168,0,0,0,99,0,0,0,0,0, -- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, -- 70,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, -- 100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,90, -- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,100,6, -- 0,100,7,0,132,0,0,90,6,0,100,8,0,100,9,0, -- 132,0,0,90,7,0,100,10,0,83,41,11,218,13,95,76, -- 111,97,100,101,114,66,97,115,105,99,115,122,83,66,97,115, -- 101,32,99,108,97,115,115,32,111,102,32,99,111,109,109,111, -- 110,32,99,111,100,101,32,110,101,101,100,101,100,32,98,121, -- 32,98,111,116,104,32,83,111,117,114,99,101,76,111,97,100, -- 101,114,32,97,110,100,10,32,32,32,32,83,111,117,114,99, -- 101,108,101,115,115,70,105,108,101,76,111,97,100,101,114,46, -- 99,2,0,0,0,0,0,0,0,5,0,0,0,3,0,0, -- 0,67,0,0,0,115,88,0,0,0,116,0,0,124,0,0, -- 106,1,0,124,1,0,131,1,0,131,1,0,100,1,0,25, -- 125,2,0,124,2,0,106,2,0,100,2,0,100,1,0,131, -- 2,0,100,3,0,25,125,3,0,124,1,0,106,3,0,100, -- 2,0,131,1,0,100,4,0,25,125,4,0,124,3,0,100, -- 5,0,107,2,0,111,87,0,124,4,0,100,5,0,107,3, -- 0,83,41,6,122,141,67,111,110,99,114,101,116,101,32,105, -- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, -- 32,73,110,115,112,101,99,116,76,111,97,100,101,114,46,105, -- 115,95,112,97,99,107,97,103,101,32,98,121,32,99,104,101, -- 99,107,105,110,103,32,105,102,10,32,32,32,32,32,32,32, -- 32,116,104,101,32,112,97,116,104,32,114,101,116,117,114,110, -- 101,100,32,98,121,32,103,101,116,95,102,105,108,101,110,97, -- 109,101,32,104,97,115,32,97,32,102,105,108,101,110,97,109, -- 101,32,111,102,32,39,95,95,105,110,105,116,95,95,46,112, -- 121,39,46,114,29,0,0,0,114,58,0,0,0,114,59,0, -- 0,0,114,56,0,0,0,218,8,95,95,105,110,105,116,95, -- 95,41,4,114,38,0,0,0,114,157,0,0,0,114,34,0, -- 0,0,114,32,0,0,0,41,5,114,108,0,0,0,114,126, -- 0,0,0,114,94,0,0,0,90,13,102,105,108,101,110,97, -- 109,101,95,98,97,115,101,90,9,116,97,105,108,95,110,97, -- 109,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,159,0,0,0,133,2,0,0,115,8,0,0,0,0, -- 3,25,1,22,1,19,1,122,24,95,76,111,97,100,101,114, -- 66,97,115,105,99,115,46,105,115,95,112,97,99,107,97,103, -- 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, -- 0,0,67,0,0,0,115,4,0,0,0,100,1,0,83,41, -- 2,122,42,85,115,101,32,100,101,102,97,117,108,116,32,115, -- 101,109,97,110,116,105,99,115,32,102,111,114,32,109,111,100, -- 117,108,101,32,99,114,101,97,116,105,111,110,46,78,114,4, -- 0,0,0,41,2,114,108,0,0,0,114,164,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,13, -- 99,114,101,97,116,101,95,109,111,100,117,108,101,141,2,0, -- 0,115,0,0,0,0,122,27,95,76,111,97,100,101,114,66, -- 97,115,105,99,115,46,99,114,101,97,116,101,95,109,111,100, -- 117,108,101,99,2,0,0,0,0,0,0,0,3,0,0,0, -- 4,0,0,0,67,0,0,0,115,80,0,0,0,124,0,0, -- 106,0,0,124,1,0,106,1,0,131,1,0,125,2,0,124, -- 2,0,100,1,0,107,8,0,114,54,0,116,2,0,100,2, -- 0,106,3,0,124,1,0,106,1,0,131,1,0,131,1,0, -- 130,1,0,116,4,0,106,5,0,116,6,0,124,2,0,124, -- 1,0,106,7,0,131,3,0,1,100,1,0,83,41,3,122, -- 19,69,120,101,99,117,116,101,32,116,104,101,32,109,111,100, -- 117,108,101,46,78,122,52,99,97,110,110,111,116,32,108,111, -- 97,100,32,109,111,100,117,108,101,32,123,33,114,125,32,119, -- 104,101,110,32,103,101,116,95,99,111,100,101,40,41,32,114, -- 101,116,117,114,110,115,32,78,111,110,101,41,8,218,8,103, -- 101,116,95,99,111,100,101,114,112,0,0,0,114,107,0,0, -- 0,114,47,0,0,0,114,121,0,0,0,218,25,95,99,97, -- 108,108,95,119,105,116,104,95,102,114,97,109,101,115,95,114, -- 101,109,111,118,101,100,218,4,101,120,101,99,114,118,0,0, -- 0,41,3,114,108,0,0,0,218,6,109,111,100,117,108,101, -- 114,146,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,11,101,120,101,99,95,109,111,100,117,108, -- 101,144,2,0,0,115,10,0,0,0,0,2,18,1,12,1, -- 9,1,15,1,122,25,95,76,111,97,100,101,114,66,97,115, -- 105,99,115,46,101,120,101,99,95,109,111,100,117,108,101,99, -- 2,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0, -- 67,0,0,0,115,16,0,0,0,116,0,0,106,1,0,124, -- 0,0,124,1,0,131,2,0,83,41,1,78,41,2,114,121, -- 0,0,0,218,17,95,108,111,97,100,95,109,111,100,117,108, -- 101,95,115,104,105,109,41,2,114,108,0,0,0,114,126,0, ++ 2,0,1,110,0,0,124,2,0,83,41,4,122,155,84,114, ++ 121,32,116,111,32,102,105,110,100,32,97,32,108,111,97,100, ++ 101,114,32,102,111,114,32,116,104,101,32,115,112,101,99,105, ++ 102,105,101,100,32,109,111,100,117,108,101,32,98,121,32,100, ++ 101,108,101,103,97,116,105,110,103,32,116,111,10,32,32,32, ++ 32,115,101,108,102,46,102,105,110,100,95,108,111,97,100,101, ++ 114,40,41,46,10,10,32,32,32,32,84,104,105,115,32,109, ++ 101,116,104,111,100,32,105,115,32,100,101,112,114,101,99,97, ++ 116,101,100,32,105,110,32,102,97,118,111,114,32,111,102,32, ++ 102,105,110,100,101,114,46,102,105,110,100,95,115,112,101,99, ++ 40,41,46,10,10,32,32,32,32,78,122,44,78,111,116,32, ++ 105,109,112,111,114,116,105,110,103,32,100,105,114,101,99,116, ++ 111,114,121,32,123,125,58,32,109,105,115,115,105,110,103,32, ++ 95,95,105,110,105,116,95,95,114,85,0,0,0,41,6,218, ++ 11,102,105,110,100,95,108,111,97,100,101,114,114,32,0,0, ++ 0,218,9,95,119,97,114,110,105,110,103,115,218,4,119,97, ++ 114,110,114,48,0,0,0,218,13,73,109,112,111,114,116,87, ++ 97,114,110,105,110,103,41,5,114,72,0,0,0,114,159,0, ++ 0,0,218,6,108,111,97,100,101,114,218,8,112,111,114,116, ++ 105,111,110,115,218,3,109,115,103,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,17,95,102,105,110,100,95, ++ 109,111,100,117,108,101,95,115,104,105,109,54,2,0,0,115, ++ 10,0,0,0,0,10,21,1,24,1,6,1,32,1,114,173, ++ 0,0,0,99,2,0,0,0,0,0,0,0,5,0,0,0, ++ 3,0,0,0,67,0,0,0,115,93,0,0,0,116,0,0, ++ 124,1,0,124,0,0,131,2,0,125,2,0,116,1,0,124, ++ 2,0,131,1,0,125,3,0,124,1,0,116,2,0,106,3, ++ 0,107,6,0,114,79,0,116,2,0,106,3,0,124,1,0, ++ 25,125,4,0,124,3,0,106,4,0,124,4,0,131,1,0, ++ 1,116,2,0,106,3,0,124,1,0,25,83,124,3,0,106, ++ 5,0,131,0,0,83,100,1,0,83,41,2,122,128,76,111, ++ 97,100,32,116,104,101,32,115,112,101,99,105,102,105,101,100, ++ 32,109,111,100,117,108,101,32,105,110,116,111,32,115,121,115, ++ 46,109,111,100,117,108,101,115,32,97,110,100,32,114,101,116, ++ 117,114,110,32,105,116,46,10,10,32,32,32,32,84,104,105, ++ 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, ++ 101,99,97,116,101,100,46,32,32,85,115,101,32,108,111,97, ++ 100,101,114,46,101,120,101,99,95,109,111,100,117,108,101,32, ++ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,78,41, ++ 6,218,16,115,112,101,99,95,102,114,111,109,95,108,111,97, ++ 100,101,114,218,12,95,83,112,101,99,77,101,116,104,111,100, ++ 115,114,8,0,0,0,114,74,0,0,0,218,4,101,120,101, ++ 99,218,4,108,111,97,100,41,5,114,72,0,0,0,114,159, ++ 0,0,0,218,4,115,112,101,99,218,7,109,101,116,104,111, ++ 100,115,218,6,109,111,100,117,108,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,17,95,108,111,97,100, ++ 95,109,111,100,117,108,101,95,115,104,105,109,71,2,0,0, ++ 115,14,0,0,0,0,6,15,1,12,1,15,1,13,1,13, ++ 1,11,2,114,181,0,0,0,99,4,0,0,0,0,0,0, ++ 0,11,0,0,0,19,0,0,0,67,0,0,0,115,243,1, ++ 0,0,105,0,0,125,4,0,124,2,0,100,1,0,107,9, ++ 0,114,31,0,124,2,0,124,4,0,100,2,0,60,110,6, ++ 0,100,3,0,125,2,0,124,3,0,100,1,0,107,9,0, ++ 114,62,0,124,3,0,124,4,0,100,4,0,60,110,0,0, ++ 124,0,0,100,1,0,100,5,0,133,2,0,25,125,5,0, ++ 124,0,0,100,5,0,100,6,0,133,2,0,25,125,6,0, ++ 124,0,0,100,6,0,100,7,0,133,2,0,25,125,7,0, ++ 124,5,0,116,0,0,107,3,0,114,168,0,100,8,0,106, ++ 1,0,124,2,0,124,5,0,131,2,0,125,8,0,116,2, ++ 0,124,8,0,131,1,0,1,116,3,0,124,8,0,124,4, ++ 0,141,1,0,130,1,0,110,116,0,116,4,0,124,6,0, ++ 131,1,0,100,5,0,107,3,0,114,226,0,100,9,0,106, ++ 1,0,124,2,0,131,1,0,125,8,0,116,2,0,124,8, ++ 0,131,1,0,1,116,5,0,124,8,0,131,1,0,130,1, ++ 0,110,58,0,116,4,0,124,7,0,131,1,0,100,5,0, ++ 107,3,0,114,28,1,100,10,0,106,1,0,124,2,0,131, ++ 1,0,125,8,0,116,2,0,124,8,0,131,1,0,1,116, ++ 5,0,124,8,0,131,1,0,130,1,0,110,0,0,124,1, ++ 0,100,1,0,107,9,0,114,229,1,121,20,0,116,6,0, ++ 124,1,0,100,11,0,25,131,1,0,125,9,0,87,110,18, ++ 0,4,116,7,0,107,10,0,114,80,1,1,1,1,89,110, ++ 62,0,88,116,8,0,124,6,0,131,1,0,124,9,0,107, ++ 3,0,114,142,1,100,12,0,106,1,0,124,2,0,131,1, ++ 0,125,8,0,116,2,0,124,8,0,131,1,0,1,116,3, ++ 0,124,8,0,124,4,0,141,1,0,130,1,0,110,0,0, ++ 121,18,0,124,1,0,100,13,0,25,100,14,0,64,125,10, ++ 0,87,110,18,0,4,116,7,0,107,10,0,114,180,1,1, ++ 1,1,89,113,229,1,88,116,8,0,124,7,0,131,1,0, ++ 124,10,0,107,3,0,114,229,1,116,3,0,100,12,0,106, ++ 1,0,124,2,0,131,1,0,124,4,0,141,1,0,130,1, ++ 0,113,229,1,110,0,0,124,0,0,100,7,0,100,1,0, ++ 133,2,0,25,83,41,15,97,122,1,0,0,86,97,108,105, ++ 100,97,116,101,32,116,104,101,32,104,101,97,100,101,114,32, ++ 111,102,32,116,104,101,32,112,97,115,115,101,100,45,105,110, ++ 32,98,121,116,101,99,111,100,101,32,97,103,97,105,110,115, ++ 116,32,115,111,117,114,99,101,95,115,116,97,116,115,32,40, ++ 105,102,10,32,32,32,32,103,105,118,101,110,41,32,97,110, ++ 100,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32, ++ 98,121,116,101,99,111,100,101,32,116,104,97,116,32,99,97, ++ 110,32,98,101,32,99,111,109,112,105,108,101,100,32,98,121, ++ 32,99,111,109,112,105,108,101,40,41,46,10,10,32,32,32, ++ 32,65,108,108,32,111,116,104,101,114,32,97,114,103,117,109, ++ 101,110,116,115,32,97,114,101,32,117,115,101,100,32,116,111, ++ 32,101,110,104,97,110,99,101,32,101,114,114,111,114,32,114, ++ 101,112,111,114,116,105,110,103,46,10,10,32,32,32,32,73, ++ 109,112,111,114,116,69,114,114,111,114,32,105,115,32,114,97, ++ 105,115,101,100,32,119,104,101,110,32,116,104,101,32,109,97, ++ 103,105,99,32,110,117,109,98,101,114,32,105,115,32,105,110, ++ 99,111,114,114,101,99,116,32,111,114,32,116,104,101,32,98, ++ 121,116,101,99,111,100,101,32,105,115,10,32,32,32,32,102, ++ 111,117,110,100,32,116,111,32,98,101,32,115,116,97,108,101, ++ 46,32,69,79,70,69,114,114,111,114,32,105,115,32,114,97, ++ 105,115,101,100,32,119,104,101,110,32,116,104,101,32,100,97, ++ 116,97,32,105,115,32,102,111,117,110,100,32,116,111,32,98, ++ 101,10,32,32,32,32,116,114,117,110,99,97,116,101,100,46, ++ 10,10,32,32,32,32,78,114,68,0,0,0,122,10,60,98, ++ 121,116,101,99,111,100,101,62,114,36,0,0,0,114,13,0, ++ 0,0,233,8,0,0,0,233,12,0,0,0,122,30,98,97, ++ 100,32,109,97,103,105,99,32,110,117,109,98,101,114,32,105, ++ 110,32,123,33,114,125,58,32,123,33,114,125,122,43,114,101, ++ 97,99,104,101,100,32,69,79,70,32,119,104,105,108,101,32, ++ 114,101,97,100,105,110,103,32,116,105,109,101,115,116,97,109, ++ 112,32,105,110,32,123,33,114,125,122,48,114,101,97,99,104, ++ 101,100,32,69,79,70,32,119,104,105,108,101,32,114,101,97, ++ 100,105,110,103,32,115,105,122,101,32,111,102,32,115,111,117, ++ 114,99,101,32,105,110,32,123,33,114,125,218,5,109,116,105, ++ 109,101,122,26,98,121,116,101,99,111,100,101,32,105,115,32, ++ 115,116,97,108,101,32,102,111,114,32,123,33,114,125,218,4, ++ 115,105,122,101,108,3,0,0,0,255,127,255,127,3,0,41, ++ 9,218,12,77,65,71,73,67,95,78,85,77,66,69,82,114, ++ 48,0,0,0,114,153,0,0,0,114,154,0,0,0,114,32, ++ 0,0,0,218,8,69,79,70,69,114,114,111,114,114,15,0, ++ 0,0,114,80,0,0,0,114,20,0,0,0,41,11,114,54, ++ 0,0,0,218,12,115,111,117,114,99,101,95,115,116,97,116, ++ 115,114,68,0,0,0,114,36,0,0,0,90,11,101,120,99, ++ 95,100,101,116,97,105,108,115,90,5,109,97,103,105,99,90, ++ 13,114,97,119,95,116,105,109,101,115,116,97,109,112,90,8, ++ 114,97,119,95,115,105,122,101,114,152,0,0,0,218,12,115, ++ 111,117,114,99,101,95,109,116,105,109,101,218,11,115,111,117, ++ 114,99,101,95,115,105,122,101,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,218,25,95,118,97,108,105,100,97, ++ 116,101,95,98,121,116,101,99,111,100,101,95,104,101,97,100, ++ 101,114,87,2,0,0,115,76,0,0,0,0,11,6,1,12, ++ 1,13,3,6,1,12,1,13,1,16,1,16,1,16,1,12, ++ 1,18,1,10,1,18,1,18,1,15,1,10,1,15,1,18, ++ 1,15,1,10,1,15,1,12,1,3,1,20,1,13,1,5, ++ 2,18,1,15,1,10,1,18,1,3,1,18,1,13,1,5, ++ 2,18,1,15,1,15,1,114,191,0,0,0,99,4,0,0, ++ 0,0,0,0,0,5,0,0,0,6,0,0,0,67,0,0, ++ 0,115,115,0,0,0,116,0,0,106,1,0,124,0,0,131, ++ 1,0,125,4,0,116,2,0,124,4,0,116,3,0,131,2, ++ 0,114,78,0,116,4,0,100,1,0,124,2,0,131,2,0, ++ 1,124,3,0,100,2,0,107,9,0,114,74,0,116,5,0, ++ 106,6,0,124,4,0,124,3,0,131,2,0,1,110,0,0, ++ 124,4,0,83,116,7,0,100,3,0,106,8,0,124,2,0, ++ 131,1,0,100,4,0,124,1,0,100,5,0,124,2,0,131, ++ 1,2,130,1,0,100,2,0,83,41,6,122,60,67,111,109, ++ 112,105,108,101,32,98,121,116,101,99,111,100,101,32,97,115, ++ 32,114,101,116,117,114,110,101,100,32,98,121,32,95,118,97, ++ 108,105,100,97,116,101,95,98,121,116,101,99,111,100,101,95, ++ 104,101,97,100,101,114,40,41,46,122,21,99,111,100,101,32, ++ 111,98,106,101,99,116,32,102,114,111,109,32,123,33,114,125, ++ 78,122,23,78,111,110,45,99,111,100,101,32,111,98,106,101, ++ 99,116,32,105,110,32,123,33,114,125,114,68,0,0,0,114, ++ 36,0,0,0,41,9,218,7,109,97,114,115,104,97,108,90, ++ 5,108,111,97,100,115,218,10,105,115,105,110,115,116,97,110, ++ 99,101,218,10,95,99,111,100,101,95,116,121,112,101,114,153, ++ 0,0,0,114,107,0,0,0,90,16,95,102,105,120,95,99, ++ 111,95,102,105,108,101,110,97,109,101,114,154,0,0,0,114, ++ 48,0,0,0,41,5,114,54,0,0,0,114,68,0,0,0, ++ 114,141,0,0,0,114,142,0,0,0,218,4,99,111,100,101, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 17,95,99,111,109,112,105,108,101,95,98,121,116,101,99,111, ++ 100,101,142,2,0,0,115,16,0,0,0,0,2,15,1,15, ++ 1,13,1,12,1,19,1,4,2,18,1,114,196,0,0,0, ++ 114,85,0,0,0,99,3,0,0,0,0,0,0,0,4,0, ++ 0,0,3,0,0,0,67,0,0,0,115,76,0,0,0,116, ++ 0,0,116,1,0,131,1,0,125,3,0,124,3,0,106,2, ++ 0,116,3,0,124,1,0,131,1,0,131,1,0,1,124,3, ++ 0,106,2,0,116,3,0,124,2,0,131,1,0,131,1,0, ++ 1,124,3,0,106,2,0,116,4,0,106,5,0,124,0,0, ++ 131,1,0,131,1,0,1,124,3,0,83,41,1,122,80,67, ++ 111,109,112,105,108,101,32,97,32,99,111,100,101,32,111,98, ++ 106,101,99,116,32,105,110,116,111,32,98,121,116,101,99,111, ++ 100,101,32,102,111,114,32,119,114,105,116,105,110,103,32,111, ++ 117,116,32,116,111,32,97,32,98,121,116,101,45,99,111,109, ++ 112,105,108,101,100,10,32,32,32,32,102,105,108,101,46,41, ++ 6,218,9,98,121,116,101,97,114,114,97,121,114,186,0,0, ++ 0,218,6,101,120,116,101,110,100,114,18,0,0,0,114,192, ++ 0,0,0,90,5,100,117,109,112,115,41,4,114,195,0,0, ++ 0,114,184,0,0,0,114,190,0,0,0,114,54,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 17,95,99,111,100,101,95,116,111,95,98,121,116,101,99,111, ++ 100,101,154,2,0,0,115,10,0,0,0,0,3,12,1,19, ++ 1,19,1,22,1,114,199,0,0,0,99,1,0,0,0,0, ++ 0,0,0,5,0,0,0,4,0,0,0,67,0,0,0,115, ++ 89,0,0,0,100,1,0,100,2,0,108,0,0,125,1,0, ++ 116,1,0,106,2,0,124,0,0,131,1,0,106,3,0,125, ++ 2,0,124,1,0,106,4,0,124,2,0,131,1,0,125,3, ++ 0,116,1,0,106,5,0,100,2,0,100,3,0,131,2,0, ++ 125,4,0,124,4,0,106,6,0,124,0,0,106,6,0,124, ++ 3,0,100,1,0,25,131,1,0,131,1,0,83,41,4,122, ++ 121,68,101,99,111,100,101,32,98,121,116,101,115,32,114,101, ++ 112,114,101,115,101,110,116,105,110,103,32,115,111,117,114,99, ++ 101,32,99,111,100,101,32,97,110,100,32,114,101,116,117,114, ++ 110,32,116,104,101,32,115,116,114,105,110,103,46,10,10,32, ++ 32,32,32,85,110,105,118,101,114,115,97,108,32,110,101,119, ++ 108,105,110,101,32,115,117,112,112,111,114,116,32,105,115,32, ++ 117,115,101,100,32,105,110,32,116,104,101,32,100,101,99,111, ++ 100,105,110,103,46,10,32,32,32,32,114,85,0,0,0,78, ++ 84,41,7,218,8,116,111,107,101,110,105,122,101,114,50,0, ++ 0,0,90,7,66,121,116,101,115,73,79,90,8,114,101,97, ++ 100,108,105,110,101,90,15,100,101,116,101,99,116,95,101,110, ++ 99,111,100,105,110,103,90,25,73,110,99,114,101,109,101,110, ++ 116,97,108,78,101,119,108,105,110,101,68,101,99,111,100,101, ++ 114,218,6,100,101,99,111,100,101,41,5,218,12,115,111,117, ++ 114,99,101,95,98,121,116,101,115,114,200,0,0,0,90,21, ++ 115,111,117,114,99,101,95,98,121,116,101,115,95,114,101,97, ++ 100,108,105,110,101,218,8,101,110,99,111,100,105,110,103,90, ++ 15,110,101,119,108,105,110,101,95,100,101,99,111,100,101,114, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 13,100,101,99,111,100,101,95,115,111,117,114,99,101,164,2, ++ 0,0,115,10,0,0,0,0,5,12,1,18,1,15,1,18, ++ 1,114,204,0,0,0,99,1,0,0,0,0,0,0,0,5, ++ 0,0,0,35,0,0,0,67,0,0,0,115,15,1,0,0, ++ 116,0,0,124,0,0,100,1,0,100,0,0,131,3,0,125, ++ 1,0,116,1,0,124,1,0,100,2,0,131,2,0,114,74, ++ 0,121,17,0,124,1,0,106,2,0,124,0,0,131,1,0, ++ 83,87,113,74,0,4,116,3,0,107,10,0,114,70,0,1, ++ 1,1,89,113,74,0,88,110,0,0,121,13,0,124,0,0, ++ 106,4,0,125,2,0,87,110,18,0,4,116,5,0,107,10, ++ 0,114,107,0,1,1,1,89,110,29,0,88,124,2,0,100, ++ 0,0,107,9,0,114,136,0,116,6,0,124,2,0,131,1, ++ 0,106,2,0,131,0,0,83,121,13,0,124,0,0,106,7, ++ 0,125,3,0,87,110,24,0,4,116,5,0,107,10,0,114, ++ 175,0,1,1,1,100,3,0,125,3,0,89,110,1,0,88, ++ 121,13,0,124,0,0,106,8,0,125,4,0,87,110,59,0, ++ 4,116,5,0,107,10,0,114,250,0,1,1,1,124,1,0, ++ 100,0,0,107,8,0,114,230,0,100,4,0,106,9,0,124, ++ 3,0,131,1,0,83,100,5,0,106,9,0,124,3,0,124, ++ 1,0,131,2,0,83,89,110,17,0,88,100,6,0,106,9, ++ 0,124,3,0,124,4,0,131,2,0,83,100,0,0,83,41, ++ 7,78,218,10,95,95,108,111,97,100,101,114,95,95,218,11, ++ 109,111,100,117,108,101,95,114,101,112,114,250,1,63,122,13, ++ 60,109,111,100,117,108,101,32,123,33,114,125,62,122,20,60, ++ 109,111,100,117,108,101,32,123,33,114,125,32,40,123,33,114, ++ 125,41,62,122,23,60,109,111,100,117,108,101,32,123,33,114, ++ 125,32,102,114,111,109,32,123,33,114,125,62,41,10,114,63, ++ 0,0,0,114,61,0,0,0,114,206,0,0,0,218,9,69, ++ 120,99,101,112,116,105,111,110,218,8,95,95,115,112,101,99, ++ 95,95,218,14,65,116,116,114,105,98,117,116,101,69,114,114, ++ 111,114,114,175,0,0,0,114,58,0,0,0,218,8,95,95, ++ 102,105,108,101,95,95,114,48,0,0,0,41,5,114,180,0, ++ 0,0,114,170,0,0,0,114,178,0,0,0,114,68,0,0, ++ 0,114,132,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,12,95,109,111,100,117,108,101,95,114, ++ 101,112,114,178,2,0,0,115,46,0,0,0,0,2,18,1, ++ 15,4,3,1,17,1,13,1,8,1,3,1,13,1,13,1, ++ 5,2,12,1,16,4,3,1,13,1,13,1,11,1,3,1, ++ 13,1,13,1,12,1,13,2,21,2,114,212,0,0,0,99, ++ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, ++ 64,0,0,0,115,52,0,0,0,101,0,0,90,1,0,100, ++ 0,0,90,2,0,100,1,0,100,2,0,132,0,0,90,3, ++ 0,100,3,0,100,4,0,132,0,0,90,4,0,100,5,0, ++ 100,6,0,132,0,0,90,5,0,100,7,0,83,41,8,218, ++ 17,95,105,110,115,116,97,108,108,101,100,95,115,97,102,101, ++ 108,121,99,2,0,0,0,0,0,0,0,2,0,0,0,2, ++ 0,0,0,67,0,0,0,115,25,0,0,0,124,1,0,124, ++ 0,0,95,0,0,124,1,0,106,1,0,124,0,0,95,2, ++ 0,100,0,0,83,41,1,78,41,3,218,7,95,109,111,100, ++ 117,108,101,114,209,0,0,0,218,5,95,115,112,101,99,41, ++ 2,114,72,0,0,0,114,180,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,73,0,0,0,216, ++ 2,0,0,115,4,0,0,0,0,1,9,1,122,26,95,105, ++ 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, ++ 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, ++ 0,1,0,0,0,3,0,0,0,67,0,0,0,115,38,0, ++ 0,0,100,1,0,124,0,0,106,0,0,95,1,0,124,0, ++ 0,106,2,0,116,3,0,106,4,0,124,0,0,106,0,0, ++ 106,5,0,60,100,0,0,83,41,2,78,84,41,6,114,215, ++ 0,0,0,218,13,95,105,110,105,116,105,97,108,105,122,105, ++ 110,103,114,214,0,0,0,114,8,0,0,0,114,74,0,0, ++ 0,114,68,0,0,0,41,1,114,72,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,76,0,0, ++ 0,220,2,0,0,115,4,0,0,0,0,4,12,1,122,27, ++ 95,105,110,115,116,97,108,108,101,100,95,115,97,102,101,108, ++ 121,46,95,95,101,110,116,101,114,95,95,99,1,0,0,0, ++ 0,0,0,0,3,0,0,0,17,0,0,0,71,0,0,0, ++ 115,121,0,0,0,122,101,0,124,0,0,106,0,0,125,2, ++ 0,116,1,0,100,1,0,100,2,0,132,0,0,124,1,0, ++ 68,131,1,0,131,1,0,114,78,0,121,17,0,116,2,0, ++ 106,3,0,124,2,0,106,4,0,61,87,113,100,0,4,116, ++ 5,0,107,10,0,114,74,0,1,1,1,89,113,100,0,88, ++ 110,22,0,116,6,0,100,3,0,124,2,0,106,4,0,124, ++ 2,0,106,7,0,131,3,0,1,87,100,0,0,100,4,0, ++ 124,0,0,106,0,0,95,8,0,88,100,0,0,83,41,5, ++ 78,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, ++ 0,0,115,0,0,0,115,27,0,0,0,124,0,0,93,17, ++ 0,125,1,0,124,1,0,100,0,0,107,9,0,86,1,113, ++ 3,0,100,0,0,83,41,1,78,114,5,0,0,0,41,2, ++ 114,23,0,0,0,114,77,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,78,0,0,0,230,2, ++ 0,0,115,2,0,0,0,6,0,122,45,95,105,110,115,116, + 97,108,108,101,100,95,115,97,102,101,108,121,46,95,95,101, +- 110,116,101,114,95,95,99,1,0,0,0,0,0,0,0,3, +- 0,0,0,17,0,0,0,71,0,0,0,115,121,0,0,0, +- 122,101,0,124,0,0,106,0,0,125,2,0,116,1,0,100, +- 1,0,100,2,0,132,0,0,124,1,0,68,131,1,0,131, +- 1,0,114,78,0,121,17,0,116,2,0,106,3,0,124,2, +- 0,106,4,0,61,87,113,100,0,4,116,5,0,107,10,0, +- 114,74,0,1,1,1,89,113,100,0,88,110,22,0,116,6, +- 0,100,3,0,124,2,0,106,4,0,124,2,0,106,7,0, +- 131,3,0,1,87,100,0,0,100,4,0,124,0,0,106,0, +- 0,95,8,0,88,100,0,0,83,41,5,78,99,1,0,0, +- 0,0,0,0,0,2,0,0,0,3,0,0,0,115,0,0, +- 0,115,27,0,0,0,124,0,0,93,17,0,125,1,0,124, +- 1,0,100,0,0,107,9,0,86,1,113,3,0,100,0,0, +- 83,41,1,78,114,4,0,0,0,41,2,114,22,0,0,0, +- 114,76,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,77,0,0,0,230,2,0,0,115,2,0, +- 0,0,6,0,122,45,95,105,110,115,116,97,108,108,101,100, +- 95,115,97,102,101,108,121,46,95,95,101,120,105,116,95,95, +- 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, +- 112,114,62,122,18,105,109,112,111,114,116,32,123,33,114,125, +- 32,35,32,123,33,114,125,70,41,9,114,214,0,0,0,114, +- 78,0,0,0,114,7,0,0,0,114,73,0,0,0,114,67, +- 0,0,0,114,79,0,0,0,114,152,0,0,0,114,169,0, +- 0,0,114,215,0,0,0,41,3,114,71,0,0,0,114,80, +- 0,0,0,114,177,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,81,0,0,0,227,2,0,0, +- 115,18,0,0,0,0,1,3,1,9,1,25,1,3,1,17, +- 1,13,1,8,2,26,2,122,26,95,105,110,115,116,97,108, +- 108,101,100,95,115,97,102,101,108,121,46,95,95,101,120,105, +- 116,95,95,78,41,6,114,57,0,0,0,114,56,0,0,0, +- 114,58,0,0,0,114,72,0,0,0,114,75,0,0,0,114, +- 81,0,0,0,114,4,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,212,0,0,0,214,2,0, +- 0,115,6,0,0,0,12,2,12,4,12,7,114,212,0,0, +- 0,99,0,0,0,0,0,0,0,0,0,0,0,0,8,0, +- 0,0,64,0,0,0,115,172,0,0,0,101,0,0,90,1, +- 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, +- 100,3,0,100,4,0,100,3,0,100,5,0,100,3,0,100, +- 6,0,100,7,0,132,0,3,90,4,0,100,8,0,100,9, +- 0,132,0,0,90,5,0,100,10,0,100,11,0,132,0,0, +- 90,6,0,101,7,0,100,12,0,100,13,0,132,0,0,131, +- 1,0,90,8,0,101,8,0,106,9,0,100,14,0,100,13, +- 0,132,0,0,131,1,0,90,8,0,101,7,0,100,15,0, +- 100,16,0,132,0,0,131,1,0,90,10,0,101,7,0,100, +- 17,0,100,18,0,132,0,0,131,1,0,90,11,0,101,11, +- 0,106,9,0,100,19,0,100,18,0,132,0,0,131,1,0, +- 90,11,0,100,3,0,83,41,20,218,10,77,111,100,117,108, +- 101,83,112,101,99,97,208,5,0,0,84,104,101,32,115,112, +- 101,99,105,102,105,99,97,116,105,111,110,32,102,111,114,32, +- 97,32,109,111,100,117,108,101,44,32,117,115,101,100,32,102, +- 111,114,32,108,111,97,100,105,110,103,46,10,10,32,32,32, +- 32,65,32,109,111,100,117,108,101,39,115,32,115,112,101,99, +- 32,105,115,32,116,104,101,32,115,111,117,114,99,101,32,102, +- 111,114,32,105,110,102,111,114,109,97,116,105,111,110,32,97, +- 98,111,117,116,32,116,104,101,32,109,111,100,117,108,101,46, +- 32,32,70,111,114,10,32,32,32,32,100,97,116,97,32,97, +- 115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116, +- 104,101,32,109,111,100,117,108,101,44,32,105,110,99,108,117, +- 100,105,110,103,32,115,111,117,114,99,101,44,32,117,115,101, +- 32,116,104,101,32,115,112,101,99,39,115,10,32,32,32,32, +- 108,111,97,100,101,114,46,10,10,32,32,32,32,96,110,97, +- 109,101,96,32,105,115,32,116,104,101,32,97,98,115,111,108, +- 117,116,101,32,110,97,109,101,32,111,102,32,116,104,101,32, +- 109,111,100,117,108,101,46,32,32,96,108,111,97,100,101,114, +- 96,32,105,115,32,116,104,101,32,108,111,97,100,101,114,10, +- 32,32,32,32,116,111,32,117,115,101,32,119,104,101,110,32, +- 108,111,97,100,105,110,103,32,116,104,101,32,109,111,100,117, +- 108,101,46,32,32,96,112,97,114,101,110,116,96,32,105,115, +- 32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101, +- 10,32,32,32,32,112,97,99,107,97,103,101,32,116,104,101, +- 32,109,111,100,117,108,101,32,105,115,32,105,110,46,32,32, +- 84,104,101,32,112,97,114,101,110,116,32,105,115,32,100,101, +- 114,105,118,101,100,32,102,114,111,109,32,116,104,101,32,110, +- 97,109,101,46,10,10,32,32,32,32,96,105,115,95,112,97, +- 99,107,97,103,101,96,32,100,101,116,101,114,109,105,110,101, +- 115,32,105,102,32,116,104,101,32,109,111,100,117,108,101,32, +- 105,115,32,99,111,110,115,105,100,101,114,101,100,32,97,32, +- 112,97,99,107,97,103,101,32,111,114,10,32,32,32,32,110, +- 111,116,46,32,32,79,110,32,109,111,100,117,108,101,115,32, +- 116,104,105,115,32,105,115,32,114,101,102,108,101,99,116,101, +- 100,32,98,121,32,116,104,101,32,96,95,95,112,97,116,104, +- 95,95,96,32,97,116,116,114,105,98,117,116,101,46,10,10, +- 32,32,32,32,96,111,114,105,103,105,110,96,32,105,115,32, +- 116,104,101,32,115,112,101,99,105,102,105,99,32,108,111,99, +- 97,116,105,111,110,32,117,115,101,100,32,98,121,32,116,104, +- 101,32,108,111,97,100,101,114,32,102,114,111,109,32,119,104, +- 105,99,104,32,116,111,10,32,32,32,32,108,111,97,100,32, +- 116,104,101,32,109,111,100,117,108,101,44,32,105,102,32,116, +- 104,97,116,32,105,110,102,111,114,109,97,116,105,111,110,32, +- 105,115,32,97,118,97,105,108,97,98,108,101,46,32,32,87, +- 104,101,110,32,102,105,108,101,110,97,109,101,32,105,115,10, +- 32,32,32,32,115,101,116,44,32,111,114,105,103,105,110,32, +- 119,105,108,108,32,109,97,116,99,104,46,10,10,32,32,32, +- 32,96,104,97,115,95,108,111,99,97,116,105,111,110,96,32, +- 105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,97, +- 32,115,112,101,99,39,115,32,34,111,114,105,103,105,110,34, +- 32,114,101,102,108,101,99,116,115,32,97,32,108,111,99,97, +- 116,105,111,110,46,10,32,32,32,32,87,104,101,110,32,116, +- 104,105,115,32,105,115,32,84,114,117,101,44,32,96,95,95, +- 102,105,108,101,95,95,96,32,97,116,116,114,105,98,117,116, +- 101,32,111,102,32,116,104,101,32,109,111,100,117,108,101,32, +- 105,115,32,115,101,116,46,10,10,32,32,32,32,96,99,97, +- 99,104,101,100,96,32,105,115,32,116,104,101,32,108,111,99, +- 97,116,105,111,110,32,111,102,32,116,104,101,32,99,97,99, +- 104,101,100,32,98,121,116,101,99,111,100,101,32,102,105,108, +- 101,44,32,105,102,32,97,110,121,46,32,32,73,116,10,32, +- 32,32,32,99,111,114,114,101,115,112,111,110,100,115,32,116, +- 111,32,116,104,101,32,96,95,95,99,97,99,104,101,100,95, +- 95,96,32,97,116,116,114,105,98,117,116,101,46,10,10,32, +- 32,32,32,96,115,117,98,109,111,100,117,108,101,95,115,101, +- 97,114,99,104,95,108,111,99,97,116,105,111,110,115,96,32, +- 105,115,32,116,104,101,32,115,101,113,117,101,110,99,101,32, +- 111,102,32,112,97,116,104,32,101,110,116,114,105,101,115,32, +- 116,111,10,32,32,32,32,115,101,97,114,99,104,32,119,104, +- 101,110,32,105,109,112,111,114,116,105,110,103,32,115,117,98, +- 109,111,100,117,108,101,115,46,32,32,73,102,32,115,101,116, +- 44,32,105,115,95,112,97,99,107,97,103,101,32,115,104,111, +- 117,108,100,32,98,101,10,32,32,32,32,84,114,117,101,45, +- 45,97,110,100,32,70,97,108,115,101,32,111,116,104,101,114, +- 119,105,115,101,46,10,10,32,32,32,32,80,97,99,107,97, +- 103,101,115,32,97,114,101,32,115,105,109,112,108,121,32,109, +- 111,100,117,108,101,115,32,116,104,97,116,32,40,109,97,121, +- 41,32,104,97,118,101,32,115,117,98,109,111,100,117,108,101, +- 115,46,32,32,73,102,32,97,32,115,112,101,99,10,32,32, +- 32,32,104,97,115,32,97,32,110,111,110,45,78,111,110,101, +- 32,118,97,108,117,101,32,105,110,32,96,115,117,98,109,111, +- 100,117,108,101,95,115,101,97,114,99,104,95,108,111,99,97, +- 116,105,111,110,115,96,44,32,116,104,101,32,105,109,112,111, +- 114,116,10,32,32,32,32,115,121,115,116,101,109,32,119,105, +- 108,108,32,99,111,110,115,105,100,101,114,32,109,111,100,117, +- 108,101,115,32,108,111,97,100,101,100,32,102,114,111,109,32, +- 116,104,101,32,115,112,101,99,32,97,115,32,112,97,99,107, +- 97,103,101,115,46,10,10,32,32,32,32,79,110,108,121,32, +- 102,105,110,100,101,114,115,32,40,115,101,101,32,105,109,112, +- 111,114,116,108,105,98,46,97,98,99,46,77,101,116,97,80, +- 97,116,104,70,105,110,100,101,114,32,97,110,100,10,32,32, +- 32,32,105,109,112,111,114,116,108,105,98,46,97,98,99,46, +- 80,97,116,104,69,110,116,114,121,70,105,110,100,101,114,41, +- 32,115,104,111,117,108,100,32,109,111,100,105,102,121,32,77, +- 111,100,117,108,101,83,112,101,99,32,105,110,115,116,97,110, +- 99,101,115,46,10,10,32,32,32,32,218,6,111,114,105,103, +- 105,110,78,218,12,108,111,97,100,101,114,95,115,116,97,116, +- 101,218,10,105,115,95,112,97,99,107,97,103,101,99,3,0, +- 0,0,3,0,0,0,6,0,0,0,2,0,0,0,67,0, +- 0,0,115,79,0,0,0,124,1,0,124,0,0,95,0,0, +- 124,2,0,124,0,0,95,1,0,124,3,0,124,0,0,95, +- 2,0,124,4,0,124,0,0,95,3,0,124,5,0,114,48, +- 0,103,0,0,110,3,0,100,0,0,124,0,0,95,4,0, +- 100,1,0,124,0,0,95,5,0,100,0,0,124,0,0,95, +- 6,0,100,0,0,83,41,2,78,70,41,7,114,67,0,0, +- 0,114,169,0,0,0,114,217,0,0,0,114,218,0,0,0, +- 218,26,115,117,98,109,111,100,117,108,101,95,115,101,97,114, +- 99,104,95,108,111,99,97,116,105,111,110,115,218,13,95,115, +- 101,116,95,102,105,108,101,97,116,116,114,218,7,95,99,97, +- 99,104,101,100,41,6,114,71,0,0,0,114,67,0,0,0, +- 114,169,0,0,0,114,217,0,0,0,114,218,0,0,0,114, +- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,72,0,0,0,22,3,0,0,115,14,0,0, +- 0,0,2,9,1,9,1,9,1,9,1,21,3,9,1,122, +- 19,77,111,100,117,108,101,83,112,101,99,46,95,95,105,110, +- 105,116,95,95,99,1,0,0,0,0,0,0,0,2,0,0, +- 0,4,0,0,0,67,0,0,0,115,153,0,0,0,100,1, +- 0,106,0,0,124,0,0,106,1,0,131,1,0,100,2,0, +- 106,0,0,124,0,0,106,2,0,131,1,0,103,2,0,125, +- 1,0,124,0,0,106,3,0,100,0,0,107,9,0,114,79, +- 0,124,1,0,106,4,0,100,3,0,106,0,0,124,0,0, +- 106,3,0,131,1,0,131,1,0,1,110,0,0,124,0,0, +- 106,5,0,100,0,0,107,9,0,114,122,0,124,1,0,106, +- 4,0,100,4,0,106,0,0,124,0,0,106,5,0,131,1, +- 0,131,1,0,1,110,0,0,100,5,0,106,0,0,124,0, +- 0,106,6,0,106,7,0,100,6,0,106,8,0,124,1,0, +- 131,1,0,131,2,0,83,41,7,78,122,9,110,97,109,101, +- 61,123,33,114,125,122,11,108,111,97,100,101,114,61,123,33, +- 114,125,122,11,111,114,105,103,105,110,61,123,33,114,125,122, +- 29,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, +- 104,95,108,111,99,97,116,105,111,110,115,61,123,125,122,6, +- 123,125,40,123,125,41,122,2,44,32,41,9,114,47,0,0, +- 0,114,67,0,0,0,114,169,0,0,0,114,217,0,0,0, +- 218,6,97,112,112,101,110,100,114,220,0,0,0,218,9,95, +- 95,99,108,97,115,115,95,95,114,57,0,0,0,114,26,0, +- 0,0,41,2,114,71,0,0,0,114,80,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,101,0, +- 0,0,34,3,0,0,115,16,0,0,0,0,1,15,1,21, +- 1,15,1,28,1,15,1,6,1,22,1,122,19,77,111,100, +- 117,108,101,83,112,101,99,46,95,95,114,101,112,114,95,95, +- 99,2,0,0,0,0,0,0,0,3,0,0,0,13,0,0, +- 0,67,0,0,0,115,145,0,0,0,124,0,0,106,0,0, +- 125,2,0,121,107,0,124,0,0,106,1,0,124,1,0,106, +- 1,0,107,2,0,111,114,0,124,0,0,106,2,0,124,1, +- 0,106,2,0,107,2,0,111,114,0,124,0,0,106,3,0, +- 124,1,0,106,3,0,107,2,0,111,114,0,124,2,0,124, +- 1,0,106,0,0,107,2,0,111,114,0,124,0,0,106,4, +- 0,124,1,0,106,4,0,107,2,0,111,114,0,124,0,0, +- 106,5,0,124,1,0,106,5,0,107,2,0,83,87,110,22, +- 0,4,116,6,0,107,10,0,114,140,0,1,1,1,100,1, +- 0,83,89,110,1,0,88,100,0,0,83,41,2,78,70,41, +- 7,114,220,0,0,0,114,67,0,0,0,114,169,0,0,0, +- 114,217,0,0,0,218,6,99,97,99,104,101,100,218,12,104, +- 97,115,95,108,111,99,97,116,105,111,110,114,209,0,0,0, +- 41,3,114,71,0,0,0,218,5,111,116,104,101,114,218,4, +- 115,109,115,108,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,6,95,95,101,113,95,95,44,3,0,0,115, +- 20,0,0,0,0,1,9,1,3,1,18,1,18,1,18,1, +- 15,1,18,1,20,1,13,1,122,17,77,111,100,117,108,101, +- 83,112,101,99,46,95,95,101,113,95,95,99,1,0,0,0, +- 0,0,0,0,2,0,0,0,12,0,0,0,67,0,0,0, +- 115,158,0,0,0,124,0,0,106,0,0,100,0,0,107,8, +- 0,114,151,0,124,0,0,106,1,0,100,0,0,107,9,0, +- 114,151,0,124,0,0,106,2,0,114,151,0,124,0,0,106, +- 1,0,125,1,0,124,1,0,106,3,0,116,4,0,116,5, +- 0,131,1,0,131,1,0,114,112,0,121,19,0,116,6,0, +- 124,1,0,131,1,0,124,0,0,95,0,0,87,113,145,0, +- 4,116,7,0,107,10,0,114,108,0,1,1,1,89,113,145, +- 0,88,113,148,0,124,1,0,106,3,0,116,4,0,116,8, +- 0,131,1,0,131,1,0,114,148,0,124,1,0,124,0,0, +- 95,0,0,113,148,0,113,151,0,110,0,0,124,0,0,106, +- 0,0,83,41,1,78,41,9,114,222,0,0,0,114,217,0, +- 0,0,114,221,0,0,0,218,8,101,110,100,115,119,105,116, +- 104,218,5,116,117,112,108,101,114,134,0,0,0,114,132,0, +- 0,0,114,124,0,0,0,218,17,66,89,84,69,67,79,68, +- 69,95,83,85,70,70,73,88,69,83,41,2,114,71,0,0, +- 0,114,131,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,225,0,0,0,56,3,0,0,115,22, +- 0,0,0,0,2,15,1,24,1,9,1,21,1,3,1,19, +- 1,13,1,8,1,21,1,18,1,122,17,77,111,100,117,108, +- 101,83,112,101,99,46,99,97,99,104,101,100,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, +- 0,115,13,0,0,0,124,1,0,124,0,0,95,0,0,100, +- 0,0,83,41,1,78,41,1,114,222,0,0,0,41,2,114, +- 71,0,0,0,114,225,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,225,0,0,0,70,3,0, +- 0,115,2,0,0,0,0,2,99,1,0,0,0,0,0,0, +- 0,1,0,0,0,2,0,0,0,67,0,0,0,115,46,0, +- 0,0,124,0,0,106,0,0,100,1,0,107,8,0,114,35, +- 0,124,0,0,106,1,0,106,2,0,100,2,0,131,1,0, +- 100,3,0,25,83,124,0,0,106,1,0,83,100,1,0,83, +- 41,4,122,32,84,104,101,32,110,97,109,101,32,111,102,32, +- 116,104,101,32,109,111,100,117,108,101,39,115,32,112,97,114, +- 101,110,116,46,78,114,116,0,0,0,114,84,0,0,0,41, +- 3,114,220,0,0,0,114,67,0,0,0,114,32,0,0,0, +- 41,1,114,71,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,6,112,97,114,101,110,116,74,3, +- 0,0,115,6,0,0,0,0,3,15,1,20,2,122,17,77, +- 111,100,117,108,101,83,112,101,99,46,112,97,114,101,110,116, +- 99,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0, +- 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, +- 83,41,1,78,41,1,114,221,0,0,0,41,1,114,71,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,218,11,108,111,97,100,95,109,111,100,117,108,101,152,2, -- 0,0,115,2,0,0,0,0,1,122,25,95,76,111,97,100, -- 101,114,66,97,115,105,99,115,46,108,111,97,100,95,109,111, -- 100,117,108,101,78,41,8,114,112,0,0,0,114,111,0,0, -- 0,114,113,0,0,0,114,114,0,0,0,114,159,0,0,0, -- 114,186,0,0,0,114,191,0,0,0,114,193,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,184,0,0,0,128,2,0,0,115,10,0,0, -- 0,12,3,6,2,12,8,12,3,12,8,114,184,0,0,0, -- 99,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0, -- 0,64,0,0,0,115,106,0,0,0,101,0,0,90,1,0, -- 100,0,0,90,2,0,100,1,0,100,2,0,132,0,0,90, -- 3,0,100,3,0,100,4,0,132,0,0,90,4,0,100,5, -- 0,100,6,0,132,0,0,90,5,0,100,7,0,100,8,0, -- 132,0,0,90,6,0,100,9,0,100,10,0,132,0,0,90, -- 7,0,100,11,0,100,18,0,100,13,0,100,14,0,132,0, -- 1,90,8,0,100,15,0,100,16,0,132,0,0,90,9,0, -- 100,17,0,83,41,19,218,12,83,111,117,114,99,101,76,111, -- 97,100,101,114,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,1,0,0,0,67,0,0,0,115,10,0,0,0,116,0, -- 0,130,1,0,100,1,0,83,41,2,122,178,79,112,116,105, -- 111,110,97,108,32,109,101,116,104,111,100,32,116,104,97,116, -- 32,114,101,116,117,114,110,115,32,116,104,101,32,109,111,100, -- 105,102,105,99,97,116,105,111,110,32,116,105,109,101,32,40, -- 97,110,32,105,110,116,41,32,102,111,114,32,116,104,101,10, -- 32,32,32,32,32,32,32,32,115,112,101,99,105,102,105,101, -- 100,32,112,97,116,104,44,32,119,104,101,114,101,32,112,97, -- 116,104,32,105,115,32,97,32,115,116,114,46,10,10,32,32, -- 32,32,32,32,32,32,82,97,105,115,101,115,32,73,79,69, -- 114,114,111,114,32,119,104,101,110,32,116,104,101,32,112,97, -- 116,104,32,99,97,110,110,111,116,32,98,101,32,104,97,110, -- 100,108,101,100,46,10,32,32,32,32,32,32,32,32,78,41, -- 1,218,7,73,79,69,114,114,111,114,41,2,114,108,0,0, -- 0,114,35,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,10,112,97,116,104,95,109,116,105,109, -- 101,158,2,0,0,115,2,0,0,0,0,6,122,23,83,111, -- 117,114,99,101,76,111,97,100,101,114,46,112,97,116,104,95, -- 109,116,105,109,101,99,2,0,0,0,0,0,0,0,2,0, -- 0,0,3,0,0,0,67,0,0,0,115,19,0,0,0,100, -- 1,0,124,0,0,106,0,0,124,1,0,131,1,0,105,1, -- 0,83,41,2,97,170,1,0,0,79,112,116,105,111,110,97, -- 108,32,109,101,116,104,111,100,32,114,101,116,117,114,110,105, -- 110,103,32,97,32,109,101,116,97,100,97,116,97,32,100,105, -- 99,116,32,102,111,114,32,116,104,101,32,115,112,101,99,105, -- 102,105,101,100,32,112,97,116,104,10,32,32,32,32,32,32, -- 32,32,116,111,32,98,121,32,116,104,101,32,112,97,116,104, -- 32,40,115,116,114,41,46,10,32,32,32,32,32,32,32,32, -- 80,111,115,115,105,98,108,101,32,107,101,121,115,58,10,32, -- 32,32,32,32,32,32,32,45,32,39,109,116,105,109,101,39, -- 32,40,109,97,110,100,97,116,111,114,121,41,32,105,115,32, -- 116,104,101,32,110,117,109,101,114,105,99,32,116,105,109,101, -- 115,116,97,109,112,32,111,102,32,108,97,115,116,32,115,111, -- 117,114,99,101,10,32,32,32,32,32,32,32,32,32,32,99, -- 111,100,101,32,109,111,100,105,102,105,99,97,116,105,111,110, -- 59,10,32,32,32,32,32,32,32,32,45,32,39,115,105,122, -- 101,39,32,40,111,112,116,105,111,110,97,108,41,32,105,115, -- 32,116,104,101,32,115,105,122,101,32,105,110,32,98,121,116, -- 101,115,32,111,102,32,116,104,101,32,115,111,117,114,99,101, -- 32,99,111,100,101,46,10,10,32,32,32,32,32,32,32,32, -- 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, -- 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, -- 116,104,101,32,108,111,97,100,101,114,32,116,111,32,114,101, -- 97,100,32,98,121,116,101,99,111,100,101,32,102,105,108,101, -- 115,46,10,32,32,32,32,32,32,32,32,82,97,105,115,101, -+ 67,0,0,0,115,76,0,0,0,116,0,0,116,1,0,131, -+ 1,0,125,3,0,124,3,0,106,2,0,116,3,0,124,1, -+ 0,131,1,0,131,1,0,1,124,3,0,106,2,0,116,3, -+ 0,124,2,0,131,1,0,131,1,0,1,124,3,0,106,2, -+ 0,116,4,0,106,5,0,124,0,0,131,1,0,131,1,0, -+ 1,124,3,0,83,41,1,122,80,67,111,109,112,105,108,101, -+ 32,97,32,99,111,100,101,32,111,98,106,101,99,116,32,105, -+ 110,116,111,32,98,121,116,101,99,111,100,101,32,102,111,114, -+ 32,119,114,105,116,105,110,103,32,111,117,116,32,116,111,32, -+ 97,32,98,121,116,101,45,99,111,109,112,105,108,101,100,10, -+ 32,32,32,32,102,105,108,101,46,41,6,218,9,98,121,116, -+ 101,97,114,114,97,121,114,136,0,0,0,218,6,101,120,116, -+ 101,110,100,114,18,0,0,0,114,143,0,0,0,90,5,100, -+ 117,109,112,115,41,4,114,147,0,0,0,114,134,0,0,0, -+ 114,141,0,0,0,114,54,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,17,95,99,111,100,101, -+ 95,116,111,95,98,121,116,101,99,111,100,101,227,1,0,0, -+ 115,10,0,0,0,0,3,12,1,19,1,19,1,22,1,114, -+ 151,0,0,0,99,1,0,0,0,0,0,0,0,5,0,0, -+ 0,4,0,0,0,67,0,0,0,115,89,0,0,0,100,1, -+ 0,100,2,0,108,0,0,125,1,0,116,1,0,106,2,0, -+ 124,0,0,131,1,0,106,3,0,125,2,0,124,1,0,106, -+ 4,0,124,2,0,131,1,0,125,3,0,116,1,0,106,5, -+ 0,100,2,0,100,3,0,131,2,0,125,4,0,124,4,0, -+ 106,6,0,124,0,0,106,6,0,124,3,0,100,1,0,25, -+ 131,1,0,131,1,0,83,41,4,122,121,68,101,99,111,100, -+ 101,32,98,121,116,101,115,32,114,101,112,114,101,115,101,110, -+ 116,105,110,103,32,115,111,117,114,99,101,32,99,111,100,101, -+ 32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32, -+ 115,116,114,105,110,103,46,10,10,32,32,32,32,85,110,105, -+ 118,101,114,115,97,108,32,110,101,119,108,105,110,101,32,115, -+ 117,112,112,111,114,116,32,105,115,32,117,115,101,100,32,105, -+ 110,32,116,104,101,32,100,101,99,111,100,105,110,103,46,10, -+ 32,32,32,32,114,60,0,0,0,78,84,41,7,218,8,116, -+ 111,107,101,110,105,122,101,114,50,0,0,0,90,7,66,121, -+ 116,101,115,73,79,90,8,114,101,97,100,108,105,110,101,90, -+ 15,100,101,116,101,99,116,95,101,110,99,111,100,105,110,103, -+ 90,25,73,110,99,114,101,109,101,110,116,97,108,78,101,119, -+ 108,105,110,101,68,101,99,111,100,101,114,218,6,100,101,99, -+ 111,100,101,41,5,218,12,115,111,117,114,99,101,95,98,121, -+ 116,101,115,114,152,0,0,0,90,21,115,111,117,114,99,101, -+ 95,98,121,116,101,115,95,114,101,97,100,108,105,110,101,218, -+ 8,101,110,99,111,100,105,110,103,90,15,110,101,119,108,105, -+ 110,101,95,100,101,99,111,100,101,114,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,13,100,101,99,111,100, -+ 101,95,115,111,117,114,99,101,237,1,0,0,115,10,0,0, -+ 0,0,5,12,1,18,1,15,1,18,1,114,156,0,0,0, -+ 114,128,0,0,0,218,26,115,117,98,109,111,100,117,108,101, +- 0,114,226,0,0,0,82,3,0,0,115,2,0,0,0,0, +- 2,122,23,77,111,100,117,108,101,83,112,101,99,46,104,97, +- 115,95,108,111,99,97,116,105,111,110,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, +- 19,0,0,0,116,0,0,124,1,0,131,1,0,124,0,0, +- 95,1,0,100,0,0,83,41,1,78,41,2,218,4,98,111, +- 111,108,114,221,0,0,0,41,2,114,71,0,0,0,218,5, +- 118,97,108,117,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,226,0,0,0,86,3,0,0,115,2,0, +- 0,0,0,2,41,12,114,57,0,0,0,114,56,0,0,0, +- 114,58,0,0,0,114,59,0,0,0,114,72,0,0,0,114, +- 101,0,0,0,114,229,0,0,0,218,8,112,114,111,112,101, +- 114,116,121,114,225,0,0,0,218,6,115,101,116,116,101,114, +- 114,233,0,0,0,114,226,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,216, +- 0,0,0,241,2,0,0,115,20,0,0,0,12,35,6,2, +- 15,1,15,11,12,10,12,12,18,14,21,4,18,8,18,4, +- 114,216,0,0,0,114,217,0,0,0,114,219,0,0,0,99, +- 2,0,0,0,2,0,0,0,5,0,0,0,15,0,0,0, +- 67,0,0,0,115,193,0,0,0,116,0,0,124,1,0,100, +- 1,0,131,2,0,114,83,0,124,3,0,100,2,0,107,8, +- 0,114,43,0,116,1,0,124,0,0,100,3,0,124,1,0, +- 131,1,1,83,124,3,0,114,55,0,103,0,0,110,3,0, +- 100,2,0,125,4,0,116,1,0,124,0,0,100,3,0,124, +- 1,0,100,4,0,124,4,0,131,1,2,83,124,3,0,100, +- 2,0,107,8,0,114,168,0,116,0,0,124,1,0,100,5, +- 0,131,2,0,114,159,0,121,19,0,124,1,0,106,2,0, +- 124,0,0,131,1,0,125,3,0,87,113,165,0,4,116,3, +- 0,107,10,0,114,155,0,1,1,1,100,2,0,125,3,0, +- 89,113,165,0,88,113,168,0,100,6,0,125,3,0,110,0, +- 0,116,4,0,124,0,0,124,1,0,100,7,0,124,2,0, +- 100,5,0,124,3,0,131,2,2,83,41,8,122,53,82,101, +- 116,117,114,110,32,97,32,109,111,100,117,108,101,32,115,112, +- 101,99,32,98,97,115,101,100,32,111,110,32,118,97,114,105, +- 111,117,115,32,108,111,97,100,101,114,32,109,101,116,104,111, +- 100,115,46,218,12,103,101,116,95,102,105,108,101,110,97,109, +- 101,78,114,169,0,0,0,114,220,0,0,0,114,219,0,0, +- 0,70,114,217,0,0,0,41,5,114,60,0,0,0,218,23, +- 115,112,101,99,95,102,114,111,109,95,102,105,108,101,95,108, +- 111,99,97,116,105,111,110,114,219,0,0,0,114,153,0,0, +- 0,114,216,0,0,0,41,5,114,67,0,0,0,114,169,0, +- 0,0,114,217,0,0,0,114,219,0,0,0,90,6,115,101, +- 97,114,99,104,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,173,0,0,0,91,3,0,0,115,28,0,0, +- 0,0,2,15,1,12,1,16,1,18,1,15,1,7,2,12, +- 1,15,1,3,1,19,1,13,1,14,3,9,2,114,173,0, +- 0,0,114,169,0,0,0,114,220,0,0,0,99,2,0,0, +- 0,2,0,0,0,9,0,0,0,19,0,0,0,67,0,0, +- 0,115,110,1,0,0,124,1,0,100,1,0,107,8,0,114, +- 79,0,100,2,0,125,1,0,116,0,0,124,2,0,100,3, +- 0,131,2,0,114,79,0,121,19,0,124,2,0,106,1,0, +- 124,0,0,131,1,0,125,1,0,87,113,76,0,4,116,2, +- 0,107,10,0,114,72,0,1,1,1,89,113,76,0,88,113, +- 79,0,110,0,0,116,3,0,124,0,0,124,2,0,100,4, +- 0,124,1,0,131,2,1,125,4,0,100,5,0,124,4,0, +- 95,4,0,124,2,0,100,1,0,107,8,0,114,203,0,120, +- 79,0,116,5,0,131,0,0,68,93,61,0,92,2,0,125, +- 5,0,125,6,0,124,1,0,106,6,0,116,7,0,124,6, +- 0,131,1,0,131,1,0,114,131,0,124,5,0,124,0,0, +- 124,1,0,131,2,0,125,2,0,124,2,0,124,4,0,95, +- 8,0,80,113,131,0,113,131,0,87,100,1,0,83,110,0, +- 0,124,3,0,116,9,0,107,8,0,114,38,1,116,0,0, +- 124,2,0,100,6,0,131,2,0,114,47,1,121,19,0,124, +- 2,0,106,10,0,124,0,0,131,1,0,125,7,0,87,110, +- 18,0,4,116,2,0,107,10,0,114,13,1,1,1,1,89, +- 113,35,1,88,124,7,0,114,35,1,103,0,0,124,4,0, +- 95,11,0,113,35,1,113,47,1,110,9,0,124,3,0,124, +- 4,0,95,11,0,124,4,0,106,11,0,103,0,0,107,2, +- 0,114,106,1,124,1,0,114,106,1,116,12,0,124,1,0, +- 131,1,0,100,7,0,25,125,8,0,124,4,0,106,11,0, +- 106,13,0,124,8,0,131,1,0,1,113,106,1,110,0,0, +- 124,4,0,83,41,8,97,61,1,0,0,82,101,116,117,114, +- 110,32,97,32,109,111,100,117,108,101,32,115,112,101,99,32, +- 98,97,115,101,100,32,111,110,32,97,32,102,105,108,101,32, +- 108,111,99,97,116,105,111,110,46,10,10,32,32,32,32,84, +- 111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32, +- 116,104,101,32,109,111,100,117,108,101,32,105,115,32,97,32, +- 112,97,99,107,97,103,101,44,32,115,101,116,10,32,32,32, +- 32,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, +- 104,95,108,111,99,97,116,105,111,110,115,32,116,111,32,97, +- 32,108,105,115,116,32,111,102,32,100,105,114,101,99,116,111, +- 114,121,32,112,97,116,104,115,46,32,32,65,110,10,32,32, +- 32,32,101,109,112,116,121,32,108,105,115,116,32,105,115,32, +- 115,117,102,102,105,99,105,101,110,116,44,32,116,104,111,117, +- 103,104,32,105,116,115,32,110,111,116,32,111,116,104,101,114, +- 119,105,115,101,32,117,115,101,102,117,108,32,116,111,32,116, +- 104,101,10,32,32,32,32,105,109,112,111,114,116,32,115,121, +- 115,116,101,109,46,10,10,32,32,32,32,84,104,101,32,108, +- 111,97,100,101,114,32,109,117,115,116,32,116,97,107,101,32, +- 97,32,115,112,101,99,32,97,115,32,105,116,115,32,111,110, +- 108,121,32,95,95,105,110,105,116,95,95,40,41,32,97,114, +- 103,46,10,10,32,32,32,32,78,122,9,60,117,110,107,110, +- 111,119,110,62,114,238,0,0,0,114,217,0,0,0,84,114, +- 219,0,0,0,114,84,0,0,0,41,14,114,60,0,0,0, +- 114,238,0,0,0,114,153,0,0,0,114,216,0,0,0,114, +- 221,0,0,0,218,27,95,103,101,116,95,115,117,112,112,111, +- 114,116,101,100,95,102,105,108,101,95,108,111,97,100,101,114, +- 115,114,230,0,0,0,114,231,0,0,0,114,169,0,0,0, +- 218,9,95,80,79,80,85,76,65,84,69,114,219,0,0,0, +- 114,220,0,0,0,114,38,0,0,0,114,223,0,0,0,41, +- 9,114,67,0,0,0,218,8,108,111,99,97,116,105,111,110, +- 114,169,0,0,0,114,220,0,0,0,114,177,0,0,0,218, +- 12,108,111,97,100,101,114,95,99,108,97,115,115,114,127,0, +- 0,0,114,219,0,0,0,90,7,100,105,114,110,97,109,101, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 239,0,0,0,116,3,0,0,115,60,0,0,0,0,12,12, +- 4,6,1,15,2,3,1,19,1,13,1,11,8,21,1,9, +- 3,12,1,22,1,21,1,15,1,9,1,8,2,7,3,12, +- 2,15,1,3,1,19,1,13,1,5,2,6,1,18,2,9, +- 1,15,1,6,1,16,1,22,2,114,239,0,0,0,99,3, +- 0,0,0,0,0,0,0,8,0,0,0,53,0,0,0,67, +- 0,0,0,115,124,1,0,0,121,13,0,124,0,0,106,0, +- 0,125,3,0,87,110,18,0,4,116,1,0,107,10,0,114, +- 33,0,1,1,1,89,110,17,0,88,124,3,0,100,0,0, +- 107,9,0,114,50,0,124,3,0,83,124,0,0,106,2,0, +- 125,4,0,124,1,0,100,0,0,107,8,0,114,108,0,121, +- 13,0,124,0,0,106,3,0,125,1,0,87,113,108,0,4, +- 116,1,0,107,10,0,114,104,0,1,1,1,89,113,108,0, +- 88,110,0,0,121,13,0,124,0,0,106,4,0,125,5,0, +- 87,110,24,0,4,116,1,0,107,10,0,114,147,0,1,1, +- 1,100,0,0,125,5,0,89,110,1,0,88,124,2,0,100, +- 0,0,107,8,0,114,224,0,124,5,0,100,0,0,107,8, +- 0,114,215,0,121,13,0,124,1,0,106,5,0,125,2,0, +- 87,113,221,0,4,116,1,0,107,10,0,114,211,0,1,1, +- 1,100,0,0,125,2,0,89,113,221,0,88,113,224,0,124, +- 5,0,125,2,0,110,0,0,121,13,0,124,0,0,106,6, +- 0,125,6,0,87,110,24,0,4,116,1,0,107,10,0,114, +- 7,1,1,1,1,100,0,0,125,6,0,89,110,1,0,88, +- 121,19,0,116,7,0,124,0,0,106,8,0,131,1,0,125, +- 7,0,87,110,24,0,4,116,1,0,107,10,0,114,53,1, +- 1,1,1,100,0,0,125,7,0,89,110,1,0,88,116,9, +- 0,124,4,0,124,1,0,100,1,0,124,2,0,131,2,1, +- 125,3,0,124,5,0,100,0,0,107,8,0,114,93,1,100, +- 2,0,110,3,0,100,3,0,124,3,0,95,10,0,124,6, +- 0,124,3,0,95,11,0,124,7,0,124,3,0,95,12,0, +- 124,3,0,83,41,4,78,114,217,0,0,0,70,84,41,13, +- 114,208,0,0,0,114,209,0,0,0,114,57,0,0,0,114, +- 204,0,0,0,114,210,0,0,0,90,7,95,79,82,73,71, +- 73,78,218,10,95,95,99,97,99,104,101,100,95,95,218,4, +- 108,105,115,116,218,8,95,95,112,97,116,104,95,95,114,216, +- 0,0,0,114,221,0,0,0,114,225,0,0,0,114,220,0, +- 0,0,41,8,114,179,0,0,0,114,169,0,0,0,114,217, +- 0,0,0,114,177,0,0,0,114,67,0,0,0,114,242,0, +- 0,0,114,225,0,0,0,114,220,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,17,95,115,112, +- 101,99,95,102,114,111,109,95,109,111,100,117,108,101,180,3, +- 0,0,115,72,0,0,0,0,2,3,1,13,1,13,1,5, +- 2,12,1,4,2,9,1,12,1,3,1,13,1,13,2,8, +- 1,3,1,13,1,13,1,11,1,12,1,12,1,3,1,13, +- 1,13,1,14,2,9,1,3,1,13,1,13,1,11,1,3, +- 1,19,1,13,1,11,2,21,1,27,1,9,1,9,1,114, +- 247,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, +- 0,6,0,0,0,64,0,0,0,115,142,0,0,0,101,0, +- 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, +- 100,2,0,100,3,0,132,0,0,90,4,0,100,4,0,100, +- 5,0,132,0,0,90,5,0,100,6,0,100,7,0,100,8, +- 0,100,9,0,100,10,0,100,11,0,132,0,2,90,6,0, +- 100,12,0,100,13,0,132,0,0,90,7,0,100,14,0,100, +- 15,0,132,0,0,90,8,0,100,16,0,100,17,0,132,0, +- 0,90,9,0,100,18,0,100,19,0,132,0,0,90,10,0, +- 100,20,0,100,21,0,132,0,0,90,11,0,100,22,0,100, +- 23,0,132,0,0,90,12,0,100,24,0,83,41,25,114,174, +- 0,0,0,122,77,67,111,110,118,101,110,105,101,110,99,101, +- 32,119,114,97,112,112,101,114,32,97,114,111,117,110,100,32, +- 115,112,101,99,32,111,98,106,101,99,116,115,32,116,111,32, +- 112,114,111,118,105,100,101,32,115,112,101,99,45,115,112,101, +- 99,105,102,105,99,10,32,32,32,32,109,101,116,104,111,100, +- 115,46,99,2,0,0,0,0,0,0,0,2,0,0,0,2, +- 0,0,0,67,0,0,0,115,13,0,0,0,124,1,0,124, +- 0,0,95,0,0,100,0,0,83,41,1,78,41,1,114,177, +- 0,0,0,41,2,114,71,0,0,0,114,177,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,72, +- 0,0,0,232,3,0,0,115,2,0,0,0,0,1,122,21, +- 95,83,112,101,99,77,101,116,104,111,100,115,46,95,95,105, +- 110,105,116,95,95,99,1,0,0,0,0,0,0,0,3,0, +- 0,0,3,0,0,0,67,0,0,0,115,158,0,0,0,124, +- 0,0,106,0,0,125,1,0,124,1,0,106,1,0,100,1, +- 0,107,8,0,114,30,0,100,2,0,110,6,0,124,1,0, +- 106,1,0,125,2,0,124,1,0,106,2,0,100,1,0,107, +- 8,0,114,104,0,124,1,0,106,3,0,100,1,0,107,8, +- 0,114,82,0,100,3,0,106,4,0,124,2,0,131,1,0, +- 83,100,4,0,106,4,0,124,2,0,124,1,0,106,3,0, +- 131,2,0,83,110,50,0,124,1,0,106,5,0,114,132,0, +- 100,5,0,106,4,0,124,2,0,124,1,0,106,2,0,131, +- 2,0,83,100,6,0,106,4,0,124,1,0,106,1,0,124, +- 1,0,106,2,0,131,2,0,83,100,1,0,83,41,7,122, +- 38,82,101,116,117,114,110,32,116,104,101,32,114,101,112,114, +- 32,116,111,32,117,115,101,32,102,111,114,32,116,104,101,32, +- 109,111,100,117,108,101,46,78,114,206,0,0,0,122,13,60, +- 109,111,100,117,108,101,32,123,33,114,125,62,122,20,60,109, +- 111,100,117,108,101,32,123,33,114,125,32,40,123,33,114,125, +- 41,62,122,23,60,109,111,100,117,108,101,32,123,33,114,125, +- 32,102,114,111,109,32,123,33,114,125,62,122,18,60,109,111, +- 100,117,108,101,32,123,33,114,125,32,40,123,125,41,62,41, +- 6,114,177,0,0,0,114,67,0,0,0,114,217,0,0,0, +- 114,169,0,0,0,114,47,0,0,0,114,226,0,0,0,41, +- 3,114,71,0,0,0,114,177,0,0,0,114,67,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 205,0,0,0,235,3,0,0,115,18,0,0,0,0,3,9, +- 1,30,1,15,1,15,1,13,2,22,2,9,1,19,2,122, +- 24,95,83,112,101,99,77,101,116,104,111,100,115,46,109,111, +- 100,117,108,101,95,114,101,112,114,218,9,95,111,118,101,114, +- 114,105,100,101,70,218,11,95,102,111,114,99,101,95,110,97, +- 109,101,84,99,2,0,0,0,2,0,0,0,6,0,0,0, +- 66,0,0,0,67,0,0,0,115,75,2,0,0,124,0,0, +- 106,0,0,125,4,0,124,2,0,115,45,0,124,3,0,115, +- 45,0,116,1,0,124,1,0,100,1,0,100,2,0,131,3, +- 0,100,2,0,107,8,0,114,85,0,121,16,0,124,4,0, +- 106,2,0,124,1,0,95,3,0,87,113,85,0,4,116,4, +- 0,107,10,0,114,81,0,1,1,1,89,113,85,0,88,110, +- 0,0,124,2,0,115,115,0,116,1,0,124,1,0,100,3, +- 0,100,2,0,131,3,0,100,2,0,107,8,0,114,221,0, +- 124,4,0,106,5,0,125,5,0,124,5,0,100,2,0,107, +- 8,0,114,184,0,124,4,0,106,6,0,100,2,0,107,9, +- 0,114,184,0,116,7,0,106,8,0,116,7,0,131,1,0, +- 125,5,0,124,4,0,106,6,0,124,5,0,95,9,0,113, +- 184,0,110,0,0,121,13,0,124,5,0,124,1,0,95,10, +- 0,87,113,221,0,4,116,4,0,107,10,0,114,217,0,1, +- 1,1,89,113,221,0,88,110,0,0,124,2,0,115,251,0, +- 116,1,0,124,1,0,100,4,0,100,2,0,131,3,0,100, +- 2,0,107,8,0,114,35,1,121,16,0,124,4,0,106,11, +- 0,124,1,0,95,12,0,87,113,35,1,4,116,4,0,107, +- 10,0,114,31,1,1,1,1,89,113,35,1,88,110,0,0, +- 121,13,0,124,4,0,124,1,0,95,13,0,87,110,18,0, +- 4,116,4,0,107,10,0,114,68,1,1,1,1,89,110,1, +- 0,88,124,2,0,115,99,1,116,1,0,124,1,0,100,5, +- 0,100,2,0,131,3,0,100,2,0,107,8,0,114,157,1, +- 124,4,0,106,6,0,100,2,0,107,9,0,114,157,1,121, +- 16,0,124,4,0,106,6,0,124,1,0,95,14,0,87,113, +- 154,1,4,116,4,0,107,10,0,114,150,1,1,1,1,89, +- 113,154,1,88,113,157,1,110,0,0,124,4,0,106,15,0, +- 114,71,2,124,2,0,115,196,1,116,1,0,124,1,0,100, +- 6,0,100,2,0,131,3,0,100,2,0,107,8,0,114,236, +- 1,121,16,0,124,4,0,106,16,0,124,1,0,95,17,0, +- 87,113,236,1,4,116,4,0,107,10,0,114,232,1,1,1, +- 1,89,113,236,1,88,110,0,0,124,2,0,115,10,2,116, +- 1,0,124,1,0,100,7,0,100,2,0,131,3,0,100,2, +- 0,107,8,0,114,71,2,124,4,0,106,18,0,100,2,0, +- 107,9,0,114,68,2,121,16,0,124,4,0,106,18,0,124, +- 1,0,95,19,0,87,113,65,2,4,116,4,0,107,10,0, +- 114,61,2,1,1,1,89,113,65,2,88,113,68,2,113,71, +- 2,110,0,0,100,2,0,83,41,8,97,29,2,0,0,83, +- 101,116,32,116,104,101,32,109,111,100,117,108,101,39,115,32, +- 97,116,116,114,105,98,117,116,101,115,46,10,10,32,32,32, +- 32,32,32,32,32,65,108,108,32,109,105,115,115,105,110,103, +- 32,105,109,112,111,114,116,45,114,101,108,97,116,101,100,32, +- 109,111,100,117,108,101,32,97,116,116,114,105,98,117,116,101, +- 115,32,119,105,108,108,32,98,101,32,115,101,116,46,32,32, +- 72,101,114,101,10,32,32,32,32,32,32,32,32,105,115,32, +- 104,111,119,32,116,104,101,32,115,112,101,99,32,97,116,116, +- 114,105,98,117,116,101,115,32,109,97,112,32,111,110,116,111, +- 32,116,104,101,32,109,111,100,117,108,101,58,10,10,32,32, +- 32,32,32,32,32,32,115,112,101,99,46,110,97,109,101,32, +- 45,62,32,109,111,100,117,108,101,46,95,95,110,97,109,101, +- 95,95,10,32,32,32,32,32,32,32,32,115,112,101,99,46, +- 108,111,97,100,101,114,32,45,62,32,109,111,100,117,108,101, +- 46,95,95,108,111,97,100,101,114,95,95,10,32,32,32,32, +- 32,32,32,32,115,112,101,99,46,112,97,114,101,110,116,32, +- 45,62,32,109,111,100,117,108,101,46,95,95,112,97,99,107, +- 97,103,101,95,95,10,32,32,32,32,32,32,32,32,115,112, +- 101,99,32,45,62,32,109,111,100,117,108,101,46,95,95,115, +- 112,101,99,95,95,10,10,32,32,32,32,32,32,32,32,79, +- 112,116,105,111,110,97,108,58,10,32,32,32,32,32,32,32, +- 32,115,112,101,99,46,111,114,105,103,105,110,32,45,62,32, +- 109,111,100,117,108,101,46,95,95,102,105,108,101,95,95,32, +- 40,105,102,32,115,112,101,99,46,115,101,116,95,102,105,108, +- 101,97,116,116,114,32,105,115,32,116,114,117,101,41,10,32, +- 32,32,32,32,32,32,32,115,112,101,99,46,99,97,99,104, +- 101,100,32,45,62,32,109,111,100,117,108,101,46,95,95,99, +- 97,99,104,101,100,95,95,32,40,105,102,32,95,95,102,105, +- 108,101,95,95,32,97,108,115,111,32,115,101,116,41,10,32, +- 32,32,32,32,32,32,32,115,112,101,99,46,115,117,98,109, +- 111,100,117,108,101,95,115,101,97,114,99,104,95,108,111,99, +- 97,116,105,111,110,115,32,45,62,32,109,111,100,117,108,101, +- 46,95,95,112,97,116,104,95,95,32,40,105,102,32,115,101, +- 116,41,10,10,32,32,32,32,32,32,32,32,114,57,0,0, +- 0,78,114,204,0,0,0,218,11,95,95,112,97,99,107,97, +- 103,101,95,95,114,246,0,0,0,114,210,0,0,0,114,244, +- 0,0,0,41,20,114,177,0,0,0,114,62,0,0,0,114, +- 67,0,0,0,114,57,0,0,0,114,209,0,0,0,114,169, +- 0,0,0,114,220,0,0,0,218,16,95,78,97,109,101,115, +- 112,97,99,101,76,111,97,100,101,114,218,7,95,95,110,101, +- 119,95,95,218,5,95,112,97,116,104,114,204,0,0,0,114, +- 233,0,0,0,114,250,0,0,0,114,208,0,0,0,114,246, +- 0,0,0,114,226,0,0,0,114,217,0,0,0,114,210,0, +- 0,0,114,225,0,0,0,114,244,0,0,0,41,6,114,71, +- 0,0,0,114,179,0,0,0,114,248,0,0,0,114,249,0, +- 0,0,114,177,0,0,0,114,169,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,17,105,110,105, +- 116,95,109,111,100,117,108,101,95,97,116,116,114,115,251,3, +- 0,0,115,88,0,0,0,0,17,9,6,12,1,24,1,3, +- 1,16,1,13,1,8,3,30,1,9,1,12,2,15,1,15, +- 1,18,1,3,1,13,1,13,1,8,3,30,1,3,1,16, +- 1,13,1,8,3,3,1,13,1,13,1,5,3,30,1,15, +- 1,3,1,16,1,13,1,11,2,9,2,30,1,3,1,16, +- 1,13,1,8,3,30,1,15,1,3,1,16,1,13,1,122, +- 30,95,83,112,101,99,77,101,116,104,111,100,115,46,105,110, +- 105,116,95,109,111,100,117,108,101,95,97,116,116,114,115,99, +- 1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, +- 67,0,0,0,115,101,0,0,0,124,0,0,106,0,0,125, +- 1,0,116,1,0,124,1,0,106,2,0,100,1,0,131,2, +- 0,114,48,0,124,1,0,106,2,0,106,3,0,124,1,0, +- 131,1,0,125,2,0,110,6,0,100,2,0,125,2,0,124, +- 2,0,100,2,0,107,8,0,114,84,0,116,4,0,124,1, +- 0,106,5,0,131,1,0,125,2,0,110,0,0,124,0,0, +- 106,6,0,124,2,0,131,1,0,1,124,2,0,83,41,3, +- 122,153,82,101,116,117,114,110,32,97,32,110,101,119,32,109, +- 111,100,117,108,101,32,116,111,32,98,101,32,108,111,97,100, +- 101,100,46,10,10,32,32,32,32,32,32,32,32,84,104,101, +- 32,105,109,112,111,114,116,45,114,101,108,97,116,101,100,32, +- 109,111,100,117,108,101,32,97,116,116,114,105,98,117,116,101, +- 115,32,97,114,101,32,97,108,115,111,32,115,101,116,32,119, +- 105,116,104,32,116,104,101,10,32,32,32,32,32,32,32,32, +- 97,112,112,114,111,112,114,105,97,116,101,32,118,97,108,117, +- 101,115,32,102,114,111,109,32,116,104,101,32,115,112,101,99, +- 46,10,10,32,32,32,32,32,32,32,32,218,13,99,114,101, +- 97,116,101,95,109,111,100,117,108,101,78,41,7,114,177,0, +- 0,0,114,60,0,0,0,114,169,0,0,0,114,255,0,0, +- 0,114,68,0,0,0,114,67,0,0,0,114,254,0,0,0, +- 41,3,114,71,0,0,0,114,177,0,0,0,114,179,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,6,99,114,101,97,116,101,75,4,0,0,115,16,0,0, +- 0,0,7,9,2,18,3,21,2,6,1,12,4,18,1,13, +- 1,122,19,95,83,112,101,99,77,101,116,104,111,100,115,46, +- 99,114,101,97,116,101,99,2,0,0,0,0,0,0,0,2, +- 0,0,0,2,0,0,0,67,0,0,0,115,23,0,0,0, +- 124,0,0,106,0,0,106,1,0,106,2,0,124,1,0,131, +- 1,0,1,100,1,0,83,41,2,122,189,68,111,32,101,118, +- 101,114,121,116,104,105,110,103,32,110,101,99,101,115,115,97, +- 114,121,32,116,111,32,101,120,101,99,117,116,101,32,116,104, +- 101,32,109,111,100,117,108,101,46,10,10,32,32,32,32,32, +- 32,32,32,84,104,101,32,110,97,109,101,115,112,97,99,101, +- 32,111,102,32,96,109,111,100,117,108,101,96,32,105,115,32, +- 117,115,101,100,32,97,115,32,116,104,101,32,116,97,114,103, +- 101,116,32,111,102,32,101,120,101,99,117,116,105,111,110,46, +- 10,32,32,32,32,32,32,32,32,84,104,105,115,32,109,101, +- 116,104,111,100,32,117,115,101,115,32,116,104,101,32,108,111, +- 97,100,101,114,39,115,32,96,101,120,101,99,95,109,111,100, +- 117,108,101,40,41,96,32,109,101,116,104,111,100,46,10,10, +- 32,32,32,32,32,32,32,32,78,41,3,114,177,0,0,0, +- 114,169,0,0,0,218,11,101,120,101,99,95,109,111,100,117, +- 108,101,41,2,114,71,0,0,0,114,179,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,5,95, +- 101,120,101,99,98,4,0,0,115,2,0,0,0,0,7,122, +- 18,95,83,112,101,99,77,101,116,104,111,100,115,46,95,101, +- 120,101,99,99,2,0,0,0,0,0,0,0,4,0,0,0, +- 11,0,0,0,67,0,0,0,115,17,1,0,0,124,0,0, +- 106,0,0,106,1,0,125,2,0,116,2,0,106,3,0,131, +- 0,0,1,116,4,0,124,2,0,131,1,0,143,226,0,1, +- 116,5,0,106,6,0,106,7,0,124,2,0,131,1,0,124, +- 1,0,107,9,0,114,95,0,100,1,0,106,8,0,124,2, +- 0,131,1,0,125,3,0,116,9,0,124,3,0,100,2,0, +- 124,2,0,131,1,1,130,1,0,110,0,0,124,0,0,106, +- 0,0,106,10,0,100,3,0,107,8,0,114,181,0,124,0, +- 0,106,0,0,106,11,0,100,3,0,107,8,0,114,158,0, +- 116,9,0,100,4,0,100,2,0,124,0,0,106,0,0,106, +- 1,0,131,1,1,130,1,0,110,0,0,124,0,0,106,12, +- 0,124,1,0,100,5,0,100,6,0,131,1,1,1,124,1, +- 0,83,124,0,0,106,12,0,124,1,0,100,5,0,100,6, +- 0,131,1,1,1,116,13,0,124,0,0,106,0,0,106,10, +- 0,100,7,0,131,2,0,115,243,0,124,0,0,106,0,0, +- 106,10,0,106,14,0,124,2,0,131,1,0,1,110,13,0, +- 124,0,0,106,15,0,124,1,0,131,1,0,1,87,100,3, +- 0,81,88,116,5,0,106,6,0,124,2,0,25,83,41,8, +- 122,51,69,120,101,99,117,116,101,32,116,104,101,32,115,112, +- 101,99,32,105,110,32,97,110,32,101,120,105,115,116,105,110, +- 103,32,109,111,100,117,108,101,39,115,32,110,97,109,101,115, +- 112,97,99,101,46,122,30,109,111,100,117,108,101,32,123,33, +- 114,125,32,110,111,116,32,105,110,32,115,121,115,46,109,111, +- 100,117,108,101,115,114,67,0,0,0,78,122,14,109,105,115, +- 115,105,110,103,32,108,111,97,100,101,114,114,248,0,0,0, +- 84,114,1,1,0,0,41,16,114,177,0,0,0,114,67,0, +- 0,0,114,106,0,0,0,218,12,97,99,113,117,105,114,101, +- 95,108,111,99,107,114,103,0,0,0,114,7,0,0,0,114, +- 73,0,0,0,114,93,0,0,0,114,47,0,0,0,114,153, +- 0,0,0,114,169,0,0,0,114,220,0,0,0,114,254,0, +- 0,0,114,60,0,0,0,218,11,108,111,97,100,95,109,111, +- 100,117,108,101,114,2,1,0,0,41,4,114,71,0,0,0, +- 114,179,0,0,0,114,67,0,0,0,114,171,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,175, +- 0,0,0,108,4,0,0,115,32,0,0,0,0,2,12,1, +- 10,1,13,1,24,1,15,1,21,1,18,1,18,1,27,2, +- 19,1,4,1,19,1,21,4,22,2,19,1,122,17,95,83, +- 112,101,99,77,101,116,104,111,100,115,46,101,120,101,99,99, +- 1,0,0,0,0,0,0,0,3,0,0,0,27,0,0,0, +- 67,0,0,0,115,24,1,0,0,124,0,0,106,0,0,125, +- 1,0,124,1,0,106,1,0,106,2,0,124,1,0,106,3, +- 0,131,1,0,1,116,4,0,106,5,0,124,1,0,106,3, +- 0,25,125,2,0,116,6,0,124,2,0,100,1,0,100,0, +- 0,131,3,0,100,0,0,107,8,0,114,108,0,121,16,0, +- 124,1,0,106,1,0,124,2,0,95,7,0,87,113,108,0, +- 4,116,8,0,107,10,0,114,104,0,1,1,1,89,113,108, +- 0,88,110,0,0,116,6,0,124,2,0,100,2,0,100,0, +- 0,131,3,0,100,0,0,107,8,0,114,215,0,121,59,0, +- 124,2,0,106,9,0,124,2,0,95,10,0,116,11,0,124, +- 2,0,100,3,0,131,2,0,115,190,0,124,1,0,106,3, +- 0,106,12,0,100,4,0,131,1,0,100,5,0,25,124,2, +- 0,95,10,0,110,0,0,87,113,215,0,4,116,8,0,107, +- 10,0,114,211,0,1,1,1,89,113,215,0,88,110,0,0, +- 116,6,0,124,2,0,100,6,0,100,0,0,131,3,0,100, +- 0,0,107,8,0,114,20,1,121,13,0,124,1,0,124,2, +- 0,95,13,0,87,113,20,1,4,116,8,0,107,10,0,114, +- 16,1,1,1,1,89,113,20,1,88,110,0,0,124,2,0, +- 83,41,7,78,114,204,0,0,0,114,250,0,0,0,114,246, +- 0,0,0,114,116,0,0,0,114,84,0,0,0,114,208,0, +- 0,0,41,14,114,177,0,0,0,114,169,0,0,0,114,4, +- 1,0,0,114,67,0,0,0,114,7,0,0,0,114,73,0, +- 0,0,114,62,0,0,0,114,204,0,0,0,114,209,0,0, +- 0,114,57,0,0,0,114,250,0,0,0,114,60,0,0,0, +- 114,32,0,0,0,114,208,0,0,0,41,3,114,71,0,0, +- 0,114,177,0,0,0,114,179,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,218,25,95,108,111,97, +- 100,95,98,97,99,107,119,97,114,100,95,99,111,109,112,97, +- 116,105,98,108,101,132,4,0,0,115,42,0,0,0,0,4, +- 9,1,19,2,16,1,24,1,3,1,16,1,13,1,8,1, +- 24,1,3,4,12,1,15,1,32,1,13,1,8,1,24,1, +- 3,1,13,1,13,1,8,1,122,38,95,83,112,101,99,77, +- 101,116,104,111,100,115,46,95,108,111,97,100,95,98,97,99, +- 107,119,97,114,100,95,99,111,109,112,97,116,105,98,108,101, ++ 120,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, ++ 103,101,110,101,120,112,114,62,122,18,105,109,112,111,114,116, ++ 32,123,33,114,125,32,35,32,123,33,114,125,70,41,9,114, ++ 215,0,0,0,114,79,0,0,0,114,8,0,0,0,114,74, ++ 0,0,0,114,68,0,0,0,114,80,0,0,0,114,153,0, ++ 0,0,114,170,0,0,0,114,216,0,0,0,41,3,114,72, ++ 0,0,0,114,81,0,0,0,114,178,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,82,0,0, ++ 0,227,2,0,0,115,18,0,0,0,0,1,3,1,9,1, ++ 25,1,3,1,17,1,13,1,8,2,26,2,122,26,95,105, ++ 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, ++ 95,95,101,120,105,116,95,95,78,41,6,114,58,0,0,0, ++ 114,57,0,0,0,114,59,0,0,0,114,73,0,0,0,114, ++ 76,0,0,0,114,82,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,213,0, ++ 0,0,214,2,0,0,115,6,0,0,0,12,2,12,4,12, ++ 7,114,213,0,0,0,99,0,0,0,0,0,0,0,0,0, ++ 0,0,0,8,0,0,0,64,0,0,0,115,172,0,0,0, ++ 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, ++ 3,0,100,2,0,100,3,0,100,4,0,100,3,0,100,5, ++ 0,100,3,0,100,6,0,100,7,0,132,0,3,90,4,0, ++ 100,8,0,100,9,0,132,0,0,90,5,0,100,10,0,100, ++ 11,0,132,0,0,90,6,0,101,7,0,100,12,0,100,13, ++ 0,132,0,0,131,1,0,90,8,0,101,8,0,106,9,0, ++ 100,14,0,100,13,0,132,0,0,131,1,0,90,8,0,101, ++ 7,0,100,15,0,100,16,0,132,0,0,131,1,0,90,10, ++ 0,101,7,0,100,17,0,100,18,0,132,0,0,131,1,0, ++ 90,11,0,101,11,0,106,9,0,100,19,0,100,18,0,132, ++ 0,0,131,1,0,90,11,0,100,3,0,83,41,20,218,10, ++ 77,111,100,117,108,101,83,112,101,99,97,208,5,0,0,84, ++ 104,101,32,115,112,101,99,105,102,105,99,97,116,105,111,110, ++ 32,102,111,114,32,97,32,109,111,100,117,108,101,44,32,117, ++ 115,101,100,32,102,111,114,32,108,111,97,100,105,110,103,46, ++ 10,10,32,32,32,32,65,32,109,111,100,117,108,101,39,115, ++ 32,115,112,101,99,32,105,115,32,116,104,101,32,115,111,117, ++ 114,99,101,32,102,111,114,32,105,110,102,111,114,109,97,116, ++ 105,111,110,32,97,98,111,117,116,32,116,104,101,32,109,111, ++ 100,117,108,101,46,32,32,70,111,114,10,32,32,32,32,100, ++ 97,116,97,32,97,115,115,111,99,105,97,116,101,100,32,119, ++ 105,116,104,32,116,104,101,32,109,111,100,117,108,101,44,32, ++ 105,110,99,108,117,100,105,110,103,32,115,111,117,114,99,101, ++ 44,32,117,115,101,32,116,104,101,32,115,112,101,99,39,115, ++ 10,32,32,32,32,108,111,97,100,101,114,46,10,10,32,32, ++ 32,32,96,110,97,109,101,96,32,105,115,32,116,104,101,32, ++ 97,98,115,111,108,117,116,101,32,110,97,109,101,32,111,102, ++ 32,116,104,101,32,109,111,100,117,108,101,46,32,32,96,108, ++ 111,97,100,101,114,96,32,105,115,32,116,104,101,32,108,111, ++ 97,100,101,114,10,32,32,32,32,116,111,32,117,115,101,32, ++ 119,104,101,110,32,108,111,97,100,105,110,103,32,116,104,101, ++ 32,109,111,100,117,108,101,46,32,32,96,112,97,114,101,110, ++ 116,96,32,105,115,32,116,104,101,32,110,97,109,101,32,111, ++ 102,32,116,104,101,10,32,32,32,32,112,97,99,107,97,103, ++ 101,32,116,104,101,32,109,111,100,117,108,101,32,105,115,32, ++ 105,110,46,32,32,84,104,101,32,112,97,114,101,110,116,32, ++ 105,115,32,100,101,114,105,118,101,100,32,102,114,111,109,32, ++ 116,104,101,32,110,97,109,101,46,10,10,32,32,32,32,96, ++ 105,115,95,112,97,99,107,97,103,101,96,32,100,101,116,101, ++ 114,109,105,110,101,115,32,105,102,32,116,104,101,32,109,111, ++ 100,117,108,101,32,105,115,32,99,111,110,115,105,100,101,114, ++ 101,100,32,97,32,112,97,99,107,97,103,101,32,111,114,10, ++ 32,32,32,32,110,111,116,46,32,32,79,110,32,109,111,100, ++ 117,108,101,115,32,116,104,105,115,32,105,115,32,114,101,102, ++ 108,101,99,116,101,100,32,98,121,32,116,104,101,32,96,95, ++ 95,112,97,116,104,95,95,96,32,97,116,116,114,105,98,117, ++ 116,101,46,10,10,32,32,32,32,96,111,114,105,103,105,110, ++ 96,32,105,115,32,116,104,101,32,115,112,101,99,105,102,105, ++ 99,32,108,111,99,97,116,105,111,110,32,117,115,101,100,32, ++ 98,121,32,116,104,101,32,108,111,97,100,101,114,32,102,114, ++ 111,109,32,119,104,105,99,104,32,116,111,10,32,32,32,32, ++ 108,111,97,100,32,116,104,101,32,109,111,100,117,108,101,44, ++ 32,105,102,32,116,104,97,116,32,105,110,102,111,114,109,97, ++ 116,105,111,110,32,105,115,32,97,118,97,105,108,97,98,108, ++ 101,46,32,32,87,104,101,110,32,102,105,108,101,110,97,109, ++ 101,32,105,115,10,32,32,32,32,115,101,116,44,32,111,114, ++ 105,103,105,110,32,119,105,108,108,32,109,97,116,99,104,46, ++ 10,10,32,32,32,32,96,104,97,115,95,108,111,99,97,116, ++ 105,111,110,96,32,105,110,100,105,99,97,116,101,115,32,116, ++ 104,97,116,32,97,32,115,112,101,99,39,115,32,34,111,114, ++ 105,103,105,110,34,32,114,101,102,108,101,99,116,115,32,97, ++ 32,108,111,99,97,116,105,111,110,46,10,32,32,32,32,87, ++ 104,101,110,32,116,104,105,115,32,105,115,32,84,114,117,101, ++ 44,32,96,95,95,102,105,108,101,95,95,96,32,97,116,116, ++ 114,105,98,117,116,101,32,111,102,32,116,104,101,32,109,111, ++ 100,117,108,101,32,105,115,32,115,101,116,46,10,10,32,32, ++ 32,32,96,99,97,99,104,101,100,96,32,105,115,32,116,104, ++ 101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104, ++ 101,32,99,97,99,104,101,100,32,98,121,116,101,99,111,100, ++ 101,32,102,105,108,101,44,32,105,102,32,97,110,121,46,32, ++ 32,73,116,10,32,32,32,32,99,111,114,114,101,115,112,111, ++ 110,100,115,32,116,111,32,116,104,101,32,96,95,95,99,97, ++ 99,104,101,100,95,95,96,32,97,116,116,114,105,98,117,116, ++ 101,46,10,10,32,32,32,32,96,115,117,98,109,111,100,117, ++ 108,101,95,115,101,97,114,99,104,95,108,111,99,97,116,105, ++ 111,110,115,96,32,105,115,32,116,104,101,32,115,101,113,117, ++ 101,110,99,101,32,111,102,32,112,97,116,104,32,101,110,116, ++ 114,105,101,115,32,116,111,10,32,32,32,32,115,101,97,114, ++ 99,104,32,119,104,101,110,32,105,109,112,111,114,116,105,110, ++ 103,32,115,117,98,109,111,100,117,108,101,115,46,32,32,73, ++ 102,32,115,101,116,44,32,105,115,95,112,97,99,107,97,103, ++ 101,32,115,104,111,117,108,100,32,98,101,10,32,32,32,32, ++ 84,114,117,101,45,45,97,110,100,32,70,97,108,115,101,32, ++ 111,116,104,101,114,119,105,115,101,46,10,10,32,32,32,32, ++ 80,97,99,107,97,103,101,115,32,97,114,101,32,115,105,109, ++ 112,108,121,32,109,111,100,117,108,101,115,32,116,104,97,116, ++ 32,40,109,97,121,41,32,104,97,118,101,32,115,117,98,109, ++ 111,100,117,108,101,115,46,32,32,73,102,32,97,32,115,112, ++ 101,99,10,32,32,32,32,104,97,115,32,97,32,110,111,110, ++ 45,78,111,110,101,32,118,97,108,117,101,32,105,110,32,96, ++ 115,117,98,109,111,100,117,108,101,95,115,101,97,114,99,104, ++ 95,108,111,99,97,116,105,111,110,115,96,44,32,116,104,101, ++ 32,105,109,112,111,114,116,10,32,32,32,32,115,121,115,116, ++ 101,109,32,119,105,108,108,32,99,111,110,115,105,100,101,114, ++ 32,109,111,100,117,108,101,115,32,108,111,97,100,101,100,32, ++ 102,114,111,109,32,116,104,101,32,115,112,101,99,32,97,115, ++ 32,112,97,99,107,97,103,101,115,46,10,10,32,32,32,32, ++ 79,110,108,121,32,102,105,110,100,101,114,115,32,40,115,101, ++ 101,32,105,109,112,111,114,116,108,105,98,46,97,98,99,46, ++ 77,101,116,97,80,97,116,104,70,105,110,100,101,114,32,97, ++ 110,100,10,32,32,32,32,105,109,112,111,114,116,108,105,98, ++ 46,97,98,99,46,80,97,116,104,69,110,116,114,121,70,105, ++ 110,100,101,114,41,32,115,104,111,117,108,100,32,109,111,100, ++ 105,102,121,32,77,111,100,117,108,101,83,112,101,99,32,105, ++ 110,115,116,97,110,99,101,115,46,10,10,32,32,32,32,218, ++ 6,111,114,105,103,105,110,78,218,12,108,111,97,100,101,114, ++ 95,115,116,97,116,101,218,10,105,115,95,112,97,99,107,97, ++ 103,101,99,3,0,0,0,3,0,0,0,6,0,0,0,2, ++ 0,0,0,67,0,0,0,115,79,0,0,0,124,1,0,124, ++ 0,0,95,0,0,124,2,0,124,0,0,95,1,0,124,3, ++ 0,124,0,0,95,2,0,124,4,0,124,0,0,95,3,0, ++ 124,5,0,114,48,0,103,0,0,110,3,0,100,0,0,124, ++ 0,0,95,4,0,100,1,0,124,0,0,95,5,0,100,0, ++ 0,124,0,0,95,6,0,100,0,0,83,41,2,78,70,41, ++ 7,114,68,0,0,0,114,170,0,0,0,114,218,0,0,0, ++ 114,219,0,0,0,218,26,115,117,98,109,111,100,117,108,101, + 95,115,101,97,114,99,104,95,108,111,99,97,116,105,111,110, -+ 115,99,2,0,0,0,2,0,0,0,9,0,0,0,19,0, -+ 0,0,67,0,0,0,115,89,1,0,0,124,1,0,100,1, -+ 0,107,8,0,114,73,0,100,2,0,125,1,0,116,0,0, -+ 124,2,0,100,3,0,131,2,0,114,73,0,121,19,0,124, -+ 2,0,106,1,0,124,0,0,131,1,0,125,1,0,87,110, -+ 18,0,4,116,2,0,107,10,0,114,72,0,1,1,1,89, -+ 110,1,0,88,116,3,0,106,4,0,124,0,0,124,2,0, -+ 100,4,0,124,1,0,131,2,1,125,4,0,100,5,0,124, -+ 4,0,95,5,0,124,2,0,100,1,0,107,8,0,114,194, -+ 0,120,73,0,116,6,0,131,0,0,68,93,58,0,92,2, -+ 0,125,5,0,125,6,0,124,1,0,106,7,0,116,8,0, -+ 124,6,0,131,1,0,131,1,0,114,128,0,124,5,0,124, -+ 0,0,124,1,0,131,2,0,125,2,0,124,2,0,124,4, -+ 0,95,9,0,80,113,128,0,87,100,1,0,83,124,3,0, -+ 116,10,0,107,8,0,114,23,1,116,0,0,124,2,0,100, -+ 6,0,131,2,0,114,32,1,121,19,0,124,2,0,106,11, -+ 0,124,0,0,131,1,0,125,7,0,87,110,18,0,4,116, -+ 2,0,107,10,0,114,4,1,1,1,1,89,113,32,1,88, -+ 124,7,0,114,32,1,103,0,0,124,4,0,95,12,0,110, -+ 9,0,124,3,0,124,4,0,95,12,0,124,4,0,106,12, -+ 0,103,0,0,107,2,0,114,85,1,124,1,0,114,85,1, -+ 116,13,0,124,1,0,131,1,0,100,7,0,25,125,8,0, -+ 124,4,0,106,12,0,106,14,0,124,8,0,131,1,0,1, -+ 124,4,0,83,41,8,97,61,1,0,0,82,101,116,117,114, -+ 110,32,97,32,109,111,100,117,108,101,32,115,112,101,99,32, -+ 98,97,115,101,100,32,111,110,32,97,32,102,105,108,101,32, -+ 108,111,99,97,116,105,111,110,46,10,10,32,32,32,32,84, -+ 111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32, -+ 116,104,101,32,109,111,100,117,108,101,32,105,115,32,97,32, -+ 112,97,99,107,97,103,101,44,32,115,101,116,10,32,32,32, -+ 32,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, -+ 104,95,108,111,99,97,116,105,111,110,115,32,116,111,32,97, -+ 32,108,105,115,116,32,111,102,32,100,105,114,101,99,116,111, -+ 114,121,32,112,97,116,104,115,46,32,32,65,110,10,32,32, -+ 32,32,101,109,112,116,121,32,108,105,115,116,32,105,115,32, -+ 115,117,102,102,105,99,105,101,110,116,44,32,116,104,111,117, -+ 103,104,32,105,116,115,32,110,111,116,32,111,116,104,101,114, -+ 119,105,115,101,32,117,115,101,102,117,108,32,116,111,32,116, -+ 104,101,10,32,32,32,32,105,109,112,111,114,116,32,115,121, -+ 115,116,101,109,46,10,10,32,32,32,32,84,104,101,32,108, -+ 111,97,100,101,114,32,109,117,115,116,32,116,97,107,101,32, -+ 97,32,115,112,101,99,32,97,115,32,105,116,115,32,111,110, -+ 108,121,32,95,95,105,110,105,116,95,95,40,41,32,97,114, -+ 103,46,10,10,32,32,32,32,78,122,9,60,117,110,107,110, -+ 111,119,110,62,218,12,103,101,116,95,102,105,108,101,110,97, -+ 109,101,218,6,111,114,105,103,105,110,84,218,10,105,115,95, -+ 112,97,99,107,97,103,101,114,60,0,0,0,41,15,114,116, -+ 0,0,0,114,158,0,0,0,114,108,0,0,0,114,122,0, -+ 0,0,218,10,77,111,100,117,108,101,83,112,101,99,90,13, -+ 95,115,101,116,95,102,105,108,101,97,116,116,114,218,27,95, -+ 103,101,116,95,115,117,112,112,111,114,116,101,100,95,102,105, -+ 108,101,95,108,111,97,100,101,114,115,114,93,0,0,0,114, -+ 94,0,0,0,114,128,0,0,0,218,9,95,80,79,80,85, -+ 76,65,84,69,114,160,0,0,0,114,157,0,0,0,114,39, -+ 0,0,0,218,6,97,112,112,101,110,100,41,9,114,107,0, -+ 0,0,90,8,108,111,99,97,116,105,111,110,114,128,0,0, -+ 0,114,157,0,0,0,218,4,115,112,101,99,218,12,108,111, -+ 97,100,101,114,95,99,108,97,115,115,218,8,115,117,102,102, -+ 105,120,101,115,114,160,0,0,0,90,7,100,105,114,110,97, -+ 109,101,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,218,23,115,112,101,99,95,102,114,111,109,95,102,105,108, -+ 101,95,108,111,99,97,116,105,111,110,254,1,0,0,115,60, -+ 0,0,0,0,12,12,4,6,1,15,2,3,1,19,1,13, -+ 1,5,8,24,1,9,3,12,1,22,1,21,1,15,1,9, -+ 1,5,2,4,3,12,2,15,1,3,1,19,1,13,1,5, -+ 2,6,1,12,2,9,1,15,1,6,1,16,1,16,2,114, -+ 168,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, -+ 0,5,0,0,0,64,0,0,0,115,121,0,0,0,101,0, -+ 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, -+ 100,2,0,90,4,0,100,3,0,90,5,0,100,4,0,90, -+ 6,0,101,7,0,100,5,0,100,6,0,132,0,0,131,1, -+ 0,90,8,0,101,7,0,100,7,0,100,8,0,132,0,0, -+ 131,1,0,90,9,0,101,7,0,100,9,0,100,9,0,100, -+ 10,0,100,11,0,132,2,0,131,1,0,90,10,0,101,7, -+ 0,100,9,0,100,12,0,100,13,0,132,1,0,131,1,0, -+ 90,11,0,100,9,0,83,41,14,218,21,87,105,110,100,111, -+ 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, -+ 122,62,77,101,116,97,32,112,97,116,104,32,102,105,110,100, -+ 101,114,32,102,111,114,32,109,111,100,117,108,101,115,32,100, -+ 101,99,108,97,114,101,100,32,105,110,32,116,104,101,32,87, -+ 105,110,100,111,119,115,32,114,101,103,105,115,116,114,121,46, -+ 122,59,83,111,102,116,119,97,114,101,92,80,121,116,104,111, -+ 110,92,80,121,116,104,111,110,67,111,114,101,92,123,115,121, -+ 115,95,118,101,114,115,105,111,110,125,92,77,111,100,117,108, -+ 101,115,92,123,102,117,108,108,110,97,109,101,125,122,65,83, -+ 111,102,116,119,97,114,101,92,80,121,116,104,111,110,92,80, -+ 121,116,104,111,110,67,111,114,101,92,123,115,121,115,95,118, -+ 101,114,115,105,111,110,125,92,77,111,100,117,108,101,115,92, -+ 123,102,117,108,108,110,97,109,101,125,92,68,101,98,117,103, -+ 70,99,2,0,0,0,0,0,0,0,2,0,0,0,11,0, -+ 0,0,67,0,0,0,115,67,0,0,0,121,23,0,116,0, -+ 0,106,1,0,116,0,0,106,2,0,124,1,0,131,2,0, -+ 83,87,110,37,0,4,116,3,0,107,10,0,114,62,0,1, -+ 1,1,116,0,0,106,1,0,116,0,0,106,4,0,124,1, -+ 0,131,2,0,83,89,110,1,0,88,100,0,0,83,41,1, -+ 78,41,5,218,7,95,119,105,110,114,101,103,90,7,79,112, -+ 101,110,75,101,121,90,17,72,75,69,89,95,67,85,82,82, -+ 69,78,84,95,85,83,69,82,114,41,0,0,0,90,18,72, -+ 75,69,89,95,76,79,67,65,76,95,77,65,67,72,73,78, -+ 69,41,2,218,3,99,108,115,218,3,107,101,121,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,14,95,111, -+ 112,101,110,95,114,101,103,105,115,116,114,121,76,2,0,0, -+ 115,8,0,0,0,0,2,3,1,23,1,13,1,122,36,87, -+ 105,110,100,111,119,115,82,101,103,105,115,116,114,121,70,105, -+ 110,100,101,114,46,95,111,112,101,110,95,114,101,103,105,115, -+ 116,114,121,99,2,0,0,0,0,0,0,0,6,0,0,0, -+ 16,0,0,0,67,0,0,0,115,143,0,0,0,124,0,0, -+ 106,0,0,114,21,0,124,0,0,106,1,0,125,2,0,110, -+ 9,0,124,0,0,106,2,0,125,2,0,124,2,0,106,3, -+ 0,100,1,0,124,1,0,100,2,0,116,4,0,106,5,0, -+ 100,0,0,100,3,0,133,2,0,25,131,0,2,125,3,0, -+ 121,47,0,124,0,0,106,6,0,124,3,0,131,1,0,143, -+ 25,0,125,4,0,116,7,0,106,8,0,124,4,0,100,4, -+ 0,131,2,0,125,5,0,87,100,0,0,81,82,88,87,110, -+ 22,0,4,116,9,0,107,10,0,114,138,0,1,1,1,100, ++ 115,218,13,95,115,101,116,95,102,105,108,101,97,116,116,114, ++ 218,7,95,99,97,99,104,101,100,41,6,114,72,0,0,0, ++ 114,68,0,0,0,114,170,0,0,0,114,218,0,0,0,114, ++ 219,0,0,0,114,220,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,73,0,0,0,22,3,0, ++ 0,115,14,0,0,0,0,2,9,1,9,1,9,1,9,1, ++ 21,3,9,1,122,19,77,111,100,117,108,101,83,112,101,99, ++ 46,95,95,105,110,105,116,95,95,99,1,0,0,0,0,0, ++ 0,0,2,0,0,0,4,0,0,0,67,0,0,0,115,153, ++ 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, ++ 1,0,100,2,0,106,0,0,124,0,0,106,2,0,131,1, ++ 0,103,2,0,125,1,0,124,0,0,106,3,0,100,0,0, ++ 107,9,0,114,79,0,124,1,0,106,4,0,100,3,0,106, ++ 0,0,124,0,0,106,3,0,131,1,0,131,1,0,1,110, ++ 0,0,124,0,0,106,5,0,100,0,0,107,9,0,114,122, ++ 0,124,1,0,106,4,0,100,4,0,106,0,0,124,0,0, ++ 106,5,0,131,1,0,131,1,0,1,110,0,0,100,5,0, ++ 106,0,0,124,0,0,106,6,0,106,7,0,100,6,0,106, ++ 8,0,124,1,0,131,1,0,131,2,0,83,41,7,78,122, ++ 9,110,97,109,101,61,123,33,114,125,122,11,108,111,97,100, ++ 101,114,61,123,33,114,125,122,11,111,114,105,103,105,110,61, ++ 123,33,114,125,122,29,115,117,98,109,111,100,117,108,101,95, ++ 115,101,97,114,99,104,95,108,111,99,97,116,105,111,110,115, ++ 61,123,125,122,6,123,125,40,123,125,41,122,2,44,32,41, ++ 9,114,48,0,0,0,114,68,0,0,0,114,170,0,0,0, ++ 114,218,0,0,0,218,6,97,112,112,101,110,100,114,221,0, ++ 0,0,218,9,95,95,99,108,97,115,115,95,95,114,58,0, ++ 0,0,114,27,0,0,0,41,2,114,72,0,0,0,114,81, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,102,0,0,0,34,3,0,0,115,16,0,0,0, ++ 0,1,15,1,21,1,15,1,28,1,15,1,6,1,22,1, ++ 122,19,77,111,100,117,108,101,83,112,101,99,46,95,95,114, ++ 101,112,114,95,95,99,2,0,0,0,0,0,0,0,3,0, ++ 0,0,11,0,0,0,67,0,0,0,115,145,0,0,0,124, ++ 0,0,106,0,0,125,2,0,121,107,0,124,0,0,106,1, ++ 0,124,1,0,106,1,0,107,2,0,111,114,0,124,0,0, ++ 106,2,0,124,1,0,106,2,0,107,2,0,111,114,0,124, ++ 0,0,106,3,0,124,1,0,106,3,0,107,2,0,111,114, ++ 0,124,2,0,124,1,0,106,0,0,107,2,0,111,114,0, ++ 124,0,0,106,4,0,124,1,0,106,4,0,107,2,0,111, ++ 114,0,124,0,0,106,5,0,124,1,0,106,5,0,107,2, ++ 0,83,87,110,22,0,4,116,6,0,107,10,0,114,140,0, ++ 1,1,1,100,1,0,83,89,110,1,0,88,100,0,0,83, ++ 41,2,78,70,41,7,114,221,0,0,0,114,68,0,0,0, ++ 114,170,0,0,0,114,218,0,0,0,218,6,99,97,99,104, ++ 101,100,218,12,104,97,115,95,108,111,99,97,116,105,111,110, ++ 114,210,0,0,0,41,3,114,72,0,0,0,218,5,111,116, ++ 104,101,114,218,4,115,109,115,108,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,6,95,95,101,113,95,95, ++ 44,3,0,0,115,20,0,0,0,0,1,9,1,3,1,18, ++ 1,18,1,18,1,15,1,18,1,20,1,13,1,122,17,77, ++ 111,100,117,108,101,83,112,101,99,46,95,95,101,113,95,95, + 99,1,0,0,0,0,0,0,0,2,0,0,0,11,0,0, +- 0,67,0,0,0,115,179,0,0,0,124,0,0,106,0,0, +- 106,1,0,100,0,0,107,9,0,114,52,0,116,2,0,124, +- 0,0,106,0,0,106,1,0,100,1,0,131,2,0,115,52, +- 0,124,0,0,106,3,0,131,0,0,83,110,0,0,124,0, +- 0,106,4,0,131,0,0,125,1,0,116,5,0,124,1,0, +- 131,1,0,143,84,0,1,124,0,0,106,0,0,106,1,0, +- 100,0,0,107,8,0,114,143,0,124,0,0,106,0,0,106, +- 6,0,100,0,0,107,8,0,114,156,0,116,7,0,100,2, +- 0,100,3,0,124,0,0,106,0,0,106,8,0,131,1,1, +- 130,1,0,113,156,0,110,13,0,124,0,0,106,9,0,124, +- 1,0,131,1,0,1,87,100,0,0,81,88,116,10,0,106, +- 11,0,124,0,0,106,0,0,106,8,0,25,83,41,4,78, +- 114,1,1,0,0,122,14,109,105,115,115,105,110,103,32,108, +- 111,97,100,101,114,114,67,0,0,0,41,12,114,177,0,0, +- 0,114,169,0,0,0,114,60,0,0,0,114,5,1,0,0, +- 114,0,1,0,0,114,212,0,0,0,114,220,0,0,0,114, +- 153,0,0,0,114,67,0,0,0,114,2,1,0,0,114,7, +- 0,0,0,114,73,0,0,0,41,2,114,71,0,0,0,114, +- 179,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,14,95,108,111,97,100,95,117,110,108,111,99, +- 107,101,100,162,4,0,0,115,20,0,0,0,0,2,18,2, +- 21,1,13,2,12,1,13,1,18,1,18,1,30,3,19,5, +- 122,27,95,83,112,101,99,77,101,116,104,111,100,115,46,95, +- 108,111,97,100,95,117,110,108,111,99,107,101,100,99,1,0, +- 0,0,0,0,0,0,1,0,0,0,8,0,0,0,67,0, +- 0,0,115,49,0,0,0,116,0,0,106,1,0,131,0,0, +- 1,116,2,0,124,0,0,106,3,0,106,4,0,131,1,0, +- 143,15,0,1,124,0,0,106,5,0,131,0,0,83,87,100, +- 1,0,81,88,100,1,0,83,41,2,122,207,82,101,116,117, +- 114,110,32,97,32,110,101,119,32,109,111,100,117,108,101,32, +- 111,98,106,101,99,116,44,32,108,111,97,100,101,100,32,98, +- 121,32,116,104,101,32,115,112,101,99,39,115,32,108,111,97, +- 100,101,114,46,10,10,32,32,32,32,32,32,32,32,84,104, +- 101,32,109,111,100,117,108,101,32,105,115,32,110,111,116,32, +- 97,100,100,101,100,32,116,111,32,105,116,115,32,112,97,114, +- 101,110,116,46,10,10,32,32,32,32,32,32,32,32,73,102, +- 32,97,32,109,111,100,117,108,101,32,105,115,32,97,108,114, +- 101,97,100,121,32,105,110,32,115,121,115,46,109,111,100,117, +- 108,101,115,44,32,116,104,97,116,32,101,120,105,115,116,105, +- 110,103,32,109,111,100,117,108,101,32,103,101,116,115,10,32, +- 32,32,32,32,32,32,32,99,108,111,98,98,101,114,101,100, +- 46,10,10,32,32,32,32,32,32,32,32,78,41,6,114,106, +- 0,0,0,114,3,1,0,0,114,103,0,0,0,114,177,0, +- 0,0,114,67,0,0,0,114,6,1,0,0,41,1,114,71, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,176,0,0,0,185,4,0,0,115,6,0,0,0, +- 0,9,10,1,19,1,122,17,95,83,112,101,99,77,101,116, +- 104,111,100,115,46,108,111,97,100,78,41,13,114,57,0,0, +- 0,114,56,0,0,0,114,58,0,0,0,114,59,0,0,0, +- 114,72,0,0,0,114,205,0,0,0,114,254,0,0,0,114, +- 0,1,0,0,114,2,1,0,0,114,175,0,0,0,114,5, +- 1,0,0,114,6,1,0,0,114,176,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,174,0,0,0,225,3,0,0,115,20,0,0,0,12, +- 3,6,4,12,3,12,16,24,80,12,23,12,10,12,24,12, +- 30,12,23,114,174,0,0,0,99,4,0,0,0,0,0,0, +- 0,6,0,0,0,11,0,0,0,67,0,0,0,115,201,0, +- 0,0,124,0,0,106,0,0,100,1,0,131,1,0,125,4, +- 0,124,0,0,106,0,0,100,2,0,131,1,0,125,5,0, +- 124,4,0,115,102,0,124,5,0,114,54,0,124,5,0,106, +- 1,0,125,4,0,113,102,0,124,2,0,124,3,0,107,2, +- 0,114,84,0,116,2,0,124,1,0,124,2,0,131,2,0, +- 125,4,0,113,102,0,116,3,0,124,1,0,124,2,0,131, +- 2,0,125,4,0,110,0,0,124,5,0,115,132,0,116,4, +- 0,124,1,0,124,2,0,100,3,0,124,4,0,131,2,1, +- 125,5,0,110,0,0,121,44,0,124,5,0,124,0,0,100, +- 2,0,60,124,4,0,124,0,0,100,1,0,60,124,2,0, +- 124,0,0,100,4,0,60,124,3,0,124,0,0,100,5,0, +- 60,87,110,18,0,4,116,5,0,107,10,0,114,196,0,1, +- 1,1,89,110,1,0,88,100,0,0,83,41,6,78,114,204, +- 0,0,0,114,208,0,0,0,114,169,0,0,0,114,210,0, +- 0,0,114,244,0,0,0,41,6,114,93,0,0,0,114,169, +- 0,0,0,218,20,83,111,117,114,99,101,108,101,115,115,70, +- 105,108,101,76,111,97,100,101,114,218,16,83,111,117,114,99, +- 101,70,105,108,101,76,111,97,100,101,114,114,239,0,0,0, +- 114,207,0,0,0,41,6,90,2,110,115,114,67,0,0,0, +- 90,8,112,97,116,104,110,97,109,101,90,9,99,112,97,116, +- 104,110,97,109,101,114,169,0,0,0,114,177,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,14, +- 95,102,105,120,95,117,112,95,109,111,100,117,108,101,199,4, +- 0,0,115,34,0,0,0,0,2,15,1,15,1,6,1,6, +- 1,12,1,12,1,18,2,18,1,6,1,24,1,3,1,10, +- 1,10,1,10,1,14,1,13,2,114,9,1,0,0,99,0, +- 0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,64, +- 0,0,0,115,181,0,0,0,101,0,0,90,1,0,100,0, +- 0,90,2,0,100,1,0,90,3,0,101,4,0,100,2,0, +- 100,3,0,132,0,0,131,1,0,90,5,0,101,6,0,100, +- 4,0,100,4,0,100,5,0,100,6,0,132,2,0,131,1, +- 0,90,7,0,101,6,0,100,4,0,100,7,0,100,8,0, +- 132,1,0,131,1,0,90,8,0,101,6,0,101,9,0,100, +- 9,0,100,10,0,132,0,0,131,1,0,131,1,0,90,10, +- 0,101,6,0,101,9,0,100,11,0,100,12,0,132,0,0, +- 131,1,0,131,1,0,90,11,0,101,6,0,101,9,0,100, +- 13,0,100,14,0,132,0,0,131,1,0,131,1,0,90,12, +- 0,101,6,0,101,9,0,100,15,0,100,16,0,132,0,0, +- 131,1,0,131,1,0,90,13,0,100,4,0,83,41,17,218, +- 15,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, +- 122,144,77,101,116,97,32,112,97,116,104,32,105,109,112,111, +- 114,116,32,102,111,114,32,98,117,105,108,116,45,105,110,32, +- 109,111,100,117,108,101,115,46,10,10,32,32,32,32,65,108, +- 108,32,109,101,116,104,111,100,115,32,97,114,101,32,101,105, +- 116,104,101,114,32,99,108,97,115,115,32,111,114,32,115,116, +- 97,116,105,99,32,109,101,116,104,111,100,115,32,116,111,32, +- 97,118,111,105,100,32,116,104,101,32,110,101,101,100,32,116, +- 111,10,32,32,32,32,105,110,115,116,97,110,116,105,97,116, +- 101,32,116,104,101,32,99,108,97,115,115,46,10,10,32,32, +- 32,32,99,1,0,0,0,0,0,0,0,1,0,0,0,2, +- 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, +- 0,0,124,0,0,106,1,0,131,1,0,83,41,2,122,115, +- 82,101,116,117,114,110,32,114,101,112,114,32,102,111,114,32, +- 116,104,101,32,109,111,100,117,108,101,46,10,10,32,32,32, +- 32,32,32,32,32,84,104,101,32,109,101,116,104,111,100,32, +- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, +- 84,104,101,32,105,109,112,111,114,116,32,109,97,99,104,105, +- 110,101,114,121,32,100,111,101,115,32,116,104,101,32,106,111, +- 98,32,105,116,115,101,108,102,46,10,10,32,32,32,32,32, +- 32,32,32,122,24,60,109,111,100,117,108,101,32,123,33,114, +- 125,32,40,98,117,105,108,116,45,105,110,41,62,41,2,114, +- 47,0,0,0,114,57,0,0,0,41,1,114,179,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 205,0,0,0,233,4,0,0,115,2,0,0,0,0,7,122, +- 27,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, +- 46,109,111,100,117,108,101,95,114,101,112,114,78,99,4,0, +- 0,0,0,0,0,0,4,0,0,0,5,0,0,0,67,0, +- 0,0,115,58,0,0,0,124,2,0,100,0,0,107,9,0, +- 114,16,0,100,0,0,83,116,0,0,106,1,0,124,1,0, +- 131,1,0,114,50,0,116,2,0,124,1,0,124,0,0,100, +- 1,0,100,2,0,131,2,1,83,100,0,0,83,100,0,0, +- 83,41,3,78,114,217,0,0,0,122,8,98,117,105,108,116, +- 45,105,110,41,3,114,106,0,0,0,90,10,105,115,95,98, +- 117,105,108,116,105,110,114,173,0,0,0,41,4,218,3,99, +- 108,115,114,158,0,0,0,114,35,0,0,0,218,6,116,97, +- 114,103,101,116,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,9,102,105,110,100,95,115,112,101,99,242,4, +- 0,0,115,10,0,0,0,0,2,12,1,4,1,15,1,19, +- 2,122,25,66,117,105,108,116,105,110,73,109,112,111,114,116, +- 101,114,46,102,105,110,100,95,115,112,101,99,99,3,0,0, +- 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, +- 0,115,41,0,0,0,124,0,0,106,0,0,124,1,0,124, +- 2,0,131,2,0,125,3,0,124,3,0,100,1,0,107,9, +- 0,114,37,0,124,3,0,106,1,0,83,100,1,0,83,41, +- 2,122,175,70,105,110,100,32,116,104,101,32,98,117,105,108, +- 116,45,105,110,32,109,111,100,117,108,101,46,10,10,32,32, +- 32,32,32,32,32,32,73,102,32,39,112,97,116,104,39,32, +- 105,115,32,101,118,101,114,32,115,112,101,99,105,102,105,101, +- 100,32,116,104,101,110,32,116,104,101,32,115,101,97,114,99, +- 104,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32, +- 97,32,102,97,105,108,117,114,101,46,10,10,32,32,32,32, +- 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, +- 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, +- 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, +- 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, +- 32,32,78,41,2,114,13,1,0,0,114,169,0,0,0,41, +- 4,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, +- 114,177,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,11,102,105,110,100,95,109,111,100,117,108, +- 101,251,4,0,0,115,4,0,0,0,0,9,18,1,122,27, +- 66,117,105,108,116,105,110,73,109,112,111,114,116,101,114,46, +- 102,105,110,100,95,109,111,100,117,108,101,99,2,0,0,0, +- 0,0,0,0,3,0,0,0,10,0,0,0,67,0,0,0, +- 115,59,0,0,0,116,0,0,124,1,0,131,1,0,143,23, +- 0,1,116,1,0,116,2,0,106,3,0,124,1,0,131,2, +- 0,125,2,0,87,100,1,0,81,88,124,0,0,124,2,0, +- 95,4,0,100,2,0,124,2,0,95,5,0,124,2,0,83, +- 41,3,122,23,76,111,97,100,32,97,32,98,117,105,108,116, +- 45,105,110,32,109,111,100,117,108,101,46,78,114,30,0,0, +- 0,41,6,114,69,0,0,0,114,114,0,0,0,114,106,0, +- 0,0,90,12,105,110,105,116,95,98,117,105,108,116,105,110, +- 114,204,0,0,0,114,250,0,0,0,41,3,114,11,1,0, +- 0,114,158,0,0,0,114,179,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,4,1,0,0,7, +- 5,0,0,115,10,0,0,0,0,6,13,1,24,1,9,1, +- 9,1,122,27,66,117,105,108,116,105,110,73,109,112,111,114, +- 116,101,114,46,108,111,97,100,95,109,111,100,117,108,101,99, ++ 0,67,0,0,0,115,158,0,0,0,124,0,0,106,0,0, ++ 100,0,0,107,8,0,114,151,0,124,0,0,106,1,0,100, ++ 0,0,107,9,0,114,151,0,124,0,0,106,2,0,114,151, ++ 0,124,0,0,106,1,0,125,1,0,124,1,0,106,3,0, ++ 116,4,0,116,5,0,131,1,0,131,1,0,114,112,0,121, ++ 19,0,116,6,0,124,1,0,131,1,0,124,0,0,95,0, ++ 0,87,113,145,0,4,116,7,0,107,10,0,114,108,0,1, ++ 1,1,89,113,145,0,88,113,148,0,124,1,0,106,3,0, ++ 116,4,0,116,8,0,131,1,0,131,1,0,114,148,0,124, ++ 1,0,124,0,0,95,0,0,113,148,0,113,151,0,110,0, ++ 0,124,0,0,106,0,0,83,41,1,78,41,9,114,223,0, ++ 0,0,114,218,0,0,0,114,222,0,0,0,218,8,101,110, ++ 100,115,119,105,116,104,218,5,116,117,112,108,101,114,135,0, ++ 0,0,114,133,0,0,0,114,125,0,0,0,218,17,66,89, ++ 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,41, ++ 2,114,72,0,0,0,114,132,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,226,0,0,0,56, ++ 3,0,0,115,22,0,0,0,0,2,15,1,24,1,9,1, ++ 21,1,3,1,19,1,13,1,8,1,21,1,18,1,122,17, ++ 77,111,100,117,108,101,83,112,101,99,46,99,97,99,104,101, ++ 100,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, ++ 0,0,67,0,0,0,115,13,0,0,0,124,1,0,124,0, ++ 0,95,0,0,100,0,0,83,41,1,78,41,1,114,223,0, ++ 0,0,41,2,114,72,0,0,0,114,226,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,226,0, ++ 0,0,70,3,0,0,115,2,0,0,0,0,2,99,1,0, ++ 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, ++ 0,0,115,46,0,0,0,124,0,0,106,0,0,100,1,0, ++ 107,8,0,114,35,0,124,0,0,106,1,0,106,2,0,100, ++ 2,0,131,1,0,100,3,0,25,83,124,0,0,106,1,0, ++ 83,100,1,0,83,41,4,122,32,84,104,101,32,110,97,109, ++ 101,32,111,102,32,116,104,101,32,109,111,100,117,108,101,39, ++ 115,32,112,97,114,101,110,116,46,78,114,117,0,0,0,114, ++ 85,0,0,0,41,3,114,221,0,0,0,114,68,0,0,0, ++ 114,33,0,0,0,41,1,114,72,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,6,112,97,114, ++ 101,110,116,74,3,0,0,115,6,0,0,0,0,3,15,1, ++ 20,2,122,17,77,111,100,117,108,101,83,112,101,99,46,112, ++ 97,114,101,110,116,99,1,0,0,0,0,0,0,0,1,0, ++ 0,0,1,0,0,0,67,0,0,0,115,7,0,0,0,124, ++ 0,0,106,0,0,83,41,1,78,41,1,114,222,0,0,0, ++ 41,1,114,72,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,227,0,0,0,82,3,0,0,115, ++ 2,0,0,0,0,2,122,23,77,111,100,117,108,101,83,112, ++ 101,99,46,104,97,115,95,108,111,99,97,116,105,111,110,99, ++ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, ++ 67,0,0,0,115,19,0,0,0,116,0,0,124,1,0,131, ++ 1,0,124,0,0,95,1,0,100,0,0,83,41,1,78,41, ++ 2,218,4,98,111,111,108,114,222,0,0,0,41,2,114,72, ++ 0,0,0,218,5,118,97,108,117,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,227,0,0,0,86,3, ++ 0,0,115,2,0,0,0,0,2,41,12,114,58,0,0,0, ++ 114,57,0,0,0,114,59,0,0,0,114,60,0,0,0,114, ++ 73,0,0,0,114,102,0,0,0,114,230,0,0,0,218,8, ++ 112,114,111,112,101,114,116,121,114,226,0,0,0,218,6,115, ++ 101,116,116,101,114,114,234,0,0,0,114,227,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,217,0,0,0,241,2,0,0,115,20,0,0, ++ 0,12,35,6,2,15,1,15,11,12,10,12,12,18,14,21, ++ 4,18,8,18,4,114,217,0,0,0,114,218,0,0,0,114, ++ 220,0,0,0,99,2,0,0,0,2,0,0,0,5,0,0, ++ 0,15,0,0,0,67,0,0,0,115,193,0,0,0,116,0, ++ 0,124,1,0,100,1,0,131,2,0,114,83,0,124,3,0, ++ 100,2,0,107,8,0,114,43,0,116,1,0,124,0,0,100, ++ 3,0,124,1,0,131,1,1,83,124,3,0,114,55,0,103, ++ 0,0,110,3,0,100,2,0,125,4,0,116,1,0,124,0, ++ 0,100,3,0,124,1,0,100,4,0,124,4,0,131,1,2, ++ 83,124,3,0,100,2,0,107,8,0,114,168,0,116,0,0, ++ 124,1,0,100,5,0,131,2,0,114,159,0,121,19,0,124, ++ 1,0,106,2,0,124,0,0,131,1,0,125,3,0,87,113, ++ 165,0,4,116,3,0,107,10,0,114,155,0,1,1,1,100, ++ 2,0,125,3,0,89,113,165,0,88,113,168,0,100,6,0, ++ 125,3,0,110,0,0,116,4,0,124,0,0,124,1,0,100, ++ 7,0,124,2,0,100,5,0,124,3,0,131,2,2,83,41, ++ 8,122,53,82,101,116,117,114,110,32,97,32,109,111,100,117, ++ 108,101,32,115,112,101,99,32,98,97,115,101,100,32,111,110, ++ 32,118,97,114,105,111,117,115,32,108,111,97,100,101,114,32, ++ 109,101,116,104,111,100,115,46,218,12,103,101,116,95,102,105, ++ 108,101,110,97,109,101,78,114,170,0,0,0,114,221,0,0, ++ 0,114,220,0,0,0,70,114,218,0,0,0,41,5,114,61, ++ 0,0,0,218,23,115,112,101,99,95,102,114,111,109,95,102, ++ 105,108,101,95,108,111,99,97,116,105,111,110,114,220,0,0, ++ 0,114,154,0,0,0,114,217,0,0,0,41,5,114,68,0, ++ 0,0,114,170,0,0,0,114,218,0,0,0,114,220,0,0, ++ 0,90,6,115,101,97,114,99,104,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,174,0,0,0,91,3,0, ++ 0,115,28,0,0,0,0,2,15,1,12,1,16,1,18,1, ++ 15,1,7,2,12,1,15,1,3,1,19,1,13,1,14,3, ++ 9,2,114,174,0,0,0,114,170,0,0,0,114,221,0,0, ++ 0,99,2,0,0,0,2,0,0,0,9,0,0,0,19,0, ++ 0,0,67,0,0,0,115,110,1,0,0,124,1,0,100,1, ++ 0,107,8,0,114,79,0,100,2,0,125,1,0,116,0,0, ++ 124,2,0,100,3,0,131,2,0,114,79,0,121,19,0,124, ++ 2,0,106,1,0,124,0,0,131,1,0,125,1,0,87,113, ++ 76,0,4,116,2,0,107,10,0,114,72,0,1,1,1,89, ++ 113,76,0,88,113,79,0,110,0,0,116,3,0,124,0,0, ++ 124,2,0,100,4,0,124,1,0,131,2,1,125,4,0,100, ++ 5,0,124,4,0,95,4,0,124,2,0,100,1,0,107,8, ++ 0,114,203,0,120,79,0,116,5,0,131,0,0,68,93,61, ++ 0,92,2,0,125,5,0,125,6,0,124,1,0,106,6,0, ++ 116,7,0,124,6,0,131,1,0,131,1,0,114,131,0,124, ++ 5,0,124,0,0,124,1,0,131,2,0,125,2,0,124,2, ++ 0,124,4,0,95,8,0,80,113,131,0,113,131,0,87,100, ++ 1,0,83,110,0,0,124,3,0,116,9,0,107,8,0,114, ++ 38,1,116,0,0,124,2,0,100,6,0,131,2,0,114,47, ++ 1,121,19,0,124,2,0,106,10,0,124,0,0,131,1,0, ++ 125,7,0,87,110,18,0,4,116,2,0,107,10,0,114,13, ++ 1,1,1,1,89,113,35,1,88,124,7,0,114,35,1,103, ++ 0,0,124,4,0,95,11,0,113,35,1,113,47,1,110,9, ++ 0,124,3,0,124,4,0,95,11,0,124,4,0,106,11,0, ++ 103,0,0,107,2,0,114,106,1,124,1,0,114,106,1,116, ++ 12,0,124,1,0,131,1,0,100,7,0,25,125,8,0,124, ++ 4,0,106,11,0,106,13,0,124,8,0,131,1,0,1,113, ++ 106,1,110,0,0,124,4,0,83,41,8,97,61,1,0,0, ++ 82,101,116,117,114,110,32,97,32,109,111,100,117,108,101,32, ++ 115,112,101,99,32,98,97,115,101,100,32,111,110,32,97,32, ++ 102,105,108,101,32,108,111,99,97,116,105,111,110,46,10,10, ++ 32,32,32,32,84,111,32,105,110,100,105,99,97,116,101,32, ++ 116,104,97,116,32,116,104,101,32,109,111,100,117,108,101,32, ++ 105,115,32,97,32,112,97,99,107,97,103,101,44,32,115,101, ++ 116,10,32,32,32,32,115,117,98,109,111,100,117,108,101,95, ++ 115,101,97,114,99,104,95,108,111,99,97,116,105,111,110,115, ++ 32,116,111,32,97,32,108,105,115,116,32,111,102,32,100,105, ++ 114,101,99,116,111,114,121,32,112,97,116,104,115,46,32,32, ++ 65,110,10,32,32,32,32,101,109,112,116,121,32,108,105,115, ++ 116,32,105,115,32,115,117,102,102,105,99,105,101,110,116,44, ++ 32,116,104,111,117,103,104,32,105,116,115,32,110,111,116,32, ++ 111,116,104,101,114,119,105,115,101,32,117,115,101,102,117,108, ++ 32,116,111,32,116,104,101,10,32,32,32,32,105,109,112,111, ++ 114,116,32,115,121,115,116,101,109,46,10,10,32,32,32,32, ++ 84,104,101,32,108,111,97,100,101,114,32,109,117,115,116,32, ++ 116,97,107,101,32,97,32,115,112,101,99,32,97,115,32,105, ++ 116,115,32,111,110,108,121,32,95,95,105,110,105,116,95,95, ++ 40,41,32,97,114,103,46,10,10,32,32,32,32,78,122,9, ++ 60,117,110,107,110,111,119,110,62,114,239,0,0,0,114,218, ++ 0,0,0,84,114,220,0,0,0,114,85,0,0,0,41,14, ++ 114,61,0,0,0,114,239,0,0,0,114,154,0,0,0,114, ++ 217,0,0,0,114,222,0,0,0,218,27,95,103,101,116,95, ++ 115,117,112,112,111,114,116,101,100,95,102,105,108,101,95,108, ++ 111,97,100,101,114,115,114,231,0,0,0,114,232,0,0,0, ++ 114,170,0,0,0,218,9,95,80,79,80,85,76,65,84,69, ++ 114,220,0,0,0,114,221,0,0,0,114,39,0,0,0,114, ++ 224,0,0,0,41,9,114,68,0,0,0,218,8,108,111,99, ++ 97,116,105,111,110,114,170,0,0,0,114,221,0,0,0,114, ++ 178,0,0,0,218,12,108,111,97,100,101,114,95,99,108,97, ++ 115,115,114,128,0,0,0,114,220,0,0,0,90,7,100,105, ++ 114,110,97,109,101,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,240,0,0,0,116,3,0,0,115,60,0, ++ 0,0,0,12,12,4,6,1,15,2,3,1,19,1,13,1, ++ 11,8,21,1,9,3,12,1,22,1,21,1,15,1,9,1, ++ 8,2,7,3,12,2,15,1,3,1,19,1,13,1,5,2, ++ 6,1,18,2,9,1,15,1,6,1,16,1,22,2,114,240, ++ 0,0,0,99,3,0,0,0,0,0,0,0,8,0,0,0, ++ 53,0,0,0,67,0,0,0,115,124,1,0,0,121,13,0, ++ 124,0,0,106,0,0,125,3,0,87,110,18,0,4,116,1, ++ 0,107,10,0,114,33,0,1,1,1,89,110,17,0,88,124, ++ 3,0,100,0,0,107,9,0,114,50,0,124,3,0,83,124, ++ 0,0,106,2,0,125,4,0,124,1,0,100,0,0,107,8, ++ 0,114,108,0,121,13,0,124,0,0,106,3,0,125,1,0, ++ 87,113,108,0,4,116,1,0,107,10,0,114,104,0,1,1, ++ 1,89,113,108,0,88,110,0,0,121,13,0,124,0,0,106, ++ 4,0,125,5,0,87,110,24,0,4,116,1,0,107,10,0, ++ 114,147,0,1,1,1,100,0,0,125,5,0,89,110,1,0, ++ 88,124,2,0,100,0,0,107,8,0,114,224,0,124,5,0, ++ 100,0,0,107,8,0,114,215,0,121,13,0,124,1,0,106, ++ 5,0,125,2,0,87,113,221,0,4,116,1,0,107,10,0, ++ 114,211,0,1,1,1,100,0,0,125,2,0,89,113,221,0, ++ 88,113,224,0,124,5,0,125,2,0,110,0,0,121,13,0, ++ 124,0,0,106,6,0,125,6,0,87,110,24,0,4,116,1, ++ 0,107,10,0,114,7,1,1,1,1,100,0,0,125,6,0, ++ 89,110,1,0,88,121,19,0,116,7,0,124,0,0,106,8, ++ 0,131,1,0,125,7,0,87,110,24,0,4,116,1,0,107, ++ 10,0,114,53,1,1,1,1,100,0,0,125,7,0,89,110, ++ 1,0,88,116,9,0,124,4,0,124,1,0,100,1,0,124, ++ 2,0,131,2,1,125,3,0,124,5,0,100,0,0,107,8, ++ 0,114,93,1,100,2,0,110,3,0,100,3,0,124,3,0, ++ 95,10,0,124,6,0,124,3,0,95,11,0,124,7,0,124, ++ 3,0,95,12,0,124,3,0,83,41,4,78,114,218,0,0, ++ 0,70,84,41,13,114,209,0,0,0,114,210,0,0,0,114, ++ 58,0,0,0,114,205,0,0,0,114,211,0,0,0,90,7, ++ 95,79,82,73,71,73,78,218,10,95,95,99,97,99,104,101, ++ 100,95,95,218,4,108,105,115,116,218,8,95,95,112,97,116, ++ 104,95,95,114,217,0,0,0,114,222,0,0,0,114,226,0, ++ 0,0,114,221,0,0,0,41,8,114,180,0,0,0,114,170, ++ 0,0,0,114,218,0,0,0,114,178,0,0,0,114,68,0, ++ 0,0,114,243,0,0,0,114,226,0,0,0,114,221,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,17,95,115,112,101,99,95,102,114,111,109,95,109,111,100, ++ 117,108,101,180,3,0,0,115,72,0,0,0,0,2,3,1, ++ 13,1,13,1,5,2,12,1,4,2,9,1,12,1,3,1, ++ 13,1,13,2,8,1,3,1,13,1,13,1,11,1,12,1, ++ 12,1,3,1,13,1,13,1,14,2,9,1,3,1,13,1, ++ 13,1,11,1,3,1,19,1,13,1,11,2,21,1,27,1, ++ 9,1,9,1,114,248,0,0,0,99,0,0,0,0,0,0, ++ 0,0,0,0,0,0,6,0,0,0,64,0,0,0,115,142, ++ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, ++ 1,0,90,3,0,100,2,0,100,3,0,132,0,0,90,4, ++ 0,100,4,0,100,5,0,132,0,0,90,5,0,100,6,0, ++ 100,7,0,100,8,0,100,9,0,100,10,0,100,11,0,132, ++ 0,2,90,6,0,100,12,0,100,13,0,132,0,0,90,7, ++ 0,100,14,0,100,15,0,132,0,0,90,8,0,100,16,0, ++ 100,17,0,132,0,0,90,9,0,100,18,0,100,19,0,132, ++ 0,0,90,10,0,100,20,0,100,21,0,132,0,0,90,11, ++ 0,100,22,0,100,23,0,132,0,0,90,12,0,100,24,0, ++ 83,41,25,114,175,0,0,0,122,77,67,111,110,118,101,110, ++ 105,101,110,99,101,32,119,114,97,112,112,101,114,32,97,114, ++ 111,117,110,100,32,115,112,101,99,32,111,98,106,101,99,116, ++ 115,32,116,111,32,112,114,111,118,105,100,101,32,115,112,101, ++ 99,45,115,112,101,99,105,102,105,99,10,32,32,32,32,109, ++ 101,116,104,111,100,115,46,99,2,0,0,0,0,0,0,0, ++ 2,0,0,0,2,0,0,0,67,0,0,0,115,13,0,0, ++ 0,124,1,0,124,0,0,95,0,0,100,0,0,83,41,1, ++ 78,41,1,114,178,0,0,0,41,2,114,72,0,0,0,114, ++ 178,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,73,0,0,0,232,3,0,0,115,2,0,0, ++ 0,0,1,122,21,95,83,112,101,99,77,101,116,104,111,100, ++ 115,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, ++ 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115, ++ 158,0,0,0,124,0,0,106,0,0,125,1,0,124,1,0, ++ 106,1,0,100,1,0,107,8,0,114,30,0,100,2,0,110, ++ 6,0,124,1,0,106,1,0,125,2,0,124,1,0,106,2, ++ 0,100,1,0,107,8,0,114,104,0,124,1,0,106,3,0, ++ 100,1,0,107,8,0,114,82,0,100,3,0,106,4,0,124, ++ 2,0,131,1,0,83,100,4,0,106,4,0,124,2,0,124, ++ 1,0,106,3,0,131,2,0,83,110,50,0,124,1,0,106, ++ 5,0,114,132,0,100,5,0,106,4,0,124,2,0,124,1, ++ 0,106,2,0,131,2,0,83,100,6,0,106,4,0,124,1, ++ 0,106,1,0,124,1,0,106,2,0,131,2,0,83,100,1, ++ 0,83,41,7,122,38,82,101,116,117,114,110,32,116,104,101, ++ 32,114,101,112,114,32,116,111,32,117,115,101,32,102,111,114, ++ 32,116,104,101,32,109,111,100,117,108,101,46,78,114,207,0, ++ 0,0,122,13,60,109,111,100,117,108,101,32,123,33,114,125, ++ 62,122,20,60,109,111,100,117,108,101,32,123,33,114,125,32, ++ 40,123,33,114,125,41,62,122,23,60,109,111,100,117,108,101, ++ 32,123,33,114,125,32,102,114,111,109,32,123,33,114,125,62, ++ 122,18,60,109,111,100,117,108,101,32,123,33,114,125,32,40, ++ 123,125,41,62,41,6,114,178,0,0,0,114,68,0,0,0, ++ 114,218,0,0,0,114,170,0,0,0,114,48,0,0,0,114, ++ 227,0,0,0,41,3,114,72,0,0,0,114,178,0,0,0, ++ 114,68,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,206,0,0,0,235,3,0,0,115,18,0, ++ 0,0,0,3,9,1,30,1,15,1,15,1,13,2,22,2, ++ 9,1,19,2,122,24,95,83,112,101,99,77,101,116,104,111, ++ 100,115,46,109,111,100,117,108,101,95,114,101,112,114,218,9, ++ 95,111,118,101,114,114,105,100,101,70,218,11,95,102,111,114, ++ 99,101,95,110,97,109,101,84,99,2,0,0,0,2,0,0, ++ 0,6,0,0,0,59,0,0,0,67,0,0,0,115,75,2, ++ 0,0,124,0,0,106,0,0,125,4,0,124,2,0,115,45, ++ 0,124,3,0,115,45,0,116,1,0,124,1,0,100,1,0, ++ 100,2,0,131,3,0,100,2,0,107,8,0,114,85,0,121, ++ 16,0,124,4,0,106,2,0,124,1,0,95,3,0,87,113, ++ 85,0,4,116,4,0,107,10,0,114,81,0,1,1,1,89, ++ 113,85,0,88,110,0,0,124,2,0,115,115,0,116,1,0, ++ 124,1,0,100,3,0,100,2,0,131,3,0,100,2,0,107, ++ 8,0,114,221,0,124,4,0,106,5,0,125,5,0,124,5, ++ 0,100,2,0,107,8,0,114,184,0,124,4,0,106,6,0, ++ 100,2,0,107,9,0,114,184,0,116,7,0,106,8,0,116, ++ 7,0,131,1,0,125,5,0,124,4,0,106,6,0,124,5, ++ 0,95,9,0,113,184,0,110,0,0,121,13,0,124,5,0, ++ 124,1,0,95,10,0,87,113,221,0,4,116,4,0,107,10, ++ 0,114,217,0,1,1,1,89,113,221,0,88,110,0,0,124, ++ 2,0,115,251,0,116,1,0,124,1,0,100,4,0,100,2, ++ 0,131,3,0,100,2,0,107,8,0,114,35,1,121,16,0, ++ 124,4,0,106,11,0,124,1,0,95,12,0,87,113,35,1, ++ 4,116,4,0,107,10,0,114,31,1,1,1,1,89,113,35, ++ 1,88,110,0,0,121,13,0,124,4,0,124,1,0,95,13, ++ 0,87,110,18,0,4,116,4,0,107,10,0,114,68,1,1, ++ 1,1,89,110,1,0,88,124,2,0,115,99,1,116,1,0, ++ 124,1,0,100,5,0,100,2,0,131,3,0,100,2,0,107, ++ 8,0,114,157,1,124,4,0,106,6,0,100,2,0,107,9, ++ 0,114,157,1,121,16,0,124,4,0,106,6,0,124,1,0, ++ 95,14,0,87,113,154,1,4,116,4,0,107,10,0,114,150, ++ 1,1,1,1,89,113,154,1,88,113,157,1,110,0,0,124, ++ 4,0,106,15,0,114,71,2,124,2,0,115,196,1,116,1, ++ 0,124,1,0,100,6,0,100,2,0,131,3,0,100,2,0, ++ 107,8,0,114,236,1,121,16,0,124,4,0,106,16,0,124, ++ 1,0,95,17,0,87,113,236,1,4,116,4,0,107,10,0, ++ 114,232,1,1,1,1,89,113,236,1,88,110,0,0,124,2, ++ 0,115,10,2,116,1,0,124,1,0,100,7,0,100,2,0, ++ 131,3,0,100,2,0,107,8,0,114,71,2,124,4,0,106, ++ 18,0,100,2,0,107,9,0,114,68,2,121,16,0,124,4, ++ 0,106,18,0,124,1,0,95,19,0,87,113,65,2,4,116, ++ 4,0,107,10,0,114,61,2,1,1,1,89,113,65,2,88, ++ 113,68,2,113,71,2,110,0,0,100,2,0,83,41,8,97, ++ 29,2,0,0,83,101,116,32,116,104,101,32,109,111,100,117, ++ 108,101,39,115,32,97,116,116,114,105,98,117,116,101,115,46, ++ 10,10,32,32,32,32,32,32,32,32,65,108,108,32,109,105, ++ 115,115,105,110,103,32,105,109,112,111,114,116,45,114,101,108, ++ 97,116,101,100,32,109,111,100,117,108,101,32,97,116,116,114, ++ 105,98,117,116,101,115,32,119,105,108,108,32,98,101,32,115, ++ 101,116,46,32,32,72,101,114,101,10,32,32,32,32,32,32, ++ 32,32,105,115,32,104,111,119,32,116,104,101,32,115,112,101, ++ 99,32,97,116,116,114,105,98,117,116,101,115,32,109,97,112, ++ 32,111,110,116,111,32,116,104,101,32,109,111,100,117,108,101, ++ 58,10,10,32,32,32,32,32,32,32,32,115,112,101,99,46, ++ 110,97,109,101,32,45,62,32,109,111,100,117,108,101,46,95, ++ 95,110,97,109,101,95,95,10,32,32,32,32,32,32,32,32, ++ 115,112,101,99,46,108,111,97,100,101,114,32,45,62,32,109, ++ 111,100,117,108,101,46,95,95,108,111,97,100,101,114,95,95, ++ 10,32,32,32,32,32,32,32,32,115,112,101,99,46,112,97, ++ 114,101,110,116,32,45,62,32,109,111,100,117,108,101,46,95, ++ 95,112,97,99,107,97,103,101,95,95,10,32,32,32,32,32, ++ 32,32,32,115,112,101,99,32,45,62,32,109,111,100,117,108, ++ 101,46,95,95,115,112,101,99,95,95,10,10,32,32,32,32, ++ 32,32,32,32,79,112,116,105,111,110,97,108,58,10,32,32, ++ 32,32,32,32,32,32,115,112,101,99,46,111,114,105,103,105, ++ 110,32,45,62,32,109,111,100,117,108,101,46,95,95,102,105, ++ 108,101,95,95,32,40,105,102,32,115,112,101,99,46,115,101, ++ 116,95,102,105,108,101,97,116,116,114,32,105,115,32,116,114, ++ 117,101,41,10,32,32,32,32,32,32,32,32,115,112,101,99, ++ 46,99,97,99,104,101,100,32,45,62,32,109,111,100,117,108, ++ 101,46,95,95,99,97,99,104,101,100,95,95,32,40,105,102, ++ 32,95,95,102,105,108,101,95,95,32,97,108,115,111,32,115, ++ 101,116,41,10,32,32,32,32,32,32,32,32,115,112,101,99, ++ 46,115,117,98,109,111,100,117,108,101,95,115,101,97,114,99, ++ 104,95,108,111,99,97,116,105,111,110,115,32,45,62,32,109, ++ 111,100,117,108,101,46,95,95,112,97,116,104,95,95,32,40, ++ 105,102,32,115,101,116,41,10,10,32,32,32,32,32,32,32, ++ 32,114,58,0,0,0,78,114,205,0,0,0,218,11,95,95, ++ 112,97,99,107,97,103,101,95,95,114,247,0,0,0,114,211, ++ 0,0,0,114,245,0,0,0,41,20,114,178,0,0,0,114, ++ 63,0,0,0,114,68,0,0,0,114,58,0,0,0,114,210, ++ 0,0,0,114,170,0,0,0,114,221,0,0,0,218,16,95, ++ 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,218, ++ 7,95,95,110,101,119,95,95,218,5,95,112,97,116,104,114, ++ 205,0,0,0,114,234,0,0,0,114,251,0,0,0,114,209, ++ 0,0,0,114,247,0,0,0,114,227,0,0,0,114,218,0, ++ 0,0,114,211,0,0,0,114,226,0,0,0,114,245,0,0, ++ 0,41,6,114,72,0,0,0,114,180,0,0,0,114,249,0, ++ 0,0,114,250,0,0,0,114,178,0,0,0,114,170,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,17,105,110,105,116,95,109,111,100,117,108,101,95,97,116, ++ 116,114,115,251,3,0,0,115,88,0,0,0,0,17,9,6, ++ 12,1,24,1,3,1,16,1,13,1,8,3,30,1,9,1, ++ 12,2,15,1,15,1,18,1,3,1,13,1,13,1,8,3, ++ 30,1,3,1,16,1,13,1,8,3,3,1,13,1,13,1, ++ 5,3,30,1,15,1,3,1,16,1,13,1,11,2,9,2, ++ 30,1,3,1,16,1,13,1,8,3,30,1,15,1,3,1, ++ 16,1,13,1,122,30,95,83,112,101,99,77,101,116,104,111, ++ 100,115,46,105,110,105,116,95,109,111,100,117,108,101,95,97, ++ 116,116,114,115,99,1,0,0,0,0,0,0,0,3,0,0, ++ 0,3,0,0,0,67,0,0,0,115,101,0,0,0,124,0, ++ 0,106,0,0,125,1,0,116,1,0,124,1,0,106,2,0, ++ 100,1,0,131,2,0,114,48,0,124,1,0,106,2,0,106, ++ 3,0,124,1,0,131,1,0,125,2,0,110,6,0,100,2, ++ 0,125,2,0,124,2,0,100,2,0,107,8,0,114,84,0, ++ 116,4,0,124,1,0,106,5,0,131,1,0,125,2,0,110, ++ 0,0,124,0,0,106,6,0,124,2,0,131,1,0,1,124, ++ 2,0,83,41,3,122,153,82,101,116,117,114,110,32,97,32, ++ 110,101,119,32,109,111,100,117,108,101,32,116,111,32,98,101, ++ 32,108,111,97,100,101,100,46,10,10,32,32,32,32,32,32, ++ 32,32,84,104,101,32,105,109,112,111,114,116,45,114,101,108, ++ 97,116,101,100,32,109,111,100,117,108,101,32,97,116,116,114, ++ 105,98,117,116,101,115,32,97,114,101,32,97,108,115,111,32, ++ 115,101,116,32,119,105,116,104,32,116,104,101,10,32,32,32, ++ 32,32,32,32,32,97,112,112,114,111,112,114,105,97,116,101, ++ 32,118,97,108,117,101,115,32,102,114,111,109,32,116,104,101, ++ 32,115,112,101,99,46,10,10,32,32,32,32,32,32,32,32, ++ 218,13,99,114,101,97,116,101,95,109,111,100,117,108,101,78, ++ 41,7,114,178,0,0,0,114,61,0,0,0,114,170,0,0, ++ 0,114,0,1,0,0,114,69,0,0,0,114,68,0,0,0, ++ 114,255,0,0,0,41,3,114,72,0,0,0,114,178,0,0, ++ 0,114,180,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,6,99,114,101,97,116,101,75,4,0, ++ 0,115,16,0,0,0,0,7,9,2,18,3,21,2,6,1, ++ 12,4,18,1,13,1,122,19,95,83,112,101,99,77,101,116, ++ 104,111,100,115,46,99,114,101,97,116,101,99,2,0,0,0, ++ 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, ++ 115,23,0,0,0,124,0,0,106,0,0,106,1,0,106,2, ++ 0,124,1,0,131,1,0,1,100,1,0,83,41,2,122,189, ++ 68,111,32,101,118,101,114,121,116,104,105,110,103,32,110,101, ++ 99,101,115,115,97,114,121,32,116,111,32,101,120,101,99,117, ++ 116,101,32,116,104,101,32,109,111,100,117,108,101,46,10,10, ++ 32,32,32,32,32,32,32,32,84,104,101,32,110,97,109,101, ++ 115,112,97,99,101,32,111,102,32,96,109,111,100,117,108,101, ++ 96,32,105,115,32,117,115,101,100,32,97,115,32,116,104,101, ++ 32,116,97,114,103,101,116,32,111,102,32,101,120,101,99,117, ++ 116,105,111,110,46,10,32,32,32,32,32,32,32,32,84,104, ++ 105,115,32,109,101,116,104,111,100,32,117,115,101,115,32,116, ++ 104,101,32,108,111,97,100,101,114,39,115,32,96,101,120,101, ++ 99,95,109,111,100,117,108,101,40,41,96,32,109,101,116,104, ++ 111,100,46,10,10,32,32,32,32,32,32,32,32,78,41,3, ++ 114,178,0,0,0,114,170,0,0,0,218,11,101,120,101,99, ++ 95,109,111,100,117,108,101,41,2,114,72,0,0,0,114,180, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,218,5,95,101,120,101,99,98,4,0,0,115,2,0, ++ 0,0,0,7,122,18,95,83,112,101,99,77,101,116,104,111, ++ 100,115,46,95,101,120,101,99,99,2,0,0,0,0,0,0, ++ 0,4,0,0,0,11,0,0,0,67,0,0,0,115,17,1, ++ 0,0,124,0,0,106,0,0,106,1,0,125,2,0,116,2, ++ 0,106,3,0,131,0,0,1,116,4,0,124,2,0,131,1, ++ 0,143,226,0,1,116,5,0,106,6,0,106,7,0,124,2, ++ 0,131,1,0,124,1,0,107,9,0,114,95,0,100,1,0, ++ 106,8,0,124,2,0,131,1,0,125,3,0,116,9,0,124, ++ 3,0,100,2,0,124,2,0,131,1,1,130,1,0,110,0, ++ 0,124,0,0,106,0,0,106,10,0,100,3,0,107,8,0, ++ 114,181,0,124,0,0,106,0,0,106,11,0,100,3,0,107, ++ 8,0,114,158,0,116,9,0,100,4,0,100,2,0,124,0, ++ 0,106,0,0,106,1,0,131,1,1,130,1,0,110,0,0, ++ 124,0,0,106,12,0,124,1,0,100,5,0,100,6,0,131, ++ 1,1,1,124,1,0,83,124,0,0,106,12,0,124,1,0, ++ 100,5,0,100,6,0,131,1,1,1,116,13,0,124,0,0, ++ 106,0,0,106,10,0,100,7,0,131,2,0,115,243,0,124, ++ 0,0,106,0,0,106,10,0,106,14,0,124,2,0,131,1, ++ 0,1,110,13,0,124,0,0,106,15,0,124,1,0,131,1, ++ 0,1,87,100,3,0,81,88,116,5,0,106,6,0,124,2, ++ 0,25,83,41,8,122,51,69,120,101,99,117,116,101,32,116, ++ 104,101,32,115,112,101,99,32,105,110,32,97,110,32,101,120, ++ 105,115,116,105,110,103,32,109,111,100,117,108,101,39,115,32, ++ 110,97,109,101,115,112,97,99,101,46,122,30,109,111,100,117, ++ 108,101,32,123,33,114,125,32,110,111,116,32,105,110,32,115, ++ 121,115,46,109,111,100,117,108,101,115,114,68,0,0,0,78, ++ 122,14,109,105,115,115,105,110,103,32,108,111,97,100,101,114, ++ 114,249,0,0,0,84,114,2,1,0,0,41,16,114,178,0, ++ 0,0,114,68,0,0,0,114,107,0,0,0,218,12,97,99, ++ 113,117,105,114,101,95,108,111,99,107,114,104,0,0,0,114, ++ 8,0,0,0,114,74,0,0,0,114,94,0,0,0,114,48, ++ 0,0,0,114,154,0,0,0,114,170,0,0,0,114,221,0, ++ 0,0,114,255,0,0,0,114,61,0,0,0,218,11,108,111, ++ 97,100,95,109,111,100,117,108,101,114,3,1,0,0,41,4, ++ 114,72,0,0,0,114,180,0,0,0,114,68,0,0,0,114, ++ 172,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,176,0,0,0,108,4,0,0,115,32,0,0, ++ 0,0,2,12,1,10,1,13,1,24,1,15,1,21,1,18, ++ 1,18,1,27,2,19,1,4,1,19,1,21,4,22,2,19, ++ 1,122,17,95,83,112,101,99,77,101,116,104,111,100,115,46, ++ 101,120,101,99,99,1,0,0,0,0,0,0,0,3,0,0, ++ 0,27,0,0,0,67,0,0,0,115,24,1,0,0,124,0, ++ 0,106,0,0,125,1,0,124,1,0,106,1,0,106,2,0, ++ 124,1,0,106,3,0,131,1,0,1,116,4,0,106,5,0, ++ 124,1,0,106,3,0,25,125,2,0,116,6,0,124,2,0, ++ 100,1,0,100,0,0,131,3,0,100,0,0,107,8,0,114, ++ 108,0,121,16,0,124,1,0,106,1,0,124,2,0,95,7, ++ 0,87,113,108,0,4,116,8,0,107,10,0,114,104,0,1, ++ 1,1,89,113,108,0,88,110,0,0,116,6,0,124,2,0, ++ 100,2,0,100,0,0,131,3,0,100,0,0,107,8,0,114, ++ 215,0,121,59,0,124,2,0,106,9,0,124,2,0,95,10, ++ 0,116,11,0,124,2,0,100,3,0,131,2,0,115,190,0, ++ 124,1,0,106,3,0,106,12,0,100,4,0,131,1,0,100, ++ 5,0,25,124,2,0,95,10,0,110,0,0,87,113,215,0, ++ 4,116,8,0,107,10,0,114,211,0,1,1,1,89,113,215, ++ 0,88,110,0,0,116,6,0,124,2,0,100,6,0,100,0, ++ 0,131,3,0,100,0,0,107,8,0,114,20,1,121,13,0, ++ 124,1,0,124,2,0,95,13,0,87,113,20,1,4,116,8, ++ 0,107,10,0,114,16,1,1,1,1,89,113,20,1,88,110, ++ 0,0,124,2,0,83,41,7,78,114,205,0,0,0,114,251, ++ 0,0,0,114,247,0,0,0,114,117,0,0,0,114,85,0, ++ 0,0,114,209,0,0,0,41,14,114,178,0,0,0,114,170, ++ 0,0,0,114,5,1,0,0,114,68,0,0,0,114,8,0, ++ 0,0,114,74,0,0,0,114,63,0,0,0,114,205,0,0, ++ 0,114,210,0,0,0,114,58,0,0,0,114,251,0,0,0, ++ 114,61,0,0,0,114,33,0,0,0,114,209,0,0,0,41, ++ 3,114,72,0,0,0,114,178,0,0,0,114,180,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, ++ 25,95,108,111,97,100,95,98,97,99,107,119,97,114,100,95, ++ 99,111,109,112,97,116,105,98,108,101,132,4,0,0,115,42, ++ 0,0,0,0,4,9,1,19,2,16,1,24,1,3,1,16, ++ 1,13,1,8,1,24,1,3,4,12,1,15,1,32,1,13, ++ 1,8,1,24,1,3,1,13,1,13,1,8,1,122,38,95, ++ 83,112,101,99,77,101,116,104,111,100,115,46,95,108,111,97, ++ 100,95,98,97,99,107,119,97,114,100,95,99,111,109,112,97, ++ 116,105,98,108,101,99,1,0,0,0,0,0,0,0,2,0, ++ 0,0,11,0,0,0,67,0,0,0,115,179,0,0,0,124, ++ 0,0,106,0,0,106,1,0,100,0,0,107,9,0,114,52, ++ 0,116,2,0,124,0,0,106,0,0,106,1,0,100,1,0, ++ 131,2,0,115,52,0,124,0,0,106,3,0,131,0,0,83, ++ 110,0,0,124,0,0,106,4,0,131,0,0,125,1,0,116, ++ 5,0,124,1,0,131,1,0,143,84,0,1,124,0,0,106, ++ 0,0,106,1,0,100,0,0,107,8,0,114,143,0,124,0, ++ 0,106,0,0,106,6,0,100,0,0,107,8,0,114,156,0, ++ 116,7,0,100,2,0,100,3,0,124,0,0,106,0,0,106, ++ 8,0,131,1,1,130,1,0,113,156,0,110,13,0,124,0, ++ 0,106,9,0,124,1,0,131,1,0,1,87,100,0,0,81, ++ 88,116,10,0,106,11,0,124,0,0,106,0,0,106,8,0, ++ 25,83,41,4,78,114,2,1,0,0,122,14,109,105,115,115, ++ 105,110,103,32,108,111,97,100,101,114,114,68,0,0,0,41, ++ 12,114,178,0,0,0,114,170,0,0,0,114,61,0,0,0, ++ 114,6,1,0,0,114,1,1,0,0,114,213,0,0,0,114, ++ 221,0,0,0,114,154,0,0,0,114,68,0,0,0,114,3, ++ 1,0,0,114,8,0,0,0,114,74,0,0,0,41,2,114, ++ 72,0,0,0,114,180,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,14,95,108,111,97,100,95, ++ 117,110,108,111,99,107,101,100,162,4,0,0,115,20,0,0, ++ 0,0,2,18,2,21,1,13,2,12,1,13,1,18,1,18, ++ 1,30,3,19,5,122,27,95,83,112,101,99,77,101,116,104, ++ 111,100,115,46,95,108,111,97,100,95,117,110,108,111,99,107, ++ 101,100,99,1,0,0,0,0,0,0,0,1,0,0,0,8, ++ 0,0,0,67,0,0,0,115,49,0,0,0,116,0,0,106, ++ 1,0,131,0,0,1,116,2,0,124,0,0,106,3,0,106, ++ 4,0,131,1,0,143,15,0,1,124,0,0,106,5,0,131, ++ 0,0,83,87,100,1,0,81,88,100,1,0,83,41,2,122, ++ 207,82,101,116,117,114,110,32,97,32,110,101,119,32,109,111, ++ 100,117,108,101,32,111,98,106,101,99,116,44,32,108,111,97, ++ 100,101,100,32,98,121,32,116,104,101,32,115,112,101,99,39, ++ 115,32,108,111,97,100,101,114,46,10,10,32,32,32,32,32, ++ 32,32,32,84,104,101,32,109,111,100,117,108,101,32,105,115, ++ 32,110,111,116,32,97,100,100,101,100,32,116,111,32,105,116, ++ 115,32,112,97,114,101,110,116,46,10,10,32,32,32,32,32, ++ 32,32,32,73,102,32,97,32,109,111,100,117,108,101,32,105, ++ 115,32,97,108,114,101,97,100,121,32,105,110,32,115,121,115, ++ 46,109,111,100,117,108,101,115,44,32,116,104,97,116,32,101, ++ 120,105,115,116,105,110,103,32,109,111,100,117,108,101,32,103, ++ 101,116,115,10,32,32,32,32,32,32,32,32,99,108,111,98, ++ 98,101,114,101,100,46,10,10,32,32,32,32,32,32,32,32, ++ 78,41,6,114,107,0,0,0,114,4,1,0,0,114,104,0, ++ 0,0,114,178,0,0,0,114,68,0,0,0,114,7,1,0, ++ 0,41,1,114,72,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,177,0,0,0,185,4,0,0, ++ 115,6,0,0,0,0,9,10,1,19,1,122,17,95,83,112, ++ 101,99,77,101,116,104,111,100,115,46,108,111,97,100,78,41, ++ 13,114,58,0,0,0,114,57,0,0,0,114,59,0,0,0, ++ 114,60,0,0,0,114,73,0,0,0,114,206,0,0,0,114, ++ 255,0,0,0,114,1,1,0,0,114,3,1,0,0,114,176, ++ 0,0,0,114,6,1,0,0,114,7,1,0,0,114,177,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,175,0,0,0,225,3,0,0,115, ++ 20,0,0,0,12,3,6,4,12,3,12,16,24,80,12,23, ++ 12,10,12,24,12,30,12,23,114,175,0,0,0,99,4,0, ++ 0,0,0,0,0,0,6,0,0,0,11,0,0,0,67,0, ++ 0,0,115,201,0,0,0,124,0,0,106,0,0,100,1,0, ++ 131,1,0,125,4,0,124,0,0,106,0,0,100,2,0,131, ++ 1,0,125,5,0,124,4,0,115,102,0,124,5,0,114,54, ++ 0,124,5,0,106,1,0,125,4,0,113,102,0,124,2,0, ++ 124,3,0,107,2,0,114,84,0,116,2,0,124,1,0,124, ++ 2,0,131,2,0,125,4,0,113,102,0,116,3,0,124,1, ++ 0,124,2,0,131,2,0,125,4,0,110,0,0,124,5,0, ++ 115,132,0,116,4,0,124,1,0,124,2,0,100,3,0,124, ++ 4,0,131,2,1,125,5,0,110,0,0,121,44,0,124,5, ++ 0,124,0,0,100,2,0,60,124,4,0,124,0,0,100,1, ++ 0,60,124,2,0,124,0,0,100,4,0,60,124,3,0,124, ++ 0,0,100,5,0,60,87,110,18,0,4,116,5,0,107,10, ++ 0,114,196,0,1,1,1,89,110,1,0,88,100,0,0,83, ++ 41,6,78,114,205,0,0,0,114,209,0,0,0,114,170,0, ++ 0,0,114,211,0,0,0,114,245,0,0,0,41,6,114,94, ++ 0,0,0,114,170,0,0,0,218,20,83,111,117,114,99,101, ++ 108,101,115,115,70,105,108,101,76,111,97,100,101,114,218,16, ++ 83,111,117,114,99,101,70,105,108,101,76,111,97,100,101,114, ++ 114,240,0,0,0,114,208,0,0,0,41,6,90,2,110,115, ++ 114,68,0,0,0,90,8,112,97,116,104,110,97,109,101,90, ++ 9,99,112,97,116,104,110,97,109,101,114,170,0,0,0,114, ++ 178,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,14,95,102,105,120,95,117,112,95,109,111,100, ++ 117,108,101,199,4,0,0,115,34,0,0,0,0,2,15,1, ++ 15,1,6,1,6,1,12,1,12,1,18,2,18,1,6,1, ++ 24,1,3,1,10,1,10,1,10,1,14,1,13,2,114,10, ++ 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, ++ 5,0,0,0,64,0,0,0,115,181,0,0,0,101,0,0, ++ 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,101, ++ 4,0,100,2,0,100,3,0,132,0,0,131,1,0,90,5, ++ 0,101,6,0,100,4,0,100,4,0,100,5,0,100,6,0, ++ 132,2,0,131,1,0,90,7,0,101,6,0,100,4,0,100, ++ 7,0,100,8,0,132,1,0,131,1,0,90,8,0,101,6, ++ 0,101,9,0,100,9,0,100,10,0,132,0,0,131,1,0, ++ 131,1,0,90,10,0,101,6,0,101,9,0,100,11,0,100, ++ 12,0,132,0,0,131,1,0,131,1,0,90,11,0,101,6, ++ 0,101,9,0,100,13,0,100,14,0,132,0,0,131,1,0, ++ 131,1,0,90,12,0,101,6,0,101,9,0,100,15,0,100, ++ 16,0,132,0,0,131,1,0,131,1,0,90,13,0,100,4, ++ 0,83,41,17,218,15,66,117,105,108,116,105,110,73,109,112, ++ 111,114,116,101,114,122,144,77,101,116,97,32,112,97,116,104, ++ 32,105,109,112,111,114,116,32,102,111,114,32,98,117,105,108, ++ 116,45,105,110,32,109,111,100,117,108,101,115,46,10,10,32, ++ 32,32,32,65,108,108,32,109,101,116,104,111,100,115,32,97, ++ 114,101,32,101,105,116,104,101,114,32,99,108,97,115,115,32, ++ 111,114,32,115,116,97,116,105,99,32,109,101,116,104,111,100, ++ 115,32,116,111,32,97,118,111,105,100,32,116,104,101,32,110, ++ 101,101,100,32,116,111,10,32,32,32,32,105,110,115,116,97, ++ 110,116,105,97,116,101,32,116,104,101,32,99,108,97,115,115, ++ 46,10,10,32,32,32,32,99,1,0,0,0,0,0,0,0, ++ 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, ++ 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, ++ 83,41,2,122,115,82,101,116,117,114,110,32,114,101,112,114, ++ 32,102,111,114,32,116,104,101,32,109,111,100,117,108,101,46, ++ 10,10,32,32,32,32,32,32,32,32,84,104,101,32,109,101, ++ 116,104,111,100,32,105,115,32,100,101,112,114,101,99,97,116, ++ 101,100,46,32,32,84,104,101,32,105,109,112,111,114,116,32, ++ 109,97,99,104,105,110,101,114,121,32,100,111,101,115,32,116, ++ 104,101,32,106,111,98,32,105,116,115,101,108,102,46,10,10, ++ 32,32,32,32,32,32,32,32,122,24,60,109,111,100,117,108, ++ 101,32,123,33,114,125,32,40,98,117,105,108,116,45,105,110, ++ 41,62,41,2,114,48,0,0,0,114,58,0,0,0,41,1, ++ 114,180,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,206,0,0,0,233,4,0,0,115,2,0, ++ 0,0,0,7,122,27,66,117,105,108,116,105,110,73,109,112, ++ 111,114,116,101,114,46,109,111,100,117,108,101,95,114,101,112, ++ 114,78,99,4,0,0,0,0,0,0,0,4,0,0,0,5, ++ 0,0,0,67,0,0,0,115,58,0,0,0,124,2,0,100, ++ 0,0,107,9,0,114,16,0,100,0,0,83,116,0,0,106, ++ 1,0,124,1,0,131,1,0,114,50,0,116,2,0,124,1, ++ 0,124,0,0,100,1,0,100,2,0,131,2,1,83,100,0, ++ 0,83,100,0,0,83,41,3,78,114,218,0,0,0,122,8, ++ 98,117,105,108,116,45,105,110,41,3,114,107,0,0,0,90, ++ 10,105,115,95,98,117,105,108,116,105,110,114,174,0,0,0, ++ 41,4,218,3,99,108,115,114,159,0,0,0,114,36,0,0, ++ 0,218,6,116,97,114,103,101,116,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,9,102,105,110,100,95,115, ++ 112,101,99,242,4,0,0,115,10,0,0,0,0,2,12,1, ++ 4,1,15,1,19,2,122,25,66,117,105,108,116,105,110,73, ++ 109,112,111,114,116,101,114,46,102,105,110,100,95,115,112,101, ++ 99,99,3,0,0,0,0,0,0,0,4,0,0,0,3,0, ++ 0,0,67,0,0,0,115,41,0,0,0,124,0,0,106,0, ++ 0,124,1,0,124,2,0,131,2,0,125,3,0,124,3,0, ++ 100,1,0,107,9,0,114,37,0,124,3,0,106,1,0,83, ++ 100,1,0,83,41,2,122,175,70,105,110,100,32,116,104,101, ++ 32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,101, ++ 46,10,10,32,32,32,32,32,32,32,32,73,102,32,39,112, ++ 97,116,104,39,32,105,115,32,101,118,101,114,32,115,112,101, ++ 99,105,102,105,101,100,32,116,104,101,110,32,116,104,101,32, ++ 115,101,97,114,99,104,32,105,115,32,99,111,110,115,105,100, ++ 101,114,101,100,32,97,32,102,97,105,108,117,114,101,46,10, ++ 10,32,32,32,32,32,32,32,32,84,104,105,115,32,109,101, ++ 116,104,111,100,32,105,115,32,100,101,112,114,101,99,97,116, ++ 101,100,46,32,32,85,115,101,32,102,105,110,100,95,115,112, ++ 101,99,40,41,32,105,110,115,116,101,97,100,46,10,10,32, ++ 32,32,32,32,32,32,32,78,41,2,114,14,1,0,0,114, ++ 170,0,0,0,41,4,114,12,1,0,0,114,159,0,0,0, ++ 114,36,0,0,0,114,178,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,11,102,105,110,100,95, ++ 109,111,100,117,108,101,251,4,0,0,115,4,0,0,0,0, ++ 9,18,1,122,27,66,117,105,108,116,105,110,73,109,112,111, ++ 114,116,101,114,46,102,105,110,100,95,109,111,100,117,108,101, ++ 99,2,0,0,0,0,0,0,0,3,0,0,0,10,0,0, ++ 0,67,0,0,0,115,59,0,0,0,116,0,0,124,1,0, ++ 131,1,0,143,23,0,1,116,1,0,116,2,0,106,3,0, ++ 124,1,0,131,2,0,125,2,0,87,100,1,0,81,88,124, ++ 0,0,124,2,0,95,4,0,100,2,0,124,2,0,95,5, ++ 0,124,2,0,83,41,3,122,23,76,111,97,100,32,97,32, ++ 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,46, ++ 78,114,31,0,0,0,41,6,114,70,0,0,0,114,115,0, ++ 0,0,114,107,0,0,0,90,12,105,110,105,116,95,98,117, ++ 105,108,116,105,110,114,205,0,0,0,114,251,0,0,0,41, ++ 3,114,12,1,0,0,114,159,0,0,0,114,180,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 5,1,0,0,7,5,0,0,115,10,0,0,0,0,6,13, ++ 1,24,1,9,1,9,1,122,27,66,117,105,108,116,105,110, ++ 73,109,112,111,114,116,101,114,46,108,111,97,100,95,109,111, ++ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, ++ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, ++ 0,83,41,2,122,57,82,101,116,117,114,110,32,78,111,110, ++ 101,32,97,115,32,98,117,105,108,116,45,105,110,32,109,111, ++ 100,117,108,101,115,32,100,111,32,110,111,116,32,104,97,118, ++ 101,32,99,111,100,101,32,111,98,106,101,99,116,115,46,78, ++ 114,5,0,0,0,41,2,114,12,1,0,0,114,159,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 218,8,103,101,116,95,99,111,100,101,19,5,0,0,115,2, ++ 0,0,0,0,4,122,24,66,117,105,108,116,105,110,73,109, ++ 112,111,114,116,101,114,46,103,101,116,95,99,111,100,101,99, + 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, + 67,0,0,0,115,4,0,0,0,100,1,0,83,41,2,122, +- 57,82,101,116,117,114,110,32,78,111,110,101,32,97,115,32, ++ 56,82,101,116,117,114,110,32,78,111,110,101,32,97,115,32, + 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,115, +- 32,100,111,32,110,111,116,32,104,97,118,101,32,99,111,100, +- 101,32,111,98,106,101,99,116,115,46,78,114,4,0,0,0, +- 41,2,114,11,1,0,0,114,158,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,218,8,103,101,116, +- 95,99,111,100,101,19,5,0,0,115,2,0,0,0,0,4, +- 122,24,66,117,105,108,116,105,110,73,109,112,111,114,116,101, +- 114,46,103,101,116,95,99,111,100,101,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,1,0,0,0,67,0,0,0,115, +- 4,0,0,0,100,1,0,83,41,2,122,56,82,101,116,117, +- 114,110,32,78,111,110,101,32,97,115,32,98,117,105,108,116, +- 45,105,110,32,109,111,100,117,108,101,115,32,100,111,32,110, +- 111,116,32,104,97,118,101,32,115,111,117,114,99,101,32,99, +- 111,100,101,46,78,114,4,0,0,0,41,2,114,11,1,0, +- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,218,10,103,101,116,95,115,111,117,114,99, +- 101,25,5,0,0,115,2,0,0,0,0,4,122,26,66,117, +- 105,108,116,105,110,73,109,112,111,114,116,101,114,46,103,101, +- 116,95,115,111,117,114,99,101,99,2,0,0,0,0,0,0, ++ 32,100,111,32,110,111,116,32,104,97,118,101,32,115,111,117, ++ 114,99,101,32,99,111,100,101,46,78,114,5,0,0,0,41, ++ 2,114,12,1,0,0,114,159,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,218,10,103,101,116,95, ++ 115,111,117,114,99,101,25,5,0,0,115,2,0,0,0,0, ++ 4,122,26,66,117,105,108,116,105,110,73,109,112,111,114,116, ++ 101,114,46,103,101,116,95,115,111,117,114,99,101,99,2,0, ++ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, ++ 0,0,115,4,0,0,0,100,1,0,83,41,2,122,52,82, ++ 101,116,117,114,110,32,70,97,108,115,101,32,97,115,32,98, ++ 117,105,108,116,45,105,110,32,109,111,100,117,108,101,115,32, ++ 97,114,101,32,110,101,118,101,114,32,112,97,99,107,97,103, ++ 101,115,46,70,114,5,0,0,0,41,2,114,12,1,0,0, ++ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,220,0,0,0,31,5,0,0,115,2,0, ++ 0,0,0,4,122,26,66,117,105,108,116,105,110,73,109,112, ++ 111,114,116,101,114,46,105,115,95,112,97,99,107,97,103,101, ++ 41,14,114,58,0,0,0,114,57,0,0,0,114,59,0,0, ++ 0,114,60,0,0,0,218,12,115,116,97,116,105,99,109,101, ++ 116,104,111,100,114,206,0,0,0,218,11,99,108,97,115,115, ++ 109,101,116,104,111,100,114,14,1,0,0,114,15,1,0,0, ++ 114,162,0,0,0,114,5,1,0,0,114,16,1,0,0,114, ++ 17,1,0,0,114,220,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,11,1, ++ 0,0,224,4,0,0,115,28,0,0,0,12,7,6,2,18, ++ 9,3,1,21,8,3,1,18,11,3,1,21,11,3,1,21, ++ 5,3,1,21,5,3,1,114,11,1,0,0,99,0,0,0, ++ 0,0,0,0,0,0,0,0,0,5,0,0,0,64,0,0, ++ 0,115,193,0,0,0,101,0,0,90,1,0,100,0,0,90, ++ 2,0,100,1,0,90,3,0,101,4,0,100,2,0,100,3, ++ 0,132,0,0,131,1,0,90,5,0,101,6,0,100,4,0, ++ 100,4,0,100,5,0,100,6,0,132,2,0,131,1,0,90, ++ 7,0,101,6,0,100,4,0,100,7,0,100,8,0,132,1, ++ 0,131,1,0,90,8,0,101,4,0,100,9,0,100,10,0, ++ 132,0,0,131,1,0,90,9,0,101,6,0,100,11,0,100, ++ 12,0,132,0,0,131,1,0,90,10,0,101,6,0,101,11, ++ 0,100,13,0,100,14,0,132,0,0,131,1,0,131,1,0, ++ 90,12,0,101,6,0,101,11,0,100,15,0,100,16,0,132, ++ 0,0,131,1,0,131,1,0,90,13,0,101,6,0,101,11, ++ 0,100,17,0,100,18,0,132,0,0,131,1,0,131,1,0, ++ 90,14,0,100,4,0,83,41,19,218,14,70,114,111,122,101, ++ 110,73,109,112,111,114,116,101,114,122,142,77,101,116,97,32, ++ 112,97,116,104,32,105,109,112,111,114,116,32,102,111,114,32, ++ 102,114,111,122,101,110,32,109,111,100,117,108,101,115,46,10, ++ 10,32,32,32,32,65,108,108,32,109,101,116,104,111,100,115, ++ 32,97,114,101,32,101,105,116,104,101,114,32,99,108,97,115, ++ 115,32,111,114,32,115,116,97,116,105,99,32,109,101,116,104, ++ 111,100,115,32,116,111,32,97,118,111,105,100,32,116,104,101, ++ 32,110,101,101,100,32,116,111,10,32,32,32,32,105,110,115, ++ 116,97,110,116,105,97,116,101,32,116,104,101,32,99,108,97, ++ 115,115,46,10,10,32,32,32,32,99,1,0,0,0,0,0, ++ 0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,16, ++ 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, ++ 1,0,83,41,2,122,115,82,101,116,117,114,110,32,114,101, ++ 112,114,32,102,111,114,32,116,104,101,32,109,111,100,117,108, ++ 101,46,10,10,32,32,32,32,32,32,32,32,84,104,101,32, ++ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, ++ 97,116,101,100,46,32,32,84,104,101,32,105,109,112,111,114, ++ 116,32,109,97,99,104,105,110,101,114,121,32,100,111,101,115, ++ 32,116,104,101,32,106,111,98,32,105,116,115,101,108,102,46, ++ 10,10,32,32,32,32,32,32,32,32,122,22,60,109,111,100, ++ 117,108,101,32,123,33,114,125,32,40,102,114,111,122,101,110, ++ 41,62,41,2,114,48,0,0,0,114,58,0,0,0,41,1, ++ 218,1,109,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,206,0,0,0,47,5,0,0,115,2,0,0,0, ++ 0,7,122,26,70,114,111,122,101,110,73,109,112,111,114,116, ++ 101,114,46,109,111,100,117,108,101,95,114,101,112,114,78,99, ++ 4,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0, ++ 67,0,0,0,115,42,0,0,0,116,0,0,106,1,0,124, ++ 1,0,131,1,0,114,34,0,116,2,0,124,1,0,124,0, ++ 0,100,1,0,100,2,0,131,2,1,83,100,0,0,83,100, ++ 0,0,83,41,3,78,114,218,0,0,0,90,6,102,114,111, ++ 122,101,110,41,3,114,107,0,0,0,114,163,0,0,0,114, ++ 174,0,0,0,41,4,114,12,1,0,0,114,159,0,0,0, ++ 114,36,0,0,0,114,13,1,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,14,1,0,0,56,5, ++ 0,0,115,6,0,0,0,0,2,15,1,19,2,122,24,70, ++ 114,111,122,101,110,73,109,112,111,114,116,101,114,46,102,105, ++ 110,100,95,115,112,101,99,99,3,0,0,0,0,0,0,0, ++ 3,0,0,0,2,0,0,0,67,0,0,0,115,23,0,0, ++ 0,116,0,0,106,1,0,124,1,0,131,1,0,114,19,0, ++ 124,0,0,83,100,1,0,83,41,2,122,93,70,105,110,100, ++ 32,97,32,102,114,111,122,101,110,32,109,111,100,117,108,101, ++ 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, ++ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, ++ 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, ++ 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, ++ 10,32,32,32,32,32,32,32,32,78,41,2,114,107,0,0, ++ 0,114,163,0,0,0,41,3,114,12,1,0,0,114,159,0, ++ 0,0,114,36,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,15,1,0,0,63,5,0,0,115, ++ 2,0,0,0,0,7,122,26,70,114,111,122,101,110,73,109, ++ 112,111,114,116,101,114,46,102,105,110,100,95,109,111,100,117, ++ 108,101,99,1,0,0,0,0,0,0,0,3,0,0,0,4, ++ 0,0,0,67,0,0,0,115,95,0,0,0,124,0,0,106, ++ 0,0,106,1,0,125,1,0,116,2,0,106,3,0,124,1, ++ 0,131,1,0,115,57,0,116,4,0,100,1,0,106,5,0, ++ 124,1,0,131,1,0,100,2,0,124,1,0,131,1,1,130, ++ 1,0,110,0,0,116,6,0,116,2,0,106,7,0,124,1, ++ 0,131,2,0,125,2,0,116,8,0,124,2,0,124,0,0, ++ 106,9,0,131,2,0,1,100,0,0,83,41,3,78,122,27, ++ 123,33,114,125,32,105,115,32,110,111,116,32,97,32,102,114, ++ 111,122,101,110,32,109,111,100,117,108,101,114,68,0,0,0, ++ 41,10,114,209,0,0,0,114,68,0,0,0,114,107,0,0, ++ 0,114,163,0,0,0,114,154,0,0,0,114,48,0,0,0, ++ 114,115,0,0,0,218,17,103,101,116,95,102,114,111,122,101, ++ 110,95,111,98,106,101,99,116,114,176,0,0,0,114,64,0, ++ 0,0,41,3,114,180,0,0,0,114,68,0,0,0,114,195, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,2,1,0,0,72,5,0,0,115,12,0,0,0, ++ 0,2,12,1,15,1,18,1,12,1,18,1,122,26,70,114, ++ 111,122,101,110,73,109,112,111,114,116,101,114,46,101,120,101, ++ 99,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, ++ 0,2,0,0,0,3,0,0,0,67,0,0,0,115,13,0, ++ 0,0,116,0,0,124,0,0,124,1,0,131,2,0,83,41, ++ 1,122,95,76,111,97,100,32,97,32,102,114,111,122,101,110, ++ 32,109,111,100,117,108,101,46,10,10,32,32,32,32,32,32, ++ 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115, ++ 32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,115, ++ 101,32,101,120,101,99,95,109,111,100,117,108,101,40,41,32, ++ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, ++ 32,32,41,1,114,181,0,0,0,41,2,114,12,1,0,0, ++ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,5,1,0,0,81,5,0,0,115,2,0, ++ 0,0,0,7,122,26,70,114,111,122,101,110,73,109,112,111, ++ 114,116,101,114,46,108,111,97,100,95,109,111,100,117,108,101, ++ 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, ++ 0,67,0,0,0,115,13,0,0,0,116,0,0,106,1,0, ++ 124,1,0,131,1,0,83,41,1,122,45,82,101,116,117,114, ++ 110,32,116,104,101,32,99,111,100,101,32,111,98,106,101,99, ++ 116,32,102,111,114,32,116,104,101,32,102,114,111,122,101,110, ++ 32,109,111,100,117,108,101,46,41,2,114,107,0,0,0,114, ++ 22,1,0,0,41,2,114,12,1,0,0,114,159,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 16,1,0,0,90,5,0,0,115,2,0,0,0,0,4,122, ++ 23,70,114,111,122,101,110,73,109,112,111,114,116,101,114,46, ++ 103,101,116,95,99,111,100,101,99,2,0,0,0,0,0,0, + 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, +- 0,0,100,1,0,83,41,2,122,52,82,101,116,117,114,110, +- 32,70,97,108,115,101,32,97,115,32,98,117,105,108,116,45, +- 105,110,32,109,111,100,117,108,101,115,32,97,114,101,32,110, +- 101,118,101,114,32,112,97,99,107,97,103,101,115,46,70,114, +- 4,0,0,0,41,2,114,11,1,0,0,114,158,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 219,0,0,0,31,5,0,0,115,2,0,0,0,0,4,122, +- 26,66,117,105,108,116,105,110,73,109,112,111,114,116,101,114, +- 46,105,115,95,112,97,99,107,97,103,101,41,14,114,57,0, +- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, +- 0,218,12,115,116,97,116,105,99,109,101,116,104,111,100,114, +- 205,0,0,0,218,11,99,108,97,115,115,109,101,116,104,111, +- 100,114,13,1,0,0,114,14,1,0,0,114,161,0,0,0, +- 114,4,1,0,0,114,15,1,0,0,114,16,1,0,0,114, +- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,10,1,0,0,224,4,0, +- 0,115,28,0,0,0,12,7,6,2,18,9,3,1,21,8, +- 3,1,18,11,3,1,21,11,3,1,21,5,3,1,21,5, +- 3,1,114,10,1,0,0,99,0,0,0,0,0,0,0,0, +- 0,0,0,0,5,0,0,0,64,0,0,0,115,193,0,0, ++ 0,0,100,1,0,83,41,2,122,54,82,101,116,117,114,110, ++ 32,78,111,110,101,32,97,115,32,102,114,111,122,101,110,32, ++ 109,111,100,117,108,101,115,32,100,111,32,110,111,116,32,104, ++ 97,118,101,32,115,111,117,114,99,101,32,99,111,100,101,46, ++ 78,114,5,0,0,0,41,2,114,12,1,0,0,114,159,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,17,1,0,0,96,5,0,0,115,2,0,0,0,0, ++ 4,122,25,70,114,111,122,101,110,73,109,112,111,114,116,101, ++ 114,46,103,101,116,95,115,111,117,114,99,101,99,2,0,0, ++ 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, ++ 0,115,13,0,0,0,116,0,0,106,1,0,124,1,0,131, ++ 1,0,83,41,1,122,46,82,101,116,117,114,110,32,84,114, ++ 117,101,32,105,102,32,116,104,101,32,102,114,111,122,101,110, ++ 32,109,111,100,117,108,101,32,105,115,32,97,32,112,97,99, ++ 107,97,103,101,46,41,2,114,107,0,0,0,90,17,105,115, ++ 95,102,114,111,122,101,110,95,112,97,99,107,97,103,101,41, ++ 2,114,12,1,0,0,114,159,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,220,0,0,0,102, ++ 5,0,0,115,2,0,0,0,0,4,122,25,70,114,111,122, ++ 101,110,73,109,112,111,114,116,101,114,46,105,115,95,112,97, ++ 99,107,97,103,101,41,15,114,58,0,0,0,114,57,0,0, ++ 0,114,59,0,0,0,114,60,0,0,0,114,18,1,0,0, ++ 114,206,0,0,0,114,19,1,0,0,114,14,1,0,0,114, ++ 15,1,0,0,114,2,1,0,0,114,5,1,0,0,114,165, ++ 0,0,0,114,16,1,0,0,114,17,1,0,0,114,220,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,20,1,0,0,38,5,0,0,115, ++ 28,0,0,0,12,7,6,2,18,9,3,1,21,6,3,1, ++ 18,8,18,9,18,9,3,1,21,5,3,1,21,5,3,1, ++ 114,20,1,0,0,99,0,0,0,0,0,0,0,0,0,0, ++ 0,0,5,0,0,0,64,0,0,0,115,121,0,0,0,101, ++ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, ++ 0,100,2,0,90,4,0,100,3,0,90,5,0,100,4,0, ++ 90,6,0,101,7,0,100,5,0,100,6,0,132,0,0,131, ++ 1,0,90,8,0,101,7,0,100,7,0,100,8,0,132,0, ++ 0,131,1,0,90,9,0,101,7,0,100,9,0,100,9,0, ++ 100,10,0,100,11,0,132,2,0,131,1,0,90,10,0,101, ++ 7,0,100,9,0,100,12,0,100,13,0,132,1,0,131,1, ++ 0,90,11,0,100,9,0,83,41,14,218,21,87,105,110,100, ++ 111,119,115,82,101,103,105,115,116,114,121,70,105,110,100,101, ++ 114,122,62,77,101,116,97,32,112,97,116,104,32,102,105,110, ++ 100,101,114,32,102,111,114,32,109,111,100,117,108,101,115,32, ++ 100,101,99,108,97,114,101,100,32,105,110,32,116,104,101,32, ++ 87,105,110,100,111,119,115,32,114,101,103,105,115,116,114,121, ++ 46,122,59,83,111,102,116,119,97,114,101,92,80,121,116,104, ++ 111,110,92,80,121,116,104,111,110,67,111,114,101,92,123,115, ++ 121,115,95,118,101,114,115,105,111,110,125,92,77,111,100,117, ++ 108,101,115,92,123,102,117,108,108,110,97,109,101,125,122,65, ++ 83,111,102,116,119,97,114,101,92,80,121,116,104,111,110,92, ++ 80,121,116,104,111,110,67,111,114,101,92,123,115,121,115,95, ++ 118,101,114,115,105,111,110,125,92,77,111,100,117,108,101,115, ++ 92,123,102,117,108,108,110,97,109,101,125,92,68,101,98,117, ++ 103,70,99,2,0,0,0,0,0,0,0,2,0,0,0,11, ++ 0,0,0,67,0,0,0,115,67,0,0,0,121,23,0,116, ++ 0,0,106,1,0,116,0,0,106,2,0,124,1,0,131,2, ++ 0,83,87,110,37,0,4,116,3,0,107,10,0,114,62,0, ++ 1,1,1,116,0,0,106,1,0,116,0,0,106,4,0,124, ++ 1,0,131,2,0,83,89,110,1,0,88,100,0,0,83,41, ++ 1,78,41,5,218,7,95,119,105,110,114,101,103,90,7,79, ++ 112,101,110,75,101,121,90,17,72,75,69,89,95,67,85,82, ++ 82,69,78,84,95,85,83,69,82,114,41,0,0,0,90,18, ++ 72,75,69,89,95,76,79,67,65,76,95,77,65,67,72,73, ++ 78,69,41,2,114,12,1,0,0,218,3,107,101,121,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,14,95, ++ 111,112,101,110,95,114,101,103,105,115,116,114,121,121,5,0, ++ 0,115,8,0,0,0,0,2,3,1,23,1,13,1,122,36, ++ 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, ++ 105,110,100,101,114,46,95,111,112,101,110,95,114,101,103,105, ++ 115,116,114,121,99,2,0,0,0,0,0,0,0,6,0,0, ++ 0,16,0,0,0,67,0,0,0,115,142,0,0,0,124,0, ++ 0,106,0,0,114,21,0,124,0,0,106,1,0,125,2,0, ++ 110,9,0,124,0,0,106,2,0,125,2,0,124,2,0,106, ++ 3,0,100,1,0,124,1,0,100,2,0,116,4,0,106,5, ++ 0,100,0,0,100,3,0,133,2,0,25,131,0,2,125,3, ++ 0,121,46,0,124,0,0,106,6,0,124,3,0,131,1,0, ++ 143,25,0,125,4,0,116,7,0,106,8,0,124,4,0,100, ++ 4,0,131,2,0,125,5,0,87,100,0,0,81,88,87,110, ++ 22,0,4,116,9,0,107,10,0,114,137,0,1,1,1,100, + 0,0,83,89,110,1,0,88,124,5,0,83,41,5,78,114, -+ 127,0,0,0,90,11,115,121,115,95,118,101,114,115,105,111, -+ 110,114,81,0,0,0,114,31,0,0,0,41,10,218,11,68, ++ 159,0,0,0,90,11,115,121,115,95,118,101,114,115,105,111, ++ 110,114,137,0,0,0,114,31,0,0,0,41,10,218,11,68, + 69,66,85,71,95,66,85,73,76,68,218,18,82,69,71,73, + 83,84,82,89,95,75,69,89,95,68,69,66,85,71,218,12, + 82,69,71,73,83,84,82,89,95,75,69,89,114,48,0,0, + 0,114,8,0,0,0,218,7,118,101,114,115,105,111,110,114, -+ 173,0,0,0,114,170,0,0,0,90,10,81,117,101,114,121, -+ 86,97,108,117,101,114,41,0,0,0,41,6,114,171,0,0, -+ 0,114,127,0,0,0,90,12,114,101,103,105,115,116,114,121, -+ 95,107,101,121,114,172,0,0,0,90,4,104,107,101,121,218, ++ 26,1,0,0,114,24,1,0,0,90,10,81,117,101,114,121, ++ 86,97,108,117,101,114,41,0,0,0,41,6,114,12,1,0, ++ 0,114,159,0,0,0,90,12,114,101,103,105,115,116,114,121, ++ 95,107,101,121,114,25,1,0,0,90,4,104,107,101,121,218, + 8,102,105,108,101,112,97,116,104,114,5,0,0,0,114,5, + 0,0,0,114,6,0,0,0,218,16,95,115,101,97,114,99, -+ 104,95,114,101,103,105,115,116,114,121,83,2,0,0,115,22, ++ 104,95,114,101,103,105,115,116,114,121,128,5,0,0,115,22, + 0,0,0,0,2,9,1,12,2,9,1,15,1,22,1,3, -+ 1,18,1,29,1,13,1,9,1,122,38,87,105,110,100,111, ++ 1,18,1,28,1,13,1,9,1,122,38,87,105,110,100,111, + 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, + 46,95,115,101,97,114,99,104,95,114,101,103,105,115,116,114, + 121,78,99,4,0,0,0,0,0,0,0,8,0,0,0,14, -+ 0,0,0,67,0,0,0,115,158,0,0,0,124,0,0,106, ++ 0,0,0,67,0,0,0,115,155,0,0,0,124,0,0,106, + 0,0,124,1,0,131,1,0,125,4,0,124,4,0,100,0, + 0,107,8,0,114,31,0,100,0,0,83,121,14,0,116,1, + 0,124,4,0,131,1,0,1,87,110,22,0,4,116,2,0, + 107,10,0,114,69,0,1,1,1,100,0,0,83,89,110,1, -+ 0,88,120,81,0,116,3,0,131,0,0,68,93,70,0,92, ++ 0,88,120,78,0,116,3,0,131,0,0,68,93,67,0,92, + 2,0,125,5,0,125,6,0,124,4,0,106,4,0,116,5, + 0,124,6,0,131,1,0,131,1,0,114,80,0,116,6,0, -+ 106,7,0,124,1,0,124,5,0,124,1,0,124,4,0,131, -+ 2,0,100,1,0,124,4,0,131,2,1,125,7,0,124,7, -+ 0,83,113,80,0,87,100,0,0,83,41,2,78,114,159,0, -+ 0,0,41,8,114,179,0,0,0,114,40,0,0,0,114,41, -+ 0,0,0,114,162,0,0,0,114,93,0,0,0,114,94,0, -+ 0,0,114,122,0,0,0,218,16,115,112,101,99,95,102,114, -+ 111,109,95,108,111,97,100,101,114,41,8,114,171,0,0,0, -+ 114,127,0,0,0,114,36,0,0,0,218,6,116,97,114,103, -+ 101,116,114,178,0,0,0,114,128,0,0,0,114,167,0,0, -+ 0,114,165,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,9,102,105,110,100,95,115,112,101,99, -+ 98,2,0,0,115,26,0,0,0,0,2,15,1,12,1,4, -+ 1,3,1,14,1,13,1,9,1,22,1,21,1,9,1,15, ++ 124,1,0,124,5,0,124,1,0,124,4,0,131,2,0,100, ++ 1,0,124,4,0,131,2,1,125,7,0,124,7,0,83,113, ++ 80,0,87,100,0,0,83,41,2,78,114,218,0,0,0,41, ++ 7,114,32,1,0,0,114,40,0,0,0,114,41,0,0,0, ++ 114,241,0,0,0,114,231,0,0,0,114,232,0,0,0,114, ++ 174,0,0,0,41,8,114,12,1,0,0,114,159,0,0,0, ++ 114,36,0,0,0,114,13,1,0,0,114,31,1,0,0,114, ++ 170,0,0,0,114,128,0,0,0,114,178,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,14,1, ++ 0,0,143,5,0,0,115,24,0,0,0,0,2,15,1,12, ++ 1,4,1,3,1,14,1,13,1,9,1,22,1,21,1,21, + 1,9,1,122,31,87,105,110,100,111,119,115,82,101,103,105, + 115,116,114,121,70,105,110,100,101,114,46,102,105,110,100,95, + 115,112,101,99,99,3,0,0,0,0,0,0,0,4,0,0, @@ -31234,1478 +35707,1919 @@ diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h + 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, + 97,116,101,100,46,32,32,85,115,101,32,101,120,101,99,95, + 109,111,100,117,108,101,40,41,32,105,110,115,116,101,97,100, -+ 46,10,10,32,32,32,32,32,32,32,32,78,41,2,114,182, -+ 0,0,0,114,128,0,0,0,41,4,114,171,0,0,0,114, -+ 127,0,0,0,114,36,0,0,0,114,165,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,11,102, -+ 105,110,100,95,109,111,100,117,108,101,114,2,0,0,115,8, -+ 0,0,0,0,7,18,1,12,1,7,2,122,33,87,105,110, -+ 100,111,119,115,82,101,103,105,115,116,114,121,70,105,110,100, -+ 101,114,46,102,105,110,100,95,109,111,100,117,108,101,41,12, -+ 114,113,0,0,0,114,112,0,0,0,114,114,0,0,0,114, -+ 115,0,0,0,114,176,0,0,0,114,175,0,0,0,114,174, -+ 0,0,0,218,11,99,108,97,115,115,109,101,116,104,111,100, -+ 114,173,0,0,0,114,179,0,0,0,114,182,0,0,0,114, -+ 183,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,169,0,0,0,64,2,0, ++ 46,10,10,32,32,32,32,32,32,32,32,78,41,2,114,14, ++ 1,0,0,114,170,0,0,0,41,4,114,12,1,0,0,114, ++ 159,0,0,0,114,36,0,0,0,114,178,0,0,0,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,15,1, ++ 0,0,158,5,0,0,115,8,0,0,0,0,7,18,1,12, ++ 1,7,2,122,33,87,105,110,100,111,119,115,82,101,103,105, ++ 115,116,114,121,70,105,110,100,101,114,46,102,105,110,100,95, ++ 109,111,100,117,108,101,41,12,114,58,0,0,0,114,57,0, ++ 0,0,114,59,0,0,0,114,60,0,0,0,114,29,1,0, ++ 0,114,28,1,0,0,114,27,1,0,0,114,19,1,0,0, ++ 114,26,1,0,0,114,32,1,0,0,114,14,1,0,0,114, ++ 15,1,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,23,1,0,0,109,5,0, + 0,115,20,0,0,0,12,2,6,3,6,3,6,2,6,2, -+ 18,7,18,15,3,1,21,15,3,1,114,169,0,0,0,99, ++ 18,7,18,15,3,1,21,14,3,1,114,23,1,0,0,99, + 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, -+ 64,0,0,0,115,70,0,0,0,101,0,0,90,1,0,100, ++ 64,0,0,0,115,52,0,0,0,101,0,0,90,1,0,100, + 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, + 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, -+ 90,5,0,100,6,0,100,7,0,132,0,0,90,6,0,100, -+ 8,0,100,9,0,132,0,0,90,7,0,100,10,0,83,41, -+ 11,218,13,95,76,111,97,100,101,114,66,97,115,105,99,115, -+ 122,83,66,97,115,101,32,99,108,97,115,115,32,111,102,32, -+ 99,111,109,109,111,110,32,99,111,100,101,32,110,101,101,100, -+ 101,100,32,98,121,32,98,111,116,104,32,83,111,117,114,99, -+ 101,76,111,97,100,101,114,32,97,110,100,10,32,32,32,32, -+ 83,111,117,114,99,101,108,101,115,115,70,105,108,101,76,111, -+ 97,100,101,114,46,99,2,0,0,0,0,0,0,0,5,0, -+ 0,0,3,0,0,0,67,0,0,0,115,88,0,0,0,116, -+ 0,0,124,0,0,106,1,0,124,1,0,131,1,0,131,1, -+ 0,100,1,0,25,125,2,0,124,2,0,106,2,0,100,2, -+ 0,100,1,0,131,2,0,100,3,0,25,125,3,0,124,1, -+ 0,106,3,0,100,2,0,131,1,0,100,4,0,25,125,4, -+ 0,124,3,0,100,5,0,107,2,0,111,87,0,124,4,0, -+ 100,5,0,107,3,0,83,41,6,122,141,67,111,110,99,114, -+ 101,116,101,32,105,109,112,108,101,109,101,110,116,97,116,105, -+ 111,110,32,111,102,32,73,110,115,112,101,99,116,76,111,97, -+ 100,101,114,46,105,115,95,112,97,99,107,97,103,101,32,98, -+ 121,32,99,104,101,99,107,105,110,103,32,105,102,10,32,32, -+ 32,32,32,32,32,32,116,104,101,32,112,97,116,104,32,114, -+ 101,116,117,114,110,101,100,32,98,121,32,103,101,116,95,102, -+ 105,108,101,110,97,109,101,32,104,97,115,32,97,32,102,105, -+ 108,101,110,97,109,101,32,111,102,32,39,95,95,105,110,105, -+ 116,95,95,46,112,121,39,46,114,30,0,0,0,114,59,0, -+ 0,0,114,60,0,0,0,114,57,0,0,0,218,8,95,95, -+ 105,110,105,116,95,95,41,4,114,39,0,0,0,114,158,0, -+ 0,0,114,35,0,0,0,114,33,0,0,0,41,5,114,109, -+ 0,0,0,114,127,0,0,0,114,95,0,0,0,90,13,102, -+ 105,108,101,110,97,109,101,95,98,97,115,101,90,9,116,97, -+ 105,108,95,110,97,109,101,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,160,0,0,0,133,2,0,0,115, -+ 8,0,0,0,0,3,25,1,22,1,19,1,122,24,95,76, -+ 111,97,100,101,114,66,97,115,105,99,115,46,105,115,95,112, -+ 97,99,107,97,103,101,99,2,0,0,0,0,0,0,0,2, -+ 0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,0, -+ 100,1,0,83,41,2,122,42,85,115,101,32,100,101,102,97, -+ 117,108,116,32,115,101,109,97,110,116,105,99,115,32,102,111, -+ 114,32,109,111,100,117,108,101,32,99,114,101,97,116,105,111, -+ 110,46,78,114,5,0,0,0,41,2,114,109,0,0,0,114, -+ 165,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,218,13,99,114,101,97,116,101,95,109,111,100,117, -+ 108,101,141,2,0,0,115,0,0,0,0,122,27,95,76,111, -+ 97,100,101,114,66,97,115,105,99,115,46,99,114,101,97,116, -+ 101,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, -+ 0,3,0,0,0,4,0,0,0,67,0,0,0,115,80,0, -+ 0,0,124,0,0,106,0,0,124,1,0,106,1,0,131,1, -+ 0,125,2,0,124,2,0,100,1,0,107,8,0,114,54,0, -+ 116,2,0,100,2,0,106,3,0,124,1,0,106,1,0,131, -+ 1,0,131,1,0,130,1,0,116,4,0,106,5,0,116,6, -+ 0,124,2,0,124,1,0,106,7,0,131,3,0,1,100,1, -+ 0,83,41,3,122,19,69,120,101,99,117,116,101,32,116,104, -+ 101,32,109,111,100,117,108,101,46,78,122,52,99,97,110,110, -+ 111,116,32,108,111,97,100,32,109,111,100,117,108,101,32,123, -+ 33,114,125,32,119,104,101,110,32,103,101,116,95,99,111,100, -+ 101,40,41,32,114,101,116,117,114,110,115,32,78,111,110,101, -+ 41,8,218,8,103,101,116,95,99,111,100,101,114,113,0,0, -+ 0,114,108,0,0,0,114,48,0,0,0,114,122,0,0,0, -+ 218,25,95,99,97,108,108,95,119,105,116,104,95,102,114,97, -+ 109,101,115,95,114,101,109,111,118,101,100,218,4,101,120,101, -+ 99,114,119,0,0,0,41,3,114,109,0,0,0,218,6,109, -+ 111,100,117,108,101,114,147,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,11,101,120,101,99,95, -+ 109,111,100,117,108,101,144,2,0,0,115,10,0,0,0,0, -+ 2,18,1,12,1,9,1,15,1,122,25,95,76,111,97,100, -+ 101,114,66,97,115,105,99,115,46,101,120,101,99,95,109,111, -+ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, -+ 0,3,0,0,0,67,0,0,0,115,16,0,0,0,116,0, -+ 0,106,1,0,124,0,0,124,1,0,131,2,0,83,41,1, -+ 78,41,2,114,122,0,0,0,218,17,95,108,111,97,100,95, -+ 109,111,100,117,108,101,95,115,104,105,109,41,2,114,109,0, -+ 0,0,114,127,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,218,11,108,111,97,100,95,109,111,100, -+ 117,108,101,152,2,0,0,115,2,0,0,0,0,1,122,25, -+ 95,76,111,97,100,101,114,66,97,115,105,99,115,46,108,111, -+ 97,100,95,109,111,100,117,108,101,78,41,8,114,113,0,0, -+ 0,114,112,0,0,0,114,114,0,0,0,114,115,0,0,0, -+ 114,160,0,0,0,114,187,0,0,0,114,192,0,0,0,114, -+ 194,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,185,0,0,0,128,2,0, -+ 0,115,10,0,0,0,12,3,6,2,12,8,12,3,12,8, -+ 114,185,0,0,0,99,0,0,0,0,0,0,0,0,0,0, -+ 0,0,4,0,0,0,64,0,0,0,115,106,0,0,0,101, -+ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,100,2, -+ 0,132,0,0,90,3,0,100,3,0,100,4,0,132,0,0, -+ 90,4,0,100,5,0,100,6,0,132,0,0,90,5,0,100, -+ 7,0,100,8,0,132,0,0,90,6,0,100,9,0,100,10, -+ 0,132,0,0,90,7,0,100,11,0,100,18,0,100,13,0, -+ 100,14,0,132,0,1,90,8,0,100,15,0,100,16,0,132, -+ 0,0,90,9,0,100,17,0,83,41,19,218,12,83,111,117, -+ 114,99,101,76,111,97,100,101,114,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,10, -+ 0,0,0,116,0,0,130,1,0,100,1,0,83,41,2,122, -+ 178,79,112,116,105,111,110,97,108,32,109,101,116,104,111,100, -+ 32,116,104,97,116,32,114,101,116,117,114,110,115,32,116,104, -+ 101,32,109,111,100,105,102,105,99,97,116,105,111,110,32,116, -+ 105,109,101,32,40,97,110,32,105,110,116,41,32,102,111,114, -+ 32,116,104,101,10,32,32,32,32,32,32,32,32,115,112,101, -+ 99,105,102,105,101,100,32,112,97,116,104,44,32,119,104,101, -+ 114,101,32,112,97,116,104,32,105,115,32,97,32,115,116,114, -+ 46,10,10,32,32,32,32,32,32,32,32,82,97,105,115,101, - 115,32,73,79,69,114,114,111,114,32,119,104,101,110,32,116, - 104,101,32,112,97,116,104,32,99,97,110,110,111,116,32,98, - 101,32,104,97,110,100,108,101,100,46,10,32,32,32,32,32, -- 32,32,32,114,133,0,0,0,41,1,114,196,0,0,0,41, -- 2,114,108,0,0,0,114,35,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,10,112,97,116,104, -- 95,115,116,97,116,115,166,2,0,0,115,2,0,0,0,0, -- 11,122,23,83,111,117,114,99,101,76,111,97,100,101,114,46, -- 112,97,116,104,95,115,116,97,116,115,99,4,0,0,0,0, -- 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, -- 16,0,0,0,124,0,0,106,0,0,124,2,0,124,3,0, -- 131,2,0,83,41,1,122,228,79,112,116,105,111,110,97,108, -- 32,109,101,116,104,111,100,32,119,104,105,99,104,32,119,114, -- 105,116,101,115,32,100,97,116,97,32,40,98,121,116,101,115, -- 41,32,116,111,32,97,32,102,105,108,101,32,112,97,116,104, -- 32,40,97,32,115,116,114,41,46,10,10,32,32,32,32,32, -- 32,32,32,73,109,112,108,101,109,101,110,116,105,110,103,32, -- 116,104,105,115,32,109,101,116,104,111,100,32,97,108,108,111, -- 119,115,32,102,111,114,32,116,104,101,32,119,114,105,116,105, -- 110,103,32,111,102,32,98,121,116,101,99,111,100,101,32,102, -- 105,108,101,115,46,10,10,32,32,32,32,32,32,32,32,84, -- 104,101,32,115,111,117,114,99,101,32,112,97,116,104,32,105, -- 115,32,110,101,101,100,101,100,32,105,110,32,111,114,100,101, -- 114,32,116,111,32,99,111,114,114,101,99,116,108,121,32,116, -- 114,97,110,115,102,101,114,32,112,101,114,109,105,115,115,105, -- 111,110,115,10,32,32,32,32,32,32,32,32,41,1,218,8, -- 115,101,116,95,100,97,116,97,41,4,114,108,0,0,0,114, -- 90,0,0,0,90,10,99,97,99,104,101,95,112,97,116,104, -- 114,53,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,15,95,99,97,99,104,101,95,98,121,116, -- 101,99,111,100,101,179,2,0,0,115,2,0,0,0,0,8, -- 122,28,83,111,117,114,99,101,76,111,97,100,101,114,46,95, -- 99,97,99,104,101,95,98,121,116,101,99,111,100,101,99,3, -- 0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,67, -- 0,0,0,115,4,0,0,0,100,1,0,83,41,2,122,150, -- 79,112,116,105,111,110,97,108,32,109,101,116,104,111,100,32, -- 119,104,105,99,104,32,119,114,105,116,101,115,32,100,97,116, -- 97,32,40,98,121,116,101,115,41,32,116,111,32,97,32,102, -- 105,108,101,32,112,97,116,104,32,40,97,32,115,116,114,41, -- 46,10,10,32,32,32,32,32,32,32,32,73,109,112,108,101, -- 109,101,110,116,105,110,103,32,116,104,105,115,32,109,101,116, -- 104,111,100,32,97,108,108,111,119,115,32,102,111,114,32,116, -- 104,101,32,119,114,105,116,105,110,103,32,111,102,32,98,121, -- 116,101,99,111,100,101,32,102,105,108,101,115,46,10,32,32, -- 32,32,32,32,32,32,78,114,4,0,0,0,41,3,114,108, -- 0,0,0,114,35,0,0,0,114,53,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,198,0,0, -- 0,189,2,0,0,115,0,0,0,0,122,21,83,111,117,114, -- 99,101,76,111,97,100,101,114,46,115,101,116,95,100,97,116, -- 97,99,2,0,0,0,0,0,0,0,5,0,0,0,16,0, -- 0,0,67,0,0,0,115,105,0,0,0,124,0,0,106,0, -- 0,124,1,0,131,1,0,125,2,0,121,19,0,124,0,0, -- 106,1,0,124,2,0,131,1,0,125,3,0,87,110,58,0, -- 4,116,2,0,107,10,0,114,94,0,1,125,4,0,1,122, -- 26,0,116,3,0,100,1,0,100,2,0,124,1,0,131,1, -- 1,124,4,0,130,2,0,87,89,100,3,0,100,3,0,125, -- 4,0,126,4,0,88,110,1,0,88,116,4,0,124,3,0, -- 131,1,0,83,41,4,122,52,67,111,110,99,114,101,116,101, -- 32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32, -- 111,102,32,73,110,115,112,101,99,116,76,111,97,100,101,114, -- 46,103,101,116,95,115,111,117,114,99,101,46,122,39,115,111, -- 117,114,99,101,32,110,111,116,32,97,118,97,105,108,97,98, -- 108,101,32,116,104,114,111,117,103,104,32,103,101,116,95,100, -- 97,116,97,40,41,114,106,0,0,0,78,41,5,114,157,0, -- 0,0,218,8,103,101,116,95,100,97,116,97,114,40,0,0, -- 0,114,107,0,0,0,114,155,0,0,0,41,5,114,108,0, -- 0,0,114,126,0,0,0,114,35,0,0,0,114,153,0,0, -- 0,218,3,101,120,99,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,10,103,101,116,95,115,111,117,114,99, -- 101,196,2,0,0,115,14,0,0,0,0,2,15,1,3,1, -- 19,1,18,1,9,1,31,1,122,23,83,111,117,114,99,101, -- 76,111,97,100,101,114,46,103,101,116,95,115,111,117,114,99, -- 101,218,9,95,111,112,116,105,109,105,122,101,114,29,0,0, -- 0,99,3,0,0,0,1,0,0,0,4,0,0,0,9,0, -- 0,0,67,0,0,0,115,34,0,0,0,116,0,0,106,1, -- 0,116,2,0,124,1,0,124,2,0,100,1,0,100,2,0, -- 100,3,0,100,4,0,124,3,0,131,4,2,83,41,5,122, -- 130,82,101,116,117,114,110,32,116,104,101,32,99,111,100,101, -- 32,111,98,106,101,99,116,32,99,111,109,112,105,108,101,100, -- 32,102,114,111,109,32,115,111,117,114,99,101,46,10,10,32, -- 32,32,32,32,32,32,32,84,104,101,32,39,100,97,116,97, -- 39,32,97,114,103,117,109,101,110,116,32,99,97,110,32,98, -- 101,32,97,110,121,32,111,98,106,101,99,116,32,116,121,112, -- 101,32,116,104,97,116,32,99,111,109,112,105,108,101,40,41, -- 32,115,117,112,112,111,114,116,115,46,10,32,32,32,32,32, -- 32,32,32,114,189,0,0,0,218,12,100,111,110,116,95,105, -- 110,104,101,114,105,116,84,114,68,0,0,0,41,3,114,121, -- 0,0,0,114,188,0,0,0,218,7,99,111,109,112,105,108, -- 101,41,4,114,108,0,0,0,114,53,0,0,0,114,35,0, -- 0,0,114,203,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,14,115,111,117,114,99,101,95,116, -- 111,95,99,111,100,101,206,2,0,0,115,4,0,0,0,0, -- 5,21,1,122,27,83,111,117,114,99,101,76,111,97,100,101, -- 114,46,115,111,117,114,99,101,95,116,111,95,99,111,100,101, -- 99,2,0,0,0,0,0,0,0,10,0,0,0,43,0,0, -- 0,67,0,0,0,115,174,1,0,0,124,0,0,106,0,0, -- 124,1,0,131,1,0,125,2,0,100,1,0,125,3,0,121, -- 16,0,116,1,0,124,2,0,131,1,0,125,4,0,87,110, -- 24,0,4,116,2,0,107,10,0,114,63,0,1,1,1,100, -- 1,0,125,4,0,89,110,202,0,88,121,19,0,124,0,0, -- 106,3,0,124,2,0,131,1,0,125,5,0,87,110,18,0, -- 4,116,4,0,107,10,0,114,103,0,1,1,1,89,110,162, -- 0,88,116,5,0,124,5,0,100,2,0,25,131,1,0,125, -- 3,0,121,19,0,124,0,0,106,6,0,124,4,0,131,1, -- 0,125,6,0,87,110,18,0,4,116,7,0,107,10,0,114, -- 159,0,1,1,1,89,110,106,0,88,121,34,0,116,8,0, -- 124,6,0,100,3,0,124,5,0,100,4,0,124,1,0,100, -- 5,0,124,4,0,131,1,3,125,7,0,87,110,24,0,4, -- 116,9,0,116,10,0,102,2,0,107,10,0,114,220,0,1, -- 1,1,89,110,45,0,88,116,11,0,100,6,0,124,4,0, -- 124,2,0,131,3,0,1,116,12,0,124,7,0,100,4,0, -- 124,1,0,100,7,0,124,4,0,100,8,0,124,2,0,131, -- 1,3,83,124,0,0,106,6,0,124,2,0,131,1,0,125, -- 8,0,124,0,0,106,13,0,124,8,0,124,2,0,131,2, -- 0,125,9,0,116,11,0,100,9,0,124,2,0,131,2,0, -- 1,116,14,0,106,15,0,12,114,170,1,124,4,0,100,1, -- 0,107,9,0,114,170,1,124,3,0,100,1,0,107,9,0, -- 114,170,1,116,16,0,124,9,0,124,3,0,116,17,0,124, -- 8,0,131,1,0,131,3,0,125,6,0,121,36,0,124,0, -- 0,106,18,0,124,2,0,124,4,0,124,6,0,131,3,0, -- 1,116,11,0,100,10,0,124,4,0,131,2,0,1,87,110, -- 18,0,4,116,2,0,107,10,0,114,169,1,1,1,1,89, -- 110,1,0,88,124,9,0,83,41,11,122,190,67,111,110,99, -- 114,101,116,101,32,105,109,112,108,101,109,101,110,116,97,116, -- 105,111,110,32,111,102,32,73,110,115,112,101,99,116,76,111, -- 97,100,101,114,46,103,101,116,95,99,111,100,101,46,10,10, -- 32,32,32,32,32,32,32,32,82,101,97,100,105,110,103,32, -- 111,102,32,98,121,116,101,99,111,100,101,32,114,101,113,117, -- 105,114,101,115,32,112,97,116,104,95,115,116,97,116,115,32, -- 116,111,32,98,101,32,105,109,112,108,101,109,101,110,116,101, -- 100,46,32,84,111,32,119,114,105,116,101,10,32,32,32,32, -- 32,32,32,32,98,121,116,101,99,111,100,101,44,32,115,101, -- 116,95,100,97,116,97,32,109,117,115,116,32,97,108,115,111, -- 32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46, -- 10,10,32,32,32,32,32,32,32,32,78,114,133,0,0,0, -- 114,138,0,0,0,114,106,0,0,0,114,35,0,0,0,122, -- 13,123,125,32,109,97,116,99,104,101,115,32,123,125,114,89, -- 0,0,0,114,90,0,0,0,122,19,99,111,100,101,32,111, -- 98,106,101,99,116,32,102,114,111,109,32,123,125,122,10,119, -- 114,111,116,101,32,123,33,114,125,41,19,114,157,0,0,0, -- 114,79,0,0,0,114,66,0,0,0,114,197,0,0,0,114, -- 195,0,0,0,114,14,0,0,0,114,200,0,0,0,114,40, -- 0,0,0,114,141,0,0,0,114,107,0,0,0,114,136,0, -- 0,0,114,105,0,0,0,114,147,0,0,0,114,206,0,0, -- 0,114,7,0,0,0,218,19,100,111,110,116,95,119,114,105, -- 116,101,95,98,121,116,101,99,111,100,101,114,150,0,0,0, -- 114,31,0,0,0,114,199,0,0,0,41,10,114,108,0,0, -- 0,114,126,0,0,0,114,90,0,0,0,114,139,0,0,0, -- 114,89,0,0,0,218,2,115,116,114,53,0,0,0,218,10, -- 98,121,116,101,115,95,100,97,116,97,114,153,0,0,0,90, -- 11,99,111,100,101,95,111,98,106,101,99,116,114,4,0,0, -- 0,114,4,0,0,0,114,5,0,0,0,114,187,0,0,0, -- 214,2,0,0,115,78,0,0,0,0,7,15,1,6,1,3, -- 1,16,1,13,1,11,2,3,1,19,1,13,1,5,2,16, -- 1,3,1,19,1,13,1,5,2,3,1,9,1,12,1,13, -- 1,19,1,5,2,9,1,7,1,15,1,6,1,7,1,15, -- 1,18,1,13,1,22,1,12,1,9,1,15,1,3,1,19, -- 1,17,1,13,1,5,1,122,21,83,111,117,114,99,101,76, -- 111,97,100,101,114,46,103,101,116,95,99,111,100,101,78,114, -- 87,0,0,0,41,10,114,112,0,0,0,114,111,0,0,0, -- 114,113,0,0,0,114,196,0,0,0,114,197,0,0,0,114, -- 199,0,0,0,114,198,0,0,0,114,202,0,0,0,114,206, -- 0,0,0,114,187,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,4,0,0,0,114,5,0,0,0,114,194,0,0, -- 0,156,2,0,0,115,14,0,0,0,12,2,12,8,12,13, -- 12,10,12,7,12,10,18,8,114,194,0,0,0,99,0,0, -- 0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0, -- 0,0,115,112,0,0,0,101,0,0,90,1,0,100,0,0, -- 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, -- 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, -- 0,100,6,0,100,7,0,132,0,0,90,6,0,101,7,0, -- 135,0,0,102,1,0,100,8,0,100,9,0,134,0,0,131, -- 1,0,90,8,0,101,7,0,100,10,0,100,11,0,132,0, -- 0,131,1,0,90,9,0,100,12,0,100,13,0,132,0,0, -- 90,10,0,135,0,0,83,41,14,218,10,70,105,108,101,76, -- 111,97,100,101,114,122,103,66,97,115,101,32,102,105,108,101, -- 32,108,111,97,100,101,114,32,99,108,97,115,115,32,119,104, -- 105,99,104,32,105,109,112,108,101,109,101,110,116,115,32,116, -- 104,101,32,108,111,97,100,101,114,32,112,114,111,116,111,99, -- 111,108,32,109,101,116,104,111,100,115,32,116,104,97,116,10, -- 32,32,32,32,114,101,113,117,105,114,101,32,102,105,108,101, -- 32,115,121,115,116,101,109,32,117,115,97,103,101,46,99,3, -- 0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,67, -- 0,0,0,115,22,0,0,0,124,1,0,124,0,0,95,0, -- 0,124,2,0,124,0,0,95,1,0,100,1,0,83,41,2, -- 122,75,67,97,99,104,101,32,116,104,101,32,109,111,100,117, -- 108,101,32,110,97,109,101,32,97,110,100,32,116,104,101,32, -- 112,97,116,104,32,116,111,32,116,104,101,32,102,105,108,101, -- 32,102,111,117,110,100,32,98,121,32,116,104,101,10,32,32, -- 32,32,32,32,32,32,102,105,110,100,101,114,46,78,41,2, -- 114,106,0,0,0,114,35,0,0,0,41,3,114,108,0,0, -- 0,114,126,0,0,0,114,35,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,185,0,0,0,15, -- 3,0,0,115,4,0,0,0,0,3,9,1,122,19,70,105, -- 108,101,76,111,97,100,101,114,46,95,95,105,110,105,116,95, -- 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, -- 0,0,67,0,0,0,115,34,0,0,0,124,0,0,106,0, -- 0,124,1,0,106,0,0,107,2,0,111,33,0,124,0,0, -- 106,1,0,124,1,0,106,1,0,107,2,0,83,41,1,78, -- 41,2,218,9,95,95,99,108,97,115,115,95,95,114,118,0, -- 0,0,41,2,114,108,0,0,0,218,5,111,116,104,101,114, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, -- 6,95,95,101,113,95,95,21,3,0,0,115,4,0,0,0, -- 0,1,18,1,122,17,70,105,108,101,76,111,97,100,101,114, -- 46,95,95,101,113,95,95,99,1,0,0,0,0,0,0,0, -- 1,0,0,0,3,0,0,0,67,0,0,0,115,26,0,0, -- 0,116,0,0,124,0,0,106,1,0,131,1,0,116,0,0, -- 124,0,0,106,2,0,131,1,0,65,83,41,1,78,41,3, -- 218,4,104,97,115,104,114,106,0,0,0,114,35,0,0,0, -- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,8,95,95,104,97,115,104,95,95, -- 25,3,0,0,115,2,0,0,0,0,1,122,19,70,105,108, -- 101,76,111,97,100,101,114,46,95,95,104,97,115,104,95,95, -- 99,2,0,0,0,0,0,0,0,2,0,0,0,3,0,0, -- 0,3,0,0,0,115,22,0,0,0,116,0,0,116,1,0, -- 124,0,0,131,2,0,106,2,0,124,1,0,131,1,0,83, -- 41,1,122,100,76,111,97,100,32,97,32,109,111,100,117,108, -- 101,32,102,114,111,109,32,97,32,102,105,108,101,46,10,10, -- 32,32,32,32,32,32,32,32,84,104,105,115,32,109,101,116, -- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, -- 100,46,32,32,85,115,101,32,101,120,101,99,95,109,111,100, -- 117,108,101,40,41,32,105,110,115,116,101,97,100,46,10,10, -- 32,32,32,32,32,32,32,32,41,3,218,5,115,117,112,101, -- 114,114,210,0,0,0,114,193,0,0,0,41,2,114,108,0, -- 0,0,114,126,0,0,0,41,1,114,211,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,193,0,0,0,28,3,0, -- 0,115,2,0,0,0,0,10,122,22,70,105,108,101,76,111, -- 97,100,101,114,46,108,111,97,100,95,109,111,100,117,108,101, -- 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, -- 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, -- 83,41,1,122,58,82,101,116,117,114,110,32,116,104,101,32, -- 112,97,116,104,32,116,111,32,116,104,101,32,115,111,117,114, -- 99,101,32,102,105,108,101,32,97,115,32,102,111,117,110,100, -- 32,98,121,32,116,104,101,32,102,105,110,100,101,114,46,41, -- 1,114,35,0,0,0,41,2,114,108,0,0,0,114,126,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,157,0,0,0,40,3,0,0,115,2,0,0,0,0, -- 3,122,23,70,105,108,101,76,111,97,100,101,114,46,103,101, -- 116,95,102,105,108,101,110,97,109,101,99,2,0,0,0,0, -- 0,0,0,3,0,0,0,9,0,0,0,67,0,0,0,115, -- 42,0,0,0,116,0,0,106,1,0,124,1,0,100,1,0, -- 131,2,0,143,17,0,125,2,0,124,2,0,106,2,0,131, -- 0,0,83,87,100,2,0,81,82,88,100,2,0,83,41,3, -- 122,39,82,101,116,117,114,110,32,116,104,101,32,100,97,116, -- 97,32,102,114,111,109,32,112,97,116,104,32,97,115,32,114, -- 97,119,32,98,121,116,101,115,46,218,1,114,78,41,3,114, -- 49,0,0,0,114,50,0,0,0,90,4,114,101,97,100,41, -- 3,114,108,0,0,0,114,35,0,0,0,114,54,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 200,0,0,0,45,3,0,0,115,4,0,0,0,0,2,21, -- 1,122,19,70,105,108,101,76,111,97,100,101,114,46,103,101, -- 116,95,100,97,116,97,41,11,114,112,0,0,0,114,111,0, -- 0,0,114,113,0,0,0,114,114,0,0,0,114,185,0,0, -- 0,114,213,0,0,0,114,215,0,0,0,114,123,0,0,0, -- 114,193,0,0,0,114,157,0,0,0,114,200,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,41,1,114,211,0,0,0, -- 114,5,0,0,0,114,210,0,0,0,10,3,0,0,115,14, -- 0,0,0,12,3,6,2,12,6,12,4,12,3,24,12,18, -- 5,114,210,0,0,0,99,0,0,0,0,0,0,0,0,0, -- 0,0,0,4,0,0,0,64,0,0,0,115,64,0,0,0, -- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, -- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, -- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, -- 100,8,0,100,9,0,132,0,1,90,6,0,100,10,0,83, -- 41,11,218,16,83,111,117,114,99,101,70,105,108,101,76,111, -- 97,100,101,114,122,62,67,111,110,99,114,101,116,101,32,105, -- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, -- 32,83,111,117,114,99,101,76,111,97,100,101,114,32,117,115, -- 105,110,103,32,116,104,101,32,102,105,108,101,32,115,121,115, -- 116,101,109,46,99,2,0,0,0,0,0,0,0,3,0,0, -- 0,4,0,0,0,67,0,0,0,115,34,0,0,0,116,0, -- 0,124,1,0,131,1,0,125,2,0,100,1,0,124,2,0, -- 106,1,0,100,2,0,124,2,0,106,2,0,105,2,0,83, -- 41,3,122,33,82,101,116,117,114,110,32,116,104,101,32,109, -- 101,116,97,100,97,116,97,32,102,111,114,32,116,104,101,32, -- 112,97,116,104,46,114,133,0,0,0,114,134,0,0,0,41, -- 3,114,39,0,0,0,218,8,115,116,95,109,116,105,109,101, -- 90,7,115,116,95,115,105,122,101,41,3,114,108,0,0,0, -- 114,35,0,0,0,114,208,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,197,0,0,0,55,3, -- 0,0,115,4,0,0,0,0,2,12,1,122,27,83,111,117, -- 114,99,101,70,105,108,101,76,111,97,100,101,114,46,112,97, -- 116,104,95,115,116,97,116,115,99,4,0,0,0,0,0,0, -- 0,5,0,0,0,5,0,0,0,67,0,0,0,115,34,0, -- 0,0,116,0,0,124,1,0,131,1,0,125,4,0,124,0, -- 0,106,1,0,124,2,0,124,3,0,100,1,0,124,4,0, -- 131,2,1,83,41,2,78,218,5,95,109,111,100,101,41,2, -- 114,97,0,0,0,114,198,0,0,0,41,5,114,108,0,0, -- 0,114,90,0,0,0,114,89,0,0,0,114,53,0,0,0, -- 114,42,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,199,0,0,0,60,3,0,0,115,4,0, -- 0,0,0,2,12,1,122,32,83,111,117,114,99,101,70,105, -- 108,101,76,111,97,100,101,114,46,95,99,97,99,104,101,95, -- 98,121,116,101,99,111,100,101,114,220,0,0,0,105,182,1, -- 0,0,99,3,0,0,0,1,0,0,0,9,0,0,0,17, -- 0,0,0,67,0,0,0,115,53,1,0,0,116,0,0,124, -- 1,0,131,1,0,92,2,0,125,4,0,125,5,0,103,0, -- 0,125,6,0,120,54,0,124,4,0,114,80,0,116,1,0, -- 124,4,0,131,1,0,12,114,80,0,116,0,0,124,4,0, -- 131,1,0,92,2,0,125,4,0,125,7,0,124,6,0,106, -- 2,0,124,7,0,131,1,0,1,113,27,0,87,120,132,0, -- 116,3,0,124,6,0,131,1,0,68,93,118,0,125,7,0, -- 116,4,0,124,4,0,124,7,0,131,2,0,125,4,0,121, -- 17,0,116,5,0,106,6,0,124,4,0,131,1,0,1,87, -- 113,94,0,4,116,7,0,107,10,0,114,155,0,1,1,1, -- 119,94,0,89,113,94,0,4,116,8,0,107,10,0,114,211, -- 0,1,125,8,0,1,122,25,0,116,9,0,100,1,0,124, -- 4,0,124,8,0,131,3,0,1,100,2,0,83,87,89,100, -- 2,0,100,2,0,125,8,0,126,8,0,88,113,94,0,88, -- 113,94,0,87,121,33,0,116,10,0,124,1,0,124,2,0, -- 124,3,0,131,3,0,1,116,9,0,100,3,0,124,1,0, -- 131,2,0,1,87,110,53,0,4,116,8,0,107,10,0,114, -- 48,1,1,125,8,0,1,122,21,0,116,9,0,100,1,0, -- 124,1,0,124,8,0,131,3,0,1,87,89,100,2,0,100, -- 2,0,125,8,0,126,8,0,88,110,1,0,88,100,2,0, -- 83,41,4,122,27,87,114,105,116,101,32,98,121,116,101,115, -- 32,100,97,116,97,32,116,111,32,97,32,102,105,108,101,46, -- 122,27,99,111,117,108,100,32,110,111,116,32,99,114,101,97, -- 116,101,32,123,33,114,125,58,32,123,33,114,125,78,122,12, -- 99,114,101,97,116,101,100,32,123,33,114,125,41,11,114,38, -- 0,0,0,114,46,0,0,0,114,163,0,0,0,114,33,0, -- 0,0,114,28,0,0,0,114,3,0,0,0,90,5,109,107, -- 100,105,114,218,15,70,105,108,101,69,120,105,115,116,115,69, -- 114,114,111,114,114,40,0,0,0,114,105,0,0,0,114,55, -- 0,0,0,41,9,114,108,0,0,0,114,35,0,0,0,114, -- 53,0,0,0,114,220,0,0,0,218,6,112,97,114,101,110, -- 116,114,94,0,0,0,114,27,0,0,0,114,23,0,0,0, -- 114,201,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,198,0,0,0,65,3,0,0,115,38,0, -- 0,0,0,2,18,1,6,2,22,1,18,1,17,2,19,1, -- 15,1,3,1,17,1,13,2,7,1,18,3,16,1,27,1, -- 3,1,16,1,17,1,18,2,122,25,83,111,117,114,99,101, -- 70,105,108,101,76,111,97,100,101,114,46,115,101,116,95,100, -- 97,116,97,78,41,7,114,112,0,0,0,114,111,0,0,0, -- 114,113,0,0,0,114,114,0,0,0,114,197,0,0,0,114, -- 199,0,0,0,114,198,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,218,0, -- 0,0,51,3,0,0,115,8,0,0,0,12,2,6,2,12, -- 5,12,5,114,218,0,0,0,99,0,0,0,0,0,0,0, -- 0,0,0,0,0,2,0,0,0,64,0,0,0,115,46,0, -- 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, -- 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, -- 100,4,0,100,5,0,132,0,0,90,5,0,100,6,0,83, -- 41,7,218,20,83,111,117,114,99,101,108,101,115,115,70,105, -- 108,101,76,111,97,100,101,114,122,45,76,111,97,100,101,114, -- 32,119,104,105,99,104,32,104,97,110,100,108,101,115,32,115, -- 111,117,114,99,101,108,101,115,115,32,102,105,108,101,32,105, -- 109,112,111,114,116,115,46,99,2,0,0,0,0,0,0,0, -- 5,0,0,0,6,0,0,0,67,0,0,0,115,76,0,0, -- 0,124,0,0,106,0,0,124,1,0,131,1,0,125,2,0, -- 124,0,0,106,1,0,124,2,0,131,1,0,125,3,0,116, -- 2,0,124,3,0,100,1,0,124,1,0,100,2,0,124,2, -- 0,131,1,2,125,4,0,116,3,0,124,4,0,100,1,0, -- 124,1,0,100,3,0,124,2,0,131,1,2,83,41,4,78, -- 114,106,0,0,0,114,35,0,0,0,114,89,0,0,0,41, -- 4,114,157,0,0,0,114,200,0,0,0,114,141,0,0,0, -- 114,147,0,0,0,41,5,114,108,0,0,0,114,126,0,0, -- 0,114,35,0,0,0,114,53,0,0,0,114,209,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 187,0,0,0,98,3,0,0,115,8,0,0,0,0,1,15, -- 1,15,1,24,1,122,29,83,111,117,114,99,101,108,101,115, -- 115,70,105,108,101,76,111,97,100,101,114,46,103,101,116,95, -- 99,111,100,101,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, -- 0,83,41,2,122,39,82,101,116,117,114,110,32,78,111,110, -- 101,32,97,115,32,116,104,101,114,101,32,105,115,32,110,111, -- 32,115,111,117,114,99,101,32,99,111,100,101,46,78,114,4, -- 0,0,0,41,2,114,108,0,0,0,114,126,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,202, -- 0,0,0,104,3,0,0,115,2,0,0,0,0,2,122,31, -- 83,111,117,114,99,101,108,101,115,115,70,105,108,101,76,111, -- 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,78, -- 41,6,114,112,0,0,0,114,111,0,0,0,114,113,0,0, -- 0,114,114,0,0,0,114,187,0,0,0,114,202,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,223,0,0,0,94,3,0,0,115,6,0, -- 0,0,12,2,6,2,12,6,114,223,0,0,0,99,0,0, -- 0,0,0,0,0,0,0,0,0,0,3,0,0,0,64,0, -- 0,0,115,136,0,0,0,101,0,0,90,1,0,100,0,0, -+ 32,32,32,78,41,1,218,7,73,79,69,114,114,111,114,41, -+ 2,114,109,0,0,0,114,36,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,10,112,97,116,104, -+ 95,109,116,105,109,101,158,2,0,0,115,2,0,0,0,0, -+ 6,122,23,83,111,117,114,99,101,76,111,97,100,101,114,46, -+ 112,97,116,104,95,109,116,105,109,101,99,2,0,0,0,0, -+ 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, -+ 19,0,0,0,100,1,0,124,0,0,106,0,0,124,1,0, -+ 131,1,0,105,1,0,83,41,2,97,170,1,0,0,79,112, -+ 116,105,111,110,97,108,32,109,101,116,104,111,100,32,114,101, -+ 116,117,114,110,105,110,103,32,97,32,109,101,116,97,100,97, -+ 116,97,32,100,105,99,116,32,102,111,114,32,116,104,101,32, -+ 115,112,101,99,105,102,105,101,100,32,112,97,116,104,10,32, -+ 32,32,32,32,32,32,32,116,111,32,98,121,32,116,104,101, -+ 32,112,97,116,104,32,40,115,116,114,41,46,10,32,32,32, -+ 32,32,32,32,32,80,111,115,115,105,98,108,101,32,107,101, -+ 121,115,58,10,32,32,32,32,32,32,32,32,45,32,39,109, -+ 116,105,109,101,39,32,40,109,97,110,100,97,116,111,114,121, -+ 41,32,105,115,32,116,104,101,32,110,117,109,101,114,105,99, -+ 32,116,105,109,101,115,116,97,109,112,32,111,102,32,108,97, -+ 115,116,32,115,111,117,114,99,101,10,32,32,32,32,32,32, -+ 32,32,32,32,99,111,100,101,32,109,111,100,105,102,105,99, -+ 97,116,105,111,110,59,10,32,32,32,32,32,32,32,32,45, -+ 32,39,115,105,122,101,39,32,40,111,112,116,105,111,110,97, -+ 108,41,32,105,115,32,116,104,101,32,115,105,122,101,32,105, -+ 110,32,98,121,116,101,115,32,111,102,32,116,104,101,32,115, -+ 111,117,114,99,101,32,99,111,100,101,46,10,10,32,32,32, ++ 90,5,0,101,6,0,90,7,0,100,6,0,83,41,7,218, ++ 13,95,76,111,97,100,101,114,66,97,115,105,99,115,122,83, ++ 66,97,115,101,32,99,108,97,115,115,32,111,102,32,99,111, ++ 109,109,111,110,32,99,111,100,101,32,110,101,101,100,101,100, ++ 32,98,121,32,98,111,116,104,32,83,111,117,114,99,101,76, ++ 111,97,100,101,114,32,97,110,100,10,32,32,32,32,83,111, ++ 117,114,99,101,108,101,115,115,70,105,108,101,76,111,97,100, ++ 101,114,46,99,2,0,0,0,0,0,0,0,5,0,0,0, ++ 3,0,0,0,67,0,0,0,115,88,0,0,0,116,0,0, ++ 124,0,0,106,1,0,124,1,0,131,1,0,131,1,0,100, ++ 1,0,25,125,2,0,124,2,0,106,2,0,100,2,0,100, ++ 1,0,131,2,0,100,3,0,25,125,3,0,124,1,0,106, ++ 3,0,100,2,0,131,1,0,100,4,0,25,125,4,0,124, ++ 3,0,100,5,0,107,2,0,111,87,0,124,4,0,100,5, ++ 0,107,3,0,83,41,6,122,141,67,111,110,99,114,101,116, ++ 101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110, ++ 32,111,102,32,73,110,115,112,101,99,116,76,111,97,100,101, ++ 114,46,105,115,95,112,97,99,107,97,103,101,32,98,121,32, ++ 99,104,101,99,107,105,110,103,32,105,102,10,32,32,32,32, ++ 32,32,32,32,116,104,101,32,112,97,116,104,32,114,101,116, ++ 117,114,110,101,100,32,98,121,32,103,101,116,95,102,105,108, ++ 101,110,97,109,101,32,104,97,115,32,97,32,102,105,108,101, ++ 110,97,109,101,32,111,102,32,39,95,95,105,110,105,116,95, ++ 95,46,112,121,39,46,114,30,0,0,0,114,117,0,0,0, ++ 114,85,0,0,0,114,116,0,0,0,114,73,0,0,0,41, ++ 4,114,39,0,0,0,114,239,0,0,0,114,35,0,0,0, ++ 114,33,0,0,0,41,5,114,72,0,0,0,114,159,0,0, ++ 0,114,132,0,0,0,90,13,102,105,108,101,110,97,109,101, ++ 95,98,97,115,101,90,9,116,97,105,108,95,110,97,109,101, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 220,0,0,0,177,5,0,0,115,8,0,0,0,0,3,25, ++ 1,22,1,19,1,122,24,95,76,111,97,100,101,114,66,97, ++ 115,105,99,115,46,105,115,95,112,97,99,107,97,103,101,99, ++ 2,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0, ++ 67,0,0,0,115,80,0,0,0,124,0,0,106,0,0,124, ++ 1,0,106,1,0,131,1,0,125,2,0,124,2,0,100,1, ++ 0,107,8,0,114,57,0,116,2,0,100,2,0,106,3,0, ++ 124,1,0,106,1,0,131,1,0,131,1,0,130,1,0,110, ++ 0,0,116,4,0,116,5,0,124,2,0,124,1,0,106,6, ++ 0,131,3,0,1,100,1,0,83,41,3,122,19,69,120,101, ++ 99,117,116,101,32,116,104,101,32,109,111,100,117,108,101,46, ++ 78,122,52,99,97,110,110,111,116,32,108,111,97,100,32,109, ++ 111,100,117,108,101,32,123,33,114,125,32,119,104,101,110,32, ++ 103,101,116,95,99,111,100,101,40,41,32,114,101,116,117,114, ++ 110,115,32,78,111,110,101,41,7,114,16,1,0,0,114,58, ++ 0,0,0,114,154,0,0,0,114,48,0,0,0,114,115,0, ++ 0,0,114,176,0,0,0,114,64,0,0,0,41,3,114,72, ++ 0,0,0,114,180,0,0,0,114,195,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,2,1,0, ++ 0,185,5,0,0,115,10,0,0,0,0,2,18,1,12,1, ++ 3,1,24,1,122,25,95,76,111,97,100,101,114,66,97,115, ++ 105,99,115,46,101,120,101,99,95,109,111,100,117,108,101,78, ++ 41,8,114,58,0,0,0,114,57,0,0,0,114,59,0,0, ++ 0,114,60,0,0,0,114,220,0,0,0,114,2,1,0,0, ++ 114,181,0,0,0,114,5,1,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,33, ++ 1,0,0,172,5,0,0,115,8,0,0,0,12,3,6,2, ++ 12,8,12,8,114,33,1,0,0,99,0,0,0,0,0,0, ++ 0,0,0,0,0,0,4,0,0,0,64,0,0,0,115,106, ++ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, ++ 1,0,100,2,0,132,0,0,90,3,0,100,3,0,100,4, ++ 0,132,0,0,90,4,0,100,5,0,100,6,0,132,0,0, ++ 90,5,0,100,7,0,100,8,0,132,0,0,90,6,0,100, ++ 9,0,100,10,0,132,0,0,90,7,0,100,11,0,100,18, ++ 0,100,13,0,100,14,0,132,0,1,90,8,0,100,15,0, ++ 100,16,0,132,0,0,90,9,0,100,17,0,83,41,19,218, ++ 12,83,111,117,114,99,101,76,111,97,100,101,114,99,2,0, ++ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, ++ 0,0,115,10,0,0,0,116,0,0,130,1,0,100,1,0, ++ 83,41,2,122,178,79,112,116,105,111,110,97,108,32,109,101, ++ 116,104,111,100,32,116,104,97,116,32,114,101,116,117,114,110, ++ 115,32,116,104,101,32,109,111,100,105,102,105,99,97,116,105, ++ 111,110,32,116,105,109,101,32,40,97,110,32,105,110,116,41, ++ 32,102,111,114,32,116,104,101,10,32,32,32,32,32,32,32, ++ 32,115,112,101,99,105,102,105,101,100,32,112,97,116,104,44, ++ 32,119,104,101,114,101,32,112,97,116,104,32,105,115,32,97, ++ 32,115,116,114,46,10,10,32,32,32,32,32,32,32,32,82, ++ 97,105,115,101,115,32,73,79,69,114,114,111,114,32,119,104, ++ 101,110,32,116,104,101,32,112,97,116,104,32,99,97,110,110, ++ 111,116,32,98,101,32,104,97,110,100,108,101,100,46,10,32, ++ 32,32,32,32,32,32,32,78,41,1,218,7,73,79,69,114, ++ 114,111,114,41,2,114,72,0,0,0,114,36,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,10, ++ 112,97,116,104,95,109,116,105,109,101,198,5,0,0,115,2, ++ 0,0,0,0,6,122,23,83,111,117,114,99,101,76,111,97, ++ 100,101,114,46,112,97,116,104,95,109,116,105,109,101,99,2, ++ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,67, ++ 0,0,0,115,20,0,0,0,105,1,0,124,0,0,106,0, ++ 0,124,1,0,131,1,0,100,1,0,54,83,41,2,97,170, ++ 1,0,0,79,112,116,105,111,110,97,108,32,109,101,116,104, ++ 111,100,32,114,101,116,117,114,110,105,110,103,32,97,32,109, ++ 101,116,97,100,97,116,97,32,100,105,99,116,32,102,111,114, ++ 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,112, ++ 97,116,104,10,32,32,32,32,32,32,32,32,116,111,32,98, ++ 121,32,116,104,101,32,112,97,116,104,32,40,115,116,114,41, ++ 46,10,32,32,32,32,32,32,32,32,80,111,115,115,105,98, ++ 108,101,32,107,101,121,115,58,10,32,32,32,32,32,32,32, ++ 32,45,32,39,109,116,105,109,101,39,32,40,109,97,110,100, ++ 97,116,111,114,121,41,32,105,115,32,116,104,101,32,110,117, ++ 109,101,114,105,99,32,116,105,109,101,115,116,97,109,112,32, ++ 111,102,32,108,97,115,116,32,115,111,117,114,99,101,10,32, ++ 32,32,32,32,32,32,32,32,32,99,111,100,101,32,109,111, ++ 100,105,102,105,99,97,116,105,111,110,59,10,32,32,32,32, ++ 32,32,32,32,45,32,39,115,105,122,101,39,32,40,111,112, ++ 116,105,111,110,97,108,41,32,105,115,32,116,104,101,32,115, ++ 105,122,101,32,105,110,32,98,121,116,101,115,32,111,102,32, ++ 116,104,101,32,115,111,117,114,99,101,32,99,111,100,101,46, ++ 10,10,32,32,32,32,32,32,32,32,73,109,112,108,101,109, ++ 101,110,116,105,110,103,32,116,104,105,115,32,109,101,116,104, ++ 111,100,32,97,108,108,111,119,115,32,116,104,101,32,108,111, ++ 97,100,101,114,32,116,111,32,114,101,97,100,32,98,121,116, ++ 101,99,111,100,101,32,102,105,108,101,115,46,10,32,32,32, ++ 32,32,32,32,32,82,97,105,115,101,115,32,73,79,69,114, ++ 114,111,114,32,119,104,101,110,32,116,104,101,32,112,97,116, ++ 104,32,99,97,110,110,111,116,32,98,101,32,104,97,110,100, ++ 108,101,100,46,10,32,32,32,32,32,32,32,32,114,184,0, ++ 0,0,41,1,114,36,1,0,0,41,2,114,72,0,0,0, ++ 114,36,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,218,10,112,97,116,104,95,115,116,97,116,115, ++ 206,5,0,0,115,2,0,0,0,0,11,122,23,83,111,117, ++ 114,99,101,76,111,97,100,101,114,46,112,97,116,104,95,115, ++ 116,97,116,115,99,4,0,0,0,0,0,0,0,4,0,0, ++ 0,3,0,0,0,67,0,0,0,115,16,0,0,0,124,0, ++ 0,106,0,0,124,2,0,124,3,0,131,2,0,83,41,1, ++ 122,228,79,112,116,105,111,110,97,108,32,109,101,116,104,111, ++ 100,32,119,104,105,99,104,32,119,114,105,116,101,115,32,100, ++ 97,116,97,32,40,98,121,116,101,115,41,32,116,111,32,97, ++ 32,102,105,108,101,32,112,97,116,104,32,40,97,32,115,116, ++ 114,41,46,10,10,32,32,32,32,32,32,32,32,73,109,112, ++ 108,101,109,101,110,116,105,110,103,32,116,104,105,115,32,109, ++ 101,116,104,111,100,32,97,108,108,111,119,115,32,102,111,114, ++ 32,116,104,101,32,119,114,105,116,105,110,103,32,111,102,32, ++ 98,121,116,101,99,111,100,101,32,102,105,108,101,115,46,10, ++ 10,32,32,32,32,32,32,32,32,84,104,101,32,115,111,117, ++ 114,99,101,32,112,97,116,104,32,105,115,32,110,101,101,100, ++ 101,100,32,105,110,32,111,114,100,101,114,32,116,111,32,99, ++ 111,114,114,101,99,116,108,121,32,116,114,97,110,115,102,101, ++ 114,32,112,101,114,109,105,115,115,105,111,110,115,10,32,32, ++ 32,32,32,32,32,32,41,1,218,8,115,101,116,95,100,97, ++ 116,97,41,4,114,72,0,0,0,114,142,0,0,0,90,10, ++ 99,97,99,104,101,95,112,97,116,104,114,54,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,15, ++ 95,99,97,99,104,101,95,98,121,116,101,99,111,100,101,219, ++ 5,0,0,115,2,0,0,0,0,8,122,28,83,111,117,114, ++ 99,101,76,111,97,100,101,114,46,95,99,97,99,104,101,95, ++ 98,121,116,101,99,111,100,101,99,3,0,0,0,0,0,0, ++ 0,3,0,0,0,1,0,0,0,67,0,0,0,115,4,0, ++ 0,0,100,1,0,83,41,2,122,150,79,112,116,105,111,110, ++ 97,108,32,109,101,116,104,111,100,32,119,104,105,99,104,32, ++ 119,114,105,116,101,115,32,100,97,116,97,32,40,98,121,116, ++ 101,115,41,32,116,111,32,97,32,102,105,108,101,32,112,97, ++ 116,104,32,40,97,32,115,116,114,41,46,10,10,32,32,32, + 32,32,32,32,32,73,109,112,108,101,109,101,110,116,105,110, + 103,32,116,104,105,115,32,109,101,116,104,111,100,32,97,108, -+ 108,111,119,115,32,116,104,101,32,108,111,97,100,101,114,32, -+ 116,111,32,114,101,97,100,32,98,121,116,101,99,111,100,101, ++ 108,111,119,115,32,102,111,114,32,116,104,101,32,119,114,105, ++ 116,105,110,103,32,111,102,32,98,121,116,101,99,111,100,101, + 32,102,105,108,101,115,46,10,32,32,32,32,32,32,32,32, -+ 82,97,105,115,101,115,32,73,79,69,114,114,111,114,32,119, -+ 104,101,110,32,116,104,101,32,112,97,116,104,32,99,97,110, -+ 110,111,116,32,98,101,32,104,97,110,100,108,101,100,46,10, -+ 32,32,32,32,32,32,32,32,114,134,0,0,0,41,1,114, -+ 197,0,0,0,41,2,114,109,0,0,0,114,36,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 10,112,97,116,104,95,115,116,97,116,115,166,2,0,0,115, -+ 2,0,0,0,0,11,122,23,83,111,117,114,99,101,76,111, -+ 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, -+ 4,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, -+ 67,0,0,0,115,16,0,0,0,124,0,0,106,0,0,124, -+ 2,0,124,3,0,131,2,0,83,41,1,122,228,79,112,116, -+ 105,111,110,97,108,32,109,101,116,104,111,100,32,119,104,105, -+ 99,104,32,119,114,105,116,101,115,32,100,97,116,97,32,40, -+ 98,121,116,101,115,41,32,116,111,32,97,32,102,105,108,101, -+ 32,112,97,116,104,32,40,97,32,115,116,114,41,46,10,10, -+ 32,32,32,32,32,32,32,32,73,109,112,108,101,109,101,110, -+ 116,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100, -+ 32,97,108,108,111,119,115,32,102,111,114,32,116,104,101,32, -+ 119,114,105,116,105,110,103,32,111,102,32,98,121,116,101,99, -+ 111,100,101,32,102,105,108,101,115,46,10,10,32,32,32,32, -+ 32,32,32,32,84,104,101,32,115,111,117,114,99,101,32,112, -+ 97,116,104,32,105,115,32,110,101,101,100,101,100,32,105,110, -+ 32,111,114,100,101,114,32,116,111,32,99,111,114,114,101,99, -+ 116,108,121,32,116,114,97,110,115,102,101,114,32,112,101,114, -+ 109,105,115,115,105,111,110,115,10,32,32,32,32,32,32,32, -+ 32,41,1,218,8,115,101,116,95,100,97,116,97,41,4,114, -+ 109,0,0,0,114,91,0,0,0,90,10,99,97,99,104,101, -+ 95,112,97,116,104,114,54,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,15,95,99,97,99,104, -+ 101,95,98,121,116,101,99,111,100,101,179,2,0,0,115,2, -+ 0,0,0,0,8,122,28,83,111,117,114,99,101,76,111,97, -+ 100,101,114,46,95,99,97,99,104,101,95,98,121,116,101,99, -+ 111,100,101,99,3,0,0,0,0,0,0,0,3,0,0,0, -+ 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, -+ 83,41,2,122,150,79,112,116,105,111,110,97,108,32,109,101, -+ 116,104,111,100,32,119,104,105,99,104,32,119,114,105,116,101, -+ 115,32,100,97,116,97,32,40,98,121,116,101,115,41,32,116, -+ 111,32,97,32,102,105,108,101,32,112,97,116,104,32,40,97, -+ 32,115,116,114,41,46,10,10,32,32,32,32,32,32,32,32, -+ 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, -+ 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, -+ 102,111,114,32,116,104,101,32,119,114,105,116,105,110,103,32, -+ 111,102,32,98,121,116,101,99,111,100,101,32,102,105,108,101, -+ 115,46,10,32,32,32,32,32,32,32,32,78,114,5,0,0, -+ 0,41,3,114,109,0,0,0,114,36,0,0,0,114,54,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,199,0,0,0,189,2,0,0,115,0,0,0,0,122, -+ 21,83,111,117,114,99,101,76,111,97,100,101,114,46,115,101, -+ 116,95,100,97,116,97,99,2,0,0,0,0,0,0,0,5, -+ 0,0,0,16,0,0,0,67,0,0,0,115,105,0,0,0, -+ 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,121, -+ 19,0,124,0,0,106,1,0,124,2,0,131,1,0,125,3, -+ 0,87,110,58,0,4,116,2,0,107,10,0,114,94,0,1, -+ 125,4,0,1,122,26,0,116,3,0,100,1,0,100,2,0, -+ 124,1,0,131,1,1,124,4,0,130,2,0,87,89,100,3, -+ 0,100,3,0,125,4,0,126,4,0,88,110,1,0,88,116, -+ 4,0,124,3,0,131,1,0,83,41,4,122,52,67,111,110, -+ 99,114,101,116,101,32,105,109,112,108,101,109,101,110,116,97, -+ 116,105,111,110,32,111,102,32,73,110,115,112,101,99,116,76, -+ 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, -+ 46,122,39,115,111,117,114,99,101,32,110,111,116,32,97,118, -+ 97,105,108,97,98,108,101,32,116,104,114,111,117,103,104,32, -+ 103,101,116,95,100,97,116,97,40,41,114,107,0,0,0,78, -+ 41,5,114,158,0,0,0,218,8,103,101,116,95,100,97,116, -+ 97,114,41,0,0,0,114,108,0,0,0,114,156,0,0,0, -+ 41,5,114,109,0,0,0,114,127,0,0,0,114,36,0,0, -+ 0,114,154,0,0,0,218,3,101,120,99,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,10,103,101,116,95, -+ 115,111,117,114,99,101,196,2,0,0,115,14,0,0,0,0, -+ 2,15,1,3,1,19,1,18,1,9,1,31,1,122,23,83, -+ 111,117,114,99,101,76,111,97,100,101,114,46,103,101,116,95, -+ 115,111,117,114,99,101,218,9,95,111,112,116,105,109,105,122, -+ 101,114,30,0,0,0,99,3,0,0,0,1,0,0,0,4, -+ 0,0,0,9,0,0,0,67,0,0,0,115,34,0,0,0, -+ 116,0,0,106,1,0,116,2,0,124,1,0,124,2,0,100, -+ 1,0,100,2,0,100,3,0,100,4,0,124,3,0,131,4, -+ 2,83,41,5,122,130,82,101,116,117,114,110,32,116,104,101, -+ 32,99,111,100,101,32,111,98,106,101,99,116,32,99,111,109, -+ 112,105,108,101,100,32,102,114,111,109,32,115,111,117,114,99, -+ 101,46,10,10,32,32,32,32,32,32,32,32,84,104,101,32, -+ 39,100,97,116,97,39,32,97,114,103,117,109,101,110,116,32, -+ 99,97,110,32,98,101,32,97,110,121,32,111,98,106,101,99, -+ 116,32,116,121,112,101,32,116,104,97,116,32,99,111,109,112, -+ 105,108,101,40,41,32,115,117,112,112,111,114,116,115,46,10, -+ 32,32,32,32,32,32,32,32,114,190,0,0,0,218,12,100, -+ 111,110,116,95,105,110,104,101,114,105,116,84,114,69,0,0, -+ 0,41,3,114,122,0,0,0,114,189,0,0,0,218,7,99, -+ 111,109,112,105,108,101,41,4,114,109,0,0,0,114,54,0, -+ 0,0,114,36,0,0,0,114,204,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,14,115,111,117, -+ 114,99,101,95,116,111,95,99,111,100,101,206,2,0,0,115, -+ 4,0,0,0,0,5,21,1,122,27,83,111,117,114,99,101, -+ 76,111,97,100,101,114,46,115,111,117,114,99,101,95,116,111, -+ 95,99,111,100,101,99,2,0,0,0,0,0,0,0,10,0, -+ 0,0,43,0,0,0,67,0,0,0,115,174,1,0,0,124, -+ 0,0,106,0,0,124,1,0,131,1,0,125,2,0,100,1, -+ 0,125,3,0,121,16,0,116,1,0,124,2,0,131,1,0, -+ 125,4,0,87,110,24,0,4,116,2,0,107,10,0,114,63, -+ 0,1,1,1,100,1,0,125,4,0,89,110,202,0,88,121, -+ 19,0,124,0,0,106,3,0,124,2,0,131,1,0,125,5, -+ 0,87,110,18,0,4,116,4,0,107,10,0,114,103,0,1, -+ 1,1,89,110,162,0,88,116,5,0,124,5,0,100,2,0, -+ 25,131,1,0,125,3,0,121,19,0,124,0,0,106,6,0, -+ 124,4,0,131,1,0,125,6,0,87,110,18,0,4,116,7, -+ 0,107,10,0,114,159,0,1,1,1,89,110,106,0,88,121, -+ 34,0,116,8,0,124,6,0,100,3,0,124,5,0,100,4, -+ 0,124,1,0,100,5,0,124,4,0,131,1,3,125,7,0, -+ 87,110,24,0,4,116,9,0,116,10,0,102,2,0,107,10, -+ 0,114,220,0,1,1,1,89,110,45,0,88,116,11,0,100, -+ 6,0,124,4,0,124,2,0,131,3,0,1,116,12,0,124, -+ 7,0,100,4,0,124,1,0,100,7,0,124,4,0,100,8, -+ 0,124,2,0,131,1,3,83,124,0,0,106,6,0,124,2, -+ 0,131,1,0,125,8,0,124,0,0,106,13,0,124,8,0, -+ 124,2,0,131,2,0,125,9,0,116,11,0,100,9,0,124, -+ 2,0,131,2,0,1,116,14,0,106,15,0,12,114,170,1, -+ 124,4,0,100,1,0,107,9,0,114,170,1,124,3,0,100, -+ 1,0,107,9,0,114,170,1,116,16,0,124,9,0,124,3, -+ 0,116,17,0,124,8,0,131,1,0,131,3,0,125,6,0, -+ 121,36,0,124,0,0,106,18,0,124,2,0,124,4,0,124, -+ 6,0,131,3,0,1,116,11,0,100,10,0,124,4,0,131, -+ 2,0,1,87,110,18,0,4,116,2,0,107,10,0,114,169, -+ 1,1,1,1,89,110,1,0,88,124,9,0,83,41,11,122, -+ 190,67,111,110,99,114,101,116,101,32,105,109,112,108,101,109, -+ 101,110,116,97,116,105,111,110,32,111,102,32,73,110,115,112, -+ 101,99,116,76,111,97,100,101,114,46,103,101,116,95,99,111, -+ 100,101,46,10,10,32,32,32,32,32,32,32,32,82,101,97, -+ 100,105,110,103,32,111,102,32,98,121,116,101,99,111,100,101, -+ 32,114,101,113,117,105,114,101,115,32,112,97,116,104,95,115, -+ 116,97,116,115,32,116,111,32,98,101,32,105,109,112,108,101, -+ 109,101,110,116,101,100,46,32,84,111,32,119,114,105,116,101, -+ 10,32,32,32,32,32,32,32,32,98,121,116,101,99,111,100, -+ 101,44,32,115,101,116,95,100,97,116,97,32,109,117,115,116, -+ 32,97,108,115,111,32,98,101,32,105,109,112,108,101,109,101, -+ 110,116,101,100,46,10,10,32,32,32,32,32,32,32,32,78, -+ 114,134,0,0,0,114,139,0,0,0,114,107,0,0,0,114, -+ 36,0,0,0,122,13,123,125,32,109,97,116,99,104,101,115, -+ 32,123,125,114,90,0,0,0,114,91,0,0,0,122,19,99, -+ 111,100,101,32,111,98,106,101,99,116,32,102,114,111,109,32, -+ 123,125,122,10,119,114,111,116,101,32,123,33,114,125,41,19, -+ 114,158,0,0,0,114,80,0,0,0,114,67,0,0,0,114, -+ 198,0,0,0,114,196,0,0,0,114,15,0,0,0,114,201, -+ 0,0,0,114,41,0,0,0,114,142,0,0,0,114,108,0, -+ 0,0,114,137,0,0,0,114,106,0,0,0,114,148,0,0, -+ 0,114,207,0,0,0,114,8,0,0,0,218,19,100,111,110, -+ 116,95,119,114,105,116,101,95,98,121,116,101,99,111,100,101, -+ 114,151,0,0,0,114,32,0,0,0,114,200,0,0,0,41, -+ 10,114,109,0,0,0,114,127,0,0,0,114,91,0,0,0, -+ 114,140,0,0,0,114,90,0,0,0,218,2,115,116,114,54, -+ 0,0,0,218,10,98,121,116,101,115,95,100,97,116,97,114, -+ 154,0,0,0,90,11,99,111,100,101,95,111,98,106,101,99, -+ 116,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, -+ 114,188,0,0,0,214,2,0,0,115,78,0,0,0,0,7, -+ 15,1,6,1,3,1,16,1,13,1,11,2,3,1,19,1, -+ 13,1,5,2,16,1,3,1,19,1,13,1,5,2,3,1, -+ 9,1,12,1,13,1,19,1,5,2,9,1,7,1,15,1, -+ 6,1,7,1,15,1,18,1,13,1,22,1,12,1,9,1, -+ 15,1,3,1,19,1,17,1,13,1,5,1,122,21,83,111, -+ 117,114,99,101,76,111,97,100,101,114,46,103,101,116,95,99, -+ 111,100,101,78,114,88,0,0,0,41,10,114,113,0,0,0, -+ 114,112,0,0,0,114,114,0,0,0,114,197,0,0,0,114, -+ 198,0,0,0,114,200,0,0,0,114,199,0,0,0,114,203, -+ 0,0,0,114,207,0,0,0,114,188,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, -+ 0,114,195,0,0,0,156,2,0,0,115,14,0,0,0,12, -+ 2,12,8,12,13,12,10,12,7,12,10,18,8,114,195,0, -+ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,4, -+ 0,0,0,0,0,0,0,115,112,0,0,0,101,0,0,90, -+ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, -+ 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, -+ 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, -+ 6,0,101,7,0,135,0,0,102,1,0,100,8,0,100,9, -+ 0,134,0,0,131,1,0,90,8,0,101,7,0,100,10,0, -+ 100,11,0,132,0,0,131,1,0,90,9,0,100,12,0,100, -+ 13,0,132,0,0,90,10,0,135,0,0,83,41,14,218,10, -+ 70,105,108,101,76,111,97,100,101,114,122,103,66,97,115,101, -+ 32,102,105,108,101,32,108,111,97,100,101,114,32,99,108,97, -+ 115,115,32,119,104,105,99,104,32,105,109,112,108,101,109,101, -+ 110,116,115,32,116,104,101,32,108,111,97,100,101,114,32,112, -+ 114,111,116,111,99,111,108,32,109,101,116,104,111,100,115,32, -+ 116,104,97,116,10,32,32,32,32,114,101,113,117,105,114,101, -+ 32,102,105,108,101,32,115,121,115,116,101,109,32,117,115,97, -+ 103,101,46,99,3,0,0,0,0,0,0,0,3,0,0,0, -+ 2,0,0,0,67,0,0,0,115,22,0,0,0,124,1,0, -+ 124,0,0,95,0,0,124,2,0,124,0,0,95,1,0,100, -+ 1,0,83,41,2,122,75,67,97,99,104,101,32,116,104,101, -+ 32,109,111,100,117,108,101,32,110,97,109,101,32,97,110,100, -+ 32,116,104,101,32,112,97,116,104,32,116,111,32,116,104,101, -+ 32,102,105,108,101,32,102,111,117,110,100,32,98,121,32,116, -+ 104,101,10,32,32,32,32,32,32,32,32,102,105,110,100,101, -+ 114,46,78,41,2,114,107,0,0,0,114,36,0,0,0,41, -+ 3,114,109,0,0,0,114,127,0,0,0,114,36,0,0,0, ++ 78,114,5,0,0,0,41,3,114,72,0,0,0,114,36,0, ++ 0,0,114,54,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,38,1,0,0,229,5,0,0,115, ++ 0,0,0,0,122,21,83,111,117,114,99,101,76,111,97,100, ++ 101,114,46,115,101,116,95,100,97,116,97,99,2,0,0,0, ++ 0,0,0,0,5,0,0,0,16,0,0,0,67,0,0,0, ++ 115,105,0,0,0,124,0,0,106,0,0,124,1,0,131,1, ++ 0,125,2,0,121,19,0,124,0,0,106,1,0,124,2,0, ++ 131,1,0,125,3,0,87,110,58,0,4,116,2,0,107,10, ++ 0,114,94,0,1,125,4,0,1,122,26,0,116,3,0,100, ++ 1,0,100,2,0,124,1,0,131,1,1,124,4,0,130,2, ++ 0,87,89,100,3,0,100,3,0,125,4,0,126,4,0,88, ++ 110,1,0,88,116,4,0,124,3,0,131,1,0,83,41,4, ++ 122,52,67,111,110,99,114,101,116,101,32,105,109,112,108,101, ++ 109,101,110,116,97,116,105,111,110,32,111,102,32,73,110,115, ++ 112,101,99,116,76,111,97,100,101,114,46,103,101,116,95,115, ++ 111,117,114,99,101,46,122,39,115,111,117,114,99,101,32,110, ++ 111,116,32,97,118,97,105,108,97,98,108,101,32,116,104,114, ++ 111,117,103,104,32,103,101,116,95,100,97,116,97,40,41,114, ++ 68,0,0,0,78,41,5,114,239,0,0,0,218,8,103,101, ++ 116,95,100,97,116,97,114,41,0,0,0,114,154,0,0,0, ++ 114,204,0,0,0,41,5,114,72,0,0,0,114,159,0,0, ++ 0,114,36,0,0,0,114,202,0,0,0,218,3,101,120,99, + 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 186,0,0,0,15,3,0,0,115,4,0,0,0,0,3,9, -+ 1,122,19,70,105,108,101,76,111,97,100,101,114,46,95,95, -+ 105,110,105,116,95,95,99,2,0,0,0,0,0,0,0,2, -+ 0,0,0,2,0,0,0,67,0,0,0,115,34,0,0,0, -+ 124,0,0,106,0,0,124,1,0,106,0,0,107,2,0,111, -+ 33,0,124,0,0,106,1,0,124,1,0,106,1,0,107,2, -+ 0,83,41,1,78,41,2,218,9,95,95,99,108,97,115,115, -+ 95,95,114,119,0,0,0,41,2,114,109,0,0,0,218,5, -+ 111,116,104,101,114,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,218,6,95,95,101,113,95,95,21,3,0,0, -+ 115,4,0,0,0,0,1,18,1,122,17,70,105,108,101,76, -+ 111,97,100,101,114,46,95,95,101,113,95,95,99,1,0,0, -+ 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, -+ 0,115,26,0,0,0,116,0,0,124,0,0,106,1,0,131, -+ 1,0,116,0,0,124,0,0,106,2,0,131,1,0,65,83, -+ 41,1,78,41,3,218,4,104,97,115,104,114,107,0,0,0, -+ 114,36,0,0,0,41,1,114,109,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,8,95,95,104, -+ 97,115,104,95,95,25,3,0,0,115,2,0,0,0,0,1, -+ 122,19,70,105,108,101,76,111,97,100,101,114,46,95,95,104, -+ 97,115,104,95,95,99,2,0,0,0,0,0,0,0,2,0, -+ 0,0,3,0,0,0,3,0,0,0,115,22,0,0,0,116, -+ 0,0,116,1,0,124,0,0,131,2,0,106,2,0,124,1, -+ 0,131,1,0,83,41,1,122,100,76,111,97,100,32,97,32, -+ 109,111,100,117,108,101,32,102,114,111,109,32,97,32,102,105, -+ 108,101,46,10,10,32,32,32,32,32,32,32,32,84,104,105, -+ 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, -+ 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, -+ 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, -+ 97,100,46,10,10,32,32,32,32,32,32,32,32,41,3,218, -+ 5,115,117,112,101,114,114,211,0,0,0,114,194,0,0,0, -+ 41,2,114,109,0,0,0,114,127,0,0,0,41,1,114,212, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,194,0, -+ 0,0,28,3,0,0,115,2,0,0,0,0,10,122,22,70, -+ 105,108,101,76,111,97,100,101,114,46,108,111,97,100,95,109, -+ 111,100,117,108,101,99,2,0,0,0,0,0,0,0,2,0, -+ 0,0,1,0,0,0,67,0,0,0,115,7,0,0,0,124, -+ 0,0,106,0,0,83,41,1,122,58,82,101,116,117,114,110, -+ 32,116,104,101,32,112,97,116,104,32,116,111,32,116,104,101, -+ 32,115,111,117,114,99,101,32,102,105,108,101,32,97,115,32, -+ 102,111,117,110,100,32,98,121,32,116,104,101,32,102,105,110, -+ 100,101,114,46,41,1,114,36,0,0,0,41,2,114,109,0, -+ 0,0,114,127,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,158,0,0,0,40,3,0,0,115, -+ 2,0,0,0,0,3,122,23,70,105,108,101,76,111,97,100, -+ 101,114,46,103,101,116,95,102,105,108,101,110,97,109,101,99, -+ 2,0,0,0,0,0,0,0,3,0,0,0,9,0,0,0, -+ 67,0,0,0,115,42,0,0,0,116,0,0,106,1,0,124, -+ 1,0,100,1,0,131,2,0,143,17,0,125,2,0,124,2, -+ 0,106,2,0,131,0,0,83,87,100,2,0,81,82,88,100, -+ 2,0,83,41,3,122,39,82,101,116,117,114,110,32,116,104, -+ 101,32,100,97,116,97,32,102,114,111,109,32,112,97,116,104, -+ 32,97,115,32,114,97,119,32,98,121,116,101,115,46,218,1, -+ 114,78,41,3,114,50,0,0,0,114,51,0,0,0,90,4, -+ 114,101,97,100,41,3,114,109,0,0,0,114,36,0,0,0, -+ 114,55,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,201,0,0,0,45,3,0,0,115,4,0, -+ 0,0,0,2,21,1,122,19,70,105,108,101,76,111,97,100, -+ 101,114,46,103,101,116,95,100,97,116,97,41,11,114,113,0, -+ 0,0,114,112,0,0,0,114,114,0,0,0,114,115,0,0, -+ 0,114,186,0,0,0,114,214,0,0,0,114,216,0,0,0, -+ 114,124,0,0,0,114,194,0,0,0,114,158,0,0,0,114, -+ 201,0,0,0,114,5,0,0,0,114,5,0,0,0,41,1, -+ 114,212,0,0,0,114,6,0,0,0,114,211,0,0,0,10, -+ 3,0,0,115,14,0,0,0,12,3,6,2,12,6,12,4, -+ 12,3,24,12,18,5,114,211,0,0,0,99,0,0,0,0, -+ 0,0,0,0,0,0,0,0,4,0,0,0,64,0,0,0, -+ 115,64,0,0,0,101,0,0,90,1,0,100,0,0,90,2, ++ 17,1,0,0,236,5,0,0,115,14,0,0,0,0,2,15, ++ 1,3,1,19,1,18,1,9,1,31,1,122,23,83,111,117, ++ 114,99,101,76,111,97,100,101,114,46,103,101,116,95,115,111, ++ 117,114,99,101,218,9,95,111,112,116,105,109,105,122,101,114, ++ 30,0,0,0,99,3,0,0,0,1,0,0,0,4,0,0, ++ 0,9,0,0,0,67,0,0,0,115,31,0,0,0,116,0, ++ 0,116,1,0,124,1,0,124,2,0,100,1,0,100,2,0, ++ 100,3,0,100,4,0,124,3,0,131,4,2,83,41,5,122, ++ 130,82,101,116,117,114,110,32,116,104,101,32,99,111,100,101, ++ 32,111,98,106,101,99,116,32,99,111,109,112,105,108,101,100, ++ 32,102,114,111,109,32,115,111,117,114,99,101,46,10,10,32, ++ 32,32,32,32,32,32,32,84,104,101,32,39,100,97,116,97, ++ 39,32,97,114,103,117,109,101,110,116,32,99,97,110,32,98, ++ 101,32,97,110,121,32,111,98,106,101,99,116,32,116,121,112, ++ 101,32,116,104,97,116,32,99,111,109,112,105,108,101,40,41, ++ 32,115,117,112,112,111,114,116,115,46,10,32,32,32,32,32, ++ 32,32,32,114,176,0,0,0,218,12,100,111,110,116,95,105, ++ 110,104,101,114,105,116,84,114,119,0,0,0,41,2,114,115, ++ 0,0,0,218,7,99,111,109,112,105,108,101,41,4,114,72, ++ 0,0,0,114,54,0,0,0,114,36,0,0,0,114,42,1, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,218,14,115,111,117,114,99,101,95,116,111,95,99,111,100, ++ 101,246,5,0,0,115,4,0,0,0,0,5,18,1,122,27, ++ 83,111,117,114,99,101,76,111,97,100,101,114,46,115,111,117, ++ 114,99,101,95,116,111,95,99,111,100,101,99,2,0,0,0, ++ 0,0,0,0,10,0,0,0,43,0,0,0,67,0,0,0, ++ 115,177,1,0,0,124,0,0,106,0,0,124,1,0,131,1, ++ 0,125,2,0,100,1,0,125,3,0,121,16,0,116,1,0, ++ 124,2,0,131,1,0,125,4,0,87,110,24,0,4,116,2, ++ 0,107,10,0,114,63,0,1,1,1,100,1,0,125,4,0, ++ 89,110,202,0,88,121,19,0,124,0,0,106,3,0,124,2, ++ 0,131,1,0,125,5,0,87,110,18,0,4,116,4,0,107, ++ 10,0,114,103,0,1,1,1,89,110,162,0,88,116,5,0, ++ 124,5,0,100,2,0,25,131,1,0,125,3,0,121,19,0, ++ 124,0,0,106,6,0,124,4,0,131,1,0,125,6,0,87, ++ 110,18,0,4,116,7,0,107,10,0,114,159,0,1,1,1, ++ 89,110,106,0,88,121,34,0,116,8,0,124,6,0,100,3, ++ 0,124,5,0,100,4,0,124,1,0,100,5,0,124,4,0, ++ 131,1,3,125,7,0,87,110,24,0,4,116,9,0,116,10, ++ 0,102,2,0,107,10,0,114,220,0,1,1,1,89,110,45, ++ 0,88,116,11,0,100,6,0,124,4,0,124,2,0,131,3, ++ 0,1,116,12,0,124,7,0,100,4,0,124,1,0,100,7, ++ 0,124,4,0,100,8,0,124,2,0,131,1,3,83,124,0, ++ 0,106,6,0,124,2,0,131,1,0,125,8,0,124,0,0, ++ 106,13,0,124,8,0,124,2,0,131,2,0,125,9,0,116, ++ 11,0,100,9,0,124,2,0,131,2,0,1,116,14,0,106, ++ 15,0,12,114,173,1,124,4,0,100,1,0,107,9,0,114, ++ 173,1,124,3,0,100,1,0,107,9,0,114,173,1,116,16, ++ 0,124,9,0,124,3,0,116,17,0,124,8,0,131,1,0, ++ 131,3,0,125,6,0,121,36,0,124,0,0,106,18,0,124, ++ 2,0,124,4,0,124,6,0,131,3,0,1,116,11,0,100, ++ 10,0,124,4,0,131,2,0,1,87,113,173,1,4,116,2, ++ 0,107,10,0,114,169,1,1,1,1,89,113,173,1,88,110, ++ 0,0,124,9,0,83,41,11,122,190,67,111,110,99,114,101, ++ 116,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111, ++ 110,32,111,102,32,73,110,115,112,101,99,116,76,111,97,100, ++ 101,114,46,103,101,116,95,99,111,100,101,46,10,10,32,32, ++ 32,32,32,32,32,32,82,101,97,100,105,110,103,32,111,102, ++ 32,98,121,116,101,99,111,100,101,32,114,101,113,117,105,114, ++ 101,115,32,112,97,116,104,95,115,116,97,116,115,32,116,111, ++ 32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46, ++ 32,84,111,32,119,114,105,116,101,10,32,32,32,32,32,32, ++ 32,32,98,121,116,101,99,111,100,101,44,32,115,101,116,95, ++ 100,97,116,97,32,109,117,115,116,32,97,108,115,111,32,98, ++ 101,32,105,109,112,108,101,109,101,110,116,101,100,46,10,10, ++ 32,32,32,32,32,32,32,32,78,114,184,0,0,0,114,188, ++ 0,0,0,114,68,0,0,0,114,36,0,0,0,122,13,123, ++ 125,32,109,97,116,99,104,101,115,32,123,125,114,141,0,0, ++ 0,114,142,0,0,0,122,19,99,111,100,101,32,111,98,106, ++ 101,99,116,32,102,114,111,109,32,123,125,122,10,119,114,111, ++ 116,101,32,123,33,114,125,41,19,114,239,0,0,0,114,133, ++ 0,0,0,114,125,0,0,0,114,37,1,0,0,114,35,1, ++ 0,0,114,15,0,0,0,114,40,1,0,0,114,41,0,0, ++ 0,114,191,0,0,0,114,154,0,0,0,114,187,0,0,0, ++ 114,153,0,0,0,114,196,0,0,0,114,45,1,0,0,114, ++ 8,0,0,0,218,19,100,111,110,116,95,119,114,105,116,101, ++ 95,98,121,116,101,99,111,100,101,114,199,0,0,0,114,32, ++ 0,0,0,114,39,1,0,0,41,10,114,72,0,0,0,114, ++ 159,0,0,0,114,142,0,0,0,114,189,0,0,0,114,141, ++ 0,0,0,218,2,115,116,114,54,0,0,0,218,10,98,121, ++ 116,101,115,95,100,97,116,97,114,202,0,0,0,90,11,99, ++ 111,100,101,95,111,98,106,101,99,116,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,16,1,0,0,254,5, ++ 0,0,115,78,0,0,0,0,7,15,1,6,1,3,1,16, ++ 1,13,1,11,2,3,1,19,1,13,1,5,2,16,1,3, ++ 1,19,1,13,1,5,2,3,1,9,1,12,1,13,1,19, ++ 1,5,2,9,1,7,1,15,1,6,1,7,1,15,1,18, ++ 1,13,1,22,1,12,1,9,1,15,1,3,1,19,1,17, ++ 1,13,1,8,1,122,21,83,111,117,114,99,101,76,111,97, ++ 100,101,114,46,103,101,116,95,99,111,100,101,78,114,139,0, ++ 0,0,41,10,114,58,0,0,0,114,57,0,0,0,114,59, ++ 0,0,0,114,36,1,0,0,114,37,1,0,0,114,39,1, ++ 0,0,114,38,1,0,0,114,17,1,0,0,114,45,1,0, ++ 0,114,16,1,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,34,1,0,0,196, ++ 5,0,0,115,14,0,0,0,12,2,12,8,12,13,12,10, ++ 12,7,12,10,18,8,114,34,1,0,0,99,0,0,0,0, ++ 0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0, ++ 115,112,0,0,0,101,0,0,90,1,0,100,0,0,90,2, + 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, + 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, -+ 6,0,100,7,0,100,8,0,100,9,0,132,0,1,90,6, -+ 0,100,10,0,83,41,11,218,16,83,111,117,114,99,101,70, -+ 105,108,101,76,111,97,100,101,114,122,62,67,111,110,99,114, ++ 6,0,100,7,0,132,0,0,90,6,0,101,7,0,135,0, ++ 0,102,1,0,100,8,0,100,9,0,134,0,0,131,1,0, ++ 90,8,0,101,7,0,100,10,0,100,11,0,132,0,0,131, ++ 1,0,90,9,0,100,12,0,100,13,0,132,0,0,90,10, ++ 0,135,0,0,83,41,14,218,10,70,105,108,101,76,111,97, ++ 100,101,114,122,103,66,97,115,101,32,102,105,108,101,32,108, ++ 111,97,100,101,114,32,99,108,97,115,115,32,119,104,105,99, ++ 104,32,105,109,112,108,101,109,101,110,116,115,32,116,104,101, ++ 32,108,111,97,100,101,114,32,112,114,111,116,111,99,111,108, ++ 32,109,101,116,104,111,100,115,32,116,104,97,116,10,32,32, ++ 32,32,114,101,113,117,105,114,101,32,102,105,108,101,32,115, ++ 121,115,116,101,109,32,117,115,97,103,101,46,99,3,0,0, ++ 0,0,0,0,0,3,0,0,0,2,0,0,0,67,0,0, ++ 0,115,22,0,0,0,124,1,0,124,0,0,95,0,0,124, ++ 2,0,124,0,0,95,1,0,100,1,0,83,41,2,122,75, ++ 67,97,99,104,101,32,116,104,101,32,109,111,100,117,108,101, ++ 32,110,97,109,101,32,97,110,100,32,116,104,101,32,112,97, ++ 116,104,32,116,111,32,116,104,101,32,102,105,108,101,32,102, ++ 111,117,110,100,32,98,121,32,116,104,101,10,32,32,32,32, ++ 32,32,32,32,102,105,110,100,101,114,46,78,41,2,114,68, ++ 0,0,0,114,36,0,0,0,41,3,114,72,0,0,0,114, ++ 159,0,0,0,114,36,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,73,0,0,0,55,6,0, ++ 0,115,4,0,0,0,0,3,9,1,122,19,70,105,108,101, ++ 76,111,97,100,101,114,46,95,95,105,110,105,116,95,95,99, ++ 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, ++ 67,0,0,0,115,34,0,0,0,124,0,0,106,0,0,124, ++ 1,0,106,0,0,107,2,0,111,33,0,124,0,0,106,1, ++ 0,124,1,0,106,1,0,107,2,0,83,41,1,78,41,2, ++ 114,225,0,0,0,114,64,0,0,0,41,2,114,72,0,0, ++ 0,114,228,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,114,230,0,0,0,61,6,0,0,115,4, ++ 0,0,0,0,1,18,1,122,17,70,105,108,101,76,111,97, ++ 100,101,114,46,95,95,101,113,95,95,99,1,0,0,0,0, ++ 0,0,0,1,0,0,0,3,0,0,0,67,0,0,0,115, ++ 26,0,0,0,116,0,0,124,0,0,106,1,0,131,1,0, ++ 116,0,0,124,0,0,106,2,0,131,1,0,65,83,41,1, ++ 78,41,3,218,4,104,97,115,104,114,68,0,0,0,114,36, ++ 0,0,0,41,1,114,72,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,8,95,95,104,97,115, ++ 104,95,95,65,6,0,0,115,2,0,0,0,0,1,122,19, ++ 70,105,108,101,76,111,97,100,101,114,46,95,95,104,97,115, ++ 104,95,95,99,2,0,0,0,0,0,0,0,2,0,0,0, ++ 3,0,0,0,3,0,0,0,115,22,0,0,0,116,0,0, ++ 116,1,0,124,0,0,131,2,0,106,2,0,124,1,0,131, ++ 1,0,83,41,1,122,100,76,111,97,100,32,97,32,109,111, ++ 100,117,108,101,32,102,114,111,109,32,97,32,102,105,108,101, ++ 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, ++ 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, ++ 97,116,101,100,46,32,32,85,115,101,32,101,120,101,99,95, ++ 109,111,100,117,108,101,40,41,32,105,110,115,116,101,97,100, ++ 46,10,10,32,32,32,32,32,32,32,32,41,3,218,5,115, ++ 117,112,101,114,114,49,1,0,0,114,5,1,0,0,41,2, ++ 114,72,0,0,0,114,159,0,0,0,41,1,114,225,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,114,5,1,0,0, ++ 68,6,0,0,115,2,0,0,0,0,10,122,22,70,105,108, ++ 101,76,111,97,100,101,114,46,108,111,97,100,95,109,111,100, ++ 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, ++ 1,0,0,0,67,0,0,0,115,7,0,0,0,124,0,0, ++ 106,0,0,83,41,1,122,58,82,101,116,117,114,110,32,116, ++ 104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,115, ++ 111,117,114,99,101,32,102,105,108,101,32,97,115,32,102,111, ++ 117,110,100,32,98,121,32,116,104,101,32,102,105,110,100,101, ++ 114,46,41,1,114,36,0,0,0,41,2,114,72,0,0,0, ++ 114,159,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,114,239,0,0,0,80,6,0,0,115,2,0, ++ 0,0,0,3,122,23,70,105,108,101,76,111,97,100,101,114, ++ 46,103,101,116,95,102,105,108,101,110,97,109,101,99,2,0, ++ 0,0,0,0,0,0,3,0,0,0,8,0,0,0,67,0, ++ 0,0,115,41,0,0,0,116,0,0,106,1,0,124,1,0, ++ 100,1,0,131,2,0,143,17,0,125,2,0,124,2,0,106, ++ 2,0,131,0,0,83,87,100,2,0,81,88,100,2,0,83, ++ 41,3,122,39,82,101,116,117,114,110,32,116,104,101,32,100, ++ 97,116,97,32,102,114,111,109,32,112,97,116,104,32,97,115, ++ 32,114,97,119,32,98,121,116,101,115,46,218,1,114,78,41, ++ 3,114,50,0,0,0,114,51,0,0,0,90,4,114,101,97, ++ 100,41,3,114,72,0,0,0,114,36,0,0,0,114,55,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,40,1,0,0,85,6,0,0,115,4,0,0,0,0, ++ 2,21,1,122,19,70,105,108,101,76,111,97,100,101,114,46, ++ 103,101,116,95,100,97,116,97,41,11,114,58,0,0,0,114, ++ 57,0,0,0,114,59,0,0,0,114,60,0,0,0,114,73, ++ 0,0,0,114,230,0,0,0,114,51,1,0,0,114,157,0, ++ 0,0,114,5,1,0,0,114,239,0,0,0,114,40,1,0, ++ 0,114,5,0,0,0,114,5,0,0,0,41,1,114,225,0, ++ 0,0,114,6,0,0,0,114,49,1,0,0,50,6,0,0, ++ 115,14,0,0,0,12,3,6,2,12,6,12,4,12,3,24, ++ 12,18,5,114,49,1,0,0,99,0,0,0,0,0,0,0, ++ 0,0,0,0,0,4,0,0,0,64,0,0,0,115,64,0, ++ 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, ++ 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, ++ 100,4,0,100,5,0,132,0,0,90,5,0,100,6,0,100, ++ 7,0,100,8,0,100,9,0,132,0,1,90,6,0,100,10, ++ 0,83,41,11,114,9,1,0,0,122,62,67,111,110,99,114, + 101,116,101,32,105,109,112,108,101,109,101,110,116,97,116,105, + 111,110,32,111,102,32,83,111,117,114,99,101,76,111,97,100, + 101,114,32,117,115,105,110,103,32,116,104,101,32,102,105,108, + 101,32,115,121,115,116,101,109,46,99,2,0,0,0,0,0, -+ 0,0,3,0,0,0,4,0,0,0,67,0,0,0,115,34, -+ 0,0,0,116,0,0,124,1,0,131,1,0,125,2,0,100, -+ 1,0,124,2,0,106,1,0,100,2,0,124,2,0,106,2, -+ 0,105,2,0,83,41,3,122,33,82,101,116,117,114,110,32, -+ 116,104,101,32,109,101,116,97,100,97,116,97,32,102,111,114, -+ 32,116,104,101,32,112,97,116,104,46,114,134,0,0,0,114, -+ 135,0,0,0,41,3,114,40,0,0,0,218,8,115,116,95, -+ 109,116,105,109,101,90,7,115,116,95,115,105,122,101,41,3, -+ 114,109,0,0,0,114,36,0,0,0,114,209,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,198, -+ 0,0,0,55,3,0,0,115,4,0,0,0,0,2,12,1, -+ 122,27,83,111,117,114,99,101,70,105,108,101,76,111,97,100, -+ 101,114,46,112,97,116,104,95,115,116,97,116,115,99,4,0, -+ 0,0,0,0,0,0,5,0,0,0,5,0,0,0,67,0, -+ 0,0,115,34,0,0,0,116,0,0,124,1,0,131,1,0, -+ 125,4,0,124,0,0,106,1,0,124,2,0,124,3,0,100, -+ 1,0,124,4,0,131,2,1,83,41,2,78,218,5,95,109, -+ 111,100,101,41,2,114,98,0,0,0,114,199,0,0,0,41, -+ 5,114,109,0,0,0,114,91,0,0,0,114,90,0,0,0, -+ 114,54,0,0,0,114,43,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,200,0,0,0,60,3, -+ 0,0,115,4,0,0,0,0,2,12,1,122,32,83,111,117, -+ 114,99,101,70,105,108,101,76,111,97,100,101,114,46,95,99, -+ 97,99,104,101,95,98,121,116,101,99,111,100,101,114,221,0, -+ 0,0,105,182,1,0,0,99,3,0,0,0,1,0,0,0, -+ 9,0,0,0,17,0,0,0,67,0,0,0,115,53,1,0, -+ 0,116,0,0,124,1,0,131,1,0,92,2,0,125,4,0, -+ 125,5,0,103,0,0,125,6,0,120,54,0,124,4,0,114, -+ 80,0,116,1,0,124,4,0,131,1,0,12,114,80,0,116, -+ 0,0,124,4,0,131,1,0,92,2,0,125,4,0,125,7, -+ 0,124,6,0,106,2,0,124,7,0,131,1,0,1,113,27, -+ 0,87,120,132,0,116,3,0,124,6,0,131,1,0,68,93, -+ 118,0,125,7,0,116,4,0,124,4,0,124,7,0,131,2, -+ 0,125,4,0,121,17,0,116,5,0,106,6,0,124,4,0, -+ 131,1,0,1,87,113,94,0,4,116,7,0,107,10,0,114, -+ 155,0,1,1,1,119,94,0,89,113,94,0,4,116,8,0, -+ 107,10,0,114,211,0,1,125,8,0,1,122,25,0,116,9, -+ 0,100,1,0,124,4,0,124,8,0,131,3,0,1,100,2, -+ 0,83,87,89,100,2,0,100,2,0,125,8,0,126,8,0, -+ 88,113,94,0,88,113,94,0,87,121,33,0,116,10,0,124, -+ 1,0,124,2,0,124,3,0,131,3,0,1,116,9,0,100, -+ 3,0,124,1,0,131,2,0,1,87,110,53,0,4,116,8, -+ 0,107,10,0,114,48,1,1,125,8,0,1,122,21,0,116, -+ 9,0,100,1,0,124,1,0,124,8,0,131,3,0,1,87, -+ 89,100,2,0,100,2,0,125,8,0,126,8,0,88,110,1, -+ 0,88,100,2,0,83,41,4,122,27,87,114,105,116,101,32, -+ 98,121,116,101,115,32,100,97,116,97,32,116,111,32,97,32, -+ 102,105,108,101,46,122,27,99,111,117,108,100,32,110,111,116, -+ 32,99,114,101,97,116,101,32,123,33,114,125,58,32,123,33, -+ 114,125,78,122,12,99,114,101,97,116,101,100,32,123,33,114, -+ 125,41,11,114,39,0,0,0,114,47,0,0,0,114,164,0, -+ 0,0,114,34,0,0,0,114,29,0,0,0,114,4,0,0, -+ 0,90,5,109,107,100,105,114,218,15,70,105,108,101,69,120, -+ 105,115,116,115,69,114,114,111,114,114,41,0,0,0,114,106, -+ 0,0,0,114,56,0,0,0,41,9,114,109,0,0,0,114, -+ 36,0,0,0,114,54,0,0,0,114,221,0,0,0,218,6, -+ 112,97,114,101,110,116,114,95,0,0,0,114,28,0,0,0, -+ 114,24,0,0,0,114,202,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,199,0,0,0,65,3, -+ 0,0,115,38,0,0,0,0,2,18,1,6,2,22,1,18, -+ 1,17,2,19,1,15,1,3,1,17,1,13,2,7,1,18, -+ 3,16,1,27,1,3,1,16,1,17,1,18,2,122,25,83, ++ 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,36, ++ 0,0,0,116,0,0,124,1,0,131,1,0,125,2,0,105, ++ 2,0,124,2,0,106,1,0,100,1,0,54,124,2,0,106, ++ 2,0,100,2,0,54,83,41,3,122,33,82,101,116,117,114, ++ 110,32,116,104,101,32,109,101,116,97,100,97,116,97,32,102, ++ 111,114,32,116,104,101,32,112,97,116,104,46,114,184,0,0, ++ 0,114,185,0,0,0,41,3,114,40,0,0,0,218,8,115, ++ 116,95,109,116,105,109,101,90,7,115,116,95,115,105,122,101, ++ 41,3,114,72,0,0,0,114,36,0,0,0,114,47,1,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,37,1,0,0,95,6,0,0,115,4,0,0,0,0,2, ++ 12,1,122,27,83,111,117,114,99,101,70,105,108,101,76,111, ++ 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, ++ 4,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, ++ 67,0,0,0,115,34,0,0,0,116,0,0,124,1,0,131, ++ 1,0,125,4,0,124,0,0,106,1,0,124,2,0,124,3, ++ 0,100,1,0,124,4,0,131,2,1,83,41,2,78,218,5, ++ 95,109,111,100,101,41,2,114,145,0,0,0,114,38,1,0, ++ 0,41,5,114,72,0,0,0,114,142,0,0,0,114,141,0, ++ 0,0,114,54,0,0,0,114,43,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,114,39,1,0,0, ++ 100,6,0,0,115,4,0,0,0,0,2,12,1,122,32,83, + 111,117,114,99,101,70,105,108,101,76,111,97,100,101,114,46, -+ 115,101,116,95,100,97,116,97,78,41,7,114,113,0,0,0, -+ 114,112,0,0,0,114,114,0,0,0,114,115,0,0,0,114, -+ 198,0,0,0,114,200,0,0,0,114,199,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,219,0,0,0,51,3,0,0,115,8,0,0,0, -+ 12,2,6,2,12,5,12,5,114,219,0,0,0,99,0,0, -+ 0,0,0,0,0,0,0,0,0,0,2,0,0,0,64,0, -+ 0,0,115,46,0,0,0,101,0,0,90,1,0,100,0,0, - 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, - 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, -- 0,100,6,0,100,7,0,132,0,0,90,6,0,100,8,0, -- 100,9,0,132,0,0,90,7,0,100,10,0,100,11,0,132, -- 0,0,90,8,0,100,12,0,100,13,0,132,0,0,90,9, -- 0,100,14,0,100,15,0,132,0,0,90,10,0,100,16,0, -- 100,17,0,132,0,0,90,11,0,101,12,0,100,18,0,100, -- 19,0,132,0,0,131,1,0,90,13,0,100,20,0,83,41, -- 21,218,19,69,120,116,101,110,115,105,111,110,70,105,108,101, -- 76,111,97,100,101,114,122,93,76,111,97,100,101,114,32,102, -- 111,114,32,101,120,116,101,110,115,105,111,110,32,109,111,100, -- 117,108,101,115,46,10,10,32,32,32,32,84,104,101,32,99, -- 111,110,115,116,114,117,99,116,111,114,32,105,115,32,100,101, -- 115,105,103,110,101,100,32,116,111,32,119,111,114,107,32,119, -- 105,116,104,32,70,105,108,101,70,105,110,100,101,114,46,10, -- 10,32,32,32,32,99,3,0,0,0,0,0,0,0,3,0, -- 0,0,2,0,0,0,67,0,0,0,115,22,0,0,0,124, -- 1,0,124,0,0,95,0,0,124,2,0,124,0,0,95,1, -- 0,100,0,0,83,41,1,78,41,2,114,106,0,0,0,114, -- 35,0,0,0,41,3,114,108,0,0,0,114,106,0,0,0, -- 114,35,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,185,0,0,0,121,3,0,0,115,4,0, -- 0,0,0,1,9,1,122,28,69,120,116,101,110,115,105,111, -- 110,70,105,108,101,76,111,97,100,101,114,46,95,95,105,110, -- 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,2,0,0,0,67,0,0,0,115,34,0,0,0,124,0, -- 0,106,0,0,124,1,0,106,0,0,107,2,0,111,33,0, -- 124,0,0,106,1,0,124,1,0,106,1,0,107,2,0,83, -- 41,1,78,41,2,114,211,0,0,0,114,118,0,0,0,41, -- 2,114,108,0,0,0,114,212,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,213,0,0,0,125, -- 3,0,0,115,4,0,0,0,0,1,18,1,122,26,69,120, -- 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, -- 114,46,95,95,101,113,95,95,99,1,0,0,0,0,0,0, -- 0,1,0,0,0,3,0,0,0,67,0,0,0,115,26,0, -- 0,0,116,0,0,124,0,0,106,1,0,131,1,0,116,0, -- 0,124,0,0,106,2,0,131,1,0,65,83,41,1,78,41, -- 3,114,214,0,0,0,114,106,0,0,0,114,35,0,0,0, -- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,114,215,0,0,0,129,3,0,0,115, -- 2,0,0,0,0,1,122,28,69,120,116,101,110,115,105,111, -- 110,70,105,108,101,76,111,97,100,101,114,46,95,95,104,97, -- 115,104,95,95,99,2,0,0,0,0,0,0,0,3,0,0, -- 0,4,0,0,0,67,0,0,0,115,47,0,0,0,116,0, -- 0,106,1,0,116,2,0,106,3,0,124,1,0,131,2,0, -- 125,2,0,116,4,0,100,1,0,124,1,0,106,5,0,124, -- 0,0,106,6,0,131,3,0,1,124,2,0,83,41,2,122, -- 38,67,114,101,97,116,101,32,97,110,32,117,110,105,116,105, -- 97,108,105,122,101,100,32,101,120,116,101,110,115,105,111,110, -- 32,109,111,100,117,108,101,122,38,101,120,116,101,110,115,105, -- 111,110,32,109,111,100,117,108,101,32,123,33,114,125,32,108, -- 111,97,100,101,100,32,102,114,111,109,32,123,33,114,125,41, -- 7,114,121,0,0,0,114,188,0,0,0,114,145,0,0,0, -- 90,14,99,114,101,97,116,101,95,100,121,110,97,109,105,99, -- 114,105,0,0,0,114,106,0,0,0,114,35,0,0,0,41, -- 3,114,108,0,0,0,114,164,0,0,0,114,190,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 186,0,0,0,132,3,0,0,115,10,0,0,0,0,2,6, -- 1,15,1,6,1,16,1,122,33,69,120,116,101,110,115,105, -- 111,110,70,105,108,101,76,111,97,100,101,114,46,99,114,101, -- 97,116,101,95,109,111,100,117,108,101,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,4,0,0,0,67,0,0,0,115, -- 45,0,0,0,116,0,0,106,1,0,116,2,0,106,3,0, -- 124,1,0,131,2,0,1,116,4,0,100,1,0,124,0,0, -- 106,5,0,124,0,0,106,6,0,131,3,0,1,100,2,0, -- 83,41,3,122,30,73,110,105,116,105,97,108,105,122,101,32, -- 97,110,32,101,120,116,101,110,115,105,111,110,32,109,111,100, -- 117,108,101,122,40,101,120,116,101,110,115,105,111,110,32,109, -- 111,100,117,108,101,32,123,33,114,125,32,101,120,101,99,117, -- 116,101,100,32,102,114,111,109,32,123,33,114,125,78,41,7, -- 114,121,0,0,0,114,188,0,0,0,114,145,0,0,0,90, -- 12,101,120,101,99,95,100,121,110,97,109,105,99,114,105,0, -- 0,0,114,106,0,0,0,114,35,0,0,0,41,2,114,108, -- 0,0,0,114,190,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,191,0,0,0,140,3,0,0, -- 115,6,0,0,0,0,2,19,1,6,1,122,31,69,120,116, -+ 0,100,6,0,83,41,7,218,20,83,111,117,114,99,101,108, -+ 101,115,115,70,105,108,101,76,111,97,100,101,114,122,45,76, -+ 111,97,100,101,114,32,119,104,105,99,104,32,104,97,110,100, -+ 108,101,115,32,115,111,117,114,99,101,108,101,115,115,32,102, -+ 105,108,101,32,105,109,112,111,114,116,115,46,99,2,0,0, -+ 0,0,0,0,0,5,0,0,0,6,0,0,0,67,0,0, -+ 0,115,76,0,0,0,124,0,0,106,0,0,124,1,0,131, -+ 1,0,125,2,0,124,0,0,106,1,0,124,2,0,131,1, -+ 0,125,3,0,116,2,0,124,3,0,100,1,0,124,1,0, -+ 100,2,0,124,2,0,131,1,2,125,4,0,116,3,0,124, -+ 4,0,100,1,0,124,1,0,100,3,0,124,2,0,131,1, -+ 2,83,41,4,78,114,107,0,0,0,114,36,0,0,0,114, -+ 90,0,0,0,41,4,114,158,0,0,0,114,201,0,0,0, -+ 114,142,0,0,0,114,148,0,0,0,41,5,114,109,0,0, -+ 0,114,127,0,0,0,114,36,0,0,0,114,54,0,0,0, -+ 114,210,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,188,0,0,0,98,3,0,0,115,8,0, -+ 0,0,0,1,15,1,15,1,24,1,122,29,83,111,117,114, -+ 99,101,108,101,115,115,70,105,108,101,76,111,97,100,101,114, -+ 46,103,101,116,95,99,111,100,101,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, -+ 0,0,0,100,1,0,83,41,2,122,39,82,101,116,117,114, -+ 110,32,78,111,110,101,32,97,115,32,116,104,101,114,101,32, -+ 105,115,32,110,111,32,115,111,117,114,99,101,32,99,111,100, -+ 101,46,78,114,5,0,0,0,41,2,114,109,0,0,0,114, -+ 127,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,203,0,0,0,104,3,0,0,115,2,0,0, -+ 0,0,2,122,31,83,111,117,114,99,101,108,101,115,115,70, -+ 105,108,101,76,111,97,100,101,114,46,103,101,116,95,115,111, -+ 117,114,99,101,78,41,6,114,113,0,0,0,114,112,0,0, -+ 0,114,114,0,0,0,114,115,0,0,0,114,188,0,0,0, -+ 114,203,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,224,0,0,0,94,3, -+ 0,0,115,6,0,0,0,12,2,6,2,12,6,114,224,0, -+ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3, -+ 0,0,0,64,0,0,0,115,136,0,0,0,101,0,0,90, -+ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, -+ 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, -+ 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, -+ 6,0,100,8,0,100,9,0,132,0,0,90,7,0,100,10, -+ 0,100,11,0,132,0,0,90,8,0,100,12,0,100,13,0, -+ 132,0,0,90,9,0,100,14,0,100,15,0,132,0,0,90, -+ 10,0,100,16,0,100,17,0,132,0,0,90,11,0,101,12, -+ 0,100,18,0,100,19,0,132,0,0,131,1,0,90,13,0, -+ 100,20,0,83,41,21,218,19,69,120,116,101,110,115,105,111, -+ 110,70,105,108,101,76,111,97,100,101,114,122,93,76,111,97, -+ 100,101,114,32,102,111,114,32,101,120,116,101,110,115,105,111, -+ 110,32,109,111,100,117,108,101,115,46,10,10,32,32,32,32, -+ 84,104,101,32,99,111,110,115,116,114,117,99,116,111,114,32, -+ 105,115,32,100,101,115,105,103,110,101,100,32,116,111,32,119, -+ 111,114,107,32,119,105,116,104,32,70,105,108,101,70,105,110, -+ 100,101,114,46,10,10,32,32,32,32,99,3,0,0,0,0, -+ 0,0,0,3,0,0,0,2,0,0,0,67,0,0,0,115, -+ 22,0,0,0,124,1,0,124,0,0,95,0,0,124,2,0, -+ 124,0,0,95,1,0,100,0,0,83,41,1,78,41,2,114, -+ 107,0,0,0,114,36,0,0,0,41,3,114,109,0,0,0, -+ 114,107,0,0,0,114,36,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,186,0,0,0,121,3, -+ 0,0,115,4,0,0,0,0,1,9,1,122,28,69,120,116, - 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, -- 46,101,120,101,99,95,109,111,100,117,108,101,99,2,0,0, -- 0,0,0,0,0,2,0,0,0,4,0,0,0,3,0,0, -- 0,115,48,0,0,0,116,0,0,124,0,0,106,1,0,131, -- 1,0,100,1,0,25,137,0,0,116,2,0,135,0,0,102, -- 1,0,100,2,0,100,3,0,134,0,0,116,3,0,68,131, -- 1,0,131,1,0,83,41,4,122,49,82,101,116,117,114,110, -- 32,84,114,117,101,32,105,102,32,116,104,101,32,101,120,116, -- 101,110,115,105,111,110,32,109,111,100,117,108,101,32,105,115, -- 32,97,32,112,97,99,107,97,103,101,46,114,29,0,0,0, -- 99,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0, -- 0,51,0,0,0,115,31,0,0,0,124,0,0,93,21,0, -- 125,1,0,136,0,0,100,0,0,124,1,0,23,107,2,0, -- 86,1,113,3,0,100,1,0,83,41,2,114,185,0,0,0, -- 78,114,4,0,0,0,41,2,114,22,0,0,0,218,6,115, -- 117,102,102,105,120,41,1,218,9,102,105,108,101,95,110,97, -- 109,101,114,4,0,0,0,114,5,0,0,0,250,9,60,103, -- 101,110,101,120,112,114,62,149,3,0,0,115,2,0,0,0, -- 6,1,122,49,69,120,116,101,110,115,105,111,110,70,105,108, -- 101,76,111,97,100,101,114,46,105,115,95,112,97,99,107,97, -- 103,101,46,60,108,111,99,97,108,115,62,46,60,103,101,110, -- 101,120,112,114,62,41,4,114,38,0,0,0,114,35,0,0, -- 0,218,3,97,110,121,218,18,69,88,84,69,78,83,73,79, -- 78,95,83,85,70,70,73,88,69,83,41,2,114,108,0,0, -- 0,114,126,0,0,0,114,4,0,0,0,41,1,114,226,0, -- 0,0,114,5,0,0,0,114,159,0,0,0,146,3,0,0, -- 115,6,0,0,0,0,2,19,1,18,1,122,30,69,120,116, -+ 46,95,95,105,110,105,116,95,95,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,34, -+ 0,0,0,124,0,0,106,0,0,124,1,0,106,0,0,107, -+ 2,0,111,33,0,124,0,0,106,1,0,124,1,0,106,1, -+ 0,107,2,0,83,41,1,78,41,2,114,212,0,0,0,114, -+ 119,0,0,0,41,2,114,109,0,0,0,114,213,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 214,0,0,0,125,3,0,0,115,4,0,0,0,0,1,18, -+ 1,122,26,69,120,116,101,110,115,105,111,110,70,105,108,101, -+ 76,111,97,100,101,114,46,95,95,101,113,95,95,99,1,0, -+ 0,0,0,0,0,0,1,0,0,0,3,0,0,0,67,0, -+ 0,0,115,26,0,0,0,116,0,0,124,0,0,106,1,0, -+ 131,1,0,116,0,0,124,0,0,106,2,0,131,1,0,65, -+ 83,41,1,78,41,3,114,215,0,0,0,114,107,0,0,0, -+ 114,36,0,0,0,41,1,114,109,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,114,216,0,0,0, -+ 129,3,0,0,115,2,0,0,0,0,1,122,28,69,120,116, - 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, -- 46,105,115,95,112,97,99,107,97,103,101,99,2,0,0,0, -- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, -- 115,4,0,0,0,100,1,0,83,41,2,122,63,82,101,116, -- 117,114,110,32,78,111,110,101,32,97,115,32,97,110,32,101, -- 120,116,101,110,115,105,111,110,32,109,111,100,117,108,101,32, -- 99,97,110,110,111,116,32,99,114,101,97,116,101,32,97,32, -- 99,111,100,101,32,111,98,106,101,99,116,46,78,114,4,0, -- 0,0,41,2,114,108,0,0,0,114,126,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,187,0, -- 0,0,152,3,0,0,115,2,0,0,0,0,2,122,28,69, -- 120,116,101,110,115,105,111,110,70,105,108,101,76,111,97,100, -- 101,114,46,103,101,116,95,99,111,100,101,99,2,0,0,0, -- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, -- 115,4,0,0,0,100,1,0,83,41,2,122,53,82,101,116, -- 117,114,110,32,78,111,110,101,32,97,115,32,101,120,116,101, -- 110,115,105,111,110,32,109,111,100,117,108,101,115,32,104,97, -- 118,101,32,110,111,32,115,111,117,114,99,101,32,99,111,100, -- 101,46,78,114,4,0,0,0,41,2,114,108,0,0,0,114, -- 126,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,202,0,0,0,156,3,0,0,115,2,0,0, -- 0,0,2,122,30,69,120,116,101,110,115,105,111,110,70,105, -- 108,101,76,111,97,100,101,114,46,103,101,116,95,115,111,117, -- 114,99,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -- 1,0,0,0,67,0,0,0,115,7,0,0,0,124,0,0, -- 106,0,0,83,41,1,122,58,82,101,116,117,114,110,32,116, -- 104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,115, -- 111,117,114,99,101,32,102,105,108,101,32,97,115,32,102,111, -- 117,110,100,32,98,121,32,116,104,101,32,102,105,110,100,101, -- 114,46,41,1,114,35,0,0,0,41,2,114,108,0,0,0, -- 114,126,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,157,0,0,0,160,3,0,0,115,2,0, -- 0,0,0,3,122,32,69,120,116,101,110,115,105,111,110,70, -- 105,108,101,76,111,97,100,101,114,46,103,101,116,95,102,105, -- 108,101,110,97,109,101,78,41,14,114,112,0,0,0,114,111, -- 0,0,0,114,113,0,0,0,114,114,0,0,0,114,185,0, -- 0,0,114,213,0,0,0,114,215,0,0,0,114,186,0,0, -- 0,114,191,0,0,0,114,159,0,0,0,114,187,0,0,0, -- 114,202,0,0,0,114,123,0,0,0,114,157,0,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,224,0,0,0,113,3,0,0,115,20,0,0, -- 0,12,6,6,2,12,4,12,4,12,3,12,8,12,6,12, -- 6,12,4,12,4,114,224,0,0,0,99,0,0,0,0,0, -- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, -- 130,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, -- 100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,90, -- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,100,6, -- 0,100,7,0,132,0,0,90,6,0,100,8,0,100,9,0, -- 132,0,0,90,7,0,100,10,0,100,11,0,132,0,0,90, -- 8,0,100,12,0,100,13,0,132,0,0,90,9,0,100,14, -- 0,100,15,0,132,0,0,90,10,0,100,16,0,100,17,0, -- 132,0,0,90,11,0,100,18,0,100,19,0,132,0,0,90, -- 12,0,100,20,0,83,41,21,218,14,95,78,97,109,101,115, -- 112,97,99,101,80,97,116,104,97,38,1,0,0,82,101,112, -- 114,101,115,101,110,116,115,32,97,32,110,97,109,101,115,112, -- 97,99,101,32,112,97,99,107,97,103,101,39,115,32,112,97, -- 116,104,46,32,32,73,116,32,117,115,101,115,32,116,104,101, -- 32,109,111,100,117,108,101,32,110,97,109,101,10,32,32,32, -- 32,116,111,32,102,105,110,100,32,105,116,115,32,112,97,114, -- 101,110,116,32,109,111,100,117,108,101,44,32,97,110,100,32, -- 102,114,111,109,32,116,104,101,114,101,32,105,116,32,108,111, -- 111,107,115,32,117,112,32,116,104,101,32,112,97,114,101,110, -- 116,39,115,10,32,32,32,32,95,95,112,97,116,104,95,95, -- 46,32,32,87,104,101,110,32,116,104,105,115,32,99,104,97, -- 110,103,101,115,44,32,116,104,101,32,109,111,100,117,108,101, -- 39,115,32,111,119,110,32,112,97,116,104,32,105,115,32,114, -- 101,99,111,109,112,117,116,101,100,44,10,32,32,32,32,117, -- 115,105,110,103,32,112,97,116,104,95,102,105,110,100,101,114, -- 46,32,32,70,111,114,32,116,111,112,45,108,101,118,101,108, -- 32,109,111,100,117,108,101,115,44,32,116,104,101,32,112,97, -- 114,101,110,116,32,109,111,100,117,108,101,39,115,32,112,97, -- 116,104,10,32,32,32,32,105,115,32,115,121,115,46,112,97, -- 116,104,46,99,4,0,0,0,0,0,0,0,4,0,0,0, -- 2,0,0,0,67,0,0,0,115,52,0,0,0,124,1,0, -- 124,0,0,95,0,0,124,2,0,124,0,0,95,1,0,116, -- 2,0,124,0,0,106,3,0,131,0,0,131,1,0,124,0, -- 0,95,4,0,124,3,0,124,0,0,95,5,0,100,0,0, -- 83,41,1,78,41,6,218,5,95,110,97,109,101,218,5,95, -- 112,97,116,104,114,93,0,0,0,218,16,95,103,101,116,95, -- 112,97,114,101,110,116,95,112,97,116,104,218,17,95,108,97, -- 115,116,95,112,97,114,101,110,116,95,112,97,116,104,218,12, -- 95,112,97,116,104,95,102,105,110,100,101,114,41,4,114,108, -- 0,0,0,114,106,0,0,0,114,35,0,0,0,218,11,112, -- 97,116,104,95,102,105,110,100,101,114,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,185,0,0,0,173,3, -- 0,0,115,8,0,0,0,0,1,9,1,9,1,21,1,122, -- 23,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, -- 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, -- 0,4,0,0,0,3,0,0,0,67,0,0,0,115,53,0, -- 0,0,124,0,0,106,0,0,106,1,0,100,1,0,131,1, -- 0,92,3,0,125,1,0,125,2,0,125,3,0,124,2,0, -- 100,2,0,107,2,0,114,43,0,100,6,0,83,124,1,0, -- 100,5,0,102,2,0,83,41,7,122,62,82,101,116,117,114, -- 110,115,32,97,32,116,117,112,108,101,32,111,102,32,40,112, -- 97,114,101,110,116,45,109,111,100,117,108,101,45,110,97,109, -- 101,44,32,112,97,114,101,110,116,45,112,97,116,104,45,97, -- 116,116,114,45,110,97,109,101,41,114,58,0,0,0,114,30, -- 0,0,0,114,7,0,0,0,114,35,0,0,0,90,8,95, -- 95,112,97,116,104,95,95,41,2,122,3,115,121,115,122,4, -- 112,97,116,104,41,2,114,231,0,0,0,114,32,0,0,0, -- 41,4,114,108,0,0,0,114,222,0,0,0,218,3,100,111, -- 116,90,2,109,101,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,23,95,102,105,110,100,95,112,97,114,101, -- 110,116,95,112,97,116,104,95,110,97,109,101,115,179,3,0, -- 0,115,8,0,0,0,0,2,27,1,12,2,4,3,122,38, -- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, -- 102,105,110,100,95,112,97,114,101,110,116,95,112,97,116,104, -- 95,110,97,109,101,115,99,1,0,0,0,0,0,0,0,3, -- 0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,0, -- 124,0,0,106,0,0,131,0,0,92,2,0,125,1,0,125, -- 2,0,116,1,0,116,2,0,106,3,0,124,1,0,25,124, -- 2,0,131,2,0,83,41,1,78,41,4,114,238,0,0,0, -- 114,117,0,0,0,114,7,0,0,0,218,7,109,111,100,117, -- 108,101,115,41,3,114,108,0,0,0,90,18,112,97,114,101, -- 110,116,95,109,111,100,117,108,101,95,110,97,109,101,90,14, -- 112,97,116,104,95,97,116,116,114,95,110,97,109,101,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,233,0, -- 0,0,189,3,0,0,115,4,0,0,0,0,1,18,1,122, -- 31,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, -+ 46,95,95,104,97,115,104,95,95,99,2,0,0,0,0,0, -+ 0,0,3,0,0,0,4,0,0,0,67,0,0,0,115,47, -+ 0,0,0,116,0,0,106,1,0,116,2,0,106,3,0,124, -+ 1,0,131,2,0,125,2,0,116,4,0,100,1,0,124,1, -+ 0,106,5,0,124,0,0,106,6,0,131,3,0,1,124,2, -+ 0,83,41,2,122,38,67,114,101,97,116,101,32,97,110,32, -+ 117,110,105,116,105,97,108,105,122,101,100,32,101,120,116,101, -+ 110,115,105,111,110,32,109,111,100,117,108,101,122,38,101,120, -+ 116,101,110,115,105,111,110,32,109,111,100,117,108,101,32,123, -+ 33,114,125,32,108,111,97,100,101,100,32,102,114,111,109,32, -+ 123,33,114,125,41,7,114,122,0,0,0,114,189,0,0,0, -+ 114,146,0,0,0,90,14,99,114,101,97,116,101,95,100,121, -+ 110,97,109,105,99,114,106,0,0,0,114,107,0,0,0,114, -+ 36,0,0,0,41,3,114,109,0,0,0,114,165,0,0,0, -+ 114,191,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,187,0,0,0,132,3,0,0,115,10,0, -+ 0,0,0,2,6,1,15,1,6,1,16,1,122,33,69,120, -+ 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, -+ 114,46,99,114,101,97,116,101,95,109,111,100,117,108,101,99, ++ 95,99,97,99,104,101,95,98,121,116,101,99,111,100,101,114, ++ 55,1,0,0,105,182,1,0,0,99,3,0,0,0,1,0, ++ 0,0,9,0,0,0,17,0,0,0,67,0,0,0,115,53, ++ 1,0,0,116,0,0,124,1,0,131,1,0,92,2,0,125, ++ 4,0,125,5,0,103,0,0,125,6,0,120,54,0,124,4, ++ 0,114,80,0,116,1,0,124,4,0,131,1,0,12,114,80, ++ 0,116,0,0,124,4,0,131,1,0,92,2,0,125,4,0, ++ 125,7,0,124,6,0,106,2,0,124,7,0,131,1,0,1, ++ 113,27,0,87,120,132,0,116,3,0,124,6,0,131,1,0, ++ 68,93,118,0,125,7,0,116,4,0,124,4,0,124,7,0, ++ 131,2,0,125,4,0,121,17,0,116,5,0,106,6,0,124, ++ 4,0,131,1,0,1,87,113,94,0,4,116,7,0,107,10, ++ 0,114,155,0,1,1,1,119,94,0,89,113,94,0,4,116, ++ 8,0,107,10,0,114,211,0,1,125,8,0,1,122,25,0, ++ 116,9,0,100,1,0,124,4,0,124,8,0,131,3,0,1, ++ 100,2,0,83,87,89,100,2,0,100,2,0,125,8,0,126, ++ 8,0,88,113,94,0,88,113,94,0,87,121,33,0,116,10, ++ 0,124,1,0,124,2,0,124,3,0,131,3,0,1,116,9, ++ 0,100,3,0,124,1,0,131,2,0,1,87,110,53,0,4, ++ 116,8,0,107,10,0,114,48,1,1,125,8,0,1,122,21, ++ 0,116,9,0,100,1,0,124,1,0,124,8,0,131,3,0, ++ 1,87,89,100,2,0,100,2,0,125,8,0,126,8,0,88, ++ 110,1,0,88,100,2,0,83,41,4,122,27,87,114,105,116, ++ 101,32,98,121,116,101,115,32,100,97,116,97,32,116,111,32, ++ 97,32,102,105,108,101,46,122,27,99,111,117,108,100,32,110, ++ 111,116,32,99,114,101,97,116,101,32,123,33,114,125,58,32, ++ 123,33,114,125,78,122,12,99,114,101,97,116,101,100,32,123, ++ 33,114,125,41,11,114,39,0,0,0,114,47,0,0,0,114, ++ 224,0,0,0,114,34,0,0,0,114,29,0,0,0,114,4, ++ 0,0,0,90,5,109,107,100,105,114,218,15,70,105,108,101, ++ 69,120,105,115,116,115,69,114,114,111,114,114,41,0,0,0, ++ 114,153,0,0,0,114,56,0,0,0,41,9,114,72,0,0, ++ 0,114,36,0,0,0,114,54,0,0,0,114,55,1,0,0, ++ 114,234,0,0,0,114,132,0,0,0,114,28,0,0,0,114, ++ 24,0,0,0,114,41,1,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,38,1,0,0,105,6,0, ++ 0,115,38,0,0,0,0,2,18,1,6,2,22,1,18,1, ++ 17,2,19,1,15,1,3,1,17,1,13,2,7,1,18,3, ++ 16,1,27,1,3,1,16,1,17,1,18,2,122,25,83,111, ++ 117,114,99,101,70,105,108,101,76,111,97,100,101,114,46,115, ++ 101,116,95,100,97,116,97,78,41,7,114,58,0,0,0,114, ++ 57,0,0,0,114,59,0,0,0,114,60,0,0,0,114,37, ++ 1,0,0,114,39,1,0,0,114,38,1,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,9,1,0,0,91,6,0,0,115,8,0,0,0,12, ++ 2,6,2,12,5,12,5,114,9,1,0,0,99,0,0,0, ++ 0,0,0,0,0,0,0,0,0,2,0,0,0,64,0,0, ++ 0,115,46,0,0,0,101,0,0,90,1,0,100,0,0,90, ++ 2,0,100,1,0,90,3,0,100,2,0,100,3,0,132,0, ++ 0,90,4,0,100,4,0,100,5,0,132,0,0,90,5,0, ++ 100,6,0,83,41,7,114,8,1,0,0,122,45,76,111,97, ++ 100,101,114,32,119,104,105,99,104,32,104,97,110,100,108,101, ++ 115,32,115,111,117,114,99,101,108,101,115,115,32,102,105,108, ++ 101,32,105,109,112,111,114,116,115,46,99,2,0,0,0,0, ++ 0,0,0,5,0,0,0,6,0,0,0,67,0,0,0,115, ++ 76,0,0,0,124,0,0,106,0,0,124,1,0,131,1,0, ++ 125,2,0,124,0,0,106,1,0,124,2,0,131,1,0,125, ++ 3,0,116,2,0,124,3,0,100,1,0,124,1,0,100,2, ++ 0,124,2,0,131,1,2,125,4,0,116,3,0,124,4,0, ++ 100,1,0,124,1,0,100,3,0,124,2,0,131,1,2,83, ++ 41,4,78,114,68,0,0,0,114,36,0,0,0,114,141,0, ++ 0,0,41,4,114,239,0,0,0,114,40,1,0,0,114,191, ++ 0,0,0,114,196,0,0,0,41,5,114,72,0,0,0,114, ++ 159,0,0,0,114,36,0,0,0,114,54,0,0,0,114,48, ++ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,16,1,0,0,138,6,0,0,115,8,0,0,0, ++ 0,1,15,1,15,1,24,1,122,29,83,111,117,114,99,101, ++ 108,101,115,115,70,105,108,101,76,111,97,100,101,114,46,103, ++ 101,116,95,99,111,100,101,99,2,0,0,0,0,0,0,0, ++ 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, ++ 0,100,1,0,83,41,2,122,39,82,101,116,117,114,110,32, ++ 78,111,110,101,32,97,115,32,116,104,101,114,101,32,105,115, ++ 32,110,111,32,115,111,117,114,99,101,32,99,111,100,101,46, ++ 78,114,5,0,0,0,41,2,114,72,0,0,0,114,159,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,17,1,0,0,144,6,0,0,115,2,0,0,0,0, ++ 2,122,31,83,111,117,114,99,101,108,101,115,115,70,105,108, ++ 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, ++ 99,101,78,41,6,114,58,0,0,0,114,57,0,0,0,114, ++ 59,0,0,0,114,60,0,0,0,114,16,1,0,0,114,17, ++ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,8,1,0,0,134,6,0,0, ++ 115,6,0,0,0,12,2,6,2,12,6,114,8,1,0,0, ++ 99,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0, ++ 0,64,0,0,0,115,130,0,0,0,101,0,0,90,1,0, ++ 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, ++ 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, ++ 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, ++ 101,7,0,100,8,0,100,9,0,132,0,0,131,1,0,90, ++ 8,0,100,10,0,100,11,0,132,0,0,90,9,0,100,12, ++ 0,100,13,0,132,0,0,90,10,0,100,14,0,100,15,0, ++ 132,0,0,90,11,0,101,7,0,100,16,0,100,17,0,132, ++ 0,0,131,1,0,90,12,0,100,18,0,83,41,19,218,19, ++ 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, ++ 100,101,114,122,93,76,111,97,100,101,114,32,102,111,114,32, ++ 101,120,116,101,110,115,105,111,110,32,109,111,100,117,108,101, ++ 115,46,10,10,32,32,32,32,84,104,101,32,99,111,110,115, ++ 116,114,117,99,116,111,114,32,105,115,32,100,101,115,105,103, ++ 110,101,100,32,116,111,32,119,111,114,107,32,119,105,116,104, ++ 32,70,105,108,101,70,105,110,100,101,114,46,10,10,32,32, ++ 32,32,99,3,0,0,0,0,0,0,0,3,0,0,0,2, ++ 0,0,0,67,0,0,0,115,22,0,0,0,124,1,0,124, ++ 0,0,95,0,0,124,2,0,124,0,0,95,1,0,100,0, ++ 0,83,41,1,78,41,2,114,68,0,0,0,114,36,0,0, ++ 0,41,3,114,72,0,0,0,114,68,0,0,0,114,36,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,73,0,0,0,161,6,0,0,115,4,0,0,0,0, ++ 1,9,1,122,28,69,120,116,101,110,115,105,111,110,70,105, ++ 108,101,76,111,97,100,101,114,46,95,95,105,110,105,116,95, ++ 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, ++ 0,0,67,0,0,0,115,34,0,0,0,124,0,0,106,0, ++ 0,124,1,0,106,0,0,107,2,0,111,33,0,124,0,0, ++ 106,1,0,124,1,0,106,1,0,107,2,0,83,41,1,78, ++ 41,2,114,225,0,0,0,114,64,0,0,0,41,2,114,72, ++ 0,0,0,114,228,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,230,0,0,0,165,6,0,0, ++ 115,4,0,0,0,0,1,18,1,122,26,69,120,116,101,110, ++ 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,95, ++ 95,101,113,95,95,99,1,0,0,0,0,0,0,0,1,0, ++ 0,0,3,0,0,0,67,0,0,0,115,26,0,0,0,116, ++ 0,0,124,0,0,106,1,0,131,1,0,116,0,0,124,0, ++ 0,106,2,0,131,1,0,65,83,41,1,78,41,3,114,50, ++ 1,0,0,114,68,0,0,0,114,36,0,0,0,41,1,114, ++ 72,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,51,1,0,0,169,6,0,0,115,2,0,0, ++ 0,0,1,122,28,69,120,116,101,110,115,105,111,110,70,105, ++ 108,101,76,111,97,100,101,114,46,95,95,104,97,115,104,95, ++ 95,99,2,0,0,0,0,0,0,0,4,0,0,0,11,0, ++ 0,0,67,0,0,0,115,183,0,0,0,116,0,0,124,1, ++ 0,131,1,0,143,29,0,1,116,1,0,116,2,0,106,3, ++ 0,124,1,0,124,0,0,106,4,0,131,3,0,125,2,0, ++ 87,100,1,0,81,88,116,5,0,100,2,0,124,0,0,106, ++ 4,0,131,2,0,1,124,0,0,106,6,0,124,1,0,131, ++ 1,0,125,3,0,124,3,0,114,124,0,116,7,0,124,2, ++ 0,100,3,0,131,2,0,12,114,124,0,116,8,0,124,0, ++ 0,106,4,0,131,1,0,100,4,0,25,103,1,0,124,2, ++ 0,95,9,0,110,0,0,124,0,0,124,2,0,95,10,0, ++ 124,2,0,106,11,0,124,2,0,95,12,0,124,3,0,115, ++ 179,0,124,2,0,106,12,0,106,13,0,100,5,0,131,1, ++ 0,100,4,0,25,124,2,0,95,12,0,110,0,0,124,2, ++ 0,83,41,6,122,25,76,111,97,100,32,97,110,32,101,120, ++ 116,101,110,115,105,111,110,32,109,111,100,117,108,101,46,78, ++ 122,33,101,120,116,101,110,115,105,111,110,32,109,111,100,117, ++ 108,101,32,108,111,97,100,101,100,32,102,114,111,109,32,123, ++ 33,114,125,114,247,0,0,0,114,85,0,0,0,114,117,0, ++ 0,0,41,14,114,70,0,0,0,114,115,0,0,0,114,107, ++ 0,0,0,90,12,108,111,97,100,95,100,121,110,97,109,105, ++ 99,114,36,0,0,0,114,153,0,0,0,114,220,0,0,0, ++ 114,61,0,0,0,114,39,0,0,0,114,247,0,0,0,114, ++ 205,0,0,0,114,58,0,0,0,114,251,0,0,0,114,33, ++ 0,0,0,41,4,114,72,0,0,0,114,159,0,0,0,114, ++ 180,0,0,0,114,220,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,5,1,0,0,172,6,0, ++ 0,115,24,0,0,0,0,5,13,1,9,1,21,1,16,1, ++ 15,1,22,1,28,1,9,1,12,1,6,1,28,1,122,31, ++ 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, ++ 100,101,114,46,108,111,97,100,95,109,111,100,117,108,101,99, + 2,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0, -+ 67,0,0,0,115,45,0,0,0,116,0,0,106,1,0,116, -+ 2,0,106,3,0,124,1,0,131,2,0,1,116,4,0,100, -+ 1,0,124,0,0,106,5,0,124,0,0,106,6,0,131,3, -+ 0,1,100,2,0,83,41,3,122,30,73,110,105,116,105,97, -+ 108,105,122,101,32,97,110,32,101,120,116,101,110,115,105,111, -+ 110,32,109,111,100,117,108,101,122,40,101,120,116,101,110,115, -+ 105,111,110,32,109,111,100,117,108,101,32,123,33,114,125,32, -+ 101,120,101,99,117,116,101,100,32,102,114,111,109,32,123,33, -+ 114,125,78,41,7,114,122,0,0,0,114,189,0,0,0,114, -+ 146,0,0,0,90,12,101,120,101,99,95,100,121,110,97,109, -+ 105,99,114,106,0,0,0,114,107,0,0,0,114,36,0,0, -+ 0,41,2,114,109,0,0,0,114,191,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,192,0,0, -+ 0,140,3,0,0,115,6,0,0,0,0,2,19,1,6,1, -+ 122,31,69,120,116,101,110,115,105,111,110,70,105,108,101,76, -+ 111,97,100,101,114,46,101,120,101,99,95,109,111,100,117,108, -+ 101,99,2,0,0,0,0,0,0,0,2,0,0,0,4,0, -+ 0,0,3,0,0,0,115,48,0,0,0,116,0,0,124,0, -+ 0,106,1,0,131,1,0,100,1,0,25,137,0,0,116,2, -+ 0,135,0,0,102,1,0,100,2,0,100,3,0,134,0,0, -+ 116,3,0,68,131,1,0,131,1,0,83,41,4,122,49,82, -+ 101,116,117,114,110,32,84,114,117,101,32,105,102,32,116,104, -+ 101,32,101,120,116,101,110,115,105,111,110,32,109,111,100,117, -+ 108,101,32,105,115,32,97,32,112,97,99,107,97,103,101,46, -+ 114,30,0,0,0,99,1,0,0,0,0,0,0,0,2,0, -+ 0,0,4,0,0,0,51,0,0,0,115,31,0,0,0,124, -+ 0,0,93,21,0,125,1,0,136,0,0,100,0,0,124,1, -+ 0,23,107,2,0,86,1,113,3,0,100,1,0,83,41,2, -+ 114,186,0,0,0,78,114,5,0,0,0,41,2,114,23,0, -+ 0,0,218,6,115,117,102,102,105,120,41,1,218,9,102,105, -+ 108,101,95,110,97,109,101,114,5,0,0,0,114,6,0,0, -+ 0,250,9,60,103,101,110,101,120,112,114,62,149,3,0,0, -+ 115,2,0,0,0,6,1,122,49,69,120,116,101,110,115,105, -+ 111,110,70,105,108,101,76,111,97,100,101,114,46,105,115,95, -+ 112,97,99,107,97,103,101,46,60,108,111,99,97,108,115,62, -+ 46,60,103,101,110,101,120,112,114,62,41,4,114,39,0,0, -+ 0,114,36,0,0,0,218,3,97,110,121,218,18,69,88,84, -+ 69,78,83,73,79,78,95,83,85,70,70,73,88,69,83,41, -+ 2,114,109,0,0,0,114,127,0,0,0,114,5,0,0,0, -+ 41,1,114,227,0,0,0,114,6,0,0,0,114,160,0,0, -+ 0,146,3,0,0,115,6,0,0,0,0,2,19,1,18,1, ++ 3,0,0,0,115,48,0,0,0,116,0,0,124,0,0,106, ++ 1,0,131,1,0,100,1,0,25,137,0,0,116,2,0,135, ++ 0,0,102,1,0,100,2,0,100,3,0,134,0,0,116,3, ++ 0,68,131,1,0,131,1,0,83,41,4,122,49,82,101,116, ++ 117,114,110,32,84,114,117,101,32,105,102,32,116,104,101,32, ++ 101,120,116,101,110,115,105,111,110,32,109,111,100,117,108,101, ++ 32,105,115,32,97,32,112,97,99,107,97,103,101,46,114,30, ++ 0,0,0,99,1,0,0,0,0,0,0,0,2,0,0,0, ++ 4,0,0,0,51,0,0,0,115,31,0,0,0,124,0,0, ++ 93,21,0,125,1,0,136,0,0,100,0,0,124,1,0,23, ++ 107,2,0,86,1,113,3,0,100,1,0,83,41,2,114,73, ++ 0,0,0,78,114,5,0,0,0,41,2,114,23,0,0,0, ++ 218,6,115,117,102,102,105,120,41,1,218,9,102,105,108,101, ++ 95,110,97,109,101,114,5,0,0,0,114,6,0,0,0,114, ++ 78,0,0,0,193,6,0,0,115,2,0,0,0,6,1,122, ++ 49,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, ++ 97,100,101,114,46,105,115,95,112,97,99,107,97,103,101,46, ++ 60,108,111,99,97,108,115,62,46,60,103,101,110,101,120,112, ++ 114,62,41,4,114,39,0,0,0,114,36,0,0,0,114,79, ++ 0,0,0,218,18,69,88,84,69,78,83,73,79,78,95,83, ++ 85,70,70,73,88,69,83,41,2,114,72,0,0,0,114,159, ++ 0,0,0,114,5,0,0,0,41,1,114,59,1,0,0,114, ++ 6,0,0,0,114,220,0,0,0,190,6,0,0,115,6,0, ++ 0,0,0,2,19,1,18,1,122,30,69,120,116,101,110,115, ++ 105,111,110,70,105,108,101,76,111,97,100,101,114,46,105,115, ++ 95,112,97,99,107,97,103,101,99,2,0,0,0,0,0,0, ++ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, ++ 0,0,100,1,0,83,41,2,122,63,82,101,116,117,114,110, ++ 32,78,111,110,101,32,97,115,32,97,110,32,101,120,116,101, ++ 110,115,105,111,110,32,109,111,100,117,108,101,32,99,97,110, ++ 110,111,116,32,99,114,101,97,116,101,32,97,32,99,111,100, ++ 101,32,111,98,106,101,99,116,46,78,114,5,0,0,0,41, ++ 2,114,72,0,0,0,114,159,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,16,1,0,0,196, ++ 6,0,0,115,2,0,0,0,0,2,122,28,69,120,116,101, ++ 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, ++ 103,101,116,95,99,111,100,101,99,2,0,0,0,0,0,0, ++ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, ++ 0,0,100,1,0,83,41,2,122,53,82,101,116,117,114,110, ++ 32,78,111,110,101,32,97,115,32,101,120,116,101,110,115,105, ++ 111,110,32,109,111,100,117,108,101,115,32,104,97,118,101,32, ++ 110,111,32,115,111,117,114,99,101,32,99,111,100,101,46,78, ++ 114,5,0,0,0,41,2,114,72,0,0,0,114,159,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,17,1,0,0,200,6,0,0,115,2,0,0,0,0,2, + 122,30,69,120,116,101,110,115,105,111,110,70,105,108,101,76, -+ 111,97,100,101,114,46,105,115,95,112,97,99,107,97,103,101, ++ 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, + 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, -+ 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, -+ 122,63,82,101,116,117,114,110,32,78,111,110,101,32,97,115, -+ 32,97,110,32,101,120,116,101,110,115,105,111,110,32,109,111, -+ 100,117,108,101,32,99,97,110,110,111,116,32,99,114,101,97, -+ 116,101,32,97,32,99,111,100,101,32,111,98,106,101,99,116, -+ 46,78,114,5,0,0,0,41,2,114,109,0,0,0,114,127, ++ 0,67,0,0,0,115,7,0,0,0,124,0,0,106,0,0, ++ 83,41,1,122,58,82,101,116,117,114,110,32,116,104,101,32, ++ 112,97,116,104,32,116,111,32,116,104,101,32,115,111,117,114, ++ 99,101,32,102,105,108,101,32,97,115,32,102,111,117,110,100, ++ 32,98,121,32,116,104,101,32,102,105,110,100,101,114,46,41, ++ 1,114,36,0,0,0,41,2,114,72,0,0,0,114,159,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,239,0,0,0,204,6,0,0,115,2,0,0,0,0, ++ 3,122,32,69,120,116,101,110,115,105,111,110,70,105,108,101, ++ 76,111,97,100,101,114,46,103,101,116,95,102,105,108,101,110, ++ 97,109,101,78,41,13,114,58,0,0,0,114,57,0,0,0, ++ 114,59,0,0,0,114,60,0,0,0,114,73,0,0,0,114, ++ 230,0,0,0,114,51,1,0,0,114,157,0,0,0,114,5, ++ 1,0,0,114,220,0,0,0,114,16,1,0,0,114,17,1, ++ 0,0,114,239,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,114,57,1,0,0, ++ 153,6,0,0,115,18,0,0,0,12,6,6,2,12,4,12, ++ 4,12,3,18,18,12,6,12,4,12,4,114,57,1,0,0, ++ 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, ++ 0,64,0,0,0,115,130,0,0,0,101,0,0,90,1,0, ++ 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, ++ 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, ++ 0,90,5,0,100,6,0,100,7,0,132,0,0,90,6,0, ++ 100,8,0,100,9,0,132,0,0,90,7,0,100,10,0,100, ++ 11,0,132,0,0,90,8,0,100,12,0,100,13,0,132,0, ++ 0,90,9,0,100,14,0,100,15,0,132,0,0,90,10,0, ++ 100,16,0,100,17,0,132,0,0,90,11,0,100,18,0,100, ++ 19,0,132,0,0,90,12,0,100,20,0,83,41,21,218,14, ++ 95,78,97,109,101,115,112,97,99,101,80,97,116,104,97,38, ++ 1,0,0,82,101,112,114,101,115,101,110,116,115,32,97,32, ++ 110,97,109,101,115,112,97,99,101,32,112,97,99,107,97,103, ++ 101,39,115,32,112,97,116,104,46,32,32,73,116,32,117,115, ++ 101,115,32,116,104,101,32,109,111,100,117,108,101,32,110,97, ++ 109,101,10,32,32,32,32,116,111,32,102,105,110,100,32,105, ++ 116,115,32,112,97,114,101,110,116,32,109,111,100,117,108,101, ++ 44,32,97,110,100,32,102,114,111,109,32,116,104,101,114,101, ++ 32,105,116,32,108,111,111,107,115,32,117,112,32,116,104,101, ++ 32,112,97,114,101,110,116,39,115,10,32,32,32,32,95,95, ++ 112,97,116,104,95,95,46,32,32,87,104,101,110,32,116,104, ++ 105,115,32,99,104,97,110,103,101,115,44,32,116,104,101,32, ++ 109,111,100,117,108,101,39,115,32,111,119,110,32,112,97,116, ++ 104,32,105,115,32,114,101,99,111,109,112,117,116,101,100,44, ++ 10,32,32,32,32,117,115,105,110,103,32,112,97,116,104,95, ++ 102,105,110,100,101,114,46,32,32,70,111,114,32,116,111,112, ++ 45,108,101,118,101,108,32,109,111,100,117,108,101,115,44,32, ++ 116,104,101,32,112,97,114,101,110,116,32,109,111,100,117,108, ++ 101,39,115,32,112,97,116,104,10,32,32,32,32,105,115,32, ++ 115,121,115,46,112,97,116,104,46,99,4,0,0,0,0,0, ++ 0,0,4,0,0,0,2,0,0,0,67,0,0,0,115,52, ++ 0,0,0,124,1,0,124,0,0,95,0,0,124,2,0,124, ++ 0,0,95,1,0,116,2,0,124,0,0,106,3,0,131,0, ++ 0,131,1,0,124,0,0,95,4,0,124,3,0,124,0,0, ++ 95,5,0,100,0,0,83,41,1,78,41,6,114,71,0,0, ++ 0,114,254,0,0,0,114,232,0,0,0,218,16,95,103,101, ++ 116,95,112,97,114,101,110,116,95,112,97,116,104,218,17,95, ++ 108,97,115,116,95,112,97,114,101,110,116,95,112,97,116,104, ++ 218,12,95,112,97,116,104,95,102,105,110,100,101,114,41,4, ++ 114,72,0,0,0,114,68,0,0,0,114,36,0,0,0,218, ++ 11,112,97,116,104,95,102,105,110,100,101,114,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,114,73,0,0,0, ++ 217,6,0,0,115,8,0,0,0,0,1,9,1,9,1,21, ++ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, ++ 104,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, ++ 0,0,0,4,0,0,0,3,0,0,0,67,0,0,0,115, ++ 53,0,0,0,124,0,0,106,0,0,106,1,0,100,1,0, ++ 131,1,0,92,3,0,125,1,0,125,2,0,125,3,0,124, ++ 2,0,100,2,0,107,2,0,114,43,0,100,6,0,83,124, ++ 1,0,100,5,0,102,2,0,83,41,7,122,62,82,101,116, ++ 117,114,110,115,32,97,32,116,117,112,108,101,32,111,102,32, ++ 40,112,97,114,101,110,116,45,109,111,100,117,108,101,45,110, ++ 97,109,101,44,32,112,97,114,101,110,116,45,112,97,116,104, ++ 45,97,116,116,114,45,110,97,109,101,41,114,117,0,0,0, ++ 114,31,0,0,0,114,8,0,0,0,114,36,0,0,0,114, ++ 247,0,0,0,41,2,122,3,115,121,115,122,4,112,97,116, ++ 104,41,2,114,71,0,0,0,114,33,0,0,0,41,4,114, ++ 72,0,0,0,114,234,0,0,0,218,3,100,111,116,114,95, + 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,188,0,0,0,152,3,0,0,115,2,0,0,0, -+ 0,2,122,28,69,120,116,101,110,115,105,111,110,70,105,108, -+ 101,76,111,97,100,101,114,46,103,101,116,95,99,111,100,101, -+ 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, -+ 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, -+ 122,53,82,101,116,117,114,110,32,78,111,110,101,32,97,115, -+ 32,101,120,116,101,110,115,105,111,110,32,109,111,100,117,108, -+ 101,115,32,104,97,118,101,32,110,111,32,115,111,117,114,99, -+ 101,32,99,111,100,101,46,78,114,5,0,0,0,41,2,114, -+ 109,0,0,0,114,127,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,203,0,0,0,156,3,0, -+ 0,115,2,0,0,0,0,2,122,30,69,120,116,101,110,115, -+ 105,111,110,70,105,108,101,76,111,97,100,101,114,46,103,101, -+ 116,95,115,111,117,114,99,101,99,2,0,0,0,0,0,0, -+ 0,2,0,0,0,1,0,0,0,67,0,0,0,115,7,0, -+ 0,0,124,0,0,106,0,0,83,41,1,122,58,82,101,116, -+ 117,114,110,32,116,104,101,32,112,97,116,104,32,116,111,32, -+ 116,104,101,32,115,111,117,114,99,101,32,102,105,108,101,32, -+ 97,115,32,102,111,117,110,100,32,98,121,32,116,104,101,32, -+ 102,105,110,100,101,114,46,41,1,114,36,0,0,0,41,2, -+ 114,109,0,0,0,114,127,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,158,0,0,0,160,3, -+ 0,0,115,2,0,0,0,0,3,122,32,69,120,116,101,110, -+ 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,103, -+ 101,116,95,102,105,108,101,110,97,109,101,78,41,14,114,113, -+ 0,0,0,114,112,0,0,0,114,114,0,0,0,114,115,0, -+ 0,0,114,186,0,0,0,114,214,0,0,0,114,216,0,0, -+ 0,114,187,0,0,0,114,192,0,0,0,114,160,0,0,0, -+ 114,188,0,0,0,114,203,0,0,0,114,124,0,0,0,114, -+ 158,0,0,0,114,5,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,225,0,0,0,113,3,0, -+ 0,115,20,0,0,0,12,6,6,2,12,4,12,4,12,3, -+ 12,8,12,6,12,6,12,4,12,4,114,225,0,0,0,99, -+ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, -+ 64,0,0,0,115,130,0,0,0,101,0,0,90,1,0,100, -+ 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, -+ 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, -+ 90,5,0,100,6,0,100,7,0,132,0,0,90,6,0,100, -+ 8,0,100,9,0,132,0,0,90,7,0,100,10,0,100,11, -+ 0,132,0,0,90,8,0,100,12,0,100,13,0,132,0,0, -+ 90,9,0,100,14,0,100,15,0,132,0,0,90,10,0,100, -+ 16,0,100,17,0,132,0,0,90,11,0,100,18,0,100,19, -+ 0,132,0,0,90,12,0,100,20,0,83,41,21,218,14,95, -+ 78,97,109,101,115,112,97,99,101,80,97,116,104,97,38,1, -+ 0,0,82,101,112,114,101,115,101,110,116,115,32,97,32,110, -+ 97,109,101,115,112,97,99,101,32,112,97,99,107,97,103,101, -+ 39,115,32,112,97,116,104,46,32,32,73,116,32,117,115,101, -+ 115,32,116,104,101,32,109,111,100,117,108,101,32,110,97,109, -+ 101,10,32,32,32,32,116,111,32,102,105,110,100,32,105,116, -+ 115,32,112,97,114,101,110,116,32,109,111,100,117,108,101,44, -+ 32,97,110,100,32,102,114,111,109,32,116,104,101,114,101,32, -+ 105,116,32,108,111,111,107,115,32,117,112,32,116,104,101,32, -+ 112,97,114,101,110,116,39,115,10,32,32,32,32,95,95,112, -+ 97,116,104,95,95,46,32,32,87,104,101,110,32,116,104,105, -+ 115,32,99,104,97,110,103,101,115,44,32,116,104,101,32,109, -+ 111,100,117,108,101,39,115,32,111,119,110,32,112,97,116,104, -+ 32,105,115,32,114,101,99,111,109,112,117,116,101,100,44,10, -+ 32,32,32,32,117,115,105,110,103,32,112,97,116,104,95,102, -+ 105,110,100,101,114,46,32,32,70,111,114,32,116,111,112,45, -+ 108,101,118,101,108,32,109,111,100,117,108,101,115,44,32,116, -+ 104,101,32,112,97,114,101,110,116,32,109,111,100,117,108,101, -+ 39,115,32,112,97,116,104,10,32,32,32,32,105,115,32,115, -+ 121,115,46,112,97,116,104,46,99,4,0,0,0,0,0,0, -+ 0,4,0,0,0,2,0,0,0,67,0,0,0,115,52,0, -+ 0,0,124,1,0,124,0,0,95,0,0,124,2,0,124,0, -+ 0,95,1,0,116,2,0,124,0,0,106,3,0,131,0,0, -+ 131,1,0,124,0,0,95,4,0,124,3,0,124,0,0,95, -+ 5,0,100,0,0,83,41,1,78,41,6,218,5,95,110,97, -+ 109,101,218,5,95,112,97,116,104,114,94,0,0,0,218,16, - 95,103,101,116,95,112,97,114,101,110,116,95,112,97,116,104, -- 99,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0, -- 0,67,0,0,0,115,118,0,0,0,116,0,0,124,0,0, -- 106,1,0,131,0,0,131,1,0,125,1,0,124,1,0,124, -- 0,0,106,2,0,107,3,0,114,111,0,124,0,0,106,3, -- 0,124,0,0,106,4,0,124,1,0,131,2,0,125,2,0, -- 124,2,0,100,0,0,107,9,0,114,102,0,124,2,0,106, -- 5,0,100,0,0,107,8,0,114,102,0,124,2,0,106,6, -- 0,114,102,0,124,2,0,106,6,0,124,0,0,95,7,0, -- 124,1,0,124,0,0,95,2,0,124,0,0,106,7,0,83, -- 41,1,78,41,8,114,93,0,0,0,114,233,0,0,0,114, -- 234,0,0,0,114,235,0,0,0,114,231,0,0,0,114,127, -- 0,0,0,114,156,0,0,0,114,232,0,0,0,41,3,114, -- 108,0,0,0,90,11,112,97,114,101,110,116,95,112,97,116, -- 104,114,164,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,12,95,114,101,99,97,108,99,117,108, -- 97,116,101,193,3,0,0,115,16,0,0,0,0,2,18,1, -- 15,1,21,3,27,1,9,1,12,1,9,1,122,27,95,78, -- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,114,101, -- 99,97,108,99,117,108,97,116,101,99,1,0,0,0,0,0, -- 0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,16, -- 0,0,0,116,0,0,124,0,0,106,1,0,131,0,0,131, -- 1,0,83,41,1,78,41,2,218,4,105,116,101,114,114,240, -- 0,0,0,41,1,114,108,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,218,8,95,95,105,116,101, -- 114,95,95,206,3,0,0,115,2,0,0,0,0,1,122,23, -- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, -- 95,105,116,101,114,95,95,99,1,0,0,0,0,0,0,0, -+ 218,17,95,108,97,115,116,95,112,97,114,101,110,116,95,112, -+ 97,116,104,218,12,95,112,97,116,104,95,102,105,110,100,101, -+ 114,41,4,114,109,0,0,0,114,107,0,0,0,114,36,0, -+ 0,0,218,11,112,97,116,104,95,102,105,110,100,101,114,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,186, -+ 0,0,0,173,3,0,0,115,8,0,0,0,0,1,9,1, -+ 9,1,21,1,122,23,95,78,97,109,101,115,112,97,99,101, -+ 80,97,116,104,46,95,95,105,110,105,116,95,95,99,1,0, -+ 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, -+ 0,0,115,53,0,0,0,124,0,0,106,0,0,106,1,0, -+ 100,1,0,131,1,0,92,3,0,125,1,0,125,2,0,125, -+ 3,0,124,2,0,100,2,0,107,2,0,114,43,0,100,6, -+ 0,83,124,1,0,100,5,0,102,2,0,83,41,7,122,62, -+ 82,101,116,117,114,110,115,32,97,32,116,117,112,108,101,32, -+ 111,102,32,40,112,97,114,101,110,116,45,109,111,100,117,108, -+ 101,45,110,97,109,101,44,32,112,97,114,101,110,116,45,112, -+ 97,116,104,45,97,116,116,114,45,110,97,109,101,41,114,59, -+ 0,0,0,114,31,0,0,0,114,8,0,0,0,114,36,0, -+ 0,0,90,8,95,95,112,97,116,104,95,95,41,2,122,3, -+ 115,121,115,122,4,112,97,116,104,41,2,114,232,0,0,0, -+ 114,33,0,0,0,41,4,114,109,0,0,0,114,223,0,0, -+ 0,218,3,100,111,116,90,2,109,101,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,218,23,95,102,105,110,100, -+ 95,112,97,114,101,110,116,95,112,97,116,104,95,110,97,109, -+ 101,115,179,3,0,0,115,8,0,0,0,0,2,27,1,12, -+ 2,4,3,122,38,95,78,97,109,101,115,112,97,99,101,80, -+ 97,116,104,46,95,102,105,110,100,95,112,97,114,101,110,116, -+ 95,112,97,116,104,95,110,97,109,101,115,99,1,0,0,0, -+ 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, -+ 115,38,0,0,0,124,0,0,106,0,0,131,0,0,92,2, -+ 0,125,1,0,125,2,0,116,1,0,116,2,0,106,3,0, -+ 124,1,0,25,124,2,0,131,2,0,83,41,1,78,41,4, -+ 114,239,0,0,0,114,118,0,0,0,114,8,0,0,0,218, -+ 7,109,111,100,117,108,101,115,41,3,114,109,0,0,0,90, -+ 18,112,97,114,101,110,116,95,109,111,100,117,108,101,95,110, -+ 97,109,101,90,14,112,97,116,104,95,97,116,116,114,95,110, -+ 97,109,101,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,234,0,0,0,189,3,0,0,115,4,0,0,0, -+ 0,1,18,1,122,31,95,78,97,109,101,115,112,97,99,101, -+ 80,97,116,104,46,95,103,101,116,95,112,97,114,101,110,116, -+ 95,112,97,116,104,99,1,0,0,0,0,0,0,0,3,0, -+ 0,0,3,0,0,0,67,0,0,0,115,118,0,0,0,116, -+ 0,0,124,0,0,106,1,0,131,0,0,131,1,0,125,1, -+ 0,124,1,0,124,0,0,106,2,0,107,3,0,114,111,0, -+ 124,0,0,106,3,0,124,0,0,106,4,0,124,1,0,131, -+ 2,0,125,2,0,124,2,0,100,0,0,107,9,0,114,102, -+ 0,124,2,0,106,5,0,100,0,0,107,8,0,114,102,0, -+ 124,2,0,106,6,0,114,102,0,124,2,0,106,6,0,124, -+ 0,0,95,7,0,124,1,0,124,0,0,95,2,0,124,0, -+ 0,106,7,0,83,41,1,78,41,8,114,94,0,0,0,114, -+ 234,0,0,0,114,235,0,0,0,114,236,0,0,0,114,232, -+ 0,0,0,114,128,0,0,0,114,157,0,0,0,114,233,0, -+ 0,0,41,3,114,109,0,0,0,90,11,112,97,114,101,110, -+ 116,95,112,97,116,104,114,165,0,0,0,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,12,95,114,101,99, -+ 97,108,99,117,108,97,116,101,193,3,0,0,115,16,0,0, -+ 0,0,2,18,1,15,1,21,3,27,1,9,1,12,1,9, -+ 1,122,27,95,78,97,109,101,115,112,97,99,101,80,97,116, -+ 104,46,95,114,101,99,97,108,99,117,108,97,116,101,99,1, -+ 0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,67, -+ 0,0,0,115,16,0,0,0,116,0,0,124,0,0,106,1, -+ 0,131,0,0,131,1,0,83,41,1,78,41,2,218,4,105, -+ 116,101,114,114,241,0,0,0,41,1,114,109,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,8, -+ 95,95,105,116,101,114,95,95,206,3,0,0,115,2,0,0, -+ 0,0,1,122,23,95,78,97,109,101,115,112,97,99,101,80, -+ 97,116,104,46,95,95,105,116,101,114,95,95,99,1,0,0, ++ 0,0,218,23,95,102,105,110,100,95,112,97,114,101,110,116, ++ 95,112,97,116,104,95,110,97,109,101,115,223,6,0,0,115, ++ 8,0,0,0,0,2,27,1,12,2,4,3,122,38,95,78, ++ 97,109,101,115,112,97,99,101,80,97,116,104,46,95,102,105, ++ 110,100,95,112,97,114,101,110,116,95,112,97,116,104,95,110, ++ 97,109,101,115,99,1,0,0,0,0,0,0,0,3,0,0, ++ 0,3,0,0,0,67,0,0,0,115,38,0,0,0,124,0, ++ 0,106,0,0,131,0,0,92,2,0,125,1,0,125,2,0, ++ 116,1,0,116,2,0,106,3,0,124,1,0,25,124,2,0, ++ 131,2,0,83,41,1,78,41,4,114,67,1,0,0,114,63, ++ 0,0,0,114,8,0,0,0,114,74,0,0,0,41,3,114, ++ 72,0,0,0,90,18,112,97,114,101,110,116,95,109,111,100, ++ 117,108,101,95,110,97,109,101,90,14,112,97,116,104,95,97, ++ 116,116,114,95,110,97,109,101,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,62,1,0,0,233,6,0,0, ++ 115,4,0,0,0,0,1,18,1,122,31,95,78,97,109,101, ++ 115,112,97,99,101,80,97,116,104,46,95,103,101,116,95,112, ++ 97,114,101,110,116,95,112,97,116,104,99,1,0,0,0,0, ++ 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115, ++ 127,0,0,0,116,0,0,124,0,0,106,1,0,131,0,0, ++ 131,1,0,125,1,0,124,1,0,124,0,0,106,2,0,107, ++ 3,0,114,120,0,124,0,0,106,3,0,124,0,0,106,4, ++ 0,124,1,0,131,2,0,125,2,0,124,2,0,100,0,0, ++ 107,9,0,114,108,0,124,2,0,106,5,0,100,0,0,107, ++ 8,0,114,108,0,124,2,0,106,6,0,114,108,0,124,2, ++ 0,106,6,0,124,0,0,95,7,0,113,108,0,110,0,0, ++ 124,1,0,124,0,0,95,2,0,110,0,0,124,0,0,106, ++ 7,0,83,41,1,78,41,8,114,232,0,0,0,114,62,1, ++ 0,0,114,63,1,0,0,114,64,1,0,0,114,71,0,0, ++ 0,114,170,0,0,0,114,221,0,0,0,114,254,0,0,0, ++ 41,3,114,72,0,0,0,90,11,112,97,114,101,110,116,95, ++ 112,97,116,104,114,178,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,12,95,114,101,99,97,108, ++ 99,117,108,97,116,101,237,6,0,0,115,16,0,0,0,0, ++ 2,18,1,15,1,21,3,27,1,9,1,18,1,12,1,122, ++ 27,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, ++ 95,114,101,99,97,108,99,117,108,97,116,101,99,1,0,0, + 0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,0, + 0,115,16,0,0,0,116,0,0,124,0,0,106,1,0,131, -+ 0,0,131,1,0,83,41,1,78,41,2,114,32,0,0,0, -+ 114,241,0,0,0,41,1,114,109,0,0,0,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,218,7,95,95,108, -+ 101,110,95,95,209,3,0,0,115,2,0,0,0,0,1,122, -+ 22,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, -+ 95,95,108,101,110,95,95,99,1,0,0,0,0,0,0,0, - 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, -- 0,116,0,0,124,0,0,106,1,0,131,0,0,131,1,0, -- 83,41,1,78,41,2,114,31,0,0,0,114,240,0,0,0, -- 41,1,114,108,0,0,0,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,218,7,95,95,108,101,110,95,95,209, -- 3,0,0,115,2,0,0,0,0,1,122,22,95,78,97,109, -- 101,115,112,97,99,101,80,97,116,104,46,95,95,108,101,110, -- 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2, -- 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, -- 0,0,124,0,0,106,1,0,131,1,0,83,41,2,78,122, -- 20,95,78,97,109,101,115,112,97,99,101,80,97,116,104,40, -- 123,33,114,125,41,41,2,114,47,0,0,0,114,232,0,0, -- 0,41,1,114,108,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,8,95,95,114,101,112,114,95, -- 95,212,3,0,0,115,2,0,0,0,0,1,122,23,95,78, -- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,114, -- 101,112,114,95,95,99,2,0,0,0,0,0,0,0,2,0, -- 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,124, -- 1,0,124,0,0,106,0,0,131,0,0,107,6,0,83,41, -- 1,78,41,1,114,240,0,0,0,41,2,114,108,0,0,0, -- 218,4,105,116,101,109,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,12,95,95,99,111,110,116,97,105,110, -- 115,95,95,215,3,0,0,115,2,0,0,0,0,1,122,27, -- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, -- 95,99,111,110,116,97,105,110,115,95,95,99,2,0,0,0, ++ 0,0,131,1,0,83,41,1,78,41,2,218,4,105,116,101, ++ 114,114,68,1,0,0,41,1,114,72,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,218,8,95,95, ++ 105,116,101,114,95,95,250,6,0,0,115,2,0,0,0,0, ++ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, ++ 104,46,95,95,105,116,101,114,95,95,99,1,0,0,0,0, ++ 0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,115, ++ 16,0,0,0,116,0,0,124,0,0,106,1,0,131,0,0, ++ 131,1,0,83,41,1,78,41,2,114,32,0,0,0,114,68, ++ 1,0,0,41,1,114,72,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,7,95,95,108,101,110, ++ 95,95,253,6,0,0,115,2,0,0,0,0,1,122,22,95, ++ 78,97,109,101,115,112,97,99,101,80,97,116,104,46,95,95, ++ 108,101,110,95,95,99,1,0,0,0,0,0,0,0,1,0, ++ 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,100, ++ 1,0,106,0,0,124,0,0,106,1,0,131,1,0,83,41, ++ 2,78,122,20,95,78,97,109,101,115,112,97,99,101,80,97, ++ 116,104,40,123,33,114,125,41,41,2,114,48,0,0,0,114, ++ 254,0,0,0,41,1,114,72,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,102,0,0,0,0, ++ 7,0,0,115,2,0,0,0,0,1,122,23,95,78,97,109, ++ 101,115,112,97,99,101,80,97,116,104,46,95,95,114,101,112, ++ 114,95,95,99,2,0,0,0,0,0,0,0,2,0,0,0, ++ 2,0,0,0,67,0,0,0,115,16,0,0,0,124,1,0, ++ 124,0,0,106,0,0,131,0,0,107,6,0,83,41,1,78, ++ 41,1,114,68,1,0,0,41,2,114,72,0,0,0,218,4, ++ 105,116,101,109,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,218,12,95,95,99,111,110,116,97,105,110,115,95, ++ 95,3,7,0,0,115,2,0,0,0,0,1,122,27,95,78, ++ 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,99, ++ 111,110,116,97,105,110,115,95,95,99,2,0,0,0,0,0, ++ 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,20, ++ 0,0,0,124,0,0,106,0,0,106,1,0,124,1,0,131, ++ 1,0,1,100,0,0,83,41,1,78,41,2,114,254,0,0, ++ 0,114,224,0,0,0,41,2,114,72,0,0,0,114,72,1, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,224,0,0,0,6,7,0,0,115,2,0,0,0,0, ++ 1,122,21,95,78,97,109,101,115,112,97,99,101,80,97,116, ++ 104,46,97,112,112,101,110,100,78,41,13,114,58,0,0,0, ++ 114,57,0,0,0,114,59,0,0,0,114,60,0,0,0,114, ++ 73,0,0,0,114,67,1,0,0,114,62,1,0,0,114,68, ++ 1,0,0,114,70,1,0,0,114,71,1,0,0,114,102,0, ++ 0,0,114,73,1,0,0,114,224,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,61,1,0,0,210,6,0,0,115,20,0,0,0,12,5, ++ 6,2,12,6,12,10,12,4,12,13,12,3,12,3,12,3, ++ 12,3,114,61,1,0,0,99,0,0,0,0,0,0,0,0, ++ 0,0,0,0,3,0,0,0,64,0,0,0,115,106,0,0, + 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, +- 90,3,0,101,4,0,100,2,0,100,3,0,132,0,0,131, +- 1,0,90,5,0,101,6,0,100,4,0,100,4,0,100,5, +- 0,100,6,0,132,2,0,131,1,0,90,7,0,101,6,0, +- 100,4,0,100,7,0,100,8,0,132,1,0,131,1,0,90, +- 8,0,101,4,0,100,9,0,100,10,0,132,0,0,131,1, +- 0,90,9,0,101,6,0,100,11,0,100,12,0,132,0,0, +- 131,1,0,90,10,0,101,6,0,101,11,0,100,13,0,100, +- 14,0,132,0,0,131,1,0,131,1,0,90,12,0,101,6, +- 0,101,11,0,100,15,0,100,16,0,132,0,0,131,1,0, +- 131,1,0,90,13,0,101,6,0,101,11,0,100,17,0,100, +- 18,0,132,0,0,131,1,0,131,1,0,90,14,0,100,4, +- 0,83,41,19,218,14,70,114,111,122,101,110,73,109,112,111, +- 114,116,101,114,122,142,77,101,116,97,32,112,97,116,104,32, +- 105,109,112,111,114,116,32,102,111,114,32,102,114,111,122,101, +- 110,32,109,111,100,117,108,101,115,46,10,10,32,32,32,32, +- 65,108,108,32,109,101,116,104,111,100,115,32,97,114,101,32, +- 101,105,116,104,101,114,32,99,108,97,115,115,32,111,114,32, +- 115,116,97,116,105,99,32,109,101,116,104,111,100,115,32,116, +- 111,32,97,118,111,105,100,32,116,104,101,32,110,101,101,100, +- 32,116,111,10,32,32,32,32,105,110,115,116,97,110,116,105, +- 97,116,101,32,116,104,101,32,99,108,97,115,115,46,10,10, +- 32,32,32,32,99,1,0,0,0,0,0,0,0,1,0,0, ++ 100,2,0,132,0,0,90,3,0,101,4,0,100,3,0,100, ++ 4,0,132,0,0,131,1,0,90,5,0,100,5,0,100,6, ++ 0,132,0,0,90,6,0,100,7,0,100,8,0,132,0,0, ++ 90,7,0,100,9,0,100,10,0,132,0,0,90,8,0,100, ++ 11,0,100,12,0,132,0,0,90,9,0,100,13,0,100,14, ++ 0,132,0,0,90,10,0,100,15,0,83,41,16,114,252,0, ++ 0,0,99,4,0,0,0,0,0,0,0,4,0,0,0,4, ++ 0,0,0,67,0,0,0,115,25,0,0,0,116,0,0,124, ++ 1,0,124,2,0,124,3,0,131,3,0,124,0,0,95,1, ++ 0,100,0,0,83,41,1,78,41,2,114,61,1,0,0,114, ++ 254,0,0,0,41,4,114,72,0,0,0,114,68,0,0,0, ++ 114,36,0,0,0,114,65,1,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,73,0,0,0,12,7, ++ 0,0,115,2,0,0,0,0,1,122,25,95,78,97,109,101, ++ 115,112,97,99,101,76,111,97,100,101,114,46,95,95,105,110, ++ 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, + 0,2,0,0,0,67,0,0,0,115,16,0,0,0,100,1, +- 0,106,0,0,124,0,0,106,1,0,131,1,0,83,41,2, ++ 0,106,0,0,124,1,0,106,1,0,131,1,0,83,41,2, + 122,115,82,101,116,117,114,110,32,114,101,112,114,32,102,111, + 114,32,116,104,101,32,109,111,100,117,108,101,46,10,10,32, + 32,32,32,32,32,32,32,84,104,101,32,109,101,116,104,111, +@@ -2205,2171 +3230,1147 @@ + 32,32,84,104,101,32,105,109,112,111,114,116,32,109,97,99, + 104,105,110,101,114,121,32,100,111,101,115,32,116,104,101,32, + 106,111,98,32,105,116,115,101,108,102,46,10,10,32,32,32, +- 32,32,32,32,32,122,22,60,109,111,100,117,108,101,32,123, +- 33,114,125,32,40,102,114,111,122,101,110,41,62,41,2,114, +- 47,0,0,0,114,57,0,0,0,41,1,218,1,109,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,205,0, +- 0,0,47,5,0,0,115,2,0,0,0,0,7,122,26,70, +- 114,111,122,101,110,73,109,112,111,114,116,101,114,46,109,111, +- 100,117,108,101,95,114,101,112,114,78,99,4,0,0,0,0, +- 0,0,0,4,0,0,0,5,0,0,0,67,0,0,0,115, +- 42,0,0,0,116,0,0,106,1,0,124,1,0,131,1,0, +- 114,34,0,116,2,0,124,1,0,124,0,0,100,1,0,100, +- 2,0,131,2,1,83,100,0,0,83,100,0,0,83,41,3, +- 78,114,217,0,0,0,90,6,102,114,111,122,101,110,41,3, +- 114,106,0,0,0,114,162,0,0,0,114,173,0,0,0,41, +- 4,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, +- 114,12,1,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,13,1,0,0,56,5,0,0,115,6,0, +- 0,0,0,2,15,1,19,2,122,24,70,114,111,122,101,110, +- 73,109,112,111,114,116,101,114,46,102,105,110,100,95,115,112, +- 101,99,99,3,0,0,0,0,0,0,0,3,0,0,0,2, +- 0,0,0,67,0,0,0,115,23,0,0,0,116,0,0,106, +- 1,0,124,1,0,131,1,0,114,19,0,124,0,0,83,100, +- 1,0,83,41,2,122,93,70,105,110,100,32,97,32,102,114, +- 111,122,101,110,32,109,111,100,117,108,101,46,10,10,32,32, +- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, +- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, +- 32,32,85,115,101,32,102,105,110,100,95,115,112,101,99,40, +- 41,32,105,110,115,116,101,97,100,46,10,10,32,32,32,32, +- 32,32,32,32,78,41,2,114,106,0,0,0,114,162,0,0, +- 0,41,3,114,11,1,0,0,114,158,0,0,0,114,35,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,14,1,0,0,63,5,0,0,115,2,0,0,0,0, +- 7,122,26,70,114,111,122,101,110,73,109,112,111,114,116,101, +- 114,46,102,105,110,100,95,109,111,100,117,108,101,99,1,0, +- 0,0,0,0,0,0,3,0,0,0,4,0,0,0,67,0, +- 0,0,115,95,0,0,0,124,0,0,106,0,0,106,1,0, +- 125,1,0,116,2,0,106,3,0,124,1,0,131,1,0,115, +- 57,0,116,4,0,100,1,0,106,5,0,124,1,0,131,1, +- 0,100,2,0,124,1,0,131,1,1,130,1,0,110,0,0, +- 116,6,0,116,2,0,106,7,0,124,1,0,131,2,0,125, +- 2,0,116,8,0,124,2,0,124,0,0,106,9,0,131,2, +- 0,1,100,0,0,83,41,3,78,122,27,123,33,114,125,32, +- 105,115,32,110,111,116,32,97,32,102,114,111,122,101,110,32, +- 109,111,100,117,108,101,114,67,0,0,0,41,10,114,208,0, +- 0,0,114,67,0,0,0,114,106,0,0,0,114,162,0,0, +- 0,114,153,0,0,0,114,47,0,0,0,114,114,0,0,0, +- 218,17,103,101,116,95,102,114,111,122,101,110,95,111,98,106, +- 101,99,116,114,175,0,0,0,114,63,0,0,0,41,3,114, +- 179,0,0,0,114,67,0,0,0,114,194,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,1,1, +- 0,0,72,5,0,0,115,12,0,0,0,0,2,12,1,15, +- 1,18,1,12,1,18,1,122,26,70,114,111,122,101,110,73, +- 109,112,111,114,116,101,114,46,101,120,101,99,95,109,111,100, +- 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, +- 3,0,0,0,67,0,0,0,115,13,0,0,0,116,0,0, +- 124,0,0,124,1,0,131,2,0,83,41,1,122,95,76,111, +- 97,100,32,97,32,102,114,111,122,101,110,32,109,111,100,117, ++ 32,32,32,32,32,122,25,60,109,111,100,117,108,101,32,123, ++ 33,114,125,32,40,110,97,109,101,115,112,97,99,101,41,62, ++ 41,2,114,48,0,0,0,114,58,0,0,0,41,2,114,12, ++ 1,0,0,114,180,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,206,0,0,0,15,7,0,0, ++ 115,2,0,0,0,0,7,122,28,95,78,97,109,101,115,112, ++ 97,99,101,76,111,97,100,101,114,46,109,111,100,117,108,101, ++ 95,114,101,112,114,99,2,0,0,0,0,0,0,0,2,0, ++ 0,0,1,0,0,0,67,0,0,0,115,4,0,0,0,100, ++ 1,0,83,41,2,78,84,114,5,0,0,0,41,2,114,72, ++ 0,0,0,114,159,0,0,0,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,114,220,0,0,0,24,7,0,0, ++ 115,2,0,0,0,0,1,122,27,95,78,97,109,101,115,112, ++ 97,99,101,76,111,97,100,101,114,46,105,115,95,112,97,99, ++ 107,97,103,101,99,2,0,0,0,0,0,0,0,2,0,0, ++ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, ++ 0,83,41,2,78,114,31,0,0,0,114,5,0,0,0,41, ++ 2,114,72,0,0,0,114,159,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,114,17,1,0,0,27, ++ 7,0,0,115,2,0,0,0,0,1,122,27,95,78,97,109, ++ 101,115,112,97,99,101,76,111,97,100,101,114,46,103,101,116, ++ 95,115,111,117,114,99,101,99,2,0,0,0,0,0,0,0, ++ 2,0,0,0,6,0,0,0,67,0,0,0,115,22,0,0, ++ 0,116,0,0,100,1,0,100,2,0,100,3,0,100,4,0, ++ 100,5,0,131,3,1,83,41,6,78,114,31,0,0,0,122, ++ 8,60,115,116,114,105,110,103,62,114,176,0,0,0,114,43, ++ 1,0,0,84,41,1,114,44,1,0,0,41,2,114,72,0, ++ 0,0,114,159,0,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,114,16,1,0,0,30,7,0,0,115, ++ 2,0,0,0,0,1,122,25,95,78,97,109,101,115,112,97, ++ 99,101,76,111,97,100,101,114,46,103,101,116,95,99,111,100, ++ 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, ++ 0,0,67,0,0,0,115,4,0,0,0,100,0,0,83,41, ++ 1,78,114,5,0,0,0,41,2,114,72,0,0,0,114,180, ++ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,114,2,1,0,0,33,7,0,0,115,2,0,0,0, ++ 0,1,122,28,95,78,97,109,101,115,112,97,99,101,76,111, ++ 97,100,101,114,46,101,120,101,99,95,109,111,100,117,108,101, ++ 99,2,0,0,0,0,0,0,0,2,0,0,0,3,0,0, ++ 0,67,0,0,0,115,29,0,0,0,116,0,0,100,1,0, ++ 124,0,0,106,1,0,131,2,0,1,116,2,0,124,0,0, ++ 124,1,0,131,2,0,83,41,2,122,98,76,111,97,100,32, ++ 97,32,110,97,109,101,115,112,97,99,101,32,109,111,100,117, + 108,101,46,10,10,32,32,32,32,32,32,32,32,84,104,105, + 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, + 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, + 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, +- 97,100,46,10,10,32,32,32,32,32,32,32,32,41,1,114, +- 180,0,0,0,41,2,114,11,1,0,0,114,158,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 4,1,0,0,81,5,0,0,115,2,0,0,0,0,7,122, +- 26,70,114,111,122,101,110,73,109,112,111,114,116,101,114,46, +- 108,111,97,100,95,109,111,100,117,108,101,99,2,0,0,0, - 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, -- 115,20,0,0,0,124,0,0,106,0,0,106,1,0,124,1, -- 0,131,1,0,1,100,0,0,83,41,1,78,41,2,114,232, -- 0,0,0,114,163,0,0,0,41,2,114,108,0,0,0,114, -- 245,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,163,0,0,0,218,3,0,0,115,2,0,0, -- 0,0,1,122,21,95,78,97,109,101,115,112,97,99,101,80, -- 97,116,104,46,97,112,112,101,110,100,78,41,13,114,112,0, -- 0,0,114,111,0,0,0,114,113,0,0,0,114,114,0,0, -- 0,114,185,0,0,0,114,238,0,0,0,114,233,0,0,0, -- 114,240,0,0,0,114,242,0,0,0,114,243,0,0,0,114, -- 244,0,0,0,114,246,0,0,0,114,163,0,0,0,114,4, +- 115,13,0,0,0,116,0,0,106,1,0,124,1,0,131,1, +- 0,83,41,1,122,45,82,101,116,117,114,110,32,116,104,101, +- 32,99,111,100,101,32,111,98,106,101,99,116,32,102,111,114, +- 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, +- 108,101,46,41,2,114,106,0,0,0,114,21,1,0,0,41, +- 2,114,11,1,0,0,114,158,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,15,1,0,0,90, +- 5,0,0,115,2,0,0,0,0,4,122,23,70,114,111,122, +- 101,110,73,109,112,111,114,116,101,114,46,103,101,116,95,99, +- 111,100,101,99,2,0,0,0,0,0,0,0,2,0,0,0, +- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, +- 83,41,2,122,54,82,101,116,117,114,110,32,78,111,110,101, +- 32,97,115,32,102,114,111,122,101,110,32,109,111,100,117,108, +- 101,115,32,100,111,32,110,111,116,32,104,97,118,101,32,115, +- 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, +- 0,41,2,114,11,1,0,0,114,158,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,16,1,0, +- 0,96,5,0,0,115,2,0,0,0,0,4,122,25,70,114, +- 111,122,101,110,73,109,112,111,114,116,101,114,46,103,101,116, +- 95,115,111,117,114,99,101,99,2,0,0,0,0,0,0,0, +- 2,0,0,0,2,0,0,0,67,0,0,0,115,13,0,0, +- 0,116,0,0,106,1,0,124,1,0,131,1,0,83,41,1, +- 122,46,82,101,116,117,114,110,32,84,114,117,101,32,105,102, +- 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, +- 108,101,32,105,115,32,97,32,112,97,99,107,97,103,101,46, +- 41,2,114,106,0,0,0,90,17,105,115,95,102,114,111,122, +- 101,110,95,112,97,99,107,97,103,101,41,2,114,11,1,0, +- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,219,0,0,0,102,5,0,0,115,2, +- 0,0,0,0,4,122,25,70,114,111,122,101,110,73,109,112, +- 111,114,116,101,114,46,105,115,95,112,97,99,107,97,103,101, +- 41,15,114,57,0,0,0,114,56,0,0,0,114,58,0,0, +- 0,114,59,0,0,0,114,17,1,0,0,114,205,0,0,0, +- 114,18,1,0,0,114,13,1,0,0,114,14,1,0,0,114, +- 1,1,0,0,114,4,1,0,0,114,164,0,0,0,114,15, +- 1,0,0,114,16,1,0,0,114,219,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,19,1,0,0,38,5,0,0,115,28,0,0,0,12, +- 7,6,2,18,9,3,1,21,6,3,1,18,8,18,9,18, +- 9,3,1,21,5,3,1,21,5,3,1,114,19,1,0,0, ++ 97,100,46,10,10,32,32,32,32,32,32,32,32,122,38,110, ++ 97,109,101,115,112,97,99,101,32,109,111,100,117,108,101,32, ++ 108,111,97,100,101,100,32,119,105,116,104,32,112,97,116,104, ++ 32,123,33,114,125,41,3,114,153,0,0,0,114,254,0,0, ++ 0,114,181,0,0,0,41,2,114,72,0,0,0,114,159,0, ++ 0,0,114,5,0,0,0,114,5,0,0,0,114,6,0,0, ++ 0,114,5,1,0,0,36,7,0,0,115,4,0,0,0,0, ++ 7,16,1,122,28,95,78,97,109,101,115,112,97,99,101,76, ++ 111,97,100,101,114,46,108,111,97,100,95,109,111,100,117,108, ++ 101,78,41,11,114,58,0,0,0,114,57,0,0,0,114,59, ++ 0,0,0,114,73,0,0,0,114,19,1,0,0,114,206,0, ++ 0,0,114,220,0,0,0,114,17,1,0,0,114,16,1,0, ++ 0,114,2,1,0,0,114,5,1,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 252,0,0,0,11,7,0,0,115,14,0,0,0,12,1,12, ++ 3,18,9,12,3,12,3,12,3,12,3,114,252,0,0,0, + 99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0, +- 0,64,0,0,0,115,121,0,0,0,101,0,0,90,1,0, +- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,90, +- 4,0,100,3,0,90,5,0,100,4,0,90,6,0,101,7, +- 0,100,5,0,100,6,0,132,0,0,131,1,0,90,8,0, +- 101,7,0,100,7,0,100,8,0,132,0,0,131,1,0,90, +- 9,0,101,7,0,100,9,0,100,9,0,100,10,0,100,11, +- 0,132,2,0,131,1,0,90,10,0,101,7,0,100,9,0, +- 100,12,0,100,13,0,132,1,0,131,1,0,90,11,0,100, +- 9,0,83,41,14,218,21,87,105,110,100,111,119,115,82,101, +- 103,105,115,116,114,121,70,105,110,100,101,114,122,62,77,101, +- 116,97,32,112,97,116,104,32,102,105,110,100,101,114,32,102, +- 111,114,32,109,111,100,117,108,101,115,32,100,101,99,108,97, +- 114,101,100,32,105,110,32,116,104,101,32,87,105,110,100,111, +- 119,115,32,114,101,103,105,115,116,114,121,46,122,59,83,111, +- 102,116,119,97,114,101,92,80,121,116,104,111,110,92,80,121, +- 116,104,111,110,67,111,114,101,92,123,115,121,115,95,118,101, +- 114,115,105,111,110,125,92,77,111,100,117,108,101,115,92,123, +- 102,117,108,108,110,97,109,101,125,122,65,83,111,102,116,119, +- 97,114,101,92,80,121,116,104,111,110,92,80,121,116,104,111, +- 110,67,111,114,101,92,123,115,121,115,95,118,101,114,115,105, +- 111,110,125,92,77,111,100,117,108,101,115,92,123,102,117,108, +- 108,110,97,109,101,125,92,68,101,98,117,103,70,99,2,0, +- 0,0,0,0,0,0,2,0,0,0,11,0,0,0,67,0, +- 0,0,115,67,0,0,0,121,23,0,116,0,0,106,1,0, +- 116,0,0,106,2,0,124,1,0,131,2,0,83,87,110,37, +- 0,4,116,3,0,107,10,0,114,62,0,1,1,1,116,0, +- 0,106,1,0,116,0,0,106,4,0,124,1,0,131,2,0, +- 83,89,110,1,0,88,100,0,0,83,41,1,78,41,5,218, +- 7,95,119,105,110,114,101,103,90,7,79,112,101,110,75,101, +- 121,90,17,72,75,69,89,95,67,85,82,82,69,78,84,95, +- 85,83,69,82,114,40,0,0,0,90,18,72,75,69,89,95, +- 76,79,67,65,76,95,77,65,67,72,73,78,69,41,2,114, +- 11,1,0,0,218,3,107,101,121,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,14,95,111,112,101,110,95, +- 114,101,103,105,115,116,114,121,121,5,0,0,115,8,0,0, +- 0,0,2,3,1,23,1,13,1,122,36,87,105,110,100,111, +- 119,115,82,101,103,105,115,116,114,121,70,105,110,100,101,114, +- 46,95,111,112,101,110,95,114,101,103,105,115,116,114,121,99, +- 2,0,0,0,0,0,0,0,6,0,0,0,16,0,0,0, +- 67,0,0,0,115,142,0,0,0,124,0,0,106,0,0,114, +- 21,0,124,0,0,106,1,0,125,2,0,110,9,0,124,0, +- 0,106,2,0,125,2,0,124,2,0,106,3,0,100,1,0, +- 124,1,0,100,2,0,116,4,0,106,5,0,100,0,0,100, +- 3,0,133,2,0,25,131,0,2,125,3,0,121,46,0,124, +- 0,0,106,6,0,124,3,0,131,1,0,143,25,0,125,4, +- 0,116,7,0,106,8,0,124,4,0,100,4,0,131,2,0, +- 125,5,0,87,100,0,0,81,88,87,110,22,0,4,116,9, +- 0,107,10,0,114,137,0,1,1,1,100,0,0,83,89,110, +- 1,0,88,124,5,0,83,41,5,78,114,158,0,0,0,90, +- 11,115,121,115,95,118,101,114,115,105,111,110,114,136,0,0, +- 0,114,30,0,0,0,41,10,218,11,68,69,66,85,71,95, +- 66,85,73,76,68,218,18,82,69,71,73,83,84,82,89,95, +- 75,69,89,95,68,69,66,85,71,218,12,82,69,71,73,83, +- 84,82,89,95,75,69,89,114,47,0,0,0,114,7,0,0, +- 0,218,7,118,101,114,115,105,111,110,114,25,1,0,0,114, +- 23,1,0,0,90,10,81,117,101,114,121,86,97,108,117,101, +- 114,40,0,0,0,41,6,114,11,1,0,0,114,158,0,0, +- 0,90,12,114,101,103,105,115,116,114,121,95,107,101,121,114, +- 24,1,0,0,90,4,104,107,101,121,218,8,102,105,108,101, +- 112,97,116,104,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,16,95,115,101,97,114,99,104,95,114,101,103, +- 105,115,116,114,121,128,5,0,0,115,22,0,0,0,0,2, +- 9,1,12,2,9,1,15,1,22,1,3,1,18,1,28,1, +- 13,1,9,1,122,38,87,105,110,100,111,119,115,82,101,103, +- 105,115,116,114,121,70,105,110,100,101,114,46,95,115,101,97, +- 114,99,104,95,114,101,103,105,115,116,114,121,78,99,4,0, +- 0,0,0,0,0,0,8,0,0,0,14,0,0,0,67,0, +- 0,0,115,155,0,0,0,124,0,0,106,0,0,124,1,0, +- 131,1,0,125,4,0,124,4,0,100,0,0,107,8,0,114, +- 31,0,100,0,0,83,121,14,0,116,1,0,124,4,0,131, +- 1,0,1,87,110,22,0,4,116,2,0,107,10,0,114,69, +- 0,1,1,1,100,0,0,83,89,110,1,0,88,120,78,0, +- 116,3,0,131,0,0,68,93,67,0,92,2,0,125,5,0, +- 125,6,0,124,4,0,106,4,0,116,5,0,124,6,0,131, +- 1,0,131,1,0,114,80,0,116,6,0,124,1,0,124,5, +- 0,124,1,0,124,4,0,131,2,0,100,1,0,124,4,0, +- 131,2,1,125,7,0,124,7,0,83,113,80,0,87,100,0, +- 0,83,41,2,78,114,217,0,0,0,41,7,114,31,1,0, +- 0,114,39,0,0,0,114,40,0,0,0,114,240,0,0,0, +- 114,230,0,0,0,114,231,0,0,0,114,173,0,0,0,41, +- 8,114,11,1,0,0,114,158,0,0,0,114,35,0,0,0, +- 114,12,1,0,0,114,30,1,0,0,114,169,0,0,0,114, +- 127,0,0,0,114,177,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,13,1,0,0,143,5,0, +- 0,115,24,0,0,0,0,2,15,1,12,1,4,1,3,1, +- 14,1,13,1,9,1,22,1,21,1,21,1,9,1,122,31, +- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, +- 105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,99, +- 3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, +- 67,0,0,0,115,45,0,0,0,124,0,0,106,0,0,124, +- 1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,1, +- 0,107,9,0,114,37,0,124,3,0,106,1,0,83,100,1, +- 0,83,100,1,0,83,41,2,122,108,70,105,110,100,32,109, +- 111,100,117,108,101,32,110,97,109,101,100,32,105,110,32,116, +- 104,101,32,114,101,103,105,115,116,114,121,46,10,10,32,32, +- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, +- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, +- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, +- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, +- 32,32,32,32,32,32,78,41,2,114,13,1,0,0,114,169, +- 0,0,0,41,4,114,11,1,0,0,114,158,0,0,0,114, +- 35,0,0,0,114,177,0,0,0,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,14,1,0,0,158,5,0, +- 0,115,8,0,0,0,0,7,18,1,12,1,7,2,122,33, +- 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, +- 105,110,100,101,114,46,102,105,110,100,95,109,111,100,117,108, +- 101,41,12,114,57,0,0,0,114,56,0,0,0,114,58,0, +- 0,0,114,59,0,0,0,114,28,1,0,0,114,27,1,0, +- 0,114,26,1,0,0,114,18,1,0,0,114,25,1,0,0, +- 114,31,1,0,0,114,13,1,0,0,114,14,1,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,22,1,0,0,109,5,0,0,115,20,0,0, +- 0,12,2,6,3,6,3,6,2,6,2,18,7,18,15,3, +- 1,21,14,3,1,114,22,1,0,0,99,0,0,0,0,0, +- 0,0,0,0,0,0,0,2,0,0,0,64,0,0,0,115, +- 52,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, +- 100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,90, +- 4,0,100,4,0,100,5,0,132,0,0,90,5,0,101,6, +- 0,90,7,0,100,6,0,83,41,7,218,13,95,76,111,97, +- 100,101,114,66,97,115,105,99,115,122,83,66,97,115,101,32, +- 99,108,97,115,115,32,111,102,32,99,111,109,109,111,110,32, +- 99,111,100,101,32,110,101,101,100,101,100,32,98,121,32,98, +- 111,116,104,32,83,111,117,114,99,101,76,111,97,100,101,114, +- 32,97,110,100,10,32,32,32,32,83,111,117,114,99,101,108, +- 101,115,115,70,105,108,101,76,111,97,100,101,114,46,99,2, +- 0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,67, +- 0,0,0,115,88,0,0,0,116,0,0,124,0,0,106,1, +- 0,124,1,0,131,1,0,131,1,0,100,1,0,25,125,2, +- 0,124,2,0,106,2,0,100,2,0,100,1,0,131,2,0, +- 100,3,0,25,125,3,0,124,1,0,106,3,0,100,2,0, +- 131,1,0,100,4,0,25,125,4,0,124,3,0,100,5,0, +- 107,2,0,111,87,0,124,4,0,100,5,0,107,3,0,83, +- 41,6,122,141,67,111,110,99,114,101,116,101,32,105,109,112, +- 108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,73, +- 110,115,112,101,99,116,76,111,97,100,101,114,46,105,115,95, +- 112,97,99,107,97,103,101,32,98,121,32,99,104,101,99,107, +- 105,110,103,32,105,102,10,32,32,32,32,32,32,32,32,116, +- 104,101,32,112,97,116,104,32,114,101,116,117,114,110,101,100, +- 32,98,121,32,103,101,116,95,102,105,108,101,110,97,109,101, +- 32,104,97,115,32,97,32,102,105,108,101,110,97,109,101,32, +- 111,102,32,39,95,95,105,110,105,116,95,95,46,112,121,39, +- 46,114,29,0,0,0,114,116,0,0,0,114,84,0,0,0, +- 114,115,0,0,0,114,72,0,0,0,41,4,114,38,0,0, +- 0,114,238,0,0,0,114,34,0,0,0,114,32,0,0,0, +- 41,5,114,71,0,0,0,114,158,0,0,0,114,131,0,0, +- 0,90,13,102,105,108,101,110,97,109,101,95,98,97,115,101, +- 90,9,116,97,105,108,95,110,97,109,101,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,219,0,0,0,177, +- 5,0,0,115,8,0,0,0,0,3,25,1,22,1,19,1, +- 122,24,95,76,111,97,100,101,114,66,97,115,105,99,115,46, +- 105,115,95,112,97,99,107,97,103,101,99,2,0,0,0,0, +- 0,0,0,3,0,0,0,4,0,0,0,67,0,0,0,115, +- 80,0,0,0,124,0,0,106,0,0,124,1,0,106,1,0, +- 131,1,0,125,2,0,124,2,0,100,1,0,107,8,0,114, +- 57,0,116,2,0,100,2,0,106,3,0,124,1,0,106,1, +- 0,131,1,0,131,1,0,130,1,0,110,0,0,116,4,0, +- 116,5,0,124,2,0,124,1,0,106,6,0,131,3,0,1, +- 100,1,0,83,41,3,122,19,69,120,101,99,117,116,101,32, +- 116,104,101,32,109,111,100,117,108,101,46,78,122,52,99,97, +- 110,110,111,116,32,108,111,97,100,32,109,111,100,117,108,101, +- 32,123,33,114,125,32,119,104,101,110,32,103,101,116,95,99, +- 111,100,101,40,41,32,114,101,116,117,114,110,115,32,78,111, +- 110,101,41,7,114,15,1,0,0,114,57,0,0,0,114,153, +- 0,0,0,114,47,0,0,0,114,114,0,0,0,114,175,0, +- 0,0,114,63,0,0,0,41,3,114,71,0,0,0,114,179, +- 0,0,0,114,194,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,1,1,0,0,185,5,0,0, +- 115,10,0,0,0,0,2,18,1,12,1,3,1,24,1,122, +- 25,95,76,111,97,100,101,114,66,97,115,105,99,115,46,101, +- 120,101,99,95,109,111,100,117,108,101,78,41,8,114,57,0, +- 0,0,114,56,0,0,0,114,58,0,0,0,114,59,0,0, +- 0,114,219,0,0,0,114,1,1,0,0,114,180,0,0,0, +- 114,4,1,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,32,1,0,0,172,5, +- 0,0,115,8,0,0,0,12,3,6,2,12,8,12,8,114, +- 32,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0, +- 0,4,0,0,0,64,0,0,0,115,106,0,0,0,101,0, +- 0,90,1,0,100,0,0,90,2,0,100,1,0,100,2,0, +- 132,0,0,90,3,0,100,3,0,100,4,0,132,0,0,90, +- 4,0,100,5,0,100,6,0,132,0,0,90,5,0,100,7, +- 0,100,8,0,132,0,0,90,6,0,100,9,0,100,10,0, +- 132,0,0,90,7,0,100,11,0,100,18,0,100,13,0,100, +- 14,0,132,0,1,90,8,0,100,15,0,100,16,0,132,0, +- 0,90,9,0,100,17,0,83,41,19,218,12,83,111,117,114, +- 99,101,76,111,97,100,101,114,99,2,0,0,0,0,0,0, +- 0,2,0,0,0,1,0,0,0,67,0,0,0,115,10,0, +- 0,0,116,0,0,130,1,0,100,1,0,83,41,2,122,178, +- 79,112,116,105,111,110,97,108,32,109,101,116,104,111,100,32, +- 116,104,97,116,32,114,101,116,117,114,110,115,32,116,104,101, +- 32,109,111,100,105,102,105,99,97,116,105,111,110,32,116,105, +- 109,101,32,40,97,110,32,105,110,116,41,32,102,111,114,32, +- 116,104,101,10,32,32,32,32,32,32,32,32,115,112,101,99, +- 105,102,105,101,100,32,112,97,116,104,44,32,119,104,101,114, +- 101,32,112,97,116,104,32,105,115,32,97,32,115,116,114,46, +- 10,10,32,32,32,32,32,32,32,32,82,97,105,115,101,115, +- 32,73,79,69,114,114,111,114,32,119,104,101,110,32,116,104, +- 101,32,112,97,116,104,32,99,97,110,110,111,116,32,98,101, +- 32,104,97,110,100,108,101,100,46,10,32,32,32,32,32,32, +- 32,32,78,41,1,218,7,73,79,69,114,114,111,114,41,2, +- 114,71,0,0,0,114,35,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,10,112,97,116,104,95, +- 109,116,105,109,101,198,5,0,0,115,2,0,0,0,0,6, +- 122,23,83,111,117,114,99,101,76,111,97,100,101,114,46,112, +- 97,116,104,95,109,116,105,109,101,99,2,0,0,0,0,0, +- 0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,20, +- 0,0,0,105,1,0,124,0,0,106,0,0,124,1,0,131, +- 1,0,100,1,0,54,83,41,2,97,170,1,0,0,79,112, +- 116,105,111,110,97,108,32,109,101,116,104,111,100,32,114,101, +- 116,117,114,110,105,110,103,32,97,32,109,101,116,97,100,97, +- 116,97,32,100,105,99,116,32,102,111,114,32,116,104,101,32, +- 115,112,101,99,105,102,105,101,100,32,112,97,116,104,10,32, +- 32,32,32,32,32,32,32,116,111,32,98,121,32,116,104,101, +- 32,112,97,116,104,32,40,115,116,114,41,46,10,32,32,32, +- 32,32,32,32,32,80,111,115,115,105,98,108,101,32,107,101, +- 121,115,58,10,32,32,32,32,32,32,32,32,45,32,39,109, +- 116,105,109,101,39,32,40,109,97,110,100,97,116,111,114,121, +- 41,32,105,115,32,116,104,101,32,110,117,109,101,114,105,99, +- 32,116,105,109,101,115,116,97,109,112,32,111,102,32,108,97, +- 115,116,32,115,111,117,114,99,101,10,32,32,32,32,32,32, +- 32,32,32,32,99,111,100,101,32,109,111,100,105,102,105,99, +- 97,116,105,111,110,59,10,32,32,32,32,32,32,32,32,45, +- 32,39,115,105,122,101,39,32,40,111,112,116,105,111,110,97, +- 108,41,32,105,115,32,116,104,101,32,115,105,122,101,32,105, +- 110,32,98,121,116,101,115,32,111,102,32,116,104,101,32,115, +- 111,117,114,99,101,32,99,111,100,101,46,10,10,32,32,32, +- 32,32,32,32,32,73,109,112,108,101,109,101,110,116,105,110, +- 103,32,116,104,105,115,32,109,101,116,104,111,100,32,97,108, +- 108,111,119,115,32,116,104,101,32,108,111,97,100,101,114,32, +- 116,111,32,114,101,97,100,32,98,121,116,101,99,111,100,101, +- 32,102,105,108,101,115,46,10,32,32,32,32,32,32,32,32, +- 82,97,105,115,101,115,32,73,79,69,114,114,111,114,32,119, +- 104,101,110,32,116,104,101,32,112,97,116,104,32,99,97,110, +- 110,111,116,32,98,101,32,104,97,110,100,108,101,100,46,10, +- 32,32,32,32,32,32,32,32,114,183,0,0,0,41,1,114, +- 35,1,0,0,41,2,114,71,0,0,0,114,35,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, +- 10,112,97,116,104,95,115,116,97,116,115,206,5,0,0,115, +- 2,0,0,0,0,11,122,23,83,111,117,114,99,101,76,111, +- 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, +- 4,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0, +- 67,0,0,0,115,16,0,0,0,124,0,0,106,0,0,124, +- 2,0,124,3,0,131,2,0,83,41,1,122,228,79,112,116, +- 105,111,110,97,108,32,109,101,116,104,111,100,32,119,104,105, +- 99,104,32,119,114,105,116,101,115,32,100,97,116,97,32,40, +- 98,121,116,101,115,41,32,116,111,32,97,32,102,105,108,101, +- 32,112,97,116,104,32,40,97,32,115,116,114,41,46,10,10, +- 32,32,32,32,32,32,32,32,73,109,112,108,101,109,101,110, +- 116,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100, +- 32,97,108,108,111,119,115,32,102,111,114,32,116,104,101,32, +- 119,114,105,116,105,110,103,32,111,102,32,98,121,116,101,99, +- 111,100,101,32,102,105,108,101,115,46,10,10,32,32,32,32, +- 32,32,32,32,84,104,101,32,115,111,117,114,99,101,32,112, +- 97,116,104,32,105,115,32,110,101,101,100,101,100,32,105,110, +- 32,111,114,100,101,114,32,116,111,32,99,111,114,114,101,99, +- 116,108,121,32,116,114,97,110,115,102,101,114,32,112,101,114, +- 109,105,115,115,105,111,110,115,10,32,32,32,32,32,32,32, +- 32,41,1,218,8,115,101,116,95,100,97,116,97,41,4,114, +- 71,0,0,0,114,141,0,0,0,90,10,99,97,99,104,101, +- 95,112,97,116,104,114,53,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,15,95,99,97,99,104, +- 101,95,98,121,116,101,99,111,100,101,219,5,0,0,115,2, +- 0,0,0,0,8,122,28,83,111,117,114,99,101,76,111,97, +- 100,101,114,46,95,99,97,99,104,101,95,98,121,116,101,99, +- 111,100,101,99,3,0,0,0,0,0,0,0,3,0,0,0, +- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, +- 83,41,2,122,150,79,112,116,105,111,110,97,108,32,109,101, +- 116,104,111,100,32,119,104,105,99,104,32,119,114,105,116,101, +- 115,32,100,97,116,97,32,40,98,121,116,101,115,41,32,116, +- 111,32,97,32,102,105,108,101,32,112,97,116,104,32,40,97, +- 32,115,116,114,41,46,10,10,32,32,32,32,32,32,32,32, +- 73,109,112,108,101,109,101,110,116,105,110,103,32,116,104,105, +- 115,32,109,101,116,104,111,100,32,97,108,108,111,119,115,32, +- 102,111,114,32,116,104,101,32,119,114,105,116,105,110,103,32, +- 111,102,32,98,121,116,101,99,111,100,101,32,102,105,108,101, +- 115,46,10,32,32,32,32,32,32,32,32,78,114,4,0,0, +- 0,41,3,114,71,0,0,0,114,35,0,0,0,114,53,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,37,1,0,0,229,5,0,0,115,0,0,0,0,122, +- 21,83,111,117,114,99,101,76,111,97,100,101,114,46,115,101, +- 116,95,100,97,116,97,99,2,0,0,0,0,0,0,0,5, +- 0,0,0,16,0,0,0,67,0,0,0,115,105,0,0,0, +- 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,121, +- 19,0,124,0,0,106,1,0,124,2,0,131,1,0,125,3, +- 0,87,110,58,0,4,116,2,0,107,10,0,114,94,0,1, +- 125,4,0,1,122,26,0,116,3,0,100,1,0,100,2,0, +- 124,1,0,131,1,1,124,4,0,130,2,0,87,89,100,3, +- 0,100,3,0,125,4,0,126,4,0,88,110,1,0,88,116, +- 4,0,124,3,0,131,1,0,83,41,4,122,52,67,111,110, +- 99,114,101,116,101,32,105,109,112,108,101,109,101,110,116,97, +- 116,105,111,110,32,111,102,32,73,110,115,112,101,99,116,76, +- 111,97,100,101,114,46,103,101,116,95,115,111,117,114,99,101, +- 46,122,39,115,111,117,114,99,101,32,110,111,116,32,97,118, +- 97,105,108,97,98,108,101,32,116,104,114,111,117,103,104,32, +- 103,101,116,95,100,97,116,97,40,41,114,67,0,0,0,78, +- 41,5,114,238,0,0,0,218,8,103,101,116,95,100,97,116, +- 97,114,40,0,0,0,114,153,0,0,0,114,203,0,0,0, +- 41,5,114,71,0,0,0,114,158,0,0,0,114,35,0,0, +- 0,114,201,0,0,0,218,3,101,120,99,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,16,1,0,0,236, +- 5,0,0,115,14,0,0,0,0,2,15,1,3,1,19,1, +- 18,1,9,1,31,1,122,23,83,111,117,114,99,101,76,111, +- 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,218, +- 9,95,111,112,116,105,109,105,122,101,114,29,0,0,0,99, +- 3,0,0,0,1,0,0,0,4,0,0,0,9,0,0,0, +- 67,0,0,0,115,31,0,0,0,116,0,0,116,1,0,124, +- 1,0,124,2,0,100,1,0,100,2,0,100,3,0,100,4, +- 0,124,3,0,131,4,2,83,41,5,122,130,82,101,116,117, +- 114,110,32,116,104,101,32,99,111,100,101,32,111,98,106,101, +- 99,116,32,99,111,109,112,105,108,101,100,32,102,114,111,109, +- 32,115,111,117,114,99,101,46,10,10,32,32,32,32,32,32, +- 32,32,84,104,101,32,39,100,97,116,97,39,32,97,114,103, +- 117,109,101,110,116,32,99,97,110,32,98,101,32,97,110,121, +- 32,111,98,106,101,99,116,32,116,121,112,101,32,116,104,97, +- 116,32,99,111,109,112,105,108,101,40,41,32,115,117,112,112, +- 111,114,116,115,46,10,32,32,32,32,32,32,32,32,114,175, +- 0,0,0,218,12,100,111,110,116,95,105,110,104,101,114,105, +- 116,84,114,118,0,0,0,41,2,114,114,0,0,0,218,7, +- 99,111,109,112,105,108,101,41,4,114,71,0,0,0,114,53, +- 0,0,0,114,35,0,0,0,114,41,1,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,218,14,115,111, +- 117,114,99,101,95,116,111,95,99,111,100,101,246,5,0,0, +- 115,4,0,0,0,0,5,18,1,122,27,83,111,117,114,99, +- 101,76,111,97,100,101,114,46,115,111,117,114,99,101,95,116, +- 111,95,99,111,100,101,99,2,0,0,0,0,0,0,0,10, +- 0,0,0,45,0,0,0,67,0,0,0,115,177,1,0,0, +- 124,0,0,106,0,0,124,1,0,131,1,0,125,2,0,100, +- 1,0,125,3,0,121,16,0,116,1,0,124,2,0,131,1, +- 0,125,4,0,87,110,24,0,4,116,2,0,107,10,0,114, +- 63,0,1,1,1,100,1,0,125,4,0,89,110,202,0,88, +- 121,19,0,124,0,0,106,3,0,124,2,0,131,1,0,125, +- 5,0,87,110,18,0,4,116,4,0,107,10,0,114,103,0, +- 1,1,1,89,110,162,0,88,116,5,0,124,5,0,100,2, +- 0,25,131,1,0,125,3,0,121,19,0,124,0,0,106,6, +- 0,124,4,0,131,1,0,125,6,0,87,110,18,0,4,116, +- 7,0,107,10,0,114,159,0,1,1,1,89,110,106,0,88, +- 121,34,0,116,8,0,124,6,0,100,3,0,124,5,0,100, +- 4,0,124,1,0,100,5,0,124,4,0,131,1,3,125,7, +- 0,87,110,24,0,4,116,9,0,116,10,0,102,2,0,107, +- 10,0,114,220,0,1,1,1,89,110,45,0,88,116,11,0, +- 100,6,0,124,4,0,124,2,0,131,3,0,1,116,12,0, +- 124,7,0,100,4,0,124,1,0,100,7,0,124,4,0,100, +- 8,0,124,2,0,131,1,3,83,124,0,0,106,6,0,124, +- 2,0,131,1,0,125,8,0,124,0,0,106,13,0,124,8, +- 0,124,2,0,131,2,0,125,9,0,116,11,0,100,9,0, +- 124,2,0,131,2,0,1,116,14,0,106,15,0,12,114,173, +- 1,124,4,0,100,1,0,107,9,0,114,173,1,124,3,0, +- 100,1,0,107,9,0,114,173,1,116,16,0,124,9,0,124, +- 3,0,116,17,0,124,8,0,131,1,0,131,3,0,125,6, +- 0,121,36,0,124,0,0,106,18,0,124,2,0,124,4,0, +- 124,6,0,131,3,0,1,116,11,0,100,10,0,124,4,0, +- 131,2,0,1,87,113,173,1,4,116,2,0,107,10,0,114, +- 169,1,1,1,1,89,113,173,1,88,110,0,0,124,9,0, +- 83,41,11,122,190,67,111,110,99,114,101,116,101,32,105,109, +- 112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32, +- 73,110,115,112,101,99,116,76,111,97,100,101,114,46,103,101, +- 116,95,99,111,100,101,46,10,10,32,32,32,32,32,32,32, +- 32,82,101,97,100,105,110,103,32,111,102,32,98,121,116,101, +- 99,111,100,101,32,114,101,113,117,105,114,101,115,32,112,97, +- 116,104,95,115,116,97,116,115,32,116,111,32,98,101,32,105, +- 109,112,108,101,109,101,110,116,101,100,46,32,84,111,32,119, +- 114,105,116,101,10,32,32,32,32,32,32,32,32,98,121,116, +- 101,99,111,100,101,44,32,115,101,116,95,100,97,116,97,32, +- 109,117,115,116,32,97,108,115,111,32,98,101,32,105,109,112, +- 108,101,109,101,110,116,101,100,46,10,10,32,32,32,32,32, +- 32,32,32,78,114,183,0,0,0,114,187,0,0,0,114,67, +- 0,0,0,114,35,0,0,0,122,13,123,125,32,109,97,116, +- 99,104,101,115,32,123,125,114,140,0,0,0,114,141,0,0, +- 0,122,19,99,111,100,101,32,111,98,106,101,99,116,32,102, +- 114,111,109,32,123,125,122,10,119,114,111,116,101,32,123,33, +- 114,125,41,19,114,238,0,0,0,114,132,0,0,0,114,124, +- 0,0,0,114,36,1,0,0,114,34,1,0,0,114,14,0, +- 0,0,114,39,1,0,0,114,40,0,0,0,114,190,0,0, +- 0,114,153,0,0,0,114,186,0,0,0,114,152,0,0,0, +- 114,195,0,0,0,114,44,1,0,0,114,7,0,0,0,218, +- 19,100,111,110,116,95,119,114,105,116,101,95,98,121,116,101, +- 99,111,100,101,114,198,0,0,0,114,31,0,0,0,114,38, +- 1,0,0,41,10,114,71,0,0,0,114,158,0,0,0,114, +- 141,0,0,0,114,188,0,0,0,114,140,0,0,0,218,2, +- 115,116,114,53,0,0,0,218,10,98,121,116,101,115,95,100, +- 97,116,97,114,201,0,0,0,90,11,99,111,100,101,95,111, +- 98,106,101,99,116,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,15,1,0,0,254,5,0,0,115,78,0, +- 0,0,0,7,15,1,6,1,3,1,16,1,13,1,11,2, +- 3,1,19,1,13,1,5,2,16,1,3,1,19,1,13,1, +- 5,2,3,1,9,1,12,1,13,1,19,1,5,2,9,1, +- 7,1,15,1,6,1,7,1,15,1,18,1,13,1,22,1, +- 12,1,9,1,15,1,3,1,19,1,17,1,13,1,8,1, +- 122,21,83,111,117,114,99,101,76,111,97,100,101,114,46,103, +- 101,116,95,99,111,100,101,78,114,138,0,0,0,41,10,114, +- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,35, +- 1,0,0,114,36,1,0,0,114,38,1,0,0,114,37,1, +- 0,0,114,16,1,0,0,114,44,1,0,0,114,15,1,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,33,1,0,0,196,5,0,0,115,14, +- 0,0,0,12,2,12,8,12,13,12,10,12,7,12,10,18, +- 8,114,33,1,0,0,99,0,0,0,0,0,0,0,0,0, +- 0,0,0,4,0,0,0,0,0,0,0,115,112,0,0,0, +- 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, +- 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, +- 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, +- 132,0,0,90,6,0,101,7,0,135,0,0,102,1,0,100, +- 8,0,100,9,0,134,0,0,131,1,0,90,8,0,101,7, +- 0,100,10,0,100,11,0,132,0,0,131,1,0,90,9,0, +- 100,12,0,100,13,0,132,0,0,90,10,0,135,0,0,83, +- 41,14,218,10,70,105,108,101,76,111,97,100,101,114,122,103, +- 66,97,115,101,32,102,105,108,101,32,108,111,97,100,101,114, +- 32,99,108,97,115,115,32,119,104,105,99,104,32,105,109,112, +- 108,101,109,101,110,116,115,32,116,104,101,32,108,111,97,100, +- 101,114,32,112,114,111,116,111,99,111,108,32,109,101,116,104, +- 111,100,115,32,116,104,97,116,10,32,32,32,32,114,101,113, +- 117,105,114,101,32,102,105,108,101,32,115,121,115,116,101,109, +- 32,117,115,97,103,101,46,99,3,0,0,0,0,0,0,0, +- 3,0,0,0,2,0,0,0,67,0,0,0,115,22,0,0, +- 0,124,1,0,124,0,0,95,0,0,124,2,0,124,0,0, +- 95,1,0,100,1,0,83,41,2,122,75,67,97,99,104,101, +- 32,116,104,101,32,109,111,100,117,108,101,32,110,97,109,101, +- 32,97,110,100,32,116,104,101,32,112,97,116,104,32,116,111, +- 32,116,104,101,32,102,105,108,101,32,102,111,117,110,100,32, +- 98,121,32,116,104,101,10,32,32,32,32,32,32,32,32,102, +- 105,110,100,101,114,46,78,41,2,114,67,0,0,0,114,35, +- 0,0,0,41,3,114,71,0,0,0,114,158,0,0,0,114, +- 35,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,72,0,0,0,55,6,0,0,115,4,0,0, +- 0,0,3,9,1,122,19,70,105,108,101,76,111,97,100,101, +- 114,46,95,95,105,110,105,116,95,95,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, +- 34,0,0,0,124,0,0,106,0,0,124,1,0,106,0,0, +- 107,2,0,111,33,0,124,0,0,106,1,0,124,1,0,106, +- 1,0,107,2,0,83,41,1,78,41,2,114,224,0,0,0, +- 114,63,0,0,0,41,2,114,71,0,0,0,114,227,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 114,229,0,0,0,61,6,0,0,115,4,0,0,0,0,1, +- 18,1,122,17,70,105,108,101,76,111,97,100,101,114,46,95, +- 95,101,113,95,95,99,1,0,0,0,0,0,0,0,1,0, +- 0,0,3,0,0,0,67,0,0,0,115,26,0,0,0,116, +- 0,0,124,0,0,106,1,0,131,1,0,116,0,0,124,0, +- 0,106,2,0,131,1,0,65,83,41,1,78,41,3,218,4, +- 104,97,115,104,114,67,0,0,0,114,35,0,0,0,41,1, +- 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,8,95,95,104,97,115,104,95,95,65,6, +- 0,0,115,2,0,0,0,0,1,122,19,70,105,108,101,76, +- 111,97,100,101,114,46,95,95,104,97,115,104,95,95,99,2, +- 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,3, +- 0,0,0,115,22,0,0,0,116,0,0,116,1,0,124,0, +- 0,131,2,0,106,2,0,124,1,0,131,1,0,83,41,1, +- 122,100,76,111,97,100,32,97,32,109,111,100,117,108,101,32, +- 102,114,111,109,32,97,32,102,105,108,101,46,10,10,32,32, +- 32,32,32,32,32,32,84,104,105,115,32,109,101,116,104,111, +- 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, +- 32,32,85,115,101,32,101,120,101,99,95,109,111,100,117,108, +- 101,40,41,32,105,110,115,116,101,97,100,46,10,10,32,32, +- 32,32,32,32,32,32,41,3,218,5,115,117,112,101,114,114, +- 48,1,0,0,114,4,1,0,0,41,2,114,71,0,0,0, +- 114,158,0,0,0,41,1,114,224,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,114,4,1,0,0,68,6,0,0,115, +- 2,0,0,0,0,10,122,22,70,105,108,101,76,111,97,100, +- 101,114,46,108,111,97,100,95,109,111,100,117,108,101,99,2, +- 0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,67, +- 0,0,0,115,7,0,0,0,124,0,0,106,0,0,83,41, +- 1,122,58,82,101,116,117,114,110,32,116,104,101,32,112,97, +- 116,104,32,116,111,32,116,104,101,32,115,111,117,114,99,101, +- 32,102,105,108,101,32,97,115,32,102,111,117,110,100,32,98, +- 121,32,116,104,101,32,102,105,110,100,101,114,46,41,1,114, +- 35,0,0,0,41,2,114,71,0,0,0,114,158,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, +- 238,0,0,0,80,6,0,0,115,2,0,0,0,0,3,122, +- 23,70,105,108,101,76,111,97,100,101,114,46,103,101,116,95, +- 102,105,108,101,110,97,109,101,99,2,0,0,0,0,0,0, +- 0,3,0,0,0,8,0,0,0,67,0,0,0,115,41,0, +- 0,0,116,0,0,106,1,0,124,1,0,100,1,0,131,2, +- 0,143,17,0,125,2,0,124,2,0,106,2,0,131,0,0, +- 83,87,100,2,0,81,88,100,2,0,83,41,3,122,39,82, +- 101,116,117,114,110,32,116,104,101,32,100,97,116,97,32,102, +- 114,111,109,32,112,97,116,104,32,97,115,32,114,97,119,32, +- 98,121,116,101,115,46,218,1,114,78,41,3,114,49,0,0, +- 0,114,50,0,0,0,90,4,114,101,97,100,41,3,114,71, +- 0,0,0,114,35,0,0,0,114,54,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,39,1,0, +- 0,85,6,0,0,115,4,0,0,0,0,2,21,1,122,19, +- 70,105,108,101,76,111,97,100,101,114,46,103,101,116,95,100, +- 97,116,97,41,11,114,57,0,0,0,114,56,0,0,0,114, +- 58,0,0,0,114,59,0,0,0,114,72,0,0,0,114,229, +- 0,0,0,114,50,1,0,0,114,156,0,0,0,114,4,1, +- 0,0,114,238,0,0,0,114,39,1,0,0,114,4,0,0, +- 0,114,4,0,0,0,41,1,114,224,0,0,0,114,5,0, +- 0,0,114,48,1,0,0,50,6,0,0,115,14,0,0,0, +- 12,3,6,2,12,6,12,4,12,3,24,12,18,5,114,48, +- 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, +- 4,0,0,0,64,0,0,0,115,64,0,0,0,101,0,0, +- 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, +- 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, +- 0,132,0,0,90,5,0,100,6,0,100,7,0,100,8,0, +- 100,9,0,132,0,1,90,6,0,100,10,0,83,41,11,114, +- 8,1,0,0,122,62,67,111,110,99,114,101,116,101,32,105, +- 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, +- 32,83,111,117,114,99,101,76,111,97,100,101,114,32,117,115, +- 105,110,103,32,116,104,101,32,102,105,108,101,32,115,121,115, +- 116,101,109,46,99,2,0,0,0,0,0,0,0,3,0,0, +- 0,3,0,0,0,67,0,0,0,115,36,0,0,0,116,0, +- 0,124,1,0,131,1,0,125,2,0,105,2,0,124,2,0, +- 106,1,0,100,1,0,54,124,2,0,106,2,0,100,2,0, +- 54,83,41,3,122,33,82,101,116,117,114,110,32,116,104,101, +- 32,109,101,116,97,100,97,116,97,32,102,111,114,32,116,104, +- 101,32,112,97,116,104,46,114,183,0,0,0,114,184,0,0, +- 0,41,3,114,39,0,0,0,218,8,115,116,95,109,116,105, +- 109,101,90,7,115,116,95,115,105,122,101,41,3,114,71,0, +- 0,0,114,35,0,0,0,114,46,1,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,36,1,0,0, +- 95,6,0,0,115,4,0,0,0,0,2,12,1,122,27,83, +- 111,117,114,99,101,70,105,108,101,76,111,97,100,101,114,46, +- 112,97,116,104,95,115,116,97,116,115,99,4,0,0,0,0, +- 0,0,0,5,0,0,0,5,0,0,0,67,0,0,0,115, +- 34,0,0,0,116,0,0,124,1,0,131,1,0,125,4,0, +- 124,0,0,106,1,0,124,2,0,124,3,0,100,1,0,124, +- 4,0,131,2,1,83,41,2,78,218,5,95,109,111,100,101, +- 41,2,114,144,0,0,0,114,37,1,0,0,41,5,114,71, +- 0,0,0,114,141,0,0,0,114,140,0,0,0,114,53,0, +- 0,0,114,42,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,114,38,1,0,0,100,6,0,0,115, +- 4,0,0,0,0,2,12,1,122,32,83,111,117,114,99,101, +- 70,105,108,101,76,111,97,100,101,114,46,95,99,97,99,104, +- 101,95,98,121,116,101,99,111,100,101,114,54,1,0,0,105, +- 182,1,0,0,99,3,0,0,0,1,0,0,0,9,0,0, +- 0,18,0,0,0,67,0,0,0,115,53,1,0,0,116,0, +- 0,124,1,0,131,1,0,92,2,0,125,4,0,125,5,0, +- 103,0,0,125,6,0,120,54,0,124,4,0,114,80,0,116, +- 1,0,124,4,0,131,1,0,12,114,80,0,116,0,0,124, +- 4,0,131,1,0,92,2,0,125,4,0,125,7,0,124,6, +- 0,106,2,0,124,7,0,131,1,0,1,113,27,0,87,120, +- 132,0,116,3,0,124,6,0,131,1,0,68,93,118,0,125, +- 7,0,116,4,0,124,4,0,124,7,0,131,2,0,125,4, +- 0,121,17,0,116,5,0,106,6,0,124,4,0,131,1,0, +- 1,87,113,94,0,4,116,7,0,107,10,0,114,155,0,1, +- 1,1,119,94,0,89,113,94,0,4,116,8,0,107,10,0, +- 114,211,0,1,125,8,0,1,122,25,0,116,9,0,100,1, +- 0,124,4,0,124,8,0,131,3,0,1,100,2,0,83,87, +- 89,100,2,0,100,2,0,125,8,0,126,8,0,88,113,94, +- 0,88,113,94,0,87,121,33,0,116,10,0,124,1,0,124, +- 2,0,124,3,0,131,3,0,1,116,9,0,100,3,0,124, +- 1,0,131,2,0,1,87,110,53,0,4,116,8,0,107,10, +- 0,114,48,1,1,125,8,0,1,122,21,0,116,9,0,100, +- 1,0,124,1,0,124,8,0,131,3,0,1,87,89,100,2, +- 0,100,2,0,125,8,0,126,8,0,88,110,1,0,88,100, +- 2,0,83,41,4,122,27,87,114,105,116,101,32,98,121,116, +- 101,115,32,100,97,116,97,32,116,111,32,97,32,102,105,108, +- 101,46,122,27,99,111,117,108,100,32,110,111,116,32,99,114, +- 101,97,116,101,32,123,33,114,125,58,32,123,33,114,125,78, +- 122,12,99,114,101,97,116,101,100,32,123,33,114,125,41,11, +- 114,38,0,0,0,114,46,0,0,0,114,223,0,0,0,114, +- 33,0,0,0,114,28,0,0,0,114,3,0,0,0,90,5, +- 109,107,100,105,114,218,15,70,105,108,101,69,120,105,115,116, +- 115,69,114,114,111,114,114,40,0,0,0,114,152,0,0,0, +- 114,55,0,0,0,41,9,114,71,0,0,0,114,35,0,0, +- 0,114,53,0,0,0,114,54,1,0,0,114,233,0,0,0, +- 114,131,0,0,0,114,27,0,0,0,114,23,0,0,0,114, +- 40,1,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,37,1,0,0,105,6,0,0,115,38,0,0, +- 0,0,2,18,1,6,2,22,1,18,1,17,2,19,1,15, +- 1,3,1,17,1,13,2,7,1,18,3,16,1,27,1,3, +- 1,16,1,17,1,18,2,122,25,83,111,117,114,99,101,70, +- 105,108,101,76,111,97,100,101,114,46,115,101,116,95,100,97, +- 116,97,78,41,7,114,57,0,0,0,114,56,0,0,0,114, +- 58,0,0,0,114,59,0,0,0,114,36,1,0,0,114,38, +- 1,0,0,114,37,1,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,8,1,0, +- 0,91,6,0,0,115,8,0,0,0,12,2,6,2,12,5, +- 12,5,114,8,1,0,0,99,0,0,0,0,0,0,0,0, +- 0,0,0,0,2,0,0,0,64,0,0,0,115,46,0,0, +- 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, +- 90,3,0,100,2,0,100,3,0,132,0,0,90,4,0,100, +- 4,0,100,5,0,132,0,0,90,5,0,100,6,0,83,41, +- 7,114,7,1,0,0,122,45,76,111,97,100,101,114,32,119, +- 104,105,99,104,32,104,97,110,100,108,101,115,32,115,111,117, +- 114,99,101,108,101,115,115,32,102,105,108,101,32,105,109,112, +- 111,114,116,115,46,99,2,0,0,0,0,0,0,0,5,0, +- 0,0,6,0,0,0,67,0,0,0,115,76,0,0,0,124, +- 0,0,106,0,0,124,1,0,131,1,0,125,2,0,124,0, +- 0,106,1,0,124,2,0,131,1,0,125,3,0,116,2,0, +- 124,3,0,100,1,0,124,1,0,100,2,0,124,2,0,131, +- 1,2,125,4,0,116,3,0,124,4,0,100,1,0,124,1, +- 0,100,3,0,124,2,0,131,1,2,83,41,4,78,114,67, +- 0,0,0,114,35,0,0,0,114,140,0,0,0,41,4,114, +- 238,0,0,0,114,39,1,0,0,114,190,0,0,0,114,195, +- 0,0,0,41,5,114,71,0,0,0,114,158,0,0,0,114, +- 35,0,0,0,114,53,0,0,0,114,47,1,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,15,1, +- 0,0,138,6,0,0,115,8,0,0,0,0,1,15,1,15, +- 1,24,1,122,29,83,111,117,114,99,101,108,101,115,115,70, +- 105,108,101,76,111,97,100,101,114,46,103,101,116,95,99,111, +- 100,101,99,2,0,0,0,0,0,0,0,2,0,0,0,1, +- 0,0,0,67,0,0,0,115,4,0,0,0,100,1,0,83, +- 41,2,122,39,82,101,116,117,114,110,32,78,111,110,101,32, +- 97,115,32,116,104,101,114,101,32,105,115,32,110,111,32,115, +- 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, +- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,16,1,0, +- 0,144,6,0,0,115,2,0,0,0,0,2,122,31,83,111, +- 117,114,99,101,108,101,115,115,70,105,108,101,76,111,97,100, +- 101,114,46,103,101,116,95,115,111,117,114,99,101,78,41,6, +- 114,57,0,0,0,114,56,0,0,0,114,58,0,0,0,114, +- 59,0,0,0,114,15,1,0,0,114,16,1,0,0,114,4, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,230,0,0,0,166,3,0,0,115,20,0,0,0, -- 12,5,6,2,12,6,12,10,12,4,12,13,12,3,12,3, -- 12,3,12,3,114,230,0,0,0,99,0,0,0,0,0,0, -- 0,0,0,0,0,0,3,0,0,0,64,0,0,0,115,118, -- 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, -- 1,0,100,2,0,132,0,0,90,3,0,101,4,0,100,3, -- 0,100,4,0,132,0,0,131,1,0,90,5,0,100,5,0, -- 100,6,0,132,0,0,90,6,0,100,7,0,100,8,0,132, -- 0,0,90,7,0,100,9,0,100,10,0,132,0,0,90,8, -- 0,100,11,0,100,12,0,132,0,0,90,9,0,100,13,0, -- 100,14,0,132,0,0,90,10,0,100,15,0,100,16,0,132, -- 0,0,90,11,0,100,17,0,83,41,18,218,16,95,78,97, -- 109,101,115,112,97,99,101,76,111,97,100,101,114,99,4,0, +- 0,0,114,7,1,0,0,134,6,0,0,115,6,0,0,0, +- 12,2,6,2,12,6,114,7,1,0,0,99,0,0,0,0, +- 0,0,0,0,0,0,0,0,3,0,0,0,64,0,0,0, +- 115,130,0,0,0,101,0,0,90,1,0,100,0,0,90,2, +- 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, +- 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, +- 6,0,100,7,0,132,0,0,90,6,0,101,7,0,100,8, +- 0,100,9,0,132,0,0,131,1,0,90,8,0,100,10,0, +- 100,11,0,132,0,0,90,9,0,100,12,0,100,13,0,132, +- 0,0,90,10,0,100,14,0,100,15,0,132,0,0,90,11, +- 0,101,7,0,100,16,0,100,17,0,132,0,0,131,1,0, +- 90,12,0,100,18,0,83,41,19,218,19,69,120,116,101,110, +- 115,105,111,110,70,105,108,101,76,111,97,100,101,114,122,93, +- 76,111,97,100,101,114,32,102,111,114,32,101,120,116,101,110, +- 115,105,111,110,32,109,111,100,117,108,101,115,46,10,10,32, +- 32,32,32,84,104,101,32,99,111,110,115,116,114,117,99,116, +- 111,114,32,105,115,32,100,101,115,105,103,110,101,100,32,116, +- 111,32,119,111,114,107,32,119,105,116,104,32,70,105,108,101, +- 70,105,110,100,101,114,46,10,10,32,32,32,32,99,3,0, +- 0,0,0,0,0,0,3,0,0,0,2,0,0,0,67,0, +- 0,0,115,22,0,0,0,124,1,0,124,0,0,95,0,0, +- 124,2,0,124,0,0,95,1,0,100,0,0,83,41,1,78, +- 41,2,114,67,0,0,0,114,35,0,0,0,41,3,114,71, +- 0,0,0,114,67,0,0,0,114,35,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,72,0,0, +- 0,161,6,0,0,115,4,0,0,0,0,1,9,1,122,28, +- 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, +- 100,101,114,46,95,95,105,110,105,116,95,95,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,3,0,0,0,67,0,0, +- 0,115,34,0,0,0,124,0,0,106,0,0,124,1,0,106, +- 0,0,107,2,0,111,33,0,124,0,0,106,1,0,124,1, +- 0,106,1,0,107,2,0,83,41,1,78,41,2,114,224,0, +- 0,0,114,63,0,0,0,41,2,114,71,0,0,0,114,227, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,229,0,0,0,165,6,0,0,115,4,0,0,0, +- 0,1,18,1,122,26,69,120,116,101,110,115,105,111,110,70, +- 105,108,101,76,111,97,100,101,114,46,95,95,101,113,95,95, +- 99,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0, +- 0,67,0,0,0,115,26,0,0,0,116,0,0,124,0,0, +- 106,1,0,131,1,0,116,0,0,124,0,0,106,2,0,131, +- 1,0,65,83,41,1,78,41,3,114,49,1,0,0,114,67, +- 0,0,0,114,35,0,0,0,41,1,114,71,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,50, +- 1,0,0,169,6,0,0,115,2,0,0,0,0,1,122,28, +- 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, +- 100,101,114,46,95,95,104,97,115,104,95,95,99,2,0,0, +- 0,0,0,0,0,4,0,0,0,11,0,0,0,67,0,0, +- 0,115,183,0,0,0,116,0,0,124,1,0,131,1,0,143, +- 29,0,1,116,1,0,116,2,0,106,3,0,124,1,0,124, +- 0,0,106,4,0,131,3,0,125,2,0,87,100,1,0,81, +- 88,116,5,0,100,2,0,124,0,0,106,4,0,131,2,0, +- 1,124,0,0,106,6,0,124,1,0,131,1,0,125,3,0, +- 124,3,0,114,124,0,116,7,0,124,2,0,100,3,0,131, +- 2,0,12,114,124,0,116,8,0,124,0,0,106,4,0,131, +- 1,0,100,4,0,25,103,1,0,124,2,0,95,9,0,110, +- 0,0,124,0,0,124,2,0,95,10,0,124,2,0,106,11, +- 0,124,2,0,95,12,0,124,3,0,115,179,0,124,2,0, +- 106,12,0,106,13,0,100,5,0,131,1,0,100,4,0,25, +- 124,2,0,95,12,0,110,0,0,124,2,0,83,41,6,122, +- 25,76,111,97,100,32,97,110,32,101,120,116,101,110,115,105, +- 111,110,32,109,111,100,117,108,101,46,78,122,33,101,120,116, +- 101,110,115,105,111,110,32,109,111,100,117,108,101,32,108,111, +- 97,100,101,100,32,102,114,111,109,32,123,33,114,125,114,246, +- 0,0,0,114,84,0,0,0,114,116,0,0,0,41,14,114, +- 69,0,0,0,114,114,0,0,0,114,106,0,0,0,90,12, +- 108,111,97,100,95,100,121,110,97,109,105,99,114,35,0,0, +- 0,114,152,0,0,0,114,219,0,0,0,114,60,0,0,0, +- 114,38,0,0,0,114,246,0,0,0,114,204,0,0,0,114, +- 57,0,0,0,114,250,0,0,0,114,32,0,0,0,41,4, +- 114,71,0,0,0,114,158,0,0,0,114,179,0,0,0,114, +- 219,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,4,1,0,0,172,6,0,0,115,24,0,0, +- 0,0,5,13,1,9,1,21,1,16,1,15,1,22,1,28, +- 1,9,1,12,1,6,1,28,1,122,31,69,120,116,101,110, +- 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,108, +- 111,97,100,95,109,111,100,117,108,101,99,2,0,0,0,0, +- 0,0,0,2,0,0,0,4,0,0,0,3,0,0,0,115, +- 48,0,0,0,116,0,0,124,0,0,106,1,0,131,1,0, +- 100,1,0,25,137,0,0,116,2,0,135,0,0,102,1,0, +- 100,2,0,100,3,0,134,0,0,116,3,0,68,131,1,0, +- 131,1,0,83,41,4,122,49,82,101,116,117,114,110,32,84, +- 114,117,101,32,105,102,32,116,104,101,32,101,120,116,101,110, +- 115,105,111,110,32,109,111,100,117,108,101,32,105,115,32,97, +- 32,112,97,99,107,97,103,101,46,114,29,0,0,0,99,1, +- 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,51, +- 0,0,0,115,31,0,0,0,124,0,0,93,21,0,125,1, +- 0,136,0,0,100,0,0,124,1,0,23,107,2,0,86,1, +- 113,3,0,100,1,0,83,41,2,114,72,0,0,0,78,114, +- 4,0,0,0,41,2,114,22,0,0,0,218,6,115,117,102, +- 102,105,120,41,1,218,9,102,105,108,101,95,110,97,109,101, +- 114,4,0,0,0,114,5,0,0,0,114,77,0,0,0,193, +- 6,0,0,115,2,0,0,0,6,1,122,49,69,120,116,101, +- 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, +- 105,115,95,112,97,99,107,97,103,101,46,60,108,111,99,97, +- 108,115,62,46,60,103,101,110,101,120,112,114,62,41,4,114, +- 38,0,0,0,114,35,0,0,0,114,78,0,0,0,218,18, +- 69,88,84,69,78,83,73,79,78,95,83,85,70,70,73,88, +- 69,83,41,2,114,71,0,0,0,114,158,0,0,0,114,4, +- 0,0,0,41,1,114,58,1,0,0,114,5,0,0,0,114, +- 219,0,0,0,190,6,0,0,115,6,0,0,0,0,2,19, +- 1,18,1,122,30,69,120,116,101,110,115,105,111,110,70,105, +- 108,101,76,111,97,100,101,114,46,105,115,95,112,97,99,107, +- 97,103,101,99,2,0,0,0,0,0,0,0,2,0,0,0, +- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, +- 83,41,2,122,63,82,101,116,117,114,110,32,78,111,110,101, +- 32,97,115,32,97,110,32,101,120,116,101,110,115,105,111,110, +- 32,109,111,100,117,108,101,32,99,97,110,110,111,116,32,99, +- 114,101,97,116,101,32,97,32,99,111,100,101,32,111,98,106, +- 101,99,116,46,78,114,4,0,0,0,41,2,114,71,0,0, +- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,15,1,0,0,196,6,0,0,115,2, +- 0,0,0,0,2,122,28,69,120,116,101,110,115,105,111,110, +- 70,105,108,101,76,111,97,100,101,114,46,103,101,116,95,99, +- 111,100,101,99,2,0,0,0,0,0,0,0,2,0,0,0, +- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, +- 83,41,2,122,53,82,101,116,117,114,110,32,78,111,110,101, +- 32,97,115,32,101,120,116,101,110,115,105,111,110,32,109,111, +- 100,117,108,101,115,32,104,97,118,101,32,110,111,32,115,111, +- 117,114,99,101,32,99,111,100,101,46,78,114,4,0,0,0, +- 41,2,114,71,0,0,0,114,158,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,16,1,0,0, +- 200,6,0,0,115,2,0,0,0,0,2,122,30,69,120,116, +- 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, +- 46,103,101,116,95,115,111,117,114,99,101,99,2,0,0,0, +- 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, +- 115,7,0,0,0,124,0,0,106,0,0,83,41,1,122,58, +- 82,101,116,117,114,110,32,116,104,101,32,112,97,116,104,32, +- 116,111,32,116,104,101,32,115,111,117,114,99,101,32,102,105, +- 108,101,32,97,115,32,102,111,117,110,100,32,98,121,32,116, +- 104,101,32,102,105,110,100,101,114,46,41,1,114,35,0,0, +- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,238,0,0, +- 0,204,6,0,0,115,2,0,0,0,0,3,122,32,69,120, +- 116,101,110,115,105,111,110,70,105,108,101,76,111,97,100,101, +- 114,46,103,101,116,95,102,105,108,101,110,97,109,101,78,41, +- 13,114,57,0,0,0,114,56,0,0,0,114,58,0,0,0, +- 114,59,0,0,0,114,72,0,0,0,114,229,0,0,0,114, +- 50,1,0,0,114,156,0,0,0,114,4,1,0,0,114,219, +- 0,0,0,114,15,1,0,0,114,16,1,0,0,114,238,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,114,56,1,0,0,153,6,0,0,115, +- 18,0,0,0,12,6,6,2,12,4,12,4,12,3,18,18, +- 12,6,12,4,12,4,114,56,1,0,0,99,0,0,0,0, +- 0,0,0,0,0,0,0,0,2,0,0,0,64,0,0,0, +- 115,130,0,0,0,101,0,0,90,1,0,100,0,0,90,2, +- 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0, +- 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,100, +- 6,0,100,7,0,132,0,0,90,6,0,100,8,0,100,9, +- 0,132,0,0,90,7,0,100,10,0,100,11,0,132,0,0, +- 90,8,0,100,12,0,100,13,0,132,0,0,90,9,0,100, +- 14,0,100,15,0,132,0,0,90,10,0,100,16,0,100,17, +- 0,132,0,0,90,11,0,100,18,0,100,19,0,132,0,0, +- 90,12,0,100,20,0,83,41,21,218,14,95,78,97,109,101, +- 115,112,97,99,101,80,97,116,104,97,38,1,0,0,82,101, +- 112,114,101,115,101,110,116,115,32,97,32,110,97,109,101,115, +- 112,97,99,101,32,112,97,99,107,97,103,101,39,115,32,112, +- 97,116,104,46,32,32,73,116,32,117,115,101,115,32,116,104, +- 101,32,109,111,100,117,108,101,32,110,97,109,101,10,32,32, +- 32,32,116,111,32,102,105,110,100,32,105,116,115,32,112,97, +- 114,101,110,116,32,109,111,100,117,108,101,44,32,97,110,100, +- 32,102,114,111,109,32,116,104,101,114,101,32,105,116,32,108, +- 111,111,107,115,32,117,112,32,116,104,101,32,112,97,114,101, +- 110,116,39,115,10,32,32,32,32,95,95,112,97,116,104,95, +- 95,46,32,32,87,104,101,110,32,116,104,105,115,32,99,104, +- 97,110,103,101,115,44,32,116,104,101,32,109,111,100,117,108, +- 101,39,115,32,111,119,110,32,112,97,116,104,32,105,115,32, +- 114,101,99,111,109,112,117,116,101,100,44,10,32,32,32,32, +- 117,115,105,110,103,32,112,97,116,104,95,102,105,110,100,101, +- 114,46,32,32,70,111,114,32,116,111,112,45,108,101,118,101, +- 108,32,109,111,100,117,108,101,115,44,32,116,104,101,32,112, +- 97,114,101,110,116,32,109,111,100,117,108,101,39,115,32,112, +- 97,116,104,10,32,32,32,32,105,115,32,115,121,115,46,112, +- 97,116,104,46,99,4,0,0,0,0,0,0,0,4,0,0, +- 0,2,0,0,0,67,0,0,0,115,52,0,0,0,124,1, +- 0,124,0,0,95,0,0,124,2,0,124,0,0,95,1,0, +- 116,2,0,124,0,0,106,3,0,131,0,0,131,1,0,124, +- 0,0,95,4,0,124,3,0,124,0,0,95,5,0,100,0, +- 0,83,41,1,78,41,6,114,70,0,0,0,114,253,0,0, +- 0,114,231,0,0,0,218,16,95,103,101,116,95,112,97,114, +- 101,110,116,95,112,97,116,104,218,17,95,108,97,115,116,95, +- 112,97,114,101,110,116,95,112,97,116,104,218,12,95,112,97, +- 116,104,95,102,105,110,100,101,114,41,4,114,71,0,0,0, +- 114,67,0,0,0,114,35,0,0,0,218,11,112,97,116,104, +- 95,102,105,110,100,101,114,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,114,72,0,0,0,217,6,0,0,115, +- 8,0,0,0,0,1,9,1,9,1,21,1,122,23,95,78, +- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,105, +- 110,105,116,95,95,99,1,0,0,0,0,0,0,0,4,0, +- 0,0,3,0,0,0,67,0,0,0,115,53,0,0,0,124, +- 0,0,106,0,0,106,1,0,100,1,0,131,1,0,92,3, +- 0,125,1,0,125,2,0,125,3,0,124,2,0,100,2,0, +- 107,2,0,114,43,0,100,6,0,83,124,1,0,100,5,0, +- 102,2,0,83,41,7,122,62,82,101,116,117,114,110,115,32, +- 97,32,116,117,112,108,101,32,111,102,32,40,112,97,114,101, +- 110,116,45,109,111,100,117,108,101,45,110,97,109,101,44,32, +- 112,97,114,101,110,116,45,112,97,116,104,45,97,116,116,114, +- 45,110,97,109,101,41,114,116,0,0,0,114,30,0,0,0, +- 114,7,0,0,0,114,35,0,0,0,114,246,0,0,0,41, +- 2,122,3,115,121,115,122,4,112,97,116,104,41,2,114,70, +- 0,0,0,114,32,0,0,0,41,4,114,71,0,0,0,114, +- 233,0,0,0,218,3,100,111,116,114,94,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,23,95, +- 102,105,110,100,95,112,97,114,101,110,116,95,112,97,116,104, +- 95,110,97,109,101,115,223,6,0,0,115,8,0,0,0,0, +- 2,27,1,12,2,4,3,122,38,95,78,97,109,101,115,112, +- 97,99,101,80,97,116,104,46,95,102,105,110,100,95,112,97, +- 114,101,110,116,95,112,97,116,104,95,110,97,109,101,115,99, +- 1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, +- 67,0,0,0,115,38,0,0,0,124,0,0,106,0,0,131, +- 0,0,92,2,0,125,1,0,125,2,0,116,1,0,116,2, +- 0,106,3,0,124,1,0,25,124,2,0,131,2,0,83,41, +- 1,78,41,4,114,66,1,0,0,114,62,0,0,0,114,7, +- 0,0,0,114,73,0,0,0,41,3,114,71,0,0,0,90, +- 18,112,97,114,101,110,116,95,109,111,100,117,108,101,95,110, +- 97,109,101,90,14,112,97,116,104,95,97,116,116,114,95,110, +- 97,109,101,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,61,1,0,0,233,6,0,0,115,4,0,0,0, +- 0,1,18,1,122,31,95,78,97,109,101,115,112,97,99,101, +- 80,97,116,104,46,95,103,101,116,95,112,97,114,101,110,116, +- 95,112,97,116,104,99,1,0,0,0,0,0,0,0,3,0, +- 0,0,3,0,0,0,67,0,0,0,115,127,0,0,0,116, +- 0,0,124,0,0,106,1,0,131,0,0,131,1,0,125,1, +- 0,124,1,0,124,0,0,106,2,0,107,3,0,114,120,0, +- 124,0,0,106,3,0,124,0,0,106,4,0,124,1,0,131, +- 2,0,125,2,0,124,2,0,100,0,0,107,9,0,114,108, +- 0,124,2,0,106,5,0,100,0,0,107,8,0,114,108,0, +- 124,2,0,106,6,0,114,108,0,124,2,0,106,6,0,124, +- 0,0,95,7,0,113,108,0,110,0,0,124,1,0,124,0, +- 0,95,2,0,110,0,0,124,0,0,106,7,0,83,41,1, +- 78,41,8,114,231,0,0,0,114,61,1,0,0,114,62,1, +- 0,0,114,63,1,0,0,114,70,0,0,0,114,169,0,0, +- 0,114,220,0,0,0,114,253,0,0,0,41,3,114,71,0, +- 0,0,90,11,112,97,114,101,110,116,95,112,97,116,104,114, +- 177,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,12,95,114,101,99,97,108,99,117,108,97,116, +- 101,237,6,0,0,115,16,0,0,0,0,2,18,1,15,1, +- 21,3,27,1,9,1,18,1,12,1,122,27,95,78,97,109, +- 101,115,112,97,99,101,80,97,116,104,46,95,114,101,99,97, +- 108,99,117,108,97,116,101,99,1,0,0,0,0,0,0,0, +- 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, +- 0,116,0,0,124,0,0,106,1,0,131,0,0,131,1,0, +- 83,41,1,78,41,2,218,4,105,116,101,114,114,67,1,0, +- 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,218,8,95,95,105,116,101,114,95, +- 95,250,6,0,0,115,2,0,0,0,0,1,122,23,95,78, +- 97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,105, +- 116,101,114,95,95,99,1,0,0,0,0,0,0,0,1,0, +- 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,116, +- 0,0,124,0,0,106,1,0,131,0,0,131,1,0,83,41, +- 1,78,41,2,114,31,0,0,0,114,67,1,0,0,41,1, +- 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,7,95,95,108,101,110,95,95,253,6,0, +- 0,115,2,0,0,0,0,1,122,22,95,78,97,109,101,115, +- 112,97,99,101,80,97,116,104,46,95,95,108,101,110,95,95, +- 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, +- 0,67,0,0,0,115,16,0,0,0,100,1,0,106,0,0, +- 124,0,0,106,1,0,131,1,0,83,41,2,78,122,20,95, +- 78,97,109,101,115,112,97,99,101,80,97,116,104,40,123,33, +- 114,125,41,41,2,114,47,0,0,0,114,253,0,0,0,41, +- 1,114,71,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,101,0,0,0,0,7,0,0,115,2, +- 0,0,0,0,1,122,23,95,78,97,109,101,115,112,97,99, +- 101,80,97,116,104,46,95,95,114,101,112,114,95,95,99,2, +- 0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,67, +- 0,0,0,115,16,0,0,0,124,1,0,124,0,0,106,0, +- 0,131,0,0,107,6,0,83,41,1,78,41,1,114,67,1, +- 0,0,41,2,114,71,0,0,0,218,4,105,116,101,109,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,12, +- 95,95,99,111,110,116,97,105,110,115,95,95,3,7,0,0, +- 115,2,0,0,0,0,1,122,27,95,78,97,109,101,115,112, +- 97,99,101,80,97,116,104,46,95,95,99,111,110,116,97,105, +- 110,115,95,95,99,2,0,0,0,0,0,0,0,2,0,0, +- 0,2,0,0,0,67,0,0,0,115,20,0,0,0,124,0, +- 0,106,0,0,106,1,0,124,1,0,131,1,0,1,100,0, +- 0,83,41,1,78,41,2,114,253,0,0,0,114,223,0,0, +- 0,41,2,114,71,0,0,0,114,71,1,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,223,0,0, +- 0,6,7,0,0,115,2,0,0,0,0,1,122,21,95,78, +- 97,109,101,115,112,97,99,101,80,97,116,104,46,97,112,112, +- 101,110,100,78,41,13,114,57,0,0,0,114,56,0,0,0, +- 114,58,0,0,0,114,59,0,0,0,114,72,0,0,0,114, +- 66,1,0,0,114,61,1,0,0,114,67,1,0,0,114,69, +- 1,0,0,114,70,1,0,0,114,101,0,0,0,114,72,1, +- 0,0,114,223,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,60,1,0,0, +- 210,6,0,0,115,20,0,0,0,12,5,6,2,12,6,12, +- 10,12,4,12,13,12,3,12,3,12,3,12,3,114,60,1, +- 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3, +- 0,0,0,64,0,0,0,115,106,0,0,0,101,0,0,90, +- 1,0,100,0,0,90,2,0,100,1,0,100,2,0,132,0, +- 0,90,3,0,101,4,0,100,3,0,100,4,0,132,0,0, +- 131,1,0,90,5,0,100,5,0,100,6,0,132,0,0,90, +- 6,0,100,7,0,100,8,0,132,0,0,90,7,0,100,9, +- 0,100,10,0,132,0,0,90,8,0,100,11,0,100,12,0, +- 132,0,0,90,9,0,100,13,0,100,14,0,132,0,0,90, +- 10,0,100,15,0,83,41,16,114,251,0,0,0,99,4,0, - 0,0,0,0,0,0,4,0,0,0,4,0,0,0,67,0, - 0,0,115,25,0,0,0,116,0,0,124,1,0,124,2,0, - 124,3,0,131,3,0,124,0,0,95,1,0,100,0,0,83, -- 41,1,78,41,2,114,230,0,0,0,114,232,0,0,0,41, -- 4,114,108,0,0,0,114,106,0,0,0,114,35,0,0,0, -- 114,236,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,185,0,0,0,224,3,0,0,115,2,0, +- 41,1,78,41,2,114,60,1,0,0,114,253,0,0,0,41, +- 4,114,71,0,0,0,114,67,0,0,0,114,35,0,0,0, +- 114,64,1,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,72,0,0,0,12,7,0,0,115,2,0, - 0,0,0,1,122,25,95,78,97,109,101,115,112,97,99,101, - 76,111,97,100,101,114,46,95,95,105,110,105,116,95,95,99, - 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, @@ -32720,1636 +37634,2259 @@ diff -Nru orig/Python/importlib_external.h modified/Python/importlib_external.h - 116,115,101,108,102,46,10,10,32,32,32,32,32,32,32,32, - 122,25,60,109,111,100,117,108,101,32,123,33,114,125,32,40, - 110,97,109,101,115,112,97,99,101,41,62,41,2,114,47,0, -- 0,0,114,112,0,0,0,41,2,114,170,0,0,0,114,190, +- 0,0,114,57,0,0,0,41,2,114,11,1,0,0,114,179, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,218,11,109,111,100,117,108,101,95,114,101,112,114,227, -- 3,0,0,115,2,0,0,0,0,7,122,28,95,78,97,109, -- 101,115,112,97,99,101,76,111,97,100,101,114,46,109,111,100, -- 117,108,101,95,114,101,112,114,99,2,0,0,0,0,0,0, -- 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, -- 0,0,100,1,0,83,41,2,78,84,114,4,0,0,0,41, -- 2,114,108,0,0,0,114,126,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,159,0,0,0,236, -- 3,0,0,115,2,0,0,0,0,1,122,27,95,78,97,109, -- 101,115,112,97,99,101,76,111,97,100,101,114,46,105,115,95, -- 112,97,99,107,97,103,101,99,2,0,0,0,0,0,0,0, -- 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, -- 0,100,1,0,83,41,2,78,114,30,0,0,0,114,4,0, -- 0,0,41,2,114,108,0,0,0,114,126,0,0,0,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,202,0, -- 0,0,239,3,0,0,115,2,0,0,0,0,1,122,27,95, -- 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46, -- 103,101,116,95,115,111,117,114,99,101,99,2,0,0,0,0, -- 0,0,0,2,0,0,0,6,0,0,0,67,0,0,0,115, -- 22,0,0,0,116,0,0,100,1,0,100,2,0,100,3,0, -- 100,4,0,100,5,0,131,3,1,83,41,6,78,114,30,0, -- 0,0,122,8,60,115,116,114,105,110,103,62,114,189,0,0, -- 0,114,204,0,0,0,84,41,1,114,205,0,0,0,41,2, -- 114,108,0,0,0,114,126,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,187,0,0,0,242,3, -+ 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, -+ 83,41,2,78,122,20,95,78,97,109,101,115,112,97,99,101, -+ 80,97,116,104,40,123,33,114,125,41,41,2,114,48,0,0, -+ 0,114,233,0,0,0,41,1,114,109,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,8,95,95, -+ 114,101,112,114,95,95,212,3,0,0,115,2,0,0,0,0, -+ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, -+ 104,46,95,95,114,101,112,114,95,95,99,2,0,0,0,0, -+ 0,0,0,2,0,0,0,2,0,0,0,67,0,0,0,115, -+ 16,0,0,0,124,1,0,124,0,0,106,0,0,131,0,0, -+ 107,6,0,83,41,1,78,41,1,114,241,0,0,0,41,2, -+ 114,109,0,0,0,218,4,105,116,101,109,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,12,95,95,99,111, -+ 110,116,97,105,110,115,95,95,215,3,0,0,115,2,0,0, -+ 0,0,1,122,27,95,78,97,109,101,115,112,97,99,101,80, -+ 97,116,104,46,95,95,99,111,110,116,97,105,110,115,95,95, -+ 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, -+ 0,67,0,0,0,115,20,0,0,0,124,0,0,106,0,0, -+ 106,1,0,124,1,0,131,1,0,1,100,0,0,83,41,1, -+ 78,41,2,114,233,0,0,0,114,164,0,0,0,41,2,114, -+ 109,0,0,0,114,246,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,164,0,0,0,218,3,0, -+ 0,115,2,0,0,0,0,1,122,21,95,78,97,109,101,115, -+ 112,97,99,101,80,97,116,104,46,97,112,112,101,110,100,78, -+ 41,13,114,113,0,0,0,114,112,0,0,0,114,114,0,0, -+ 0,114,115,0,0,0,114,186,0,0,0,114,239,0,0,0, -+ 114,234,0,0,0,114,241,0,0,0,114,243,0,0,0,114, -+ 244,0,0,0,114,245,0,0,0,114,247,0,0,0,114,164, -+ 0,0,0,114,5,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,231,0,0,0,166,3,0,0, -+ 115,20,0,0,0,12,5,6,2,12,6,12,10,12,4,12, -+ 13,12,3,12,3,12,3,12,3,114,231,0,0,0,99,0, -+ 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,64, -+ 0,0,0,115,118,0,0,0,101,0,0,90,1,0,100,0, -+ 0,90,2,0,100,1,0,100,2,0,132,0,0,90,3,0, -+ 101,4,0,100,3,0,100,4,0,132,0,0,131,1,0,90, -+ 5,0,100,5,0,100,6,0,132,0,0,90,6,0,100,7, -+ 0,100,8,0,132,0,0,90,7,0,100,9,0,100,10,0, -+ 132,0,0,90,8,0,100,11,0,100,12,0,132,0,0,90, -+ 9,0,100,13,0,100,14,0,132,0,0,90,10,0,100,15, -+ 0,100,16,0,132,0,0,90,11,0,100,17,0,83,41,18, -+ 218,16,95,78,97,109,101,115,112,97,99,101,76,111,97,100, -+ 101,114,99,4,0,0,0,0,0,0,0,4,0,0,0,4, -+ 0,0,0,67,0,0,0,115,25,0,0,0,116,0,0,124, -+ 1,0,124,2,0,124,3,0,131,3,0,124,0,0,95,1, -+ 0,100,0,0,83,41,1,78,41,2,114,231,0,0,0,114, -+ 233,0,0,0,41,4,114,109,0,0,0,114,107,0,0,0, -+ 114,36,0,0,0,114,237,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,186,0,0,0,224,3, - 0,0,115,2,0,0,0,0,1,122,25,95,78,97,109,101, -- 115,112,97,99,101,76,111,97,100,101,114,46,103,101,116,95, -- 99,111,100,101,99,2,0,0,0,0,0,0,0,2,0,0, -- 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, -- 0,83,41,2,122,42,85,115,101,32,100,101,102,97,117,108, -- 116,32,115,101,109,97,110,116,105,99,115,32,102,111,114,32, -- 109,111,100,117,108,101,32,99,114,101,97,116,105,111,110,46, -- 78,114,4,0,0,0,41,2,114,108,0,0,0,114,164,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,186,0,0,0,245,3,0,0,115,0,0,0,0,122, -- 30,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, -- 114,46,99,114,101,97,116,101,95,109,111,100,117,108,101,99, +- 0,0,114,205,0,0,0,15,7,0,0,115,2,0,0,0, +- 0,7,122,28,95,78,97,109,101,115,112,97,99,101,76,111, +- 97,100,101,114,46,109,111,100,117,108,101,95,114,101,112,114, +- 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, +- 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, +- 78,84,114,4,0,0,0,41,2,114,71,0,0,0,114,158, +- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,114,219,0,0,0,24,7,0,0,115,2,0,0,0, +- 0,1,122,27,95,78,97,109,101,115,112,97,99,101,76,111, +- 97,100,101,114,46,105,115,95,112,97,99,107,97,103,101,99, - 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, -- 67,0,0,0,115,4,0,0,0,100,0,0,83,41,1,78, -- 114,4,0,0,0,41,2,114,108,0,0,0,114,190,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 114,191,0,0,0,248,3,0,0,115,2,0,0,0,0,1, -- 122,28,95,78,97,109,101,115,112,97,99,101,76,111,97,100, -- 101,114,46,101,120,101,99,95,109,111,100,117,108,101,99,2, -- 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,67, -- 0,0,0,115,32,0,0,0,116,0,0,100,1,0,124,0, -- 0,106,1,0,131,2,0,1,116,2,0,106,3,0,124,0, -- 0,124,1,0,131,2,0,83,41,2,122,98,76,111,97,100, -- 32,97,32,110,97,109,101,115,112,97,99,101,32,109,111,100, -- 117,108,101,46,10,10,32,32,32,32,32,32,32,32,84,104, -- 105,115,32,109,101,116,104,111,100,32,105,115,32,100,101,112, -- 114,101,99,97,116,101,100,46,32,32,85,115,101,32,101,120, -- 101,99,95,109,111,100,117,108,101,40,41,32,105,110,115,116, -- 101,97,100,46,10,10,32,32,32,32,32,32,32,32,122,38, -- 110,97,109,101,115,112,97,99,101,32,109,111,100,117,108,101, -- 32,108,111,97,100,101,100,32,119,105,116,104,32,112,97,116, -- 104,32,123,33,114,125,41,4,114,105,0,0,0,114,232,0, -- 0,0,114,121,0,0,0,114,192,0,0,0,41,2,114,108, -- 0,0,0,114,126,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,193,0,0,0,251,3,0,0, -- 115,4,0,0,0,0,7,16,1,122,28,95,78,97,109,101, -- 115,112,97,99,101,76,111,97,100,101,114,46,108,111,97,100, -- 95,109,111,100,117,108,101,78,41,12,114,112,0,0,0,114, -- 111,0,0,0,114,113,0,0,0,114,185,0,0,0,114,183, -- 0,0,0,114,248,0,0,0,114,159,0,0,0,114,202,0, -- 0,0,114,187,0,0,0,114,186,0,0,0,114,191,0,0, -- 0,114,193,0,0,0,114,4,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,114,247,0,0,0,223, -- 3,0,0,115,16,0,0,0,12,1,12,3,18,9,12,3, -- 12,3,12,3,12,3,12,3,114,247,0,0,0,99,0,0, -- 0,0,0,0,0,0,0,0,0,0,5,0,0,0,64,0, -- 0,0,115,160,0,0,0,101,0,0,90,1,0,100,0,0, -- 90,2,0,100,1,0,90,3,0,101,4,0,100,2,0,100, -- 3,0,132,0,0,131,1,0,90,5,0,101,4,0,100,4, -- 0,100,5,0,132,0,0,131,1,0,90,6,0,101,4,0, -- 100,6,0,100,7,0,132,0,0,131,1,0,90,7,0,101, -- 4,0,100,8,0,100,9,0,132,0,0,131,1,0,90,8, -- 0,101,4,0,100,10,0,100,11,0,100,12,0,132,1,0, -- 131,1,0,90,9,0,101,4,0,100,10,0,100,10,0,100, -- 13,0,100,14,0,132,2,0,131,1,0,90,10,0,101,4, -- 0,100,10,0,100,15,0,100,16,0,132,1,0,131,1,0, -- 90,11,0,100,10,0,83,41,17,218,10,80,97,116,104,70, -- 105,110,100,101,114,122,62,77,101,116,97,32,112,97,116,104, -- 32,102,105,110,100,101,114,32,102,111,114,32,115,121,115,46, -- 112,97,116,104,32,97,110,100,32,112,97,99,107,97,103,101, -- 32,95,95,112,97,116,104,95,95,32,97,116,116,114,105,98, -- 117,116,101,115,46,99,1,0,0,0,0,0,0,0,2,0, -- 0,0,4,0,0,0,67,0,0,0,115,55,0,0,0,120, -- 48,0,116,0,0,106,1,0,106,2,0,131,0,0,68,93, -- 31,0,125,1,0,116,3,0,124,1,0,100,1,0,131,2, -- 0,114,16,0,124,1,0,106,4,0,131,0,0,1,113,16, -- 0,87,100,2,0,83,41,3,122,125,67,97,108,108,32,116, -- 104,101,32,105,110,118,97,108,105,100,97,116,101,95,99,97, -- 99,104,101,115,40,41,32,109,101,116,104,111,100,32,111,110, -- 32,97,108,108,32,112,97,116,104,32,101,110,116,114,121,32, -- 102,105,110,100,101,114,115,10,32,32,32,32,32,32,32,32, -- 115,116,111,114,101,100,32,105,110,32,115,121,115,46,112,97, -- 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104, -- 101,115,32,40,119,104,101,114,101,32,105,109,112,108,101,109, -- 101,110,116,101,100,41,46,218,17,105,110,118,97,108,105,100, -- 97,116,101,95,99,97,99,104,101,115,78,41,5,114,7,0, -- 0,0,218,19,112,97,116,104,95,105,109,112,111,114,116,101, -- 114,95,99,97,99,104,101,218,6,118,97,108,117,101,115,114, -- 115,0,0,0,114,250,0,0,0,41,2,114,170,0,0,0, -- 218,6,102,105,110,100,101,114,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,250,0,0,0,12,4,0,0, -- 115,6,0,0,0,0,4,22,1,15,1,122,28,80,97,116, -- 104,70,105,110,100,101,114,46,105,110,118,97,108,105,100,97, -- 116,101,95,99,97,99,104,101,115,99,2,0,0,0,0,0, -- 0,0,3,0,0,0,12,0,0,0,67,0,0,0,115,107, -- 0,0,0,116,0,0,106,1,0,100,1,0,107,9,0,114, -- 41,0,116,0,0,106,1,0,12,114,41,0,116,2,0,106, -- 3,0,100,2,0,116,4,0,131,2,0,1,120,59,0,116, -- 0,0,106,1,0,68,93,44,0,125,2,0,121,14,0,124, -- 2,0,124,1,0,131,1,0,83,87,113,51,0,4,116,5, -- 0,107,10,0,114,94,0,1,1,1,119,51,0,89,113,51, -- 0,88,113,51,0,87,100,1,0,83,100,1,0,83,41,3, -- 122,113,83,101,97,114,99,104,32,115,101,113,117,101,110,99, -- 101,32,111,102,32,104,111,111,107,115,32,102,111,114,32,97, -- 32,102,105,110,100,101,114,32,102,111,114,32,39,112,97,116, -- 104,39,46,10,10,32,32,32,32,32,32,32,32,73,102,32, -- 39,104,111,111,107,115,39,32,105,115,32,102,97,108,115,101, -- 32,116,104,101,110,32,117,115,101,32,115,121,115,46,112,97, -- 116,104,95,104,111,111,107,115,46,10,10,32,32,32,32,32, -- 32,32,32,78,122,23,115,121,115,46,112,97,116,104,95,104, -- 111,111,107,115,32,105,115,32,101,109,112,116,121,41,6,114, -- 7,0,0,0,218,10,112,97,116,104,95,104,111,111,107,115, -- 114,60,0,0,0,114,61,0,0,0,114,125,0,0,0,114, -- 107,0,0,0,41,3,114,170,0,0,0,114,35,0,0,0, -- 90,4,104,111,111,107,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,11,95,112,97,116,104,95,104,111,111, -- 107,115,20,4,0,0,115,16,0,0,0,0,7,25,1,16, -- 1,16,1,3,1,14,1,13,1,12,2,122,22,80,97,116, -- 104,70,105,110,100,101,114,46,95,112,97,116,104,95,104,111, -- 111,107,115,99,2,0,0,0,0,0,0,0,3,0,0,0, -- 19,0,0,0,67,0,0,0,115,123,0,0,0,124,1,0, -- 100,1,0,107,2,0,114,53,0,121,16,0,116,0,0,106, -- 1,0,131,0,0,125,1,0,87,110,22,0,4,116,2,0, -- 107,10,0,114,52,0,1,1,1,100,2,0,83,89,110,1, -- 0,88,121,17,0,116,3,0,106,4,0,124,1,0,25,125, -- 2,0,87,110,46,0,4,116,5,0,107,10,0,114,118,0, -- 1,1,1,124,0,0,106,6,0,124,1,0,131,1,0,125, -- 2,0,124,2,0,116,3,0,106,4,0,124,1,0,60,89, -- 110,1,0,88,124,2,0,83,41,3,122,210,71,101,116,32, -- 116,104,101,32,102,105,110,100,101,114,32,102,111,114,32,116, -- 104,101,32,112,97,116,104,32,101,110,116,114,121,32,102,114, -- 111,109,32,115,121,115,46,112,97,116,104,95,105,109,112,111, -- 114,116,101,114,95,99,97,99,104,101,46,10,10,32,32,32, -- 32,32,32,32,32,73,102,32,116,104,101,32,112,97,116,104, -- 32,101,110,116,114,121,32,105,115,32,110,111,116,32,105,110, -- 32,116,104,101,32,99,97,99,104,101,44,32,102,105,110,100, -- 32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101, -- 32,102,105,110,100,101,114,10,32,32,32,32,32,32,32,32, -- 97,110,100,32,99,97,99,104,101,32,105,116,46,32,73,102, -- 32,110,111,32,102,105,110,100,101,114,32,105,115,32,97,118, -- 97,105,108,97,98,108,101,44,32,115,116,111,114,101,32,78, -- 111,110,101,46,10,10,32,32,32,32,32,32,32,32,114,30, -- 0,0,0,78,41,7,114,3,0,0,0,114,45,0,0,0, -- 218,17,70,105,108,101,78,111,116,70,111,117,110,100,69,114, -- 114,111,114,114,7,0,0,0,114,251,0,0,0,114,137,0, -- 0,0,114,255,0,0,0,41,3,114,170,0,0,0,114,35, -- 0,0,0,114,253,0,0,0,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,218,20,95,112,97,116,104,95,105, -- 109,112,111,114,116,101,114,95,99,97,99,104,101,37,4,0, -- 0,115,22,0,0,0,0,8,12,1,3,1,16,1,13,3, -- 9,1,3,1,17,1,13,1,15,1,18,1,122,31,80,97, +- 67,0,0,0,115,4,0,0,0,100,1,0,83,41,2,78, +- 114,30,0,0,0,114,4,0,0,0,41,2,114,71,0,0, +- 0,114,158,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,114,16,1,0,0,27,7,0,0,115,2, +- 0,0,0,0,1,122,27,95,78,97,109,101,115,112,97,99, +- 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, +- 99,101,99,2,0,0,0,0,0,0,0,2,0,0,0,6, +- 0,0,0,67,0,0,0,115,22,0,0,0,116,0,0,100, +- 1,0,100,2,0,100,3,0,100,4,0,100,5,0,131,3, +- 1,83,41,6,78,114,30,0,0,0,122,8,60,115,116,114, +- 105,110,103,62,114,175,0,0,0,114,42,1,0,0,84,41, +- 1,114,43,1,0,0,41,2,114,71,0,0,0,114,158,0, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,114,15,1,0,0,30,7,0,0,115,2,0,0,0,0, +- 1,122,25,95,78,97,109,101,115,112,97,99,101,76,111,97, +- 100,101,114,46,103,101,116,95,99,111,100,101,99,2,0,0, +- 0,0,0,0,0,2,0,0,0,1,0,0,0,67,0,0, +- 0,115,4,0,0,0,100,0,0,83,41,1,78,114,4,0, +- 0,0,41,2,114,71,0,0,0,114,179,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,1,1, +- 0,0,33,7,0,0,115,2,0,0,0,0,1,122,28,95, +- 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46, +- 101,120,101,99,95,109,111,100,117,108,101,99,2,0,0,0, +- 0,0,0,0,2,0,0,0,3,0,0,0,67,0,0,0, +- 115,29,0,0,0,116,0,0,100,1,0,124,0,0,106,1, +- 0,131,2,0,1,116,2,0,124,0,0,124,1,0,131,2, +- 0,83,41,2,122,98,76,111,97,100,32,97,32,110,97,109, +- 101,115,112,97,99,101,32,109,111,100,117,108,101,46,10,10, +- 32,32,32,32,32,32,32,32,84,104,105,115,32,109,101,116, +- 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, +- 100,46,32,32,85,115,101,32,101,120,101,99,95,109,111,100, +- 117,108,101,40,41,32,105,110,115,116,101,97,100,46,10,10, +- 32,32,32,32,32,32,32,32,122,38,110,97,109,101,115,112, +- 97,99,101,32,109,111,100,117,108,101,32,108,111,97,100,101, +- 100,32,119,105,116,104,32,112,97,116,104,32,123,33,114,125, +- 41,3,114,152,0,0,0,114,253,0,0,0,114,180,0,0, +- 0,41,2,114,71,0,0,0,114,158,0,0,0,114,4,0, +- 0,0,114,4,0,0,0,114,5,0,0,0,114,4,1,0, +- 0,36,7,0,0,115,4,0,0,0,0,7,16,1,122,28, +- 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, +- 46,108,111,97,100,95,109,111,100,117,108,101,78,41,11,114, +- 57,0,0,0,114,56,0,0,0,114,58,0,0,0,114,72, +- 0,0,0,114,18,1,0,0,114,205,0,0,0,114,219,0, +- 0,0,114,16,1,0,0,114,15,1,0,0,114,1,1,0, +- 0,114,4,1,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,251,0,0,0,11, +- 7,0,0,115,14,0,0,0,12,1,12,3,18,9,12,3, +- 12,3,12,3,12,3,114,251,0,0,0,99,0,0,0,0, +- 0,0,0,0,0,0,0,0,5,0,0,0,64,0,0,0, +- 115,160,0,0,0,101,0,0,90,1,0,100,0,0,90,2, +- 0,100,1,0,90,3,0,101,4,0,100,2,0,100,3,0, +- 132,0,0,131,1,0,90,5,0,101,4,0,100,4,0,100, +- 5,0,132,0,0,131,1,0,90,6,0,101,4,0,100,6, +- 0,100,7,0,132,0,0,131,1,0,90,7,0,101,4,0, +- 100,8,0,100,9,0,132,0,0,131,1,0,90,8,0,101, +- 4,0,100,10,0,100,11,0,100,12,0,132,1,0,131,1, +- 0,90,9,0,101,4,0,100,10,0,100,10,0,100,13,0, +- 100,14,0,132,2,0,131,1,0,90,10,0,101,4,0,100, +- 10,0,100,15,0,100,16,0,132,1,0,131,1,0,90,11, +- 0,100,10,0,83,41,17,218,10,80,97,116,104,70,105,110, +- 100,101,114,122,62,77,101,116,97,32,112,97,116,104,32,102, +- 105,110,100,101,114,32,102,111,114,32,115,121,115,46,112,97, +- 116,104,32,97,110,100,32,112,97,99,107,97,103,101,32,95, +- 95,112,97,116,104,95,95,32,97,116,116,114,105,98,117,116, +- 101,115,46,99,1,0,0,0,0,0,0,0,2,0,0,0, +- 4,0,0,0,67,0,0,0,115,58,0,0,0,120,51,0, +- 116,0,0,106,1,0,106,2,0,131,0,0,68,93,34,0, +- 125,1,0,116,3,0,124,1,0,100,1,0,131,2,0,114, +- 16,0,124,1,0,106,4,0,131,0,0,1,113,16,0,113, +- 16,0,87,100,2,0,83,41,3,122,125,67,97,108,108,32, +- 116,104,101,32,105,110,118,97,108,105,100,97,116,101,95,99, +- 97,99,104,101,115,40,41,32,109,101,116,104,111,100,32,111, +- 110,32,97,108,108,32,112,97,116,104,32,101,110,116,114,121, +- 32,102,105,110,100,101,114,115,10,32,32,32,32,32,32,32, +- 32,115,116,111,114,101,100,32,105,110,32,115,121,115,46,112, ++ 0,64,0,0,0,115,160,0,0,0,101,0,0,90,1,0, ++ 100,0,0,90,2,0,100,1,0,90,3,0,101,4,0,100, ++ 2,0,100,3,0,132,0,0,131,1,0,90,5,0,101,4, ++ 0,100,4,0,100,5,0,132,0,0,131,1,0,90,6,0, ++ 101,4,0,100,6,0,100,7,0,132,0,0,131,1,0,90, ++ 7,0,101,4,0,100,8,0,100,9,0,132,0,0,131,1, ++ 0,90,8,0,101,4,0,100,10,0,100,11,0,100,12,0, ++ 132,1,0,131,1,0,90,9,0,101,4,0,100,10,0,100, ++ 10,0,100,13,0,100,14,0,132,2,0,131,1,0,90,10, ++ 0,101,4,0,100,10,0,100,15,0,100,16,0,132,1,0, ++ 131,1,0,90,11,0,100,10,0,83,41,17,218,10,80,97, ++ 116,104,70,105,110,100,101,114,122,62,77,101,116,97,32,112, ++ 97,116,104,32,102,105,110,100,101,114,32,102,111,114,32,115, ++ 121,115,46,112,97,116,104,32,97,110,100,32,112,97,99,107, ++ 97,103,101,32,95,95,112,97,116,104,95,95,32,97,116,116, ++ 114,105,98,117,116,101,115,46,99,1,0,0,0,0,0,0, ++ 0,2,0,0,0,4,0,0,0,67,0,0,0,115,58,0, ++ 0,0,120,51,0,116,0,0,106,1,0,106,2,0,131,0, ++ 0,68,93,34,0,125,1,0,116,3,0,124,1,0,100,1, ++ 0,131,2,0,114,16,0,124,1,0,106,4,0,131,0,0, ++ 1,113,16,0,113,16,0,87,100,2,0,83,41,3,122,125, ++ 67,97,108,108,32,116,104,101,32,105,110,118,97,108,105,100, ++ 97,116,101,95,99,97,99,104,101,115,40,41,32,109,101,116, ++ 104,111,100,32,111,110,32,97,108,108,32,112,97,116,104,32, ++ 101,110,116,114,121,32,102,105,110,100,101,114,115,10,32,32, ++ 32,32,32,32,32,32,115,116,111,114,101,100,32,105,110,32, ++ 115,121,115,46,112,97,116,104,95,105,109,112,111,114,116,101, ++ 114,95,99,97,99,104,101,115,32,40,119,104,101,114,101,32, ++ 105,109,112,108,101,109,101,110,116,101,100,41,46,218,17,105, ++ 110,118,97,108,105,100,97,116,101,95,99,97,99,104,101,115, ++ 78,41,5,114,8,0,0,0,218,19,112,97,116,104,95,105, ++ 109,112,111,114,116,101,114,95,99,97,99,104,101,218,6,118, ++ 97,108,117,101,115,114,61,0,0,0,114,75,1,0,0,41, ++ 2,114,12,1,0,0,218,6,102,105,110,100,101,114,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,75,1, ++ 0,0,53,7,0,0,115,6,0,0,0,0,4,22,1,15, ++ 1,122,28,80,97,116,104,70,105,110,100,101,114,46,105,110, ++ 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,99, ++ 2,0,0,0,0,0,0,0,3,0,0,0,12,0,0,0, ++ 67,0,0,0,115,94,0,0,0,116,0,0,106,1,0,115, ++ 28,0,116,2,0,106,3,0,100,1,0,116,4,0,131,2, ++ 0,1,110,0,0,120,59,0,116,0,0,106,1,0,68,93, ++ 44,0,125,2,0,121,14,0,124,2,0,124,1,0,131,1, ++ 0,83,87,113,38,0,4,116,5,0,107,10,0,114,81,0, ++ 1,1,1,119,38,0,89,113,38,0,88,113,38,0,87,100, ++ 2,0,83,100,2,0,83,41,3,122,113,83,101,97,114,99, ++ 104,32,115,101,113,117,101,110,99,101,32,111,102,32,104,111, ++ 111,107,115,32,102,111,114,32,97,32,102,105,110,100,101,114, ++ 32,102,111,114,32,39,112,97,116,104,39,46,10,10,32,32, ++ 32,32,32,32,32,32,73,102,32,39,104,111,111,107,115,39, ++ 32,105,115,32,102,97,108,115,101,32,116,104,101,110,32,117, ++ 115,101,32,115,121,115,46,112,97,116,104,95,104,111,111,107, ++ 115,46,10,10,32,32,32,32,32,32,32,32,122,23,115,121, ++ 115,46,112,97,116,104,95,104,111,111,107,115,32,105,115,32, ++ 101,109,112,116,121,78,41,6,114,8,0,0,0,218,10,112, ++ 97,116,104,95,104,111,111,107,115,114,167,0,0,0,114,168, ++ 0,0,0,114,169,0,0,0,114,154,0,0,0,41,3,114, ++ 12,1,0,0,114,36,0,0,0,90,4,104,111,111,107,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,11, ++ 95,112,97,116,104,95,104,111,111,107,115,61,7,0,0,115, ++ 16,0,0,0,0,7,9,1,19,1,16,1,3,1,14,1, ++ 13,1,12,2,122,22,80,97,116,104,70,105,110,100,101,114, ++ 46,95,112,97,116,104,95,104,111,111,107,115,99,2,0,0, ++ 0,0,0,0,0,3,0,0,0,11,0,0,0,67,0,0, ++ 0,115,97,0,0,0,124,1,0,100,1,0,107,2,0,114, ++ 27,0,116,0,0,106,1,0,131,0,0,125,1,0,110,0, ++ 0,121,17,0,116,2,0,106,3,0,124,1,0,25,125,2, ++ 0,87,110,46,0,4,116,4,0,107,10,0,114,92,0,1, ++ 1,1,124,0,0,106,5,0,124,1,0,131,1,0,125,2, ++ 0,124,2,0,116,2,0,106,3,0,124,1,0,60,89,110, ++ 1,0,88,124,2,0,83,41,2,122,210,71,101,116,32,116, ++ 104,101,32,102,105,110,100,101,114,32,102,111,114,32,116,104, ++ 101,32,112,97,116,104,32,101,110,116,114,121,32,102,114,111, ++ 109,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, ++ 116,101,114,95,99,97,99,104,101,46,10,10,32,32,32,32, ++ 32,32,32,32,73,102,32,116,104,101,32,112,97,116,104,32, ++ 101,110,116,114,121,32,105,115,32,110,111,116,32,105,110,32, ++ 116,104,101,32,99,97,99,104,101,44,32,102,105,110,100,32, ++ 116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32, ++ 102,105,110,100,101,114,10,32,32,32,32,32,32,32,32,97, ++ 110,100,32,99,97,99,104,101,32,105,116,46,32,73,102,32, ++ 110,111,32,102,105,110,100,101,114,32,105,115,32,97,118,97, ++ 105,108,97,98,108,101,44,32,115,116,111,114,101,32,78,111, ++ 110,101,46,10,10,32,32,32,32,32,32,32,32,114,31,0, ++ 0,0,41,6,114,4,0,0,0,114,46,0,0,0,114,8, ++ 0,0,0,114,76,1,0,0,114,80,0,0,0,114,80,1, ++ 0,0,41,3,114,12,1,0,0,114,36,0,0,0,114,78, ++ 1,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,218,20,95,112,97,116,104,95,105,109,112,111,114,116, ++ 101,114,95,99,97,99,104,101,78,7,0,0,115,16,0,0, ++ 0,0,8,12,1,15,1,3,1,17,1,13,1,15,1,18, ++ 1,122,31,80,97,116,104,70,105,110,100,101,114,46,95,112, + 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, +- 104,101,115,32,40,119,104,101,114,101,32,105,109,112,108,101, +- 109,101,110,116,101,100,41,46,218,17,105,110,118,97,108,105, +- 100,97,116,101,95,99,97,99,104,101,115,78,41,5,114,7, +- 0,0,0,218,19,112,97,116,104,95,105,109,112,111,114,116, +- 101,114,95,99,97,99,104,101,218,6,118,97,108,117,101,115, +- 114,60,0,0,0,114,74,1,0,0,41,2,114,11,1,0, +- 0,218,6,102,105,110,100,101,114,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,74,1,0,0,53,7,0, +- 0,115,6,0,0,0,0,4,22,1,15,1,122,28,80,97, +- 116,104,70,105,110,100,101,114,46,105,110,118,97,108,105,100, +- 97,116,101,95,99,97,99,104,101,115,99,2,0,0,0,0, +- 0,0,0,3,0,0,0,12,0,0,0,67,0,0,0,115, +- 94,0,0,0,116,0,0,106,1,0,115,28,0,116,2,0, +- 106,3,0,100,1,0,116,4,0,131,2,0,1,110,0,0, +- 120,59,0,116,0,0,106,1,0,68,93,44,0,125,2,0, +- 121,14,0,124,2,0,124,1,0,131,1,0,83,87,113,38, +- 0,4,116,5,0,107,10,0,114,81,0,1,1,1,119,38, +- 0,89,113,38,0,88,113,38,0,87,100,2,0,83,100,2, +- 0,83,41,3,122,113,83,101,97,114,99,104,32,115,101,113, +- 117,101,110,99,101,32,111,102,32,104,111,111,107,115,32,102, +- 111,114,32,97,32,102,105,110,100,101,114,32,102,111,114,32, +- 39,112,97,116,104,39,46,10,10,32,32,32,32,32,32,32, +- 32,73,102,32,39,104,111,111,107,115,39,32,105,115,32,102, +- 97,108,115,101,32,116,104,101,110,32,117,115,101,32,115,121, +- 115,46,112,97,116,104,95,104,111,111,107,115,46,10,10,32, +- 32,32,32,32,32,32,32,122,23,115,121,115,46,112,97,116, +- 104,95,104,111,111,107,115,32,105,115,32,101,109,112,116,121, +- 78,41,6,114,7,0,0,0,218,10,112,97,116,104,95,104, +- 111,111,107,115,114,166,0,0,0,114,167,0,0,0,114,168, +- 0,0,0,114,153,0,0,0,41,3,114,11,1,0,0,114, +- 35,0,0,0,90,4,104,111,111,107,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,11,95,112,97,116,104, +- 95,104,111,111,107,115,61,7,0,0,115,16,0,0,0,0, +- 7,9,1,19,1,16,1,3,1,14,1,13,1,12,2,122, +- 22,80,97,116,104,70,105,110,100,101,114,46,95,112,97,116, +- 104,95,104,111,111,107,115,99,2,0,0,0,0,0,0,0, +- 3,0,0,0,11,0,0,0,67,0,0,0,115,97,0,0, +- 0,124,1,0,100,1,0,107,2,0,114,27,0,116,0,0, +- 106,1,0,131,0,0,125,1,0,110,0,0,121,17,0,116, +- 2,0,106,3,0,124,1,0,25,125,2,0,87,110,46,0, +- 4,116,4,0,107,10,0,114,92,0,1,1,1,124,0,0, +- 106,5,0,124,1,0,131,1,0,125,2,0,124,2,0,116, +- 2,0,106,3,0,124,1,0,60,89,110,1,0,88,124,2, +- 0,83,41,2,122,210,71,101,116,32,116,104,101,32,102,105, +- 110,100,101,114,32,102,111,114,32,116,104,101,32,112,97,116, +- 104,32,101,110,116,114,121,32,102,114,111,109,32,115,121,115, +- 46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,99, +- 97,99,104,101,46,10,10,32,32,32,32,32,32,32,32,73, +- 102,32,116,104,101,32,112,97,116,104,32,101,110,116,114,121, +- 32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99, +- 97,99,104,101,44,32,102,105,110,100,32,116,104,101,32,97, +- 112,112,114,111,112,114,105,97,116,101,32,102,105,110,100,101, +- 114,10,32,32,32,32,32,32,32,32,97,110,100,32,99,97, +- 99,104,101,32,105,116,46,32,73,102,32,110,111,32,102,105, +- 110,100,101,114,32,105,115,32,97,118,97,105,108,97,98,108, +- 101,44,32,115,116,111,114,101,32,78,111,110,101,46,10,10, +- 32,32,32,32,32,32,32,32,114,30,0,0,0,41,6,114, +- 3,0,0,0,114,45,0,0,0,114,7,0,0,0,114,75, +- 1,0,0,114,79,0,0,0,114,79,1,0,0,41,3,114, +- 11,1,0,0,114,35,0,0,0,114,77,1,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,20,95, +- 112,97,116,104,95,105,109,112,111,114,116,101,114,95,99,97, +- 99,104,101,78,7,0,0,115,16,0,0,0,0,8,12,1, +- 15,1,3,1,17,1,13,1,15,1,18,1,122,31,80,97, - 116,104,70,105,110,100,101,114,46,95,112,97,116,104,95,105, - 109,112,111,114,116,101,114,95,99,97,99,104,101,99,3,0, - 0,0,0,0,0,0,6,0,0,0,3,0,0,0,67,0, -- 0,0,115,119,0,0,0,116,0,0,124,2,0,100,1,0, +- 0,0,115,113,0,0,0,116,0,0,124,2,0,100,1,0, - 131,2,0,114,39,0,124,2,0,106,1,0,124,1,0,131, - 1,0,92,2,0,125,3,0,125,4,0,110,21,0,124,2, - 0,106,2,0,124,1,0,131,1,0,125,3,0,103,0,0, -- 125,4,0,124,3,0,100,0,0,107,9,0,114,88,0,116, -- 3,0,106,4,0,124,1,0,124,3,0,131,2,0,83,116, -- 3,0,106,5,0,124,1,0,100,0,0,131,2,0,125,5, -- 0,124,4,0,124,5,0,95,6,0,124,5,0,83,41,2, -- 78,114,124,0,0,0,41,7,114,115,0,0,0,114,124,0, -- 0,0,114,182,0,0,0,114,121,0,0,0,114,179,0,0, -- 0,114,160,0,0,0,114,156,0,0,0,41,6,114,170,0, -- 0,0,114,126,0,0,0,114,253,0,0,0,114,127,0,0, -- 0,114,128,0,0,0,114,164,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,5,0,0,0,218,16,95,108,101,103, -- 97,99,121,95,103,101,116,95,115,112,101,99,59,4,0,0, -- 115,18,0,0,0,0,4,15,1,24,2,15,1,6,1,12, -- 1,16,1,18,1,9,1,122,27,80,97,116,104,70,105,110, -- 100,101,114,46,95,108,101,103,97,99,121,95,103,101,116,95, -- 115,112,101,99,78,99,4,0,0,0,0,0,0,0,9,0, -- 0,0,5,0,0,0,67,0,0,0,115,243,0,0,0,103, -- 0,0,125,4,0,120,230,0,124,2,0,68,93,191,0,125, -- 5,0,116,0,0,124,5,0,116,1,0,116,2,0,102,2, -- 0,131,2,0,115,43,0,113,13,0,124,0,0,106,3,0, -- 124,5,0,131,1,0,125,6,0,124,6,0,100,1,0,107, -- 9,0,114,13,0,116,4,0,124,6,0,100,2,0,131,2, -- 0,114,106,0,124,6,0,106,5,0,124,1,0,124,3,0, -- 131,2,0,125,7,0,110,18,0,124,0,0,106,6,0,124, -- 1,0,124,6,0,131,2,0,125,7,0,124,7,0,100,1, -- 0,107,8,0,114,139,0,113,13,0,124,7,0,106,7,0, -- 100,1,0,107,9,0,114,158,0,124,7,0,83,124,7,0, -- 106,8,0,125,8,0,124,8,0,100,1,0,107,8,0,114, -- 191,0,116,9,0,100,3,0,131,1,0,130,1,0,124,4, -- 0,106,10,0,124,8,0,131,1,0,1,113,13,0,87,116, -- 11,0,106,12,0,124,1,0,100,1,0,131,2,0,125,7, -- 0,124,4,0,124,7,0,95,8,0,124,7,0,83,100,1, -- 0,83,41,4,122,63,70,105,110,100,32,116,104,101,32,108, -- 111,97,100,101,114,32,111,114,32,110,97,109,101,115,112,97, -- 99,101,95,112,97,116,104,32,102,111,114,32,116,104,105,115, -- 32,109,111,100,117,108,101,47,112,97,99,107,97,103,101,32, -- 110,97,109,101,46,78,114,181,0,0,0,122,19,115,112,101, -- 99,32,109,105,115,115,105,110,103,32,108,111,97,100,101,114, -- 41,13,114,143,0,0,0,114,69,0,0,0,218,5,98,121, -- 116,101,115,114,1,1,0,0,114,115,0,0,0,114,181,0, -- 0,0,114,2,1,0,0,114,127,0,0,0,114,156,0,0, -- 0,114,107,0,0,0,114,149,0,0,0,114,121,0,0,0, -- 114,160,0,0,0,41,9,114,170,0,0,0,114,126,0,0, -- 0,114,35,0,0,0,114,180,0,0,0,218,14,110,97,109, -- 101,115,112,97,99,101,95,112,97,116,104,90,5,101,110,116, -- 114,121,114,253,0,0,0,114,164,0,0,0,114,128,0,0, +- 125,4,0,124,3,0,100,0,0,107,9,0,114,85,0,116, +- 3,0,124,1,0,124,3,0,131,2,0,83,116,4,0,124, +- 1,0,100,0,0,131,2,0,125,5,0,124,4,0,124,5, +- 0,95,5,0,124,5,0,83,41,2,78,114,165,0,0,0, +- 41,6,114,60,0,0,0,114,165,0,0,0,114,14,1,0, +- 0,114,173,0,0,0,114,216,0,0,0,114,220,0,0,0, +- 41,6,114,11,1,0,0,114,158,0,0,0,114,77,1,0, +- 0,114,169,0,0,0,114,170,0,0,0,114,177,0,0,0, +- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, +- 16,95,108,101,103,97,99,121,95,103,101,116,95,115,112,101, +- 99,95,7,0,0,115,18,0,0,0,0,4,15,1,24,2, +- 15,1,6,1,12,1,13,1,15,1,9,1,122,27,80,97, +- 116,104,70,105,110,100,101,114,46,95,108,101,103,97,99,121, +- 95,103,101,116,95,115,112,101,99,78,99,4,0,0,0,0, +- 0,0,0,9,0,0,0,5,0,0,0,67,0,0,0,115, +- 252,0,0,0,103,0,0,125,4,0,120,239,0,124,2,0, +- 68,93,203,0,125,5,0,116,0,0,124,5,0,116,1,0, +- 116,2,0,102,2,0,131,2,0,115,46,0,113,13,0,110, +- 0,0,124,0,0,106,3,0,124,5,0,131,1,0,125,6, +- 0,124,6,0,100,1,0,107,9,0,114,13,0,116,4,0, +- 124,6,0,100,2,0,131,2,0,114,109,0,124,6,0,106, +- 5,0,124,1,0,124,3,0,131,2,0,125,7,0,110,18, +- 0,124,0,0,106,6,0,124,1,0,124,6,0,131,2,0, +- 125,7,0,124,7,0,100,1,0,107,8,0,114,145,0,113, +- 13,0,110,0,0,124,7,0,106,7,0,100,1,0,107,9, +- 0,114,164,0,124,7,0,83,124,7,0,106,8,0,125,8, +- 0,124,8,0,100,1,0,107,8,0,114,200,0,116,9,0, +- 100,3,0,131,1,0,130,1,0,110,0,0,124,4,0,106, +- 10,0,124,8,0,131,1,0,1,113,13,0,113,13,0,87, +- 116,11,0,124,1,0,100,1,0,131,2,0,125,7,0,124, +- 4,0,124,7,0,95,8,0,124,7,0,83,100,1,0,83, +- 41,4,122,63,70,105,110,100,32,116,104,101,32,108,111,97, +- 100,101,114,32,111,114,32,110,97,109,101,115,112,97,99,101, +- 95,112,97,116,104,32,102,111,114,32,116,104,105,115,32,109, +- 111,100,117,108,101,47,112,97,99,107,97,103,101,32,110,97, +- 109,101,46,78,114,13,1,0,0,122,19,115,112,101,99,32, +- 109,105,115,115,105,110,103,32,108,111,97,100,101,114,41,12, +- 114,192,0,0,0,218,3,115,116,114,218,5,98,121,116,101, +- 115,114,80,1,0,0,114,60,0,0,0,114,13,1,0,0, +- 114,81,1,0,0,114,169,0,0,0,114,220,0,0,0,114, +- 153,0,0,0,114,197,0,0,0,114,216,0,0,0,41,9, +- 114,11,1,0,0,114,158,0,0,0,114,35,0,0,0,114, +- 12,1,0,0,218,14,110,97,109,101,115,112,97,99,101,95, +- 112,97,116,104,90,5,101,110,116,114,121,114,77,1,0,0, +- 114,177,0,0,0,114,170,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,218,9,95,103,101,116,95, +- 115,112,101,99,110,7,0,0,115,40,0,0,0,0,5,6, +- 1,13,1,21,1,6,1,15,1,12,1,15,1,21,2,18, +- 1,12,1,6,1,15,1,4,1,9,1,12,1,15,5,20, +- 2,15,1,9,1,122,20,80,97,116,104,70,105,110,100,101, +- 114,46,95,103,101,116,95,115,112,101,99,99,4,0,0,0, +- 0,0,0,0,6,0,0,0,4,0,0,0,67,0,0,0, +- 115,143,0,0,0,124,2,0,100,1,0,107,8,0,114,24, +- 0,116,0,0,106,1,0,125,2,0,110,0,0,124,0,0, +- 106,2,0,124,1,0,124,2,0,124,3,0,131,3,0,125, +- 4,0,124,4,0,100,1,0,107,8,0,114,61,0,100,1, +- 0,83,124,4,0,106,3,0,100,1,0,107,8,0,114,135, +- 0,124,4,0,106,4,0,125,5,0,124,5,0,114,128,0, +- 100,2,0,124,4,0,95,5,0,116,6,0,124,1,0,124, +- 5,0,124,0,0,106,2,0,131,3,0,124,4,0,95,4, +- 0,124,4,0,83,100,1,0,83,110,4,0,124,4,0,83, +- 100,1,0,83,41,3,122,98,102,105,110,100,32,116,104,101, +- 32,109,111,100,117,108,101,32,111,110,32,115,121,115,46,112, +- 97,116,104,32,111,114,32,39,112,97,116,104,39,32,98,97, +- 115,101,100,32,111,110,32,115,121,115,46,112,97,116,104,95, +- 104,111,111,107,115,32,97,110,100,10,32,32,32,32,32,32, +- 32,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, +- 116,101,114,95,99,97,99,104,101,46,78,90,9,110,97,109, +- 101,115,112,97,99,101,41,7,114,7,0,0,0,114,35,0, +- 0,0,114,85,1,0,0,114,169,0,0,0,114,220,0,0, +- 0,114,217,0,0,0,114,60,1,0,0,41,6,114,11,1, +- 0,0,114,158,0,0,0,114,35,0,0,0,114,12,1,0, +- 0,114,177,0,0,0,114,84,1,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,13,1,0,0,142, +- 7,0,0,115,26,0,0,0,0,4,12,1,12,1,21,1, +- 12,1,4,1,15,1,9,1,6,3,9,1,24,1,4,2, +- 7,2,122,20,80,97,116,104,70,105,110,100,101,114,46,102, +- 105,110,100,95,115,112,101,99,99,3,0,0,0,0,0,0, +- 0,4,0,0,0,3,0,0,0,67,0,0,0,115,41,0, +- 0,0,124,0,0,106,0,0,124,1,0,124,2,0,131,2, +- 0,125,3,0,124,3,0,100,1,0,107,8,0,114,34,0, +- 100,1,0,83,124,3,0,106,1,0,83,41,2,122,170,102, +- 105,110,100,32,116,104,101,32,109,111,100,117,108,101,32,111, +- 110,32,115,121,115,46,112,97,116,104,32,111,114,32,39,112, +- 97,116,104,39,32,98,97,115,101,100,32,111,110,32,115,121, +- 115,46,112,97,116,104,95,104,111,111,107,115,32,97,110,100, +- 10,32,32,32,32,32,32,32,32,115,121,115,46,112,97,116, +- 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101, +- 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, +- 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, +- 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, +- 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, +- 10,32,32,32,32,32,32,32,32,78,41,2,114,13,1,0, +- 0,114,169,0,0,0,41,4,114,11,1,0,0,114,158,0, +- 0,0,114,35,0,0,0,114,177,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,14,1,0,0, +- 164,7,0,0,115,8,0,0,0,0,8,18,1,12,1,4, +- 1,122,22,80,97,116,104,70,105,110,100,101,114,46,102,105, +- 110,100,95,109,111,100,117,108,101,41,12,114,57,0,0,0, +- 114,56,0,0,0,114,58,0,0,0,114,59,0,0,0,114, +- 18,1,0,0,114,74,1,0,0,114,79,1,0,0,114,80, +- 1,0,0,114,81,1,0,0,114,85,1,0,0,114,13,1, +- 0,0,114,14,1,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,73,1,0,0, +- 49,7,0,0,115,22,0,0,0,12,2,6,2,18,8,18, +- 17,18,17,18,15,3,1,18,31,3,1,21,21,3,1,114, +- 73,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0, +- 0,3,0,0,0,64,0,0,0,115,133,0,0,0,101,0, +- 0,90,1,0,100,0,0,90,2,0,100,1,0,90,3,0, +- 100,2,0,100,3,0,132,0,0,90,4,0,100,4,0,100, +- 5,0,132,0,0,90,5,0,101,6,0,90,7,0,100,6, +- 0,100,7,0,132,0,0,90,8,0,100,8,0,100,9,0, +- 132,0,0,90,9,0,100,10,0,100,11,0,100,12,0,132, +- 1,0,90,10,0,100,13,0,100,14,0,132,0,0,90,11, +- 0,101,12,0,100,15,0,100,16,0,132,0,0,131,1,0, +- 90,13,0,100,17,0,100,18,0,132,0,0,90,14,0,100, +- 10,0,83,41,19,218,10,70,105,108,101,70,105,110,100,101, +- 114,122,172,70,105,108,101,45,98,97,115,101,100,32,102,105, +- 110,100,101,114,46,10,10,32,32,32,32,73,110,116,101,114, +- 97,99,116,105,111,110,115,32,119,105,116,104,32,116,104,101, +- 32,102,105,108,101,32,115,121,115,116,101,109,32,97,114,101, +- 32,99,97,99,104,101,100,32,102,111,114,32,112,101,114,102, +- 111,114,109,97,110,99,101,44,32,98,101,105,110,103,10,32, +- 32,32,32,114,101,102,114,101,115,104,101,100,32,119,104,101, +- 110,32,116,104,101,32,100,105,114,101,99,116,111,114,121,32, +- 116,104,101,32,102,105,110,100,101,114,32,105,115,32,104,97, +- 110,100,108,105,110,103,32,104,97,115,32,98,101,101,110,32, +- 109,111,100,105,102,105,101,100,46,10,10,32,32,32,32,99, +- 2,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0, +- 7,0,0,0,115,122,0,0,0,103,0,0,125,3,0,120, +- 52,0,124,2,0,68,93,44,0,92,2,0,137,0,0,125, +- 4,0,124,3,0,106,0,0,135,0,0,102,1,0,100,1, +- 0,100,2,0,134,0,0,124,4,0,68,131,1,0,131,1, +- 0,1,113,13,0,87,124,3,0,124,0,0,95,1,0,124, +- 1,0,112,79,0,100,3,0,124,0,0,95,2,0,100,6, +- 0,124,0,0,95,3,0,116,4,0,131,0,0,124,0,0, +- 95,5,0,116,4,0,131,0,0,124,0,0,95,6,0,100, +- 5,0,83,41,7,122,154,73,110,105,116,105,97,108,105,122, +- 101,32,119,105,116,104,32,116,104,101,32,112,97,116,104,32, +- 116,111,32,115,101,97,114,99,104,32,111,110,32,97,110,100, +- 32,97,32,118,97,114,105,97,98,108,101,32,110,117,109,98, +- 101,114,32,111,102,10,32,32,32,32,32,32,32,32,50,45, +- 116,117,112,108,101,115,32,99,111,110,116,97,105,110,105,110, +- 103,32,116,104,101,32,108,111,97,100,101,114,32,97,110,100, +- 32,116,104,101,32,102,105,108,101,32,115,117,102,102,105,120, +- 101,115,32,116,104,101,32,108,111,97,100,101,114,10,32,32, +- 32,32,32,32,32,32,114,101,99,111,103,110,105,122,101,115, +- 46,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, +- 0,0,51,0,0,0,115,27,0,0,0,124,0,0,93,17, +- 0,125,1,0,124,1,0,136,0,0,102,2,0,86,1,113, +- 3,0,100,0,0,83,41,1,78,114,4,0,0,0,41,2, +- 114,22,0,0,0,114,57,1,0,0,41,1,114,169,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,77,0,0,0, +- 193,7,0,0,115,2,0,0,0,6,0,122,38,70,105,108, ++ 104,101,99,3,0,0,0,0,0,0,0,6,0,0,0,3, ++ 0,0,0,67,0,0,0,115,113,0,0,0,116,0,0,124, ++ 2,0,100,1,0,131,2,0,114,39,0,124,2,0,106,1, ++ 0,124,1,0,131,1,0,92,2,0,125,3,0,125,4,0, ++ 110,21,0,124,2,0,106,2,0,124,1,0,131,1,0,125, ++ 3,0,103,0,0,125,4,0,124,3,0,100,0,0,107,9, ++ 0,114,85,0,116,3,0,124,1,0,124,3,0,131,2,0, ++ 83,116,4,0,124,1,0,100,0,0,131,2,0,125,5,0, ++ 124,4,0,124,5,0,95,5,0,124,5,0,83,41,2,78, ++ 114,166,0,0,0,41,6,114,61,0,0,0,114,166,0,0, ++ 0,114,15,1,0,0,114,174,0,0,0,114,217,0,0,0, ++ 114,221,0,0,0,41,6,114,12,1,0,0,114,159,0,0, ++ 0,114,78,1,0,0,114,170,0,0,0,114,171,0,0,0, ++ 114,178,0,0,0,114,5,0,0,0,114,5,0,0,0,114, ++ 6,0,0,0,218,16,95,108,101,103,97,99,121,95,103,101, ++ 116,95,115,112,101,99,95,7,0,0,115,18,0,0,0,0, ++ 4,15,1,24,2,15,1,6,1,12,1,13,1,15,1,9, ++ 1,122,27,80,97,116,104,70,105,110,100,101,114,46,95,108, ++ 101,103,97,99,121,95,103,101,116,95,115,112,101,99,78,99, ++ 4,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0, ++ 67,0,0,0,115,252,0,0,0,103,0,0,125,4,0,120, ++ 239,0,124,2,0,68,93,203,0,125,5,0,116,0,0,124, ++ 5,0,116,1,0,116,2,0,102,2,0,131,2,0,115,46, ++ 0,113,13,0,110,0,0,124,0,0,106,3,0,124,5,0, ++ 131,1,0,125,6,0,124,6,0,100,1,0,107,9,0,114, ++ 13,0,116,4,0,124,6,0,100,2,0,131,2,0,114,109, ++ 0,124,6,0,106,5,0,124,1,0,124,3,0,131,2,0, ++ 125,7,0,110,18,0,124,0,0,106,6,0,124,1,0,124, ++ 6,0,131,2,0,125,7,0,124,7,0,100,1,0,107,8, ++ 0,114,145,0,113,13,0,110,0,0,124,7,0,106,7,0, ++ 100,1,0,107,9,0,114,164,0,124,7,0,83,124,7,0, ++ 106,8,0,125,8,0,124,8,0,100,1,0,107,8,0,114, ++ 200,0,116,9,0,100,3,0,131,1,0,130,1,0,110,0, ++ 0,124,4,0,106,10,0,124,8,0,131,1,0,1,113,13, ++ 0,113,13,0,87,116,11,0,124,1,0,100,1,0,131,2, ++ 0,125,7,0,124,4,0,124,7,0,95,8,0,124,7,0, ++ 83,100,1,0,83,41,4,122,63,70,105,110,100,32,116,104, ++ 101,32,108,111,97,100,101,114,32,111,114,32,110,97,109,101, ++ 115,112,97,99,101,95,112,97,116,104,32,102,111,114,32,116, ++ 104,105,115,32,109,111,100,117,108,101,47,112,97,99,107,97, ++ 103,101,32,110,97,109,101,46,78,114,14,1,0,0,122,19, ++ 115,112,101,99,32,109,105,115,115,105,110,103,32,108,111,97, ++ 100,101,114,41,12,114,193,0,0,0,218,3,115,116,114,218, ++ 5,98,121,116,101,115,114,81,1,0,0,114,61,0,0,0, ++ 114,14,1,0,0,114,82,1,0,0,114,170,0,0,0,114, ++ 221,0,0,0,114,154,0,0,0,114,198,0,0,0,114,217, ++ 0,0,0,41,9,114,12,1,0,0,114,159,0,0,0,114, ++ 36,0,0,0,114,13,1,0,0,218,14,110,97,109,101,115, ++ 112,97,99,101,95,112,97,116,104,90,5,101,110,116,114,121, ++ 114,78,1,0,0,114,178,0,0,0,114,171,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,9, ++ 95,103,101,116,95,115,112,101,99,110,7,0,0,115,40,0, ++ 0,0,0,5,6,1,13,1,21,1,6,1,15,1,12,1, ++ 15,1,21,2,18,1,12,1,6,1,15,1,4,1,9,1, ++ 12,1,15,5,20,2,15,1,9,1,122,20,80,97,116,104, ++ 70,105,110,100,101,114,46,95,103,101,116,95,115,112,101,99, ++ 99,4,0,0,0,0,0,0,0,6,0,0,0,4,0,0, ++ 0,67,0,0,0,115,143,0,0,0,124,2,0,100,1,0, ++ 107,8,0,114,24,0,116,0,0,106,1,0,125,2,0,110, ++ 0,0,124,0,0,106,2,0,124,1,0,124,2,0,124,3, ++ 0,131,3,0,125,4,0,124,4,0,100,1,0,107,8,0, ++ 114,61,0,100,1,0,83,124,4,0,106,3,0,100,1,0, ++ 107,8,0,114,135,0,124,4,0,106,4,0,125,5,0,124, ++ 5,0,114,128,0,100,2,0,124,4,0,95,5,0,116,6, ++ 0,124,1,0,124,5,0,124,0,0,106,2,0,131,3,0, ++ 124,4,0,95,4,0,124,4,0,83,100,1,0,83,110,4, ++ 0,124,4,0,83,100,1,0,83,41,3,122,98,102,105,110, ++ 100,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32, ++ 115,121,115,46,112,97,116,104,32,111,114,32,39,112,97,116, ++ 104,39,32,98,97,115,101,100,32,111,110,32,115,121,115,46, ++ 112,97,116,104,95,104,111,111,107,115,32,97,110,100,10,32, ++ 32,32,32,32,32,32,32,115,121,115,46,112,97,116,104,95, ++ 105,109,112,111,114,116,101,114,95,99,97,99,104,101,46,78, ++ 90,9,110,97,109,101,115,112,97,99,101,41,7,114,8,0, ++ 0,0,114,36,0,0,0,114,86,1,0,0,114,170,0,0, ++ 0,114,221,0,0,0,114,218,0,0,0,114,61,1,0,0, ++ 41,6,114,12,1,0,0,114,159,0,0,0,114,36,0,0, ++ 0,114,13,1,0,0,114,178,0,0,0,114,85,1,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 14,1,0,0,142,7,0,0,115,26,0,0,0,0,4,12, ++ 1,12,1,21,1,12,1,4,1,15,1,9,1,6,3,9, ++ 1,24,1,4,2,7,2,122,20,80,97,116,104,70,105,110, ++ 100,101,114,46,102,105,110,100,95,115,112,101,99,99,3,0, ++ 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, ++ 0,0,115,41,0,0,0,124,0,0,106,0,0,124,1,0, ++ 124,2,0,131,2,0,125,3,0,124,3,0,100,1,0,107, ++ 8,0,114,34,0,100,1,0,83,124,3,0,106,1,0,83, ++ 41,2,122,170,102,105,110,100,32,116,104,101,32,109,111,100, ++ 117,108,101,32,111,110,32,115,121,115,46,112,97,116,104,32, ++ 111,114,32,39,112,97,116,104,39,32,98,97,115,101,100,32, ++ 111,110,32,115,121,115,46,112,97,116,104,95,104,111,111,107, ++ 115,32,97,110,100,10,32,32,32,32,32,32,32,32,115,121, ++ 115,46,112,97,116,104,95,105,109,112,111,114,116,101,114,95, ++ 99,97,99,104,101,46,10,10,32,32,32,32,32,32,32,32, ++ 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, ++ 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, ++ 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, ++ 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, ++ 2,114,14,1,0,0,114,170,0,0,0,41,4,114,12,1, ++ 0,0,114,159,0,0,0,114,36,0,0,0,114,178,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,15,1,0,0,164,7,0,0,115,8,0,0,0,0,8, ++ 18,1,12,1,4,1,122,22,80,97,116,104,70,105,110,100, ++ 101,114,46,102,105,110,100,95,109,111,100,117,108,101,41,12, ++ 114,58,0,0,0,114,57,0,0,0,114,59,0,0,0,114, ++ 60,0,0,0,114,19,1,0,0,114,75,1,0,0,114,80, ++ 1,0,0,114,81,1,0,0,114,82,1,0,0,114,86,1, ++ 0,0,114,14,1,0,0,114,15,1,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,74,1,0,0,49,7,0,0,115,22,0,0,0,12,2, ++ 6,2,18,8,18,17,18,17,18,15,3,1,18,31,3,1, ++ 21,21,3,1,114,74,1,0,0,99,0,0,0,0,0,0, ++ 0,0,0,0,0,0,3,0,0,0,64,0,0,0,115,133, ++ 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, ++ 1,0,90,3,0,100,2,0,100,3,0,132,0,0,90,4, ++ 0,100,4,0,100,5,0,132,0,0,90,5,0,101,6,0, ++ 90,7,0,100,6,0,100,7,0,132,0,0,90,8,0,100, ++ 8,0,100,9,0,132,0,0,90,9,0,100,10,0,100,11, ++ 0,100,12,0,132,1,0,90,10,0,100,13,0,100,14,0, ++ 132,0,0,90,11,0,101,12,0,100,15,0,100,16,0,132, ++ 0,0,131,1,0,90,13,0,100,17,0,100,18,0,132,0, ++ 0,90,14,0,100,10,0,83,41,19,218,10,70,105,108,101, ++ 70,105,110,100,101,114,122,172,70,105,108,101,45,98,97,115, ++ 101,100,32,102,105,110,100,101,114,46,10,10,32,32,32,32, ++ 73,110,116,101,114,97,99,116,105,111,110,115,32,119,105,116, ++ 104,32,116,104,101,32,102,105,108,101,32,115,121,115,116,101, ++ 109,32,97,114,101,32,99,97,99,104,101,100,32,102,111,114, ++ 32,112,101,114,102,111,114,109,97,110,99,101,44,32,98,101, ++ 105,110,103,10,32,32,32,32,114,101,102,114,101,115,104,101, ++ 100,32,119,104,101,110,32,116,104,101,32,100,105,114,101,99, ++ 116,111,114,121,32,116,104,101,32,102,105,110,100,101,114,32, ++ 105,115,32,104,97,110,100,108,105,110,103,32,104,97,115,32, ++ 98,101,101,110,32,109,111,100,105,102,105,101,100,46,10,10, ++ 32,32,32,32,99,2,0,0,0,0,0,0,0,5,0,0, ++ 0,5,0,0,0,7,0,0,0,115,122,0,0,0,103,0, ++ 0,125,3,0,120,52,0,124,2,0,68,93,44,0,92,2, ++ 0,137,0,0,125,4,0,124,3,0,106,0,0,135,0,0, ++ 102,1,0,100,1,0,100,2,0,134,0,0,124,4,0,68, ++ 131,1,0,131,1,0,1,113,13,0,87,124,3,0,124,0, ++ 0,95,1,0,124,1,0,112,79,0,100,3,0,124,0,0, ++ 95,2,0,100,6,0,124,0,0,95,3,0,116,4,0,131, ++ 0,0,124,0,0,95,5,0,116,4,0,131,0,0,124,0, ++ 0,95,6,0,100,5,0,83,41,7,122,154,73,110,105,116, ++ 105,97,108,105,122,101,32,119,105,116,104,32,116,104,101,32, ++ 112,97,116,104,32,116,111,32,115,101,97,114,99,104,32,111, ++ 110,32,97,110,100,32,97,32,118,97,114,105,97,98,108,101, ++ 32,110,117,109,98,101,114,32,111,102,10,32,32,32,32,32, ++ 32,32,32,50,45,116,117,112,108,101,115,32,99,111,110,116, ++ 97,105,110,105,110,103,32,116,104,101,32,108,111,97,100,101, ++ 114,32,97,110,100,32,116,104,101,32,102,105,108,101,32,115, ++ 117,102,102,105,120,101,115,32,116,104,101,32,108,111,97,100, ++ 101,114,10,32,32,32,32,32,32,32,32,114,101,99,111,103, ++ 110,105,122,101,115,46,99,1,0,0,0,0,0,0,0,2, ++ 0,0,0,3,0,0,0,51,0,0,0,115,27,0,0,0, ++ 124,0,0,93,17,0,125,1,0,124,1,0,136,0,0,102, ++ 2,0,86,1,113,3,0,100,0,0,83,41,1,78,114,5, ++ 0,0,0,41,2,114,23,0,0,0,114,58,1,0,0,41, ++ 1,114,170,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,78,0,0,0,193,7,0,0,115,2,0,0,0,6,0, ++ 122,38,70,105,108,101,70,105,110,100,101,114,46,95,95,105, ++ 110,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, ++ 103,101,110,101,120,112,114,62,114,117,0,0,0,114,30,0, ++ 0,0,78,114,139,0,0,0,41,7,114,198,0,0,0,218, ++ 8,95,108,111,97,100,101,114,115,114,36,0,0,0,218,11, ++ 95,112,97,116,104,95,109,116,105,109,101,218,3,115,101,116, ++ 218,11,95,112,97,116,104,95,99,97,99,104,101,218,19,95, ++ 114,101,108,97,120,101,100,95,112,97,116,104,95,99,97,99, ++ 104,101,41,5,114,72,0,0,0,114,36,0,0,0,218,14, ++ 108,111,97,100,101,114,95,100,101,116,97,105,108,115,90,7, ++ 108,111,97,100,101,114,115,114,128,0,0,0,114,5,0,0, ++ 0,41,1,114,170,0,0,0,114,6,0,0,0,114,73,0, ++ 0,0,187,7,0,0,115,16,0,0,0,0,4,6,1,19, ++ 1,36,1,9,2,15,1,9,1,12,1,122,19,70,105,108, + 101,70,105,110,100,101,114,46,95,95,105,110,105,116,95,95, +- 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, +- 112,114,62,114,116,0,0,0,114,29,0,0,0,78,114,138, +- 0,0,0,41,7,114,197,0,0,0,218,8,95,108,111,97, +- 100,101,114,115,114,35,0,0,0,218,11,95,112,97,116,104, +- 95,109,116,105,109,101,218,3,115,101,116,218,11,95,112,97, +- 116,104,95,99,97,99,104,101,218,19,95,114,101,108,97,120, +- 101,100,95,112,97,116,104,95,99,97,99,104,101,41,5,114, +- 71,0,0,0,114,35,0,0,0,218,14,108,111,97,100,101, +- 114,95,100,101,116,97,105,108,115,90,7,108,111,97,100,101, +- 114,115,114,127,0,0,0,114,4,0,0,0,41,1,114,169, +- 0,0,0,114,5,0,0,0,114,72,0,0,0,187,7,0, +- 0,115,16,0,0,0,0,4,6,1,19,1,36,1,9,2, +- 15,1,9,1,12,1,122,19,70,105,108,101,70,105,110,100, +- 101,114,46,95,95,105,110,105,116,95,95,99,1,0,0,0, +- 0,0,0,0,1,0,0,0,2,0,0,0,67,0,0,0, +- 115,13,0,0,0,100,3,0,124,0,0,95,0,0,100,2, +- 0,83,41,4,122,31,73,110,118,97,108,105,100,97,116,101, +- 32,116,104,101,32,100,105,114,101,99,116,111,114,121,32,109, +- 116,105,109,101,46,114,29,0,0,0,78,114,138,0,0,0, +- 41,1,114,88,1,0,0,41,1,114,71,0,0,0,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,74,1, +- 0,0,201,7,0,0,115,2,0,0,0,0,2,122,28,70, +- 105,108,101,70,105,110,100,101,114,46,105,110,118,97,108,105, +- 100,97,116,101,95,99,97,99,104,101,115,99,2,0,0,0, +- 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, +- 115,59,0,0,0,124,0,0,106,0,0,124,1,0,131,1, +- 0,125,2,0,124,2,0,100,1,0,107,8,0,114,37,0, +- 100,1,0,103,0,0,102,2,0,83,124,2,0,106,1,0, +- 124,2,0,106,2,0,112,55,0,103,0,0,102,2,0,83, +- 41,2,122,197,84,114,121,32,116,111,32,102,105,110,100,32, +- 97,32,108,111,97,100,101,114,32,102,111,114,32,116,104,101, +- 32,115,112,101,99,105,102,105,101,100,32,109,111,100,117,108, +- 101,44,32,111,114,32,116,104,101,32,110,97,109,101,115,112, +- 97,99,101,10,32,32,32,32,32,32,32,32,112,97,99,107, +- 97,103,101,32,112,111,114,116,105,111,110,115,46,32,82,101, +- 116,117,114,110,115,32,40,108,111,97,100,101,114,44,32,108, +- 105,115,116,45,111,102,45,112,111,114,116,105,111,110,115,41, +- 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, +- 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, +- 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, +- 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, +- 10,32,32,32,32,32,32,32,32,78,41,3,114,13,1,0, +- 0,114,169,0,0,0,114,220,0,0,0,41,3,114,71,0, +- 0,0,114,158,0,0,0,114,177,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,165,0,0,0, +- 207,7,0,0,115,8,0,0,0,0,7,15,1,12,1,10, +- 1,122,22,70,105,108,101,70,105,110,100,101,114,46,102,105, +- 110,100,95,108,111,97,100,101,114,99,6,0,0,0,0,0, +- 0,0,7,0,0,0,7,0,0,0,67,0,0,0,115,40, +- 0,0,0,124,1,0,124,2,0,124,3,0,131,2,0,125, +- 6,0,116,0,0,124,2,0,124,3,0,100,1,0,124,6, +- 0,100,2,0,124,4,0,131,2,2,83,41,3,78,114,169, +- 0,0,0,114,220,0,0,0,41,1,114,239,0,0,0,41, +- 7,114,71,0,0,0,114,243,0,0,0,114,158,0,0,0, +- 114,35,0,0,0,114,228,0,0,0,114,12,1,0,0,114, +- 169,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,85,1,0,0,219,7,0,0,115,6,0,0, +- 0,0,1,15,1,18,1,122,20,70,105,108,101,70,105,110, +- 100,101,114,46,95,103,101,116,95,115,112,101,99,78,99,3, +- 0,0,0,0,0,0,0,14,0,0,0,15,0,0,0,67, +- 0,0,0,115,240,1,0,0,100,1,0,125,3,0,124,1, +- 0,106,0,0,100,2,0,131,1,0,100,3,0,25,125,4, +- 0,121,34,0,116,1,0,124,0,0,106,2,0,112,49,0, +- 116,3,0,106,4,0,131,0,0,131,1,0,106,5,0,125, +- 5,0,87,110,24,0,4,116,6,0,107,10,0,114,85,0, +- 1,1,1,100,10,0,125,5,0,89,110,1,0,88,124,5, +- 0,124,0,0,106,7,0,107,3,0,114,123,0,124,0,0, +- 106,8,0,131,0,0,1,124,5,0,124,0,0,95,7,0, +- 110,0,0,116,9,0,131,0,0,114,156,0,124,0,0,106, +- 10,0,125,6,0,124,4,0,106,11,0,131,0,0,125,7, +- 0,110,15,0,124,0,0,106,12,0,125,6,0,124,4,0, +- 125,7,0,124,7,0,124,6,0,107,6,0,114,51,1,116, +- 13,0,124,0,0,106,2,0,124,4,0,131,2,0,125,8, +- 0,120,103,0,124,0,0,106,14,0,68,93,77,0,92,2, +- 0,125,9,0,125,10,0,100,5,0,124,9,0,23,125,11, +- 0,116,13,0,124,8,0,124,11,0,131,2,0,125,12,0, +- 116,15,0,124,12,0,131,1,0,114,211,0,124,0,0,106, +- 16,0,124,10,0,124,1,0,124,12,0,124,8,0,103,1, +- 0,124,2,0,131,5,0,83,113,211,0,87,116,17,0,124, +- 8,0,131,1,0,125,3,0,110,0,0,120,126,0,124,0, +- 0,106,14,0,68,93,115,0,92,2,0,125,9,0,125,10, +- 0,116,13,0,124,0,0,106,2,0,124,4,0,124,9,0, +- 23,131,2,0,125,12,0,116,18,0,100,6,0,106,19,0, +- 124,12,0,131,1,0,100,7,0,100,3,0,131,1,1,1, +- 124,7,0,124,9,0,23,124,6,0,107,6,0,114,61,1, +- 116,15,0,124,12,0,131,1,0,114,176,1,124,0,0,106, +- 16,0,124,10,0,124,1,0,124,12,0,100,8,0,124,2, +- 0,131,5,0,83,113,61,1,113,61,1,87,124,3,0,114, +- 236,1,116,18,0,100,9,0,106,19,0,124,8,0,131,1, +- 0,131,1,0,1,116,20,0,124,1,0,100,8,0,131,2, +- 0,125,13,0,124,8,0,103,1,0,124,13,0,95,21,0, +- 124,13,0,83,100,8,0,83,41,11,122,125,84,114,121,32, +- 116,111,32,102,105,110,100,32,97,32,108,111,97,100,101,114, +- 32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105, +- 101,100,32,109,111,100,117,108,101,44,32,111,114,32,116,104, +- 101,32,110,97,109,101,115,112,97,99,101,10,32,32,32,32, +- 32,32,32,32,112,97,99,107,97,103,101,32,112,111,114,116, +- 105,111,110,115,46,32,82,101,116,117,114,110,115,32,40,108, +- 111,97,100,101,114,44,32,108,105,115,116,45,111,102,45,112, +- 111,114,116,105,111,110,115,41,46,70,114,116,0,0,0,114, +- 115,0,0,0,114,29,0,0,0,114,72,0,0,0,122,9, +- 116,114,121,105,110,103,32,123,125,114,145,0,0,0,78,122, +- 25,112,111,115,115,105,98,108,101,32,110,97,109,101,115,112, +- 97,99,101,32,102,111,114,32,123,125,114,138,0,0,0,41, +- 22,114,32,0,0,0,114,39,0,0,0,114,35,0,0,0, +- 114,3,0,0,0,114,45,0,0,0,114,53,1,0,0,114, +- 40,0,0,0,114,88,1,0,0,218,11,95,102,105,108,108, +- 95,99,97,99,104,101,114,6,0,0,0,114,91,1,0,0, +- 114,139,0,0,0,114,90,1,0,0,114,28,0,0,0,114, +- 87,1,0,0,114,44,0,0,0,114,85,1,0,0,114,46, +- 0,0,0,114,152,0,0,0,114,47,0,0,0,114,216,0, +- 0,0,114,220,0,0,0,41,14,114,71,0,0,0,114,158, +- 0,0,0,114,12,1,0,0,90,12,105,115,95,110,97,109, +- 101,115,112,97,99,101,90,11,116,97,105,108,95,109,111,100, +- 117,108,101,114,183,0,0,0,90,5,99,97,99,104,101,90, +- 12,99,97,99,104,101,95,109,111,100,117,108,101,90,9,98, +- 97,115,101,95,112,97,116,104,114,57,1,0,0,114,243,0, +- 0,0,90,13,105,110,105,116,95,102,105,108,101,110,97,109, +- 101,90,9,102,117,108,108,95,112,97,116,104,114,177,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,9,95,103,101,116,95,115,112,101,99,74,4,0,0,115, -- 40,0,0,0,0,5,6,1,13,1,21,1,3,1,15,1, -- 12,1,15,1,21,2,18,1,12,1,3,1,15,1,4,1, -- 9,1,12,1,12,5,17,2,18,1,9,1,122,20,80,97, -- 116,104,70,105,110,100,101,114,46,95,103,101,116,95,115,112, -- 101,99,99,4,0,0,0,0,0,0,0,6,0,0,0,4, -- 0,0,0,67,0,0,0,115,140,0,0,0,124,2,0,100, -- 1,0,107,8,0,114,21,0,116,0,0,106,1,0,125,2, -- 0,124,0,0,106,2,0,124,1,0,124,2,0,124,3,0, -- 131,3,0,125,4,0,124,4,0,100,1,0,107,8,0,114, -- 58,0,100,1,0,83,124,4,0,106,3,0,100,1,0,107, -- 8,0,114,132,0,124,4,0,106,4,0,125,5,0,124,5, -- 0,114,125,0,100,2,0,124,4,0,95,5,0,116,6,0, -- 124,1,0,124,5,0,124,0,0,106,2,0,131,3,0,124, -- 4,0,95,4,0,124,4,0,83,100,1,0,83,110,4,0, -- 124,4,0,83,100,1,0,83,41,3,122,98,102,105,110,100, -- 32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,115, -- 121,115,46,112,97,116,104,32,111,114,32,39,112,97,116,104, -- 39,32,98,97,115,101,100,32,111,110,32,115,121,115,46,112, -- 97,116,104,95,104,111,111,107,115,32,97,110,100,10,32,32, -- 32,32,32,32,32,32,115,121,115,46,112,97,116,104,95,105, -- 109,112,111,114,116,101,114,95,99,97,99,104,101,46,78,90, -- 9,110,97,109,101,115,112,97,99,101,41,7,114,7,0,0, -- 0,114,35,0,0,0,114,5,1,0,0,114,127,0,0,0, -- 114,156,0,0,0,114,158,0,0,0,114,230,0,0,0,41, -- 6,114,170,0,0,0,114,126,0,0,0,114,35,0,0,0, -- 114,180,0,0,0,114,164,0,0,0,114,4,1,0,0,114, -- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,181, -- 0,0,0,106,4,0,0,115,26,0,0,0,0,4,12,1, -- 9,1,21,1,12,1,4,1,15,1,9,1,6,3,9,1, -- 24,1,4,2,7,2,122,20,80,97,116,104,70,105,110,100, -- 101,114,46,102,105,110,100,95,115,112,101,99,99,3,0,0, -- 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, -- 0,115,41,0,0,0,124,0,0,106,0,0,124,1,0,124, -- 2,0,131,2,0,125,3,0,124,3,0,100,1,0,107,8, -- 0,114,34,0,100,1,0,83,124,3,0,106,1,0,83,41, -- 2,122,170,102,105,110,100,32,116,104,101,32,109,111,100,117, -- 108,101,32,111,110,32,115,121,115,46,112,97,116,104,32,111, -- 114,32,39,112,97,116,104,39,32,98,97,115,101,100,32,111, -- 110,32,115,121,115,46,112,97,116,104,95,104,111,111,107,115, -- 32,97,110,100,10,32,32,32,32,32,32,32,32,115,121,115, -- 46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,99, -- 97,99,104,101,46,10,10,32,32,32,32,32,32,32,32,84, -- 104,105,115,32,109,101,116,104,111,100,32,105,115,32,100,101, -- 112,114,101,99,97,116,101,100,46,32,32,85,115,101,32,102, -- 105,110,100,95,115,112,101,99,40,41,32,105,110,115,116,101, -- 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,2, -- 114,181,0,0,0,114,127,0,0,0,41,4,114,170,0,0, -- 0,114,126,0,0,0,114,35,0,0,0,114,164,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 182,0,0,0,128,4,0,0,115,8,0,0,0,0,8,18, -- 1,12,1,4,1,122,22,80,97,116,104,70,105,110,100,101, -- 114,46,102,105,110,100,95,109,111,100,117,108,101,41,12,114, -- 112,0,0,0,114,111,0,0,0,114,113,0,0,0,114,114, -- 0,0,0,114,183,0,0,0,114,250,0,0,0,114,255,0, -- 0,0,114,1,1,0,0,114,2,1,0,0,114,5,1,0, -- 0,114,181,0,0,0,114,182,0,0,0,114,4,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 249,0,0,0,8,4,0,0,115,22,0,0,0,12,2,6, -- 2,18,8,18,17,18,22,18,15,3,1,18,31,3,1,21, -- 21,3,1,114,249,0,0,0,99,0,0,0,0,0,0,0, -- 0,0,0,0,0,3,0,0,0,64,0,0,0,115,133,0, -- 0,0,101,0,0,90,1,0,100,0,0,90,2,0,100,1, -- 0,90,3,0,100,2,0,100,3,0,132,0,0,90,4,0, -- 100,4,0,100,5,0,132,0,0,90,5,0,101,6,0,90, -- 7,0,100,6,0,100,7,0,132,0,0,90,8,0,100,8, -- 0,100,9,0,132,0,0,90,9,0,100,10,0,100,11,0, -- 100,12,0,132,1,0,90,10,0,100,13,0,100,14,0,132, -- 0,0,90,11,0,101,12,0,100,15,0,100,16,0,132,0, -- 0,131,1,0,90,13,0,100,17,0,100,18,0,132,0,0, -- 90,14,0,100,10,0,83,41,19,218,10,70,105,108,101,70, -- 105,110,100,101,114,122,172,70,105,108,101,45,98,97,115,101, -- 100,32,102,105,110,100,101,114,46,10,10,32,32,32,32,73, -- 110,116,101,114,97,99,116,105,111,110,115,32,119,105,116,104, -- 32,116,104,101,32,102,105,108,101,32,115,121,115,116,101,109, -- 32,97,114,101,32,99,97,99,104,101,100,32,102,111,114,32, -- 112,101,114,102,111,114,109,97,110,99,101,44,32,98,101,105, -- 110,103,10,32,32,32,32,114,101,102,114,101,115,104,101,100, -- 32,119,104,101,110,32,116,104,101,32,100,105,114,101,99,116, -- 111,114,121,32,116,104,101,32,102,105,110,100,101,114,32,105, -- 115,32,104,97,110,100,108,105,110,103,32,104,97,115,32,98, -- 101,101,110,32,109,111,100,105,102,105,101,100,46,10,10,32, -- 32,32,32,99,2,0,0,0,0,0,0,0,5,0,0,0, -- 5,0,0,0,7,0,0,0,115,122,0,0,0,103,0,0, -- 125,3,0,120,52,0,124,2,0,68,93,44,0,92,2,0, -- 137,0,0,125,4,0,124,3,0,106,0,0,135,0,0,102, -- 1,0,100,1,0,100,2,0,134,0,0,124,4,0,68,131, -- 1,0,131,1,0,1,113,13,0,87,124,3,0,124,0,0, -- 95,1,0,124,1,0,112,79,0,100,3,0,124,0,0,95, -- 2,0,100,6,0,124,0,0,95,3,0,116,4,0,131,0, -- 0,124,0,0,95,5,0,116,4,0,131,0,0,124,0,0, -- 95,6,0,100,5,0,83,41,7,122,154,73,110,105,116,105, -- 97,108,105,122,101,32,119,105,116,104,32,116,104,101,32,112, -- 97,116,104,32,116,111,32,115,101,97,114,99,104,32,111,110, -- 32,97,110,100,32,97,32,118,97,114,105,97,98,108,101,32, -- 110,117,109,98,101,114,32,111,102,10,32,32,32,32,32,32, -- 32,32,50,45,116,117,112,108,101,115,32,99,111,110,116,97, -- 105,110,105,110,103,32,116,104,101,32,108,111,97,100,101,114, -- 32,97,110,100,32,116,104,101,32,102,105,108,101,32,115,117, -- 102,102,105,120,101,115,32,116,104,101,32,108,111,97,100,101, -- 114,10,32,32,32,32,32,32,32,32,114,101,99,111,103,110, -- 105,122,101,115,46,99,1,0,0,0,0,0,0,0,2,0, -- 0,0,3,0,0,0,51,0,0,0,115,27,0,0,0,124, -- 0,0,93,17,0,125,1,0,124,1,0,136,0,0,102,2, -- 0,86,1,113,3,0,100,0,0,83,41,1,78,114,4,0, -- 0,0,41,2,114,22,0,0,0,114,225,0,0,0,41,1, -- 114,127,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 227,0,0,0,157,4,0,0,115,2,0,0,0,6,0,122, -- 38,70,105,108,101,70,105,110,100,101,114,46,95,95,105,110, -- 105,116,95,95,46,60,108,111,99,97,108,115,62,46,60,103, -- 101,110,101,120,112,114,62,114,58,0,0,0,114,29,0,0, -- 0,78,114,87,0,0,0,41,7,114,149,0,0,0,218,8, -- 95,108,111,97,100,101,114,115,114,35,0,0,0,218,11,95, -- 112,97,116,104,95,109,116,105,109,101,218,3,115,101,116,218, -- 11,95,112,97,116,104,95,99,97,99,104,101,218,19,95,114, -- 101,108,97,120,101,100,95,112,97,116,104,95,99,97,99,104, -- 101,41,5,114,108,0,0,0,114,35,0,0,0,218,14,108, -- 111,97,100,101,114,95,100,101,116,97,105,108,115,90,7,108, -- 111,97,100,101,114,115,114,166,0,0,0,114,4,0,0,0, -- 41,1,114,127,0,0,0,114,5,0,0,0,114,185,0,0, -- 0,151,4,0,0,115,16,0,0,0,0,4,6,1,19,1, -- 36,1,9,2,15,1,9,1,12,1,122,19,70,105,108,101, -- 70,105,110,100,101,114,46,95,95,105,110,105,116,95,95,99, -- 1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0, -- 67,0,0,0,115,13,0,0,0,100,3,0,124,0,0,95, -- 0,0,100,2,0,83,41,4,122,31,73,110,118,97,108,105, -- 100,97,116,101,32,116,104,101,32,100,105,114,101,99,116,111, -- 114,121,32,109,116,105,109,101,46,114,29,0,0,0,78,114, -- 87,0,0,0,41,1,114,8,1,0,0,41,1,114,108,0, -- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, -- 0,114,250,0,0,0,165,4,0,0,115,2,0,0,0,0, -- 2,122,28,70,105,108,101,70,105,110,100,101,114,46,105,110, -- 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,99, -- 2,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0, -- 67,0,0,0,115,59,0,0,0,124,0,0,106,0,0,124, -- 1,0,131,1,0,125,2,0,124,2,0,100,1,0,107,8, -- 0,114,37,0,100,1,0,103,0,0,102,2,0,83,124,2, -- 0,106,1,0,124,2,0,106,2,0,112,55,0,103,0,0, -- 102,2,0,83,41,2,122,197,84,114,121,32,116,111,32,102, -- 105,110,100,32,97,32,108,111,97,100,101,114,32,102,111,114, -- 32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,109, -- 111,100,117,108,101,44,32,111,114,32,116,104,101,32,110,97, -- 109,101,115,112,97,99,101,10,32,32,32,32,32,32,32,32, -- 112,97,99,107,97,103,101,32,112,111,114,116,105,111,110,115, -- 46,32,82,101,116,117,114,110,115,32,40,108,111,97,100,101, -- 114,44,32,108,105,115,116,45,111,102,45,112,111,114,116,105, -- 111,110,115,41,46,10,10,32,32,32,32,32,32,32,32,84, -- 104,105,115,32,109,101,116,104,111,100,32,105,115,32,100,101, -- 112,114,101,99,97,116,101,100,46,32,32,85,115,101,32,102, -- 105,110,100,95,115,112,101,99,40,41,32,105,110,115,116,101, -- 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,3, -- 114,181,0,0,0,114,127,0,0,0,114,156,0,0,0,41, -- 3,114,108,0,0,0,114,126,0,0,0,114,164,0,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, -- 124,0,0,0,171,4,0,0,115,8,0,0,0,0,7,15, -- 1,12,1,10,1,122,22,70,105,108,101,70,105,110,100,101, -- 114,46,102,105,110,100,95,108,111,97,100,101,114,99,6,0, -- 0,0,0,0,0,0,7,0,0,0,7,0,0,0,67,0, -- 0,0,115,40,0,0,0,124,1,0,124,2,0,124,3,0, -- 131,2,0,125,6,0,116,0,0,124,2,0,124,3,0,100, -- 1,0,124,6,0,100,2,0,124,4,0,131,2,2,83,41, -- 3,78,114,127,0,0,0,114,156,0,0,0,41,1,114,167, -- 0,0,0,41,7,114,108,0,0,0,114,165,0,0,0,114, -- 126,0,0,0,114,35,0,0,0,90,4,115,109,115,108,114, -- 180,0,0,0,114,127,0,0,0,114,4,0,0,0,114,4, -- 0,0,0,114,5,0,0,0,114,5,1,0,0,183,4,0, -- 0,115,6,0,0,0,0,1,15,1,18,1,122,20,70,105, -- 108,101,70,105,110,100,101,114,46,95,103,101,116,95,115,112, -- 101,99,78,99,3,0,0,0,0,0,0,0,14,0,0,0, -- 15,0,0,0,67,0,0,0,115,234,1,0,0,100,1,0, -- 125,3,0,124,1,0,106,0,0,100,2,0,131,1,0,100, -- 3,0,25,125,4,0,121,34,0,116,1,0,124,0,0,106, -- 2,0,112,49,0,116,3,0,106,4,0,131,0,0,131,1, -- 0,106,5,0,125,5,0,87,110,24,0,4,116,6,0,107, -- 10,0,114,85,0,1,1,1,100,10,0,125,5,0,89,110, -- 1,0,88,124,5,0,124,0,0,106,7,0,107,3,0,114, -- 120,0,124,0,0,106,8,0,131,0,0,1,124,5,0,124, -- 0,0,95,7,0,116,9,0,131,0,0,114,153,0,124,0, -- 0,106,10,0,125,6,0,124,4,0,106,11,0,131,0,0, -- 125,7,0,110,15,0,124,0,0,106,12,0,125,6,0,124, -- 4,0,125,7,0,124,7,0,124,6,0,107,6,0,114,45, -- 1,116,13,0,124,0,0,106,2,0,124,4,0,131,2,0, -- 125,8,0,120,100,0,124,0,0,106,14,0,68,93,77,0, -- 92,2,0,125,9,0,125,10,0,100,5,0,124,9,0,23, -- 125,11,0,116,13,0,124,8,0,124,11,0,131,2,0,125, -- 12,0,116,15,0,124,12,0,131,1,0,114,208,0,124,0, -- 0,106,16,0,124,10,0,124,1,0,124,12,0,124,8,0, -- 103,1,0,124,2,0,131,5,0,83,113,208,0,87,116,17, -- 0,124,8,0,131,1,0,125,3,0,120,123,0,124,0,0, -- 106,14,0,68,93,112,0,92,2,0,125,9,0,125,10,0, -- 116,13,0,124,0,0,106,2,0,124,4,0,124,9,0,23, -- 131,2,0,125,12,0,116,18,0,100,6,0,106,19,0,124, -- 12,0,131,1,0,100,7,0,100,3,0,131,1,1,1,124, -- 7,0,124,9,0,23,124,6,0,107,6,0,114,55,1,116, -- 15,0,124,12,0,131,1,0,114,55,1,124,0,0,106,16, -- 0,124,10,0,124,1,0,124,12,0,100,8,0,124,2,0, -- 131,5,0,83,113,55,1,87,124,3,0,114,230,1,116,18, -- 0,100,9,0,106,19,0,124,8,0,131,1,0,131,1,0, -- 1,116,20,0,106,21,0,124,1,0,100,8,0,131,2,0, -- 125,13,0,124,8,0,103,1,0,124,13,0,95,22,0,124, -- 13,0,83,100,8,0,83,41,11,122,125,84,114,121,32,116, -- 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32, -- 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, -- 100,32,109,111,100,117,108,101,44,32,111,114,32,116,104,101, -- 32,110,97,109,101,115,112,97,99,101,10,32,32,32,32,32, -- 32,32,32,112,97,99,107,97,103,101,32,112,111,114,116,105, -- 111,110,115,46,32,82,101,116,117,114,110,115,32,40,108,111, -- 97,100,101,114,44,32,108,105,115,116,45,111,102,45,112,111, -- 114,116,105,111,110,115,41,46,70,114,58,0,0,0,114,56, -- 0,0,0,114,29,0,0,0,114,185,0,0,0,122,9,116, -- 114,121,105,110,103,32,123,125,114,98,0,0,0,78,122,25, -- 112,111,115,115,105,98,108,101,32,110,97,109,101,115,112,97, -- 99,101,32,102,111,114,32,123,125,114,87,0,0,0,41,23, -- 114,32,0,0,0,114,39,0,0,0,114,35,0,0,0,114, -- 3,0,0,0,114,45,0,0,0,114,219,0,0,0,114,40, -- 0,0,0,114,8,1,0,0,218,11,95,102,105,108,108,95, -- 99,97,99,104,101,114,6,0,0,0,114,11,1,0,0,114, -- 88,0,0,0,114,10,1,0,0,114,28,0,0,0,114,7, -- 1,0,0,114,44,0,0,0,114,5,1,0,0,114,46,0, -- 0,0,114,105,0,0,0,114,47,0,0,0,114,121,0,0, -- 0,114,160,0,0,0,114,156,0,0,0,41,14,114,108,0, -- 0,0,114,126,0,0,0,114,180,0,0,0,90,12,105,115, -- 95,110,97,109,101,115,112,97,99,101,90,11,116,97,105,108, -- 95,109,111,100,117,108,101,114,133,0,0,0,90,5,99,97, -- 99,104,101,90,12,99,97,99,104,101,95,109,111,100,117,108, -- 101,90,9,98,97,115,101,95,112,97,116,104,114,225,0,0, -- 0,114,165,0,0,0,90,13,105,110,105,116,95,102,105,108, -- 101,110,97,109,101,90,9,102,117,108,108,95,112,97,116,104, -- 114,164,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,114,181,0,0,0,188,4,0,0,115,68,0, -- 0,0,0,3,6,1,19,1,3,1,34,1,13,1,11,1, -- 15,1,10,1,9,2,9,1,9,1,15,2,9,1,6,2, -- 12,1,18,1,22,1,10,1,15,1,12,1,32,4,12,2, -- 22,1,22,1,25,1,16,1,12,1,29,1,6,1,19,1, -- 18,1,12,1,4,1,122,20,70,105,108,101,70,105,110,100, -- 101,114,46,102,105,110,100,95,115,112,101,99,99,1,0,0, -- 0,0,0,0,0,9,0,0,0,13,0,0,0,67,0,0, -- 0,115,11,1,0,0,124,0,0,106,0,0,125,1,0,121, -- 31,0,116,1,0,106,2,0,124,1,0,112,33,0,116,1, -- 0,106,3,0,131,0,0,131,1,0,125,2,0,87,110,33, -- 0,4,116,4,0,116,5,0,116,6,0,102,3,0,107,10, -- 0,114,75,0,1,1,1,103,0,0,125,2,0,89,110,1, -- 0,88,116,7,0,106,8,0,106,9,0,100,1,0,131,1, -- 0,115,112,0,116,10,0,124,2,0,131,1,0,124,0,0, -- 95,11,0,110,111,0,116,10,0,131,0,0,125,3,0,120, -- 90,0,124,2,0,68,93,82,0,125,4,0,124,4,0,106, -- 12,0,100,2,0,131,1,0,92,3,0,125,5,0,125,6, -- 0,125,7,0,124,6,0,114,191,0,100,3,0,106,13,0, -- 124,5,0,124,7,0,106,14,0,131,0,0,131,2,0,125, -- 8,0,110,6,0,124,5,0,125,8,0,124,3,0,106,15, -- 0,124,8,0,131,1,0,1,113,128,0,87,124,3,0,124, -- 0,0,95,11,0,116,7,0,106,8,0,106,9,0,116,16, -- 0,131,1,0,114,7,1,100,4,0,100,5,0,132,0,0, -- 124,2,0,68,131,1,0,124,0,0,95,17,0,100,6,0, -- 83,41,7,122,68,70,105,108,108,32,116,104,101,32,99,97, -- 99,104,101,32,111,102,32,112,111,116,101,110,116,105,97,108, -- 32,109,111,100,117,108,101,115,32,97,110,100,32,112,97,99, -- 107,97,103,101,115,32,102,111,114,32,116,104,105,115,32,100, -- 105,114,101,99,116,111,114,121,46,114,0,0,0,0,114,58, -- 0,0,0,122,5,123,125,46,123,125,99,1,0,0,0,0, -- 0,0,0,2,0,0,0,3,0,0,0,83,0,0,0,115, -- 28,0,0,0,104,0,0,124,0,0,93,18,0,125,1,0, -- 124,1,0,106,0,0,131,0,0,146,2,0,113,6,0,83, -- 114,4,0,0,0,41,1,114,88,0,0,0,41,2,114,22, -- 0,0,0,90,2,102,110,114,4,0,0,0,114,4,0,0, -- 0,114,5,0,0,0,250,9,60,115,101,116,99,111,109,112, -- 62,6,5,0,0,115,2,0,0,0,9,0,122,41,70,105, -- 108,101,70,105,110,100,101,114,46,95,102,105,108,108,95,99, -- 97,99,104,101,46,60,108,111,99,97,108,115,62,46,60,115, -- 101,116,99,111,109,112,62,78,41,18,114,35,0,0,0,114, -- 3,0,0,0,90,7,108,105,115,116,100,105,114,114,45,0, -- 0,0,114,0,1,0,0,218,15,80,101,114,109,105,115,115, -- 105,111,110,69,114,114,111,114,218,18,78,111,116,65,68,105, -- 114,101,99,116,111,114,121,69,114,114,111,114,114,7,0,0, -- 0,114,8,0,0,0,114,9,0,0,0,114,9,1,0,0, -- 114,10,1,0,0,114,83,0,0,0,114,47,0,0,0,114, -- 88,0,0,0,218,3,97,100,100,114,10,0,0,0,114,11, -- 1,0,0,41,9,114,108,0,0,0,114,35,0,0,0,90, -- 8,99,111,110,116,101,110,116,115,90,21,108,111,119,101,114, -- 95,115,117,102,102,105,120,95,99,111,110,116,101,110,116,115, -- 114,245,0,0,0,114,106,0,0,0,114,237,0,0,0,114, -- 225,0,0,0,90,8,110,101,119,95,110,97,109,101,114,4, -- 0,0,0,114,4,0,0,0,114,5,0,0,0,114,13,1, -- 0,0,233,4,0,0,115,34,0,0,0,0,2,9,1,3, -- 1,31,1,22,3,11,3,18,1,18,7,9,1,13,1,24, -- 1,6,1,27,2,6,1,17,1,9,1,18,1,122,22,70, -- 105,108,101,70,105,110,100,101,114,46,95,102,105,108,108,95, -- 99,97,99,104,101,99,1,0,0,0,0,0,0,0,3,0, -- 0,0,3,0,0,0,7,0,0,0,115,25,0,0,0,135, -- 0,0,135,1,0,102,2,0,100,1,0,100,2,0,134,0, -- 0,125,2,0,124,2,0,83,41,3,97,20,1,0,0,65, -- 32,99,108,97,115,115,32,109,101,116,104,111,100,32,119,104, -- 105,99,104,32,114,101,116,117,114,110,115,32,97,32,99,108, -- 111,115,117,114,101,32,116,111,32,117,115,101,32,111,110,32, -- 115,121,115,46,112,97,116,104,95,104,111,111,107,10,32,32, -- 32,32,32,32,32,32,119,104,105,99,104,32,119,105,108,108, -- 32,114,101,116,117,114,110,32,97,110,32,105,110,115,116,97, -- 110,99,101,32,117,115,105,110,103,32,116,104,101,32,115,112, -- 101,99,105,102,105,101,100,32,108,111,97,100,101,114,115,32, -- 97,110,100,32,116,104,101,32,112,97,116,104,10,32,32,32, -- 32,32,32,32,32,99,97,108,108,101,100,32,111,110,32,116, -- 104,101,32,99,108,111,115,117,114,101,46,10,10,32,32,32, -- 32,32,32,32,32,73,102,32,116,104,101,32,112,97,116,104, -- 32,99,97,108,108,101,100,32,111,110,32,116,104,101,32,99, -- 108,111,115,117,114,101,32,105,115,32,110,111,116,32,97,32, -- 100,105,114,101,99,116,111,114,121,44,32,73,109,112,111,114, -- 116,69,114,114,111,114,32,105,115,10,32,32,32,32,32,32, -- 32,32,114,97,105,115,101,100,46,10,10,32,32,32,32,32, -- 32,32,32,99,1,0,0,0,0,0,0,0,1,0,0,0, -- 4,0,0,0,19,0,0,0,115,43,0,0,0,116,0,0, -- 124,0,0,131,1,0,115,30,0,116,1,0,100,1,0,100, -- 2,0,124,0,0,131,1,1,130,1,0,136,0,0,124,0, +- 114,13,1,0,0,224,7,0,0,115,68,0,0,0,0,3, +- 6,1,19,1,3,1,34,1,13,1,11,1,15,1,10,1, +- 12,2,9,1,9,1,15,2,9,1,6,2,12,1,18,1, +- 22,1,10,1,15,1,12,1,32,4,15,2,22,1,22,1, +- 25,1,16,1,12,1,32,1,6,1,19,1,15,1,12,1, +- 4,1,122,20,70,105,108,101,70,105,110,100,101,114,46,102, +- 105,110,100,95,115,112,101,99,99,1,0,0,0,0,0,0, +- 0,9,0,0,0,13,0,0,0,67,0,0,0,115,14,1, +- 0,0,124,0,0,106,0,0,125,1,0,121,31,0,116,1, +- 0,106,2,0,124,1,0,112,33,0,116,1,0,106,3,0, +- 131,0,0,131,1,0,125,2,0,87,110,33,0,4,116,4, +- 0,116,5,0,116,6,0,102,3,0,107,10,0,114,75,0, +- 1,1,1,103,0,0,125,2,0,89,110,1,0,88,116,7, +- 0,106,8,0,106,9,0,100,1,0,131,1,0,115,112,0, +- 116,10,0,124,2,0,131,1,0,124,0,0,95,11,0,110, +- 111,0,116,10,0,131,0,0,125,3,0,120,90,0,124,2, +- 0,68,93,82,0,125,4,0,124,4,0,106,12,0,100,2, +- 0,131,1,0,92,3,0,125,5,0,125,6,0,125,7,0, +- 124,6,0,114,191,0,100,3,0,106,13,0,124,5,0,124, +- 7,0,106,14,0,131,0,0,131,2,0,125,8,0,110,6, +- 0,124,5,0,125,8,0,124,3,0,106,15,0,124,8,0, +- 131,1,0,1,113,128,0,87,124,3,0,124,0,0,95,11, +- 0,116,7,0,106,8,0,106,9,0,116,16,0,131,1,0, +- 114,10,1,100,4,0,100,5,0,132,0,0,124,2,0,68, +- 131,1,0,124,0,0,95,17,0,110,0,0,100,6,0,83, +- 41,7,122,68,70,105,108,108,32,116,104,101,32,99,97,99, +- 104,101,32,111,102,32,112,111,116,101,110,116,105,97,108,32, +- 109,111,100,117,108,101,115,32,97,110,100,32,112,97,99,107, +- 97,103,101,115,32,102,111,114,32,116,104,105,115,32,100,105, +- 114,101,99,116,111,114,121,46,114,0,0,0,0,114,116,0, +- 0,0,122,5,123,125,46,123,125,99,1,0,0,0,0,0, +- 0,0,2,0,0,0,3,0,0,0,83,0,0,0,115,28, +- 0,0,0,104,0,0,124,0,0,93,18,0,125,1,0,124, +- 1,0,106,0,0,131,0,0,146,2,0,113,6,0,83,114, +- 4,0,0,0,41,1,114,139,0,0,0,41,2,114,22,0, +- 0,0,90,2,102,110,114,4,0,0,0,114,4,0,0,0, +- 114,5,0,0,0,250,9,60,115,101,116,99,111,109,112,62, +- 42,8,0,0,115,2,0,0,0,9,0,122,41,70,105,108, +- 101,70,105,110,100,101,114,46,95,102,105,108,108,95,99,97, +- 99,104,101,46,60,108,111,99,97,108,115,62,46,60,115,101, +- 116,99,111,109,112,62,78,41,18,114,35,0,0,0,114,3, +- 0,0,0,90,7,108,105,115,116,100,105,114,114,45,0,0, +- 0,218,17,70,105,108,101,78,111,116,70,111,117,110,100,69, +- 114,114,111,114,218,15,80,101,114,109,105,115,115,105,111,110, +- 69,114,114,111,114,218,18,78,111,116,65,68,105,114,101,99, +- 116,111,114,121,69,114,114,111,114,114,7,0,0,0,114,8, +- 0,0,0,114,9,0,0,0,114,89,1,0,0,114,90,1, +- 0,0,114,121,0,0,0,114,47,0,0,0,114,139,0,0, +- 0,218,3,97,100,100,114,10,0,0,0,114,91,1,0,0, +- 41,9,114,71,0,0,0,114,35,0,0,0,90,8,99,111, +- 110,116,101,110,116,115,90,21,108,111,119,101,114,95,115,117, +- 102,102,105,120,95,99,111,110,116,101,110,116,115,114,71,1, +- 0,0,114,67,0,0,0,114,65,1,0,0,114,57,1,0, +- 0,90,8,110,101,119,95,110,97,109,101,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,93,1,0,0,13, +- 8,0,0,115,34,0,0,0,0,2,9,1,3,1,31,1, +- 22,3,11,3,18,1,18,7,9,1,13,1,24,1,6,1, +- 27,2,6,1,17,1,9,1,18,1,122,22,70,105,108,101, +- 70,105,110,100,101,114,46,95,102,105,108,108,95,99,97,99, +- 104,101,99,1,0,0,0,0,0,0,0,3,0,0,0,3, +- 0,0,0,7,0,0,0,115,25,0,0,0,135,0,0,135, +- 1,0,102,2,0,100,1,0,100,2,0,134,0,0,125,2, +- 0,124,2,0,83,41,3,97,20,1,0,0,65,32,99,108, +- 97,115,115,32,109,101,116,104,111,100,32,119,104,105,99,104, +- 32,114,101,116,117,114,110,115,32,97,32,99,108,111,115,117, +- 114,101,32,116,111,32,117,115,101,32,111,110,32,115,121,115, +- 46,112,97,116,104,95,104,111,111,107,10,32,32,32,32,32, +- 32,32,32,119,104,105,99,104,32,119,105,108,108,32,114,101, +- 116,117,114,110,32,97,110,32,105,110,115,116,97,110,99,101, +- 32,117,115,105,110,103,32,116,104,101,32,115,112,101,99,105, +- 102,105,101,100,32,108,111,97,100,101,114,115,32,97,110,100, +- 32,116,104,101,32,112,97,116,104,10,32,32,32,32,32,32, +- 32,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32, +- 99,108,111,115,117,114,101,46,10,10,32,32,32,32,32,32, +- 32,32,73,102,32,116,104,101,32,112,97,116,104,32,99,97, +- 108,108,101,100,32,111,110,32,116,104,101,32,99,108,111,115, +- 117,114,101,32,105,115,32,110,111,116,32,97,32,100,105,114, +- 101,99,116,111,114,121,44,32,73,109,112,111,114,116,69,114, +- 114,111,114,32,105,115,10,32,32,32,32,32,32,32,32,114, +- 97,105,115,101,100,46,10,10,32,32,32,32,32,32,32,32, +- 99,1,0,0,0,0,0,0,0,1,0,0,0,4,0,0, +- 0,19,0,0,0,115,46,0,0,0,116,0,0,124,0,0, +- 131,1,0,115,33,0,116,1,0,100,1,0,100,2,0,124, +- 0,0,131,1,1,130,1,0,110,0,0,136,0,0,124,0, - 0,136,1,0,140,1,0,83,41,3,122,45,80,97,116,104, - 32,104,111,111,107,32,102,111,114,32,105,109,112,111,114,116, - 108,105,98,46,109,97,99,104,105,110,101,114,121,46,70,105, - 108,101,70,105,110,100,101,114,46,122,30,111,110,108,121,32, - 100,105,114,101,99,116,111,114,105,101,115,32,97,114,101,32, - 115,117,112,112,111,114,116,101,100,114,35,0,0,0,41,2, -- 114,46,0,0,0,114,107,0,0,0,41,1,114,35,0,0, -- 0,41,2,114,170,0,0,0,114,12,1,0,0,114,4,0, +- 114,46,0,0,0,114,153,0,0,0,41,1,114,35,0,0, +- 0,41,2,114,11,1,0,0,114,92,1,0,0,114,4,0, - 0,0,114,5,0,0,0,218,24,112,97,116,104,95,104,111, - 111,107,95,102,111,114,95,70,105,108,101,70,105,110,100,101, -- 114,18,5,0,0,115,6,0,0,0,0,2,12,1,18,1, +- 114,54,8,0,0,115,6,0,0,0,0,2,12,1,21,1, - 122,54,70,105,108,101,70,105,110,100,101,114,46,112,97,116, - 104,95,104,111,111,107,46,60,108,111,99,97,108,115,62,46, - 112,97,116,104,95,104,111,111,107,95,102,111,114,95,70,105, - 108,101,70,105,110,100,101,114,114,4,0,0,0,41,3,114, -- 170,0,0,0,114,12,1,0,0,114,18,1,0,0,114,4, -- 0,0,0,41,2,114,170,0,0,0,114,12,1,0,0,114, -- 5,0,0,0,218,9,112,97,116,104,95,104,111,111,107,8, -- 5,0,0,115,4,0,0,0,0,10,21,6,122,20,70,105, +- 11,1,0,0,114,92,1,0,0,114,99,1,0,0,114,4, +- 0,0,0,41,2,114,11,1,0,0,114,92,1,0,0,114, +- 5,0,0,0,218,9,112,97,116,104,95,104,111,111,107,44, +- 8,0,0,115,4,0,0,0,0,10,21,6,122,20,70,105, - 108,101,70,105,110,100,101,114,46,112,97,116,104,95,104,111, - 111,107,99,1,0,0,0,0,0,0,0,1,0,0,0,2, - 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106, - 0,0,124,0,0,106,1,0,131,1,0,83,41,2,78,122, - 16,70,105,108,101,70,105,110,100,101,114,40,123,33,114,125, - 41,41,2,114,47,0,0,0,114,35,0,0,0,41,1,114, -- 108,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, -- 0,0,0,114,244,0,0,0,26,5,0,0,115,2,0,0, +- 71,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,114,101,0,0,0,62,8,0,0,115,2,0,0, - 0,0,1,122,19,70,105,108,101,70,105,110,100,101,114,46, -- 95,95,114,101,112,114,95,95,41,15,114,112,0,0,0,114, -- 111,0,0,0,114,113,0,0,0,114,114,0,0,0,114,185, -- 0,0,0,114,250,0,0,0,114,130,0,0,0,114,182,0, -- 0,0,114,124,0,0,0,114,5,1,0,0,114,181,0,0, -- 0,114,13,1,0,0,114,183,0,0,0,114,19,1,0,0, -- 114,244,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 4,0,0,0,114,5,0,0,0,114,6,1,0,0,142,4, +- 95,95,114,101,112,114,95,95,41,15,114,57,0,0,0,114, +- 56,0,0,0,114,58,0,0,0,114,59,0,0,0,114,72, +- 0,0,0,114,74,1,0,0,114,172,0,0,0,114,14,1, +- 0,0,114,165,0,0,0,114,85,1,0,0,114,13,1,0, +- 0,114,93,1,0,0,114,18,1,0,0,114,100,1,0,0, +- 114,101,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,5,0,0,0,114,86,1,0,0,178,7, - 0,0,115,20,0,0,0,12,7,6,2,12,14,12,4,6, -- 2,12,12,12,5,15,45,12,31,18,18,114,6,1,0,0, -- 99,4,0,0,0,0,0,0,0,6,0,0,0,11,0,0, -- 0,67,0,0,0,115,195,0,0,0,124,0,0,106,0,0, -- 100,1,0,131,1,0,125,4,0,124,0,0,106,0,0,100, -- 2,0,131,1,0,125,5,0,124,4,0,115,99,0,124,5, -- 0,114,54,0,124,5,0,106,1,0,125,4,0,110,45,0, -- 124,2,0,124,3,0,107,2,0,114,84,0,116,2,0,124, -- 1,0,124,2,0,131,2,0,125,4,0,110,15,0,116,3, -- 0,124,1,0,124,2,0,131,2,0,125,4,0,124,5,0, -- 115,126,0,116,4,0,124,1,0,124,2,0,100,3,0,124, -- 4,0,131,2,1,125,5,0,121,44,0,124,5,0,124,0, -- 0,100,2,0,60,124,4,0,124,0,0,100,1,0,60,124, -- 2,0,124,0,0,100,4,0,60,124,3,0,124,0,0,100, -- 5,0,60,87,110,18,0,4,116,5,0,107,10,0,114,190, -- 0,1,1,1,89,110,1,0,88,100,0,0,83,41,6,78, -- 218,10,95,95,108,111,97,100,101,114,95,95,218,8,95,95, -- 115,112,101,99,95,95,114,127,0,0,0,90,8,95,95,102, -- 105,108,101,95,95,90,10,95,95,99,97,99,104,101,100,95, -- 95,41,6,218,3,103,101,116,114,127,0,0,0,114,223,0, -- 0,0,114,218,0,0,0,114,167,0,0,0,218,9,69,120, -- 99,101,112,116,105,111,110,41,6,90,2,110,115,114,106,0, -- 0,0,90,8,112,97,116,104,110,97,109,101,90,9,99,112, -- 97,116,104,110,97,109,101,114,127,0,0,0,114,164,0,0, -- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, -- 218,14,95,102,105,120,95,117,112,95,109,111,100,117,108,101, -- 32,5,0,0,115,34,0,0,0,0,2,15,1,15,1,6, -- 1,6,1,12,1,12,1,18,2,15,1,6,1,21,1,3, -- 1,10,1,10,1,10,1,14,1,13,2,114,24,1,0,0, -- 99,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0, -- 0,67,0,0,0,115,55,0,0,0,116,0,0,116,1,0, -- 106,2,0,131,0,0,102,2,0,125,0,0,116,3,0,116, -- 4,0,102,2,0,125,1,0,116,5,0,116,6,0,102,2, -- 0,125,2,0,124,0,0,124,1,0,124,2,0,103,3,0, -- 83,41,1,122,95,82,101,116,117,114,110,115,32,97,32,108, -- 105,115,116,32,111,102,32,102,105,108,101,45,98,97,115,101, -- 100,32,109,111,100,117,108,101,32,108,111,97,100,101,114,115, -- 46,10,10,32,32,32,32,69,97,99,104,32,105,116,101,109, -- 32,105,115,32,97,32,116,117,112,108,101,32,40,108,111,97, -- 100,101,114,44,32,115,117,102,102,105,120,101,115,41,46,10, -- 32,32,32,32,41,7,114,224,0,0,0,114,145,0,0,0, -- 218,18,101,120,116,101,110,115,105,111,110,95,115,117,102,102, -- 105,120,101,115,114,218,0,0,0,114,84,0,0,0,114,223, -- 0,0,0,114,74,0,0,0,41,3,90,10,101,120,116,101, -- 110,115,105,111,110,115,90,6,115,111,117,114,99,101,90,8, -- 98,121,116,101,99,111,100,101,114,4,0,0,0,114,4,0, -- 0,0,114,5,0,0,0,114,161,0,0,0,55,5,0,0, -- 115,8,0,0,0,0,5,18,1,12,1,12,1,114,161,0, -- 0,0,99,1,0,0,0,0,0,0,0,12,0,0,0,12, -- 0,0,0,67,0,0,0,115,70,2,0,0,124,0,0,97, -- 0,0,116,0,0,106,1,0,97,1,0,116,0,0,106,2, -- 0,97,2,0,116,1,0,106,3,0,116,4,0,25,125,1, -- 0,120,76,0,100,26,0,68,93,68,0,125,2,0,124,2, -- 0,116,1,0,106,3,0,107,7,0,114,83,0,116,0,0, -- 106,5,0,124,2,0,131,1,0,125,3,0,110,13,0,116, -- 1,0,106,3,0,124,2,0,25,125,3,0,116,6,0,124, -- 1,0,124,2,0,124,3,0,131,3,0,1,113,44,0,87, -- 100,5,0,100,6,0,103,1,0,102,2,0,100,7,0,100, -- 8,0,100,6,0,103,2,0,102,2,0,102,2,0,125,4, -- 0,120,149,0,124,4,0,68,93,129,0,92,2,0,125,5, -- 0,125,6,0,116,7,0,100,9,0,100,10,0,132,0,0, -- 124,6,0,68,131,1,0,131,1,0,115,199,0,116,8,0, -- 130,1,0,124,6,0,100,11,0,25,125,7,0,124,5,0, -- 116,1,0,106,3,0,107,6,0,114,241,0,116,1,0,106, -- 3,0,124,5,0,25,125,8,0,80,113,156,0,121,20,0, -- 116,0,0,106,5,0,124,5,0,131,1,0,125,8,0,80, -- 87,113,156,0,4,116,9,0,107,10,0,114,28,1,1,1, -- 1,119,156,0,89,113,156,0,88,113,156,0,87,116,9,0, -- 100,12,0,131,1,0,130,1,0,116,6,0,124,1,0,100, -- 13,0,124,8,0,131,3,0,1,116,6,0,124,1,0,100, -- 14,0,124,7,0,131,3,0,1,116,6,0,124,1,0,100, -- 15,0,100,16,0,106,10,0,124,6,0,131,1,0,131,3, -- 0,1,121,19,0,116,0,0,106,5,0,100,17,0,131,1, -- 0,125,9,0,87,110,24,0,4,116,9,0,107,10,0,114, -- 147,1,1,1,1,100,18,0,125,9,0,89,110,1,0,88, -- 116,6,0,124,1,0,100,17,0,124,9,0,131,3,0,1, -- 116,0,0,106,5,0,100,19,0,131,1,0,125,10,0,116, -- 6,0,124,1,0,100,19,0,124,10,0,131,3,0,1,124, -- 5,0,100,7,0,107,2,0,114,238,1,116,0,0,106,5, -- 0,100,20,0,131,1,0,125,11,0,116,6,0,124,1,0, -- 100,21,0,124,11,0,131,3,0,1,116,6,0,124,1,0, -- 100,22,0,116,11,0,131,0,0,131,3,0,1,116,12,0, -- 106,13,0,116,2,0,106,14,0,131,0,0,131,1,0,1, -- 124,5,0,100,7,0,107,2,0,114,66,2,116,15,0,106, -- 16,0,100,23,0,131,1,0,1,100,24,0,116,12,0,107, -- 6,0,114,66,2,100,25,0,116,17,0,95,18,0,100,18, -- 0,83,41,27,122,205,83,101,116,117,112,32,116,104,101,32, -+ 115,112,97,99,101,76,111,97,100,101,114,46,95,95,105,110, -+ 105,116,95,95,99,2,0,0,0,0,0,0,0,2,0,0, -+ 0,2,0,0,0,67,0,0,0,115,16,0,0,0,100,1, -+ 0,106,0,0,124,1,0,106,1,0,131,1,0,83,41,2, -+ 122,115,82,101,116,117,114,110,32,114,101,112,114,32,102,111, -+ 114,32,116,104,101,32,109,111,100,117,108,101,46,10,10,32, -+ 32,32,32,32,32,32,32,84,104,101,32,109,101,116,104,111, -+ 100,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46, -+ 32,32,84,104,101,32,105,109,112,111,114,116,32,109,97,99, -+ 104,105,110,101,114,121,32,100,111,101,115,32,116,104,101,32, -+ 106,111,98,32,105,116,115,101,108,102,46,10,10,32,32,32, -+ 32,32,32,32,32,122,25,60,109,111,100,117,108,101,32,123, -+ 33,114,125,32,40,110,97,109,101,115,112,97,99,101,41,62, -+ 41,2,114,48,0,0,0,114,113,0,0,0,41,2,114,171, -+ 0,0,0,114,191,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,218,11,109,111,100,117,108,101,95, -+ 114,101,112,114,227,3,0,0,115,2,0,0,0,0,7,122, -+ 28,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, -+ 114,46,109,111,100,117,108,101,95,114,101,112,114,99,2,0, -+ 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, -+ 0,0,115,4,0,0,0,100,1,0,83,41,2,78,84,114, -+ 5,0,0,0,41,2,114,109,0,0,0,114,127,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 160,0,0,0,236,3,0,0,115,2,0,0,0,0,1,122, -+ 27,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101, -+ 114,46,105,115,95,112,97,99,107,97,103,101,99,2,0,0, -+ 0,0,0,0,0,2,0,0,0,1,0,0,0,67,0,0, -+ 0,115,4,0,0,0,100,1,0,83,41,2,78,114,31,0, -+ 0,0,114,5,0,0,0,41,2,114,109,0,0,0,114,127, +- 2,12,12,12,5,15,45,12,31,18,18,114,86,1,0,0, +- 99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, +- 0,64,0,0,0,115,46,0,0,0,101,0,0,90,1,0, +- 100,0,0,90,2,0,100,1,0,90,3,0,100,2,0,100, +- 3,0,132,0,0,90,4,0,100,4,0,100,5,0,132,0, +- 0,90,5,0,100,6,0,83,41,7,218,18,95,73,109,112, +- 111,114,116,76,111,99,107,67,111,110,116,101,120,116,122,36, +- 67,111,110,116,101,120,116,32,109,97,110,97,103,101,114,32, +- 102,111,114,32,116,104,101,32,105,109,112,111,114,116,32,108, +- 111,99,107,46,99,1,0,0,0,0,0,0,0,1,0,0, +- 0,1,0,0,0,67,0,0,0,115,14,0,0,0,116,0, +- 0,106,1,0,131,0,0,1,100,1,0,83,41,2,122,24, +- 65,99,113,117,105,114,101,32,116,104,101,32,105,109,112,111, +- 114,116,32,108,111,99,107,46,78,41,2,114,106,0,0,0, +- 114,3,1,0,0,41,1,114,71,0,0,0,114,4,0,0, +- 0,114,4,0,0,0,114,5,0,0,0,114,75,0,0,0, +- 72,8,0,0,115,2,0,0,0,0,2,122,28,95,73,109, +- 112,111,114,116,76,111,99,107,67,111,110,116,101,120,116,46, +- 95,95,101,110,116,101,114,95,95,99,4,0,0,0,0,0, +- 0,0,4,0,0,0,1,0,0,0,67,0,0,0,115,14, ++ 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, ++ 0,67,0,0,0,115,13,0,0,0,100,3,0,124,0,0, ++ 95,0,0,100,2,0,83,41,4,122,31,73,110,118,97,108, ++ 105,100,97,116,101,32,116,104,101,32,100,105,114,101,99,116, ++ 111,114,121,32,109,116,105,109,101,46,114,30,0,0,0,78, ++ 114,139,0,0,0,41,1,114,89,1,0,0,41,1,114,72, + 0,0,0,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,203,0,0,0,239,3,0,0,115,2,0,0,0, -+ 0,1,122,27,95,78,97,109,101,115,112,97,99,101,76,111, -+ 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,99, -+ 2,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0, -+ 67,0,0,0,115,22,0,0,0,116,0,0,100,1,0,100, -+ 2,0,100,3,0,100,4,0,100,5,0,131,3,1,83,41, -+ 6,78,114,31,0,0,0,122,8,60,115,116,114,105,110,103, -+ 62,114,190,0,0,0,114,205,0,0,0,84,41,1,114,206, -+ 0,0,0,41,2,114,109,0,0,0,114,127,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,188, -+ 0,0,0,242,3,0,0,115,2,0,0,0,0,1,122,25, -+ 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, -+ 46,103,101,116,95,99,111,100,101,99,2,0,0,0,0,0, -+ 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, -+ 0,0,0,100,1,0,83,41,2,122,42,85,115,101,32,100, -+ 101,102,97,117,108,116,32,115,101,109,97,110,116,105,99,115, -+ 32,102,111,114,32,109,111,100,117,108,101,32,99,114,101,97, -+ 116,105,111,110,46,78,114,5,0,0,0,41,2,114,109,0, -+ 0,0,114,165,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,187,0,0,0,245,3,0,0,115, -+ 0,0,0,0,122,30,95,78,97,109,101,115,112,97,99,101, -+ 76,111,97,100,101,114,46,99,114,101,97,116,101,95,109,111, -+ 100,117,108,101,99,2,0,0,0,0,0,0,0,2,0,0, -+ 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,0, -+ 0,83,41,1,78,114,5,0,0,0,41,2,114,109,0,0, -+ 0,114,191,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,114,192,0,0,0,248,3,0,0,115,2, -+ 0,0,0,0,1,122,28,95,78,97,109,101,115,112,97,99, -+ 101,76,111,97,100,101,114,46,101,120,101,99,95,109,111,100, -+ 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, -+ 3,0,0,0,67,0,0,0,115,32,0,0,0,116,0,0, -+ 100,1,0,124,0,0,106,1,0,131,2,0,1,116,2,0, -+ 106,3,0,124,0,0,124,1,0,131,2,0,83,41,2,122, -+ 98,76,111,97,100,32,97,32,110,97,109,101,115,112,97,99, -+ 101,32,109,111,100,117,108,101,46,10,10,32,32,32,32,32, -+ 32,32,32,84,104,105,115,32,109,101,116,104,111,100,32,105, -+ 115,32,100,101,112,114,101,99,97,116,101,100,46,32,32,85, -+ 115,101,32,101,120,101,99,95,109,111,100,117,108,101,40,41, -+ 32,105,110,115,116,101,97,100,46,10,10,32,32,32,32,32, -+ 32,32,32,122,38,110,97,109,101,115,112,97,99,101,32,109, -+ 111,100,117,108,101,32,108,111,97,100,101,100,32,119,105,116, -+ 104,32,112,97,116,104,32,123,33,114,125,41,4,114,106,0, -+ 0,0,114,233,0,0,0,114,122,0,0,0,114,193,0,0, -+ 0,41,2,114,109,0,0,0,114,127,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,194,0,0, -+ 0,251,3,0,0,115,4,0,0,0,0,7,16,1,122,28, -+ 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, -+ 46,108,111,97,100,95,109,111,100,117,108,101,78,41,12,114, -+ 113,0,0,0,114,112,0,0,0,114,114,0,0,0,114,186, -+ 0,0,0,114,184,0,0,0,114,249,0,0,0,114,160,0, -+ 0,0,114,203,0,0,0,114,188,0,0,0,114,187,0,0, -+ 0,114,192,0,0,0,114,194,0,0,0,114,5,0,0,0, ++ 0,0,114,75,1,0,0,201,7,0,0,115,2,0,0,0, ++ 0,2,122,28,70,105,108,101,70,105,110,100,101,114,46,105, ++ 110,118,97,108,105,100,97,116,101,95,99,97,99,104,101,115, ++ 99,2,0,0,0,0,0,0,0,3,0,0,0,2,0,0, ++ 0,67,0,0,0,115,59,0,0,0,124,0,0,106,0,0, ++ 124,1,0,131,1,0,125,2,0,124,2,0,100,1,0,107, ++ 8,0,114,37,0,100,1,0,103,0,0,102,2,0,83,124, ++ 2,0,106,1,0,124,2,0,106,2,0,112,55,0,103,0, ++ 0,102,2,0,83,41,2,122,197,84,114,121,32,116,111,32, ++ 102,105,110,100,32,97,32,108,111,97,100,101,114,32,102,111, ++ 114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, ++ 109,111,100,117,108,101,44,32,111,114,32,116,104,101,32,110, ++ 97,109,101,115,112,97,99,101,10,32,32,32,32,32,32,32, ++ 32,112,97,99,107,97,103,101,32,112,111,114,116,105,111,110, ++ 115,46,32,82,101,116,117,114,110,115,32,40,108,111,97,100, ++ 101,114,44,32,108,105,115,116,45,111,102,45,112,111,114,116, ++ 105,111,110,115,41,46,10,10,32,32,32,32,32,32,32,32, ++ 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, ++ 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, ++ 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, ++ 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, ++ 3,114,14,1,0,0,114,170,0,0,0,114,221,0,0,0, ++ 41,3,114,72,0,0,0,114,159,0,0,0,114,178,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,166,0,0,0,207,7,0,0,115,8,0,0,0,0,7, ++ 15,1,12,1,10,1,122,22,70,105,108,101,70,105,110,100, ++ 101,114,46,102,105,110,100,95,108,111,97,100,101,114,99,6, ++ 0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,67, ++ 0,0,0,115,40,0,0,0,124,1,0,124,2,0,124,3, ++ 0,131,2,0,125,6,0,116,0,0,124,2,0,124,3,0, ++ 100,1,0,124,6,0,100,2,0,124,4,0,131,2,2,83, ++ 41,3,78,114,170,0,0,0,114,221,0,0,0,41,1,114, ++ 240,0,0,0,41,7,114,72,0,0,0,114,244,0,0,0, ++ 114,159,0,0,0,114,36,0,0,0,114,229,0,0,0,114, ++ 13,1,0,0,114,170,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,86,1,0,0,219,7,0, ++ 0,115,6,0,0,0,0,1,15,1,18,1,122,20,70,105, ++ 108,101,70,105,110,100,101,114,46,95,103,101,116,95,115,112, ++ 101,99,78,99,3,0,0,0,0,0,0,0,14,0,0,0, ++ 15,0,0,0,67,0,0,0,115,240,1,0,0,100,1,0, ++ 125,3,0,124,1,0,106,0,0,100,2,0,131,1,0,100, ++ 3,0,25,125,4,0,121,34,0,116,1,0,124,0,0,106, ++ 2,0,112,49,0,116,3,0,106,4,0,131,0,0,131,1, ++ 0,106,5,0,125,5,0,87,110,24,0,4,116,6,0,107, ++ 10,0,114,85,0,1,1,1,100,10,0,125,5,0,89,110, ++ 1,0,88,124,5,0,124,0,0,106,7,0,107,3,0,114, ++ 123,0,124,0,0,106,8,0,131,0,0,1,124,5,0,124, ++ 0,0,95,7,0,110,0,0,116,9,0,131,0,0,114,156, ++ 0,124,0,0,106,10,0,125,6,0,124,4,0,106,11,0, ++ 131,0,0,125,7,0,110,15,0,124,0,0,106,12,0,125, ++ 6,0,124,4,0,125,7,0,124,7,0,124,6,0,107,6, ++ 0,114,51,1,116,13,0,124,0,0,106,2,0,124,4,0, ++ 131,2,0,125,8,0,120,103,0,124,0,0,106,14,0,68, ++ 93,77,0,92,2,0,125,9,0,125,10,0,100,5,0,124, ++ 9,0,23,125,11,0,116,13,0,124,8,0,124,11,0,131, ++ 2,0,125,12,0,116,15,0,124,12,0,131,1,0,114,211, ++ 0,124,0,0,106,16,0,124,10,0,124,1,0,124,12,0, ++ 124,8,0,103,1,0,124,2,0,131,5,0,83,113,211,0, ++ 87,116,17,0,124,8,0,131,1,0,125,3,0,110,0,0, ++ 120,126,0,124,0,0,106,14,0,68,93,115,0,92,2,0, ++ 125,9,0,125,10,0,116,13,0,124,0,0,106,2,0,124, ++ 4,0,124,9,0,23,131,2,0,125,12,0,116,18,0,100, ++ 6,0,106,19,0,124,12,0,131,1,0,100,7,0,100,3, ++ 0,131,1,1,1,124,7,0,124,9,0,23,124,6,0,107, ++ 6,0,114,61,1,116,15,0,124,12,0,131,1,0,114,176, ++ 1,124,0,0,106,16,0,124,10,0,124,1,0,124,12,0, ++ 100,8,0,124,2,0,131,5,0,83,113,61,1,113,61,1, ++ 87,124,3,0,114,236,1,116,18,0,100,9,0,106,19,0, ++ 124,8,0,131,1,0,131,1,0,1,116,20,0,124,1,0, ++ 100,8,0,131,2,0,125,13,0,124,8,0,103,1,0,124, ++ 13,0,95,21,0,124,13,0,83,100,8,0,83,41,11,122, ++ 125,84,114,121,32,116,111,32,102,105,110,100,32,97,32,108, ++ 111,97,100,101,114,32,102,111,114,32,116,104,101,32,115,112, ++ 101,99,105,102,105,101,100,32,109,111,100,117,108,101,44,32, ++ 111,114,32,116,104,101,32,110,97,109,101,115,112,97,99,101, ++ 10,32,32,32,32,32,32,32,32,112,97,99,107,97,103,101, ++ 32,112,111,114,116,105,111,110,115,46,32,82,101,116,117,114, ++ 110,115,32,40,108,111,97,100,101,114,44,32,108,105,115,116, ++ 45,111,102,45,112,111,114,116,105,111,110,115,41,46,70,114, ++ 117,0,0,0,114,116,0,0,0,114,30,0,0,0,114,73, ++ 0,0,0,122,9,116,114,121,105,110,103,32,123,125,114,146, ++ 0,0,0,78,122,25,112,111,115,115,105,98,108,101,32,110, ++ 97,109,101,115,112,97,99,101,32,102,111,114,32,123,125,114, ++ 139,0,0,0,41,22,114,33,0,0,0,114,40,0,0,0, ++ 114,36,0,0,0,114,4,0,0,0,114,46,0,0,0,114, ++ 54,1,0,0,114,41,0,0,0,114,89,1,0,0,218,11, ++ 95,102,105,108,108,95,99,97,99,104,101,114,7,0,0,0, ++ 114,92,1,0,0,114,140,0,0,0,114,91,1,0,0,114, ++ 29,0,0,0,114,88,1,0,0,114,45,0,0,0,114,86, ++ 1,0,0,114,47,0,0,0,114,153,0,0,0,114,48,0, ++ 0,0,114,217,0,0,0,114,221,0,0,0,41,14,114,72, ++ 0,0,0,114,159,0,0,0,114,13,1,0,0,90,12,105, ++ 115,95,110,97,109,101,115,112,97,99,101,90,11,116,97,105, ++ 108,95,109,111,100,117,108,101,114,184,0,0,0,90,5,99, ++ 97,99,104,101,90,12,99,97,99,104,101,95,109,111,100,117, ++ 108,101,90,9,98,97,115,101,95,112,97,116,104,114,58,1, ++ 0,0,114,244,0,0,0,90,13,105,110,105,116,95,102,105, ++ 108,101,110,97,109,101,90,9,102,117,108,108,95,112,97,116, ++ 104,114,178,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,114,14,1,0,0,224,7,0,0,115,68, ++ 0,0,0,0,3,6,1,19,1,3,1,34,1,13,1,11, ++ 1,15,1,10,1,12,2,9,1,9,1,15,2,9,1,6, ++ 2,12,1,18,1,22,1,10,1,15,1,12,1,32,4,15, ++ 2,22,1,22,1,25,1,16,1,12,1,32,1,6,1,19, ++ 1,15,1,12,1,4,1,122,20,70,105,108,101,70,105,110, ++ 100,101,114,46,102,105,110,100,95,115,112,101,99,99,1,0, ++ 0,0,0,0,0,0,9,0,0,0,13,0,0,0,67,0, ++ 0,0,115,14,1,0,0,124,0,0,106,0,0,125,1,0, ++ 121,31,0,116,1,0,106,2,0,124,1,0,112,33,0,116, ++ 1,0,106,3,0,131,0,0,131,1,0,125,2,0,87,110, ++ 33,0,4,116,4,0,116,5,0,116,6,0,102,3,0,107, ++ 10,0,114,75,0,1,1,1,103,0,0,125,2,0,89,110, ++ 1,0,88,116,7,0,106,8,0,106,9,0,100,1,0,131, ++ 1,0,115,112,0,116,10,0,124,2,0,131,1,0,124,0, ++ 0,95,11,0,110,111,0,116,10,0,131,0,0,125,3,0, ++ 120,90,0,124,2,0,68,93,82,0,125,4,0,124,4,0, ++ 106,12,0,100,2,0,131,1,0,92,3,0,125,5,0,125, ++ 6,0,125,7,0,124,6,0,114,191,0,100,3,0,106,13, ++ 0,124,5,0,124,7,0,106,14,0,131,0,0,131,2,0, ++ 125,8,0,110,6,0,124,5,0,125,8,0,124,3,0,106, ++ 15,0,124,8,0,131,1,0,1,113,128,0,87,124,3,0, ++ 124,0,0,95,11,0,116,7,0,106,8,0,106,9,0,116, ++ 16,0,131,1,0,114,10,1,100,4,0,100,5,0,132,0, ++ 0,124,2,0,68,131,1,0,124,0,0,95,17,0,110,0, ++ 0,100,6,0,83,41,7,122,68,70,105,108,108,32,116,104, ++ 101,32,99,97,99,104,101,32,111,102,32,112,111,116,101,110, ++ 116,105,97,108,32,109,111,100,117,108,101,115,32,97,110,100, ++ 32,112,97,99,107,97,103,101,115,32,102,111,114,32,116,104, ++ 105,115,32,100,105,114,101,99,116,111,114,121,46,114,0,0, ++ 0,0,114,117,0,0,0,122,5,123,125,46,123,125,99,1, ++ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,83, ++ 0,0,0,115,28,0,0,0,104,0,0,124,0,0,93,18, ++ 0,125,1,0,124,1,0,106,0,0,131,0,0,146,2,0, ++ 113,6,0,83,114,5,0,0,0,41,1,114,140,0,0,0, ++ 41,2,114,23,0,0,0,90,2,102,110,114,5,0,0,0, ++ 114,5,0,0,0,114,6,0,0,0,250,9,60,115,101,116, ++ 99,111,109,112,62,42,8,0,0,115,2,0,0,0,9,0, ++ 122,41,70,105,108,101,70,105,110,100,101,114,46,95,102,105, ++ 108,108,95,99,97,99,104,101,46,60,108,111,99,97,108,115, ++ 62,46,60,115,101,116,99,111,109,112,62,78,41,18,114,36, ++ 0,0,0,114,4,0,0,0,90,7,108,105,115,116,100,105, ++ 114,114,46,0,0,0,218,17,70,105,108,101,78,111,116,70, ++ 111,117,110,100,69,114,114,111,114,218,15,80,101,114,109,105, ++ 115,115,105,111,110,69,114,114,111,114,218,18,78,111,116,65, ++ 68,105,114,101,99,116,111,114,121,69,114,114,111,114,114,8, ++ 0,0,0,114,9,0,0,0,114,10,0,0,0,114,90,1, ++ 0,0,114,91,1,0,0,114,122,0,0,0,114,48,0,0, ++ 0,114,140,0,0,0,218,3,97,100,100,114,11,0,0,0, ++ 114,92,1,0,0,41,9,114,72,0,0,0,114,36,0,0, ++ 0,90,8,99,111,110,116,101,110,116,115,90,21,108,111,119, ++ 101,114,95,115,117,102,102,105,120,95,99,111,110,116,101,110, ++ 116,115,114,72,1,0,0,114,68,0,0,0,114,66,1,0, ++ 0,114,58,1,0,0,90,8,110,101,119,95,110,97,109,101, + 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, -+ 248,0,0,0,223,3,0,0,115,16,0,0,0,12,1,12, -+ 3,18,9,12,3,12,3,12,3,12,3,12,3,114,248,0, -+ 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,5, -+ 0,0,0,64,0,0,0,115,160,0,0,0,101,0,0,90, -+ 1,0,100,0,0,90,2,0,100,1,0,90,3,0,101,4, -+ 0,100,2,0,100,3,0,132,0,0,131,1,0,90,5,0, -+ 101,4,0,100,4,0,100,5,0,132,0,0,131,1,0,90, -+ 6,0,101,4,0,100,6,0,100,7,0,132,0,0,131,1, -+ 0,90,7,0,101,4,0,100,8,0,100,9,0,132,0,0, -+ 131,1,0,90,8,0,101,4,0,100,10,0,100,11,0,100, -+ 12,0,132,1,0,131,1,0,90,9,0,101,4,0,100,10, -+ 0,100,10,0,100,13,0,100,14,0,132,2,0,131,1,0, -+ 90,10,0,101,4,0,100,10,0,100,15,0,100,16,0,132, -+ 1,0,131,1,0,90,11,0,100,10,0,83,41,17,218,10, -+ 80,97,116,104,70,105,110,100,101,114,122,62,77,101,116,97, -+ 32,112,97,116,104,32,102,105,110,100,101,114,32,102,111,114, -+ 32,115,121,115,46,112,97,116,104,32,97,110,100,32,112,97, -+ 99,107,97,103,101,32,95,95,112,97,116,104,95,95,32,97, -+ 116,116,114,105,98,117,116,101,115,46,99,1,0,0,0,0, -+ 0,0,0,2,0,0,0,4,0,0,0,67,0,0,0,115, -+ 55,0,0,0,120,48,0,116,0,0,106,1,0,106,2,0, -+ 131,0,0,68,93,31,0,125,1,0,116,3,0,124,1,0, -+ 100,1,0,131,2,0,114,16,0,124,1,0,106,4,0,131, -+ 0,0,1,113,16,0,87,100,2,0,83,41,3,122,125,67, -+ 97,108,108,32,116,104,101,32,105,110,118,97,108,105,100,97, -+ 116,101,95,99,97,99,104,101,115,40,41,32,109,101,116,104, -+ 111,100,32,111,110,32,97,108,108,32,112,97,116,104,32,101, -+ 110,116,114,121,32,102,105,110,100,101,114,115,10,32,32,32, -+ 32,32,32,32,32,115,116,111,114,101,100,32,105,110,32,115, -+ 121,115,46,112,97,116,104,95,105,109,112,111,114,116,101,114, -+ 95,99,97,99,104,101,115,32,40,119,104,101,114,101,32,105, -+ 109,112,108,101,109,101,110,116,101,100,41,46,218,17,105,110, -+ 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,78, -+ 41,5,114,8,0,0,0,218,19,112,97,116,104,95,105,109, -+ 112,111,114,116,101,114,95,99,97,99,104,101,218,6,118,97, -+ 108,117,101,115,114,116,0,0,0,114,251,0,0,0,41,2, -+ 114,171,0,0,0,218,6,102,105,110,100,101,114,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,251,0,0, -+ 0,12,4,0,0,115,6,0,0,0,0,4,22,1,15,1, -+ 122,28,80,97,116,104,70,105,110,100,101,114,46,105,110,118, -+ 97,108,105,100,97,116,101,95,99,97,99,104,101,115,99,2, -+ 0,0,0,0,0,0,0,3,0,0,0,12,0,0,0,67, -+ 0,0,0,115,107,0,0,0,116,0,0,106,1,0,100,1, -+ 0,107,9,0,114,41,0,116,0,0,106,1,0,12,114,41, -+ 0,116,2,0,106,3,0,100,2,0,116,4,0,131,2,0, -+ 1,120,59,0,116,0,0,106,1,0,68,93,44,0,125,2, -+ 0,121,14,0,124,2,0,124,1,0,131,1,0,83,87,113, -+ 51,0,4,116,5,0,107,10,0,114,94,0,1,1,1,119, -+ 51,0,89,113,51,0,88,113,51,0,87,100,1,0,83,100, -+ 1,0,83,41,3,122,113,83,101,97,114,99,104,32,115,101, -+ 113,117,101,110,99,101,32,111,102,32,104,111,111,107,115,32, -+ 102,111,114,32,97,32,102,105,110,100,101,114,32,102,111,114, -+ 32,39,112,97,116,104,39,46,10,10,32,32,32,32,32,32, -+ 32,32,73,102,32,39,104,111,111,107,115,39,32,105,115,32, -+ 102,97,108,115,101,32,116,104,101,110,32,117,115,101,32,115, -+ 121,115,46,112,97,116,104,95,104,111,111,107,115,46,10,10, -+ 32,32,32,32,32,32,32,32,78,122,23,115,121,115,46,112, -+ 97,116,104,95,104,111,111,107,115,32,105,115,32,101,109,112, -+ 116,121,41,6,114,8,0,0,0,218,10,112,97,116,104,95, -+ 104,111,111,107,115,114,61,0,0,0,114,62,0,0,0,114, -+ 126,0,0,0,114,108,0,0,0,41,3,114,171,0,0,0, -+ 114,36,0,0,0,90,4,104,111,111,107,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,11,95,112,97,116, -+ 104,95,104,111,111,107,115,20,4,0,0,115,16,0,0,0, -+ 0,7,25,1,16,1,16,1,3,1,14,1,13,1,12,2, -+ 122,22,80,97,116,104,70,105,110,100,101,114,46,95,112,97, -+ 116,104,95,104,111,111,107,115,99,2,0,0,0,0,0,0, -+ 0,3,0,0,0,19,0,0,0,67,0,0,0,115,123,0, -+ 0,0,124,1,0,100,1,0,107,2,0,114,53,0,121,16, -+ 0,116,0,0,106,1,0,131,0,0,125,1,0,87,110,22, -+ 0,4,116,2,0,107,10,0,114,52,0,1,1,1,100,2, -+ 0,83,89,110,1,0,88,121,17,0,116,3,0,106,4,0, -+ 124,1,0,25,125,2,0,87,110,46,0,4,116,5,0,107, -+ 10,0,114,118,0,1,1,1,124,0,0,106,6,0,124,1, -+ 0,131,1,0,125,2,0,124,2,0,116,3,0,106,4,0, -+ 124,1,0,60,89,110,1,0,88,124,2,0,83,41,3,122, -+ 210,71,101,116,32,116,104,101,32,102,105,110,100,101,114,32, -+ 102,111,114,32,116,104,101,32,112,97,116,104,32,101,110,116, -+ 114,121,32,102,114,111,109,32,115,121,115,46,112,97,116,104, -+ 95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,46, -+ 10,10,32,32,32,32,32,32,32,32,73,102,32,116,104,101, -+ 32,112,97,116,104,32,101,110,116,114,121,32,105,115,32,110, -+ 111,116,32,105,110,32,116,104,101,32,99,97,99,104,101,44, -+ 32,102,105,110,100,32,116,104,101,32,97,112,112,114,111,112, -+ 114,105,97,116,101,32,102,105,110,100,101,114,10,32,32,32, -+ 32,32,32,32,32,97,110,100,32,99,97,99,104,101,32,105, -+ 116,46,32,73,102,32,110,111,32,102,105,110,100,101,114,32, -+ 105,115,32,97,118,97,105,108,97,98,108,101,44,32,115,116, -+ 111,114,101,32,78,111,110,101,46,10,10,32,32,32,32,32, -+ 32,32,32,114,31,0,0,0,78,41,7,114,4,0,0,0, -+ 114,46,0,0,0,218,17,70,105,108,101,78,111,116,70,111, -+ 117,110,100,69,114,114,111,114,114,8,0,0,0,114,252,0, -+ 0,0,114,138,0,0,0,114,0,1,0,0,41,3,114,171, -+ 0,0,0,114,36,0,0,0,114,254,0,0,0,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,218,20,95,112, -+ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, -+ 104,101,37,4,0,0,115,22,0,0,0,0,8,12,1,3, -+ 1,16,1,13,3,9,1,3,1,17,1,13,1,15,1,18, -+ 1,122,31,80,97,116,104,70,105,110,100,101,114,46,95,112, -+ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, -+ 104,101,99,3,0,0,0,0,0,0,0,6,0,0,0,3, -+ 0,0,0,67,0,0,0,115,119,0,0,0,116,0,0,124, -+ 2,0,100,1,0,131,2,0,114,39,0,124,2,0,106,1, -+ 0,124,1,0,131,1,0,92,2,0,125,3,0,125,4,0, -+ 110,21,0,124,2,0,106,2,0,124,1,0,131,1,0,125, -+ 3,0,103,0,0,125,4,0,124,3,0,100,0,0,107,9, -+ 0,114,88,0,116,3,0,106,4,0,124,1,0,124,3,0, -+ 131,2,0,83,116,3,0,106,5,0,124,1,0,100,0,0, -+ 131,2,0,125,5,0,124,4,0,124,5,0,95,6,0,124, -+ 5,0,83,41,2,78,114,125,0,0,0,41,7,114,116,0, -+ 0,0,114,125,0,0,0,114,183,0,0,0,114,122,0,0, -+ 0,114,180,0,0,0,114,161,0,0,0,114,157,0,0,0, -+ 41,6,114,171,0,0,0,114,127,0,0,0,114,254,0,0, -+ 0,114,128,0,0,0,114,129,0,0,0,114,165,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,218, -+ 16,95,108,101,103,97,99,121,95,103,101,116,95,115,112,101, -+ 99,59,4,0,0,115,18,0,0,0,0,4,15,1,24,2, -+ 15,1,6,1,12,1,16,1,18,1,9,1,122,27,80,97, -+ 116,104,70,105,110,100,101,114,46,95,108,101,103,97,99,121, -+ 95,103,101,116,95,115,112,101,99,78,99,4,0,0,0,0, -+ 0,0,0,9,0,0,0,5,0,0,0,67,0,0,0,115, -+ 243,0,0,0,103,0,0,125,4,0,120,230,0,124,2,0, -+ 68,93,191,0,125,5,0,116,0,0,124,5,0,116,1,0, -+ 116,2,0,102,2,0,131,2,0,115,43,0,113,13,0,124, -+ 0,0,106,3,0,124,5,0,131,1,0,125,6,0,124,6, -+ 0,100,1,0,107,9,0,114,13,0,116,4,0,124,6,0, -+ 100,2,0,131,2,0,114,106,0,124,6,0,106,5,0,124, -+ 1,0,124,3,0,131,2,0,125,7,0,110,18,0,124,0, -+ 0,106,6,0,124,1,0,124,6,0,131,2,0,125,7,0, -+ 124,7,0,100,1,0,107,8,0,114,139,0,113,13,0,124, -+ 7,0,106,7,0,100,1,0,107,9,0,114,158,0,124,7, -+ 0,83,124,7,0,106,8,0,125,8,0,124,8,0,100,1, -+ 0,107,8,0,114,191,0,116,9,0,100,3,0,131,1,0, -+ 130,1,0,124,4,0,106,10,0,124,8,0,131,1,0,1, -+ 113,13,0,87,116,11,0,106,12,0,124,1,0,100,1,0, -+ 131,2,0,125,7,0,124,4,0,124,7,0,95,8,0,124, -+ 7,0,83,100,1,0,83,41,4,122,63,70,105,110,100,32, -+ 116,104,101,32,108,111,97,100,101,114,32,111,114,32,110,97, -+ 109,101,115,112,97,99,101,95,112,97,116,104,32,102,111,114, -+ 32,116,104,105,115,32,109,111,100,117,108,101,47,112,97,99, -+ 107,97,103,101,32,110,97,109,101,46,78,114,182,0,0,0, -+ 122,19,115,112,101,99,32,109,105,115,115,105,110,103,32,108, -+ 111,97,100,101,114,41,13,114,144,0,0,0,114,70,0,0, -+ 0,218,5,98,121,116,101,115,114,2,1,0,0,114,116,0, -+ 0,0,114,182,0,0,0,114,3,1,0,0,114,128,0,0, -+ 0,114,157,0,0,0,114,108,0,0,0,114,150,0,0,0, -+ 114,122,0,0,0,114,161,0,0,0,41,9,114,171,0,0, -+ 0,114,127,0,0,0,114,36,0,0,0,114,181,0,0,0, -+ 218,14,110,97,109,101,115,112,97,99,101,95,112,97,116,104, -+ 90,5,101,110,116,114,121,114,254,0,0,0,114,165,0,0, -+ 0,114,129,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,9,95,103,101,116,95,115,112,101,99, -+ 74,4,0,0,115,40,0,0,0,0,5,6,1,13,1,21, -+ 1,3,1,15,1,12,1,15,1,21,2,18,1,12,1,3, -+ 1,15,1,4,1,9,1,12,1,12,5,17,2,18,1,9, -+ 1,122,20,80,97,116,104,70,105,110,100,101,114,46,95,103, -+ 101,116,95,115,112,101,99,99,4,0,0,0,0,0,0,0, -+ 6,0,0,0,4,0,0,0,67,0,0,0,115,140,0,0, -+ 0,124,2,0,100,1,0,107,8,0,114,21,0,116,0,0, -+ 106,1,0,125,2,0,124,0,0,106,2,0,124,1,0,124, -+ 2,0,124,3,0,131,3,0,125,4,0,124,4,0,100,1, -+ 0,107,8,0,114,58,0,100,1,0,83,124,4,0,106,3, -+ 0,100,1,0,107,8,0,114,132,0,124,4,0,106,4,0, -+ 125,5,0,124,5,0,114,125,0,100,2,0,124,4,0,95, -+ 5,0,116,6,0,124,1,0,124,5,0,124,0,0,106,2, -+ 0,131,3,0,124,4,0,95,4,0,124,4,0,83,100,1, -+ 0,83,110,4,0,124,4,0,83,100,1,0,83,41,3,122, -+ 98,102,105,110,100,32,116,104,101,32,109,111,100,117,108,101, -+ 32,111,110,32,115,121,115,46,112,97,116,104,32,111,114,32, -+ 39,112,97,116,104,39,32,98,97,115,101,100,32,111,110,32, -+ 115,121,115,46,112,97,116,104,95,104,111,111,107,115,32,97, -+ 110,100,10,32,32,32,32,32,32,32,32,115,121,115,46,112, -+ 97,116,104,95,105,109,112,111,114,116,101,114,95,99,97,99, -+ 104,101,46,78,90,9,110,97,109,101,115,112,97,99,101,41, -+ 7,114,8,0,0,0,114,36,0,0,0,114,6,1,0,0, -+ 114,128,0,0,0,114,157,0,0,0,114,159,0,0,0,114, -+ 231,0,0,0,41,6,114,171,0,0,0,114,127,0,0,0, -+ 114,36,0,0,0,114,181,0,0,0,114,165,0,0,0,114, -+ 5,1,0,0,114,5,0,0,0,114,5,0,0,0,114,6, -+ 0,0,0,114,182,0,0,0,106,4,0,0,115,26,0,0, -+ 0,0,4,12,1,9,1,21,1,12,1,4,1,15,1,9, -+ 1,6,3,9,1,24,1,4,2,7,2,122,20,80,97,116, -+ 104,70,105,110,100,101,114,46,102,105,110,100,95,115,112,101, -+ 99,99,3,0,0,0,0,0,0,0,4,0,0,0,3,0, -+ 0,0,67,0,0,0,115,41,0,0,0,124,0,0,106,0, -+ 0,124,1,0,124,2,0,131,2,0,125,3,0,124,3,0, -+ 100,1,0,107,8,0,114,34,0,100,1,0,83,124,3,0, -+ 106,1,0,83,41,2,122,170,102,105,110,100,32,116,104,101, -+ 32,109,111,100,117,108,101,32,111,110,32,115,121,115,46,112, -+ 97,116,104,32,111,114,32,39,112,97,116,104,39,32,98,97, -+ 115,101,100,32,111,110,32,115,121,115,46,112,97,116,104,95, -+ 104,111,111,107,115,32,97,110,100,10,32,32,32,32,32,32, -+ 32,32,115,121,115,46,112,97,116,104,95,105,109,112,111,114, -+ 116,101,114,95,99,97,99,104,101,46,10,10,32,32,32,32, -+ 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, -+ 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, -+ 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, -+ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, -+ 32,32,78,41,2,114,182,0,0,0,114,128,0,0,0,41, -+ 4,114,171,0,0,0,114,127,0,0,0,114,36,0,0,0, -+ 114,165,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,183,0,0,0,128,4,0,0,115,8,0, -+ 0,0,0,8,18,1,12,1,4,1,122,22,80,97,116,104, -+ 70,105,110,100,101,114,46,102,105,110,100,95,109,111,100,117, -+ 108,101,41,12,114,113,0,0,0,114,112,0,0,0,114,114, -+ 0,0,0,114,115,0,0,0,114,184,0,0,0,114,251,0, -+ 0,0,114,0,1,0,0,114,2,1,0,0,114,3,1,0, -+ 0,114,6,1,0,0,114,182,0,0,0,114,183,0,0,0, -+ 114,5,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,250,0,0,0,8,4,0,0,115,22,0, -+ 0,0,12,2,6,2,18,8,18,17,18,22,18,15,3,1, -+ 18,31,3,1,21,21,3,1,114,250,0,0,0,99,0,0, -+ 0,0,0,0,0,0,0,0,0,0,3,0,0,0,64,0, -+ 0,0,115,133,0,0,0,101,0,0,90,1,0,100,0,0, -+ 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, -+ 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, -+ 0,101,6,0,90,7,0,100,6,0,100,7,0,132,0,0, -+ 90,8,0,100,8,0,100,9,0,132,0,0,90,9,0,100, -+ 10,0,100,11,0,100,12,0,132,1,0,90,10,0,100,13, -+ 0,100,14,0,132,0,0,90,11,0,101,12,0,100,15,0, -+ 100,16,0,132,0,0,131,1,0,90,13,0,100,17,0,100, -+ 18,0,132,0,0,90,14,0,100,10,0,83,41,19,218,10, -+ 70,105,108,101,70,105,110,100,101,114,122,172,70,105,108,101, -+ 45,98,97,115,101,100,32,102,105,110,100,101,114,46,10,10, -+ 32,32,32,32,73,110,116,101,114,97,99,116,105,111,110,115, -+ 32,119,105,116,104,32,116,104,101,32,102,105,108,101,32,115, -+ 121,115,116,101,109,32,97,114,101,32,99,97,99,104,101,100, -+ 32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101, -+ 44,32,98,101,105,110,103,10,32,32,32,32,114,101,102,114, -+ 101,115,104,101,100,32,119,104,101,110,32,116,104,101,32,100, -+ 105,114,101,99,116,111,114,121,32,116,104,101,32,102,105,110, -+ 100,101,114,32,105,115,32,104,97,110,100,108,105,110,103,32, -+ 104,97,115,32,98,101,101,110,32,109,111,100,105,102,105,101, -+ 100,46,10,10,32,32,32,32,99,2,0,0,0,0,0,0, -+ 0,5,0,0,0,5,0,0,0,7,0,0,0,115,122,0, -+ 0,0,103,0,0,125,3,0,120,52,0,124,2,0,68,93, -+ 44,0,92,2,0,137,0,0,125,4,0,124,3,0,106,0, -+ 0,135,0,0,102,1,0,100,1,0,100,2,0,134,0,0, -+ 124,4,0,68,131,1,0,131,1,0,1,113,13,0,87,124, -+ 3,0,124,0,0,95,1,0,124,1,0,112,79,0,100,3, -+ 0,124,0,0,95,2,0,100,6,0,124,0,0,95,3,0, -+ 116,4,0,131,0,0,124,0,0,95,5,0,116,4,0,131, -+ 0,0,124,0,0,95,6,0,100,5,0,83,41,7,122,154, -+ 73,110,105,116,105,97,108,105,122,101,32,119,105,116,104,32, -+ 116,104,101,32,112,97,116,104,32,116,111,32,115,101,97,114, -+ 99,104,32,111,110,32,97,110,100,32,97,32,118,97,114,105, -+ 97,98,108,101,32,110,117,109,98,101,114,32,111,102,10,32, -+ 32,32,32,32,32,32,32,50,45,116,117,112,108,101,115,32, -+ 99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,108, -+ 111,97,100,101,114,32,97,110,100,32,116,104,101,32,102,105, -+ 108,101,32,115,117,102,102,105,120,101,115,32,116,104,101,32, -+ 108,111,97,100,101,114,10,32,32,32,32,32,32,32,32,114, -+ 101,99,111,103,110,105,122,101,115,46,99,1,0,0,0,0, -+ 0,0,0,2,0,0,0,3,0,0,0,51,0,0,0,115, -+ 27,0,0,0,124,0,0,93,17,0,125,1,0,124,1,0, -+ 136,0,0,102,2,0,86,1,113,3,0,100,0,0,83,41, -+ 1,78,114,5,0,0,0,41,2,114,23,0,0,0,114,226, -+ 0,0,0,41,1,114,128,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,228,0,0,0,157,4,0,0,115,2,0, -+ 0,0,6,0,122,38,70,105,108,101,70,105,110,100,101,114, -+ 46,95,95,105,110,105,116,95,95,46,60,108,111,99,97,108, -+ 115,62,46,60,103,101,110,101,120,112,114,62,114,59,0,0, -+ 0,114,30,0,0,0,78,114,88,0,0,0,41,7,114,150, -+ 0,0,0,218,8,95,108,111,97,100,101,114,115,114,36,0, -+ 0,0,218,11,95,112,97,116,104,95,109,116,105,109,101,218, -+ 3,115,101,116,218,11,95,112,97,116,104,95,99,97,99,104, -+ 101,218,19,95,114,101,108,97,120,101,100,95,112,97,116,104, -+ 95,99,97,99,104,101,41,5,114,109,0,0,0,114,36,0, -+ 0,0,218,14,108,111,97,100,101,114,95,100,101,116,97,105, -+ 108,115,90,7,108,111,97,100,101,114,115,114,167,0,0,0, -+ 114,5,0,0,0,41,1,114,128,0,0,0,114,6,0,0, -+ 0,114,186,0,0,0,151,4,0,0,115,16,0,0,0,0, -+ 4,6,1,19,1,36,1,9,2,15,1,9,1,12,1,122, -+ 19,70,105,108,101,70,105,110,100,101,114,46,95,95,105,110, -+ 105,116,95,95,99,1,0,0,0,0,0,0,0,1,0,0, -+ 0,2,0,0,0,67,0,0,0,115,13,0,0,0,100,3, -+ 0,124,0,0,95,0,0,100,2,0,83,41,4,122,31,73, -+ 110,118,97,108,105,100,97,116,101,32,116,104,101,32,100,105, -+ 114,101,99,116,111,114,121,32,109,116,105,109,101,46,114,30, -+ 0,0,0,78,114,88,0,0,0,41,1,114,9,1,0,0, -+ 41,1,114,109,0,0,0,114,5,0,0,0,114,5,0,0, -+ 0,114,6,0,0,0,114,251,0,0,0,165,4,0,0,115, -+ 2,0,0,0,0,2,122,28,70,105,108,101,70,105,110,100, -+ 101,114,46,105,110,118,97,108,105,100,97,116,101,95,99,97, -+ 99,104,101,115,99,2,0,0,0,0,0,0,0,3,0,0, -+ 0,2,0,0,0,67,0,0,0,115,59,0,0,0,124,0, -+ 0,106,0,0,124,1,0,131,1,0,125,2,0,124,2,0, -+ 100,1,0,107,8,0,114,37,0,100,1,0,103,0,0,102, -+ 2,0,83,124,2,0,106,1,0,124,2,0,106,2,0,112, -+ 55,0,103,0,0,102,2,0,83,41,2,122,197,84,114,121, -+ 32,116,111,32,102,105,110,100,32,97,32,108,111,97,100,101, -+ 114,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102, -+ 105,101,100,32,109,111,100,117,108,101,44,32,111,114,32,116, -+ 104,101,32,110,97,109,101,115,112,97,99,101,10,32,32,32, -+ 32,32,32,32,32,112,97,99,107,97,103,101,32,112,111,114, -+ 116,105,111,110,115,46,32,82,101,116,117,114,110,115,32,40, -+ 108,111,97,100,101,114,44,32,108,105,115,116,45,111,102,45, -+ 112,111,114,116,105,111,110,115,41,46,10,10,32,32,32,32, -+ 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, -+ 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, -+ 85,115,101,32,102,105,110,100,95,115,112,101,99,40,41,32, -+ 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, -+ 32,32,78,41,3,114,182,0,0,0,114,128,0,0,0,114, -+ 157,0,0,0,41,3,114,109,0,0,0,114,127,0,0,0, -+ 114,165,0,0,0,114,5,0,0,0,114,5,0,0,0,114, -+ 6,0,0,0,114,125,0,0,0,171,4,0,0,115,8,0, -+ 0,0,0,7,15,1,12,1,10,1,122,22,70,105,108,101, -+ 70,105,110,100,101,114,46,102,105,110,100,95,108,111,97,100, -+ 101,114,99,6,0,0,0,0,0,0,0,7,0,0,0,7, -+ 0,0,0,67,0,0,0,115,40,0,0,0,124,1,0,124, -+ 2,0,124,3,0,131,2,0,125,6,0,116,0,0,124,2, -+ 0,124,3,0,100,1,0,124,6,0,100,2,0,124,4,0, -+ 131,2,2,83,41,3,78,114,128,0,0,0,114,157,0,0, -+ 0,41,1,114,168,0,0,0,41,7,114,109,0,0,0,114, -+ 166,0,0,0,114,127,0,0,0,114,36,0,0,0,90,4, -+ 115,109,115,108,114,181,0,0,0,114,128,0,0,0,114,5, -+ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,6,1, -+ 0,0,183,4,0,0,115,6,0,0,0,0,1,15,1,18, -+ 1,122,20,70,105,108,101,70,105,110,100,101,114,46,95,103, -+ 101,116,95,115,112,101,99,78,99,3,0,0,0,0,0,0, -+ 0,14,0,0,0,15,0,0,0,67,0,0,0,115,234,1, -+ 0,0,100,1,0,125,3,0,124,1,0,106,0,0,100,2, -+ 0,131,1,0,100,3,0,25,125,4,0,121,34,0,116,1, -+ 0,124,0,0,106,2,0,112,49,0,116,3,0,106,4,0, -+ 131,0,0,131,1,0,106,5,0,125,5,0,87,110,24,0, -+ 4,116,6,0,107,10,0,114,85,0,1,1,1,100,10,0, -+ 125,5,0,89,110,1,0,88,124,5,0,124,0,0,106,7, -+ 0,107,3,0,114,120,0,124,0,0,106,8,0,131,0,0, -+ 1,124,5,0,124,0,0,95,7,0,116,9,0,131,0,0, -+ 114,153,0,124,0,0,106,10,0,125,6,0,124,4,0,106, -+ 11,0,131,0,0,125,7,0,110,15,0,124,0,0,106,12, -+ 0,125,6,0,124,4,0,125,7,0,124,7,0,124,6,0, -+ 107,6,0,114,45,1,116,13,0,124,0,0,106,2,0,124, -+ 4,0,131,2,0,125,8,0,120,100,0,124,0,0,106,14, -+ 0,68,93,77,0,92,2,0,125,9,0,125,10,0,100,5, -+ 0,124,9,0,23,125,11,0,116,13,0,124,8,0,124,11, -+ 0,131,2,0,125,12,0,116,15,0,124,12,0,131,1,0, -+ 114,208,0,124,0,0,106,16,0,124,10,0,124,1,0,124, -+ 12,0,124,8,0,103,1,0,124,2,0,131,5,0,83,113, -+ 208,0,87,116,17,0,124,8,0,131,1,0,125,3,0,120, -+ 123,0,124,0,0,106,14,0,68,93,112,0,92,2,0,125, -+ 9,0,125,10,0,116,13,0,124,0,0,106,2,0,124,4, -+ 0,124,9,0,23,131,2,0,125,12,0,116,18,0,100,6, -+ 0,106,19,0,124,12,0,131,1,0,100,7,0,100,3,0, -+ 131,1,1,1,124,7,0,124,9,0,23,124,6,0,107,6, -+ 0,114,55,1,116,15,0,124,12,0,131,1,0,114,55,1, -+ 124,0,0,106,16,0,124,10,0,124,1,0,124,12,0,100, -+ 8,0,124,2,0,131,5,0,83,113,55,1,87,124,3,0, -+ 114,230,1,116,18,0,100,9,0,106,19,0,124,8,0,131, -+ 1,0,131,1,0,1,116,20,0,106,21,0,124,1,0,100, -+ 8,0,131,2,0,125,13,0,124,8,0,103,1,0,124,13, -+ 0,95,22,0,124,13,0,83,100,8,0,83,41,11,122,125, -+ 84,114,121,32,116,111,32,102,105,110,100,32,97,32,108,111, -+ 97,100,101,114,32,102,111,114,32,116,104,101,32,115,112,101, -+ 99,105,102,105,101,100,32,109,111,100,117,108,101,44,32,111, -+ 114,32,116,104,101,32,110,97,109,101,115,112,97,99,101,10, -+ 32,32,32,32,32,32,32,32,112,97,99,107,97,103,101,32, -+ 112,111,114,116,105,111,110,115,46,32,82,101,116,117,114,110, -+ 115,32,40,108,111,97,100,101,114,44,32,108,105,115,116,45, -+ 111,102,45,112,111,114,116,105,111,110,115,41,46,70,114,59, -+ 0,0,0,114,57,0,0,0,114,30,0,0,0,114,186,0, -+ 0,0,122,9,116,114,121,105,110,103,32,123,125,114,99,0, -+ 0,0,78,122,25,112,111,115,115,105,98,108,101,32,110,97, -+ 109,101,115,112,97,99,101,32,102,111,114,32,123,125,114,88, -+ 0,0,0,41,23,114,33,0,0,0,114,40,0,0,0,114, -+ 36,0,0,0,114,4,0,0,0,114,46,0,0,0,114,220, -+ 0,0,0,114,41,0,0,0,114,9,1,0,0,218,11,95, -+ 102,105,108,108,95,99,97,99,104,101,114,7,0,0,0,114, -+ 12,1,0,0,114,89,0,0,0,114,11,1,0,0,114,29, -+ 0,0,0,114,8,1,0,0,114,45,0,0,0,114,6,1, -+ 0,0,114,47,0,0,0,114,106,0,0,0,114,48,0,0, -+ 0,114,122,0,0,0,114,161,0,0,0,114,157,0,0,0, -+ 41,14,114,109,0,0,0,114,127,0,0,0,114,181,0,0, -+ 0,90,12,105,115,95,110,97,109,101,115,112,97,99,101,90, -+ 11,116,97,105,108,95,109,111,100,117,108,101,114,134,0,0, -+ 0,90,5,99,97,99,104,101,90,12,99,97,99,104,101,95, -+ 109,111,100,117,108,101,90,9,98,97,115,101,95,112,97,116, -+ 104,114,226,0,0,0,114,166,0,0,0,90,13,105,110,105, -+ 116,95,102,105,108,101,110,97,109,101,90,9,102,117,108,108, -+ 95,112,97,116,104,114,165,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,6,0,0,0,114,182,0,0,0,188,4, -+ 0,0,115,68,0,0,0,0,3,6,1,19,1,3,1,34, -+ 1,13,1,11,1,15,1,10,1,9,2,9,1,9,1,15, -+ 2,9,1,6,2,12,1,18,1,22,1,10,1,15,1,12, -+ 1,32,4,12,2,22,1,22,1,25,1,16,1,12,1,29, -+ 1,6,1,19,1,18,1,12,1,4,1,122,20,70,105,108, -+ 101,70,105,110,100,101,114,46,102,105,110,100,95,115,112,101, -+ 99,99,1,0,0,0,0,0,0,0,9,0,0,0,13,0, -+ 0,0,67,0,0,0,115,11,1,0,0,124,0,0,106,0, -+ 0,125,1,0,121,31,0,116,1,0,106,2,0,124,1,0, -+ 112,33,0,116,1,0,106,3,0,131,0,0,131,1,0,125, -+ 2,0,87,110,33,0,4,116,4,0,116,5,0,116,6,0, -+ 102,3,0,107,10,0,114,75,0,1,1,1,103,0,0,125, -+ 2,0,89,110,1,0,88,116,7,0,106,8,0,106,9,0, -+ 100,1,0,131,1,0,115,112,0,116,10,0,124,2,0,131, -+ 1,0,124,0,0,95,11,0,110,111,0,116,10,0,131,0, -+ 0,125,3,0,120,90,0,124,2,0,68,93,82,0,125,4, -+ 0,124,4,0,106,12,0,100,2,0,131,1,0,92,3,0, -+ 125,5,0,125,6,0,125,7,0,124,6,0,114,191,0,100, -+ 3,0,106,13,0,124,5,0,124,7,0,106,14,0,131,0, -+ 0,131,2,0,125,8,0,110,6,0,124,5,0,125,8,0, -+ 124,3,0,106,15,0,124,8,0,131,1,0,1,113,128,0, -+ 87,124,3,0,124,0,0,95,11,0,116,7,0,106,8,0, -+ 106,9,0,116,16,0,131,1,0,114,7,1,100,4,0,100, -+ 5,0,132,0,0,124,2,0,68,131,1,0,124,0,0,95, -+ 17,0,100,6,0,83,41,7,122,68,70,105,108,108,32,116, -+ 104,101,32,99,97,99,104,101,32,111,102,32,112,111,116,101, -+ 110,116,105,97,108,32,109,111,100,117,108,101,115,32,97,110, -+ 100,32,112,97,99,107,97,103,101,115,32,102,111,114,32,116, -+ 104,105,115,32,100,105,114,101,99,116,111,114,121,46,114,0, -+ 0,0,0,114,59,0,0,0,122,5,123,125,46,123,125,99, -+ 1,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0, -+ 83,0,0,0,115,28,0,0,0,104,0,0,124,0,0,93, -+ 18,0,125,1,0,124,1,0,106,0,0,131,0,0,146,2, -+ 0,113,6,0,83,114,5,0,0,0,41,1,114,89,0,0, -+ 0,41,2,114,23,0,0,0,90,2,102,110,114,5,0,0, -+ 0,114,5,0,0,0,114,6,0,0,0,250,9,60,115,101, -+ 116,99,111,109,112,62,6,5,0,0,115,2,0,0,0,9, -+ 0,122,41,70,105,108,101,70,105,110,100,101,114,46,95,102, -+ 105,108,108,95,99,97,99,104,101,46,60,108,111,99,97,108, -+ 115,62,46,60,115,101,116,99,111,109,112,62,78,41,18,114, -+ 36,0,0,0,114,4,0,0,0,90,7,108,105,115,116,100, -+ 105,114,114,46,0,0,0,114,1,1,0,0,218,15,80,101, -+ 114,109,105,115,115,105,111,110,69,114,114,111,114,218,18,78, -+ 111,116,65,68,105,114,101,99,116,111,114,121,69,114,114,111, -+ 114,114,8,0,0,0,114,9,0,0,0,114,10,0,0,0, -+ 114,10,1,0,0,114,11,1,0,0,114,84,0,0,0,114, -+ 48,0,0,0,114,89,0,0,0,218,3,97,100,100,114,11, -+ 0,0,0,114,12,1,0,0,41,9,114,109,0,0,0,114, -+ 36,0,0,0,90,8,99,111,110,116,101,110,116,115,90,21, -+ 108,111,119,101,114,95,115,117,102,102,105,120,95,99,111,110, -+ 116,101,110,116,115,114,246,0,0,0,114,107,0,0,0,114, -+ 238,0,0,0,114,226,0,0,0,90,8,110,101,119,95,110, -+ 97,109,101,114,5,0,0,0,114,5,0,0,0,114,6,0, -+ 0,0,114,14,1,0,0,233,4,0,0,115,34,0,0,0, -+ 0,2,9,1,3,1,31,1,22,3,11,3,18,1,18,7, -+ 9,1,13,1,24,1,6,1,27,2,6,1,17,1,9,1, -+ 18,1,122,22,70,105,108,101,70,105,110,100,101,114,46,95, -+ 102,105,108,108,95,99,97,99,104,101,99,1,0,0,0,0, -+ 0,0,0,3,0,0,0,3,0,0,0,7,0,0,0,115, -+ 25,0,0,0,135,0,0,135,1,0,102,2,0,100,1,0, -+ 100,2,0,134,0,0,125,2,0,124,2,0,83,41,3,97, -+ 20,1,0,0,65,32,99,108,97,115,115,32,109,101,116,104, -+ 111,100,32,119,104,105,99,104,32,114,101,116,117,114,110,115, -+ 32,97,32,99,108,111,115,117,114,101,32,116,111,32,117,115, -+ 101,32,111,110,32,115,121,115,46,112,97,116,104,95,104,111, -+ 111,107,10,32,32,32,32,32,32,32,32,119,104,105,99,104, -+ 32,119,105,108,108,32,114,101,116,117,114,110,32,97,110,32, -+ 105,110,115,116,97,110,99,101,32,117,115,105,110,103,32,116, -+ 104,101,32,115,112,101,99,105,102,105,101,100,32,108,111,97, -+ 100,101,114,115,32,97,110,100,32,116,104,101,32,112,97,116, -+ 104,10,32,32,32,32,32,32,32,32,99,97,108,108,101,100, -+ 32,111,110,32,116,104,101,32,99,108,111,115,117,114,101,46, -+ 10,10,32,32,32,32,32,32,32,32,73,102,32,116,104,101, -+ 32,112,97,116,104,32,99,97,108,108,101,100,32,111,110,32, -+ 116,104,101,32,99,108,111,115,117,114,101,32,105,115,32,110, -+ 111,116,32,97,32,100,105,114,101,99,116,111,114,121,44,32, -+ 73,109,112,111,114,116,69,114,114,111,114,32,105,115,10,32, -+ 32,32,32,32,32,32,32,114,97,105,115,101,100,46,10,10, -+ 32,32,32,32,32,32,32,32,99,1,0,0,0,0,0,0, -+ 0,1,0,0,0,4,0,0,0,19,0,0,0,115,43,0, -+ 0,0,116,0,0,124,0,0,131,1,0,115,30,0,116,1, -+ 0,100,1,0,100,2,0,124,0,0,131,1,1,130,1,0, ++ 94,1,0,0,13,8,0,0,115,34,0,0,0,0,2,9, ++ 1,3,1,31,1,22,3,11,3,18,1,18,7,9,1,13, ++ 1,24,1,6,1,27,2,6,1,17,1,9,1,18,1,122, ++ 22,70,105,108,101,70,105,110,100,101,114,46,95,102,105,108, ++ 108,95,99,97,99,104,101,99,1,0,0,0,0,0,0,0, ++ 3,0,0,0,3,0,0,0,7,0,0,0,115,25,0,0, ++ 0,135,0,0,135,1,0,102,2,0,100,1,0,100,2,0, ++ 134,0,0,125,2,0,124,2,0,83,41,3,97,20,1,0, ++ 0,65,32,99,108,97,115,115,32,109,101,116,104,111,100,32, ++ 119,104,105,99,104,32,114,101,116,117,114,110,115,32,97,32, ++ 99,108,111,115,117,114,101,32,116,111,32,117,115,101,32,111, ++ 110,32,115,121,115,46,112,97,116,104,95,104,111,111,107,10, ++ 32,32,32,32,32,32,32,32,119,104,105,99,104,32,119,105, ++ 108,108,32,114,101,116,117,114,110,32,97,110,32,105,110,115, ++ 116,97,110,99,101,32,117,115,105,110,103,32,116,104,101,32, ++ 115,112,101,99,105,102,105,101,100,32,108,111,97,100,101,114, ++ 115,32,97,110,100,32,116,104,101,32,112,97,116,104,10,32, ++ 32,32,32,32,32,32,32,99,97,108,108,101,100,32,111,110, ++ 32,116,104,101,32,99,108,111,115,117,114,101,46,10,10,32, ++ 32,32,32,32,32,32,32,73,102,32,116,104,101,32,112,97, ++ 116,104,32,99,97,108,108,101,100,32,111,110,32,116,104,101, ++ 32,99,108,111,115,117,114,101,32,105,115,32,110,111,116,32, ++ 97,32,100,105,114,101,99,116,111,114,121,44,32,73,109,112, ++ 111,114,116,69,114,114,111,114,32,105,115,10,32,32,32,32, ++ 32,32,32,32,114,97,105,115,101,100,46,10,10,32,32,32, ++ 32,32,32,32,32,99,1,0,0,0,0,0,0,0,1,0, ++ 0,0,4,0,0,0,19,0,0,0,115,46,0,0,0,116, ++ 0,0,124,0,0,131,1,0,115,33,0,116,1,0,100,1, ++ 0,100,2,0,124,0,0,131,1,1,130,1,0,110,0,0, + 136,0,0,124,0,0,136,1,0,140,1,0,83,41,3,122, + 45,80,97,116,104,32,104,111,111,107,32,102,111,114,32,105, + 109,112,111,114,116,108,105,98,46,109,97,99,104,105,110,101, + 114,121,46,70,105,108,101,70,105,110,100,101,114,46,122,30, + 111,110,108,121,32,100,105,114,101,99,116,111,114,105,101,115, + 32,97,114,101,32,115,117,112,112,111,114,116,101,100,114,36, -+ 0,0,0,41,2,114,47,0,0,0,114,108,0,0,0,41, -+ 1,114,36,0,0,0,41,2,114,171,0,0,0,114,13,1, ++ 0,0,0,41,2,114,47,0,0,0,114,154,0,0,0,41, ++ 1,114,36,0,0,0,41,2,114,12,1,0,0,114,93,1, + 0,0,114,5,0,0,0,114,6,0,0,0,218,24,112,97, + 116,104,95,104,111,111,107,95,102,111,114,95,70,105,108,101, -+ 70,105,110,100,101,114,18,5,0,0,115,6,0,0,0,0, -+ 2,12,1,18,1,122,54,70,105,108,101,70,105,110,100,101, ++ 70,105,110,100,101,114,54,8,0,0,115,6,0,0,0,0, ++ 2,12,1,21,1,122,54,70,105,108,101,70,105,110,100,101, + 114,46,112,97,116,104,95,104,111,111,107,46,60,108,111,99, + 97,108,115,62,46,112,97,116,104,95,104,111,111,107,95,102, + 111,114,95,70,105,108,101,70,105,110,100,101,114,114,5,0, -+ 0,0,41,3,114,171,0,0,0,114,13,1,0,0,114,19, -+ 1,0,0,114,5,0,0,0,41,2,114,171,0,0,0,114, -+ 13,1,0,0,114,6,0,0,0,218,9,112,97,116,104,95, -+ 104,111,111,107,8,5,0,0,115,4,0,0,0,0,10,21, ++ 0,0,41,3,114,12,1,0,0,114,93,1,0,0,114,100, ++ 1,0,0,114,5,0,0,0,41,2,114,12,1,0,0,114, ++ 93,1,0,0,114,6,0,0,0,218,9,112,97,116,104,95, ++ 104,111,111,107,44,8,0,0,115,4,0,0,0,0,10,21, + 6,122,20,70,105,108,101,70,105,110,100,101,114,46,112,97, + 116,104,95,104,111,111,107,99,1,0,0,0,0,0,0,0, + 1,0,0,0,2,0,0,0,67,0,0,0,115,16,0,0, + 0,100,1,0,106,0,0,124,0,0,106,1,0,131,1,0, + 83,41,2,78,122,16,70,105,108,101,70,105,110,100,101,114, + 40,123,33,114,125,41,41,2,114,48,0,0,0,114,36,0, -+ 0,0,41,1,114,109,0,0,0,114,5,0,0,0,114,5, -+ 0,0,0,114,6,0,0,0,114,245,0,0,0,26,5,0, ++ 0,0,41,1,114,72,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,114,102,0,0,0,62,8,0, + 0,115,2,0,0,0,0,1,122,19,70,105,108,101,70,105, + 110,100,101,114,46,95,95,114,101,112,114,95,95,41,15,114, -+ 113,0,0,0,114,112,0,0,0,114,114,0,0,0,114,115, -+ 0,0,0,114,186,0,0,0,114,251,0,0,0,114,131,0, -+ 0,0,114,183,0,0,0,114,125,0,0,0,114,6,1,0, -+ 0,114,182,0,0,0,114,14,1,0,0,114,184,0,0,0, -+ 114,20,1,0,0,114,245,0,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,7, -+ 1,0,0,142,4,0,0,115,20,0,0,0,12,7,6,2, ++ 58,0,0,0,114,57,0,0,0,114,59,0,0,0,114,60, ++ 0,0,0,114,73,0,0,0,114,75,1,0,0,114,173,0, ++ 0,0,114,15,1,0,0,114,166,0,0,0,114,86,1,0, ++ 0,114,14,1,0,0,114,94,1,0,0,114,19,1,0,0, ++ 114,101,1,0,0,114,102,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,114,87, ++ 1,0,0,178,7,0,0,115,20,0,0,0,12,7,6,2, + 12,14,12,4,6,2,12,12,12,5,15,45,12,31,18,18, -+ 114,7,1,0,0,99,4,0,0,0,0,0,0,0,6,0, -+ 0,0,11,0,0,0,67,0,0,0,115,195,0,0,0,124, -+ 0,0,106,0,0,100,1,0,131,1,0,125,4,0,124,0, -+ 0,106,0,0,100,2,0,131,1,0,125,5,0,124,4,0, -+ 115,99,0,124,5,0,114,54,0,124,5,0,106,1,0,125, -+ 4,0,110,45,0,124,2,0,124,3,0,107,2,0,114,84, -+ 0,116,2,0,124,1,0,124,2,0,131,2,0,125,4,0, -+ 110,15,0,116,3,0,124,1,0,124,2,0,131,2,0,125, -+ 4,0,124,5,0,115,126,0,116,4,0,124,1,0,124,2, -+ 0,100,3,0,124,4,0,131,2,1,125,5,0,121,44,0, -+ 124,5,0,124,0,0,100,2,0,60,124,4,0,124,0,0, -+ 100,1,0,60,124,2,0,124,0,0,100,4,0,60,124,3, -+ 0,124,0,0,100,5,0,60,87,110,18,0,4,116,5,0, -+ 107,10,0,114,190,0,1,1,1,89,110,1,0,88,100,0, -+ 0,83,41,6,78,218,10,95,95,108,111,97,100,101,114,95, -+ 95,218,8,95,95,115,112,101,99,95,95,114,128,0,0,0, -+ 90,8,95,95,102,105,108,101,95,95,90,10,95,95,99,97, -+ 99,104,101,100,95,95,41,6,218,3,103,101,116,114,128,0, -+ 0,0,114,224,0,0,0,114,219,0,0,0,114,168,0,0, -+ 0,218,9,69,120,99,101,112,116,105,111,110,41,6,90,2, -+ 110,115,114,107,0,0,0,90,8,112,97,116,104,110,97,109, -+ 101,90,9,99,112,97,116,104,110,97,109,101,114,128,0,0, -+ 0,114,165,0,0,0,114,5,0,0,0,114,5,0,0,0, -+ 114,6,0,0,0,218,14,95,102,105,120,95,117,112,95,109, -+ 111,100,117,108,101,32,5,0,0,115,34,0,0,0,0,2, -+ 15,1,15,1,6,1,6,1,12,1,12,1,18,2,15,1, -+ 6,1,21,1,3,1,10,1,10,1,10,1,14,1,13,2, -+ 114,25,1,0,0,99,0,0,0,0,0,0,0,0,3,0, -+ 0,0,3,0,0,0,67,0,0,0,115,55,0,0,0,116, -+ 0,0,116,1,0,106,2,0,131,0,0,102,2,0,125,0, -+ 0,116,3,0,116,4,0,102,2,0,125,1,0,116,5,0, -+ 116,6,0,102,2,0,125,2,0,124,0,0,124,1,0,124, -+ 2,0,103,3,0,83,41,1,122,95,82,101,116,117,114,110, -+ 115,32,97,32,108,105,115,116,32,111,102,32,102,105,108,101, -+ 45,98,97,115,101,100,32,109,111,100,117,108,101,32,108,111, -+ 97,100,101,114,115,46,10,10,32,32,32,32,69,97,99,104, -+ 32,105,116,101,109,32,105,115,32,97,32,116,117,112,108,101, -+ 32,40,108,111,97,100,101,114,44,32,115,117,102,102,105,120, -+ 101,115,41,46,10,32,32,32,32,41,7,114,225,0,0,0, -+ 114,146,0,0,0,218,18,101,120,116,101,110,115,105,111,110, -+ 95,115,117,102,102,105,120,101,115,114,219,0,0,0,114,85, -+ 0,0,0,114,224,0,0,0,114,75,0,0,0,41,3,90, -+ 10,101,120,116,101,110,115,105,111,110,115,90,6,115,111,117, -+ 114,99,101,90,8,98,121,116,101,99,111,100,101,114,5,0, -+ 0,0,114,5,0,0,0,114,6,0,0,0,114,162,0,0, -+ 0,55,5,0,0,115,8,0,0,0,0,5,18,1,12,1, -+ 12,1,114,162,0,0,0,99,1,0,0,0,0,0,0,0, -+ 12,0,0,0,12,0,0,0,67,0,0,0,115,70,2,0, -+ 0,124,0,0,97,0,0,116,0,0,106,1,0,97,1,0, -+ 116,0,0,106,2,0,97,2,0,116,1,0,106,3,0,116, -+ 4,0,25,125,1,0,120,76,0,100,26,0,68,93,68,0, -+ 125,2,0,124,2,0,116,1,0,106,3,0,107,7,0,114, -+ 83,0,116,0,0,106,5,0,124,2,0,131,1,0,125,3, -+ 0,110,13,0,116,1,0,106,3,0,124,2,0,25,125,3, -+ 0,116,6,0,124,1,0,124,2,0,124,3,0,131,3,0, -+ 1,113,44,0,87,100,5,0,100,6,0,103,1,0,102,2, -+ 0,100,7,0,100,8,0,100,6,0,103,2,0,102,2,0, -+ 102,2,0,125,4,0,120,149,0,124,4,0,68,93,129,0, -+ 92,2,0,125,5,0,125,6,0,116,7,0,100,9,0,100, -+ 10,0,132,0,0,124,6,0,68,131,1,0,131,1,0,115, -+ 199,0,116,8,0,130,1,0,124,6,0,100,11,0,25,125, -+ 7,0,124,5,0,116,1,0,106,3,0,107,6,0,114,241, -+ 0,116,1,0,106,3,0,124,5,0,25,125,8,0,80,113, -+ 156,0,121,20,0,116,0,0,106,5,0,124,5,0,131,1, -+ 0,125,8,0,80,87,113,156,0,4,116,9,0,107,10,0, -+ 114,28,1,1,1,1,119,156,0,89,113,156,0,88,113,156, -+ 0,87,116,9,0,100,12,0,131,1,0,130,1,0,116,6, -+ 0,124,1,0,100,13,0,124,8,0,131,3,0,1,116,6, -+ 0,124,1,0,100,14,0,124,7,0,131,3,0,1,116,6, -+ 0,124,1,0,100,15,0,100,16,0,106,10,0,124,6,0, -+ 131,1,0,131,3,0,1,121,19,0,116,0,0,106,5,0, -+ 100,17,0,131,1,0,125,9,0,87,110,24,0,4,116,9, -+ 0,107,10,0,114,147,1,1,1,1,100,18,0,125,9,0, -+ 89,110,1,0,88,116,6,0,124,1,0,100,17,0,124,9, -+ 0,131,3,0,1,116,0,0,106,5,0,100,19,0,131,1, -+ 0,125,10,0,116,6,0,124,1,0,100,19,0,124,10,0, -+ 131,3,0,1,124,5,0,100,7,0,107,2,0,114,238,1, -+ 116,0,0,106,5,0,100,20,0,131,1,0,125,11,0,116, -+ 6,0,124,1,0,100,21,0,124,11,0,131,3,0,1,116, -+ 6,0,124,1,0,100,22,0,116,11,0,131,0,0,131,3, -+ 0,1,116,12,0,106,13,0,116,2,0,106,14,0,131,0, -+ 0,131,1,0,1,124,5,0,100,7,0,107,2,0,114,66, -+ 2,116,15,0,106,16,0,100,23,0,131,1,0,1,100,24, -+ 0,116,12,0,107,6,0,114,66,2,100,25,0,116,17,0, -+ 95,18,0,100,18,0,83,41,27,122,205,83,101,116,117,112, -+ 32,116,104,101,32,112,97,116,104,45,98,97,115,101,100,32, -+ 105,109,112,111,114,116,101,114,115,32,102,111,114,32,105,109, -+ 112,111,114,116,108,105,98,32,98,121,32,105,109,112,111,114, -+ 116,105,110,103,32,110,101,101,100,101,100,10,32,32,32,32, -+ 98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,115, -+ 32,97,110,100,32,105,110,106,101,99,116,105,110,103,32,116, -+ 104,101,109,32,105,110,116,111,32,116,104,101,32,103,108,111, -+ 98,97,108,32,110,97,109,101,115,112,97,99,101,46,10,10, -+ 32,32,32,32,79,116,104,101,114,32,99,111,109,112,111,110, -+ 101,110,116,115,32,97,114,101,32,101,120,116,114,97,99,116, -+ 101,100,32,102,114,111,109,32,116,104,101,32,99,111,114,101, -+ 32,98,111,111,116,115,116,114,97,112,32,109,111,100,117,108, -+ 101,46,10,10,32,32,32,32,114,50,0,0,0,114,61,0, -+ 0,0,218,8,98,117,105,108,116,105,110,115,114,143,0,0, -+ 0,90,5,112,111,115,105,120,250,1,47,218,2,110,116,250, -+ 1,92,99,1,0,0,0,0,0,0,0,2,0,0,0,3, -+ 0,0,0,115,0,0,0,115,33,0,0,0,124,0,0,93, -+ 23,0,125,1,0,116,0,0,124,1,0,131,1,0,100,0, -+ 0,107,2,0,86,1,113,3,0,100,1,0,83,41,2,114, -+ 30,0,0,0,78,41,1,114,32,0,0,0,41,2,114,23, -+ 0,0,0,114,78,0,0,0,114,5,0,0,0,114,5,0, -+ 0,0,114,6,0,0,0,114,228,0,0,0,91,5,0,0, -+ 115,2,0,0,0,6,0,122,25,95,115,101,116,117,112,46, -+ 60,108,111,99,97,108,115,62,46,60,103,101,110,101,120,112, -+ 114,62,114,60,0,0,0,122,30,105,109,112,111,114,116,108, -+ 105,98,32,114,101,113,117,105,114,101,115,32,112,111,115,105, -+ 120,32,111,114,32,110,116,114,4,0,0,0,114,26,0,0, -+ 0,114,22,0,0,0,114,31,0,0,0,90,7,95,116,104, -+ 114,101,97,100,78,90,8,95,119,101,97,107,114,101,102,90, -+ 6,119,105,110,114,101,103,114,170,0,0,0,114,7,0,0, -+ 0,122,4,46,112,121,119,122,6,95,100,46,112,121,100,84, -+ 41,4,122,3,95,105,111,122,9,95,119,97,114,110,105,110, -+ 103,115,122,8,98,117,105,108,116,105,110,115,122,7,109,97, -+ 114,115,104,97,108,41,19,114,122,0,0,0,114,8,0,0, -+ 0,114,146,0,0,0,114,240,0,0,0,114,113,0,0,0, -+ 90,18,95,98,117,105,108,116,105,110,95,102,114,111,109,95, -+ 110,97,109,101,114,117,0,0,0,218,3,97,108,108,218,14, -+ 65,115,115,101,114,116,105,111,110,69,114,114,111,114,114,108, -+ 0,0,0,114,27,0,0,0,114,12,0,0,0,114,230,0, -+ 0,0,114,150,0,0,0,114,26,1,0,0,114,85,0,0, -+ 0,114,164,0,0,0,114,169,0,0,0,114,174,0,0,0, -+ 41,12,218,17,95,98,111,111,116,115,116,114,97,112,95,109, -+ 111,100,117,108,101,90,11,115,101,108,102,95,109,111,100,117, -+ 108,101,90,12,98,117,105,108,116,105,110,95,110,97,109,101, -+ 90,14,98,117,105,108,116,105,110,95,109,111,100,117,108,101, -+ 90,10,111,115,95,100,101,116,97,105,108,115,90,10,98,117, -+ 105,108,116,105,110,95,111,115,114,22,0,0,0,114,26,0, -+ 0,0,90,9,111,115,95,109,111,100,117,108,101,90,13,116, -+ 104,114,101,97,100,95,109,111,100,117,108,101,90,14,119,101, -+ 97,107,114,101,102,95,109,111,100,117,108,101,90,13,119,105, -+ 110,114,101,103,95,109,111,100,117,108,101,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,6,95,115,101,116, -+ 117,112,66,5,0,0,115,82,0,0,0,0,8,6,1,9, -+ 1,9,3,13,1,13,1,15,1,18,2,13,1,20,3,33, -+ 1,19,2,31,1,10,1,15,1,13,1,4,2,3,1,15, -+ 1,5,1,13,1,12,2,12,1,16,1,16,1,25,3,3, -+ 1,19,1,13,2,11,1,16,3,15,1,16,3,12,1,15, -+ 1,16,3,19,1,19,1,12,1,13,1,12,1,114,34,1, -+ 0,0,99,1,0,0,0,0,0,0,0,2,0,0,0,3, -+ 0,0,0,67,0,0,0,115,116,0,0,0,116,0,0,124, -+ 0,0,131,1,0,1,116,1,0,131,0,0,125,1,0,116, -+ 2,0,106,3,0,106,4,0,116,5,0,106,6,0,124,1, -+ 0,140,0,0,103,1,0,131,1,0,1,116,7,0,106,8, -+ 0,100,1,0,107,2,0,114,78,0,116,2,0,106,9,0, -+ 106,10,0,116,11,0,131,1,0,1,116,2,0,106,9,0, -+ 106,10,0,116,12,0,131,1,0,1,116,5,0,124,0,0, -+ 95,5,0,116,13,0,124,0,0,95,13,0,100,2,0,83, -+ 41,3,122,41,73,110,115,116,97,108,108,32,116,104,101,32, - 112,97,116,104,45,98,97,115,101,100,32,105,109,112,111,114, -- 116,101,114,115,32,102,111,114,32,105,109,112,111,114,116,108, -- 105,98,32,98,121,32,105,109,112,111,114,116,105,110,103,32, -- 110,101,101,100,101,100,10,32,32,32,32,98,117,105,108,116, -- 45,105,110,32,109,111,100,117,108,101,115,32,97,110,100,32, -- 105,110,106,101,99,116,105,110,103,32,116,104,101,109,32,105, -- 110,116,111,32,116,104,101,32,103,108,111,98,97,108,32,110, -- 97,109,101,115,112,97,99,101,46,10,10,32,32,32,32,79, -- 116,104,101,114,32,99,111,109,112,111,110,101,110,116,115,32, -- 97,114,101,32,101,120,116,114,97,99,116,101,100,32,102,114, -- 111,109,32,116,104,101,32,99,111,114,101,32,98,111,111,116, -- 115,116,114,97,112,32,109,111,100,117,108,101,46,10,10,32, -- 32,32,32,114,49,0,0,0,114,60,0,0,0,218,8,98, -- 117,105,108,116,105,110,115,114,142,0,0,0,90,5,112,111, -- 115,105,120,250,1,47,218,2,110,116,250,1,92,99,1,0, -- 0,0,0,0,0,0,2,0,0,0,3,0,0,0,115,0, -- 0,0,115,33,0,0,0,124,0,0,93,23,0,125,1,0, -- 116,0,0,124,1,0,131,1,0,100,0,0,107,2,0,86, -- 1,113,3,0,100,1,0,83,41,2,114,29,0,0,0,78, -- 41,1,114,31,0,0,0,41,2,114,22,0,0,0,114,77, -- 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, -- 0,0,114,227,0,0,0,91,5,0,0,115,2,0,0,0, -- 6,0,122,25,95,115,101,116,117,112,46,60,108,111,99,97, -- 108,115,62,46,60,103,101,110,101,120,112,114,62,114,59,0, -- 0,0,122,30,105,109,112,111,114,116,108,105,98,32,114,101, -- 113,117,105,114,101,115,32,112,111,115,105,120,32,111,114,32, -- 110,116,114,3,0,0,0,114,25,0,0,0,114,21,0,0, -- 0,114,30,0,0,0,90,7,95,116,104,114,101,97,100,78, -- 90,8,95,119,101,97,107,114,101,102,90,6,119,105,110,114, -- 101,103,114,169,0,0,0,114,6,0,0,0,122,4,46,112, -- 121,119,122,6,95,100,46,112,121,100,84,41,4,122,3,95, -- 105,111,122,9,95,119,97,114,110,105,110,103,115,122,8,98, -- 117,105,108,116,105,110,115,122,7,109,97,114,115,104,97,108, -- 41,19,114,121,0,0,0,114,7,0,0,0,114,145,0,0, -- 0,114,239,0,0,0,114,112,0,0,0,90,18,95,98,117, -- 105,108,116,105,110,95,102,114,111,109,95,110,97,109,101,114, -- 116,0,0,0,218,3,97,108,108,218,14,65,115,115,101,114, -- 116,105,111,110,69,114,114,111,114,114,107,0,0,0,114,26, -- 0,0,0,114,11,0,0,0,114,229,0,0,0,114,149,0, -- 0,0,114,25,1,0,0,114,84,0,0,0,114,163,0,0, -- 0,114,168,0,0,0,114,173,0,0,0,41,12,218,17,95, -- 98,111,111,116,115,116,114,97,112,95,109,111,100,117,108,101, -- 90,11,115,101,108,102,95,109,111,100,117,108,101,90,12,98, -- 117,105,108,116,105,110,95,110,97,109,101,90,14,98,117,105, -- 108,116,105,110,95,109,111,100,117,108,101,90,10,111,115,95, -- 100,101,116,97,105,108,115,90,10,98,117,105,108,116,105,110, -- 95,111,115,114,21,0,0,0,114,25,0,0,0,90,9,111, -- 115,95,109,111,100,117,108,101,90,13,116,104,114,101,97,100, -- 95,109,111,100,117,108,101,90,14,119,101,97,107,114,101,102, -- 95,109,111,100,117,108,101,90,13,119,105,110,114,101,103,95, -- 109,111,100,117,108,101,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,6,95,115,101,116,117,112,66,5,0, -- 0,115,82,0,0,0,0,8,6,1,9,1,9,3,13,1, -- 13,1,15,1,18,2,13,1,20,3,33,1,19,2,31,1, -- 10,1,15,1,13,1,4,2,3,1,15,1,5,1,13,1, -- 12,2,12,1,16,1,16,1,25,3,3,1,19,1,13,2, -- 11,1,16,3,15,1,16,3,12,1,15,1,16,3,19,1, -- 19,1,12,1,13,1,12,1,114,33,1,0,0,99,1,0, -- 0,0,0,0,0,0,2,0,0,0,3,0,0,0,67,0, -- 0,0,115,116,0,0,0,116,0,0,124,0,0,131,1,0, -- 1,116,1,0,131,0,0,125,1,0,116,2,0,106,3,0, -- 106,4,0,116,5,0,106,6,0,124,1,0,140,0,0,103, -- 1,0,131,1,0,1,116,7,0,106,8,0,100,1,0,107, -- 2,0,114,78,0,116,2,0,106,9,0,106,10,0,116,11, -- 0,131,1,0,1,116,2,0,106,9,0,106,10,0,116,12, -- 0,131,1,0,1,116,5,0,124,0,0,95,5,0,116,13, -- 0,124,0,0,95,13,0,100,2,0,83,41,3,122,41,73, -- 110,115,116,97,108,108,32,116,104,101,32,112,97,116,104,45, -- 98,97,115,101,100,32,105,109,112,111,114,116,32,99,111,109, -- 112,111,110,101,110,116,115,46,114,28,1,0,0,78,41,14, -- 114,33,1,0,0,114,161,0,0,0,114,7,0,0,0,114, -- 254,0,0,0,114,149,0,0,0,114,6,1,0,0,114,19, -- 1,0,0,114,3,0,0,0,114,112,0,0,0,218,9,109, -- 101,116,97,95,112,97,116,104,114,163,0,0,0,114,168,0, -- 0,0,114,249,0,0,0,114,218,0,0,0,41,2,114,32, -- 1,0,0,90,17,115,117,112,112,111,114,116,101,100,95,108, -- 111,97,100,101,114,115,114,4,0,0,0,114,4,0,0,0, -- 114,5,0,0,0,218,8,95,105,110,115,116,97,108,108,134, -- 5,0,0,115,16,0,0,0,0,2,10,1,9,1,28,1, -- 15,1,16,1,16,4,9,1,114,35,1,0,0,41,3,122, -- 3,119,105,110,114,1,0,0,0,114,2,0,0,0,41,57, -- 114,114,0,0,0,114,10,0,0,0,114,11,0,0,0,114, -- 17,0,0,0,114,19,0,0,0,114,28,0,0,0,114,38, -- 0,0,0,114,39,0,0,0,114,43,0,0,0,114,44,0, -- 0,0,114,46,0,0,0,114,55,0,0,0,218,4,116,121, -- 112,101,218,8,95,95,99,111,100,101,95,95,114,144,0,0, -- 0,114,15,0,0,0,114,135,0,0,0,114,14,0,0,0, -- 114,18,0,0,0,90,17,95,82,65,87,95,77,65,71,73, -- 67,95,78,85,77,66,69,82,114,73,0,0,0,114,72,0, -- 0,0,114,84,0,0,0,114,74,0,0,0,90,23,68,69, -- 66,85,71,95,66,89,84,69,67,79,68,69,95,83,85,70, -- 70,73,88,69,83,90,27,79,80,84,73,77,73,90,69,68, -- 95,66,89,84,69,67,79,68,69,95,83,85,70,70,73,88, -- 69,83,114,79,0,0,0,114,85,0,0,0,114,91,0,0, -- 0,114,95,0,0,0,114,97,0,0,0,114,105,0,0,0, -- 114,123,0,0,0,114,130,0,0,0,114,141,0,0,0,114, -- 147,0,0,0,114,150,0,0,0,114,155,0,0,0,218,6, -- 111,98,106,101,99,116,114,162,0,0,0,114,167,0,0,0, -- 114,168,0,0,0,114,184,0,0,0,114,194,0,0,0,114, -- 210,0,0,0,114,218,0,0,0,114,223,0,0,0,114,229, -- 0,0,0,114,224,0,0,0,114,230,0,0,0,114,247,0, -- 0,0,114,249,0,0,0,114,6,1,0,0,114,24,1,0, -- 0,114,161,0,0,0,114,33,1,0,0,114,35,1,0,0, -- 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, -- 5,0,0,0,218,8,60,109,111,100,117,108,101,62,8,0, -- 0,0,115,100,0,0,0,6,17,6,3,12,12,12,5,12, -- 5,12,6,12,12,12,10,12,9,12,5,12,7,15,22,15, -- 110,22,1,18,2,6,1,6,2,9,2,9,2,10,2,21, -- 44,12,33,12,19,12,12,12,12,18,8,12,28,12,17,21, -- 55,21,12,18,10,12,14,9,3,12,1,15,65,19,64,19, -- 28,22,110,19,41,25,43,25,16,6,3,25,53,19,57,19, -- 41,19,134,19,146,15,23,12,11,12,68, -+ 116,32,99,111,109,112,111,110,101,110,116,115,46,114,29,1, -+ 0,0,78,41,14,114,34,1,0,0,114,162,0,0,0,114, -+ 8,0,0,0,114,255,0,0,0,114,150,0,0,0,114,7, -+ 1,0,0,114,20,1,0,0,114,4,0,0,0,114,113,0, -+ 0,0,218,9,109,101,116,97,95,112,97,116,104,114,164,0, -+ 0,0,114,169,0,0,0,114,250,0,0,0,114,219,0,0, -+ 0,41,2,114,33,1,0,0,90,17,115,117,112,112,111,114, -+ 116,101,100,95,108,111,97,100,101,114,115,114,5,0,0,0, -+ 114,5,0,0,0,114,6,0,0,0,218,8,95,105,110,115, -+ 116,97,108,108,134,5,0,0,115,16,0,0,0,0,2,10, -+ 1,9,1,28,1,15,1,16,1,16,4,9,1,114,36,1, -+ 0,0,41,4,122,3,119,105,110,114,1,0,0,0,114,2, -+ 0,0,0,114,3,0,0,0,41,57,114,115,0,0,0,114, -+ 11,0,0,0,114,12,0,0,0,114,18,0,0,0,114,20, -+ 0,0,0,114,29,0,0,0,114,39,0,0,0,114,40,0, -+ 0,0,114,44,0,0,0,114,45,0,0,0,114,47,0,0, -+ 0,114,56,0,0,0,218,4,116,121,112,101,218,8,95,95, -+ 99,111,100,101,95,95,114,145,0,0,0,114,16,0,0,0, -+ 114,136,0,0,0,114,15,0,0,0,114,19,0,0,0,90, -+ 17,95,82,65,87,95,77,65,71,73,67,95,78,85,77,66, -+ 69,82,114,74,0,0,0,114,73,0,0,0,114,85,0,0, -+ 0,114,75,0,0,0,90,23,68,69,66,85,71,95,66,89, -+ 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,90, -+ 27,79,80,84,73,77,73,90,69,68,95,66,89,84,69,67, -+ 79,68,69,95,83,85,70,70,73,88,69,83,114,80,0,0, -+ 0,114,86,0,0,0,114,92,0,0,0,114,96,0,0,0, -+ 114,98,0,0,0,114,106,0,0,0,114,124,0,0,0,114, -+ 131,0,0,0,114,142,0,0,0,114,148,0,0,0,114,151, -+ 0,0,0,114,156,0,0,0,218,6,111,98,106,101,99,116, -+ 114,163,0,0,0,114,168,0,0,0,114,169,0,0,0,114, -+ 185,0,0,0,114,195,0,0,0,114,211,0,0,0,114,219, -+ 0,0,0,114,224,0,0,0,114,230,0,0,0,114,225,0, -+ 0,0,114,231,0,0,0,114,248,0,0,0,114,250,0,0, -+ 0,114,7,1,0,0,114,25,1,0,0,114,162,0,0,0, -+ 114,34,1,0,0,114,36,1,0,0,114,5,0,0,0,114, -+ 5,0,0,0,114,5,0,0,0,114,6,0,0,0,218,8, -+ 60,109,111,100,117,108,101,62,8,0,0,0,115,100,0,0, -+ 0,6,17,6,3,12,12,12,5,12,5,12,6,12,12,12, -+ 10,12,9,12,5,12,7,15,22,15,110,22,1,18,2,6, -+ 1,6,2,9,2,9,2,10,2,21,44,12,33,12,19,12, -+ 12,12,12,18,8,12,28,12,17,21,55,21,12,18,10,12, -+ 14,9,3,12,1,15,65,19,64,19,28,22,110,19,41,25, -+ 43,25,16,6,3,25,53,19,57,19,41,19,134,19,146,15, -+ 23,12,11,12,68, ++ 114,87,1,0,0,99,0,0,0,0,0,0,0,0,0,0, ++ 0,0,2,0,0,0,64,0,0,0,115,46,0,0,0,101, ++ 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, ++ 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, ++ 100,5,0,132,0,0,90,5,0,100,6,0,83,41,7,218, ++ 18,95,73,109,112,111,114,116,76,111,99,107,67,111,110,116, ++ 101,120,116,122,36,67,111,110,116,101,120,116,32,109,97,110, ++ 97,103,101,114,32,102,111,114,32,116,104,101,32,105,109,112, ++ 111,114,116,32,108,111,99,107,46,99,1,0,0,0,0,0, ++ 0,0,1,0,0,0,1,0,0,0,67,0,0,0,115,14, + 0,0,0,116,0,0,106,1,0,131,0,0,1,100,1,0, +- 83,41,2,122,60,82,101,108,101,97,115,101,32,116,104,101, +- 32,105,109,112,111,114,116,32,108,111,99,107,32,114,101,103, +- 97,114,100,108,101,115,115,32,111,102,32,97,110,121,32,114, +- 97,105,115,101,100,32,101,120,99,101,112,116,105,111,110,115, +- 46,78,41,2,114,106,0,0,0,114,107,0,0,0,41,4, +- 114,71,0,0,0,90,8,101,120,99,95,116,121,112,101,90, +- 9,101,120,99,95,118,97,108,117,101,90,13,101,120,99,95, +- 116,114,97,99,101,98,97,99,107,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,114,81,0,0,0,76,8,0, +- 0,115,2,0,0,0,0,2,122,27,95,73,109,112,111,114, +- 116,76,111,99,107,67,111,110,116,101,120,116,46,95,95,101, +- 120,105,116,95,95,78,41,6,114,57,0,0,0,114,56,0, +- 0,0,114,58,0,0,0,114,59,0,0,0,114,75,0,0, +- 0,114,81,0,0,0,114,4,0,0,0,114,4,0,0,0, +- 114,4,0,0,0,114,5,0,0,0,114,101,1,0,0,68, +- 8,0,0,115,6,0,0,0,12,2,6,2,12,4,114,101, +- 1,0,0,99,3,0,0,0,0,0,0,0,5,0,0,0, +- 4,0,0,0,67,0,0,0,115,91,0,0,0,124,1,0, +- 106,0,0,100,1,0,124,2,0,100,2,0,24,131,2,0, +- 125,3,0,116,1,0,124,3,0,131,1,0,124,2,0,107, +- 0,0,114,55,0,116,2,0,100,3,0,131,1,0,130,1, +- 0,110,0,0,124,3,0,100,4,0,25,125,4,0,124,0, +- 0,114,87,0,100,5,0,106,3,0,124,4,0,124,0,0, +- 131,2,0,83,124,4,0,83,41,6,122,50,82,101,115,111, +- 108,118,101,32,97,32,114,101,108,97,116,105,118,101,32,109, +- 111,100,117,108,101,32,110,97,109,101,32,116,111,32,97,110, +- 32,97,98,115,111,108,117,116,101,32,111,110,101,46,114,116, +- 0,0,0,114,29,0,0,0,122,50,97,116,116,101,109,112, +- 116,101,100,32,114,101,108,97,116,105,118,101,32,105,109,112, +- 111,114,116,32,98,101,121,111,110,100,32,116,111,112,45,108, +- 101,118,101,108,32,112,97,99,107,97,103,101,114,84,0,0, +- 0,122,5,123,125,46,123,125,41,4,114,34,0,0,0,114, +- 31,0,0,0,114,133,0,0,0,114,47,0,0,0,41,5, +- 114,67,0,0,0,218,7,112,97,99,107,97,103,101,218,5, +- 108,101,118,101,108,90,4,98,105,116,115,90,4,98,97,115, +- 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,13,95,114,101,115,111,108,118,101,95,110,97,109,101,81, +- 8,0,0,115,10,0,0,0,0,2,22,1,18,1,15,1, +- 10,1,114,104,1,0,0,99,3,0,0,0,0,0,0,0, +- 4,0,0,0,3,0,0,0,67,0,0,0,115,47,0,0, +- 0,124,0,0,106,0,0,124,1,0,124,2,0,131,2,0, +- 125,3,0,124,3,0,100,0,0,107,8,0,114,34,0,100, +- 0,0,83,116,1,0,124,1,0,124,3,0,131,2,0,83, +- 41,1,78,41,2,114,14,1,0,0,114,173,0,0,0,41, +- 4,114,77,1,0,0,114,67,0,0,0,114,35,0,0,0, +- 114,169,0,0,0,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,218,17,95,102,105,110,100,95,115,112,101,99, +- 95,108,101,103,97,99,121,90,8,0,0,115,8,0,0,0, +- 0,3,18,1,12,1,4,1,114,105,1,0,0,99,3,0, +- 0,0,0,0,0,0,9,0,0,0,27,0,0,0,67,0, +- 0,0,115,34,1,0,0,116,0,0,106,1,0,115,28,0, +- 116,2,0,106,3,0,100,1,0,116,4,0,131,2,0,1, +- 110,0,0,124,0,0,116,0,0,106,5,0,107,6,0,125, +- 3,0,120,240,0,116,0,0,106,1,0,68,93,225,0,125, +- 4,0,116,6,0,131,0,0,143,93,0,1,121,13,0,124, +- 4,0,106,7,0,125,5,0,87,110,54,0,4,116,8,0, +- 107,10,0,114,138,0,1,1,1,116,9,0,124,4,0,124, +- 0,0,124,1,0,131,3,0,125,6,0,124,6,0,100,2, +- 0,107,8,0,114,134,0,119,53,0,110,0,0,89,110,19, +- 0,88,124,5,0,124,0,0,124,1,0,124,2,0,131,3, +- 0,125,6,0,87,100,2,0,81,88,124,6,0,100,2,0, +- 107,9,0,114,53,0,124,3,0,12,114,15,1,124,0,0, +- 116,0,0,106,5,0,107,6,0,114,15,1,116,0,0,106, +- 5,0,124,0,0,25,125,7,0,121,13,0,124,7,0,106, +- 10,0,125,8,0,87,110,22,0,4,116,8,0,107,10,0, +- 114,247,0,1,1,1,124,6,0,83,89,113,19,1,88,124, +- 8,0,100,2,0,107,8,0,114,8,1,124,6,0,83,124, +- 8,0,83,113,22,1,124,6,0,83,113,53,0,113,53,0, +- 87,100,2,0,83,100,2,0,83,41,3,122,23,70,105,110, +- 100,32,97,32,109,111,100,117,108,101,39,115,32,108,111,97, +- 100,101,114,46,122,22,115,121,115,46,109,101,116,97,95,112, +- 97,116,104,32,105,115,32,101,109,112,116,121,78,41,11,114, +- 7,0,0,0,218,9,109,101,116,97,95,112,97,116,104,114, +- 166,0,0,0,114,167,0,0,0,114,168,0,0,0,114,73, +- 0,0,0,114,101,1,0,0,114,13,1,0,0,114,209,0, +- 0,0,114,105,1,0,0,114,208,0,0,0,41,9,114,67, +- 0,0,0,114,35,0,0,0,114,12,1,0,0,90,9,105, +- 115,95,114,101,108,111,97,100,114,77,1,0,0,114,13,1, +- 0,0,114,177,0,0,0,114,179,0,0,0,114,208,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,10,95,102,105,110,100,95,115,112,101,99,99,8,0,0, +- 115,48,0,0,0,0,2,9,1,19,4,15,1,16,1,10, +- 1,3,1,13,1,13,1,18,1,12,1,11,2,24,1,12, +- 2,22,1,13,1,3,1,13,1,13,4,9,2,12,1,4, +- 2,7,2,11,2,114,107,1,0,0,99,3,0,0,0,0, +- 0,0,0,4,0,0,0,4,0,0,0,67,0,0,0,115, +- 194,0,0,0,116,0,0,124,0,0,116,1,0,131,2,0, +- 115,45,0,116,2,0,100,1,0,106,3,0,116,4,0,124, +- 0,0,131,1,0,131,1,0,131,1,0,130,1,0,110,0, +- 0,124,2,0,100,2,0,107,0,0,114,72,0,116,5,0, +- 100,3,0,131,1,0,130,1,0,110,0,0,124,1,0,114, +- 156,0,116,0,0,124,1,0,116,1,0,131,2,0,115,108, +- 0,116,2,0,100,4,0,131,1,0,130,1,0,113,156,0, +- 124,1,0,116,6,0,106,7,0,107,7,0,114,156,0,100, +- 5,0,125,3,0,116,8,0,124,3,0,106,3,0,124,1, +- 0,131,1,0,131,1,0,130,1,0,113,156,0,110,0,0, +- 124,0,0,12,114,190,0,124,2,0,100,2,0,107,2,0, +- 114,190,0,116,5,0,100,6,0,131,1,0,130,1,0,110, +- 0,0,100,7,0,83,41,8,122,28,86,101,114,105,102,121, +- 32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,34, +- 115,97,110,101,34,46,122,31,109,111,100,117,108,101,32,110, +- 97,109,101,32,109,117,115,116,32,98,101,32,115,116,114,44, +- 32,110,111,116,32,123,125,114,84,0,0,0,122,18,108,101, +- 118,101,108,32,109,117,115,116,32,98,101,32,62,61,32,48, +- 122,31,95,95,112,97,99,107,97,103,101,95,95,32,110,111, +- 116,32,115,101,116,32,116,111,32,97,32,115,116,114,105,110, +- 103,122,61,80,97,114,101,110,116,32,109,111,100,117,108,101, +- 32,123,33,114,125,32,110,111,116,32,108,111,97,100,101,100, +- 44,32,99,97,110,110,111,116,32,112,101,114,102,111,114,109, +- 32,114,101,108,97,116,105,118,101,32,105,109,112,111,114,116, +- 122,17,69,109,112,116,121,32,109,111,100,117,108,101,32,110, +- 97,109,101,78,41,9,114,192,0,0,0,114,82,1,0,0, +- 218,9,84,121,112,101,69,114,114,111,114,114,47,0,0,0, +- 114,66,0,0,0,114,133,0,0,0,114,7,0,0,0,114, +- 73,0,0,0,218,11,83,121,115,116,101,109,69,114,114,111, +- 114,41,4,114,67,0,0,0,114,102,1,0,0,114,103,1, +- 0,0,114,171,0,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,13,95,115,97,110,105,116,121,95, +- 99,104,101,99,107,139,8,0,0,115,24,0,0,0,0,2, +- 15,1,30,1,12,1,15,1,6,1,15,1,15,1,15,1, +- 6,2,27,1,19,1,114,110,1,0,0,122,16,78,111,32, +- 109,111,100,117,108,101,32,110,97,109,101,100,32,122,4,123, +- 33,114,125,99,2,0,0,0,0,0,0,0,8,0,0,0, +- 12,0,0,0,67,0,0,0,115,52,1,0,0,100,0,0, +- 125,2,0,124,0,0,106,0,0,100,1,0,131,1,0,100, +- 2,0,25,125,3,0,124,3,0,114,178,0,124,3,0,116, +- 1,0,106,2,0,107,7,0,114,62,0,116,3,0,124,1, +- 0,124,3,0,131,2,0,1,110,0,0,124,0,0,116,1, +- 0,106,2,0,107,6,0,114,88,0,116,1,0,106,2,0, +- 124,0,0,25,83,116,1,0,106,2,0,124,3,0,25,125, +- 4,0,121,13,0,124,4,0,106,4,0,125,2,0,87,113, +- 178,0,4,116,5,0,107,10,0,114,174,0,1,1,1,116, +- 6,0,100,3,0,23,106,7,0,124,0,0,124,3,0,131, +- 2,0,125,5,0,116,8,0,124,5,0,100,4,0,124,0, +- 0,131,1,1,130,1,0,89,113,178,0,88,110,0,0,116, +- 9,0,124,0,0,124,2,0,131,2,0,125,6,0,124,6, +- 0,100,0,0,107,8,0,114,235,0,116,8,0,116,6,0, +- 106,7,0,124,0,0,131,1,0,100,4,0,124,0,0,131, +- 1,1,130,1,0,110,18,0,116,10,0,124,6,0,131,1, +- 0,106,11,0,131,0,0,125,7,0,124,3,0,114,48,1, +- 116,1,0,106,2,0,124,3,0,25,125,4,0,116,12,0, +- 124,4,0,124,0,0,106,0,0,100,1,0,131,1,0,100, +- 5,0,25,124,7,0,131,3,0,1,110,0,0,124,7,0, +- 83,41,6,78,114,116,0,0,0,114,84,0,0,0,122,23, +- 59,32,123,33,114,125,32,105,115,32,110,111,116,32,97,32, +- 112,97,99,107,97,103,101,114,67,0,0,0,114,115,0,0, +- 0,41,13,114,32,0,0,0,114,7,0,0,0,114,73,0, +- 0,0,114,114,0,0,0,114,246,0,0,0,114,209,0,0, +- 0,218,8,95,69,82,82,95,77,83,71,114,47,0,0,0, +- 114,153,0,0,0,114,107,1,0,0,114,174,0,0,0,114, +- 6,1,0,0,114,61,0,0,0,41,8,114,67,0,0,0, +- 218,7,105,109,112,111,114,116,95,114,35,0,0,0,114,233, +- 0,0,0,90,13,112,97,114,101,110,116,95,109,111,100,117, +- 108,101,114,171,0,0,0,114,177,0,0,0,114,179,0,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,23,95,102,105,110,100,95,97,110,100,95,108,111,97,100, +- 95,117,110,108,111,99,107,101,100,159,8,0,0,115,42,0, +- 0,0,0,1,6,1,19,1,6,1,15,1,16,2,15,1, +- 11,1,13,1,3,1,13,1,13,1,22,1,26,1,15,1, +- 12,1,30,2,18,1,6,2,13,1,32,1,114,113,1,0, +- 0,99,2,0,0,0,0,0,0,0,2,0,0,0,10,0, +- 0,0,67,0,0,0,115,36,0,0,0,116,0,0,124,0, +- 0,131,1,0,143,18,0,1,116,1,0,124,0,0,124,1, +- 0,131,2,0,83,87,100,1,0,81,88,100,1,0,83,41, +- 2,122,54,70,105,110,100,32,97,110,100,32,108,111,97,100, +- 32,116,104,101,32,109,111,100,117,108,101,44,32,97,110,100, +- 32,114,101,108,101,97,115,101,32,116,104,101,32,105,109,112, +- 111,114,116,32,108,111,99,107,46,78,41,2,114,103,0,0, +- 0,114,113,1,0,0,41,2,114,67,0,0,0,114,112,1, +- 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, +- 0,218,14,95,102,105,110,100,95,97,110,100,95,108,111,97, +- 100,186,8,0,0,115,4,0,0,0,0,2,13,1,114,114, +- 1,0,0,99,3,0,0,0,0,0,0,0,5,0,0,0, +- 4,0,0,0,67,0,0,0,115,172,0,0,0,116,0,0, +- 124,0,0,124,1,0,124,2,0,131,3,0,1,124,2,0, +- 100,1,0,107,4,0,114,49,0,116,1,0,124,0,0,124, +- 1,0,124,2,0,131,3,0,125,0,0,110,0,0,116,2, +- 0,106,3,0,131,0,0,1,124,0,0,116,4,0,106,5, +- 0,107,7,0,114,87,0,116,6,0,124,0,0,116,7,0, +- 131,2,0,83,116,4,0,106,5,0,124,0,0,25,125,3, +- 0,124,3,0,100,2,0,107,8,0,114,158,0,116,2,0, +- 106,8,0,131,0,0,1,100,3,0,106,9,0,124,0,0, +- 131,1,0,125,4,0,116,10,0,124,4,0,100,4,0,124, +- 0,0,131,1,1,130,1,0,110,0,0,116,11,0,124,0, +- 0,131,1,0,1,124,3,0,83,41,5,97,50,1,0,0, +- 73,109,112,111,114,116,32,97,110,100,32,114,101,116,117,114, +- 110,32,116,104,101,32,109,111,100,117,108,101,32,98,97,115, +- 101,100,32,111,110,32,105,116,115,32,110,97,109,101,44,32, +- 116,104,101,32,112,97,99,107,97,103,101,32,116,104,101,32, +- 99,97,108,108,32,105,115,10,32,32,32,32,98,101,105,110, +- 103,32,109,97,100,101,32,102,114,111,109,44,32,97,110,100, +- 32,116,104,101,32,108,101,118,101,108,32,97,100,106,117,115, +- 116,109,101,110,116,46,10,10,32,32,32,32,84,104,105,115, +- 32,102,117,110,99,116,105,111,110,32,114,101,112,114,101,115, +- 101,110,116,115,32,116,104,101,32,103,114,101,97,116,101,115, +- 116,32,99,111,109,109,111,110,32,100,101,110,111,109,105,110, +- 97,116,111,114,32,111,102,32,102,117,110,99,116,105,111,110, +- 97,108,105,116,121,10,32,32,32,32,98,101,116,119,101,101, +- 110,32,105,109,112,111,114,116,95,109,111,100,117,108,101,32, +- 97,110,100,32,95,95,105,109,112,111,114,116,95,95,46,32, +- 84,104,105,115,32,105,110,99,108,117,100,101,115,32,115,101, +- 116,116,105,110,103,32,95,95,112,97,99,107,97,103,101,95, +- 95,32,105,102,10,32,32,32,32,116,104,101,32,108,111,97, +- 100,101,114,32,100,105,100,32,110,111,116,46,10,10,32,32, +- 32,32,114,84,0,0,0,78,122,40,105,109,112,111,114,116, +- 32,111,102,32,123,125,32,104,97,108,116,101,100,59,32,78, +- 111,110,101,32,105,110,32,115,121,115,46,109,111,100,117,108, +- 101,115,114,67,0,0,0,41,12,114,110,1,0,0,114,104, +- 1,0,0,114,106,0,0,0,114,3,1,0,0,114,7,0, +- 0,0,114,73,0,0,0,114,114,1,0,0,218,11,95,103, +- 99,100,95,105,109,112,111,114,116,114,107,0,0,0,114,47, +- 0,0,0,114,153,0,0,0,114,112,0,0,0,41,5,114, +- 67,0,0,0,114,102,1,0,0,114,103,1,0,0,114,179, +- 0,0,0,114,151,0,0,0,114,4,0,0,0,114,4,0, +- 0,0,114,5,0,0,0,114,115,1,0,0,192,8,0,0, +- 115,26,0,0,0,0,9,16,1,12,1,21,1,10,1,15, +- 1,13,1,13,1,12,1,10,2,15,1,21,1,10,1,114, +- 115,1,0,0,99,3,0,0,0,0,0,0,0,6,0,0, +- 0,17,0,0,0,67,0,0,0,115,1,1,0,0,116,0, +- 0,124,0,0,100,1,0,131,2,0,114,253,0,100,2,0, +- 124,1,0,107,6,0,114,89,0,116,1,0,124,1,0,131, +- 1,0,125,1,0,124,1,0,106,2,0,100,2,0,131,1, +- 0,1,116,0,0,124,0,0,100,3,0,131,2,0,114,89, +- 0,124,1,0,106,3,0,124,0,0,106,4,0,131,1,0, +- 1,113,89,0,110,0,0,120,161,0,124,1,0,68,93,150, +- 0,125,3,0,116,0,0,124,0,0,124,3,0,131,2,0, +- 115,96,0,100,4,0,106,5,0,124,0,0,106,6,0,124, +- 3,0,131,2,0,125,4,0,121,17,0,116,7,0,124,2, +- 0,124,4,0,131,2,0,1,87,113,246,0,4,116,8,0, +- 107,10,0,114,242,0,1,125,5,0,1,122,53,0,116,9, +- 0,124,5,0,131,1,0,106,10,0,116,11,0,131,1,0, +- 114,221,0,124,5,0,106,12,0,124,4,0,107,2,0,114, +- 221,0,119,96,0,113,221,0,110,0,0,130,0,0,87,89, +- 100,5,0,100,5,0,125,5,0,126,5,0,88,113,246,0, +- 88,113,96,0,113,96,0,87,110,0,0,124,0,0,83,41, +- 6,122,238,70,105,103,117,114,101,32,111,117,116,32,119,104, +- 97,116,32,95,95,105,109,112,111,114,116,95,95,32,115,104, +- 111,117,108,100,32,114,101,116,117,114,110,46,10,10,32,32, +- 32,32,84,104,101,32,105,109,112,111,114,116,95,32,112,97, +- 114,97,109,101,116,101,114,32,105,115,32,97,32,99,97,108, +- 108,97,98,108,101,32,119,104,105,99,104,32,116,97,107,101, +- 115,32,116,104,101,32,110,97,109,101,32,111,102,32,109,111, +- 100,117,108,101,32,116,111,10,32,32,32,32,105,109,112,111, +- 114,116,46,32,73,116,32,105,115,32,114,101,113,117,105,114, +- 101,100,32,116,111,32,100,101,99,111,117,112,108,101,32,116, +- 104,101,32,102,117,110,99,116,105,111,110,32,102,114,111,109, +- 32,97,115,115,117,109,105,110,103,32,105,109,112,111,114,116, +- 108,105,98,39,115,10,32,32,32,32,105,109,112,111,114,116, +- 32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32, +- 105,115,32,100,101,115,105,114,101,100,46,10,10,32,32,32, +- 32,114,246,0,0,0,250,1,42,218,7,95,95,97,108,108, +- 95,95,122,5,123,125,46,123,125,78,41,13,114,60,0,0, +- 0,114,245,0,0,0,218,6,114,101,109,111,118,101,114,197, +- 0,0,0,114,117,1,0,0,114,47,0,0,0,114,57,0, +- 0,0,114,114,0,0,0,114,153,0,0,0,114,82,1,0, +- 0,114,9,0,0,0,218,15,95,69,82,82,95,77,83,71, +- 95,80,82,69,70,73,88,114,67,0,0,0,41,6,114,179, +- 0,0,0,218,8,102,114,111,109,108,105,115,116,114,112,1, +- 0,0,114,16,0,0,0,90,9,102,114,111,109,95,110,97, +- 109,101,114,40,1,0,0,114,4,0,0,0,114,4,0,0, +- 0,114,5,0,0,0,218,16,95,104,97,110,100,108,101,95, +- 102,114,111,109,108,105,115,116,216,8,0,0,115,34,0,0, +- 0,0,10,15,1,12,1,12,1,13,1,15,1,22,1,13, +- 1,15,1,21,1,3,1,17,1,18,4,21,1,15,1,9, +- 1,32,1,114,121,1,0,0,99,1,0,0,0,0,0,0, +- 0,2,0,0,0,2,0,0,0,67,0,0,0,115,78,0, +- 0,0,124,0,0,106,0,0,100,1,0,131,1,0,125,1, +- 0,124,1,0,100,2,0,107,8,0,114,74,0,124,0,0, +- 100,3,0,25,125,1,0,100,4,0,124,0,0,107,7,0, +- 114,74,0,124,1,0,106,1,0,100,5,0,131,1,0,100, +- 6,0,25,125,1,0,113,74,0,110,0,0,124,1,0,83, +- 41,7,122,167,67,97,108,99,117,108,97,116,101,32,119,104, +- 97,116,32,95,95,112,97,99,107,97,103,101,95,95,32,115, +- 104,111,117,108,100,32,98,101,46,10,10,32,32,32,32,95, +- 95,112,97,99,107,97,103,101,95,95,32,105,115,32,110,111, +- 116,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32, +- 98,101,32,100,101,102,105,110,101,100,32,111,114,32,99,111, +- 117,108,100,32,98,101,32,115,101,116,32,116,111,32,78,111, +- 110,101,10,32,32,32,32,116,111,32,114,101,112,114,101,115, +- 101,110,116,32,116,104,97,116,32,105,116,115,32,112,114,111, +- 112,101,114,32,118,97,108,117,101,32,105,115,32,117,110,107, +- 110,111,119,110,46,10,10,32,32,32,32,114,250,0,0,0, +- 78,114,57,0,0,0,114,246,0,0,0,114,116,0,0,0, +- 114,84,0,0,0,41,2,114,93,0,0,0,114,32,0,0, +- 0,41,2,218,7,103,108,111,98,97,108,115,114,102,1,0, +- 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, +- 218,17,95,99,97,108,99,95,95,95,112,97,99,107,97,103, +- 101,95,95,248,8,0,0,115,12,0,0,0,0,7,15,1, +- 12,1,10,1,12,1,25,1,114,123,1,0,0,99,0,0, +- 0,0,0,0,0,0,3,0,0,0,3,0,0,0,67,0, +- 0,0,115,55,0,0,0,116,0,0,116,1,0,106,2,0, +- 131,0,0,102,2,0,125,0,0,116,3,0,116,4,0,102, +- 2,0,125,1,0,116,5,0,116,6,0,102,2,0,125,2, +- 0,124,0,0,124,1,0,124,2,0,103,3,0,83,41,1, +- 122,95,82,101,116,117,114,110,115,32,97,32,108,105,115,116, +- 32,111,102,32,102,105,108,101,45,98,97,115,101,100,32,109, +- 111,100,117,108,101,32,108,111,97,100,101,114,115,46,10,10, +- 32,32,32,32,69,97,99,104,32,105,116,101,109,32,105,115, +- 32,97,32,116,117,112,108,101,32,40,108,111,97,100,101,114, +- 44,32,115,117,102,102,105,120,101,115,41,46,10,32,32,32, +- 32,41,7,114,56,1,0,0,114,106,0,0,0,218,18,101, +- 120,116,101,110,115,105,111,110,95,115,117,102,102,105,120,101, +- 115,114,8,1,0,0,114,134,0,0,0,114,7,1,0,0, +- 114,232,0,0,0,41,3,90,10,101,120,116,101,110,115,105, +- 111,110,115,90,6,115,111,117,114,99,101,90,8,98,121,116, +- 101,99,111,100,101,114,4,0,0,0,114,4,0,0,0,114, +- 5,0,0,0,114,240,0,0,0,7,9,0,0,115,8,0, +- 0,0,0,5,18,1,12,1,12,1,114,240,0,0,0,99, +- 5,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0, +- 67,0,0,0,115,227,0,0,0,124,4,0,100,1,0,107, +- 2,0,114,27,0,116,0,0,124,0,0,131,1,0,125,5, +- 0,110,54,0,124,1,0,100,2,0,107,9,0,114,45,0, +- 124,1,0,110,3,0,105,0,0,125,6,0,116,1,0,124, +- 6,0,131,1,0,125,7,0,116,0,0,124,0,0,124,7, +- 0,124,4,0,131,3,0,125,5,0,124,3,0,115,207,0, +- 124,4,0,100,1,0,107,2,0,114,122,0,116,0,0,124, +- 0,0,106,2,0,100,3,0,131,1,0,100,1,0,25,131, +- 1,0,83,124,0,0,115,132,0,124,5,0,83,116,3,0, +- 124,0,0,131,1,0,116,3,0,124,0,0,106,2,0,100, +- 3,0,131,1,0,100,1,0,25,131,1,0,24,125,8,0, +- 116,4,0,106,5,0,124,5,0,106,6,0,100,2,0,116, +- 3,0,124,5,0,106,6,0,131,1,0,124,8,0,24,133, +- 2,0,25,25,83,110,16,0,116,7,0,124,5,0,124,3, +- 0,116,0,0,131,3,0,83,100,2,0,83,41,4,97,214, +- 1,0,0,73,109,112,111,114,116,32,97,32,109,111,100,117, +- 108,101,46,10,10,32,32,32,32,84,104,101,32,39,103,108, +- 111,98,97,108,115,39,32,97,114,103,117,109,101,110,116,32, +- 105,115,32,117,115,101,100,32,116,111,32,105,110,102,101,114, +- 32,119,104,101,114,101,32,116,104,101,32,105,109,112,111,114, +- 116,32,105,115,32,111,99,99,117,114,105,110,103,32,102,114, +- 111,109,10,32,32,32,32,116,111,32,104,97,110,100,108,101, +- 32,114,101,108,97,116,105,118,101,32,105,109,112,111,114,116, +- 115,46,32,84,104,101,32,39,108,111,99,97,108,115,39,32, +- 97,114,103,117,109,101,110,116,32,105,115,32,105,103,110,111, +- 114,101,100,46,32,84,104,101,10,32,32,32,32,39,102,114, +- 111,109,108,105,115,116,39,32,97,114,103,117,109,101,110,116, +- 32,115,112,101,99,105,102,105,101,115,32,119,104,97,116,32, +- 115,104,111,117,108,100,32,101,120,105,115,116,32,97,115,32, +- 97,116,116,114,105,98,117,116,101,115,32,111,110,32,116,104, +- 101,32,109,111,100,117,108,101,10,32,32,32,32,98,101,105, +- 110,103,32,105,109,112,111,114,116,101,100,32,40,101,46,103, +- 46,32,96,96,102,114,111,109,32,109,111,100,117,108,101,32, +- 105,109,112,111,114,116,32,60,102,114,111,109,108,105,115,116, +- 62,96,96,41,46,32,32,84,104,101,32,39,108,101,118,101, +- 108,39,10,32,32,32,32,97,114,103,117,109,101,110,116,32, +- 114,101,112,114,101,115,101,110,116,115,32,116,104,101,32,112, +- 97,99,107,97,103,101,32,108,111,99,97,116,105,111,110,32, +- 116,111,32,105,109,112,111,114,116,32,102,114,111,109,32,105, +- 110,32,97,32,114,101,108,97,116,105,118,101,10,32,32,32, +- 32,105,109,112,111,114,116,32,40,101,46,103,46,32,96,96, +- 102,114,111,109,32,46,46,112,107,103,32,105,109,112,111,114, +- 116,32,109,111,100,96,96,32,119,111,117,108,100,32,104,97, +- 118,101,32,97,32,39,108,101,118,101,108,39,32,111,102,32, +- 50,41,46,10,10,32,32,32,32,114,84,0,0,0,78,114, +- 116,0,0,0,41,8,114,115,1,0,0,114,123,1,0,0, +- 114,121,0,0,0,114,31,0,0,0,114,7,0,0,0,114, +- 73,0,0,0,114,57,0,0,0,114,121,1,0,0,41,9, +- 114,67,0,0,0,114,122,1,0,0,218,6,108,111,99,97, +- 108,115,114,120,1,0,0,114,103,1,0,0,114,179,0,0, +- 0,90,8,103,108,111,98,97,108,115,95,114,102,1,0,0, +- 90,7,99,117,116,95,111,102,102,114,4,0,0,0,114,4, +- 0,0,0,114,5,0,0,0,218,10,95,95,105,109,112,111, +- 114,116,95,95,18,9,0,0,115,26,0,0,0,0,11,12, +- 1,15,2,24,1,12,1,18,1,6,3,12,1,23,1,6, +- 1,4,4,35,3,40,2,114,126,1,0,0,99,1,0,0, +- 0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,0, +- 0,115,68,0,0,0,116,0,0,106,1,0,124,0,0,131, +- 1,0,125,1,0,124,1,0,100,0,0,107,8,0,114,46, +- 0,116,2,0,100,1,0,124,0,0,23,131,1,0,130,1, +- 0,110,0,0,116,3,0,124,1,0,131,1,0,125,2,0, +- 124,2,0,106,4,0,131,0,0,83,41,2,78,122,25,110, +- 111,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, +- 101,32,110,97,109,101,100,32,41,5,114,10,1,0,0,114, +- 13,1,0,0,114,153,0,0,0,114,174,0,0,0,114,6, +- 1,0,0,41,3,114,67,0,0,0,114,177,0,0,0,114, +- 178,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, +- 0,0,0,218,18,95,98,117,105,108,116,105,110,95,102,114, +- 111,109,95,110,97,109,101,53,9,0,0,115,10,0,0,0, +- 0,1,15,1,12,1,19,1,12,1,114,127,1,0,0,99, +- 2,0,0,0,0,0,0,0,19,0,0,0,12,0,0,0, +- 67,0,0,0,115,232,2,0,0,124,1,0,97,0,0,124, +- 0,0,97,1,0,116,1,0,106,2,0,106,3,0,114,33, +- 0,116,4,0,97,5,0,110,6,0,116,6,0,97,5,0, +- 116,7,0,116,1,0,131,1,0,125,2,0,120,138,0,116, +- 1,0,106,8,0,106,9,0,131,0,0,68,93,121,0,92, +- 2,0,125,3,0,125,4,0,116,10,0,124,4,0,124,2, +- 0,131,2,0,114,67,0,124,3,0,116,1,0,106,11,0, +- 107,6,0,114,118,0,116,12,0,125,5,0,110,27,0,116, +- 0,0,106,13,0,124,3,0,131,1,0,114,67,0,116,14, +- 0,125,5,0,110,3,0,113,67,0,116,15,0,124,4,0, +- 124,5,0,131,2,0,125,6,0,116,16,0,124,6,0,131, +- 1,0,125,7,0,124,7,0,106,17,0,124,4,0,131,1, +- 0,1,113,67,0,113,67,0,87,116,1,0,106,8,0,116, +- 18,0,25,125,8,0,120,73,0,100,26,0,68,93,65,0, +- 125,9,0,124,9,0,116,1,0,106,8,0,107,7,0,114, +- 248,0,116,19,0,124,9,0,131,1,0,125,10,0,110,13, +- 0,116,1,0,106,8,0,124,9,0,25,125,10,0,116,20, +- 0,124,8,0,124,9,0,124,10,0,131,3,0,1,113,212, +- 0,87,100,5,0,100,6,0,103,1,0,102,2,0,100,7, +- 0,100,8,0,100,6,0,103,2,0,102,2,0,102,2,0, +- 125,11,0,120,146,0,124,11,0,68,93,126,0,92,2,0, +- 125,12,0,125,13,0,116,21,0,100,9,0,100,10,0,132, +- 0,0,124,13,0,68,131,1,0,131,1,0,115,108,1,116, +- 22,0,130,1,0,124,13,0,100,11,0,25,125,14,0,124, +- 12,0,116,1,0,106,8,0,107,6,0,114,150,1,116,1, +- 0,106,8,0,124,12,0,25,125,15,0,80,113,65,1,121, +- 17,0,116,19,0,124,12,0,131,1,0,125,15,0,80,87, +- 113,65,1,4,116,23,0,107,10,0,114,190,1,1,1,1, +- 119,65,1,89,113,65,1,88,113,65,1,87,116,23,0,100, +- 12,0,131,1,0,130,1,0,116,20,0,124,8,0,100,13, +- 0,124,15,0,131,3,0,1,116,20,0,124,8,0,100,14, +- 0,124,14,0,131,3,0,1,116,20,0,124,8,0,100,15, +- 0,100,16,0,106,24,0,124,13,0,131,1,0,131,3,0, +- 1,121,16,0,116,19,0,100,17,0,131,1,0,125,16,0, +- 87,110,24,0,4,116,23,0,107,10,0,114,50,2,1,1, +- 1,100,18,0,125,16,0,89,110,1,0,88,116,20,0,124, +- 8,0,100,17,0,124,16,0,131,3,0,1,116,19,0,100, +- 19,0,131,1,0,125,17,0,116,20,0,124,8,0,100,19, +- 0,124,17,0,131,3,0,1,124,12,0,100,7,0,107,2, +- 0,114,138,2,116,19,0,100,20,0,131,1,0,125,18,0, +- 116,20,0,124,8,0,100,21,0,124,18,0,131,3,0,1, +- 110,0,0,116,20,0,124,8,0,100,22,0,116,25,0,131, +- 0,0,131,3,0,1,116,26,0,106,27,0,116,0,0,106, +- 28,0,131,0,0,131,1,0,1,124,12,0,100,7,0,107, +- 2,0,114,228,2,116,29,0,106,30,0,100,23,0,131,1, +- 0,1,100,24,0,116,26,0,107,6,0,114,228,2,100,25, +- 0,116,31,0,95,32,0,113,228,2,110,0,0,100,18,0, +- 83,41,27,122,250,83,101,116,117,112,32,105,109,112,111,114, +- 116,108,105,98,32,98,121,32,105,109,112,111,114,116,105,110, +- 103,32,110,101,101,100,101,100,32,98,117,105,108,116,45,105, +- 110,32,109,111,100,117,108,101,115,32,97,110,100,32,105,110, +- 106,101,99,116,105,110,103,32,116,104,101,109,10,32,32,32, +- 32,105,110,116,111,32,116,104,101,32,103,108,111,98,97,108, +- 32,110,97,109,101,115,112,97,99,101,46,10,10,32,32,32, +- 32,65,115,32,115,121,115,32,105,115,32,110,101,101,100,101, +- 100,32,102,111,114,32,115,121,115,46,109,111,100,117,108,101, +- 115,32,97,99,99,101,115,115,32,97,110,100,32,95,105,109, +- 112,32,105,115,32,110,101,101,100,101,100,32,116,111,32,108, +- 111,97,100,32,98,117,105,108,116,45,105,110,10,32,32,32, +- 32,109,111,100,117,108,101,115,44,32,116,104,111,115,101,32, +- 116,119,111,32,109,111,100,117,108,101,115,32,109,117,115,116, +- 32,98,101,32,101,120,112,108,105,99,105,116,108,121,32,112, +- 97,115,115,101,100,32,105,110,46,10,10,32,32,32,32,114, +- 49,0,0,0,114,166,0,0,0,218,8,98,117,105,108,116, +- 105,110,115,114,191,0,0,0,90,5,112,111,115,105,120,250, +- 1,47,218,2,110,116,250,1,92,99,1,0,0,0,0,0, +- 0,0,2,0,0,0,3,0,0,0,115,0,0,0,115,33, +- 0,0,0,124,0,0,93,23,0,125,1,0,116,0,0,124, +- 1,0,131,1,0,100,0,0,107,2,0,86,1,113,3,0, +- 100,1,0,83,41,2,114,29,0,0,0,78,41,1,114,31, +- 0,0,0,41,2,114,22,0,0,0,114,130,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,77, +- 0,0,0,105,9,0,0,115,2,0,0,0,6,0,122,25, +- 95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,46, +- 60,103,101,110,101,120,112,114,62,114,84,0,0,0,122,30, +- 105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,114, +- 101,115,32,112,111,115,105,120,32,111,114,32,110,116,114,3, +- 0,0,0,114,25,0,0,0,114,21,0,0,0,114,30,0, +- 0,0,114,85,0,0,0,78,114,111,0,0,0,90,6,119, +- 105,110,114,101,103,114,23,1,0,0,114,6,0,0,0,122, +- 4,46,112,121,119,122,6,95,100,46,112,121,100,84,41,4, +- 122,3,95,105,111,122,9,95,119,97,114,110,105,110,103,115, +- 122,8,98,117,105,108,116,105,110,115,122,7,109,97,114,115, +- 104,97,108,41,33,114,106,0,0,0,114,7,0,0,0,114, +- 117,0,0,0,114,118,0,0,0,114,120,0,0,0,114,232, +- 0,0,0,114,119,0,0,0,114,66,0,0,0,114,73,0, +- 0,0,218,5,105,116,101,109,115,114,192,0,0,0,114,157, +- 0,0,0,114,10,1,0,0,114,162,0,0,0,114,19,1, +- 0,0,114,247,0,0,0,114,174,0,0,0,114,254,0,0, +- 0,114,57,0,0,0,114,127,1,0,0,114,61,0,0,0, +- 218,3,97,108,108,114,100,0,0,0,114,153,0,0,0,114, +- 26,0,0,0,114,11,0,0,0,114,59,1,0,0,114,197, +- 0,0,0,114,124,1,0,0,114,134,0,0,0,114,223,0, +- 0,0,114,22,1,0,0,114,26,1,0,0,41,19,218,10, +- 115,121,115,95,109,111,100,117,108,101,218,11,95,105,109,112, +- 95,109,111,100,117,108,101,90,11,109,111,100,117,108,101,95, +- 116,121,112,101,114,67,0,0,0,114,179,0,0,0,114,169, +- 0,0,0,114,177,0,0,0,114,178,0,0,0,90,11,115, +- 101,108,102,95,109,111,100,117,108,101,90,12,98,117,105,108, +- 116,105,110,95,110,97,109,101,90,14,98,117,105,108,116,105, +- 110,95,109,111,100,117,108,101,90,10,111,115,95,100,101,116, +- 97,105,108,115,90,10,98,117,105,108,116,105,110,95,111,115, +- 114,21,0,0,0,114,25,0,0,0,90,9,111,115,95,109, +- 111,100,117,108,101,90,13,116,104,114,101,97,100,95,109,111, +- 100,117,108,101,90,14,119,101,97,107,114,101,102,95,109,111, +- 100,117,108,101,90,13,119,105,110,114,101,103,95,109,111,100, +- 117,108,101,114,4,0,0,0,114,4,0,0,0,114,5,0, +- 0,0,218,6,95,115,101,116,117,112,61,9,0,0,115,108, +- 0,0,0,0,9,6,1,6,2,12,1,9,2,6,3,12, +- 1,28,1,15,1,15,1,9,1,15,1,9,2,3,1,15, +- 1,12,1,20,3,13,1,13,1,15,1,15,2,13,1,20, +- 3,33,1,19,2,31,1,10,1,15,1,13,1,4,2,3, +- 1,12,1,5,1,13,1,12,2,12,1,16,1,16,1,25, +- 3,3,1,16,1,13,2,11,1,16,3,12,1,16,3,12, +- 1,12,1,19,3,19,1,19,1,12,1,13,1,12,1,114, +- 136,1,0,0,99,2,0,0,0,0,0,0,0,3,0,0, +- 0,3,0,0,0,67,0,0,0,115,136,0,0,0,116,0, +- 0,124,0,0,124,1,0,131,2,0,1,116,1,0,131,0, +- 0,125,2,0,116,2,0,106,3,0,106,4,0,116,5,0, +- 106,6,0,124,2,0,140,0,0,103,1,0,131,1,0,1, +- 116,2,0,106,7,0,106,8,0,116,9,0,131,1,0,1, +- 116,2,0,106,7,0,106,8,0,116,10,0,131,1,0,1, +- 116,11,0,106,12,0,100,1,0,107,2,0,114,116,0,116, +- 2,0,106,7,0,106,8,0,116,13,0,131,1,0,1,110, +- 0,0,116,2,0,106,7,0,106,8,0,116,14,0,131,1, +- 0,1,100,2,0,83,41,3,122,50,73,110,115,116,97,108, +- 108,32,105,109,112,111,114,116,108,105,98,32,97,115,32,116, +- 104,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111, +- 110,32,111,102,32,105,109,112,111,114,116,46,114,130,1,0, +- 0,78,41,15,114,136,1,0,0,114,240,0,0,0,114,7, +- 0,0,0,114,78,1,0,0,114,197,0,0,0,114,86,1, +- 0,0,114,100,1,0,0,114,106,1,0,0,114,223,0,0, +- 0,114,10,1,0,0,114,19,1,0,0,114,3,0,0,0, +- 114,57,0,0,0,114,22,1,0,0,114,73,1,0,0,41, +- 3,114,134,1,0,0,114,135,1,0,0,90,17,115,117,112, +- 112,111,114,116,101,100,95,108,111,97,100,101,114,115,114,4, +- 0,0,0,114,4,0,0,0,114,5,0,0,0,218,8,95, +- 105,110,115,116,97,108,108,148,9,0,0,115,16,0,0,0, +- 0,2,13,1,9,1,28,1,16,1,16,1,15,1,19,1, +- 114,137,1,0,0,41,3,122,3,119,105,110,114,1,0,0, +- 0,114,2,0,0,0,41,92,114,59,0,0,0,114,10,0, +- 0,0,114,11,0,0,0,114,17,0,0,0,114,19,0,0, +- 0,114,28,0,0,0,114,38,0,0,0,114,39,0,0,0, +- 114,43,0,0,0,114,44,0,0,0,114,46,0,0,0,114, +- 55,0,0,0,114,65,0,0,0,114,68,0,0,0,114,66, +- 0,0,0,218,8,95,95,99,111,100,101,95,95,114,193,0, +- 0,0,114,69,0,0,0,114,109,0,0,0,114,92,0,0, +- 0,114,99,0,0,0,114,82,0,0,0,114,83,0,0,0, +- 114,102,0,0,0,114,103,0,0,0,114,105,0,0,0,114, +- 112,0,0,0,114,114,0,0,0,114,15,0,0,0,114,185, +- 0,0,0,114,14,0,0,0,114,18,0,0,0,90,17,95, +- 82,65,87,95,77,65,71,73,67,95,78,85,77,66,69,82, +- 114,125,0,0,0,114,134,0,0,0,114,119,0,0,0,114, +- 120,0,0,0,114,132,0,0,0,114,135,0,0,0,114,142, +- 0,0,0,114,144,0,0,0,114,152,0,0,0,114,156,0, +- 0,0,114,161,0,0,0,114,164,0,0,0,114,172,0,0, +- 0,114,180,0,0,0,114,190,0,0,0,114,195,0,0,0, +- 114,198,0,0,0,114,203,0,0,0,114,211,0,0,0,114, +- 212,0,0,0,114,216,0,0,0,114,173,0,0,0,218,6, +- 111,98,106,101,99,116,114,241,0,0,0,114,239,0,0,0, +- 114,247,0,0,0,114,174,0,0,0,114,9,1,0,0,114, +- 10,1,0,0,114,19,1,0,0,114,22,1,0,0,114,32, +- 1,0,0,114,33,1,0,0,114,48,1,0,0,114,8,1, +- 0,0,114,7,1,0,0,114,59,1,0,0,114,56,1,0, +- 0,114,60,1,0,0,114,251,0,0,0,114,73,1,0,0, +- 114,86,1,0,0,114,101,1,0,0,114,104,1,0,0,114, +- 105,1,0,0,114,107,1,0,0,114,110,1,0,0,114,119, +- 1,0,0,114,111,1,0,0,114,113,1,0,0,114,114,1, +- 0,0,114,115,1,0,0,114,121,1,0,0,114,123,1,0, +- 0,114,240,0,0,0,114,126,1,0,0,114,127,1,0,0, +- 114,136,1,0,0,114,137,1,0,0,114,4,0,0,0,114, +- 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,8, +- 60,109,111,100,117,108,101,62,8,0,0,0,115,170,0,0, +- 0,6,17,6,3,12,12,12,5,12,5,12,6,12,12,12, +- 10,12,9,12,5,12,7,15,22,12,8,12,4,15,4,19, +- 20,6,2,6,3,22,4,19,68,19,21,19,19,12,19,12, +- 20,12,114,22,1,18,2,6,2,9,2,9,1,9,2,15, +- 27,12,23,12,19,12,12,18,8,12,18,12,11,12,11,12, +- 17,12,16,21,55,21,12,18,10,12,14,12,36,19,27,19, +- 106,24,22,9,3,12,1,15,63,18,45,19,230,15,25,19, +- 70,19,71,19,63,19,24,22,110,19,41,25,43,25,16,6, +- 3,19,57,19,57,19,38,19,129,19,146,19,13,12,9,12, +- 9,15,40,12,17,6,1,10,2,12,27,12,6,18,24,12, +- 32,12,15,12,11,24,35,12,8,12,87, ++ 83,41,2,122,24,65,99,113,117,105,114,101,32,116,104,101, ++ 32,105,109,112,111,114,116,32,108,111,99,107,46,78,41,2, ++ 114,107,0,0,0,114,4,1,0,0,41,1,114,72,0,0, ++ 0,114,5,0,0,0,114,5,0,0,0,114,6,0,0,0, ++ 114,76,0,0,0,72,8,0,0,115,2,0,0,0,0,2, ++ 122,28,95,73,109,112,111,114,116,76,111,99,107,67,111,110, ++ 116,101,120,116,46,95,95,101,110,116,101,114,95,95,99,4, ++ 0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,67, ++ 0,0,0,115,14,0,0,0,116,0,0,106,1,0,131,0, ++ 0,1,100,1,0,83,41,2,122,60,82,101,108,101,97,115, ++ 101,32,116,104,101,32,105,109,112,111,114,116,32,108,111,99, ++ 107,32,114,101,103,97,114,100,108,101,115,115,32,111,102,32, ++ 97,110,121,32,114,97,105,115,101,100,32,101,120,99,101,112, ++ 116,105,111,110,115,46,78,41,2,114,107,0,0,0,114,108, ++ 0,0,0,41,4,114,72,0,0,0,90,8,101,120,99,95, ++ 116,121,112,101,90,9,101,120,99,95,118,97,108,117,101,90, ++ 13,101,120,99,95,116,114,97,99,101,98,97,99,107,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,114,82,0, ++ 0,0,76,8,0,0,115,2,0,0,0,0,2,122,27,95, ++ 73,109,112,111,114,116,76,111,99,107,67,111,110,116,101,120, ++ 116,46,95,95,101,120,105,116,95,95,78,41,6,114,58,0, ++ 0,0,114,57,0,0,0,114,59,0,0,0,114,60,0,0, ++ 0,114,76,0,0,0,114,82,0,0,0,114,5,0,0,0, ++ 114,5,0,0,0,114,5,0,0,0,114,6,0,0,0,114, ++ 102,1,0,0,68,8,0,0,115,6,0,0,0,12,2,6, ++ 2,12,4,114,102,1,0,0,99,3,0,0,0,0,0,0, ++ 0,5,0,0,0,4,0,0,0,67,0,0,0,115,91,0, ++ 0,0,124,1,0,106,0,0,100,1,0,124,2,0,100,2, ++ 0,24,131,2,0,125,3,0,116,1,0,124,3,0,131,1, ++ 0,124,2,0,107,0,0,114,55,0,116,2,0,100,3,0, ++ 131,1,0,130,1,0,110,0,0,124,3,0,100,4,0,25, ++ 125,4,0,124,0,0,114,87,0,100,5,0,106,3,0,124, ++ 4,0,124,0,0,131,2,0,83,124,4,0,83,41,6,122, ++ 50,82,101,115,111,108,118,101,32,97,32,114,101,108,97,116, ++ 105,118,101,32,109,111,100,117,108,101,32,110,97,109,101,32, ++ 116,111,32,97,110,32,97,98,115,111,108,117,116,101,32,111, ++ 110,101,46,114,117,0,0,0,114,30,0,0,0,122,50,97, ++ 116,116,101,109,112,116,101,100,32,114,101,108,97,116,105,118, ++ 101,32,105,109,112,111,114,116,32,98,101,121,111,110,100,32, ++ 116,111,112,45,108,101,118,101,108,32,112,97,99,107,97,103, ++ 101,114,85,0,0,0,122,5,123,125,46,123,125,41,4,114, ++ 35,0,0,0,114,32,0,0,0,114,134,0,0,0,114,48, ++ 0,0,0,41,5,114,68,0,0,0,218,7,112,97,99,107, ++ 97,103,101,218,5,108,101,118,101,108,90,4,98,105,116,115, ++ 90,4,98,97,115,101,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,13,95,114,101,115,111,108,118,101,95, ++ 110,97,109,101,81,8,0,0,115,10,0,0,0,0,2,22, ++ 1,18,1,15,1,10,1,114,105,1,0,0,99,3,0,0, ++ 0,0,0,0,0,4,0,0,0,3,0,0,0,67,0,0, ++ 0,115,47,0,0,0,124,0,0,106,0,0,124,1,0,124, ++ 2,0,131,2,0,125,3,0,124,3,0,100,0,0,107,8, ++ 0,114,34,0,100,0,0,83,116,1,0,124,1,0,124,3, ++ 0,131,2,0,83,41,1,78,41,2,114,15,1,0,0,114, ++ 174,0,0,0,41,4,114,78,1,0,0,114,68,0,0,0, ++ 114,36,0,0,0,114,170,0,0,0,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,218,17,95,102,105,110,100, ++ 95,115,112,101,99,95,108,101,103,97,99,121,90,8,0,0, ++ 115,8,0,0,0,0,3,18,1,12,1,4,1,114,106,1, ++ 0,0,99,3,0,0,0,0,0,0,0,9,0,0,0,26, ++ 0,0,0,67,0,0,0,115,34,1,0,0,116,0,0,106, ++ 1,0,115,28,0,116,2,0,106,3,0,100,1,0,116,4, ++ 0,131,2,0,1,110,0,0,124,0,0,116,0,0,106,5, ++ 0,107,6,0,125,3,0,120,240,0,116,0,0,106,1,0, ++ 68,93,225,0,125,4,0,116,6,0,131,0,0,143,93,0, ++ 1,121,13,0,124,4,0,106,7,0,125,5,0,87,110,54, ++ 0,4,116,8,0,107,10,0,114,138,0,1,1,1,116,9, ++ 0,124,4,0,124,0,0,124,1,0,131,3,0,125,6,0, ++ 124,6,0,100,2,0,107,8,0,114,134,0,119,53,0,110, ++ 0,0,89,110,19,0,88,124,5,0,124,0,0,124,1,0, ++ 124,2,0,131,3,0,125,6,0,87,100,2,0,81,88,124, ++ 6,0,100,2,0,107,9,0,114,53,0,124,3,0,12,114, ++ 15,1,124,0,0,116,0,0,106,5,0,107,6,0,114,15, ++ 1,116,0,0,106,5,0,124,0,0,25,125,7,0,121,13, ++ 0,124,7,0,106,10,0,125,8,0,87,110,22,0,4,116, ++ 8,0,107,10,0,114,247,0,1,1,1,124,6,0,83,89, ++ 113,19,1,88,124,8,0,100,2,0,107,8,0,114,8,1, ++ 124,6,0,83,124,8,0,83,113,22,1,124,6,0,83,113, ++ 53,0,113,53,0,87,100,2,0,83,100,2,0,83,41,3, ++ 122,23,70,105,110,100,32,97,32,109,111,100,117,108,101,39, ++ 115,32,108,111,97,100,101,114,46,122,22,115,121,115,46,109, ++ 101,116,97,95,112,97,116,104,32,105,115,32,101,109,112,116, ++ 121,78,41,11,114,8,0,0,0,218,9,109,101,116,97,95, ++ 112,97,116,104,114,167,0,0,0,114,168,0,0,0,114,169, ++ 0,0,0,114,74,0,0,0,114,102,1,0,0,114,14,1, ++ 0,0,114,210,0,0,0,114,106,1,0,0,114,209,0,0, ++ 0,41,9,114,68,0,0,0,114,36,0,0,0,114,13,1, ++ 0,0,90,9,105,115,95,114,101,108,111,97,100,114,78,1, ++ 0,0,114,14,1,0,0,114,178,0,0,0,114,180,0,0, ++ 0,114,209,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,10,95,102,105,110,100,95,115,112,101, ++ 99,99,8,0,0,115,48,0,0,0,0,2,9,1,19,4, ++ 15,1,16,1,10,1,3,1,13,1,13,1,18,1,12,1, ++ 11,2,24,1,12,2,22,1,13,1,3,1,13,1,13,4, ++ 9,2,12,1,4,2,7,2,11,2,114,108,1,0,0,99, ++ 3,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0, ++ 67,0,0,0,115,194,0,0,0,116,0,0,124,0,0,116, ++ 1,0,131,2,0,115,45,0,116,2,0,100,1,0,106,3, ++ 0,116,4,0,124,0,0,131,1,0,131,1,0,131,1,0, ++ 130,1,0,110,0,0,124,2,0,100,2,0,107,0,0,114, ++ 72,0,116,5,0,100,3,0,131,1,0,130,1,0,110,0, ++ 0,124,1,0,114,156,0,116,0,0,124,1,0,116,1,0, ++ 131,2,0,115,108,0,116,2,0,100,4,0,131,1,0,130, ++ 1,0,113,156,0,124,1,0,116,6,0,106,7,0,107,7, ++ 0,114,156,0,100,5,0,125,3,0,116,8,0,124,3,0, ++ 106,3,0,124,1,0,131,1,0,131,1,0,130,1,0,113, ++ 156,0,110,0,0,124,0,0,12,114,190,0,124,2,0,100, ++ 2,0,107,2,0,114,190,0,116,5,0,100,6,0,131,1, ++ 0,130,1,0,110,0,0,100,7,0,83,41,8,122,28,86, ++ 101,114,105,102,121,32,97,114,103,117,109,101,110,116,115,32, ++ 97,114,101,32,34,115,97,110,101,34,46,122,31,109,111,100, ++ 117,108,101,32,110,97,109,101,32,109,117,115,116,32,98,101, ++ 32,115,116,114,44,32,110,111,116,32,123,125,114,85,0,0, ++ 0,122,18,108,101,118,101,108,32,109,117,115,116,32,98,101, ++ 32,62,61,32,48,122,31,95,95,112,97,99,107,97,103,101, ++ 95,95,32,110,111,116,32,115,101,116,32,116,111,32,97,32, ++ 115,116,114,105,110,103,122,61,80,97,114,101,110,116,32,109, ++ 111,100,117,108,101,32,123,33,114,125,32,110,111,116,32,108, ++ 111,97,100,101,100,44,32,99,97,110,110,111,116,32,112,101, ++ 114,102,111,114,109,32,114,101,108,97,116,105,118,101,32,105, ++ 109,112,111,114,116,122,17,69,109,112,116,121,32,109,111,100, ++ 117,108,101,32,110,97,109,101,78,41,9,114,193,0,0,0, ++ 114,83,1,0,0,218,9,84,121,112,101,69,114,114,111,114, ++ 114,48,0,0,0,114,67,0,0,0,114,134,0,0,0,114, ++ 8,0,0,0,114,74,0,0,0,218,11,83,121,115,116,101, ++ 109,69,114,114,111,114,41,4,114,68,0,0,0,114,103,1, ++ 0,0,114,104,1,0,0,114,172,0,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,13,95,115,97, ++ 110,105,116,121,95,99,104,101,99,107,139,8,0,0,115,24, ++ 0,0,0,0,2,15,1,30,1,12,1,15,1,6,1,15, ++ 1,15,1,15,1,6,2,27,1,19,1,114,111,1,0,0, ++ 122,16,78,111,32,109,111,100,117,108,101,32,110,97,109,101, ++ 100,32,122,4,123,33,114,125,99,2,0,0,0,0,0,0, ++ 0,8,0,0,0,12,0,0,0,67,0,0,0,115,52,1, ++ 0,0,100,0,0,125,2,0,124,0,0,106,0,0,100,1, ++ 0,131,1,0,100,2,0,25,125,3,0,124,3,0,114,178, ++ 0,124,3,0,116,1,0,106,2,0,107,7,0,114,62,0, ++ 116,3,0,124,1,0,124,3,0,131,2,0,1,110,0,0, ++ 124,0,0,116,1,0,106,2,0,107,6,0,114,88,0,116, ++ 1,0,106,2,0,124,0,0,25,83,116,1,0,106,2,0, ++ 124,3,0,25,125,4,0,121,13,0,124,4,0,106,4,0, ++ 125,2,0,87,113,178,0,4,116,5,0,107,10,0,114,174, ++ 0,1,1,1,116,6,0,100,3,0,23,106,7,0,124,0, ++ 0,124,3,0,131,2,0,125,5,0,116,8,0,124,5,0, ++ 100,4,0,124,0,0,131,1,1,130,1,0,89,113,178,0, ++ 88,110,0,0,116,9,0,124,0,0,124,2,0,131,2,0, ++ 125,6,0,124,6,0,100,0,0,107,8,0,114,235,0,116, ++ 8,0,116,6,0,106,7,0,124,0,0,131,1,0,100,4, ++ 0,124,0,0,131,1,1,130,1,0,110,18,0,116,10,0, ++ 124,6,0,131,1,0,106,11,0,131,0,0,125,7,0,124, ++ 3,0,114,48,1,116,1,0,106,2,0,124,3,0,25,125, ++ 4,0,116,12,0,124,4,0,124,0,0,106,0,0,100,1, ++ 0,131,1,0,100,5,0,25,124,7,0,131,3,0,1,110, ++ 0,0,124,7,0,83,41,6,78,114,117,0,0,0,114,85, ++ 0,0,0,122,23,59,32,123,33,114,125,32,105,115,32,110, ++ 111,116,32,97,32,112,97,99,107,97,103,101,114,68,0,0, ++ 0,114,116,0,0,0,41,13,114,33,0,0,0,114,8,0, ++ 0,0,114,74,0,0,0,114,115,0,0,0,114,247,0,0, ++ 0,114,210,0,0,0,218,8,95,69,82,82,95,77,83,71, ++ 114,48,0,0,0,114,154,0,0,0,114,108,1,0,0,114, ++ 175,0,0,0,114,7,1,0,0,114,62,0,0,0,41,8, ++ 114,68,0,0,0,218,7,105,109,112,111,114,116,95,114,36, ++ 0,0,0,114,234,0,0,0,90,13,112,97,114,101,110,116, ++ 95,109,111,100,117,108,101,114,172,0,0,0,114,178,0,0, ++ 0,114,180,0,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,23,95,102,105,110,100,95,97,110,100, ++ 95,108,111,97,100,95,117,110,108,111,99,107,101,100,159,8, ++ 0,0,115,42,0,0,0,0,1,6,1,19,1,6,1,15, ++ 1,16,2,15,1,11,1,13,1,3,1,13,1,13,1,22, ++ 1,26,1,15,1,12,1,30,2,18,1,6,2,13,1,32, ++ 1,114,114,1,0,0,99,2,0,0,0,0,0,0,0,2, ++ 0,0,0,10,0,0,0,67,0,0,0,115,36,0,0,0, ++ 116,0,0,124,0,0,131,1,0,143,18,0,1,116,1,0, ++ 124,0,0,124,1,0,131,2,0,83,87,100,1,0,81,88, ++ 100,1,0,83,41,2,122,54,70,105,110,100,32,97,110,100, ++ 32,108,111,97,100,32,116,104,101,32,109,111,100,117,108,101, ++ 44,32,97,110,100,32,114,101,108,101,97,115,101,32,116,104, ++ 101,32,105,109,112,111,114,116,32,108,111,99,107,46,78,41, ++ 2,114,104,0,0,0,114,114,1,0,0,41,2,114,68,0, ++ 0,0,114,113,1,0,0,114,5,0,0,0,114,5,0,0, ++ 0,114,6,0,0,0,218,14,95,102,105,110,100,95,97,110, ++ 100,95,108,111,97,100,186,8,0,0,115,4,0,0,0,0, ++ 2,13,1,114,115,1,0,0,99,3,0,0,0,0,0,0, ++ 0,5,0,0,0,4,0,0,0,67,0,0,0,115,172,0, ++ 0,0,116,0,0,124,0,0,124,1,0,124,2,0,131,3, ++ 0,1,124,2,0,100,1,0,107,4,0,114,49,0,116,1, ++ 0,124,0,0,124,1,0,124,2,0,131,3,0,125,0,0, ++ 110,0,0,116,2,0,106,3,0,131,0,0,1,124,0,0, ++ 116,4,0,106,5,0,107,7,0,114,87,0,116,6,0,124, ++ 0,0,116,7,0,131,2,0,83,116,4,0,106,5,0,124, ++ 0,0,25,125,3,0,124,3,0,100,2,0,107,8,0,114, ++ 158,0,116,2,0,106,8,0,131,0,0,1,100,3,0,106, ++ 9,0,124,0,0,131,1,0,125,4,0,116,10,0,124,4, ++ 0,100,4,0,124,0,0,131,1,1,130,1,0,110,0,0, ++ 116,11,0,124,0,0,131,1,0,1,124,3,0,83,41,5, ++ 97,50,1,0,0,73,109,112,111,114,116,32,97,110,100,32, ++ 114,101,116,117,114,110,32,116,104,101,32,109,111,100,117,108, ++ 101,32,98,97,115,101,100,32,111,110,32,105,116,115,32,110, ++ 97,109,101,44,32,116,104,101,32,112,97,99,107,97,103,101, ++ 32,116,104,101,32,99,97,108,108,32,105,115,10,32,32,32, ++ 32,98,101,105,110,103,32,109,97,100,101,32,102,114,111,109, ++ 44,32,97,110,100,32,116,104,101,32,108,101,118,101,108,32, ++ 97,100,106,117,115,116,109,101,110,116,46,10,10,32,32,32, ++ 32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,114, ++ 101,112,114,101,115,101,110,116,115,32,116,104,101,32,103,114, ++ 101,97,116,101,115,116,32,99,111,109,109,111,110,32,100,101, ++ 110,111,109,105,110,97,116,111,114,32,111,102,32,102,117,110, ++ 99,116,105,111,110,97,108,105,116,121,10,32,32,32,32,98, ++ 101,116,119,101,101,110,32,105,109,112,111,114,116,95,109,111, ++ 100,117,108,101,32,97,110,100,32,95,95,105,109,112,111,114, ++ 116,95,95,46,32,84,104,105,115,32,105,110,99,108,117,100, ++ 101,115,32,115,101,116,116,105,110,103,32,95,95,112,97,99, ++ 107,97,103,101,95,95,32,105,102,10,32,32,32,32,116,104, ++ 101,32,108,111,97,100,101,114,32,100,105,100,32,110,111,116, ++ 46,10,10,32,32,32,32,114,85,0,0,0,78,122,40,105, ++ 109,112,111,114,116,32,111,102,32,123,125,32,104,97,108,116, ++ 101,100,59,32,78,111,110,101,32,105,110,32,115,121,115,46, ++ 109,111,100,117,108,101,115,114,68,0,0,0,41,12,114,111, ++ 1,0,0,114,105,1,0,0,114,107,0,0,0,114,4,1, ++ 0,0,114,8,0,0,0,114,74,0,0,0,114,115,1,0, ++ 0,218,11,95,103,99,100,95,105,109,112,111,114,116,114,108, ++ 0,0,0,114,48,0,0,0,114,154,0,0,0,114,113,0, ++ 0,0,41,5,114,68,0,0,0,114,103,1,0,0,114,104, ++ 1,0,0,114,180,0,0,0,114,152,0,0,0,114,5,0, ++ 0,0,114,5,0,0,0,114,6,0,0,0,114,116,1,0, ++ 0,192,8,0,0,115,26,0,0,0,0,9,16,1,12,1, ++ 21,1,10,1,15,1,13,1,13,1,12,1,10,2,15,1, ++ 21,1,10,1,114,116,1,0,0,99,3,0,0,0,0,0, ++ 0,0,6,0,0,0,17,0,0,0,67,0,0,0,115,1, ++ 1,0,0,116,0,0,124,0,0,100,1,0,131,2,0,114, ++ 253,0,100,2,0,124,1,0,107,6,0,114,89,0,116,1, ++ 0,124,1,0,131,1,0,125,1,0,124,1,0,106,2,0, ++ 100,2,0,131,1,0,1,116,0,0,124,0,0,100,3,0, ++ 131,2,0,114,89,0,124,1,0,106,3,0,124,0,0,106, ++ 4,0,131,1,0,1,113,89,0,110,0,0,120,161,0,124, ++ 1,0,68,93,150,0,125,3,0,116,0,0,124,0,0,124, ++ 3,0,131,2,0,115,96,0,100,4,0,106,5,0,124,0, ++ 0,106,6,0,124,3,0,131,2,0,125,4,0,121,17,0, ++ 116,7,0,124,2,0,124,4,0,131,2,0,1,87,113,246, ++ 0,4,116,8,0,107,10,0,114,242,0,1,125,5,0,1, ++ 122,53,0,116,9,0,124,5,0,131,1,0,106,10,0,116, ++ 11,0,131,1,0,114,221,0,124,5,0,106,12,0,124,4, ++ 0,107,2,0,114,221,0,119,96,0,113,221,0,110,0,0, ++ 130,0,0,87,89,100,5,0,100,5,0,125,5,0,126,5, ++ 0,88,113,246,0,88,113,96,0,113,96,0,87,110,0,0, ++ 124,0,0,83,41,6,122,238,70,105,103,117,114,101,32,111, ++ 117,116,32,119,104,97,116,32,95,95,105,109,112,111,114,116, ++ 95,95,32,115,104,111,117,108,100,32,114,101,116,117,114,110, ++ 46,10,10,32,32,32,32,84,104,101,32,105,109,112,111,114, ++ 116,95,32,112,97,114,97,109,101,116,101,114,32,105,115,32, ++ 97,32,99,97,108,108,97,98,108,101,32,119,104,105,99,104, ++ 32,116,97,107,101,115,32,116,104,101,32,110,97,109,101,32, ++ 111,102,32,109,111,100,117,108,101,32,116,111,10,32,32,32, ++ 32,105,109,112,111,114,116,46,32,73,116,32,105,115,32,114, ++ 101,113,117,105,114,101,100,32,116,111,32,100,101,99,111,117, ++ 112,108,101,32,116,104,101,32,102,117,110,99,116,105,111,110, ++ 32,102,114,111,109,32,97,115,115,117,109,105,110,103,32,105, ++ 109,112,111,114,116,108,105,98,39,115,10,32,32,32,32,105, ++ 109,112,111,114,116,32,105,109,112,108,101,109,101,110,116,97, ++ 116,105,111,110,32,105,115,32,100,101,115,105,114,101,100,46, ++ 10,10,32,32,32,32,114,247,0,0,0,250,1,42,218,7, ++ 95,95,97,108,108,95,95,122,5,123,125,46,123,125,78,41, ++ 13,114,61,0,0,0,114,246,0,0,0,218,6,114,101,109, ++ 111,118,101,114,198,0,0,0,114,118,1,0,0,114,48,0, ++ 0,0,114,58,0,0,0,114,115,0,0,0,114,154,0,0, ++ 0,114,83,1,0,0,114,10,0,0,0,218,15,95,69,82, ++ 82,95,77,83,71,95,80,82,69,70,73,88,114,68,0,0, ++ 0,41,6,114,180,0,0,0,218,8,102,114,111,109,108,105, ++ 115,116,114,113,1,0,0,114,17,0,0,0,90,9,102,114, ++ 111,109,95,110,97,109,101,114,41,1,0,0,114,5,0,0, ++ 0,114,5,0,0,0,114,6,0,0,0,218,16,95,104,97, ++ 110,100,108,101,95,102,114,111,109,108,105,115,116,216,8,0, ++ 0,115,34,0,0,0,0,10,15,1,12,1,12,1,13,1, ++ 15,1,22,1,13,1,15,1,21,1,3,1,17,1,18,4, ++ 21,1,15,1,9,1,32,1,114,122,1,0,0,99,1,0, ++ 0,0,0,0,0,0,2,0,0,0,2,0,0,0,67,0, ++ 0,0,115,78,0,0,0,124,0,0,106,0,0,100,1,0, ++ 131,1,0,125,1,0,124,1,0,100,2,0,107,8,0,114, ++ 74,0,124,0,0,100,3,0,25,125,1,0,100,4,0,124, ++ 0,0,107,7,0,114,74,0,124,1,0,106,1,0,100,5, ++ 0,131,1,0,100,6,0,25,125,1,0,113,74,0,110,0, ++ 0,124,1,0,83,41,7,122,167,67,97,108,99,117,108,97, ++ 116,101,32,119,104,97,116,32,95,95,112,97,99,107,97,103, ++ 101,95,95,32,115,104,111,117,108,100,32,98,101,46,10,10, ++ 32,32,32,32,95,95,112,97,99,107,97,103,101,95,95,32, ++ 105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101, ++ 100,32,116,111,32,98,101,32,100,101,102,105,110,101,100,32, ++ 111,114,32,99,111,117,108,100,32,98,101,32,115,101,116,32, ++ 116,111,32,78,111,110,101,10,32,32,32,32,116,111,32,114, ++ 101,112,114,101,115,101,110,116,32,116,104,97,116,32,105,116, ++ 115,32,112,114,111,112,101,114,32,118,97,108,117,101,32,105, ++ 115,32,117,110,107,110,111,119,110,46,10,10,32,32,32,32, ++ 114,251,0,0,0,78,114,58,0,0,0,114,247,0,0,0, ++ 114,117,0,0,0,114,85,0,0,0,41,2,114,94,0,0, ++ 0,114,33,0,0,0,41,2,218,7,103,108,111,98,97,108, ++ 115,114,103,1,0,0,114,5,0,0,0,114,5,0,0,0, ++ 114,6,0,0,0,218,17,95,99,97,108,99,95,95,95,112, ++ 97,99,107,97,103,101,95,95,248,8,0,0,115,12,0,0, ++ 0,0,7,15,1,12,1,10,1,12,1,25,1,114,124,1, ++ 0,0,99,0,0,0,0,0,0,0,0,3,0,0,0,3, ++ 0,0,0,67,0,0,0,115,55,0,0,0,116,0,0,116, ++ 1,0,106,2,0,131,0,0,102,2,0,125,0,0,116,3, ++ 0,116,4,0,102,2,0,125,1,0,116,5,0,116,6,0, ++ 102,2,0,125,2,0,124,0,0,124,1,0,124,2,0,103, ++ 3,0,83,41,1,122,95,82,101,116,117,114,110,115,32,97, ++ 32,108,105,115,116,32,111,102,32,102,105,108,101,45,98,97, ++ 115,101,100,32,109,111,100,117,108,101,32,108,111,97,100,101, ++ 114,115,46,10,10,32,32,32,32,69,97,99,104,32,105,116, ++ 101,109,32,105,115,32,97,32,116,117,112,108,101,32,40,108, ++ 111,97,100,101,114,44,32,115,117,102,102,105,120,101,115,41, ++ 46,10,32,32,32,32,41,7,114,57,1,0,0,114,107,0, ++ 0,0,218,18,101,120,116,101,110,115,105,111,110,95,115,117, ++ 102,102,105,120,101,115,114,9,1,0,0,114,135,0,0,0, ++ 114,8,1,0,0,114,233,0,0,0,41,3,90,10,101,120, ++ 116,101,110,115,105,111,110,115,90,6,115,111,117,114,99,101, ++ 90,8,98,121,116,101,99,111,100,101,114,5,0,0,0,114, ++ 5,0,0,0,114,6,0,0,0,114,241,0,0,0,7,9, ++ 0,0,115,8,0,0,0,0,5,18,1,12,1,12,1,114, ++ 241,0,0,0,99,5,0,0,0,0,0,0,0,9,0,0, ++ 0,5,0,0,0,67,0,0,0,115,227,0,0,0,124,4, ++ 0,100,1,0,107,2,0,114,27,0,116,0,0,124,0,0, ++ 131,1,0,125,5,0,110,54,0,124,1,0,100,2,0,107, ++ 9,0,114,45,0,124,1,0,110,3,0,105,0,0,125,6, ++ 0,116,1,0,124,6,0,131,1,0,125,7,0,116,0,0, ++ 124,0,0,124,7,0,124,4,0,131,3,0,125,5,0,124, ++ 3,0,115,207,0,124,4,0,100,1,0,107,2,0,114,122, ++ 0,116,0,0,124,0,0,106,2,0,100,3,0,131,1,0, ++ 100,1,0,25,131,1,0,83,124,0,0,115,132,0,124,5, ++ 0,83,116,3,0,124,0,0,131,1,0,116,3,0,124,0, ++ 0,106,2,0,100,3,0,131,1,0,100,1,0,25,131,1, ++ 0,24,125,8,0,116,4,0,106,5,0,124,5,0,106,6, ++ 0,100,2,0,116,3,0,124,5,0,106,6,0,131,1,0, ++ 124,8,0,24,133,2,0,25,25,83,110,16,0,116,7,0, ++ 124,5,0,124,3,0,116,0,0,131,3,0,83,100,2,0, ++ 83,41,4,97,214,1,0,0,73,109,112,111,114,116,32,97, ++ 32,109,111,100,117,108,101,46,10,10,32,32,32,32,84,104, ++ 101,32,39,103,108,111,98,97,108,115,39,32,97,114,103,117, ++ 109,101,110,116,32,105,115,32,117,115,101,100,32,116,111,32, ++ 105,110,102,101,114,32,119,104,101,114,101,32,116,104,101,32, ++ 105,109,112,111,114,116,32,105,115,32,111,99,99,117,114,105, ++ 110,103,32,102,114,111,109,10,32,32,32,32,116,111,32,104, ++ 97,110,100,108,101,32,114,101,108,97,116,105,118,101,32,105, ++ 109,112,111,114,116,115,46,32,84,104,101,32,39,108,111,99, ++ 97,108,115,39,32,97,114,103,117,109,101,110,116,32,105,115, ++ 32,105,103,110,111,114,101,100,46,32,84,104,101,10,32,32, ++ 32,32,39,102,114,111,109,108,105,115,116,39,32,97,114,103, ++ 117,109,101,110,116,32,115,112,101,99,105,102,105,101,115,32, ++ 119,104,97,116,32,115,104,111,117,108,100,32,101,120,105,115, ++ 116,32,97,115,32,97,116,116,114,105,98,117,116,101,115,32, ++ 111,110,32,116,104,101,32,109,111,100,117,108,101,10,32,32, ++ 32,32,98,101,105,110,103,32,105,109,112,111,114,116,101,100, ++ 32,40,101,46,103,46,32,96,96,102,114,111,109,32,109,111, ++ 100,117,108,101,32,105,109,112,111,114,116,32,60,102,114,111, ++ 109,108,105,115,116,62,96,96,41,46,32,32,84,104,101,32, ++ 39,108,101,118,101,108,39,10,32,32,32,32,97,114,103,117, ++ 109,101,110,116,32,114,101,112,114,101,115,101,110,116,115,32, ++ 116,104,101,32,112,97,99,107,97,103,101,32,108,111,99,97, ++ 116,105,111,110,32,116,111,32,105,109,112,111,114,116,32,102, ++ 114,111,109,32,105,110,32,97,32,114,101,108,97,116,105,118, ++ 101,10,32,32,32,32,105,109,112,111,114,116,32,40,101,46, ++ 103,46,32,96,96,102,114,111,109,32,46,46,112,107,103,32, ++ 105,109,112,111,114,116,32,109,111,100,96,96,32,119,111,117, ++ 108,100,32,104,97,118,101,32,97,32,39,108,101,118,101,108, ++ 39,32,111,102,32,50,41,46,10,10,32,32,32,32,114,85, ++ 0,0,0,78,114,117,0,0,0,41,8,114,116,1,0,0, ++ 114,124,1,0,0,114,122,0,0,0,114,32,0,0,0,114, ++ 8,0,0,0,114,74,0,0,0,114,58,0,0,0,114,122, ++ 1,0,0,41,9,114,68,0,0,0,114,123,1,0,0,218, ++ 6,108,111,99,97,108,115,114,121,1,0,0,114,104,1,0, ++ 0,114,180,0,0,0,90,8,103,108,111,98,97,108,115,95, ++ 114,103,1,0,0,90,7,99,117,116,95,111,102,102,114,5, ++ 0,0,0,114,5,0,0,0,114,6,0,0,0,218,10,95, ++ 95,105,109,112,111,114,116,95,95,18,9,0,0,115,26,0, ++ 0,0,0,11,12,1,15,2,24,1,12,1,18,1,6,3, ++ 12,1,23,1,6,1,4,4,35,3,40,2,114,127,1,0, ++ 0,99,1,0,0,0,0,0,0,0,3,0,0,0,3,0, ++ 0,0,67,0,0,0,115,68,0,0,0,116,0,0,106,1, ++ 0,124,0,0,131,1,0,125,1,0,124,1,0,100,0,0, ++ 107,8,0,114,46,0,116,2,0,100,1,0,124,0,0,23, ++ 131,1,0,130,1,0,110,0,0,116,3,0,124,1,0,131, ++ 1,0,125,2,0,124,2,0,106,4,0,131,0,0,83,41, ++ 2,78,122,25,110,111,32,98,117,105,108,116,45,105,110,32, ++ 109,111,100,117,108,101,32,110,97,109,101,100,32,41,5,114, ++ 11,1,0,0,114,14,1,0,0,114,154,0,0,0,114,175, ++ 0,0,0,114,7,1,0,0,41,3,114,68,0,0,0,114, ++ 178,0,0,0,114,179,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,18,95,98,117,105,108,116, ++ 105,110,95,102,114,111,109,95,110,97,109,101,53,9,0,0, ++ 115,10,0,0,0,0,1,15,1,12,1,19,1,12,1,114, ++ 128,1,0,0,99,2,0,0,0,0,0,0,0,19,0,0, ++ 0,12,0,0,0,67,0,0,0,115,232,2,0,0,124,1, ++ 0,97,0,0,124,0,0,97,1,0,116,1,0,106,2,0, ++ 106,3,0,114,33,0,116,4,0,97,5,0,110,6,0,116, ++ 6,0,97,5,0,116,7,0,116,1,0,131,1,0,125,2, ++ 0,120,138,0,116,1,0,106,8,0,106,9,0,131,0,0, ++ 68,93,121,0,92,2,0,125,3,0,125,4,0,116,10,0, ++ 124,4,0,124,2,0,131,2,0,114,67,0,124,3,0,116, ++ 1,0,106,11,0,107,6,0,114,118,0,116,12,0,125,5, ++ 0,110,27,0,116,0,0,106,13,0,124,3,0,131,1,0, ++ 114,67,0,116,14,0,125,5,0,110,3,0,113,67,0,116, ++ 15,0,124,4,0,124,5,0,131,2,0,125,6,0,116,16, ++ 0,124,6,0,131,1,0,125,7,0,124,7,0,106,17,0, ++ 124,4,0,131,1,0,1,113,67,0,113,67,0,87,116,1, ++ 0,106,8,0,116,18,0,25,125,8,0,120,73,0,100,26, ++ 0,68,93,65,0,125,9,0,124,9,0,116,1,0,106,8, ++ 0,107,7,0,114,248,0,116,19,0,124,9,0,131,1,0, ++ 125,10,0,110,13,0,116,1,0,106,8,0,124,9,0,25, ++ 125,10,0,116,20,0,124,8,0,124,9,0,124,10,0,131, ++ 3,0,1,113,212,0,87,100,5,0,100,6,0,103,1,0, ++ 102,2,0,100,7,0,100,8,0,100,6,0,103,2,0,102, ++ 2,0,102,2,0,125,11,0,120,146,0,124,11,0,68,93, ++ 126,0,92,2,0,125,12,0,125,13,0,116,21,0,100,9, ++ 0,100,10,0,132,0,0,124,13,0,68,131,1,0,131,1, ++ 0,115,108,1,116,22,0,130,1,0,124,13,0,100,11,0, ++ 25,125,14,0,124,12,0,116,1,0,106,8,0,107,6,0, ++ 114,150,1,116,1,0,106,8,0,124,12,0,25,125,15,0, ++ 80,113,65,1,121,17,0,116,19,0,124,12,0,131,1,0, ++ 125,15,0,80,87,113,65,1,4,116,23,0,107,10,0,114, ++ 190,1,1,1,1,119,65,1,89,113,65,1,88,113,65,1, ++ 87,116,23,0,100,12,0,131,1,0,130,1,0,116,20,0, ++ 124,8,0,100,13,0,124,15,0,131,3,0,1,116,20,0, ++ 124,8,0,100,14,0,124,14,0,131,3,0,1,116,20,0, ++ 124,8,0,100,15,0,100,16,0,106,24,0,124,13,0,131, ++ 1,0,131,3,0,1,121,16,0,116,19,0,100,17,0,131, ++ 1,0,125,16,0,87,110,24,0,4,116,23,0,107,10,0, ++ 114,50,2,1,1,1,100,18,0,125,16,0,89,110,1,0, ++ 88,116,20,0,124,8,0,100,17,0,124,16,0,131,3,0, ++ 1,116,19,0,100,19,0,131,1,0,125,17,0,116,20,0, ++ 124,8,0,100,19,0,124,17,0,131,3,0,1,124,12,0, ++ 100,7,0,107,2,0,114,138,2,116,19,0,100,20,0,131, ++ 1,0,125,18,0,116,20,0,124,8,0,100,21,0,124,18, ++ 0,131,3,0,1,110,0,0,116,20,0,124,8,0,100,22, ++ 0,116,25,0,131,0,0,131,3,0,1,116,26,0,106,27, ++ 0,116,0,0,106,28,0,131,0,0,131,1,0,1,124,12, ++ 0,100,7,0,107,2,0,114,228,2,116,29,0,106,30,0, ++ 100,23,0,131,1,0,1,100,24,0,116,26,0,107,6,0, ++ 114,228,2,100,25,0,116,31,0,95,32,0,113,228,2,110, ++ 0,0,100,18,0,83,41,27,122,250,83,101,116,117,112,32, ++ 105,109,112,111,114,116,108,105,98,32,98,121,32,105,109,112, ++ 111,114,116,105,110,103,32,110,101,101,100,101,100,32,98,117, ++ 105,108,116,45,105,110,32,109,111,100,117,108,101,115,32,97, ++ 110,100,32,105,110,106,101,99,116,105,110,103,32,116,104,101, ++ 109,10,32,32,32,32,105,110,116,111,32,116,104,101,32,103, ++ 108,111,98,97,108,32,110,97,109,101,115,112,97,99,101,46, ++ 10,10,32,32,32,32,65,115,32,115,121,115,32,105,115,32, ++ 110,101,101,100,101,100,32,102,111,114,32,115,121,115,46,109, ++ 111,100,117,108,101,115,32,97,99,99,101,115,115,32,97,110, ++ 100,32,95,105,109,112,32,105,115,32,110,101,101,100,101,100, ++ 32,116,111,32,108,111,97,100,32,98,117,105,108,116,45,105, ++ 110,10,32,32,32,32,109,111,100,117,108,101,115,44,32,116, ++ 104,111,115,101,32,116,119,111,32,109,111,100,117,108,101,115, ++ 32,109,117,115,116,32,98,101,32,101,120,112,108,105,99,105, ++ 116,108,121,32,112,97,115,115,101,100,32,105,110,46,10,10, ++ 32,32,32,32,114,50,0,0,0,114,167,0,0,0,218,8, ++ 98,117,105,108,116,105,110,115,114,192,0,0,0,90,5,112, ++ 111,115,105,120,250,1,47,218,2,110,116,250,1,92,99,1, ++ 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,115, ++ 0,0,0,115,33,0,0,0,124,0,0,93,23,0,125,1, ++ 0,116,0,0,124,1,0,131,1,0,100,0,0,107,2,0, ++ 86,1,113,3,0,100,1,0,83,41,2,114,30,0,0,0, ++ 78,41,1,114,32,0,0,0,41,2,114,23,0,0,0,114, ++ 131,0,0,0,114,5,0,0,0,114,5,0,0,0,114,6, ++ 0,0,0,114,78,0,0,0,105,9,0,0,115,2,0,0, ++ 0,6,0,122,25,95,115,101,116,117,112,46,60,108,111,99, ++ 97,108,115,62,46,60,103,101,110,101,120,112,114,62,114,85, ++ 0,0,0,122,30,105,109,112,111,114,116,108,105,98,32,114, ++ 101,113,117,105,114,101,115,32,112,111,115,105,120,32,111,114, ++ 32,110,116,114,4,0,0,0,114,26,0,0,0,114,22,0, ++ 0,0,114,31,0,0,0,114,86,0,0,0,78,114,112,0, ++ 0,0,90,6,119,105,110,114,101,103,114,24,1,0,0,114, ++ 7,0,0,0,122,4,46,112,121,119,122,6,95,100,46,112, ++ 121,100,84,41,4,122,3,95,105,111,122,9,95,119,97,114, ++ 110,105,110,103,115,122,8,98,117,105,108,116,105,110,115,122, ++ 7,109,97,114,115,104,97,108,41,33,114,107,0,0,0,114, ++ 8,0,0,0,114,118,0,0,0,114,119,0,0,0,114,121, ++ 0,0,0,114,233,0,0,0,114,120,0,0,0,114,67,0, ++ 0,0,114,74,0,0,0,218,5,105,116,101,109,115,114,193, ++ 0,0,0,114,158,0,0,0,114,11,1,0,0,114,163,0, ++ 0,0,114,20,1,0,0,114,248,0,0,0,114,175,0,0, ++ 0,114,255,0,0,0,114,58,0,0,0,114,128,1,0,0, ++ 114,62,0,0,0,218,3,97,108,108,114,101,0,0,0,114, ++ 154,0,0,0,114,27,0,0,0,114,12,0,0,0,114,60, ++ 1,0,0,114,198,0,0,0,114,125,1,0,0,114,135,0, ++ 0,0,114,224,0,0,0,114,23,1,0,0,114,27,1,0, ++ 0,41,19,218,10,115,121,115,95,109,111,100,117,108,101,218, ++ 11,95,105,109,112,95,109,111,100,117,108,101,90,11,109,111, ++ 100,117,108,101,95,116,121,112,101,114,68,0,0,0,114,180, ++ 0,0,0,114,170,0,0,0,114,178,0,0,0,114,179,0, ++ 0,0,90,11,115,101,108,102,95,109,111,100,117,108,101,90, ++ 12,98,117,105,108,116,105,110,95,110,97,109,101,90,14,98, ++ 117,105,108,116,105,110,95,109,111,100,117,108,101,90,10,111, ++ 115,95,100,101,116,97,105,108,115,90,10,98,117,105,108,116, ++ 105,110,95,111,115,114,22,0,0,0,114,26,0,0,0,90, ++ 9,111,115,95,109,111,100,117,108,101,90,13,116,104,114,101, ++ 97,100,95,109,111,100,117,108,101,90,14,119,101,97,107,114, ++ 101,102,95,109,111,100,117,108,101,90,13,119,105,110,114,101, ++ 103,95,109,111,100,117,108,101,114,5,0,0,0,114,5,0, ++ 0,0,114,6,0,0,0,218,6,95,115,101,116,117,112,61, ++ 9,0,0,115,108,0,0,0,0,9,6,1,6,2,12,1, ++ 9,2,6,3,12,1,28,1,15,1,15,1,9,1,15,1, ++ 9,2,3,1,15,1,12,1,20,3,13,1,13,1,15,1, ++ 15,2,13,1,20,3,33,1,19,2,31,1,10,1,15,1, ++ 13,1,4,2,3,1,12,1,5,1,13,1,12,2,12,1, ++ 16,1,16,1,25,3,3,1,16,1,13,2,11,1,16,3, ++ 12,1,16,3,12,1,12,1,19,3,19,1,19,1,12,1, ++ 13,1,12,1,114,137,1,0,0,99,2,0,0,0,0,0, ++ 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,136, ++ 0,0,0,116,0,0,124,0,0,124,1,0,131,2,0,1, ++ 116,1,0,131,0,0,125,2,0,116,2,0,106,3,0,106, ++ 4,0,116,5,0,106,6,0,124,2,0,140,0,0,103,1, ++ 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,9, ++ 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,10, ++ 0,131,1,0,1,116,11,0,106,12,0,100,1,0,107,2, ++ 0,114,116,0,116,2,0,106,7,0,106,8,0,116,13,0, ++ 131,1,0,1,110,0,0,116,2,0,106,7,0,106,8,0, ++ 116,14,0,131,1,0,1,100,2,0,83,41,3,122,50,73, ++ 110,115,116,97,108,108,32,105,109,112,111,114,116,108,105,98, ++ 32,97,115,32,116,104,101,32,105,109,112,108,101,109,101,110, ++ 116,97,116,105,111,110,32,111,102,32,105,109,112,111,114,116, ++ 46,114,131,1,0,0,78,41,15,114,137,1,0,0,114,241, ++ 0,0,0,114,8,0,0,0,114,79,1,0,0,114,198,0, ++ 0,0,114,87,1,0,0,114,101,1,0,0,114,107,1,0, ++ 0,114,224,0,0,0,114,11,1,0,0,114,20,1,0,0, ++ 114,4,0,0,0,114,58,0,0,0,114,23,1,0,0,114, ++ 74,1,0,0,41,3,114,135,1,0,0,114,136,1,0,0, ++ 90,17,115,117,112,112,111,114,116,101,100,95,108,111,97,100, ++ 101,114,115,114,5,0,0,0,114,5,0,0,0,114,6,0, ++ 0,0,218,8,95,105,110,115,116,97,108,108,148,9,0,0, ++ 115,16,0,0,0,0,2,13,1,9,1,28,1,16,1,16, ++ 1,15,1,19,1,114,138,1,0,0,41,4,122,3,119,105, ++ 110,114,1,0,0,0,114,2,0,0,0,114,3,0,0,0, ++ 41,92,114,60,0,0,0,114,11,0,0,0,114,12,0,0, ++ 0,114,18,0,0,0,114,20,0,0,0,114,29,0,0,0, ++ 114,39,0,0,0,114,40,0,0,0,114,44,0,0,0,114, ++ 45,0,0,0,114,47,0,0,0,114,56,0,0,0,114,66, ++ 0,0,0,114,69,0,0,0,114,67,0,0,0,218,8,95, ++ 95,99,111,100,101,95,95,114,194,0,0,0,114,70,0,0, ++ 0,114,110,0,0,0,114,93,0,0,0,114,100,0,0,0, ++ 114,83,0,0,0,114,84,0,0,0,114,103,0,0,0,114, ++ 104,0,0,0,114,106,0,0,0,114,113,0,0,0,114,115, ++ 0,0,0,114,16,0,0,0,114,186,0,0,0,114,15,0, ++ 0,0,114,19,0,0,0,90,17,95,82,65,87,95,77,65, ++ 71,73,67,95,78,85,77,66,69,82,114,126,0,0,0,114, ++ 135,0,0,0,114,120,0,0,0,114,121,0,0,0,114,133, ++ 0,0,0,114,136,0,0,0,114,143,0,0,0,114,145,0, ++ 0,0,114,153,0,0,0,114,157,0,0,0,114,162,0,0, ++ 0,114,165,0,0,0,114,173,0,0,0,114,181,0,0,0, ++ 114,191,0,0,0,114,196,0,0,0,114,199,0,0,0,114, ++ 204,0,0,0,114,212,0,0,0,114,213,0,0,0,114,217, ++ 0,0,0,114,174,0,0,0,218,6,111,98,106,101,99,116, ++ 114,242,0,0,0,114,240,0,0,0,114,248,0,0,0,114, ++ 175,0,0,0,114,10,1,0,0,114,11,1,0,0,114,20, ++ 1,0,0,114,23,1,0,0,114,33,1,0,0,114,34,1, ++ 0,0,114,49,1,0,0,114,9,1,0,0,114,8,1,0, ++ 0,114,60,1,0,0,114,57,1,0,0,114,61,1,0,0, ++ 114,252,0,0,0,114,74,1,0,0,114,87,1,0,0,114, ++ 102,1,0,0,114,105,1,0,0,114,106,1,0,0,114,108, ++ 1,0,0,114,111,1,0,0,114,120,1,0,0,114,112,1, ++ 0,0,114,114,1,0,0,114,115,1,0,0,114,116,1,0, ++ 0,114,122,1,0,0,114,124,1,0,0,114,241,0,0,0, ++ 114,127,1,0,0,114,128,1,0,0,114,137,1,0,0,114, ++ 138,1,0,0,114,5,0,0,0,114,5,0,0,0,114,5, ++ 0,0,0,114,6,0,0,0,218,8,60,109,111,100,117,108, ++ 101,62,8,0,0,0,115,170,0,0,0,6,17,6,3,12, ++ 12,12,5,12,5,12,6,12,12,12,10,12,9,12,5,12, ++ 7,15,22,12,8,12,4,15,4,19,20,6,2,6,3,22, ++ 4,19,68,19,21,19,19,12,19,12,20,12,114,22,1,18, ++ 2,6,2,9,2,9,1,9,2,15,27,12,23,12,19,12, ++ 12,18,8,12,18,12,11,12,11,12,17,12,16,21,55,21, ++ 12,18,10,12,14,12,36,19,27,19,106,24,22,9,3,12, ++ 1,15,63,18,45,19,230,15,25,19,70,19,71,19,63,19, ++ 24,22,110,19,41,25,43,25,16,6,3,19,57,19,57,19, ++ 38,19,129,19,146,19,13,12,9,12,9,15,40,12,17,6, ++ 1,10,2,12,27,12,6,18,24,12,32,12,15,12,11,24, ++ 35,12,8,12,87, }; diff -Nru orig/Python/marshal.c modified/Python/marshal.c ---- orig/Python/marshal.c 2015-12-07 09:39:11.000000000 +0800 -+++ modified/Python/marshal.c 2016-02-15 20:17:07.000000000 +0800 -@@ -14,15 +14,23 @@ +--- orig/Python/marshal.c 2015-02-03 19:49:05.000000000 +0800 ++++ modified/Python/marshal.c 2015-05-04 12:43:06.000000000 +0800 +@@ -13,17 +13,26 @@ + #include "code.h" #include "marshal.h" - #include "../Modules/hashtable.h" +#ifdef __APPLE__ +# include "TargetConditionals.h" +#endif /* __APPLE__ */ + + #define ABS(x) ((x) < 0 ? -(x) : (x)) + /* High water mark to determine when the marshalled object is dangerously deep * and risks coring the interpreter. When the object stack gets this deep, * raise an exception instead of continuing. * On Windows debug builds, reduce this value. ++ * iOS also requires a reduced value. */ #if defined(MS_WINDOWS) && defined(_DEBUG) --#define MAX_MARSHAL_STACK_DEPTH 1000 -+# define MAX_MARSHAL_STACK_DEPTH 1000 +-#define MAX_MARSHAL_STACK_DEPTH 1500 ++# define MAX_MARSHAL_STACK_DEPTH 1500 #else -#define MAX_MARSHAL_STACK_DEPTH 2000 +# if TARGET_OS_IPHONE +# define MAX_MARSHAL_STACK_DEPTH 1500 +# else +# define MAX_MARSHAL_STACK_DEPTH 2000 -+# endif ++# endif /* TARGET_OS_IPHONE */ #endif #define TYPE_NULL '0' Binary files orig/Tools/iOS-test/.DS_Store and modified/Tools/iOS-test/.DS_Store differ diff -Nru orig/Tools/iOS-test/app/iOS-test/main.py modified/Tools/iOS-test/app/iOS-test/main.py --- orig/Tools/iOS-test/app/iOS-test/main.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/app/iOS-test/main.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/app/iOS-test/main.py 2015-07-17 13:49:19.000000000 +0800 @@ -0,0 +1,12 @@ +from datetime import datetime +import platform @@ -34365,13 +39902,13 @@ diff -Nru orig/Tools/iOS-test/app/iOS-test/main.py modified/Tools/iOS-test/app/i + diff -Nru orig/Tools/iOS-test/app_packages/README modified/Tools/iOS-test/app_packages/README --- orig/Tools/iOS-test/app_packages/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/app_packages/README 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/app_packages/README 2015-04-26 21:28:31.000000000 +0800 @@ -0,0 +1 @@ +This directory exists so that 3rd party packages can be installed here. \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json --- orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Contents.json 2015-07-04 17:34:59.000000000 +0800 @@ -0,0 +1,58 @@ +{ + "images" : [ @@ -34434,7 +39971,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/AppIcon.appiconset/Conten \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json --- orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/Contents.json 2015-04-26 21:28:31.000000000 +0800 @@ -0,0 +1,51 @@ +{ + "images" : [ @@ -34490,12 +40027,12 @@ diff -Nru orig/Tools/iOS-test/iOS-test/Images.xcassets/LaunchImage.launchimage/C \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings --- orig/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/en.lproj/InfoPlist.strings 2015-04-26 21:28:31.000000000 +0800 @@ -0,0 +1 @@ +/* Localized versions of Info.plist keys */ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist --- orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/iOS-test-Info.plist 2015-12-20 19:26:56.000000000 +0800 @@ -0,0 +1,45 @@ + + @@ -34544,7 +40081,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Info.plist modified/Tools/iOS-te + diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch --- orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch 2015-04-26 21:28:31.000000000 +0800 @@ -0,0 +1,16 @@ +// +// Prefix header @@ -34565,8 +40102,8 @@ diff -Nru orig/Tools/iOS-test/iOS-test/iOS-test-Prefix.pch modified/Tools/iOS-te \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/main.m --- orig/Tools/iOS-test/iOS-test/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test/main.m 2016-02-17 11:57:08.000000000 +0800 -@@ -0,0 +1,149 @@ ++++ modified/Tools/iOS-test/iOS-test/main.m 2015-12-21 09:53:22.000000000 +0800 +@@ -0,0 +1,145 @@ +// +// main.m +// A main module for starting Python projects under iOS. @@ -34596,7 +40133,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + + python_home = [NSString stringWithFormat:@"%@/Library/Python.framework/Resources", resourcePath, nil]; + NSLog(@"PythonHome is: %@", python_home); -+ wpython_home = Py_DecodeLocale([python_home UTF8String], NULL); ++ wpython_home = _Py_char2wchar([python_home UTF8String], NULL); + Py_SetPythonHome(wpython_home); + + // iOS provides a specific directory for temp files. @@ -34629,18 +40166,10 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + "-u", "all,-audio,-curses,-largefile,-subprocess,-gui", +// "-v", // Verbose test output + "-W", // Display test output on failure -+ ++ + "-x", // Arguments are tests to *exclude* -+// Simulator failures -+// "test_coroutines", // docstring not being populated -+// "test_module", // docstring not being populated -+ +// ARM64 failures -+// "test_coroutines", // docstring not being populated -+// "test_ctypes", // DL loading? -+// "test_module" // docstring not being populated -+// "test_threading", // ctypes related; missing symbol PyThreadState_SetAsyncExc -+// "test_unicode", // encoding problem ++// "test_unicode", // # ctypes related; PyUnicode_FromFormat + +// ARMv7 failures +// "test_cmath", // math domain error @@ -34649,11 +40178,15 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m +// "test_math", // math domain error +// "test_numeric_tower", // +// "test_strtod", // -+// "test_importlib", // Thread locking problem ++ "test_importlib", // Thread locking problem ++ ++// Fails on BOTH ++// "test_ctypes", // DL loading? ++// "test_socket", // Fails due to bad domain? Fails on simulator, OS/X, too. +// "test_threading", // ctypes related; missing symbol PyThreadState_SetAsyncExc + -+// COMMON FAILURES -+ "test_bytes" // HARD CRASH ctypes related; PyBytes_FromFormat ++// Hard crash on BOTH ++ "test_bytes" // ctypes related; PyBytes_FromFormat + + }; + @@ -34671,9 +40204,9 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m + int n_test_args = sizeof(test_args) / sizeof (*test_args) + 1; + + python_argv = PyMem_RawMalloc(sizeof(wchar_t*) * n_test_args); -+ python_argv[0] = Py_DecodeLocale(main_script, NULL); ++ python_argv[0] = _Py_char2wchar(main_script, NULL); + for (i = 1; i < n_test_args; i++) { -+ python_argv[i] = Py_DecodeLocale(test_args[i-1], NULL); ++ python_argv[i] = _Py_char2wchar(test_args[i-1], NULL); + } + + PySys_SetArgv(n_test_args, python_argv); @@ -34719,7 +40252,7 @@ diff -Nru orig/Tools/iOS-test/iOS-test/main.m modified/Tools/iOS-test/iOS-test/m \ No newline at end of file diff -Nru orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj --- orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 1970-01-01 08:00:00.000000000 +0800 -+++ modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 2016-02-14 10:29:41.000000000 +0800 ++++ modified/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj 2015-12-20 22:48:35.000000000 +0800 @@ -0,0 +1,369 @@ +// !$*UTF8*$! +{ @@ -35091,8 +40624,8 @@ diff -Nru orig/Tools/iOS-test/iOS-test.xcodeproj/project.pbxproj modified/Tools/ + rootObject = 60796EDA19190F4100A9926B /* Project object */; +} diff -Nru orig/config.sub modified/config.sub ---- orig/config.sub 2015-12-07 09:39:11.000000000 +0800 -+++ modified/config.sub 2016-02-14 10:29:41.000000000 +0800 +--- orig/config.sub 2015-02-03 19:49:02.000000000 +0800 ++++ modified/config.sub 2015-02-15 08:25:31.000000000 +0800 @@ -1512,6 +1512,8 @@ ;; -nacl*) @@ -35103,9 +40636,9 @@ diff -Nru orig/config.sub modified/config.sub ;; *) diff -Nru orig/configure modified/configure ---- orig/configure 2015-12-07 09:39:11.000000000 +0800 -+++ modified/configure 2016-02-14 10:29:41.000000000 +0800 -@@ -3312,6 +3312,9 @@ +--- orig/configure 2015-02-03 19:49:02.000000000 +0800 ++++ modified/configure 2015-04-30 09:18:43.000000000 +0800 +@@ -3290,6 +3290,9 @@ *-*-cygwin*) ac_sys_system=Cygwin ;; @@ -35115,7 +40648,7 @@ diff -Nru orig/configure modified/configure *) # for now, limit cross builds to known configurations MACHDEP="unknown" -@@ -3354,6 +3357,15 @@ +@@ -3332,6 +3335,15 @@ _host_cpu=$host_cpu esac ;; @@ -35131,7 +40664,7 @@ diff -Nru orig/configure modified/configure *-*-cygwin*) _host_cpu= ;; -@@ -3433,6 +3445,9 @@ +@@ -3411,6 +3423,9 @@ define_xopen_source=no;; Darwin/1[0-9].*) define_xopen_source=no;; @@ -35141,7 +40674,7 @@ diff -Nru orig/configure modified/configure # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined # or has another value. By not (re)defining it, the defaults come in place. -@@ -6145,11 +6160,17 @@ +@@ -5993,11 +6008,17 @@ fi if test "$cross_compiling" = yes; then @@ -35164,7 +40697,7 @@ diff -Nru orig/configure modified/configure fi -@@ -10901,6 +10922,8 @@ +@@ -10421,6 +10442,8 @@ hp*|HP*) DYNLOADFILE="dynload_hpux.o";; # Use dynload_next.c only on 10.2 and below, which don't have native dlopen() Darwin/[0156]\..*) DYNLOADFILE="dynload_next.o";; @@ -35173,7 +40706,7 @@ diff -Nru orig/configure modified/configure *) # use dynload_shlib.c and dlopen() if we have it; otherwise stub # out any dynamic loading -@@ -17462,7 +17485,17 @@ +@@ -16732,7 +16755,17 @@ echo "creating Modules/Setup.local" >&6 if test ! -f Modules/Setup.local then @@ -35193,8 +40726,8 @@ diff -Nru orig/configure modified/configure echo "creating Makefile" >&6 diff -Nru orig/configure.ac modified/configure.ac ---- orig/configure.ac 2015-12-07 09:39:11.000000000 +0800 -+++ modified/configure.ac 2016-02-14 10:29:41.000000000 +0800 +--- orig/configure.ac 2015-02-25 21:21:37.000000000 +0800 ++++ modified/configure.ac 2015-04-30 09:18:57.000000000 +0800 @@ -373,6 +373,9 @@ *-*-cygwin*) ac_sys_system=Cygwin @@ -35231,7 +40764,7 @@ diff -Nru orig/configure.ac modified/configure.ac # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined # or has another value. By not (re)defining it, the defaults come in place. -@@ -1152,11 +1167,17 @@ +@@ -1023,11 +1038,17 @@ AC_CHECK_TOOLS([READELF], [readelf], [:]) if test "$cross_compiling" = yes; then @@ -35254,7 +40787,7 @@ diff -Nru orig/configure.ac modified/configure.ac fi AC_SUBST(READELF) -@@ -3153,6 +3174,8 @@ +@@ -2898,6 +2919,8 @@ hp*|HP*) DYNLOADFILE="dynload_hpux.o";; # Use dynload_next.c only on 10.2 and below, which don't have native dlopen() Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";; @@ -35263,7 +40796,7 @@ diff -Nru orig/configure.ac modified/configure.ac *) # use dynload_shlib.c and dlopen() if we have it; otherwise stub # out any dynamic loading -@@ -5209,7 +5232,17 @@ +@@ -4826,7 +4849,17 @@ echo "creating Modules/Setup.local" >&AS_MESSAGE_FD if test ! -f Modules/Setup.local then @@ -35284,8 +40817,8 @@ diff -Nru orig/configure.ac modified/configure.ac echo "creating Makefile" >&AS_MESSAGE_FD diff -Nru orig/iOS/Makefile modified/iOS/Makefile --- orig/iOS/Makefile 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/Makefile 2016-02-15 15:51:14.000000000 +0800 -@@ -0,0 +1,251 @@ ++++ modified/iOS/Makefile 2015-07-04 13:38:21.000000000 +0800 +@@ -0,0 +1,248 @@ +# This is a "Meta-makefile" for building an iOS-compatible Python.framework. +# It invokes the base makefile multiple times, once for each hardware platform +# that needs to be supported; then it combines the products into a single "fat" @@ -35335,7 +40868,6 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + +clean: + rm -rf build -+ rm -rf _freeze_importlib + rm -rf ../Python.framework + rm -rf ../Tools/iOS-test/Python.framework + @@ -35351,8 +40883,6 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + # Configure and make the local build, providing compiled resources. + if test -f ../Makefile; then cd .. && make distclean; fi + cd .. && ./configure --prefix=$(IOS_DIR)/build/host --without-ensurepip -+ cd .. && make Programs/_freeze_importlib -+ cp ../Programs/_freeze_importlib . + cd .. && make + cd .. && make install + # Now pack away all the built artefacts so that the top level distclean doesn't touch them @@ -35537,10 +41067,9 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile + + # Link the current Python library to the top level + cd $(FRAMEWORK_DIR) && ln -fs Versions/Current/Python -Binary files orig/iOS/Programs and modified/iOS/Programs differ diff -Nru orig/iOS/README modified/iOS/README --- orig/iOS/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/README 2016-02-15 09:51:43.000000000 +0800 ++++ modified/iOS/README 2015-12-20 18:59:33.000000000 +0800 @@ -0,0 +1,165 @@ +==================== +Python on iOS README @@ -35549,7 +41078,7 @@ diff -Nru orig/iOS/README modified/iOS/README +:Authors: + Russell Keith-Magee (2015) + -+:Version: 3.5.1 ++:Version: 3.4.2 + +This document provides a overview of eccentricities of building and using +Python on iOS. @@ -35707,22 +41236,23 @@ diff -Nru orig/iOS/README modified/iOS/README +.. _Rubicon ObjC: http://pybee.org/rubicon +.. _Pyobjus: http://pyobjus.readthedocs.org/ +.. _PyObjC: https://pythonhosted.org/pyobjc/ +Binary files orig/iOS/XCode-sample/.DS_Store and modified/iOS/XCode-sample/.DS_Store differ diff -Nru orig/iOS/XCode-sample/app/sample/main.py modified/iOS/XCode-sample/app/sample/main.py --- orig/iOS/XCode-sample/app/sample/main.py 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/app/sample/main.py 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/app/sample/main.py 2015-03-14 22:02:09.000000000 +0800 @@ -0,0 +1,3 @@ + +if __name__ == '__main__': + print("Hello, World.") diff -Nru orig/iOS/XCode-sample/app_packages/README modified/iOS/XCode-sample/app_packages/README --- orig/iOS/XCode-sample/app_packages/README 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/app_packages/README 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/app_packages/README 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1 @@ +This directory exists so that 3rd party packages can be installed here. \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json --- orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Contents.json 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1,53 @@ +{ + "images" : [ @@ -35780,7 +41310,7 @@ diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/AppIcon.appiconset/Conten \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json --- orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/Contents.json 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1,51 @@ +{ + "images" : [ @@ -35836,12 +41366,12 @@ diff -Nru orig/iOS/XCode-sample/sample/Images.xcassets/LaunchImage.launchimage/C \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings --- orig/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/en.lproj/InfoPlist.strings 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1 @@ +/* Localized versions of Info.plist keys */ diff -Nru orig/iOS/XCode-sample/sample/main.m modified/iOS/XCode-sample/sample/main.m --- orig/iOS/XCode-sample/sample/main.m 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/main.m 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/main.m 2015-07-04 23:12:05.000000000 +0800 @@ -0,0 +1,112 @@ +// +// main.m @@ -35958,7 +41488,7 @@ diff -Nru orig/iOS/XCode-sample/sample/main.m modified/iOS/XCode-sample/sample/m \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/sample-Info.plist modified/iOS/XCode-sample/sample/sample-Info.plist --- orig/iOS/XCode-sample/sample/sample-Info.plist 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/sample-Info.plist 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/sample-Info.plist 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1,45 @@ + + @@ -36008,7 +41538,7 @@ diff -Nru orig/iOS/XCode-sample/sample/sample-Info.plist modified/iOS/XCode-samp \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample/sample-Prefix.pch modified/iOS/XCode-sample/sample/sample-Prefix.pch --- orig/iOS/XCode-sample/sample/sample-Prefix.pch 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample/sample-Prefix.pch 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample/sample-Prefix.pch 2015-03-14 21:57:52.000000000 +0800 @@ -0,0 +1,16 @@ +// +// Prefix header @@ -36029,7 +41559,7 @@ diff -Nru orig/iOS/XCode-sample/sample/sample-Prefix.pch modified/iOS/XCode-samp \ No newline at end of file diff -Nru orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj --- orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/XCode-sample/sample.xcodeproj/project.pbxproj 2015-07-04 23:17:10.000000000 +0800 @@ -0,0 +1,353 @@ +// !$*UTF8*$! +{ @@ -36384,10 +41914,9 @@ diff -Nru orig/iOS/XCode-sample/sample.xcodeproj/project.pbxproj modified/iOS/XC + }; + rootObject = 60796EDA19190F4100A9926B /* Project object */; +} -Binary files orig/iOS/iOS and modified/iOS/iOS differ diff -Nru orig/iOS/include/pyconfig.h modified/iOS/include/pyconfig.h --- orig/iOS/include/pyconfig.h 1970-01-01 08:00:00.000000000 +0800 -+++ modified/iOS/include/pyconfig.h 2016-02-14 10:29:41.000000000 +0800 ++++ modified/iOS/include/pyconfig.h 2015-05-05 08:36:22.000000000 +0800 @@ -0,0 +1,15 @@ +#ifdef __arm__ +#include "pyconfig-armv7.h" @@ -36405,3 +41934,21 @@ diff -Nru orig/iOS/include/pyconfig.h modified/iOS/include/pyconfig.h +#include "pyconfig-x86_64.h" +#endif \ No newline at end of file +diff -Nru orig/setup.py modified/setup.py +--- orig/setup.py 2015-02-03 19:49:05.000000000 +0800 ++++ modified/setup.py 2015-04-26 07:48:53.000000000 +0800 +@@ -252,7 +252,13 @@ + + build_ext.build_extensions(self) + +- longest = max([len(e.name) for e in self.extensions]) ++ # If there are any missing modules, use the longest name to ++ # set the column width for the list of missing modules. ++ if missing: ++ longest = max([len(m) for m in missing]) ++ else: ++ longest = 0 ++ + if self.failed: + longest = max(longest, max([len(name) for name in self.failed])) + From 91e559b1aadf8bbd5435b7e52bfaa946d4eb4f40 Mon Sep 17 00:00:00 2001 From: Katie McLaughlin Date: Fri, 11 Mar 2016 19:45:52 +1100 Subject: [PATCH 12/15] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d6f8d98..09e2781 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,5 +4,5 @@ PyBee <3's contributions! Please be aware, PyBee operates under a Code of Conduct. -See [CONTRIBUTING to PyBee](pybee.org/contributing) for details. +See [CONTRIBUTING to PyBee](http://pybee.org/contributing) for details. From 7c565b648d9b441e1afb0f3e353eb9393f2d534b Mon Sep 17 00:00:00 2001 From: Rodger Higgins Date: Wed, 29 Jun 2016 16:37:14 -0500 Subject: [PATCH 13/15] Missing the time module --- patch/Python/Setup.embedded | 1 + 1 file changed, 1 insertion(+) diff --git a/patch/Python/Setup.embedded b/patch/Python/Setup.embedded index 3c19d7f..6945bc4 100644 --- a/patch/Python/Setup.embedded +++ b/patch/Python/Setup.embedded @@ -62,6 +62,7 @@ resource resource.c select selectmodule.c syslog syslogmodule.c termios termios.c +time timemodule.c unicodedata unicodedata.c zlib zlibmodule.c -I$(prefix)/include -lz From 028455a871d522b70969d1ea741daa29eb5d417a Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Fri, 8 Jul 2016 15:28:04 +0800 Subject: [PATCH 14/15] Updated README to reflect deprecation status. --- README.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.rst b/README.rst index a386cfd..f1b53ef 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,11 @@ Python iOS Support ================== +WARNING: This project is DEPRECATED +----------------------------------- + +**It has been replaced by the multi-platform `Python-Apple-support`__ package** + This is a meta-package for building a version of Python that can be embedded into an iOS, tvOS or watchOS project. From 829f344742abc1f090d37916f33e0548b1a1f114 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Fri, 8 Jul 2016 15:37:11 +0800 Subject: [PATCH 15/15] Updated README to reflect deprecation status. --- README.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f1b53ef..34308bd 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,12 @@ -Python iOS Support -================== - WARNING: This project is DEPRECATED ----------------------------------- -**It has been replaced by the multi-platform `Python-Apple-support`__ package** +It has been replaced by the multi-platform `Python-Apple-support`_ package + +.. _Python-Apple-support: https://github.com/pybee/Python-Apple-support + +Python iOS Support +================== This is a meta-package for building a version of Python that can be embedded into an iOS, tvOS or watchOS project.