bpo-39336: Allow packages to not let their child modules be set on them (#18006)
* bpo-39336: Allow setattr to fail on modules which aren't assignable When attaching a child module to a package if the object in sys.modules raises an AttributeError (e.g. because it is immutable) it causes the whole import to fail. This now allows immutable packages to exist and an ImportWarning is reported and the AttributeError exception is ignored.
This commit is contained in:
parent
d3ae95e1e9
commit
9b6fec4651
|
@ -978,7 +978,12 @@ def _find_and_load_unlocked(name, import_):
|
||||||
if parent:
|
if parent:
|
||||||
# Set the module as an attribute on its parent.
|
# Set the module as an attribute on its parent.
|
||||||
parent_module = sys.modules[parent]
|
parent_module = sys.modules[parent]
|
||||||
setattr(parent_module, name.rpartition('.')[2], module)
|
child = name.rpartition('.')[2]
|
||||||
|
try:
|
||||||
|
setattr(parent_module, child, module)
|
||||||
|
except AttributeError:
|
||||||
|
msg = f"Cannot set an attribute on {parent!r} for child module {child!r}"
|
||||||
|
_warnings.warn(msg, ImportWarning)
|
||||||
return module
|
return module
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ from test.support import (
|
||||||
temp_dir, DirsOnSysPath)
|
temp_dir, DirsOnSysPath)
|
||||||
from test.support import script_helper
|
from test.support import script_helper
|
||||||
from test.test_importlib.util import uncache
|
from test.test_importlib.util import uncache
|
||||||
|
from types import ModuleType
|
||||||
|
|
||||||
|
|
||||||
skip_if_dont_write_bytecode = unittest.skipIf(
|
skip_if_dont_write_bytecode = unittest.skipIf(
|
||||||
|
@ -1339,6 +1340,19 @@ class CircularImportTests(unittest.TestCase):
|
||||||
str(cm.exception),
|
str(cm.exception),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_unwritable_module(self):
|
||||||
|
self.addCleanup(unload, "test.test_import.data.unwritable")
|
||||||
|
self.addCleanup(unload, "test.test_import.data.unwritable.x")
|
||||||
|
|
||||||
|
import test.test_import.data.unwritable as unwritable
|
||||||
|
with self.assertWarns(ImportWarning):
|
||||||
|
from test.test_import.data.unwritable import x
|
||||||
|
|
||||||
|
self.assertNotEqual(type(unwritable), ModuleType)
|
||||||
|
self.assertEqual(type(x), ModuleType)
|
||||||
|
with self.assertRaises(AttributeError):
|
||||||
|
unwritable.x = 42
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# Test needs to be a package, so we can do relative imports.
|
# Test needs to be a package, so we can do relative imports.
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
|
class MyMod(object):
|
||||||
|
__slots__ = ['__builtins__', '__cached__', '__doc__',
|
||||||
|
'__file__', '__loader__', '__name__',
|
||||||
|
'__package__', '__path__', '__spec__']
|
||||||
|
def __init__(self):
|
||||||
|
for attr in self.__slots__:
|
||||||
|
setattr(self, attr, globals()[attr])
|
||||||
|
|
||||||
|
|
||||||
|
sys.modules[__name__] = MyMod()
|
|
@ -0,0 +1 @@
|
||||||
|
Import loaders which publish immutable module objects can now publish immutable packages in addition to individual modules.
|
|
@ -1448,8 +1448,8 @@ const unsigned char _Py_M__importlib_bootstrap[] = {
|
||||||
8,1,8,1,8,1,10,1,10,1,4,1,8,2,12,1,
|
8,1,8,1,8,1,10,1,10,1,4,1,8,2,12,1,
|
||||||
114,200,0,0,0,122,16,78,111,32,109,111,100,117,108,101,
|
114,200,0,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,
|
32,110,97,109,101,100,32,122,4,123,33,114,125,99,2,0,
|
||||||
0,0,0,0,0,0,0,0,0,0,8,0,0,0,8,0,
|
0,0,0,0,0,0,0,0,0,0,9,0,0,0,8,0,
|
||||||
0,0,67,0,0,0,115,218,0,0,0,100,0,125,2,124,
|
0,0,67,0,0,0,115,22,1,0,0,100,0,125,2,124,
|
||||||
0,160,0,100,1,161,1,100,2,25,0,125,3,124,3,114,
|
0,160,0,100,1,161,1,100,2,25,0,125,3,124,3,114,
|
||||||
132,124,3,116,1,106,2,118,1,114,42,116,3,124,1,124,
|
132,124,3,116,1,106,2,118,1,114,42,116,3,124,1,124,
|
||||||
3,131,2,1,0,124,0,116,1,106,2,118,0,114,62,116,
|
3,131,2,1,0,124,0,116,1,106,2,118,0,114,62,116,
|
||||||
|
@ -1460,341 +1460,350 @@ const unsigned char _Py_M__importlib_bootstrap[] = {
|
||||||
0,100,4,141,2,100,0,130,2,89,0,110,2,48,0,116,
|
0,100,4,141,2,100,0,130,2,89,0,110,2,48,0,116,
|
||||||
9,124,0,124,2,131,2,125,6,124,6,100,0,117,0,114,
|
9,124,0,124,2,131,2,125,6,124,6,100,0,117,0,114,
|
||||||
170,116,8,116,6,160,7,124,0,161,1,124,0,100,4,141,
|
170,116,8,116,6,160,7,124,0,161,1,124,0,100,4,141,
|
||||||
2,130,1,110,8,116,10,124,6,131,1,125,7,124,3,114,
|
2,130,1,110,8,116,10,124,6,131,1,125,7,124,3,144,
|
||||||
214,116,1,106,2,124,3,25,0,125,4,116,11,124,4,124,
|
1,114,18,116,1,106,2,124,3,25,0,125,4,124,0,160,
|
||||||
0,160,0,100,1,161,1,100,5,25,0,124,7,131,3,1,
|
0,100,1,161,1,100,5,25,0,125,8,122,16,116,11,124,
|
||||||
0,124,7,83,0,41,6,78,114,127,0,0,0,114,22,0,
|
4,124,8,124,7,131,3,1,0,87,0,110,48,4,0,116,
|
||||||
0,0,122,23,59,32,123,33,114,125,32,105,115,32,110,111,
|
5,144,1,121,16,1,0,1,0,1,0,100,6,124,3,155,
|
||||||
116,32,97,32,112,97,99,107,97,103,101,114,16,0,0,0,
|
2,100,7,124,8,155,2,157,4,125,5,116,12,160,13,124,
|
||||||
233,2,0,0,0,41,12,114,128,0,0,0,114,15,0,0,
|
5,116,14,161,2,1,0,89,0,110,2,48,0,124,7,83,
|
||||||
0,114,91,0,0,0,114,66,0,0,0,114,140,0,0,0,
|
0,41,8,78,114,127,0,0,0,114,22,0,0,0,122,23,
|
||||||
114,105,0,0,0,218,8,95,69,82,82,95,77,83,71,114,
|
59,32,123,33,114,125,32,105,115,32,110,111,116,32,97,32,
|
||||||
44,0,0,0,218,19,77,111,100,117,108,101,78,111,116,70,
|
112,97,99,107,97,103,101,114,16,0,0,0,233,2,0,0,
|
||||||
111,117,110,100,69,114,114,111,114,114,194,0,0,0,114,158,
|
0,122,27,67,97,110,110,111,116,32,115,101,116,32,97,110,
|
||||||
0,0,0,114,5,0,0,0,41,8,114,17,0,0,0,218,
|
32,97,116,116,114,105,98,117,116,101,32,111,110,32,122,18,
|
||||||
7,105,109,112,111,114,116,95,114,164,0,0,0,114,129,0,
|
32,102,111,114,32,99,104,105,108,100,32,109,111,100,117,108,
|
||||||
0,0,90,13,112,97,114,101,110,116,95,109,111,100,117,108,
|
101,32,41,15,114,128,0,0,0,114,15,0,0,0,114,91,
|
||||||
101,114,156,0,0,0,114,94,0,0,0,114,95,0,0,0,
|
0,0,0,114,66,0,0,0,114,140,0,0,0,114,105,0,
|
||||||
114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,
|
0,0,218,8,95,69,82,82,95,77,83,71,114,44,0,0,
|
||||||
23,95,102,105,110,100,95,97,110,100,95,108,111,97,100,95,
|
0,218,19,77,111,100,117,108,101,78,111,116,70,111,117,110,
|
||||||
117,110,108,111,99,107,101,100,190,3,0,0,115,42,0,0,
|
100,69,114,114,111,114,114,194,0,0,0,114,158,0,0,0,
|
||||||
0,0,1,4,1,14,1,4,1,10,1,10,2,10,1,10,
|
114,5,0,0,0,114,191,0,0,0,114,192,0,0,0,114,
|
||||||
1,10,1,2,1,10,1,12,1,16,1,20,1,10,1,8,
|
193,0,0,0,41,9,114,17,0,0,0,218,7,105,109,112,
|
||||||
1,20,2,8,1,4,2,10,1,22,1,114,205,0,0,0,
|
111,114,116,95,114,164,0,0,0,114,129,0,0,0,90,13,
|
||||||
99,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,
|
112,97,114,101,110,116,95,109,111,100,117,108,101,114,156,0,
|
||||||
0,8,0,0,0,67,0,0,0,115,128,0,0,0,116,0,
|
0,0,114,94,0,0,0,114,95,0,0,0,90,5,99,104,
|
||||||
124,0,131,1,143,62,1,0,116,1,106,2,160,3,124,0,
|
105,108,100,114,10,0,0,0,114,10,0,0,0,114,11,0,
|
||||||
116,4,161,2,125,2,124,2,116,4,117,0,114,56,116,5,
|
0,0,218,23,95,102,105,110,100,95,97,110,100,95,108,111,
|
||||||
124,0,124,1,131,2,87,0,2,0,100,1,4,0,4,0,
|
97,100,95,117,110,108,111,99,107,101,100,190,3,0,0,115,
|
||||||
131,3,1,0,83,0,87,0,100,1,4,0,4,0,131,3,
|
52,0,0,0,0,1,4,1,14,1,4,1,10,1,10,2,
|
||||||
1,0,110,16,49,0,115,76,48,0,1,0,1,0,1,0,
|
10,1,10,1,10,1,2,1,10,1,12,1,16,1,20,1,
|
||||||
89,0,1,0,124,2,100,1,117,0,114,116,100,2,160,6,
|
10,1,8,1,20,2,8,1,6,2,10,1,14,1,2,1,
|
||||||
124,0,161,1,125,3,116,7,124,3,124,0,100,3,141,2,
|
16,1,14,1,16,1,18,1,114,205,0,0,0,99,2,0,
|
||||||
130,1,116,8,124,0,131,1,1,0,124,2,83,0,41,4,
|
0,0,0,0,0,0,0,0,0,0,4,0,0,0,8,0,
|
||||||
122,25,70,105,110,100,32,97,110,100,32,108,111,97,100,32,
|
0,0,67,0,0,0,115,128,0,0,0,116,0,124,0,131,
|
||||||
116,104,101,32,109,111,100,117,108,101,46,78,122,40,105,109,
|
1,143,62,1,0,116,1,106,2,160,3,124,0,116,4,161,
|
||||||
112,111,114,116,32,111,102,32,123,125,32,104,97,108,116,101,
|
2,125,2,124,2,116,4,117,0,114,56,116,5,124,0,124,
|
||||||
100,59,32,78,111,110,101,32,105,110,32,115,121,115,46,109,
|
1,131,2,87,0,2,0,100,1,4,0,4,0,131,3,1,
|
||||||
111,100,117,108,101,115,114,16,0,0,0,41,9,114,49,0,
|
0,83,0,87,0,100,1,4,0,4,0,131,3,1,0,110,
|
||||||
|
16,49,0,115,76,48,0,1,0,1,0,1,0,89,0,1,
|
||||||
|
0,124,2,100,1,117,0,114,116,100,2,160,6,124,0,161,
|
||||||
|
1,125,3,116,7,124,3,124,0,100,3,141,2,130,1,116,
|
||||||
|
8,124,0,131,1,1,0,124,2,83,0,41,4,122,25,70,
|
||||||
|
105,110,100,32,97,110,100,32,108,111,97,100,32,116,104,101,
|
||||||
|
32,109,111,100,117,108,101,46,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,16,0,0,0,41,9,114,49,0,0,0,114,
|
||||||
|
15,0,0,0,114,91,0,0,0,114,34,0,0,0,218,14,
|
||||||
|
95,78,69,69,68,83,95,76,79,65,68,73,78,71,114,205,
|
||||||
|
0,0,0,114,44,0,0,0,114,203,0,0,0,114,64,0,
|
||||||
|
0,0,41,4,114,17,0,0,0,114,204,0,0,0,114,95,
|
||||||
|
0,0,0,114,74,0,0,0,114,10,0,0,0,114,10,0,
|
||||||
|
0,0,114,11,0,0,0,218,14,95,102,105,110,100,95,97,
|
||||||
|
110,100,95,108,111,97,100,225,3,0,0,115,22,0,0,0,
|
||||||
|
0,2,10,1,14,1,8,1,54,2,8,1,4,1,2,255,
|
||||||
|
4,2,12,2,8,1,114,207,0,0,0,114,22,0,0,0,
|
||||||
|
99,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,
|
||||||
|
0,4,0,0,0,67,0,0,0,115,42,0,0,0,116,0,
|
||||||
|
124,0,124,1,124,2,131,3,1,0,124,2,100,1,107,4,
|
||||||
|
114,32,116,1,124,0,124,1,124,2,131,3,125,0,116,2,
|
||||||
|
124,0,116,3,131,2,83,0,41,2,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,22,0,0,0,41,4,114,200,0,0,0,114,187,0,
|
||||||
|
0,0,114,207,0,0,0,218,11,95,103,99,100,95,105,109,
|
||||||
|
112,111,114,116,114,199,0,0,0,114,10,0,0,0,114,10,
|
||||||
|
0,0,0,114,11,0,0,0,114,208,0,0,0,241,3,0,
|
||||||
|
0,115,8,0,0,0,0,9,12,1,8,1,12,1,114,208,
|
||||||
|
0,0,0,169,1,218,9,114,101,99,117,114,115,105,118,101,
|
||||||
|
99,3,0,0,0,0,0,0,0,1,0,0,0,8,0,0,
|
||||||
|
0,11,0,0,0,67,0,0,0,115,232,0,0,0,124,1,
|
||||||
|
68,0,93,222,125,4,116,0,124,4,116,1,131,2,115,66,
|
||||||
|
124,3,114,34,124,0,106,2,100,1,23,0,125,5,110,4,
|
||||||
|
100,2,125,5,116,3,100,3,124,5,155,0,100,4,116,4,
|
||||||
|
124,4,131,1,106,2,155,0,157,4,131,1,130,1,113,4,
|
||||||
|
124,4,100,5,107,2,114,108,124,3,115,226,116,5,124,0,
|
||||||
|
100,6,131,2,114,226,116,6,124,0,124,0,106,7,124,2,
|
||||||
|
100,7,100,8,141,4,1,0,113,4,116,5,124,0,124,4,
|
||||||
|
131,2,115,4,100,9,160,8,124,0,106,2,124,4,161,2,
|
||||||
|
125,6,122,14,116,9,124,2,124,6,131,2,1,0,87,0,
|
||||||
|
113,4,4,0,116,10,121,224,1,0,125,7,1,0,122,54,
|
||||||
|
124,7,106,11,124,6,107,2,114,202,116,12,106,13,160,14,
|
||||||
|
124,6,116,15,161,2,100,10,117,1,114,202,87,0,89,0,
|
||||||
|
100,10,125,7,126,7,113,4,130,0,87,0,89,0,100,10,
|
||||||
|
125,7,126,7,113,4,100,10,125,7,126,7,48,0,48,0,
|
||||||
|
113,4,124,0,83,0,41,11,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,122,8,46,95,95,97,108,108,
|
||||||
|
95,95,122,13,96,96,102,114,111,109,32,108,105,115,116,39,
|
||||||
|
39,122,8,73,116,101,109,32,105,110,32,122,18,32,109,117,
|
||||||
|
115,116,32,98,101,32,115,116,114,44,32,110,111,116,32,250,
|
||||||
|
1,42,218,7,95,95,97,108,108,95,95,84,114,209,0,0,
|
||||||
|
0,114,182,0,0,0,78,41,16,114,195,0,0,0,114,196,
|
||||||
|
0,0,0,114,1,0,0,0,114,197,0,0,0,114,14,0,
|
||||||
|
0,0,114,4,0,0,0,218,16,95,104,97,110,100,108,101,
|
||||||
|
95,102,114,111,109,108,105,115,116,114,212,0,0,0,114,44,
|
||||||
|
0,0,0,114,66,0,0,0,114,203,0,0,0,114,17,0,
|
||||||
0,0,114,15,0,0,0,114,91,0,0,0,114,34,0,0,
|
0,0,114,15,0,0,0,114,91,0,0,0,114,34,0,0,
|
||||||
0,218,14,95,78,69,69,68,83,95,76,79,65,68,73,78,
|
0,114,206,0,0,0,41,8,114,95,0,0,0,218,8,102,
|
||||||
71,114,205,0,0,0,114,44,0,0,0,114,203,0,0,0,
|
114,111,109,108,105,115,116,114,204,0,0,0,114,210,0,0,
|
||||||
114,64,0,0,0,41,4,114,17,0,0,0,114,204,0,0,
|
0,218,1,120,90,5,119,104,101,114,101,90,9,102,114,111,
|
||||||
0,114,95,0,0,0,114,74,0,0,0,114,10,0,0,0,
|
109,95,110,97,109,101,90,3,101,120,99,114,10,0,0,0,
|
||||||
114,10,0,0,0,114,11,0,0,0,218,14,95,102,105,110,
|
114,10,0,0,0,114,11,0,0,0,114,213,0,0,0,0,
|
||||||
100,95,97,110,100,95,108,111,97,100,220,3,0,0,115,22,
|
4,0,0,115,44,0,0,0,0,10,8,1,10,1,4,1,
|
||||||
0,0,0,0,2,10,1,14,1,8,1,54,2,8,1,4,
|
12,2,4,1,28,2,8,1,14,1,10,1,2,255,8,2,
|
||||||
1,2,255,4,2,12,2,8,1,114,207,0,0,0,114,22,
|
10,1,14,1,2,1,14,1,14,4,10,1,16,255,2,2,
|
||||||
0,0,0,99,3,0,0,0,0,0,0,0,0,0,0,0,
|
12,1,26,1,114,213,0,0,0,99,1,0,0,0,0,0,
|
||||||
3,0,0,0,4,0,0,0,67,0,0,0,115,42,0,0,
|
0,0,0,0,0,0,3,0,0,0,6,0,0,0,67,0,
|
||||||
0,116,0,124,0,124,1,124,2,131,3,1,0,124,2,100,
|
0,0,115,146,0,0,0,124,0,160,0,100,1,161,1,125,
|
||||||
1,107,4,114,32,116,1,124,0,124,1,124,2,131,3,125,
|
1,124,0,160,0,100,2,161,1,125,2,124,1,100,3,117,
|
||||||
0,116,2,124,0,116,3,131,2,83,0,41,2,97,50,1,
|
1,114,82,124,2,100,3,117,1,114,78,124,1,124,2,106,
|
||||||
0,0,73,109,112,111,114,116,32,97,110,100,32,114,101,116,
|
1,107,3,114,78,116,2,106,3,100,4,124,1,155,2,100,
|
||||||
117,114,110,32,116,104,101,32,109,111,100,117,108,101,32,98,
|
5,124,2,106,1,155,2,100,6,157,5,116,4,100,7,100,
|
||||||
97,115,101,100,32,111,110,32,105,116,115,32,110,97,109,101,
|
8,141,3,1,0,124,1,83,0,124,2,100,3,117,1,114,
|
||||||
44,32,116,104,101,32,112,97,99,107,97,103,101,32,116,104,
|
96,124,2,106,1,83,0,116,2,106,3,100,9,116,4,100,
|
||||||
101,32,99,97,108,108,32,105,115,10,32,32,32,32,98,101,
|
7,100,8,141,3,1,0,124,0,100,10,25,0,125,1,100,
|
||||||
105,110,103,32,109,97,100,101,32,102,114,111,109,44,32,97,
|
11,124,0,118,1,114,142,124,1,160,5,100,12,161,1,100,
|
||||||
110,100,32,116,104,101,32,108,101,118,101,108,32,97,100,106,
|
13,25,0,125,1,124,1,83,0,41,14,122,167,67,97,108,
|
||||||
117,115,116,109,101,110,116,46,10,10,32,32,32,32,84,104,
|
99,117,108,97,116,101,32,119,104,97,116,32,95,95,112,97,
|
||||||
105,115,32,102,117,110,99,116,105,111,110,32,114,101,112,114,
|
99,107,97,103,101,95,95,32,115,104,111,117,108,100,32,98,
|
||||||
101,115,101,110,116,115,32,116,104,101,32,103,114,101,97,116,
|
101,46,10,10,32,32,32,32,95,95,112,97,99,107,97,103,
|
||||||
101,115,116,32,99,111,109,109,111,110,32,100,101,110,111,109,
|
101,95,95,32,105,115,32,110,111,116,32,103,117,97,114,97,
|
||||||
105,110,97,116,111,114,32,111,102,32,102,117,110,99,116,105,
|
110,116,101,101,100,32,116,111,32,98,101,32,100,101,102,105,
|
||||||
111,110,97,108,105,116,121,10,32,32,32,32,98,101,116,119,
|
110,101,100,32,111,114,32,99,111,117,108,100,32,98,101,32,
|
||||||
101,101,110,32,105,109,112,111,114,116,95,109,111,100,117,108,
|
115,101,116,32,116,111,32,78,111,110,101,10,32,32,32,32,
|
||||||
101,32,97,110,100,32,95,95,105,109,112,111,114,116,95,95,
|
116,111,32,114,101,112,114,101,115,101,110,116,32,116,104,97,
|
||||||
46,32,84,104,105,115,32,105,110,99,108,117,100,101,115,32,
|
116,32,105,116,115,32,112,114,111,112,101,114,32,118,97,108,
|
||||||
115,101,116,116,105,110,103,32,95,95,112,97,99,107,97,103,
|
117,101,32,105,115,32,117,110,107,110,111,119,110,46,10,10,
|
||||||
101,95,95,32,105,102,10,32,32,32,32,116,104,101,32,108,
|
32,32,32,32,114,144,0,0,0,114,104,0,0,0,78,122,
|
||||||
111,97,100,101,114,32,100,105,100,32,110,111,116,46,10,10,
|
32,95,95,112,97,99,107,97,103,101,95,95,32,33,61,32,
|
||||||
32,32,32,32,114,22,0,0,0,41,4,114,200,0,0,0,
|
95,95,115,112,101,99,95,95,46,112,97,114,101,110,116,32,
|
||||||
114,187,0,0,0,114,207,0,0,0,218,11,95,103,99,100,
|
40,122,4,32,33,61,32,250,1,41,233,3,0,0,0,41,
|
||||||
95,105,109,112,111,114,116,114,199,0,0,0,114,10,0,0,
|
1,90,10,115,116,97,99,107,108,101,118,101,108,122,89,99,
|
||||||
0,114,10,0,0,0,114,11,0,0,0,114,208,0,0,0,
|
97,110,39,116,32,114,101,115,111,108,118,101,32,112,97,99,
|
||||||
236,3,0,0,115,8,0,0,0,0,9,12,1,8,1,12,
|
107,97,103,101,32,102,114,111,109,32,95,95,115,112,101,99,
|
||||||
1,114,208,0,0,0,169,1,218,9,114,101,99,117,114,115,
|
95,95,32,111,114,32,95,95,112,97,99,107,97,103,101,95,
|
||||||
105,118,101,99,3,0,0,0,0,0,0,0,1,0,0,0,
|
95,44,32,102,97,108,108,105,110,103,32,98,97,99,107,32,
|
||||||
8,0,0,0,11,0,0,0,67,0,0,0,115,232,0,0,
|
111,110,32,95,95,110,97,109,101,95,95,32,97,110,100,32,
|
||||||
0,124,1,68,0,93,222,125,4,116,0,124,4,116,1,131,
|
95,95,112,97,116,104,95,95,114,1,0,0,0,114,140,0,
|
||||||
2,115,66,124,3,114,34,124,0,106,2,100,1,23,0,125,
|
0,0,114,127,0,0,0,114,22,0,0,0,41,6,114,34,
|
||||||
5,110,4,100,2,125,5,116,3,100,3,124,5,155,0,100,
|
0,0,0,114,129,0,0,0,114,191,0,0,0,114,192,0,
|
||||||
4,116,4,124,4,131,1,106,2,155,0,157,4,131,1,130,
|
0,0,114,193,0,0,0,114,128,0,0,0,41,3,218,7,
|
||||||
1,113,4,124,4,100,5,107,2,114,108,124,3,115,226,116,
|
103,108,111,98,97,108,115,114,185,0,0,0,114,94,0,0,
|
||||||
5,124,0,100,6,131,2,114,226,116,6,124,0,124,0,106,
|
0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,
|
||||||
7,124,2,100,7,100,8,141,4,1,0,113,4,116,5,124,
|
218,17,95,99,97,108,99,95,95,95,112,97,99,107,97,103,
|
||||||
0,124,4,131,2,115,4,100,9,160,8,124,0,106,2,124,
|
101,95,95,37,4,0,0,115,38,0,0,0,0,7,10,1,
|
||||||
4,161,2,125,6,122,14,116,9,124,2,124,6,131,2,1,
|
10,1,8,1,18,1,22,2,2,0,2,254,6,3,4,1,
|
||||||
0,87,0,113,4,4,0,116,10,121,224,1,0,125,7,1,
|
8,1,6,2,6,2,2,0,2,254,6,3,8,1,8,1,
|
||||||
0,122,54,124,7,106,11,124,6,107,2,114,202,116,12,106,
|
14,1,114,219,0,0,0,114,10,0,0,0,99,5,0,0,
|
||||||
13,160,14,124,6,116,15,161,2,100,10,117,1,114,202,87,
|
0,0,0,0,0,0,0,0,0,9,0,0,0,5,0,0,
|
||||||
0,89,0,100,10,125,7,126,7,113,4,130,0,87,0,89,
|
0,67,0,0,0,115,180,0,0,0,124,4,100,1,107,2,
|
||||||
0,100,10,125,7,126,7,113,4,100,10,125,7,126,7,48,
|
114,18,116,0,124,0,131,1,125,5,110,36,124,1,100,2,
|
||||||
0,48,0,113,4,124,0,83,0,41,11,122,238,70,105,103,
|
117,1,114,30,124,1,110,2,105,0,125,6,116,1,124,6,
|
||||||
117,114,101,32,111,117,116,32,119,104,97,116,32,95,95,105,
|
131,1,125,7,116,0,124,0,124,7,124,4,131,3,125,5,
|
||||||
109,112,111,114,116,95,95,32,115,104,111,117,108,100,32,114,
|
124,3,115,150,124,4,100,1,107,2,114,84,116,0,124,0,
|
||||||
101,116,117,114,110,46,10,10,32,32,32,32,84,104,101,32,
|
160,2,100,3,161,1,100,1,25,0,131,1,83,0,124,0,
|
||||||
105,109,112,111,114,116,95,32,112,97,114,97,109,101,116,101,
|
115,92,124,5,83,0,116,3,124,0,131,1,116,3,124,0,
|
||||||
114,32,105,115,32,97,32,99,97,108,108,97,98,108,101,32,
|
160,2,100,3,161,1,100,1,25,0,131,1,24,0,125,8,
|
||||||
119,104,105,99,104,32,116,97,107,101,115,32,116,104,101,32,
|
116,4,106,5,124,5,106,6,100,2,116,3,124,5,106,6,
|
||||||
110,97,109,101,32,111,102,32,109,111,100,117,108,101,32,116,
|
131,1,124,8,24,0,133,2,25,0,25,0,83,0,110,26,
|
||||||
111,10,32,32,32,32,105,109,112,111,114,116,46,32,73,116,
|
116,7,124,5,100,4,131,2,114,172,116,8,124,5,124,3,
|
||||||
32,105,115,32,114,101,113,117,105,114,101,100,32,116,111,32,
|
116,0,131,3,83,0,124,5,83,0,100,2,83,0,41,5,
|
||||||
100,101,99,111,117,112,108,101,32,116,104,101,32,102,117,110,
|
97,215,1,0,0,73,109,112,111,114,116,32,97,32,109,111,
|
||||||
99,116,105,111,110,32,102,114,111,109,32,97,115,115,117,109,
|
100,117,108,101,46,10,10,32,32,32,32,84,104,101,32,39,
|
||||||
105,110,103,32,105,109,112,111,114,116,108,105,98,39,115,10,
|
103,108,111,98,97,108,115,39,32,97,114,103,117,109,101,110,
|
||||||
32,32,32,32,105,109,112,111,114,116,32,105,109,112,108,101,
|
116,32,105,115,32,117,115,101,100,32,116,111,32,105,110,102,
|
||||||
109,101,110,116,97,116,105,111,110,32,105,115,32,100,101,115,
|
101,114,32,119,104,101,114,101,32,116,104,101,32,105,109,112,
|
||||||
105,114,101,100,46,10,10,32,32,32,32,122,8,46,95,95,
|
111,114,116,32,105,115,32,111,99,99,117,114,114,105,110,103,
|
||||||
97,108,108,95,95,122,13,96,96,102,114,111,109,32,108,105,
|
32,102,114,111,109,10,32,32,32,32,116,111,32,104,97,110,
|
||||||
115,116,39,39,122,8,73,116,101,109,32,105,110,32,122,18,
|
100,108,101,32,114,101,108,97,116,105,118,101,32,105,109,112,
|
||||||
32,109,117,115,116,32,98,101,32,115,116,114,44,32,110,111,
|
111,114,116,115,46,32,84,104,101,32,39,108,111,99,97,108,
|
||||||
116,32,250,1,42,218,7,95,95,97,108,108,95,95,84,114,
|
115,39,32,97,114,103,117,109,101,110,116,32,105,115,32,105,
|
||||||
209,0,0,0,114,182,0,0,0,78,41,16,114,195,0,0,
|
103,110,111,114,101,100,46,32,84,104,101,10,32,32,32,32,
|
||||||
0,114,196,0,0,0,114,1,0,0,0,114,197,0,0,0,
|
39,102,114,111,109,108,105,115,116,39,32,97,114,103,117,109,
|
||||||
114,14,0,0,0,114,4,0,0,0,218,16,95,104,97,110,
|
101,110,116,32,115,112,101,99,105,102,105,101,115,32,119,104,
|
||||||
100,108,101,95,102,114,111,109,108,105,115,116,114,212,0,0,
|
97,116,32,115,104,111,117,108,100,32,101,120,105,115,116,32,
|
||||||
0,114,44,0,0,0,114,66,0,0,0,114,203,0,0,0,
|
97,115,32,97,116,116,114,105,98,117,116,101,115,32,111,110,
|
||||||
114,17,0,0,0,114,15,0,0,0,114,91,0,0,0,114,
|
32,116,104,101,32,109,111,100,117,108,101,10,32,32,32,32,
|
||||||
34,0,0,0,114,206,0,0,0,41,8,114,95,0,0,0,
|
98,101,105,110,103,32,105,109,112,111,114,116,101,100,32,40,
|
||||||
218,8,102,114,111,109,108,105,115,116,114,204,0,0,0,114,
|
101,46,103,46,32,96,96,102,114,111,109,32,109,111,100,117,
|
||||||
210,0,0,0,218,1,120,90,5,119,104,101,114,101,90,9,
|
108,101,32,105,109,112,111,114,116,32,60,102,114,111,109,108,
|
||||||
102,114,111,109,95,110,97,109,101,90,3,101,120,99,114,10,
|
105,115,116,62,96,96,41,46,32,32,84,104,101,32,39,108,
|
||||||
0,0,0,114,10,0,0,0,114,11,0,0,0,114,213,0,
|
101,118,101,108,39,10,32,32,32,32,97,114,103,117,109,101,
|
||||||
0,0,251,3,0,0,115,44,0,0,0,0,10,8,1,10,
|
110,116,32,114,101,112,114,101,115,101,110,116,115,32,116,104,
|
||||||
1,4,1,12,2,4,1,28,2,8,1,14,1,10,1,2,
|
101,32,112,97,99,107,97,103,101,32,108,111,99,97,116,105,
|
||||||
255,8,2,10,1,14,1,2,1,14,1,14,4,10,1,16,
|
111,110,32,116,111,32,105,109,112,111,114,116,32,102,114,111,
|
||||||
255,2,2,12,1,26,1,114,213,0,0,0,99,1,0,0,
|
109,32,105,110,32,97,32,114,101,108,97,116,105,118,101,10,
|
||||||
0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,
|
32,32,32,32,105,109,112,111,114,116,32,40,101,46,103,46,
|
||||||
0,67,0,0,0,115,146,0,0,0,124,0,160,0,100,1,
|
32,96,96,102,114,111,109,32,46,46,112,107,103,32,105,109,
|
||||||
161,1,125,1,124,0,160,0,100,2,161,1,125,2,124,1,
|
112,111,114,116,32,109,111,100,96,96,32,119,111,117,108,100,
|
||||||
100,3,117,1,114,82,124,2,100,3,117,1,114,78,124,1,
|
32,104,97,118,101,32,97,32,39,108,101,118,101,108,39,32,
|
||||||
124,2,106,1,107,3,114,78,116,2,106,3,100,4,124,1,
|
111,102,32,50,41,46,10,10,32,32,32,32,114,22,0,0,
|
||||||
155,2,100,5,124,2,106,1,155,2,100,6,157,5,116,4,
|
0,78,114,127,0,0,0,114,140,0,0,0,41,9,114,208,
|
||||||
100,7,100,8,141,3,1,0,124,1,83,0,124,2,100,3,
|
0,0,0,114,219,0,0,0,218,9,112,97,114,116,105,116,
|
||||||
117,1,114,96,124,2,106,1,83,0,116,2,106,3,100,9,
|
105,111,110,114,184,0,0,0,114,15,0,0,0,114,91,0,
|
||||||
116,4,100,7,100,8,141,3,1,0,124,0,100,10,25,0,
|
0,0,114,1,0,0,0,114,4,0,0,0,114,213,0,0,
|
||||||
125,1,100,11,124,0,118,1,114,142,124,1,160,5,100,12,
|
0,41,9,114,17,0,0,0,114,218,0,0,0,218,6,108,
|
||||||
161,1,100,13,25,0,125,1,124,1,83,0,41,14,122,167,
|
111,99,97,108,115,114,214,0,0,0,114,186,0,0,0,114,
|
||||||
67,97,108,99,117,108,97,116,101,32,119,104,97,116,32,95,
|
95,0,0,0,90,8,103,108,111,98,97,108,115,95,114,185,
|
||||||
95,112,97,99,107,97,103,101,95,95,32,115,104,111,117,108,
|
0,0,0,90,7,99,117,116,95,111,102,102,114,10,0,0,
|
||||||
100,32,98,101,46,10,10,32,32,32,32,95,95,112,97,99,
|
0,114,10,0,0,0,114,11,0,0,0,218,10,95,95,105,
|
||||||
107,97,103,101,95,95,32,105,115,32,110,111,116,32,103,117,
|
109,112,111,114,116,95,95,64,4,0,0,115,30,0,0,0,
|
||||||
97,114,97,110,116,101,101,100,32,116,111,32,98,101,32,100,
|
0,11,8,1,10,2,16,1,8,1,12,1,4,3,8,1,
|
||||||
101,102,105,110,101,100,32,111,114,32,99,111,117,108,100,32,
|
18,1,4,1,4,4,26,3,32,1,10,1,12,2,114,222,
|
||||||
98,101,32,115,101,116,32,116,111,32,78,111,110,101,10,32,
|
0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
32,32,32,116,111,32,114,101,112,114,101,115,101,110,116,32,
|
2,0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,
|
||||||
116,104,97,116,32,105,116,115,32,112,114,111,112,101,114,32,
|
0,116,0,160,1,124,0,161,1,125,1,124,1,100,0,117,
|
||||||
118,97,108,117,101,32,105,115,32,117,110,107,110,111,119,110,
|
0,114,30,116,2,100,1,124,0,23,0,131,1,130,1,116,
|
||||||
46,10,10,32,32,32,32,114,144,0,0,0,114,104,0,0,
|
3,124,1,131,1,83,0,41,2,78,122,25,110,111,32,98,
|
||||||
0,78,122,32,95,95,112,97,99,107,97,103,101,95,95,32,
|
117,105,108,116,45,105,110,32,109,111,100,117,108,101,32,110,
|
||||||
33,61,32,95,95,115,112,101,99,95,95,46,112,97,114,101,
|
97,109,101,100,32,41,4,114,159,0,0,0,114,166,0,0,
|
||||||
110,116,32,40,122,4,32,33,61,32,250,1,41,233,3,0,
|
0,114,78,0,0,0,114,158,0,0,0,41,2,114,17,0,
|
||||||
0,0,41,1,90,10,115,116,97,99,107,108,101,118,101,108,
|
0,0,114,94,0,0,0,114,10,0,0,0,114,10,0,0,
|
||||||
122,89,99,97,110,39,116,32,114,101,115,111,108,118,101,32,
|
0,114,11,0,0,0,218,18,95,98,117,105,108,116,105,110,
|
||||||
112,97,99,107,97,103,101,32,102,114,111,109,32,95,95,115,
|
95,102,114,111,109,95,110,97,109,101,101,4,0,0,115,8,
|
||||||
112,101,99,95,95,32,111,114,32,95,95,112,97,99,107,97,
|
0,0,0,0,1,10,1,8,1,12,1,114,223,0,0,0,
|
||||||
103,101,95,95,44,32,102,97,108,108,105,110,103,32,98,97,
|
99,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,
|
||||||
99,107,32,111,110,32,95,95,110,97,109,101,95,95,32,97,
|
0,5,0,0,0,67,0,0,0,115,166,0,0,0,124,1,
|
||||||
110,100,32,95,95,112,97,116,104,95,95,114,1,0,0,0,
|
97,0,124,0,97,1,116,2,116,1,131,1,125,2,116,1,
|
||||||
114,140,0,0,0,114,127,0,0,0,114,22,0,0,0,41,
|
106,3,160,4,161,0,68,0,93,72,92,2,125,3,125,4,
|
||||||
6,114,34,0,0,0,114,129,0,0,0,114,191,0,0,0,
|
116,5,124,4,124,2,131,2,114,26,124,3,116,1,106,6,
|
||||||
114,192,0,0,0,114,193,0,0,0,114,128,0,0,0,41,
|
118,0,114,60,116,7,125,5,110,18,116,0,160,8,124,3,
|
||||||
3,218,7,103,108,111,98,97,108,115,114,185,0,0,0,114,
|
161,1,114,26,116,9,125,5,110,2,113,26,116,10,124,4,
|
||||||
94,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
|
124,5,131,2,125,6,116,11,124,6,124,4,131,2,1,0,
|
||||||
0,0,0,218,17,95,99,97,108,99,95,95,95,112,97,99,
|
113,26,116,1,106,3,116,12,25,0,125,7,100,1,68,0,
|
||||||
107,97,103,101,95,95,32,4,0,0,115,38,0,0,0,0,
|
93,46,125,8,124,8,116,1,106,3,118,1,114,138,116,13,
|
||||||
7,10,1,10,1,8,1,18,1,22,2,2,0,2,254,6,
|
124,8,131,1,125,9,110,10,116,1,106,3,124,8,25,0,
|
||||||
3,4,1,8,1,6,2,6,2,2,0,2,254,6,3,8,
|
125,9,116,14,124,7,124,8,124,9,131,3,1,0,113,114,
|
||||||
1,8,1,14,1,114,219,0,0,0,114,10,0,0,0,99,
|
100,2,83,0,41,3,122,250,83,101,116,117,112,32,105,109,
|
||||||
5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,
|
112,111,114,116,108,105,98,32,98,121,32,105,109,112,111,114,
|
||||||
5,0,0,0,67,0,0,0,115,180,0,0,0,124,4,100,
|
116,105,110,103,32,110,101,101,100,101,100,32,98,117,105,108,
|
||||||
1,107,2,114,18,116,0,124,0,131,1,125,5,110,36,124,
|
116,45,105,110,32,109,111,100,117,108,101,115,32,97,110,100,
|
||||||
1,100,2,117,1,114,30,124,1,110,2,105,0,125,6,116,
|
32,105,110,106,101,99,116,105,110,103,32,116,104,101,109,10,
|
||||||
1,124,6,131,1,125,7,116,0,124,0,124,7,124,4,131,
|
32,32,32,32,105,110,116,111,32,116,104,101,32,103,108,111,
|
||||||
3,125,5,124,3,115,150,124,4,100,1,107,2,114,84,116,
|
98,97,108,32,110,97,109,101,115,112,97,99,101,46,10,10,
|
||||||
0,124,0,160,2,100,3,161,1,100,1,25,0,131,1,83,
|
32,32,32,32,65,115,32,115,121,115,32,105,115,32,110,101,
|
||||||
0,124,0,115,92,124,5,83,0,116,3,124,0,131,1,116,
|
101,100,101,100,32,102,111,114,32,115,121,115,46,109,111,100,
|
||||||
3,124,0,160,2,100,3,161,1,100,1,25,0,131,1,24,
|
117,108,101,115,32,97,99,99,101,115,115,32,97,110,100,32,
|
||||||
0,125,8,116,4,106,5,124,5,106,6,100,2,116,3,124,
|
95,105,109,112,32,105,115,32,110,101,101,100,101,100,32,116,
|
||||||
5,106,6,131,1,124,8,24,0,133,2,25,0,25,0,83,
|
111,32,108,111,97,100,32,98,117,105,108,116,45,105,110,10,
|
||||||
0,110,26,116,7,124,5,100,4,131,2,114,172,116,8,124,
|
32,32,32,32,109,111,100,117,108,101,115,44,32,116,104,111,
|
||||||
5,124,3,116,0,131,3,83,0,124,5,83,0,100,2,83,
|
115,101,32,116,119,111,32,109,111,100,117,108,101,115,32,109,
|
||||||
0,41,5,97,215,1,0,0,73,109,112,111,114,116,32,97,
|
117,115,116,32,98,101,32,101,120,112,108,105,99,105,116,108,
|
||||||
32,109,111,100,117,108,101,46,10,10,32,32,32,32,84,104,
|
121,32,112,97,115,115,101,100,32,105,110,46,10,10,32,32,
|
||||||
101,32,39,103,108,111,98,97,108,115,39,32,97,114,103,117,
|
32,32,41,3,114,23,0,0,0,114,191,0,0,0,114,63,
|
||||||
109,101,110,116,32,105,115,32,117,115,101,100,32,116,111,32,
|
0,0,0,78,41,15,114,56,0,0,0,114,15,0,0,0,
|
||||||
105,110,102,101,114,32,119,104,101,114,101,32,116,104,101,32,
|
114,14,0,0,0,114,91,0,0,0,218,5,105,116,101,109,
|
||||||
105,109,112,111,114,116,32,105,115,32,111,99,99,117,114,114,
|
115,114,195,0,0,0,114,77,0,0,0,114,159,0,0,0,
|
||||||
105,110,103,32,102,114,111,109,10,32,32,32,32,116,111,32,
|
114,87,0,0,0,114,173,0,0,0,114,141,0,0,0,114,
|
||||||
104,97,110,100,108,101,32,114,101,108,97,116,105,118,101,32,
|
147,0,0,0,114,1,0,0,0,114,223,0,0,0,114,5,
|
||||||
105,109,112,111,114,116,115,46,32,84,104,101,32,39,108,111,
|
0,0,0,41,10,218,10,115,121,115,95,109,111,100,117,108,
|
||||||
99,97,108,115,39,32,97,114,103,117,109,101,110,116,32,105,
|
101,218,11,95,105,109,112,95,109,111,100,117,108,101,90,11,
|
||||||
115,32,105,103,110,111,114,101,100,46,32,84,104,101,10,32,
|
109,111,100,117,108,101,95,116,121,112,101,114,17,0,0,0,
|
||||||
32,32,32,39,102,114,111,109,108,105,115,116,39,32,97,114,
|
114,95,0,0,0,114,108,0,0,0,114,94,0,0,0,90,
|
||||||
103,117,109,101,110,116,32,115,112,101,99,105,102,105,101,115,
|
11,115,101,108,102,95,109,111,100,117,108,101,90,12,98,117,
|
||||||
32,119,104,97,116,32,115,104,111,117,108,100,32,101,120,105,
|
105,108,116,105,110,95,110,97,109,101,90,14,98,117,105,108,
|
||||||
115,116,32,97,115,32,97,116,116,114,105,98,117,116,101,115,
|
116,105,110,95,109,111,100,117,108,101,114,10,0,0,0,114,
|
||||||
32,111,110,32,116,104,101,32,109,111,100,117,108,101,10,32,
|
10,0,0,0,114,11,0,0,0,218,6,95,115,101,116,117,
|
||||||
32,32,32,98,101,105,110,103,32,105,109,112,111,114,116,101,
|
112,108,4,0,0,115,36,0,0,0,0,9,4,1,4,3,
|
||||||
100,32,40,101,46,103,46,32,96,96,102,114,111,109,32,109,
|
8,1,18,1,10,1,10,1,6,1,10,1,6,2,2,1,
|
||||||
111,100,117,108,101,32,105,109,112,111,114,116,32,60,102,114,
|
10,1,12,3,10,1,8,1,10,1,10,2,10,1,114,227,
|
||||||
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,
|
|
||||||
22,0,0,0,78,114,127,0,0,0,114,140,0,0,0,41,
|
|
||||||
9,114,208,0,0,0,114,219,0,0,0,218,9,112,97,114,
|
|
||||||
116,105,116,105,111,110,114,184,0,0,0,114,15,0,0,0,
|
|
||||||
114,91,0,0,0,114,1,0,0,0,114,4,0,0,0,114,
|
|
||||||
213,0,0,0,41,9,114,17,0,0,0,114,218,0,0,0,
|
|
||||||
218,6,108,111,99,97,108,115,114,214,0,0,0,114,186,0,
|
|
||||||
0,0,114,95,0,0,0,90,8,103,108,111,98,97,108,115,
|
|
||||||
95,114,185,0,0,0,90,7,99,117,116,95,111,102,102,114,
|
|
||||||
10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,10,
|
|
||||||
95,95,105,109,112,111,114,116,95,95,59,4,0,0,115,30,
|
|
||||||
0,0,0,0,11,8,1,10,2,16,1,8,1,12,1,4,
|
|
||||||
3,8,1,18,1,4,1,4,4,26,3,32,1,10,1,12,
|
|
||||||
2,114,222,0,0,0,99,1,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,
|
|
||||||
38,0,0,0,116,0,160,1,124,0,161,1,125,1,124,1,
|
|
||||||
100,0,117,0,114,30,116,2,100,1,124,0,23,0,131,1,
|
|
||||||
130,1,116,3,124,1,131,1,83,0,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,4,114,159,0,0,0,114,
|
|
||||||
166,0,0,0,114,78,0,0,0,114,158,0,0,0,41,2,
|
|
||||||
114,17,0,0,0,114,94,0,0,0,114,10,0,0,0,114,
|
|
||||||
10,0,0,0,114,11,0,0,0,218,18,95,98,117,105,108,
|
|
||||||
116,105,110,95,102,114,111,109,95,110,97,109,101,96,4,0,
|
|
||||||
0,115,8,0,0,0,0,1,10,1,8,1,12,1,114,223,
|
|
||||||
0,0,0,99,2,0,0,0,0,0,0,0,0,0,0,0,
|
0,0,0,99,2,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
10,0,0,0,5,0,0,0,67,0,0,0,115,166,0,0,
|
2,0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,
|
||||||
0,124,1,97,0,124,0,97,1,116,2,116,1,131,1,125,
|
0,116,0,124,0,124,1,131,2,1,0,116,1,106,2,160,
|
||||||
2,116,1,106,3,160,4,161,0,68,0,93,72,92,2,125,
|
3,116,4,161,1,1,0,116,1,106,2,160,3,116,5,161,
|
||||||
3,125,4,116,5,124,4,124,2,131,2,114,26,124,3,116,
|
1,1,0,100,1,83,0,41,2,122,48,73,110,115,116,97,
|
||||||
1,106,6,118,0,114,60,116,7,125,5,110,18,116,0,160,
|
108,108,32,105,109,112,111,114,116,101,114,115,32,102,111,114,
|
||||||
8,124,3,161,1,114,26,116,9,125,5,110,2,113,26,116,
|
32,98,117,105,108,116,105,110,32,97,110,100,32,102,114,111,
|
||||||
10,124,4,124,5,131,2,125,6,116,11,124,6,124,4,131,
|
122,101,110,32,109,111,100,117,108,101,115,78,41,6,114,227,
|
||||||
2,1,0,113,26,116,1,106,3,116,12,25,0,125,7,100,
|
0,0,0,114,15,0,0,0,114,190,0,0,0,114,118,0,
|
||||||
1,68,0,93,46,125,8,124,8,116,1,106,3,118,1,114,
|
0,0,114,159,0,0,0,114,173,0,0,0,41,2,114,225,
|
||||||
138,116,13,124,8,131,1,125,9,110,10,116,1,106,3,124,
|
0,0,0,114,226,0,0,0,114,10,0,0,0,114,10,0,
|
||||||
8,25,0,125,9,116,14,124,7,124,8,124,9,131,3,1,
|
0,0,114,11,0,0,0,218,8,95,105,110,115,116,97,108,
|
||||||
0,113,114,100,2,83,0,41,3,122,250,83,101,116,117,112,
|
108,143,4,0,0,115,6,0,0,0,0,2,10,2,12,1,
|
||||||
32,105,109,112,111,114,116,108,105,98,32,98,121,32,105,109,
|
114,228,0,0,0,99,0,0,0,0,0,0,0,0,0,0,
|
||||||
112,111,114,116,105,110,103,32,110,101,101,100,101,100,32,98,
|
0,0,1,0,0,0,4,0,0,0,67,0,0,0,115,32,
|
||||||
117,105,108,116,45,105,110,32,109,111,100,117,108,101,115,32,
|
0,0,0,100,1,100,2,108,0,125,0,124,0,97,1,124,
|
||||||
97,110,100,32,105,110,106,101,99,116,105,110,103,32,116,104,
|
0,160,2,116,3,106,4,116,5,25,0,161,1,1,0,100,
|
||||||
101,109,10,32,32,32,32,105,110,116,111,32,116,104,101,32,
|
2,83,0,41,3,122,57,73,110,115,116,97,108,108,32,105,
|
||||||
103,108,111,98,97,108,32,110,97,109,101,115,112,97,99,101,
|
109,112,111,114,116,101,114,115,32,116,104,97,116,32,114,101,
|
||||||
46,10,10,32,32,32,32,65,115,32,115,121,115,32,105,115,
|
113,117,105,114,101,32,101,120,116,101,114,110,97,108,32,102,
|
||||||
32,110,101,101,100,101,100,32,102,111,114,32,115,121,115,46,
|
105,108,101,115,121,115,116,101,109,32,97,99,99,101,115,115,
|
||||||
109,111,100,117,108,101,115,32,97,99,99,101,115,115,32,97,
|
114,22,0,0,0,78,41,6,218,26,95,102,114,111,122,101,
|
||||||
110,100,32,95,105,109,112,32,105,115,32,110,101,101,100,101,
|
110,95,105,109,112,111,114,116,108,105,98,95,101,120,116,101,
|
||||||
100,32,116,111,32,108,111,97,100,32,98,117,105,108,116,45,
|
114,110,97,108,114,125,0,0,0,114,228,0,0,0,114,15,
|
||||||
105,110,10,32,32,32,32,109,111,100,117,108,101,115,44,32,
|
0,0,0,114,91,0,0,0,114,1,0,0,0,41,1,114,
|
||||||
116,104,111,115,101,32,116,119,111,32,109,111,100,117,108,101,
|
229,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
|
||||||
115,32,109,117,115,116,32,98,101,32,101,120,112,108,105,99,
|
0,0,0,218,27,95,105,110,115,116,97,108,108,95,101,120,
|
||||||
105,116,108,121,32,112,97,115,115,101,100,32,105,110,46,10,
|
116,101,114,110,97,108,95,105,109,112,111,114,116,101,114,115,
|
||||||
10,32,32,32,32,41,3,114,23,0,0,0,114,191,0,0,
|
151,4,0,0,115,6,0,0,0,0,3,8,1,4,1,114,
|
||||||
0,114,63,0,0,0,78,41,15,114,56,0,0,0,114,15,
|
230,0,0,0,41,2,78,78,41,1,78,41,2,78,114,22,
|
||||||
0,0,0,114,14,0,0,0,114,91,0,0,0,218,5,105,
|
0,0,0,41,4,78,78,114,10,0,0,0,114,22,0,0,
|
||||||
116,101,109,115,114,195,0,0,0,114,77,0,0,0,114,159,
|
0,41,50,114,3,0,0,0,114,125,0,0,0,114,12,0,
|
||||||
0,0,0,114,87,0,0,0,114,173,0,0,0,114,141,0,
|
0,0,114,18,0,0,0,114,58,0,0,0,114,33,0,0,
|
||||||
0,0,114,147,0,0,0,114,1,0,0,0,114,223,0,0,
|
0,114,42,0,0,0,114,19,0,0,0,114,20,0,0,0,
|
||||||
0,114,5,0,0,0,41,10,218,10,115,121,115,95,109,111,
|
114,48,0,0,0,114,49,0,0,0,114,52,0,0,0,114,
|
||||||
100,117,108,101,218,11,95,105,109,112,95,109,111,100,117,108,
|
64,0,0,0,114,66,0,0,0,114,75,0,0,0,114,85,
|
||||||
101,90,11,109,111,100,117,108,101,95,116,121,112,101,114,17,
|
0,0,0,114,89,0,0,0,114,96,0,0,0,114,110,0,
|
||||||
0,0,0,114,95,0,0,0,114,108,0,0,0,114,94,0,
|
0,0,114,111,0,0,0,114,90,0,0,0,114,141,0,0,
|
||||||
0,0,90,11,115,101,108,102,95,109,111,100,117,108,101,90,
|
0,114,147,0,0,0,114,151,0,0,0,114,106,0,0,0,
|
||||||
12,98,117,105,108,116,105,110,95,110,97,109,101,90,14,98,
|
114,92,0,0,0,114,157,0,0,0,114,158,0,0,0,114,
|
||||||
117,105,108,116,105,110,95,109,111,100,117,108,101,114,10,0,
|
93,0,0,0,114,159,0,0,0,114,173,0,0,0,114,178,
|
||||||
0,0,114,10,0,0,0,114,11,0,0,0,218,6,95,115,
|
0,0,0,114,187,0,0,0,114,189,0,0,0,114,194,0,
|
||||||
101,116,117,112,103,4,0,0,115,36,0,0,0,0,9,4,
|
0,0,114,200,0,0,0,90,15,95,69,82,82,95,77,83,
|
||||||
1,4,3,8,1,18,1,10,1,10,1,6,1,10,1,6,
|
71,95,80,82,69,70,73,88,114,202,0,0,0,114,205,0,
|
||||||
2,2,1,10,1,12,3,10,1,8,1,10,1,10,2,10,
|
0,0,218,6,111,98,106,101,99,116,114,206,0,0,0,114,
|
||||||
1,114,227,0,0,0,99,2,0,0,0,0,0,0,0,0,
|
207,0,0,0,114,208,0,0,0,114,213,0,0,0,114,219,
|
||||||
0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,
|
0,0,0,114,222,0,0,0,114,223,0,0,0,114,227,0,
|
||||||
38,0,0,0,116,0,124,0,124,1,131,2,1,0,116,1,
|
0,0,114,228,0,0,0,114,230,0,0,0,114,10,0,0,
|
||||||
106,2,160,3,116,4,161,1,1,0,116,1,106,2,160,3,
|
0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,
|
||||||
116,5,161,1,1,0,100,1,83,0,41,2,122,48,73,110,
|
218,8,60,109,111,100,117,108,101,62,1,0,0,0,115,94,
|
||||||
115,116,97,108,108,32,105,109,112,111,114,116,101,114,115,32,
|
0,0,0,4,24,4,2,8,8,8,8,4,2,4,3,16,
|
||||||
102,111,114,32,98,117,105,108,116,105,110,32,97,110,100,32,
|
4,14,68,14,21,14,16,8,37,8,17,8,11,14,8,8,
|
||||||
102,114,111,122,101,110,32,109,111,100,117,108,101,115,78,41,
|
11,8,12,8,16,8,36,14,101,16,26,10,45,14,72,8,
|
||||||
6,114,227,0,0,0,114,15,0,0,0,114,190,0,0,0,
|
17,8,17,8,30,8,37,8,42,8,15,14,75,14,79,14,
|
||||||
114,118,0,0,0,114,159,0,0,0,114,173,0,0,0,41,
|
13,8,9,8,9,10,47,8,16,4,1,8,2,8,32,6,
|
||||||
2,114,225,0,0,0,114,226,0,0,0,114,10,0,0,0,
|
3,8,16,10,15,14,37,8,27,10,37,8,7,8,35,8,
|
||||||
114,10,0,0,0,114,11,0,0,0,218,8,95,105,110,115,
|
8,
|
||||||
116,97,108,108,138,4,0,0,115,6,0,0,0,0,2,10,
|
|
||||||
2,12,1,114,228,0,0,0,99,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,1,0,0,0,4,0,0,0,67,0,0,
|
|
||||||
0,115,32,0,0,0,100,1,100,2,108,0,125,0,124,0,
|
|
||||||
97,1,124,0,160,2,116,3,106,4,116,5,25,0,161,1,
|
|
||||||
1,0,100,2,83,0,41,3,122,57,73,110,115,116,97,108,
|
|
||||||
108,32,105,109,112,111,114,116,101,114,115,32,116,104,97,116,
|
|
||||||
32,114,101,113,117,105,114,101,32,101,120,116,101,114,110,97,
|
|
||||||
108,32,102,105,108,101,115,121,115,116,101,109,32,97,99,99,
|
|
||||||
101,115,115,114,22,0,0,0,78,41,6,218,26,95,102,114,
|
|
||||||
111,122,101,110,95,105,109,112,111,114,116,108,105,98,95,101,
|
|
||||||
120,116,101,114,110,97,108,114,125,0,0,0,114,228,0,0,
|
|
||||||
0,114,15,0,0,0,114,91,0,0,0,114,1,0,0,0,
|
|
||||||
41,1,114,229,0,0,0,114,10,0,0,0,114,10,0,0,
|
|
||||||
0,114,11,0,0,0,218,27,95,105,110,115,116,97,108,108,
|
|
||||||
95,101,120,116,101,114,110,97,108,95,105,109,112,111,114,116,
|
|
||||||
101,114,115,146,4,0,0,115,6,0,0,0,0,3,8,1,
|
|
||||||
4,1,114,230,0,0,0,41,2,78,78,41,1,78,41,2,
|
|
||||||
78,114,22,0,0,0,41,4,78,78,114,10,0,0,0,114,
|
|
||||||
22,0,0,0,41,50,114,3,0,0,0,114,125,0,0,0,
|
|
||||||
114,12,0,0,0,114,18,0,0,0,114,58,0,0,0,114,
|
|
||||||
33,0,0,0,114,42,0,0,0,114,19,0,0,0,114,20,
|
|
||||||
0,0,0,114,48,0,0,0,114,49,0,0,0,114,52,0,
|
|
||||||
0,0,114,64,0,0,0,114,66,0,0,0,114,75,0,0,
|
|
||||||
0,114,85,0,0,0,114,89,0,0,0,114,96,0,0,0,
|
|
||||||
114,110,0,0,0,114,111,0,0,0,114,90,0,0,0,114,
|
|
||||||
141,0,0,0,114,147,0,0,0,114,151,0,0,0,114,106,
|
|
||||||
0,0,0,114,92,0,0,0,114,157,0,0,0,114,158,0,
|
|
||||||
0,0,114,93,0,0,0,114,159,0,0,0,114,173,0,0,
|
|
||||||
0,114,178,0,0,0,114,187,0,0,0,114,189,0,0,0,
|
|
||||||
114,194,0,0,0,114,200,0,0,0,90,15,95,69,82,82,
|
|
||||||
95,77,83,71,95,80,82,69,70,73,88,114,202,0,0,0,
|
|
||||||
114,205,0,0,0,218,6,111,98,106,101,99,116,114,206,0,
|
|
||||||
0,0,114,207,0,0,0,114,208,0,0,0,114,213,0,0,
|
|
||||||
0,114,219,0,0,0,114,222,0,0,0,114,223,0,0,0,
|
|
||||||
114,227,0,0,0,114,228,0,0,0,114,230,0,0,0,114,
|
|
||||||
10,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
|
|
||||||
0,0,0,218,8,60,109,111,100,117,108,101,62,1,0,0,
|
|
||||||
0,115,94,0,0,0,4,24,4,2,8,8,8,8,4,2,
|
|
||||||
4,3,16,4,14,68,14,21,14,16,8,37,8,17,8,11,
|
|
||||||
14,8,8,11,8,12,8,16,8,36,14,101,16,26,10,45,
|
|
||||||
14,72,8,17,8,17,8,30,8,37,8,42,8,15,14,75,
|
|
||||||
14,79,14,13,8,9,8,9,10,47,8,16,4,1,8,2,
|
|
||||||
8,27,6,3,8,16,10,15,14,37,8,27,10,37,8,7,
|
|
||||||
8,35,8,8,
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue