Advertisement
HugosOnTop

Obby But Your On A Bike SCRIPT

Oct 5th, 2023
1,903
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.75 KB | None | 0 0
  1. --[[
  2. .____ ________ ___. _____ __
  3. | | __ _______ \_____ \\_ |___/ ____\_ __ ______ ____ _____ _/ |_ ___________
  4. | | | | \__ \ / | \| __ \ __\ | \/ ___// ___\\__ \\ __\/ _ \_ __ \
  5. | |___| | // __ \_/ | \ \_\ \ | | | /\___ \\ \___ / __ \| | ( <_> ) | \/
  6. |_______ \____/(____ /\_______ /___ /__| |____//____ >\___ >____ /__| \____/|__|
  7. \/ \/ \/ \/ \/ \/ \/
  8. \_Welcome to LuaObfuscator.com (Alpha 0.9.16) ~ Much Love, Ferib
  9.  
  10. ]]--
  11.  
  12. local StrToNumber = tonumber;
  13. local Byte = string.byte;
  14. local Char = string.char;
  15. local Sub = string.sub;
  16. local Subg = string.gsub;
  17. local Rep = string.rep;
  18. local Concat = table.concat;
  19. local Insert = table.insert;
  20. local LDExp = math.ldexp;
  21. local GetFEnv = getfenv or function()
  22. return _ENV;
  23. end;
  24. local Setmetatable = setmetatable;
  25. local PCall = pcall;
  26. local Select = select;
  27. local Unpack = unpack or table.unpack;
  28. local ToNumber = tonumber;
  29. local function VMCall(ByteString, vmenv, ...)
  30. local DIP = 1;
  31. local repeatNext;
  32. ByteString = Subg(Sub(ByteString, 5), "..", function(byte)
  33. if (Byte(byte, 2) == 79) then
  34. repeatNext = StrToNumber(Sub(byte, 1, 1));
  35. return "";
  36. else
  37. local a = Char(StrToNumber(byte, 16));
  38. if repeatNext then
  39. local b = Rep(a, repeatNext);
  40. repeatNext = nil;
  41. return b;
  42. else
  43. return a;
  44. end
  45. end
  46. end);
  47. local function gBit(Bit, Start, End)
  48. if End then
  49. local Res = (Bit / (2 ^ (Start - 1))) % (2 ^ (((End - 1) - (Start - 1)) + 1));
  50. return Res - (Res % 1);
  51. else
  52. local Plc = 2 ^ (Start - 1);
  53. return (((Bit % (Plc + Plc)) >= Plc) and 1) or 0;
  54. end
  55. end
  56. local function gBits8()
  57. local a = Byte(ByteString, DIP, DIP);
  58. DIP = DIP + 1;
  59. return a;
  60. end
  61. local function gBits16()
  62. local a, b = Byte(ByteString, DIP, DIP + 2);
  63. DIP = DIP + 2;
  64. return (b * 256) + a;
  65. end
  66. local function gBits32()
  67. local a, b, c, d = Byte(ByteString, DIP, DIP + 3);
  68. DIP = DIP + 4;
  69. return (d * 16777216) + (c * 65536) + (b * 256) + a;
  70. end
  71. local function gFloat()
  72. local Left = gBits32();
  73. local Right = gBits32();
  74. local IsNormal = 1;
  75. local Mantissa = (gBit(Right, 1, 20) * (2 ^ 32)) + Left;
  76. local Exponent = gBit(Right, 21, 31);
  77. local Sign = ((gBit(Right, 32) == 1) and -1) or 1;
  78. if (Exponent == 0) then
  79. if (Mantissa == 0) then
  80. return Sign * 0;
  81. else
  82. Exponent = 1;
  83. IsNormal = 0;
  84. end
  85. elseif (Exponent == 2047) then
  86. return ((Mantissa == 0) and (Sign * (1 / 0))) or (Sign * NaN);
  87. end
  88. return LDExp(Sign, Exponent - 1023) * (IsNormal + (Mantissa / (2 ^ 52)));
  89. end
  90. local function gString(Len)
  91. local Str;
  92. if not Len then
  93. Len = gBits32();
  94. if (Len == 0) then
  95. return "";
  96. end
  97. end
  98. Str = Sub(ByteString, DIP, (DIP + Len) - 1);
  99. DIP = DIP + Len;
  100. local FStr = {};
  101. for Idx = 1, #Str do
  102. FStr[Idx] = Char(Byte(Sub(Str, Idx, Idx)));
  103. end
  104. return Concat(FStr);
  105. end
  106. local gInt = gBits32;
  107. local function _R(...)
  108. return {...}, Select("#", ...);
  109. end
  110. local function Deserialize()
  111. local Instrs = {};
  112. local Functions = {};
  113. local Lines = {};
  114. local Chunk = {Instrs,Functions,nil,Lines};
  115. local ConstCount = gBits32();
  116. local Consts = {};
  117. for Idx = 1, ConstCount do
  118. local Type = gBits8();
  119. local Cons;
  120. if (Type == 1) then
  121. Cons = gBits8() ~= 0;
  122. elseif (Type == 2) then
  123. Cons = gFloat();
  124. elseif (Type == 3) then
  125. Cons = gString();
  126. end
  127. Consts[Idx] = Cons;
  128. end
  129. Chunk[3] = gBits8();
  130. for Idx = 1, gBits32() do
  131. local Descriptor = gBits8();
  132. if (gBit(Descriptor, 1, 1) == 0) then
  133. local Type = gBit(Descriptor, 2, 3);
  134. local Mask = gBit(Descriptor, 4, 6);
  135. local Inst = {gBits16(),gBits16(),nil,nil};
  136. if (Type == 0) then
  137. Inst[3] = gBits16();
  138. Inst[4] = gBits16();
  139. elseif (Type == 1) then
  140. Inst[3] = gBits32();
  141. elseif (Type == 2) then
  142. Inst[3] = gBits32() - (2 ^ 16);
  143. elseif (Type == 3) then
  144. Inst[3] = gBits32() - (2 ^ 16);
  145. Inst[4] = gBits16();
  146. end
  147. if (gBit(Mask, 1, 1) == 1) then
  148. Inst[2] = Consts[Inst[2]];
  149. end
  150. if (gBit(Mask, 2, 2) == 1) then
  151. Inst[3] = Consts[Inst[3]];
  152. end
  153. if (gBit(Mask, 3, 3) == 1) then
  154. Inst[4] = Consts[Inst[4]];
  155. end
  156. Instrs[Idx] = Inst;
  157. end
  158. end
  159. for Idx = 1, gBits32() do
  160. Functions[Idx - 1] = Deserialize();
  161. end
  162. return Chunk;
  163. end
  164. local function Wrap(Chunk, Upvalues, Env)
  165. local Instr = Chunk[1];
  166. local Proto = Chunk[2];
  167. local Params = Chunk[3];
  168. return function(...)
  169. local Instr = Instr;
  170. local Proto = Proto;
  171. local Params = Params;
  172. local _R = _R;
  173. local VIP = 1;
  174. local Top = -1;
  175. local Vararg = {};
  176. local Args = {...};
  177. local PCount = Select("#", ...) - 1;
  178. local Lupvals = {};
  179. local Stk = {};
  180. for Idx = 0, PCount do
  181. if (Idx >= Params) then
  182. Vararg[Idx - Params] = Args[Idx + 1];
  183. else
  184. Stk[Idx] = Args[Idx + 1];
  185. end
  186. end
  187. local Varargsz = (PCount - Params) + 1;
  188. local Inst;
  189. local Enum;
  190. while true do
  191. Inst = Instr[VIP];
  192. Enum = Inst[1];
  193. if (Enum <= 25) then
  194. if (Enum <= 12) then
  195. if (Enum <= 5) then
  196. if (Enum <= 2) then
  197. if (Enum <= 0) then
  198. Env[Inst[3]] = Stk[Inst[2]];
  199. elseif (Enum > 1) then
  200. local A = Inst[2];
  201. Stk[A](Stk[A + 1]);
  202. else
  203. Stk[Inst[2]] = Stk[Inst[3]][Inst[4]];
  204. end
  205. elseif (Enum <= 3) then
  206. Stk[Inst[2]] = not Stk[Inst[3]];
  207. elseif (Enum > 4) then
  208. do
  209. return;
  210. end
  211. else
  212. do
  213. return;
  214. end
  215. end
  216. elseif (Enum <= 8) then
  217. if (Enum <= 6) then
  218. Stk[Inst[2]] = Upvalues[Inst[3]];
  219. elseif (Enum > 7) then
  220. Stk[Inst[2]] = Wrap(Proto[Inst[3]], nil, Env);
  221. else
  222. local A = Inst[2];
  223. Stk[A](Unpack(Stk, A + 1, Inst[3]));
  224. end
  225. elseif (Enum <= 10) then
  226. if (Enum > 9) then
  227. Stk[Inst[2]] = Wrap(Proto[Inst[3]], nil, Env);
  228. else
  229. Stk[Inst[2]][Inst[3]] = Stk[Inst[4]];
  230. end
  231. elseif (Enum > 11) then
  232. Stk[Inst[2]] = Inst[3] ~= 0;
  233. elseif Stk[Inst[2]] then
  234. VIP = VIP + 1;
  235. else
  236. VIP = Inst[3];
  237. end
  238. elseif (Enum <= 18) then
  239. if (Enum <= 15) then
  240. if (Enum <= 13) then
  241. Stk[Inst[2]] = Stk[Inst[3]];
  242. elseif (Enum == 14) then
  243. Stk[Inst[2]][Inst[3]] = Inst[4];
  244. else
  245. local A = Inst[2];
  246. local Results, Limit = _R(Stk[A](Stk[A + 1]));
  247. Top = (Limit + A) - 1;
  248. local Edx = 0;
  249. for Idx = A, Top do
  250. Edx = Edx + 1;
  251. Stk[Idx] = Results[Edx];
  252. end
  253. end
  254. elseif (Enum <= 16) then
  255. Stk[Inst[2]] = Stk[Inst[3]];
  256. elseif (Enum == 17) then
  257. Stk[Inst[2]] = Inst[3] ~= 0;
  258. else
  259. local NewProto = Proto[Inst[3]];
  260. local NewUvals;
  261. local Indexes = {};
  262. NewUvals = Setmetatable({}, {__index=function(_, Key)
  263. local Val = Indexes[Key];
  264. return Val[1][Val[2]];
  265. end,__newindex=function(_, Key, Value)
  266. local Val = Indexes[Key];
  267. Val[1][Val[2]] = Value;
  268. end});
  269. for Idx = 1, Inst[4] do
  270. VIP = VIP + 1;
  271. local Mvm = Instr[VIP];
  272. if (Mvm[1] == 16) then
  273. Indexes[Idx - 1] = {Stk,Mvm[3]};
  274. else
  275. Indexes[Idx - 1] = {Upvalues,Mvm[3]};
  276. end
  277. Lupvals[#Lupvals + 1] = Indexes;
  278. end
  279. Stk[Inst[2]] = Wrap(NewProto, NewUvals, Env);
  280. end
  281. elseif (Enum <= 21) then
  282. if (Enum <= 19) then
  283. local NewProto = Proto[Inst[3]];
  284. local NewUvals;
  285. local Indexes = {};
  286. NewUvals = Setmetatable({}, {__index=function(_, Key)
  287. local Val = Indexes[Key];
  288. return Val[1][Val[2]];
  289. end,__newindex=function(_, Key, Value)
  290. local Val = Indexes[Key];
  291. Val[1][Val[2]] = Value;
  292. end});
  293. for Idx = 1, Inst[4] do
  294. VIP = VIP + 1;
  295. local Mvm = Instr[VIP];
  296. if (Mvm[1] == 16) then
  297. Indexes[Idx - 1] = {Stk,Mvm[3]};
  298. else
  299. Indexes[Idx - 1] = {Upvalues,Mvm[3]};
  300. end
  301. Lupvals[#Lupvals + 1] = Indexes;
  302. end
  303. Stk[Inst[2]] = Wrap(NewProto, NewUvals, Env);
  304. elseif (Enum == 20) then
  305. Upvalues[Inst[3]] = Stk[Inst[2]];
  306. else
  307. Stk[Inst[2]] = {};
  308. end
  309. elseif (Enum <= 23) then
  310. if (Enum > 22) then
  311. local A = Inst[2];
  312. local B = Stk[Inst[3]];
  313. Stk[A + 1] = B;
  314. Stk[A] = B[Inst[4]];
  315. else
  316. local A = Inst[2];
  317. Stk[A](Unpack(Stk, A + 1, Inst[3]));
  318. end
  319. elseif (Enum == 24) then
  320. local A = Inst[2];
  321. local Cls = {};
  322. for Idx = 1, #Lupvals do
  323. local List = Lupvals[Idx];
  324. for Idz = 0, #List do
  325. local Upv = List[Idz];
  326. local NStk = Upv[1];
  327. local DIP = Upv[2];
  328. if ((NStk == Stk) and (DIP >= A)) then
  329. Cls[DIP] = NStk[DIP];
  330. Upv[1] = Cls;
  331. end
  332. end
  333. end
  334. elseif (Stk[Inst[2]] == Inst[4]) then
  335. VIP = VIP + 1;
  336. else
  337. VIP = Inst[3];
  338. end
  339. elseif (Enum <= 38) then
  340. if (Enum <= 31) then
  341. if (Enum <= 28) then
  342. if (Enum <= 26) then
  343. local A = Inst[2];
  344. Stk[A] = Stk[A](Unpack(Stk, A + 1, Inst[3]));
  345. elseif (Enum > 27) then
  346. local A = Inst[2];
  347. local B = Stk[Inst[3]];
  348. Stk[A + 1] = B;
  349. Stk[A] = B[Inst[4]];
  350. else
  351. Stk[Inst[2]] = Stk[Inst[3]][Inst[4]];
  352. end
  353. elseif (Enum <= 29) then
  354. VIP = Inst[3];
  355. elseif (Enum == 30) then
  356. Stk[Inst[2]] = Inst[3];
  357. else
  358. local A = Inst[2];
  359. local Cls = {};
  360. for Idx = 1, #Lupvals do
  361. local List = Lupvals[Idx];
  362. for Idz = 0, #List do
  363. local Upv = List[Idz];
  364. local NStk = Upv[1];
  365. local DIP = Upv[2];
  366. if ((NStk == Stk) and (DIP >= A)) then
  367. Cls[DIP] = NStk[DIP];
  368. Upv[1] = Cls;
  369. end
  370. end
  371. end
  372. end
  373. elseif (Enum <= 34) then
  374. if (Enum <= 32) then
  375. local A = Inst[2];
  376. Stk[A] = Stk[A](Stk[A + 1]);
  377. elseif (Enum == 33) then
  378. local A = Inst[2];
  379. Stk[A] = Stk[A](Unpack(Stk, A + 1, Inst[3]));
  380. else
  381. local A = Inst[2];
  382. Stk[A](Unpack(Stk, A + 1, Top));
  383. end
  384. elseif (Enum <= 36) then
  385. if (Enum > 35) then
  386. Upvalues[Inst[3]] = Stk[Inst[2]];
  387. else
  388. Stk[Inst[2]] = Env[Inst[3]];
  389. end
  390. elseif (Enum > 37) then
  391. local A = Inst[2];
  392. Stk[A](Stk[A + 1]);
  393. else
  394. Env[Inst[3]] = Stk[Inst[2]];
  395. end
  396. elseif (Enum <= 44) then
  397. if (Enum <= 41) then
  398. if (Enum <= 39) then
  399. VIP = Inst[3];
  400. elseif (Enum > 40) then
  401. if (Stk[Inst[2]] == Inst[4]) then
  402. VIP = VIP + 1;
  403. else
  404. VIP = Inst[3];
  405. end
  406. else
  407. Stk[Inst[2]] = not Stk[Inst[3]];
  408. end
  409. elseif (Enum <= 42) then
  410. if Stk[Inst[2]] then
  411. VIP = VIP + 1;
  412. else
  413. VIP = Inst[3];
  414. end
  415. elseif (Enum > 43) then
  416. local A = Inst[2];
  417. local Results, Limit = _R(Stk[A](Stk[A + 1]));
  418. Top = (Limit + A) - 1;
  419. local Edx = 0;
  420. for Idx = A, Top do
  421. Edx = Edx + 1;
  422. Stk[Idx] = Results[Edx];
  423. end
  424. else
  425. Stk[Inst[2]] = Env[Inst[3]];
  426. end
  427. elseif (Enum <= 47) then
  428. if (Enum <= 45) then
  429. Stk[Inst[2]] = Upvalues[Inst[3]];
  430. elseif (Enum > 46) then
  431. local A = Inst[2];
  432. Stk[A] = Stk[A](Stk[A + 1]);
  433. else
  434. Stk[Inst[2]] = Inst[3];
  435. end
  436. elseif (Enum <= 49) then
  437. if (Enum > 48) then
  438. Stk[Inst[2]][Inst[3]] = Stk[Inst[4]];
  439. else
  440. Stk[Inst[2]][Inst[3]] = Inst[4];
  441. end
  442. elseif (Enum > 50) then
  443. local A = Inst[2];
  444. Stk[A](Unpack(Stk, A + 1, Top));
  445. else
  446. Stk[Inst[2]] = {};
  447. end
  448. VIP = VIP + 1;
  449. end
  450. end;
  451. end
  452. return Wrap(Deserialize(), {}, vmenv)(...);
  453. end
  454. VMCall("LOL!5A3O0003083O00496E7374616E63652O033O006E657703093O005363722O656E47756903043O004E616D65030E3O004F2O627942757442696B6547756903063O00506172656E7403043O0067616D6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O00506C61796572477569030C3O0052657365744F6E537061776E010003053O004672616D6503083O00506F736974696F6E03053O005544696D3202C1CAA145B6F3CD3F028O0002B6F3FDD478E9C63F03043O0053697A65025O00C88240025O00F0744003103O004261636B67726F756E64436F6C6F723303063O00436F6C6F723303073O0066726F6D524742026O004D4003093O004472612O6761626C652O01030A3O0053656C65637461626C6503063O0041637469766503083O005549436F726E6572030A3O005465787442752O746F6E030B3O004769766542696B6562746E029CC420B07268913F02448B6CE7FBA9C13F025O00206440026O004640030A3O00546578745363616C656403043O00466F6E7403043O00456E756D03053O00417269616C03083O00466F6E744661636503043O00426F6C6403043O005465787403093O005069636B2062696B65026O003940030A3O0054657874436F6C6F7233025O00E06F4003073O0054657874426F7803083O00476976655465787402DBF97E6ABC74D33F026O004A40025O00A06740025O00406540025O00C06540034O00030F3O00506C616365686F6C6465725465787403043O00312D3230027D3F355EBA49D43F032B3O00574F524C4420322054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402643BDF4F8D97DE3F032B3O00574F524C4420312054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402FA7E6ABC7493E43F032B3O00574F524C4420332054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402EE7C3F355EBAE93F032B3O00574F524C4420342054656C65706F727420746F20656E6420425950412O53455320414E5449204348454154027F6ABC749318DC3F032B3O00574F524C4420352054656C65706F727420746F20656E6420425950412O53455320414E544920434845415403083O0054656C6554696D6503113O0054696D6520466F722054656C65706F727402DD2406819543E73F030D3O004C2O6F7054656C65706F727435031A3O004C2O6F702054656C65706F727420574F524C442035204F4E4C5903093O00546578744C6162656C025O00804540030A3O004C2O6F7035436F6C6F72025O00406F4003113O004D6F75736542752O746F6E31436C69636B03073O00436F2O6E65637403093O006C6F636174696F6E3103073O00566563746F7233023O00E003C05A40025O00C07240023O00E07CCCD5C0030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F026O000840030B3O00456173696E675374796C6503063O004C696E656172030F3O00627970612O735F74656C65706F7274009D023O00117O001223000100013O00201B00010001000200121E000200034O002F000100020002002O30000100040005001223000200073O00201B00020002000800201B00020002000900201B00020002000A001009000100060002002O300001000B000C001223000200013O00201B00020002000200121E0003000D4O002F0002000200020010090002000600010012230003000F3O00201B00030003000200121E000400103O00121E000500113O00121E000600123O00121E000700114O001A0003000700020010090002000E00030012230003000F3O00201B00030003000200121E000400113O00121E000500143O00121E000600113O00121E000700154O001A000300070002001009000200130003001223000300173O00201B00030003001800121E000400193O00121E000500193O00121E000600194O001A000300060002001009000200160003002O300002001A001B002O300002001C001B002O300002001D001B001223000300013O00201B00030003000200121E0004001E4O002F000300020002001009000300060002001223000400013O00201B00040004000200121E0005001F4O000D000600024O001A000400060002002O300004000400200012230005000F3O00201B00050005000200121E000600213O00121E000700113O00121E000800223O00121E000900114O001A0005000900020010090004000E00050012230005000F3O00201B00050005000200121E000600113O00121E000700233O00121E000800113O00121E000900244O001A000500090002001009000400130005002O3000040025001B001223000500273O00201B00050005002600201B00050005002800100900040026000500201B000500040029002O300005002A001B002O300004002B002C001223000500173O00201B00050005001800121E0006002D3O00121E0007002D3O00121E0008002D4O001A000500080002001009000400160005001223000500173O00201B00050005001800121E0006002F3O00121E0007002F3O00121E0008002F4O001A0005000800020010090004002E0005001223000500013O00201B00050005000200121E000600304O000D000700024O001A000500070002002O300005000400310012230006000F3O00201B00060006000200121E000700323O00121E000800113O00121E000900223O00121E000A00114O001A0006000A00020010090005000E00060012230006000F3O00201B00060006000200121E000700113O00121E000800333O00121E000900113O00121E000A00244O001A0006000A0002001009000500130006002O3000050025001B001223000600173O00201B00060006001800121E000700343O00121E000800353O00121E000900364O001A0006000900020010090005002E0006002O300005002B0037002O3000050038003900201B000600050029002O300006002A001B001223000600273O00201B00060006002600201B000600060028001009000500260006001223000600013O00201B00060006000200121E0007001F4O000D000800024O001A0006000800020012230007000F3O00201B00070007000200121E000800213O00121E000900113O00121E000A003A3O00121E000B00114O001A0007000B00020010090006000E00070012230007000F3O00201B00070007000200121E000800113O00121E000900233O00121E000A00113O00121E000B00244O001A0007000B0002001009000600130007002O3000060025001B001223000700273O00201B00070007002600201B00070007002800100900060026000700201B000700060029002O300007002A001B002O300006002B003B001223000700173O00201B00070007001800121E0008002D3O00121E0009002D3O00121E000A002D4O001A0007000A0002001009000600160007001223000700173O00201B00070007001800121E0008002F3O00121E0009002F3O00121E000A002F4O001A0007000A00020010090006002E0007001223000700013O00201B00070007000200121E0008001F4O000D000900024O001A0007000900020012230008000F3O00201B00080008000200121E000900213O00121E000A00113O00121E000B003C3O00121E000C00114O001A0008000C00020010090007000E00080012230008000F3O00201B00080008000200121E000900113O00121E000A00233O00121E000B00113O00121E000C00244O001A0008000C0002001009000700130008002O3000070025001B001223000800273O00201B00080008002600201B00080008002800100900070026000800201B000800070029002O300008002A001B002O300007002B003D001223000800173O00201B00080008001800121E0009002D3O00121E000A002D3O00121E000B002D4O001A0008000B0002001009000700160008001223000800173O00201B00080008001800121E0009002F3O00121E000A002F3O00121E000B002F4O001A0008000B00020010090007002E0008001223000800013O00201B00080008000200121E0009001F4O000D000A00024O001A0008000A00020012230009000F3O00201B00090009000200121E000A00213O00121E000B00113O00121E000C003E3O00121E000D00114O001A0009000D00020010090008000E00090012230009000F3O00201B00090009000200121E000A00113O00121E000B00233O00121E000C00113O00121E000D00244O001A0009000D0002001009000800130009002O3000080025001B001223000900273O00201B00090009002600201B00090009002800100900080026000900201B000900080029002O300009002A001B002O300008002B003F001223000900173O00201B00090009001800121E000A002D3O00121E000B002D3O00121E000C002D4O001A0009000C0002001009000800160009001223000900173O00201B00090009001800121E000A002F3O00121E000B002F3O00121E000C002F4O001A0009000C00020010090008002E0009001223000900013O00201B00090009000200121E000A001F4O000D000B00024O001A0009000B0002001223000A000F3O00201B000A000A000200121E000B00213O00121E000C00113O00121E000D00403O00121E000E00114O001A000A000E00020010090009000E000A001223000A000F3O00201B000A000A000200121E000B00113O00121E000C00233O00121E000D00113O00121E000E00244O001A000A000E000200100900090013000A002O3000090025001B001223000A00273O00201B000A000A002600201B000A000A002800100900090026000A00201B000A00090029002O30000A002A001B002O300009002B0041001223000A00173O00201B000A000A001800121E000B002D3O00121E000C002D3O00121E000D002D4O001A000A000D000200100900090016000A001223000A00173O00201B000A000A001800121E000B002F3O00121E000C002F3O00121E000D002F4O001A000A000D00020010090009002E000A001223000A00013O00201B000A000A000200121E000B001F4O000D000C00024O001A000A000C0002001223000B000F3O00201B000B000B000200121E000C00423O00121E000D00113O00121E000E00223O00121E000F00114O001A000B000F0002001009000A000E000B001223000B000F3O00201B000B000B000200121E000C00113O00121E000D00233O00121E000E00113O00121E000F00244O001A000B000F0002001009000A0013000B002O30000A0025001B001223000B00273O00201B000B000B002600201B000B000B0028001009000A0026000B00201B000B000A0029002O30000B002A001B002O30000A002B0043001223000B00173O00201B000B000B001800121E000C002D3O00121E000D002D3O00121E000E002D4O001A000B000E0002001009000A0016000B001223000B00173O00201B000B000B001800121E000C002F3O00121E000D002F3O00121E000E002F4O001A000B000E0002001009000A002E000B001223000B00013O00201B000B000B000200121E000C00304O000D000D00024O001A000B000D0002002O30000B00040044001223000C000F3O00201B000C000C000200121E000D00323O00121E000E00113O00121E000F003A3O00121E001000114O001A000C00100002001009000B000E000C001223000C000F3O00201B000C000C000200121E000D00113O00121E000E00333O00121E000F00113O00121E001000244O001A000C00100002001009000B0013000C002O30000B0025001B001223000C00173O00201B000C000C001800121E000D00343O00121E000E00353O00121E000F00364O001A000C000F0002001009000B002E000C002O30000B002B0037002O30000B0038004500201B000C000B0029002O30000C002A001B001223000C00273O00201B000C000C002600201B000C000C0028001009000B0026000C001223000C00013O00201B000C000C000200121E000D00304O000D000E00024O001A000C000E0002002O30000C00040044001223000D000F3O00201B000D000D000200121E000E00323O00121E000F00113O00121E0010003C3O00121E001100114O001A000D00110002001009000C000E000D001223000D000F3O00201B000D000D000200121E000E00113O00121E000F00333O00121E001000113O00121E001100244O001A000D00110002001009000C0013000D002O30000C0025001B001223000D00173O00201B000D000D001800121E000E00343O00121E000F00353O00121E001000364O001A000D00100002001009000C002E000D002O30000C002B0037002O30000C0038004500201B000D000C0029002O30000D002A001B001223000D00273O00201B000D000D002600201B000D000D0028001009000C0026000D001223000D00013O00201B000D000D000200121E000E00304O000D000F00024O001A000D000F0002002O30000D00040044001223000E000F3O00201B000E000E000200121E000F00323O00121E001000113O00121E0011003E3O00121E001200114O001A000E00120002001009000D000E000E001223000E000F3O00201B000E000E000200121E000F00113O00121E001000333O00121E001100113O00121E001200244O001A000E00120002001009000D0013000E002O30000D0025001B001223000E00173O00201B000E000E001800121E000F00343O00121E001000353O00121E001100364O001A000E00110002001009000D002E000E002O30000D002B0037002O30000D0038004500201B000E000D0029002O30000E002A001B001223000E00273O00201B000E000E002600201B000E000E0028001009000D0026000E001223000E00013O00201B000E000E000200121E000F00304O000D001000024O001A000E00100002002O30000E00040044001223000F000F3O00201B000F000F000200121E001000323O00121E001100113O00121E001200403O00121E001300114O001A000F00130002001009000E000E000F001223000F000F3O00201B000F000F000200121E001000113O00121E001100333O00121E001200113O00121E001300244O001A000F00130002001009000E0013000F002O30000E0025001B001223000F00173O00201B000F000F001800121E001000343O00121E001100353O00121E001200364O001A000F00120002001009000E002E000F002O30000E002B0037002O30000E0038004500201B000F000E0029002O30000F002A001B001223000F00273O00201B000F000F002600201B000F000F0028001009000E0026000F001223000F00013O00201B000F000F000200121E001000304O000D001100024O001A000F00110002002O30000F000400440012230010000F3O00201B00100010000200121E001100463O00121E001200113O00121E001300223O00121E001400114O001A001000140002001009000F000E00100012230010000F3O00201B00100010000200121E001100113O00121E001200333O00121E001300113O00121E001400244O001A001000140002001009000F00130010002O30000F0025001B001223001000173O00201B00100010001800121E001100343O00121E001200353O00121E001300364O001A001000130002001009000F002E0010002O30000F002B0037002O30000F0038004500201B0010000F0029002O300010002A001B001223001000273O00201B00100010002600201B001000100028001009000F00260010001223001000013O00201B00100010000200121E0011001F4O000D001200024O001A001000120002002O300010000400470012230011000F3O00201B00110011000200121E001200423O00121E001300113O00121E0014003A3O00121E001500114O001A0011001500020010090010000E00110012230011000F3O00201B00110011000200121E001200113O00121E001300333O00121E001400113O00121E001500244O001A001100150002001009001000130011002O3000100025001B001223001100173O00201B00110011001800121E001200343O00121E001300353O00121E001400364O001A0011001400020010090010002E0011002O300010002B004800201B001100100029002O300011002A001B001223001100273O00201B00110011002600201B001100110028001009001000260011001223001100013O00201B00110011000200121E001200494O000D001300024O001A0011001300020012230012000F3O00201B00120012000200121E001300463O00121E001400113O00121E0015003A3O00121E001600114O001A0012001600020010090011000E00120012230012000F3O00201B00120012000200121E001300113O00121E001400333O00121E001500113O00121E0016004A4O001A001200160002001009001100130012002O3000110004004B001223001200173O00201B00120012001800121E0013004C3O00121E001400113O00121E001500114O001A00120015000200100900110016001200201B00120004004D00201C00120012004E00061200143O000100012O00103O00054O001600120014000100201B00120006004D00201C00120012004E00061200140001000100012O00103O000B4O001600120014000100201B00120007004D00201C00120012004E00061200140002000100012O00103O000C4O001600120014000100201B00120008004D00201C00120012004E00061200140003000100012O00103O000D4O001600120014000100201B00120009004D00201C00120012004E00061200140004000100012O00103O000E4O001600120014000100201B0012000A004D00201C00120012004E00061200140005000100012O00103O000F4O00160012001400012O001100126O001500133O0001001223001400503O00201B00140014000200121E001500513O00121E001600523O00121E001700534O001A0014001700020010090013004F0014001223001400073O00201C00140014005400121E001600554O001A001400160002001223001500563O00201B00150015000200121E001600573O001223001700273O00201B00170017005800201B0017001700592O001A001500170002001223001600073O00201B00160016000800201B00160016000900061200170006000100032O00103O00164O00103O00144O00103O00153O00122O0017005A4O001100175O00201B00180010004D00201C00180018004E000612001A0007000100042O00103O00124O00103O00114O00103O00174O00103O00134O00160018001A00012O00053O00013O00083O00103O0003043O005465787403083O00746F6E756D62657203053O007072696E74026O00F03F03083O0042696B6554797065027O004003043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F72616765030C3O0057616974466F724368696C64030C3O0052656D6F74654576656E7473030B3O005075626C69736842696B65030A3O004669726553657276657203063O00756E7061636B030B3O005265706F72744465617468031B3O00496E76616C696420696E7075742C206E6F742061206E756D626572002D4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002900013O0004273O00290001001223000200034O000D000300014O00260002000200012O001500023O0002002O30000200040005001009000200060001001223000300073O00201C00030003000800121E000500094O001A00030005000200201C00030003000A00121E0005000B4O001A00030005000200201C00030003000A00121E0005000C4O001A00030005000200201C00030003000D0012230005000E4O000D000600024O002C000500064O003300033O0001001223000300073O00201C00030003000800121E000500094O001A00030005000200201C00030003000A00121E0005000B4O001A00030005000200201C00030003000A00121E0005000F4O001A00030005000200201C00030003000D2O00260003000200010004273O002C0001001223000200033O00121E000300104O00260002000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00A034805A40025O00307F4002E5EFFFDFF59FCAC003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E003C05A40025O00307F40024O004079D4C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00208B245B40025O00307F40023O00E086E7D1C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E0E8785A40025O00208C40023O00C08E49CDC003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E003C05A40025O00C07240023O00E07CCCD5C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00103O0003103O004261636B67726F756E64436F6C6F723303063O00436F6C6F723303073O0066726F6D524742028O00025O00E06F40030F3O00627970612O735F74656C65706F727403093O006C6F636174696F6E3103043O0067616D6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O0043686172616374657203103O0048756D616E6F6964522O6F745061727403073O00546F756368656403073O00436F2O6E65637403043O0077616974026O003E4000314O00068O00038O00248O00067O00062A3O002600013O0004273O002600012O00063O00013O001223000100023O00201B00010001000300121E000200043O00121E000300053O00121E000400044O001A0001000400020010093O000100012O00113O00014O00243O00024O00063O00023O00062A3O003000013O0004273O003000010012233O00064O0006000100033O00201B0001000100072O00263O000200010002087O001223000100083O00201B00010001000900201B00010001000A00201B00020001000B00201B00020002000C00201B00020002000D00201C00020002000E2O000D00046O00160002000400010012230002000F3O00121E000300104O00260002000200010004273O001000010004273O003000012O00063O00013O001223000100023O00201B00010001000300121E000200053O00121E000300043O00121E000400044O001A0001000400020010093O000100012O00118O00243O00024O00053O00013O00013O000C3O0003063O00506172656E7403043O004E616D6503023O00373003043O007461736B03043O0077616974026O00F03F03043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F72616765030C3O0052656D6F74654576656E7473030B3O005265706F72745265736574030A3O004669726553657276657201183O00201B00013O000100062A0001001700013O0004273O0017000100201B00013O000100201B00010001000200261900010017000100030004273O00170001001223000100043O00201B00010001000500121E000200064O0026000100020001001223000100073O00201C00010001000800121E000300094O001A00010003000200201B00010001000A00201B00010001000B00201C00010001000C2O0026000100020001001223000100043O00201B00010001000500121E000200064O00260001000200012O00053O00017O00", GetFEnv(), ...);
  455.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement