-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZenX
2662 lines (2659 loc) · 394 KB
/
ZenX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[
______ __ __ _ _ _ ____ _ _ _______ ____ _____ ____ _ _ _____
|___ / \ \ / / | | | | | | / __ \| \ | |__ __/ __ \| __ \ / __ \| \ | |/ ____|
/ / ___ _ __ \ V / | |__| |_ _| |__ | | | | \| | | | | | | | |__) | | | | | \| | | __
/ / / _ \ '_ \ > < | __ | | | | '_ \ | | | | . ` | | | | | | | ___/ | | | | . ` | | |_ |
/ /_| __/ | | |/ . \ | | | | |_| | |_) | | |__| | |\ | | | | |__| | | | |__| | |\ | |__| |
/_____\___|_| |_/_/ \_\ |_| |_|\__,_|_.__/ \____/|_| \_| |_| \____/|_| \____/|_| \_|\_____|
ty to the devs which are 8.#9308&poof#8110
]]--
do
local v0 = 0;
local v1;
local v2;
local v3;
local v4;
local v5;
local v6;
local v7;
local v8;
local v9;
local v10;
local v11;
local v12;
local v13;
local v14;
local v15;
local v16;
local v17;
local v18;
local v19;
local v20;
local v21;
local v22;
local v23;
local v24;
while true do
if (v0 == 4) then
v12 = string[v8("\84\14\112", "\39\123\18\50\153")];
v13 = string[v8("\124\5\55\18", "\27\118\66\112\42\70\98")];
v14 = string[v8("\249\0\250", "\139\101\138\120\62\30\114")];
v0 = 5;
end
if (v0 == 3) then
v9 = tonumber;
v10 = string[v8("\212\194\64\223", "\182\187\52\186\86")];
v11 = string[v8("\174\123\213\68", "\205\19\180\54\150\21\171\235")];
v0 = 4;
end
if (v0 == 7) then
v21 = select;
v22 = unpack or table[v8("\254\75\201\56\232\78", "\139\37\185\89")];
v23 = tonumber;
v0 = 8;
end
if (v0 == 8) then
v24 = nil;
v24 = function(v30, v31, ...)
local v43 = 0;
local v44;
local v45;
local v46;
local v47;
local v48;
local v49;
local v50;
local v51;
local v52;
local v53;
local v54;
local v55;
local v56;
while true do
if (0 == v43) then
v44 = 0;
v45 = nil;
v46 = nil;
v47 = nil;
v43 = 1;
end
if (2 == v43) then
v52 = nil;
v53 = nil;
v54 = nil;
v55 = nil;
v43 = 3;
end
if (v43 == 3) then
v56 = nil;
while true do
local v59 = 0;
while true do
if (v59 == 2) then
if (5 == v44) then
local v61 = 0;
while true do
if (0 == v61) then
v53 = v50;
v54 = nil;
v61 = 1;
end
if (v61 == 1) then
v54 = function(...)
return {...}, v21("#", ...);
end;
v44 = 6;
break;
end
end
end
if (6 == v44) then
local v62 = 0;
while true do
if (v62 == 1) then
v56 = nil;
v44 = 7;
break;
end
if (v62 == 0) then
v55 = nil;
v55 = function()
local v77 = 0;
local v78;
local v79;
local v80;
local v81;
local v82;
local v83;
local v84;
while true do
if (v77 == 2) then
v82 = nil;
v83 = nil;
v77 = 3;
end
if (v77 == 1) then
v80 = nil;
v81 = nil;
v77 = 2;
end
if (v77 == 0) then
v78 = 0;
v79 = nil;
v77 = 1;
end
if (v77 == 3) then
v84 = nil;
while true do
local v126 = 0;
while true do
if (v126 == 1) then
if (v78 == 1) then
local v136 = 0;
while true do
if (v136 == 0) then
v82 = {v79,v80,nil,v81};
v83 = v50();
v136 = 1;
end
if (v136 == 1) then
v84 = {};
v78 = 2;
break;
end
end
end
if (v78 == 0) then
local v137 = 0;
while true do
if (v137 == 0) then
v79 = {};
v80 = {};
v137 = 1;
end
if (v137 == 1) then
v81 = {};
v78 = 1;
break;
end
end
end
break;
end
if (v126 == 0) then
if (v78 == 3) then
local v138 = 0;
while true do
if (0 == v138) then
for v159 = 292 - (110 + 181), v50() do
v80[v159 - 1] = v55();
end
for v161 = 1, v50() do
v81[v161] = v50();
end
v138 = 1;
end
if (1 == v138) then
return v82;
end
end
end
if (v78 == 2) then
local v139 = 0;
while true do
if (v139 == 0) then
for v163 = 1, v83 do
local v164 = 0;
local v165;
local v166;
local v167;
while true do
if (v164 == 1) then
v167 = nil;
while true do
if (v165 == 0) then
local v186 = 0;
while true do
if (v186 == 1) then
v165 = 1;
break;
end
if (v186 == 0) then
v166 = v48();
v167 = nil;
v186 = 1;
end
end
end
if (v165 == 1) then
if (v166 == 1) then
v167 = v48() ~= (0 - (0 + 0));
elseif (v166 == 2) then
v167 = v51();
elseif (v166 == ((1112 + 400) - ((344 - 156) + (2502 - 1181)))) then
v167 = v52();
end
v84[v163] = v167;
break;
end
end
break;
end
if (v164 == 0) then
v165 = 0;
v166 = nil;
v164 = 1;
end
end
end
v82[3] = v48();
v139 = 1;
end
if (v139 == 1) then
for v168 = 2 - (1 - 0), v50() do
local v169 = 0;
local v170;
local v171;
while true do
if (v169 == 1) then
while true do
if (v170 == 0) then
v171 = v48();
if (v47(v171, 1, (1 - 0) + 0 + 0) == ((1322 - (43 + 1279)) - 0)) then
local v192 = 0;
local v193;
local v194;
local v195;
local v196;
while true do
if (v192 == 2) then
while true do
if (v193 == 2) then
local v211 = 0;
while true do
if (v211 == 0) then
if (v47(v195, 1 + 0, 1 - 0) == 1) then
v196[2 + 0] = v84[v196[2]];
end
if (v47(v195, 1 + (3 - 2), 2 + 0) == 1) then
v196[7 - 4] = v84[v196[3]];
end
v211 = 1;
end
if (v211 == 1) then
v193 = 3;
break;
end
end
end
if (v193 == 1) then
local v212 = 0;
while true do
if (v212 == 1) then
v193 = 2;
break;
end
if (v212 == 0) then
v196 = {v49(),v49(),nil,nil};
if (v194 == (1383 - (1239 + 144))) then
local v228 = 0;
local v229;
while true do
if (v228 == 0) then
v229 = 0;
while true do
if (v229 == 0) then
v196[3] = v49();
v196[4] = v49();
break;
end
end
break;
end
end
elseif (v194 == 1) then
v196[3] = v50();
elseif (v194 == (4 - 2)) then
v196[14 - 11] = v50() - ((8 - 6) ^ 16);
elseif (v194 == 3) then
local v237 = 0;
local v238;
while true do
if (v237 == 0) then
v238 = 0;
while true do
if (v238 == 0) then
v196[7 - 4] = v50() - (2 ^ 16);
v196[(362 + 174) - (8 + 524)] = v49();
break;
end
end
break;
end
end
end
v212 = 1;
end
end
end
if (0 == v193) then
local v213 = 0;
while true do
if (v213 == 0) then
v194 = v47(v171, (5 - 3) + 0, 1565 - (352 + 582 + 628));
v195 = v47(v171, 4, (133 - (88 + 44)) + (744 - (17 + 722)));
v213 = 1;
end
if (v213 == 1) then
v193 = 1;
break;
end
end
end
if (v193 == 3) then
if (v47(v195, 3 + 0, 1 + 2) == ((4 - 3) + (0 - 0))) then
v196[4] = v84[v196[13 - 9]];
end
v79[v168] = v196;
break;
end
end
break;
end
if (v192 == 0) then
v193 = 0;
v194 = nil;
v192 = 1;
end
if (v192 == 1) then
v195 = nil;
v196 = nil;
v192 = 2;
end
end
end
break;
end
end
break;
end
if (v169 == 0) then
v170 = 0;
v171 = nil;
v169 = 1;
end
end
end
v78 = 3;
break;
end
end
end
v126 = 1;
end
end
end
break;
end
end
end;
v62 = 1;
end
end
end
v59 = 3;
end
if (v59 == 0) then
if (v44 == 7) then
local v63 = 0;
while true do
if (v63 == 0) then
v56 = function(v69, v70, v71)
local v85 = 0;
local v86;
local v87;
local v88;
local v89;
while true do
if (0 == v85) then
v86 = 0;
v87 = nil;
v85 = 1;
end
if (v85 == 1) then
v88 = nil;
v89 = nil;
v85 = 2;
end
if (v85 == 2) then
while true do
local v127 = 0;
while true do
if (v127 == 0) then
if (0 == v86) then
local v140 = 0;
while true do
if (v140 == 1) then
v86 = 1;
break;
end
if (v140 == 0) then
v87 = v69[1 - 0];
v88 = v69[1063 - ((1306 - 373) + (408 - 280))];
v140 = 1;
end
end
end
if (v86 == 1) then
local v141 = 0;
while true do
if (v141 == 0) then
v89 = v69[1 + 2];
return function(...)
local v172 = 0;
local v173;
local v174;
local v175;
local v176;
local v177;
local v178;
while true do
if (v172 == 1) then
v175 = nil;
v176 = nil;
v172 = 2;
end
if (3 == v172) then
while true do
if (v173 == 1) then
local v188 = 0;
while true do
if (v188 == 1) then
v173 = 2;
break;
end
if (v188 == 0) then
v176 = {...};
v177 = v21("#", ...) - (654 - (486 + 167));
v188 = 1;
end
end
end
if (v173 == 0) then
local v189 = 0;
while true do
if (0 == v189) then
v174 = 2 - 1;
v175 = -(302 - (190 + 111));
v189 = 1;
end
if (v189 == 1) then
v173 = 1;
break;
end
end
end
if (v173 == 3) then
A, B = v54(v20(v178));
if not A[1 - (683 - (241 + 442))] then
local v197 = 0;
local v198;
local v199;
while true do
if (v197 == 0) then
v198 = 0;
v199 = nil;
v197 = 1;
end
if (1 == v197) then
while true do
if (v198 == 0) then
v199 = v69[114 - ((51 - 32) + 91)][v174] or "?";
error(v8("\63\71\223\52\153\101\246\9\86\223\50\155\49\183\24\4\246", "\108\36\173\93\233\17\214") .. v199 .. v8("\65\95", "\28\101\139\31\95\92") .. A[2]);
break;
end
end
break;
end
end
else
return v22(A, 2 + 0 + (497 - (21 + 476)), B);
end
break;
end
if (v173 == 2) then
local v190 = 0;
while true do
if (v190 == 1) then
v173 = 3;
break;
end
if (v190 == 0) then
v178 = nil;
v178 = function()
local v200 = 0;
local v201;
local v202;
local v203;
local v204;
local v205;
local v206;
local v207;
local v208;
local v209;
local v210;
while true do
if (v200 == 2) then
v207 = {};
for v215 = (0 - 0) + (0 - 0), v177 do
if (v215 >= v203) then
v205[v215 - v203] = v176[v215 + (1965 - (1132 + (1611 - 779)))];
else
v207[v215] = v176[v215 + (3 - 2)];
end
end
v208 = (v177 - v203) + 1;
v200 = 3;
end
if (v200 == 1) then
v204 = v54;
v205 = {};
v206 = {};
v200 = 2;
end
if (v200 == 0) then
v201 = v87;
v202 = v88;
v203 = v89;
v200 = 1;
end
if (v200 == 3) then
v209 = nil;
v210 = nil;
while true do
local v216 = 0;
local v217;
while true do
if (0 == v216) then
v217 = 0;
while true do
if (v217 == 0) then
local v230 = 0;
while true do
if (v230 == 0) then
v209 = v201[v174];
v210 = v209[614 - (239 + 374)];
v230 = 1;
end
if (v230 == 1) then
v217 = 1;
break;
end
end
end
if (1 == v217) then
if (v210 <= (5 + 14 + (32 - 17))) then
if (v210 <= (1278 - ((1961 - (231 + 1725)) + 919 + 338))) then
if (v210 <= 7) then
if (v210 <= 3) then
if (v210 <= 1) then
if (v210 == 0) then
v207[v209[5 - (264 - (170 + 91))]] = v207[v209[8 - (16 - 11)]] / v209[897 - (392 + 501)];
else
v207[v209[1848 - (1328 + (2462 - (1237 + 707)))]][v207[v209[3 + 0]]] = v207[v209[4]];
end
elseif (v210 > (1666 - (1098 + 210 + 356))) then
if (v207[v209[1 + 1]] > v209[3 + (2 - 1)]) then
v174 = v174 + 1;
else
v174 = v209[3];
end
else
do
return;
end
end
elseif (v210 <= 5) then
if (v210 > (13 - (6 + 3))) then
local v244 = 0;
local v245;
local v246;
local v247;
local v248;
while true do
if (v244 == 2) then
while true do
if (v245 == 0) then
local v393 = 0;
while true do
if (v393 == 1) then
v245 = 1;
break;
end
if (v393 == 0) then
v246 = v209[2];
v247 = {v207[v246](v22(v207, v246 + 1 + 0, v209[1 + 2]))};
v393 = 1;
end
end
end
if (1 == v245) then
v248 = 0;
for v418 = v246, v209[4 - (0 - 0)] do
local v419 = 0;
local v420;
while true do
if (v419 == 0) then
v420 = 0;
while true do
if (v420 == 0) then
v248 = v248 + 1;
v207[v418] = v247[v248];
break;
end
end
break;
end
end
end
break;
end
end
break;
end
if (v244 == 1) then
v247 = nil;
v248 = nil;
v244 = 2;
end
if (v244 == 0) then
v245 = 0;
v246 = nil;
v244 = 1;
end
end
elseif (v207[v209[4 - 2]] == v209[4]) then
v174 = v174 + 1;
else
v174 = v209[206 - ((239 - (18 + 59)) + 41)];
end
elseif (v210 == 6) then
v207[v209[2]] = v207[v209[(999 - (294 + 693)) - 9]] % v209[4];
else
local v250 = 0;
local v251;
local v252;
while true do
if (v250 == 0) then
v251 = 0;
v252 = nil;
v250 = 1;
end
if (v250 == 1) then
while true do
if (v251 == 0) then
v252 = v209[2];
do
return v207[v252](v22(v207, v252 + 1, v175));
end
break;
end
end
break;
end
end
end
elseif (v210 <= 11) then
if (v210 <= ((15 - 10) + 4)) then
if (v210 == (1673 - (1047 + 618))) then
v207[v209[1 + (1909 - (548 + 1360))]] = v207[v209[1949 - (70 + 644 + 1232)]] % v207[v209[2 + 2]];
elseif not v207[v209[2]] then
v174 = v174 + 1 + 0;
else
v174 = v209[3];
end
elseif (v210 == (7 + (345 - (18 + 324)))) then
v207[v209[525 - (87 + 436)]] = v207[v209[1651 - (1499 + 149)]] - v209[(173 - (91 + 79)) + (1672 - (434 + 1237))];
else
local v255 = 0;
local v256;
local v257;
local v258;
while true do
if (v255 == 0) then
v256 = 0;
v257 = nil;
v255 = 1;
end
if (v255 == 1) then
v258 = nil;
while true do
if (v256 == 0) then
local v395 = 0;
while true do
if (v395 == 0) then
v257 = v209[2];
v258 = {};
v395 = 1;
end
if (v395 == 1) then
v256 = 1;
break;
end
end
end
if (v256 == 1) then
for v421 = 1 + 0, #v206 do
local v422 = 0;
local v423;
local v424;
while true do
if (v422 == 1) then
while true do
if (v423 == 0) then
v424 = v206[v421];
for v516 = 0, #v424 do
local v517 = 0;
local v518;
local v519;
local v520;
local v521;
while true do
if (v517 == 2) then
while true do
if (v518 == 1) then
v521 = v519[(151 - (45 + 105)) + 1];
if ((v520 == v207) and (v521 >= v257)) then
local v539 = 0;
local v540;
while true do
if (v539 == 0) then
v540 = 0;
while true do
if (v540 == 0) then
v258[v521] = v520[v521];
v519[(308 + 707) - (171 + 843)] = v258;
break;
end
end
break;
end
end
end
break;
end
if (v518 == 0) then
local v537 = 0;
while true do
if (0 == v537) then
v519 = v424[v516];
v520 = v519[264 - (50 + 213)];
v537 = 1;
end
if (v537 == 1) then
v518 = 1;
break;
end
end
end
end
break;
end
if (v517 == 1) then
v520 = nil;
v521 = nil;
v517 = 2;
end
if (v517 == 0) then
v518 = 0;
v519 = nil;
v517 = 1;
end
end
end
break;
end
end
break;
end
if (v422 == 0) then
v423 = 0;
v424 = nil;
v422 = 1;
end
end
end
break;
end
end
break;
end
end
end
elseif (v210 <= (161 - ((235 - 137) + 23 + 27))) then
if (v210 > 12) then
v71[v209[206 - (201 + 2)]] = v207[v209[3 - (131 - (54 + 76))]];
elseif (v207[v209[(536 - (451 + 81)) - (2 - 0)]] ~= v209[3 + 1]) then
v174 = v174 + (1 - 0);
else
v174 = v209[3];
end
elseif (v210 <= (2 + 12)) then
if (v209[2] <= v209[57 - (52 + (4 - 3))]) then
v174 = v174 + 1;
else
v174 = v209[11 - 8];
end
elseif (v210 > ((30 + 305) - (279 + 41))) then
v207[v209[4 - 2]] = v207[v209[1943 - (664 + 1276)]] / v207[v209[528 - ((2127 - (339 + 1430)) + 166)]];
else
v207[v209[2]] = v209[10 - (4 + 3)] ^ v207[v209[3 + 1]];
end
elseif (v210 <= (25 + 0)) then
if (v210 <= (1537 - (976 + 541))) then
if (v210 <= 18) then
if (v210 > (132 - (91 + 24))) then
v207[v209[1 + 1]] = v207[v209[2 + 1]] * v209[4 + 0 + 0];
else
v207[v209[(1670 - 1070) - ((541 - (192 + 290)) + 327 + 212)]] = v71[v209[(7 - 4) + (1561 - (1386 + 175))]];
end
elseif (v210 > (54 - (61 - 26))) then
local v264 = 0;
local v265;
local v266;
local v267;
while true do
if (v264 == 0) then
v265 = 0;
v266 = nil;
v264 = 1;
end
if (1 == v264) then
v267 = nil;
while true do
if (v265 == 0) then
local v396 = 0;
while true do
if (v396 == 0) then
v266 = v209[1736 - (872 + 862)];
v267 = v207[v266];
v396 = 1;
end
if (1 == v396) then
v265 = 1;
break;
end
end
end
if (v265 == 1) then
for v425 = v266 + (1334 - (516 + 817)), v175 do
v16(v267, v207[v425]);
end
break;
end
end
break;
end
end
else
v207[v209[(7 - 4) - 1]] = v207[v209[2 + (1643 - (627 + 1015))]] + v209[1926 - (1631 + 291)];
end
elseif (v210 <= (13 + 9)) then
if (v210 == 21) then
v207[v209[2]] = v209[3];
else
v207[v209[2]] = v209[3] ~= (0 + 0);
end
elseif (v210 <= ((90 - (15 + 39)) - 13)) then
local v272 = 0;
local v273;
local v274;
local v275;
local v276;
while true do
if (1 == v272) then
v275 = nil;
v276 = nil;
v272 = 2;
end
if (v272 == 2) then
while true do
if (v273 == 2) then
if (v275 > ((0 + 0) - 0)) then
if (v276 <= v207[v274 + 1]) then
local v481 = 0;
local v482;
while true do
if (v481 == 0) then
v482 = 0;
while true do
if (0 == v482) then
v174 = v209[9 - 6];
v207[v274 + (4 - (1443 - (1152 + 290)))] = v276;
break;
end
end
break;
end
end
end
elseif (v276 >= v207[v274 + 1]) then
local v483 = 0;
local v484;
while true do
if (v483 == 0) then
v484 = 0;
while true do
if (v484 == 0) then
v174 = v209[3];
v207[v274 + (10 - 7)] = v276;
break;
end
end
break;
end
end
end
break;
end
if (v273 == 1) then
local v397 = 0;
while true do
if (v397 == 1) then
v273 = 2;
break;
end
if (v397 == 0) then
v276 = v207[v274] + v275;
v207[v274] = v276;
v397 = 1;
end
end
end
if (v273 == 0) then
local v398 = 0;
while true do
if (v398 == 0) then
v274 = v209[2];
v275 = v207[v274 + 2 + 0];
v398 = 1;
end
if (v398 == 1) then
v273 = 1;
break;
end
end
end
end
break;
end
if (v272 == 0) then
v273 = 0;
v274 = nil;
v272 = 1;
end
end
elseif (v210 == (80 - 56)) then
v207[v209[5 - 3]] = v70[v209[1376 - (933 + 440)]];