diff --git a/pastes/pastes_20231030120705.csv b/pastes/pastes_20231030120705.csv new file mode 100644 index 0000000..f3321a4 --- /dev/null +++ b/pastes/pastes_20231030120705.csv @@ -0,0 +1,3396 @@ +id,title,username,language,date,content +R9YKgQDL,data737,TestGuy1,JSON,Monday 30th of October 2023 07:00:06 AM CDT,"{ + status: 'Success', + method: 'server', + maindata: '1c04e6bb2256deb17cf9e8a9174410da5d362ae20566fc3cb8a3b3c1fadf75b71173b6a149f1dbf48301f71a74d94ee8253f02f87034ca7ebea74f4ea27ad29eb56fda3fadf421c03ab302b7a741b391042ba1ee86d8f434e4047ea4785885598735ab287d65814439ecccfb6f87673fa96b44f8235e081062115796e6231f2a', + otherdata: [ + '3e6021d4f288e95addd33dc352100700', + 'd61d69a3a2ee07b98efcdff7ae4860ab', + '92a03acd2a233cbc8ed04ff7e577f3f3', + 'ff39376b5efe65897228efdf61550a2e', + '8ea16d679871016f5ba0063a1415af64', + '0f139bcc221e02ff78b2bbec5820c2b4', + '1582685446f98ed33e99c58e49b67764', + '5f46fd781cd018de992f694c92f4f2d5' + ] +}" +EqZ0ECBn,12. Trade Commissions,nevenailievaa,C#,Monday 30th of October 2023 06:46:45 AM CDT,"// 0 ≤ s ≤ 500 ; 500 < s ≤ 1 000 ; 1 000 < s ≤ 10 000 ; s > 10 000 +// Sofia 5% 7% 8% 12% +// Varna 4.5% 7.5% 10% 13% +// Plovdiv 5.5% 8% 12% 14.5% + +string city = Console.ReadLine(); +double sales = double.Parse(Console.ReadLine()); +double commission = 0; + +//Sofia +if (city == ""Sofia"") +{ + if (sales <= 500) + { + commission = sales * 0.05; + } + else if (sales > 500 && sales <= 1000) + { + commission = sales * 0.07; + } + else if (sales > 1000 && sales <= 10000) + { + commission = sales * 0.08; + } + else if (sales > 10000) + { + commission = sales * 0.12; + } +} + +//Varna +else if (city == ""Varna"") +{ + if (sales <= 500) + { + commission = sales * 0.045; + } + else if (sales > 500 && sales <= 1000) + { + commission = sales * 0.075; + } + else if (sales > 1000 && sales <= 10000) + { + commission = sales * 0.10; + } + else if (sales > 10000) + { + commission = sales * 0.13; + } +} + +//Plovdiv +else if (city == ""Plovdiv"") +{ + if (sales <= 500) + { + commission = sales * 0.055; + } + else if (sales > 500 && sales <= 1000) + { + commission = sales * 0.08; + } + else if (sales > 1000 && sales <= 10000) + { + commission = sales * 0.12; + } + else if (sales > 10000) + { + commission = sales * 0.145; + } +} + + +if (city != ""Sofia"" && city != ""Plovdiv"" && city != ""Varna"" || sales < 0) +{ + Console.WriteLine(""error""); +} +else if (commission > 0) +{ + Console.WriteLine($""{commission:F2}""); +}" +uffq798C,Untitled,ItzMeKarlix,Python,Monday 30th of October 2023 06:39:04 AM CDT,"#1 +print(""Area of the Circle based on user Radius"") +rad = float(input(""Enter Radius: "")) +area = 3.14*rad**2 +print(""Output:"", round(area, 2)) + +#2 +print(""\""It is what it is by: Jimmy Miller\""\n\nI guess it is what it is\n\tWrong place, wrong time\n\tBut I couldn't resist\nThose night time white lies"") + +#3 +fname = str(input(""Please Enter Your First Name: "")) +lname = str(input(""Please Enter Your Last Name: "")) +print(f""Hello, \""{fname} {lname}\"""") + +#4 +name = input(""Enter your name: "") +age = input(""Enter your age: "") +address = input(""Enter your full address: "") +print(f""\nName: {name}\nAge: {age}\nAddress: {address}"")" +ATda6SFV,BTC Wallet Credentials have been reset,castlclass_20,GetText,Monday 30th of October 2023 06:34:14 AM CDT,"Dear User +We have received a request to reset the login information for your Bitcoin wallet. If you did not make this request, please disregard this message. +Your new login credentials will be +smesu23:3UYL6h on 212.224.93.130 +You can connect via SSH . +Regards" +Z0aM4zUP,MIITITMOM2023Solutions,wingman007,C#,Monday 30th of October 2023 06:08:15 AM CDT,"// ----------------------------------------------- all combinations 0 ------------------------------ +// I have 5 integer numbers with positive and negative values. Please write a program on C# to find all combinations between the 5 numbers which are 0? +using System; +using System.Collections.Generic; + +public class ZeroSumCombinations +{ + public static void Main() + { + int[] numbers = { 2, -2, 3, -3, 4 }; // Example input + + // Pairs + for (int i = 0; i < 5; i++) + { + for (int j = i + 1; j < 5; j++) + { + if (numbers[i] + numbers[j] == 0) + { + Console.WriteLine($""Pair: {numbers[i]}, {numbers[j]}""); + } + } + } + + // Triples + for (int i = 0; i < 5; i++) + { + for (int j = i + 1; j < 5; j++) + { + for (int k = j + 1; k < 5; k++) + { + if (numbers[i] + numbers[j] + numbers[k] == 0) + { + Console.WriteLine($""Triple: {numbers[i]}, {numbers[j]}, {numbers[k]}""); + } + } + } + } + + // Quadruples + for (int i = 0; i < 5; i++) + { + for (int j = i + 1; j < 5; j++) + { + for (int k = j + 1; k < 5; k++) + { + for (int l = k + 1; l < 5; l++) + { + if (numbers[i] + numbers[j] + numbers[k] + numbers[l] == 0) + { + Console.WriteLine($""Quadruple: {numbers[i]}, {numbers[j]}, {numbers[k]}, {numbers[l]}""); + } + } + } + } + } + + // Quintuples + if (numbers[0] + numbers[1] + numbers[2] + numbers[3] + numbers[4] == 0) + { + Console.WriteLine($""Quintuple: {numbers[0]}, {numbers[1]}, {numbers[2]}, {numbers[3]}, {numbers[4]}""); + } + } +} + +// ----------------------------- Above without arrays ------------------------ +using System; + +public class ZeroSumCombinations +{ + public static void Main() + { + int a = 2, b = -2, c = 3, d = -3, e = 4; // Example input + + // Pairs + if (a + b == 0) Console.WriteLine($""Pair: {a}, {b}""); + if (a + c == 0) Console.WriteLine($""Pair: {a}, {c}""); + if (a + d == 0) Console.WriteLine($""Pair: {a}, {d}""); + if (a + e == 0) Console.WriteLine($""Pair: {a}, {e}""); + if (b + c == 0) Console.WriteLine($""Pair: {b}, {c}""); + if (b + d == 0) Console.WriteLine($""Pair: {b}, {d}""); + if (b + e == 0) Console.WriteLine($""Pair: {b}, {e}""); + if (c + d == 0) Console.WriteLine($""Pair: {c}, {d}""); + if (c + e == 0) Console.WriteLine($""Pair: {c}, {e}""); + if (d + e == 0) Console.WriteLine($""Pair: {d}, {e}""); + + // Triples + if (a + b + c == 0) Console.WriteLine($""Triple: {a}, {b}, {c}""); + if (a + b + d == 0) Console.WriteLine($""Triple: {a}, {b}, {d}""); + if (a + b + e == 0) Console.WriteLine($""Triple: {a}, {b}, {e}""); + if (a + c + d == 0) Console.WriteLine($""Triple: {a}, {c}, {d}""); + if (a + c + e == 0) Console.WriteLine($""Triple: {a}, {c}, {e}""); + if (a + d + e == 0) Console.WriteLine($""Triple: {a}, {d}, {e}""); + if (b + c + d == 0) Console.WriteLine($""Triple: {b}, {c}, {d}""); + if (b + c + e == 0) Console.WriteLine($""Triple: {b}, {c}, {e}""); + if (b + d + e == 0) Console.WriteLine($""Triple: {b}, {d}, {e}""); + if (c + d + e == 0) Console.WriteLine($""Triple: {c}, {d}, {e}""); + + // Quadruples + if (a + b + c + d == 0) Console.WriteLine($""Quadruple: {a}, {b}, {c}, {d}""); + if (a + b + c + e == 0) Console.WriteLine($""Quadruple: {a}, {b}, {c}, {e}""); + if (a + b + d + e == 0) Console.WriteLine($""Quadruple: {a}, {b}, {d}, {e}""); + if (a + c + d + e == 0) Console.WriteLine($""Quadruple: {a}, {c}, {d}, {e}""); + if (b + c + d + e == 0) Console.WriteLine($""Quadruple: {b}, {c}, {d}, {e}""); + + // Quintuples + if (a + b + c + d + e == 0) Console.WriteLine($""Quintuple: {a}, {b}, {c}, {d}, {e}""); + } +} + + + +// You have 6 types of coins with values 1, 2, 5, 10, 20 and 50 cents. Write an algorithm on C# to find all combinations giving 100 cents (one dollar) +// -------------------------- Coins ------------------------------------------------- +using System; +using System.Collections.Generic; + +public class CoinCombinations +{ + private static readonly int[] Coins = + { 1, 2, 5, 10, 20, 50 }; + private static readonly List> Combinations = + new List>(); + + public static void Main() + { + FindCombinations(new List(), 100); + foreach (var combination in Combinations) + { + Console.WriteLine(string.Join("" "", combination)); + } + } + + public static void FindCombinations(List currentCombination, int remaining) + { + if (remaining == 0) + { + Combinations.Add(new List(currentCombination)); + return; + } + + if (remaining < 0) + { + return; + } + + for (int i = 0; i < Coins.Length; i++) + { + if (currentCombination.Count == 0 || Coins[i] >= currentCombination[currentCombination.Count - 1]) + { + currentCombination.Add(Coins[i]); + FindCombinations(currentCombination, remaining - Coins[i]); + currentCombination.RemoveAt(currentCombination.Count - 1); + } + } + } +} +" +mC1HkVMa,django edit user form,rezamalik15,Python,Monday 30th of October 2023 05:49:38 AM CDT,"def updateUser(request): + + userId = request.POST['userId'] + username = request.POST['username'] + firstname = request.POST['firstname'] + lastname = request.POST['lastname'] + email = request.POST['email'] + password1 = request.POST['password1'] + + user = User.objects.get(id = userId) + user.username = username + user.first_name = firstname + user.last_name = lastname + user.email = email + + if password1: + user.password = make_password(password1) + + user.save() + + return HttpResponse(""

Successfully updated!

"")" +dE4n2PXt,Complete reso json,CyberWaltz,JSON,Monday 30th of October 2023 05:48:08 AM CDT,"{ + ""arrivedGirls"": 0, + ""arrivedGuests"": 0, + ""arrivedGuys"": 0, + ""attachedTables"": [], + ""bookedBy"": { + ""birthday"": ""2015-09-11"", + ""fullName"": ""Tech Support"", + ""hasFacebookProfile"": false, + ""id"": 1, + ""isAdmin"": false, + ""userpic"": ""https://dzbwcqs3bd4zb.cloudfront.net/bf8c5335-1d2e-4958-9b28-cafc8aaeae06.jpg"" + }, + ""bookingNote"": """", + ""bottleMin"": 0, + ""bottleService"": ""TABLE"", + ""coloredTags"": [ + { + ""bgColor"": ""007A9BFF"", + ""id"": 20061, + ""name"": ""#HipHop Night"", + ""orderIndex"": 13, + ""venueId"": 463 + } + ], + ""completionFeedback"": { + ""message"": """", + ""rating"": 0 + }, + ""complimentGirls"": false, + ""complimentGirlsQty"": 0, + ""complimentGroupQty"": 0, + ""complimentGuys"": false, + ""complimentGuysQty"": 0, + ""creationDate"": ""2023-10-30"", + ""creationTime"": ""05:27:04"", + ""deleted"": false, + ""eventId"": 36213, + ""fromLinkedVenue"": false, + ""fromWeb"": false, + ""girlsComped"": 0, + ""girlsNumber"": 0, + ""girlsReduced"": 0, + ""girlsRegular"": 0, + ""guestFullName"": ""Alejandro Yep"", + ""guestInfo"": { + ""address"": ""E"", + ""city"": ""D"", + ""country"": ""AL"", + ""email"": ""jigygv@vhhj.ca"", + ""firstName"": ""Alejandro"", + ""fullName"": ""Alejandro Yep"", + ""guestInfoId"": 624035, + ""hasFacebookProfile"": false, + ""id"": 624035, + ""lastName"": ""Yep"", + ""lastReservationDate"": ""2023-10-30"", + ""phoneNumber"": ""+79876892308"", + ""state"": ""R"" + }, + ""guestsNumber"": 2, + ""guysComped"": 0, + ""guysNumber"": 0, + ""guysReduced"": 0, + ""guysRegular"": 0, + ""id"": 1351656, + ""internalNotes"": [], + ""lastChangeDate"": ""2023-10-30"", + ""lastChangeTime"": ""05:44:54"", + ""liveSpend"": 0, + ""minSpend"": 0, + ""mustEnter"": false, + ""notifyEmailMgmtOnArrival"": false, + ""notifyMgmtOnArrival"": false, + ""payees"": [], + ""paymentMethod"": ""NONE"", + ""photos"": [], + ""previousStatus"": ""PENDING"", + ""reducedGirls"": false, + ""reducedGirlsQty"": 0, + ""reducedGroupQty"": 0, + ""reducedGuys"": false, + ""reducedGuysQty"": 0, + ""reservationDate"": ""2023-10-30"", + ""signatures"": [], + ""staff"": [], + ""status"": ""COMPLETED"", + ""statusChangeTime"": ""05:44:54"", + ""tableInfo"": { + ""bottleServiceType"": ""TABLE"", + ""closed"": false, + ""id"": 5522, + ""orderIndex"": 0, + ""placeNumber"": ""10"", + ""sectionId"": 29 + }, + ""tablesRequired"": 1, + ""tags"": [], + ""totalGuests"": 2, + ""totalSpent"": 0, + ""venueId"": 463 +}" +JDSfFNwa,The problem of maximizing disjoint segments C++,PCuser0032,C++,Monday 30th of October 2023 05:32:03 AM CDT,"#include + +int main() +{ + int n = 0; + + std::cin >> n; + + int** A = new int*[n]; + + for (int z = 0; z < n; ++z) { + A[z] = new int[2]; + } + + for (int y = 0; y < n; ++y) { + std::cin >> A[y][0] >> A[y][1]; + } + + int min_right_border = 0, + border_limit = 0, + count = 0; + + for (int i = 0; i < n; ++i) { + + min_right_border = A[i][1]; + + if (A[i][0] < border_limit) { + continue; + } + + if (min_right_border == border_limit) { + std::cout << ""break"" << std::endl; + break; + } + + for (int j = 0; j < n; ++j) { + if (j == i) continue; + + if (A[j][0] >= border_limit && A[j][1] < min_right_border) { + min_right_border = A[j][1]; + } + } + + if (min_right_border != border_limit) { + std::cout << ""i = "" << i << "", min_right_border = "" << min_right_border << "", border_limit = "" << border_limit << std::endl; + border_limit = min_right_border; + count++; + } + + // std::cout << ""i = "" << i << "", min_right_border = "" << min_right_border << "", border_limit = "" << border_limit << std::endl; + } + + for (int q = 0; q < 2; ++q) + { + delete[] A[q]; + } + + delete[] A; + + std::cout << count << std::endl; + + return 0; +}" +a7NZF90K,gtm laline trigger reminder,orenchuck,HTML,Monday 30th of October 2023 05:25:08 AM CDT,"" +N5kQzw9x,stack2,olyashka2010,C++,Monday 30th of October 2023 05:24:57 AM CDT,"#include +#include + #include + + using namespace std; + + +int main() { + int n; + cin >> n; + list myList; + list resultList; + int a; + cin >> a; + myList.push_back(a); + for (int i = 1; i < n; ++i) + { + cin >> a; + resultList.push_back(1); + auto iter2 = --resultList.end(); + while (myList.size() > 0 && a > myList.back()) + { + myList.pop_back(); + iter2--; + + + } + auto iter1 = myList.rbegin(); + while (a < *iter1 && iter1 != myList.rend()) + { + (*iter2)++; + iter2--; + iter1++; + } + + myList.push_back(a); + + cout << i << "" "" << a << endl; + for (int l1 : myList) + { + cout << l1 << "" ""; + } + + cout << endl; + + for (int l2 : resultList) + { + cout << l2 << "" ""; + } + + cout << endl << ""______________________________"" << endl; + } + resultList.push_back(-1); + for (auto iter = myList.rbegin(), iter2 = resultList.rbegin(); iter != myList.rend(); ++iter, ++iter2) + { + (*iter2) = -1; + } + for (auto iter = resultList.begin(); iter != resultList.end(); ++iter) + { + cout << *iter << "" ""; + } + return 0; +}" +WDsz6hmn,autoCAD alternatives,plirof2,JavaScript,Monday 30th of October 2023 05:16:26 AM CDT,"https://www.smartdraw.com/cad/autocad-alternative.htm + + +https://all3dp.com/2/best-autocad-alternatives/ +https://www.bricsys.com/en-intl/bricscad/ Key feature: Compatibility with many AutoCAD features +Cost: Annual subscriptions from ~$315 (Lite), ~$677 (Pro), ~$950 (Mechanical), ~$1,010 (BIM), or $1,120 (Ultimate) +Platforms: Windows, MacOS, Linux + + +https://librecad.org/ free DXF and DWG +https://www.qcad.org/en/ free DXF and DWG input and output + +https://nanocad.com/ DWG-editor 250$/year + +https://www.progesoft.com/ 400e DWG +" +06ki1Qi8,List Bahasa,AhmadXploit,Dart,Monday 30th of October 2023 04:53:46 AM CDT,"{ + ""negara"": [ + { + ""nama"": ""Indonesia"", + ""bendera"": ""https://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_Indonesia.svg"" + }, + { + ""nama"": ""United States"", + ""bendera"": ""https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg"" + }, + { + ""nama"": ""United Kingdom"", + ""bendera"": ""https://upload.wikimedia.org/wikipedia/en/a/ae/Flag_of_the_United_Kingdom.svg"" + }, + { + ""nama"": ""Australia"", + ""bendera"": ""https://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Australia.svg"" + } + ] +} +" +qfLK1QMS,05.GameOfIntervals,nevenailievaa,C#,Monday 30th of October 2023 04:22:23 AM CDT,"int plays=int.Parse(Console.ReadLine()); +double point = 0; +double toTenPercentsAmount = 0; +double toTwentyPercents = 0; +double totwetyNine = 0; +double toThirtyNicePecn = 0; +double tofifty = 0; +double toHundered = 0; +double invalidNum = 0; + +for (int i = 0; i < plays; i++) +{ + int pointsScored=int.Parse((Console.ReadLine())); + if (pointsScored >= 0 && pointsScored <= 9) + { + point += pointsScored * 0.2; + toTenPercentsAmount++; + } + else if (pointsScored >= 10 && pointsScored <= 19) + { + point += pointsScored * 0.3; + toTwentyPercents++; + } + else if (pointsScored >= 20 && pointsScored <= 29) + { + point += pointsScored * 0.4; + totwetyNine++; + } + else if (pointsScored >= 30 && pointsScored <= 39) + { + point += 50; + toThirtyNicePecn++; + } + else if (pointsScored >= 40 && pointsScored <= 50) + { + point += 100; + toHundered++; + } + else + { + invalidNum++; + point /= 2; + + } + +} + +double toTenPercents = (double)toTenPercentsAmount / plays * 100; +double tonineteen=(double)toTwentyPercents / plays * 100; +double twentyNine=(double)totwetyNine / plays * 100; +double thirtynine=(double)toThirtyNicePecn / plays * 100; +double toHundredPercents = (double)toHundered / plays * 100; +double invalidPercents = (double)invalidNum / plays * 100; +Console.WriteLine($""{point:f2}""); +Console.WriteLine($""From 0 to 9: {toTenPercents:F2}%""); +Console.WriteLine($""From 10 to 19: {tonineteen:f2}%""); +Console.WriteLine($""From 20 to 29: {twentyNine:f2}%""); +Console.WriteLine($""From 30 to 39: {thirtynine:f2}%""); +Console.WriteLine($""From 40 to 50: {toHundredPercents:f2}%""); +Console.WriteLine($""Invalid numbers: {invalidPercents:F2}%"");" +agPjKVmu,Untitled,kwest87,C#,Monday 30th of October 2023 04:21:13 AM CDT,"[StartCode] +using System; + +namespace povtorenie +{ + internal class Program + { + static void Main(string[] args) + { + const string CommandExit = ""exit""; + const string CommandRuble = ""ruble""; + const string CommandDollar = ""dollar""; + const string CommandYuan = ""yuan""; + + int temporaryRuble; + int temporaryDollar; + int temporaryYuan; + float ruble = 500; + float dollar = 500; + float yuan = 500; + float yuanToRuble = 0.25f; + float yuanToDollar = 0.5f; + float dollarToRuble = 0.5f; + float dollarToYuan = 2; + float rubleToDollar = 2; + float rubleToYuan = 4; + string menuInput; + bool works = true; + + while (works) + { + Console.WriteLine($""У вас на счету :\n РУБЛИ - {ruble}\n ДОЛЛАРЫ - {dollar}\n ЮАНИ - {yuan}""); + Console.WriteLine(""Выберите необходимую валюту либо выход :\n Команды : ruble , dollar , yuan , exit .""); + menuInput = Console.ReadLine(); + + switch (menuInput) + { + case CommandRuble: + Console.Write(""Сколько долларов использовать : ""); + temporaryDollar = Convert.ToInt32(Console.ReadLine()); + Console.WriteLine(""Сколько юаней использовать : ""); + temporaryYuan = Convert.ToInt32(Console.ReadLine()); + dollar -= temporaryDollar; + yuan -= temporaryYuan; + ruble += temporaryDollar * dollarToRuble + temporaryYuan * yuanToRuble; + break; + case CommandDollar: + Console.Write(""Сколько рублей использовать : ""); + temporaryRuble = Convert.ToInt32(Console.ReadLine()); + Console.WriteLine(""Сколько юаней использовать : ""); + temporaryYuan = Convert.ToInt32(Console.ReadLine()); + ruble -= temporaryRuble; + yuan -= temporaryYuan; + dollar += temporaryRuble * rubleToDollar + temporaryYuan * yuanToDollar; + break; + case CommandYuan: + Console.Write(""Сколько рублей использовать : ""); + temporaryRuble = Convert.ToInt32(Console.ReadLine()); + Console.WriteLine(""Сколько долларов использовать : ""); + temporaryDollar = Convert.ToInt32(Console.ReadLine()); + ruble -= temporaryRuble; + dollar -= temporaryDollar; + yuan += temporaryRuble * rubleToYuan + temporaryDollar * dollarToYuan; + break; + case CommandExit: + Console.WriteLine(); + works = false; + break; + } + } + } + } +} +[EndCode]" +hkwTXfQ9,AC_LAB5_EX_1,varli_ketanpl,VeriLog,Monday 30th of October 2023 04:13:49 AM CDT,"module ba( + output reg o, // found output: 0 - not found, 1 - found + input i, // char input: 0 - 'a', 1 - 'b' + input clk); // clock input + +//TODO implementarea functionarii + +reg[1:0] state = 0, next_state = 0; + +always@(posedge clk) begin + state <= next_state; +end + +always@(*) begin + o = 0; + case (state) + 0: if(i == 1) begin + next_state = 1; + o = 0; + end + else begin + next_state = 2; + o = 0; + end + 1: if(i == 1) begin + next_state = 3; + o = 1; + end + else begin + next_state = 2; + o = 0; + end + 2: if(i == 1) begin + next_state = 1; + o = 0; + end + else begin + next_state = 2; + o = 0; + end + 3: if(i == 1) begin + next_state = 1; + o = 0; + end + else begin + next_state = 2; + o = 0; + end + endcase +end + +endmodule +" +vhqLs0wZ,Java lab 2 (30/10/2023),brandblox,Java,Monday 30th of October 2023 04:01:36 AM CDT," + +class Student { + String name; + int id; + + void getDetails(String n, int i) { + name = n; + id = i; + } + + void showDetails() { + System.out.println(""Name: "" + name); + System.out.println(""ID: "" + id); + } +} + +class Exam extends Student { + int marks1; + int marks2; + + void getMarks(int marks1, int marks2) { + this.marks1 = marks1; + this.marks2 = marks2; + } + + void putMarks() { + System.out.println(""Marks 1: "" + marks1); + System.out.println(""Marks 2: "" + marks2); + } +} +interface Sports { + int sportwt = 7; + + void putWt(); +} +class Result extends Exam implements Sports { + + + public void putWt() { + System.out.println(""Sport Weight: "" + sportwt); + } + + int total; + + void totalMarks() { + total = marks1 + marks2 + sportwt; + } + + void display() { + showDetails(); + putMarks(); + putWt(); + System.out.println(""Total Marks: "" + total); + } +} + +class DemoMain { + public static void main(String[] args) { + Result result = new Result(); + result.getDetails(""Arijit"", 29); + result.getMarks(80, 85); + result.totalMarks(); + result.display(); + } +} +" +BAYbbif6,Java lab 1 (30/10/2023),brandblox,Java,Monday 30th of October 2023 04:01:08 AM CDT,"interface Shape +{ + final static double pi=3.14; + abstract void ComputeArea(double x,double y); +} +class Rectangle implements Shape +{ + public void ComputeArea(double x,double y) + { + double area; + area=x*y; + System.out.println(""area= ""+area); + } +} +class Circle implements Shape { + public void ComputeArea(double x, double y) + { + double area_circle; + area_circle=pi*x*x; + System.out.println(""Circle area= ""+area_circle); + } +} + +public class InterfaceDemo +{ + public static void main(String[] args) + { + Shape ob; + Rectangle rect=new Rectangle(); + ob=rect; + ob.ComputeArea(10.0,20.0); + Circle circ=new Circle(); + ob=circ; + ob.ComputeArea(10.0,0.0); + } +} +" +3tJtjeLa,Lab2_2023,mgpolitis,Python,Monday 30th of October 2023 03:23:35 AM CDT,"sum_value = 0 +term = 5 +n = 1 + +while sum_value <= 5000: + #sum_value += term ** 2 + sum_value = sum_value + term**2 + term += 5 + n += 1 + +print(""The sum S after"", n, ""terms is:"", sum_value) +## +sum_value = 0 +term = 5 + +for n in range(1, 1000): # We'll loop a reasonable number of times to ensure we reach or exceed 5000. + sum_value += term ** 2 + term += 5 + + if sum_value >= 5000: + break + +print(""The sum S after"", n, ""terms is:"", sum_value) + + +## example 2 +a = float(input('Δώσε τον πρώτο αριθμό:')) +b = float(input('Δώσε το δεύτερο αριθμό:')) + +print('1.Πρόσθεση') +print('2.Αφαίρεση') +print('3.Πολλαπλασιασμός') +print('4.Διαίρεση') + +c = input('Δώσε πράξη (1,2,3,4):') + +if c == '1': + d = a + b + print('Το αποτέλεσμα είναι:', d) +elif c == '2': + d = a - b + print('Το αποτέλεσμα είναι:', d) +elif c == '3': + d = a * b + print('Το αποτέλεσμα είναι:', d) +elif c == '4': + if b != 0: + d = a / b + print('Το αποτέλεσμα είναι:', d) + else: + print('Αδύνατη διαίρεση') +else: + print('Λάθος επιλογή') + +## +# Input the two numbers +num1 = float(input(""Enter the first number: "")) +num2 = float(input(""Enter the second number: "")) + +# Input the operation choice +print(""Select the operation:"") +print(""1. Addition"") +print(""2. Subtraction"") +print(""3. Multiplication"") +print(""4. Division"") +operation = int(input(""Enter the operation (1/2/3/4): "")) + +# Perform the selected operation and display the result +if operation == 1: + result = num1 + num2 + print(""Result:"", result) +elif operation == 2: + result = num1 - num2 + print(""Result:"", result) +elif operation == 3: + result = num1 * num2 + print(""Result:"", result) +elif operation == 4: + if num2 != 0: + result = num1 / num2 + print(""Result:"", result) + else: + print(""Division by zero is not allowed."") +else: + print(""Invalid operation choice. Please select 1, 2, 3, or 4."") + +### Example 3 + +eis = float(input('Δώσε το εισόδημα:')) + +if eis < 0: + print('Λάθος εισόδημα') +elif eis <= 10000: + foros = eis * 5.0 / 100 + print('Ο φόρος είναι: ', foros) +elif eis <= 30000: + foros = eis * 10.0 / 100 + print('Ο φόρος είναι: ', foros) +else: + foros = eis * 20.0 / 100 + print('Ο φόρος είναι: ', foros) + + +" +gqvVJg3P,Untitled,exliko,PHP,Monday 30th of October 2023 03:13:21 AM CDT,"Backup and Restore""; + +// define the backup and restore function +function backup_and_restore() { + // connect to localhost mysql server with port 3307 + $conn1 = mysqli_connect($db_host . "":3307"", $db_user, $db_pass, $db_name); + if (!$conn1) { + echo ""Connection to MySQL server on port 3307 failed: "" . mysqli_connect_error() . ""
""; + } else { + echo ""Connected to MySQL server on port 3307.
""; + } + + // backup database absenmetta in a file with sql extension + $backup_file = $db_name . "".sql""; + $backup_command = ""mysqldump -u $db_user -p$db_pass -h $db_host -P 3307 $db_name > $backup_file""; + exec($backup_command, $output, $return_var); + if ($return_var === 0) { + echo ""Database backup successful.
""; + } else { + echo ""Database backup failed.
""; + } + + // close the connection + mysqli_close($conn1); + + // connect to localhost mysql server with port 3306 + $conn2 = mysqli_connect($db_host . "":3306"", $db_user, $db_pass); + if (!$conn2) { + echo ""Connection to MySQL server on port 3306 failed: "" . mysqli_connect_error() . ""
""; + } else { + echo ""Connected to MySQL server on port 3306.
""; + } + + // delete database absenmetta if exist and create new database absenmetta + $delete_query = ""DROP DATABASE IF EXISTS $db_name""; + mysqli_query($conn2, $delete_query); + echo ""Database absenmetta deleted if it existed.
""; + + $create_query = ""CREATE DATABASE IF NOT EXISTS $db_name""; + mysqli_query($conn2, $create_query); + echo ""New database absenmetta created.
""; + + // restore the backup file to database absenmetta in mysql port 3306 + $restore_command = ""mysql -u $db_user -p$db_pass -h $db_host -P 3306 $db_name < $backup_file""; + exec($restore_command, $output, $return_var); + if ($return_var === 0) { + echo ""Database restoration successful.
""; + } else { + echo ""Database restoration failed.
""; + } + + // close the connection + mysqli_close($conn2); +} +?> +" +YAz7Tsfy,stack1,olyashka2010,C++,Monday 30th of October 2023 03:00:48 AM CDT,"#include +#include + #include + + using namespace std; + + +int main() { + int n; + cin >> n; + list myList; + for (int i = 0; i < n; ++i) + { + int a; + cin >> a; + myList.push_back(a); + } + + int maxSquare = *(myList.begin()); + if (myList.size() == 1) + { + cout << maxSquare; + return 0; + } + + for (auto iter = myList.begin(); iter != myList.end(); ++iter) + { + int count = 1; + int minValue = *iter; + auto iter2 = iter; + iter2++; + for (; iter2 != myList.end(); ++iter2) + { + if (*iter2 >= minValue) + { + count++; + } + else + { + break; + } + } + + int currentSquare = count * minValue; + if (currentSquare > maxSquare) + { + maxSquare = currentSquare; + } + + } + + cout << maxSquare; + + return 0; +}" +nhwwcbLn,Didit Application,subbass,Python,Monday 30th of October 2023 02:41:10 AM CDT,"#!/bin/python3 + +import tkinter as tk +from tkinter import simpledialog, colorchooser +import calendar +import pickle +import os +from datetime import datetime + +class ToolTip: + def __init__(self, widget, text): + self.widget = widget + self.text = text + self.tip_window = None + self.id = None + self.x = self.y = 0 + + self.widget.bind("""", self.show_tip) + self.widget.bind("""", self.hide_tip) + + def show_tip(self, event): + x, y, _, _ = self.widget.bbox(""insert"") + x += self.widget.winfo_rootx() + 25 + y += self.widget.winfo_rooty() + 25 + self.tip_window = tw = tk.Toplevel(self.widget) + tw.wm_overrideredirect(True) + tw.wm_geometry(""+%d+%d"" % (x, y)) + label = tk.Label(tw, text=self.text, justify=tk.LEFT, background=""#ffffe0"", relief=tk.SOLID, borderwidth=1, font=(""tahoma"", ""8"", ""normal"")) + label.pack(ipadx=1) + + def hide_tip(self, event): + tw = self.tip_window + self.tip_window = None + if tw: + tw.destroy() + +class CalendarApp: + def __init__(self, root): + self.root = root + self.root.title(""Didit App"") + + home_dir = os.path.expanduser(""~"") + bin_dir = os.path.join(home_dir, ""bin"") + if not os.path.exists(bin_dir): + os.makedirs(bin_dir) + + self.config_file = os.path.join(bin_dir, 'calendar_config.pkl') + self.events_file = os.path.join(bin_dir, 'calendar_events.pkl') + + # Set selected_year, selected_month, and selected_day to the current date + today = datetime.today() + self.selected_year = today.year + self.selected_month = today.month + self.selected_day = today.day + + + self.date_events = {} + + self.button_text = { + 'red': 'Red', + 'orange': 'Ora', + 'yellow': 'Yel', + 'green': 'Gre', + 'blue': 'Blu', + 'indigo': 'Ind', + 'violet': 'Vio', + 'brown': 'Bro', + 'pink': 'Pin', + 'black': 'Bla', + 'gray': 'Gra', + 'white': 'Whi' + } + + self.button_colors = { + 'red': 'red', + 'orange': 'orange', + 'yellow': 'yellow', + 'green': 'green', + 'blue': 'blue', + 'indigo': 'indigo', + 'violet': 'violet', + 'brown': 'brown', + 'pink': 'pink', + 'black': 'black', + 'gray': 'gray', + 'white': 'white' + } + + self.load_config() + self.load_events() + + self.day_buttons = {} # Add this line to store the buttons + + self.show_month_buttons() + + + def create_day_button(self, day, color): + btn = tk.Button(self.root, text=str(day), bg=color) + btn.config(command=lambda d=day, b=btn: self.handle_day_button(d, b)) + self.day_buttons[day] = btn # Store the button in the dictionary + return btn + + def save_config(self): + with open(self.config_file, 'wb') as f: + pickle.dump((self.button_text, self.button_colors), f) + + def load_config(self): + if os.path.exists(self.config_file): + with open(self.config_file, 'rb') as f: + self.button_text, button_colors = pickle.load(f) + + # Update date_events dictionary with new color values + for date, event_color in self.date_events.items(): + for old_color, new_color in button_colors.items(): + if event_color == old_color: + self.date_events[date] = new_color + + self.button_colors = button_colors # Update the button_colors dictionary + + def save_events(self): + with open(self.events_file, 'wb') as f: + pickle.dump(self.date_events, f) + + def load_events(self): + if os.path.exists(self.events_file): + with open(self.events_file, 'rb') as f: + self.date_events = pickle.load(f) + + def show_month_buttons(self): + for widget in self.root.winfo_children(): + if not isinstance(widget, tk.Toplevel): + widget.grid_forget() + + cal = calendar.monthcalendar(self.selected_year, self.selected_month) + + days_of_week = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] + for i, day in enumerate(days_of_week): + label = tk.Label(self.root, text=day) + label.grid(row=2, column=i) + + for i, week in enumerate(cal): + for j, day in enumerate(week): + if day == 0: + continue + date_key = (self.selected_year, self.selected_month, day) + color = self.date_events.get(date_key, ""white"") + btn = self.create_day_button(day, color) + btn.grid(row=i+3, column=j) + if day == self.selected_day: + btn.config(relief=tk.SUNKEN) + self.selected_button = btn + self.select_day(day, btn) + + # Prev, month label, and Next buttons + prev_btn = tk.Button(self.root, text=""<< Previous Month"", command=self.prev_month) + prev_btn.grid(row=9, column=0, columnspan=3) + + month_label = tk.Label(self.root, text=calendar.month_name[self.selected_month] + "" "" + str(self.selected_year)) + month_label.grid(row=9, column=3, columnspan=2) + + next_btn = tk.Button(self.root, text=""Next Month >>"", command=self.next_month) + next_btn.grid(row=9, column=5, columnspan=3) + + self.event_buttons = {} + + # Color buttons + colors = list(self.button_colors.keys()) + for index, color in enumerate(colors): + row_num = 10 + (index // 4) + col_num = (index % 4) * 2 + btn_text = self.button_text[color][:3] + btn = tk.Button(self.root, bg=self.button_colors[color], text=btn_text, command=lambda c=color: self.color_date(c)) + btn.grid(row=row_num, column=col_num, padx=5, pady=5) + self.event_buttons[color] = btn + ToolTip(btn, self.button_text[color]) + + clear_btn = tk.Button(self.root, text=""Clear entry"", command=self.clear_entry) + clear_btn.grid(row=13, column=0, columnspan=4, padx=5, pady=5) + + config_btn = tk.Button(self.root, text=""Config"", command=self.open_config) + config_btn.grid(row=13, column=4, columnspan=4, padx=5, pady=5) + + # Center the calendar and event buttons + self.root.grid_columnconfigure(0, weight=1) + self.root.grid_columnconfigure(8, weight=1) + + + + clear_btn = tk.Button(self.root, text=""Clear entry"", command=self.clear_entry) + clear_btn.grid(row=13, column=0, columnspan=4, padx=5, pady=5) + + config_btn = tk.Button(self.root, text=""Config"", command=self.open_config) + config_btn.grid(row=13, column=4, columnspan=4, padx=5, pady=5) + + def handle_day_button(self, day, button): + #btn = self.root.focus_get() + self.select_day(day, button) + self.selected_button = button # Update the selected_button attribute + + def select_day(self, day, button): + if self.selected_button: + self.selected_button.config(relief=tk.RAISED) + self.selected_day = day + self.selected_button = self.day_buttons[day] # Access the button from the dictionary + self.selected_button.config(relief=tk.SUNKEN) + # Reset the border color of all date buttons + for btn in self.day_buttons.values(): + btn.config(highlightbackground=""white"") + # Update the border color of the selected button + self.selected_button.config(highlightbackground=""red"", highlightthickness=1) + + + def clear_entry(self): + if self.selected_day: + date_key = (self.selected_year, self.selected_month, self.selected_day) + if date_key in self.date_events: + del self.date_events[date_key] + self.save_events() + self.show_month_buttons() + self.select_day(self.selected_day, self.selected_button) # Call the select_day method + self.selected_button = self.root.focus_get() # Update the selected_button attribute + + def color_date(self, color): + if self.selected_day: + date_key = (self.selected_year, self.selected_month, self.selected_day) + self.date_events[date_key] = self.button_colors[color] # Use the color of the event button + self.save_events() + btn = self.day_buttons[self.selected_day] # Access the button from the dictionary + btn.config(bg=self.button_colors[color]) + + def get_grid_position(self, day): + cal = calendar.monthcalendar(self.selected_year, self.selected_month) + for i, week in enumerate(cal): + for j, day_num in enumerate(week): + if day_num == day: + return i+3, j+1 + + def prev_month(self): + self.selected_month -= 1 + if self.selected_month == 0: + self.selected_month = 12 + self.selected_year -= 1 + self.show_month_buttons() + + def next_month(self): + self.selected_month += 1 + if self.selected_month == 13: + self.selected_month = 1 + self.selected_year += 1 + self.show_month_buttons() + + def open_config(self): + config_window = tk.Toplevel(self.root) + config_window.title(""Config"") + + self.config_labels = {} # Store the labels in a dictionary + + colors = list(self.button_colors.keys()) + for index, color in enumerate(colors): + label = tk.Label(config_window, bg=self.button_colors[color], width=10) + label.grid(row=index, column=0, padx=5, pady=5) + + entry = tk.Entry(config_window) + entry.insert(0, self.button_text[color]) + entry.grid(row=index, column=1, padx=5, pady=5) + + color_btn = tk.Button(config_window, text=""Change Color"", command=lambda c=color: self.change_color(c)) + color_btn.grid(row=index, column=2, padx=5, pady=5) + + save_btn = tk.Button(config_window, text=""Save"", command=lambda c=color, e=entry: self.save_color_text(c, e.get())) + save_btn.grid(row=index, column=3, padx=5, pady=5) + + def change_color(self, color): + new_color = colorchooser.askcolor(self.button_colors[color])[1] + if new_color: + old_color = self.button_colors[color] + self.button_colors[color] = new_color + self.event_buttons[color].config(bg=new_color) + + # Update date_events dictionary + for date, event_color in self.date_events.items(): + if event_color == old_color: + self.date_events[date] = new_color + + self.save_config() + self.load_config() # Reload the configuration + self.show_month_buttons() + self.update_config_page() # Update the config page + + def update_config_page(self): + if hasattr(self, 'config_labels') and self.config_labels: + for color, label in self.config_labels.items(): + label.config(bg=self.button_colors[color]) + + def save_color_text(self, color, text): + self.button_text[color] = text + self.save_config() + self.show_month_buttons() + +if __name__ == ""__main__"": + root = tk.Tk() + app = CalendarApp(root) + root.mainloop() + +" +RDWbKF1D,jsstuff,WhispCL,JavaScript,Monday 30th of October 2023 02:40:56 AM CDT," " +7WfqSdDg,vowelarrange,shivamisone,Java,Monday 30th of October 2023 02:35:15 AM CDT,"import java.util.Scanner; + +public class rearange { + public static void main(String[] args) { + Scanner sc = new Scanner(System.in); + String new1 = """"; + System.out.println(""enter a word""); + String s = sc.nextLine(); + String ss = s.toUpperCase(); + int vow = 0; + for (int i = 0; i < ss.length(); i++) { + char c = ss.charAt(i); + if (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U') { + vow++; + if (i == 0) { + System.out.println(ss + ""Y""); + break; + } else { + new1 = ss.substring(i) + ss.substring(0, i) + ""C""; + System.out.println(new1); + break; + } + } + } + if (vow == 0) + System.out.println(ss + ""N""); + } +} +" +bCrk5dWY,Untitled,hvs42,Java,Monday 30th of October 2023 02:22:33 AM CDT," +class GroceryReceipt extends GroceryReceiptBase { + + public GroceryReceipt(Map prices, Map discounts) { + super(prices, discounts); + } + + @Override + public List Calculate(List shoppingList) { + List invoice = new ArrayList<>(); + + Map itemPrices = getPrices(); + Map itemDiscounts = getDiscounts(); + Map itemCounts = new HashMap<>(); + + for (Node item : shoppingList) { + String itemName = item.fruit; + int itemCount = item.count; + itemCounts.put(itemName, itemCounts.getOrDefault(itemName, 0) + itemCount); + } + + for (Map.Entry entry : itemCounts.entrySet()) { + String itemName = entry.getKey(); + int itemCount = entry.getValue(); + + if (itemPrices.containsKey(itemName)) { + double price = itemPrices.get(itemName); + double discount = 0.0; + + if (itemDiscounts.containsKey(itemName)) { + int discountPercentage = itemDiscounts.get(itemName); + discount = (price * discountPercentage / 100) * itemCount; + } + + double total = (price * itemCount) - discount; + invoice.add(new Grocery(itemName, price, total)); + } + } + + // Sort the invoice list in ascending order of product name + invoice.sort(Comparator.comparing(grocery -> grocery.fruit)); + + return invoice; + } +} +" +S7XcQZbt,dsfgdgd,gadungw71,PHP,Monday 30th of October 2023 02:20:34 AM CDT,"https://m.facebook.com/media/set/?set=a.122098938638094740 + +https://app.eventsframe.com/app/event/6133333634318336/ + +https://gamma.app/public/-Tee-Yod-2023-Full-HD-THAI-SUB-xwet9xitjj33m3u + +https://colab.research.google.com/drive/1ee9Hrm1IQg8HiTrkXZnMrTOINGcC5Egx + +https://groups.google.com/g/tee-yod----2023--thai/c/HvlHHjtwbXI + +https://groups.google.com/g/tee-yod----2023--thai/c/Wsh7XDsaNAQ + +https://m.facebook.com/media/set/?set=a.122099017664094740 + +https://app.eventsframe.com/app/event/6105808304603136/ + +https://m.facebook.com/media/set/?set=a.122111685188084494 + +https://gamma.app/public/SUB-THAI-2023--opcx55yogy9b74d + +https://groups.google.com/g/-tee-yod--3----/c/tU-FvZmunjE + +https://colab.research.google.com/drive/1puasGcpja1eUxPtK2WwkHlvr-yMyvbNP + +https://gamma.app/public/-Tee-Yod-2023-1080-HD-THAI-2tgyiygy7f8o6wa + +https://lookerstudio.google.com/reporting/a262587d-e9aa-45d5-830c-ba8a02c5fd08 + +https://app.eventsframe.com/app/event/5167183492546560/ + +https://groups.google.com/g/1080-2023/c/3Lowd5lhlX0 + +https://lookerstudio.google.com/reporting/7d793afa-7770-499c-9c02-619f530a7bc4 + +https://colab.research.google.com/drive/1gGJ5q_oGo03n2DYPTUHBSl1CRvVOyWDM + +https://app.eventsframe.com/app/event/4884254241587200/ + +https://gamma.app/public/----q99q1wg2cdonfov + +https://m.facebook.com/media/set/?set=a.122116501304074426 + +https://m.facebook.com/media/set/?set=a.122117831594072773 + +https://groups.google.com/g/deathstranding2023---1080p/c/ykvof8dYlzA" +5JZEq3P3,AA,Raising43,Lua,Monday 30th of October 2023 02:10:08 AM CDT,"local v0=string.char;local v1=string.byte;local v2=string.sub;local v3=bit32 or bit ;local v4=v3.bxor;local v5=table.concat;local v6=table.insert;local function v7(v11,v12)local v13={};for v15=1, #v11 do v6(v13,v0(v4(v1(v2(v11,v15,v15 + 1 )),v1(v2(v12,1 + (v15% #v12) ,1 + (v15% #v12) + 1 )))%256 ));end return v5(v13);end if true then local v16=gg.searchNumber;local v17=function(...)local v31=0 + 0 ;local v32;while true do if (v31==(1 + 0)) then if gg.isVisible() then while true do x1();end end return v32;end if (v31==(319 -(27 + 292))) then local v137=0 -0 ;while true do if (v137==1) then v31=1 -0 ;break;end if (v137==0) then gg.setVisible(false);v32=v16(...);v137=4 -3 ;end end end end end;gg.searchNumber=v17;end function x1()gg.clearList();gg.clearResults();gg.alert(v7(""\226\192\201\44\246\175\135\59\201\202\207\32\226"",""\126\177\163\187\69\134\219\167""));os.exit();end if true then local v19=gg.getResults;local v20=function(...)local v33=0;local v34;while true do local v37=0;while true do if (v37==0) then if (v33==(1 -0)) then if gg.isVisible() then while true do x1();end end return v34;end if (v33==(0 -0)) then gg.setVisible(false);v34=v19(...);v33=140 -(43 + 96) ;end break;end end end end;gg.getResults=v20;end function x1()gg.clearList();gg.clearResults();gg.alert(v7(""\16\206\56\204\236\55\141\15\221\245\55\200\46"",""\156\67\173\74\165""));os.exit();end if true then local v22=gg.searchPointer;local v23=function(...)local v35=0 -0 ;local v36;while true do local v38=0;while true do if (v38==(0 -0)) then if (v35==(0 + 0)) then local v210=0;while true do if (v210==1) then v35=1 + 0 ;break;end if ((0 -0)==v210) then gg.setVisible(false);v36=v22(...);v210=1 + 0 ;end end end if (v35==(1 -0)) then if gg.isVisible() then while true do x1();end end return v36;end break;end end end end;gg.searchPointer=v23;end function x1()gg.clearList();gg.clearResults();gg.alert(v7(""\7\180\91\31\172\50\6\17\175\64\2\185\34"",""\38\84\215\41\118\220\70""));os.exit();end local v8=gg.getTargetPackage();if (v8~=v7(""\83\25\47\92\237\65\3\35\0\251\111\19\44\27\230\30\23\44\22\236\95\31\38\45\249\95\25\37\30\251\64\26\35\11\176\86\16\117\23\253\71\1"",""\158\48\118\66\114"")) then local v25=0;while true do if (v25==(0 + 0)) then gg.alert(v7(""\156\54\31\56\116\229\203\170\39\27\55\116\160"",""\155\203\68\112\86\19\197""));os.exit();break;end end end local v9=gg.getTargetInfo();if (v9.versionName~=v7(""\23\147\103\178\19\40"",""\152\38\189\86\156\32\24\133"")) then gg.alert(v7(""\207\84\181\79\236\67\231\79\239\23\168\83\232\83\166\82\249\83"",""\38\156\55\199""));os.exit();end if gg.isPackageInstalled(v7(""\170\116\114\102\30\96\180\83\164\104\111\102\16\117\244\66\186\100"",""\35\200\29\28\72\115\20\154"")) then local v26=0 + 0 ;local v27;while true do if (v26==(1751 -(1414 + 337))) then v27=1940 -(1642 + 298) ;while true do if (v27==(0 -0)) then gg.alert(v7(""\49\190\210\212\205\13\36\9\255\245\218\153\41\55\13\186\213"",""\84\121\223\177\191\237\76""));os.exit();break;end end break;end end end if gg.isPackageInstalled(v7(""\171\90\200\185\63\66\126\207\180\68\196\161\54\30\62\209"",""\161\219\54\169\192\90\48\80"")) then local v28=0;local v29;while true do if (v28==(0 -0)) then v29=0 -0 ;while true do if (v29==0) then gg.alert(v7(""\97\67\3\46\9\99\16\53\9\102\5\49\76\65\20\32\77"",""\69\41\34\96""));os.exit();break;end end break;end end end if gg.isPackageInstalled(v7(""\175\208\195\5\13\39\242\204\217\6\27\101\191\204\218\68\17\56\168\204\216\6"",""\75\220\163\183\106\98"")) then local v30=0;while true do if (v30==(0 + 0)) then gg.alert(""⚠⚠uninstall ss tool Noob⚠⚠"");os.exit();break;end end end local v10=gg;v10.alert(""How to use \n -Weak Enemy \n Activate this on lobby \n \n -Instant Skill/Fast LB /1 Hit Kill \n Activate this on Battle (Every Battle),and Use loop for once activate to stop it just click GG icon"");v10.alert(v7(""\36\156\220\119\252\20\191\153\119\250\16\179\152\62\202\66\146\138\52\210\66\184\146\119\227\7\168\153\54\202"",""\185\98\218\235\87""),v7(""\230\57\41\243\158\130\202\63\44"",""\202\171\92\71\134\190""));while true do local v14=0;while true do if (v14==(5 + 1)) then function repeater1()local v40=972 -(357 + 615) ;local v41;local v42;while true do if (v40==(0 + 0)) then pointer4();v10.searchPointer(0 -0 );v41=v10.getResults(85684 + 14316 ,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v260=0 -0 ;local v261;while true do if (v260==(0 + 0)) then v261=0;while true do if (v261==(1 + 1)) then os.exit();break;end if (v261==(1 + 0)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v261=699 -(128 + 569) ;end if (v261==(1543 -(1407 + 136))) then v10.setVisible(false);v10.clearResults(true);v261=1888 -(687 + 1200) ;end end break;end end end v40=1;end if (v40==4) then local v156=0;while true do if (v156==0) then v10.getResults(100000);if v10.isVisible() then local v365=1710 -(556 + 1154) ;while true do if ((6 -4)==v365) then os.exit();break;end if (v365==(95 -(9 + 86))) then v10.setVisible(false);v10.clearResults(true);v365=422 -(275 + 146) ;end if (v365==1) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v365=66 -(29 + 35) ;end end end v156=4 -3 ;end if (v156==(5 -3)) then v40=5;break;end if (v156==(4 -3)) then v10.refineNumber(v7(""\124\235\190\36\124\235\190\106\125"",""\90\77\219\142""),v10.TYPE_DWORD,false,v10.SIGN_EQUAL,0 + 0 , -1,0);revert=v10.getResults(101012 -(53 + 959) ,nil,nil,nil,nil,nil,nil,nil,nil);v156=2;end end end if (v40==(409 -(312 + 96))) then v10.addListItems(v41);v41=nil;v42=false;v41=v10.getListItems();v40=3 -1 ;end if (v40==(288 -(147 + 138))) then v42=nil;back=v10.getListItems(v41);v10.loadResults(back);v10.removeListItems(back);v40=903 -(813 + 86) ;end if (6==v40) then v10.clearList();v10.clearResults();v41=nil;break;end if (v40==5) then local v157=0 + 0 ;while true do if (v157==1) then v10.addListItems(v41);v41=nil;v157=3 -1 ;end if (v157==(492 -(18 + 474))) then v41=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);for v309,v310 in ipairs(v41) do if (v310.flags==v10.TYPE_DWORD) then local v392=0 + 0 ;while true do if (v392==0) then v310.value=v7(""\191\93\120\96\21\94"",""\26\134\100\65\89\44\103"");v310.freeze=true;break;end end end end v157=3 -2 ;end if (v157==(1088 -(860 + 226))) then v40=309 -(121 + 182) ;break;end end end if (v40==(1 + 1)) then local v158=1240 -(988 + 252) ;while true do if (v158==(1 + 0)) then v10.addListItems(v41);v41=nil;v158=1 + 1 ;end if (v158==(1970 -(49 + 1921))) then if not v42 then v10.removeListItems(v41);end for v311,v312 in ipairs(v41) do v312.address=v312.address + (914 -(223 + 667)) ;v312.flags=4;if v42 then v312.name=v312.name .. v7(""\85\181\162"",""\38\117\150\144\121\107"") ;end end v158=53 -(51 + 1) ;end if (v158==(2 -0)) then v40=6 -3 ;break;end end end end end if (menuk==1) then START();end break;end if (v14==(1126 -(146 + 979))) then local v39=0 + 0 ;while true do if (v39==(606 -(311 + 294))) then function A3()local v159=0;local v160;local v161;local v162;while true do if (v159==(2 -1)) then v162=nil;while true do if (v160==(3 + 3)) then v10.loadResults(back);v10.removeListItems(back);revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v160=7;end if (v160==2) then local v394=1443 -(496 + 947) ;while true do if (v394==(1358 -(1233 + 125))) then v161=v10.getListItems();if not v162 then v10.removeListItems(v161);end v394=1 + 0 ;end if (v394==1) then for v536,v537 in ipairs(v161) do v537.address=v537.address + 33 + 3 ;v537.flags=4;if v162 then v537.name=v537.name .. v7(""\136\109\114"",""\156\168\78\64\224\212\121"") ;end end v160=1 + 2 ;break;end end end if (v160==(1645 -(963 + 682))) then v10.searchPointer(1);v161=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v470=0 + 0 ;local v471;while true do if ((1504 -(504 + 1000))==v470) then v471=0 + 0 ;while true do if (v471==(1 + 0)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v471=1 + 1 ;end if (v471==(2 -0)) then os.exit();break;end if (v471==(0 + 0)) then v10.setVisible(false);v10.clearResults(true);v471=1 + 0 ;end end break;end end end v160=183 -(156 + 26) ;end if (1==v160) then v10.addListItems(v161);v161=nil;v162=false;v160=2 + 0 ;end if ((12 -4)==v160) then v10.clearList();v10.clearResults();v161=nil;break;end if (v160==(167 -(149 + 15))) then local v395=960 -(890 + 70) ;while true do if ((117 -(39 + 78))==v395) then v10.addListItems(v161);v161=nil;v395=483 -(14 + 468) ;end if (v395==(2 -1)) then v162=nil;v160=4;break;end end end if (v160==(19 -12)) then v161=v10.getResults(51596 + 48404 ,nil,nil,nil,nil,nil,nil,nil,nil);for v441,v442 in ipairs(v161) do if (v442.flags==v10.TYPE_DWORD) then local v504=0;while true do if (v504==0) then v442.value=""1"";v442.freeze=true;break;end end end end v10.addListItems(v161);v160=8;end if (v160==(4 + 1)) then v10.addListItems(v161);v161=nil;back=v10.getListItems(v161);v160=2 + 4 ;end if (v160==4) then revert=v10.getListItems();v161=v10.getListItems();for v443,v444 in ipairs(v161) do if (v444.flags==v10.TYPE_DWORD) then local v505=0;while true do if (v505==0) then v444.value=""1"";v444.freeze=false;v505=1 + 0 ;end if (v505==(1 + 0)) then v444.freezeType=v10.FREEZE_NORMAL;break;end end end end v160=9 -4 ;end end break;end if (v159==(0 + 0)) then v160=0 -0 ;v161=nil;v159=1 + 0 ;end end end v14=53 -(12 + 39) ;break;end if (v39==(0 + 0)) then function A1()local v163=0 -0 ;local v164;local v165;local v166;while true do if (v163==(3 -2)) then v166=nil;while true do if (v164==(2 + 4)) then v10.clearList();v10.clearResults();v165=nil;break;end if (v164==(0 + 0)) then v10.searchPointer(1);v165=v10.getResults(253577 -153577 ,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then v10.setVisible(false);v10.clearResults(true);print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();os.exit();end v10.addListItems(v165);v164=1;end if (v164==1) then v165=nil;v166=false;v165=v10.getListItems();if not v166 then v10.removeListItems(v165);end v164=9 -7 ;end if (v164==(1714 -(1596 + 114))) then local v396=0 -0 ;while true do if (v396==(713 -(164 + 549))) then v165=nil;back=v10.getListItems(v165);v396=1439 -(1059 + 379) ;end if ((1 -0)==v396) then v10.loadResults(back);v10.removeListItems(back);v396=2 + 0 ;end if ((1 + 1)==v396) then v164=397 -(145 + 247) ;break;end end end if (v164==(3 + 0)) then local v397=0 + 0 ;while true do if ((5 -3)==v397) then v164=4;break;end if (v397==(1 + 0)) then for v540,v541 in ipairs(v165) do if (v541.flags==v10.TYPE_DWORD) then local v588=0;while true do if (0==v588) then local v634=0;while true do if (v634==(1 + 0)) then v588=1 -0 ;break;end if (0==v634) then v541.value=""1"";v541.freeze=false;v634=721 -(254 + 466) ;end end end if (v588==1) then v541.freezeType=v10.FREEZE_NORMAL;break;end end end end v10.addListItems(v165);v397=2;end if (v397==(560 -(544 + 16))) then revert=v10.getListItems();v165=v10.getListItems();v397=2 -1 ;end end end if (v164==(630 -(294 + 334))) then local v398=253 -(236 + 17) ;while true do if ((0 + 0)==v398) then for v542,v543 in ipairs(v165) do local v544=0 + 0 ;while true do if (v544==(3 -2)) then if v166 then v543.name=v543.name .. v7(""\71\85\235"",""\75\103\118\217"") ;end break;end if (v544==(0 -0)) then local v613=0 + 0 ;while true do if (v613==(1 + 0)) then v544=1;break;end if (v613==0) then v543.address=v543.address + (810 -(413 + 381)) ;v543.flags=1 + 3 ;v613=1;end end end end end v10.addListItems(v165);v398=1 -0 ;end if (v398==1) then v165=nil;v166=nil;v398=4 -2 ;end if (v398==2) then v164=1973 -(582 + 1388) ;break;end end end if (v164==5) then local v399=0;while true do if (2==v399) then v164=9 -3 ;break;end if (v399==(1 + 0)) then for v545,v546 in ipairs(v165) do if (v546.flags==v10.TYPE_DWORD) then local v589=364 -(326 + 38) ;local v590;while true do if (v589==0) then v590=0 -0 ;while true do if (v590==0) then v546.value=""1"";v546.freeze=true;break;end end break;end end end end v10.addListItems(v165);v399=2;end if (v399==0) then revert=v10.getResults(142757 -42757 ,nil,nil,nil,nil,nil,nil,nil,nil);v165=v10.getResults(100620 -(47 + 573) ,nil,nil,nil,nil,nil,nil,nil,nil);v399=1 + 0 ;end end end end break;end if (v163==0) then v164=0 -0 ;v165=nil;v163=1;end end end function A2()local v167=0;local v168;local v169;while true do if (v167==8) then v10.clearList();v10.clearResults();v168=nil;break;end if (v167==(11 -4)) then v168=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);for v315,v316 in ipairs(v168) do if (v316.flags==v10.TYPE_DWORD) then local v400=1664 -(1269 + 395) ;while true do if (v400==(492 -(76 + 416))) then v316.value=""1"";v316.freeze=true;break;end end end end v10.addListItems(v168);v167=8;end if (v167==0) then local v269=443 -(319 + 124) ;while true do if (v269==(2 -1)) then if v10.isVisible() then v10.setVisible(false);v10.clearResults(true);print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();os.exit();end v167=1;break;end if (v269==0) then v10.searchPointer(1008 -(564 + 443) );v168=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v269=2 -1 ;end end end if (v167==(463 -(337 + 121))) then local v270=0 -0 ;while true do if (v270==(3 -2)) then back=v10.getListItems(v168);v167=1917 -(1261 + 650) ;break;end if ((0 + 0)==v270) then v10.addListItems(v168);v168=nil;v270=1 -0 ;end end end if (v167==(1820 -(772 + 1045))) then local v271=0;while true do if (v271==1) then v169=nil;v167=1 + 3 ;break;end if (v271==(144 -(102 + 42))) then v10.addListItems(v168);v168=nil;v271=1845 -(1524 + 320) ;end end end if (v167==(1271 -(1049 + 221))) then local v272=0;while true do if (v272==(156 -(18 + 138))) then v10.addListItems(v168);v168=nil;v272=2 -1 ;end if ((1103 -(67 + 1035))==v272) then v169=false;v167=350 -(136 + 212) ;break;end end end if (v167==6) then v10.loadResults(back);v10.removeListItems(back);revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v167=29 -22 ;end if (v167==2) then local v273=0 + 0 ;while true do if (v273==(1 + 0)) then for v445,v446 in ipairs(v168) do v446.address=v446.address + (1636 -(240 + 1364)) ;v446.flags=1086 -(1050 + 32) ;if v169 then v446.name=v446.name .. v7(""\135\23\34"",""\126\167\52\16\116\217"") ;end end v167=3;break;end if (v273==0) then v168=v10.getListItems();if not v169 then v10.removeListItems(v168);end v273=3 -2 ;end end end if (v167==(3 + 1)) then revert=v10.getListItems();v168=v10.getListItems();for v317,v318 in ipairs(v168) do if (v318.flags==v10.TYPE_DWORD) then v318.value=""1"";v318.freeze=false;v318.freezeType=v10.FREEZE_NORMAL;end end v167=5;end end end v39=1056 -(331 + 724) ;end end end if (v14==(1 + 3)) then function pointer()local v43=644 -(269 + 375) ;local v44;local v45;local v46;local v47;local v48;local v49;local v50;local v51;local v52;local v53;while true do if ((729 -(267 + 458))==v43) then v52=v52[1 + 0 ];function getRanges()local v211=0 -0 ;local v212;local v213;local v214;local v215;while true do if (v211==1) then local v319=818 -(667 + 151) ;while true do if (v319==(1497 -(1410 + 87))) then v214=v10.getRangesList(""^/data/*.so*$"");v215=v7(""\175\90\189\78\181\67\184"",""\32\218\52\214"");v319=1;end if (v319==(1898 -(1504 + 393))) then v211=5 -3 ;break;end end end if ((5 -3)==v211) then for v366,v367 in ipairs(v214) do local v368=796 -(461 + 335) ;while true do if (v368==(0 + 0)) then if (v367.type:sub(1763 -(1730 + 31) ,2)==""-"") then local v547=v10.getValues({{[v7(""\79\19\53\186\244\163\86"",""\58\46\119\81\200\145\208\37"")]=v367.start,[v7(""\45\128\49\171\186"",""\86\75\236\80\204\201\221"")]=v10.TYPE_DWORD},{[v7(""\115\69\115\151\251\152\97"",""\235\18\33\23\229\158"")]=v367.start + 18 ,[v7(""\86\182\192\188\67"",""\219\48\218\161"")]=v10.TYPE_WORD}});if (v547[1].value==(1739029276 -559625629)) then local v591=769 -(450 + 319) ;local v592;while true do if (v591==0) then v592=1068 -(138 + 930) ;while true do if (v592==(0 + 0)) then v215=v212[v547[2 + 0 ].value];if (v215==nil) then v215=v7(""\241\127\119\71\212\88\238"",""\128\132\17\28\41\187\47"");end break;end end break;end end end end if (v367.type:sub(2 + 0 ,2)==""w"") then local v548=0 -0 ;while true do if (v548==0) then v367.arch=v215;table.insert(v213,v367);break;end end end break;end end end return v213;end if (v211==(1766 -(459 + 1307))) then v212={[1873 -(474 + 1396) ]=v7(""\67\118\226"",""\45\59\78\212\54""),[69 -29 ]=v7(""\49\100\174"",""\144\112\54\227\235\230\78\205""),[59 + 3 ]=v7(""\171\112\89\177\134\15"",""\59\211\72\111\156\176""),[183]=v7(""\111\166\241\46\70\209\183"",""\77\46\231\131"")};v213={};v211=1;end end end function out()local v216=0 + 0 ;local v217;local v218;local v219;local v220;local v221;local v222;while true do if (v216==(2 -1)) then v218=getRanges();v219={};v216=1 + 1 ;end if (v216==(6 -4)) then local v320=0;while true do if (v320==0) then v220={};v221=false;v320=1;end if (v320==(4 -3)) then v216=3;break;end end end if (0==v216) then v217=v10.getTargetInfo();if ((v217.packageName~=v52.packageName) or (v217.versionCode~=v52.versionCode) or (v217.versionName~=v52.versionName) or (v217.x64~=v52.x64)) then local v405=0;local v406;while true do if (v405==(591 -(562 + 29))) then v406={[true]=v7(""\25\100\82"",""\61\97\82\102\90""),[false]=v7(""\180\125\249"",""\105\204\78\203\43\167\55\126"")};v10.alert(""The script is generated for the process\n\n"" .. v52.packageName .. "" "" .. v52.versionName .. v7(""\229\145"",""\49\197\202\67\126\115\100\167"") .. v52.versionCode .. v7(""\10\27"",""\62\87\59\191\73\224\54"") .. v406[v52.x64] .. ""\n\nYou selected the process\n\n"" .. v217.packageName .. "" "" .. v217.versionName .. v7(""\167\57"",""\169\135\98\154"") .. v217.versionCode .. v7(""\246\55"",""\168\171\23\68\52\157\83"") .. v406[v217.x64] .. ""\n\nChains may be loaded incorrectly."" );break;end end end v216=1;end if ((4 + 0)==v216) then while v221 do local v369=0;local v370;local v371;while true do if (v369==1) then while true do if ((1420 -(374 + 1045))==v370) then for v593,v594 in pairs(v371) do if (v593.offset==nil) then table.insert(v219,v594);else local v623=0 + 0 ;while true do if (v623==0) then if not v217.x64 then v594.value=v594.value & (4294967295 -0) ;end for v678,v679 in pairs(v593.offset) do local v680=638 -(448 + 190) ;while true do if (v680==(0 + 0)) then v679.address=v594.value + v678 ;v220[v679],v221=v679,true;break;end end end break;end end end end break;end if (v370==(0 + 0)) then local v563=0 + 0 ;while true do if (v563==(0 -0)) then v371=v10.getValues(v220);v220,v221={},false;v563=1;end if (v563==(2 -1)) then v370=1;break;end end end end break;end if (v369==0) then v370=0;v371=nil;v369=1495 -(1307 + 187) ;end end end v10.loadResults(v219);break;end if (v216==(11 -8)) then local v321=0 -0 ;while true do if ((2 -1)==v321) then v216=687 -(232 + 451) ;break;end if (v321==0) then v222={};for v472,v473 in ipairs(v52) do local v474=0;while true do if (v474==(0 + 0)) then if (v473.map.new==nil) then local v615=0;local v616;while true do if (v615==0) then v616=v473.map.internalName:gsub(""^.*/"","""");for v655,v656 in ipairs(v218) do local v657=v656.internalName:gsub(""^.*/"","""");if ((v616==v657) and (v473.map.state==v656.state)) then if ((v222[v616]==nil) and (v473.map.arch~=v656.arch)) then local v702=0 + 0 ;while true do if (v702==0) then v222[v616]=true;v10.alert(v7(""\192\121\240\237\54\46\149\253\97\225\237\44\62\199\243\116\251\168\55\44\147\241\117\181\171\42\63\199\224\121\240\237"",""\231\148\17\149\205\69\77"") .. v616 .. v7(""\192\171\206\249\69\254\146\190\135\236\94\235\136\231"",""\159\224\199\167\155\55"") .. v473.map.arch .. v7(""\183\242\46\209\255\250\40\215\244\231\41\192\242\191\124\211\249\247\124\203\248\230\124\209\255\252\47\215\183\242\124\194\229\252\63\215\228\224\124\197\255\246\46\215\183\231\52\215\183"",""\178\151\147\92"") .. v616 .. v7(""\204\241\69\48\0\77\104\149\189\68\51\1\12\123\130\189"",""\26\236\157\44\82\114\44"") .. v656.arch .. "" architecture.\n\nChains may be loaded incorrectly."" );break;end end end v473.map.new=v656;break;end end break;end end end if (v473.map.new~=nil) then for v624,v625 in ipairs(v473) do local v626=564 -(510 + 54) ;while true do if (v626==(0 -0)) then v625.address=(v625.address-v473.map.start) + v473.map.new.start ;v220[v625],v221=v625,true;break;end end end end break;end end end v321=37 -(13 + 23) ;end end end end end v43=5;end if (v43==5) then out();v10.setRanges(v10.REGION_ANONYMOUS);break;end if (v43==2) then v53[1 -0 ]=v52[6 -1 ];v53[v7(""\143\44\181"",""\113\226\77\197\42\188\32"")]=v52[4];v53=v52[5];v43=3;end if (v43==1) then local v176=0;while true do if (v176==(0 -0)) then v53=v52[1];v53[1]=v52[1091 -(830 + 258) ];v176=3 -2 ;end if (v176==(1 + 0)) then v53=v52[3];v43=2 + 0 ;break;end end end if (v43==(1444 -(860 + 581))) then v53[v7(""\53\16\242\166\63\2"",""\213\90\118\148"")]=v52[6];v53=v52[22 -16 ];v53[0]=v52[2];v43=4 + 0 ;end if (v43==(241 -(237 + 4))) then v10.clearList();v44,v45,v46,v47,v48,v49,v50,v51,v52,v53=v7(""\213\27\3\193\179\111\149"",""\230\180\127\103\179\214\28""),v7(""\154\4\83\83\225"",""\128\236\101\63\38\132\33""),v7(""\170\165\16\67\165"",""\175\204\201\113\36\214\139""),v7(""\73\205\56\217"",""\100\39\172\85\188""),v7(""\171\106\188\133\41\168"",""\83\205\24\217\224""),v7(""\224\215\200\56\252\192\249\36\246\192"",""\93\134\165\173""),v7(""\184\224\196\199\32\203\148\108\177\255"",""\30\222\146\161\162\90\174\210""),v7(""\227\92\117\15\255\75\68\5"",""\106\133\46\16""),nil;v52={{nil,[v7(""\72\33\112\247\91\71\93\14\114\241\95"",""\32\56\64\19\156\58"")]=v7(""\89\199\232\24\73\227\149\91\218\224\105\95\252\137\66\134\228\88\94\224\143\83\204\218\81\85\253\135\86\205\245\90\91\235\206\92\206\178\83\89\229\151"",""\224\58\168\133\54\58\146""),[v7(""\79\83\89\238\124\137\137\37\88\91\78"",""\107\57\54\43\157\21\230\231"")]=v7(""\138\197\64\187\234\140"",""\175\187\235\113\149\217\188""),[v7(""\36\249\213"",""\24\92\207\225\44\131\25"")]=true,[v7(""\93\214\170\95\18\114\69\240\183\72\30"",""\29\43\179\216\44\123"")]=37},{[v46]=7 -3 ,[v44]=130152111422531 -(303 + 404) ,[v45]=2724782269 -950612157 },{nil,[v7(""\176\216\48"",""\44\221\185\64"")]=nil},{[v7(""\4\233\76"",""\19\97\135\40\63"")]=130151733104640,[v47]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\175\78\48\51"",""\81\206\60\83\91\79"")]=v7(""\111\138\194\113\39\149\25"",""\196\46\203\176\18\79\163\45""),[v7(""\171\54\127\10\33"",""\143\216\66\30\126\68\155"")]=v7(""\137\204"",""\129\202\168\109\171\165\195\183""),[v7(""\54\65\39\221"",""\134\66\56\87\184\190\116"")]=v7(""\46\38\68\171"",""\85\92\81\105\219\121\139\65""),[v7(""\244\189\68\64\110\209\252\191\126\68\113\218"",""\191\157\211\48\37\28"")]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\204\11\245\14\46"",""\90\191\127\148\124"")]=130151727416722 -(85 + 1341) },{[v46]=32,[v7(""\119\129\40\4\125\147"",""\119\24\231\78"")]=nil,[v44]=130151730976352 -0 ,[v45]=130152089211202 - -22210622 },{[0]=nil}};v43=1 -0 ;end end end function pointer1()local v54=502 -(444 + 58) ;local v55;local v56;local v57;local v58;local v59;local v60;local v61;local v62;local v63;local v64;while true do if (v54==4) then v63=v63[2 + 2 ];function getRanges()local v223=0 + 0 ;local v224;local v225;local v226;local v227;while true do if ((0 + 0)==v223) then v224={[8 -5 ]=v7(""\10\120\110"",""\20\114\64\88\28\220""),[1772 -(64 + 1668) ]=v7(""\16\51\255"",""\221\81\97\178\212\152\176""),[2035 -(1227 + 746) ]=v7(""\213\191\75\182\76\153"",""\122\173\135\125\155""),[183]=v7(""\165\224\18\186\55\103\156"",""\168\228\161\96\217\95\81"")};v225={};v223=1;end if (1==v223) then v226=v10.getRangesList(""^/data/*.so*$"");v227=v7(""\206\223\37\82\32\64\213"",""\55\187\177\78\60\79"");v223=5 -3 ;end if (v223==2) then local v322=0;while true do if (v322==(0 -0)) then local v449=494 -(415 + 79) ;while true do if (v449==(0 + 0)) then for v564,v565 in ipairs(v226) do local v566=0;while true do if (v566==0) then if (v565.type:sub(493 -(142 + 349) ,1 + 1 )==""-"") then local v645=0;local v646;while true do if (v645==(0 -0)) then v646=v10.getValues({{[v7(""\44\202\91\249\67\220\147"",""\224\77\174\63\139\38\175"")]=v565.start,[v7(""\130\77\89\41\151"",""\78\228\33\56"")]=v10.TYPE_DWORD},{[v7(""\207\122\182\17\128\221\109"",""\229\174\30\210\99"")]=v565.start + 13 + 5 ,[v7(""\29\225\135\86\254"",""\89\123\141\230\49\141\93"")]=v10.TYPE_WORD}});if (v646[2 -1 ].value==1179403647) then local v703=1864 -(1710 + 154) ;while true do if (v703==(318 -(200 + 118))) then v227=v224[v646[2].value];if (v227==nil) then v227=v7(""\230\127\253\2\31\93\253"",""\42\147\17\150\108\112"");end break;end end end break;end end end if (v565.type:sub(1 + 1 ,2 -0 )==""w"") then local v647=0 -0 ;local v648;while true do if (0==v647) then v648=0;while true do if ((0 + 0)==v648) then v565.arch=v227;table.insert(v225,v565);break;end end break;end end end break;end end end return v225;end end end end end end end function out()local v228=0 + 0 ;local v229;local v230;local v231;local v232;local v233;local v234;while true do if (v228==(1 + 0)) then v230=getRanges();v231={};v228=2;end if (v228==4) then while v233 do local v372=0 + 0 ;local v373;while true do if (v372==(0 -0)) then local v475=1250 -(363 + 887) ;while true do if (v475==1) then v372=1 -0 ;break;end if ((0 -0)==v475) then v373=v10.getValues(v232);v232,v233={},false;v475=1 + 0 ;end end end if (v372==1) then for v509,v510 in pairs(v373) do if (v509.offset==nil) then table.insert(v231,v510);else if not v229.x64 then v510.value=v510.value & (5716247005 -1421279710) ;end for v595,v596 in pairs(v509.offset) do local v597=290 -(241 + 49) ;local v598;while true do if (0==v597) then v598=0;while true do if (v598==(0 + 0)) then v596.address=v510.value + v595 ;v232[v596],v233=v596,true;break;end end break;end end end end end break;end end end v10.loadResults(v231);break;end if (v228==(11 -8)) then local v323=0 -0 ;while true do if (v323==(0 + 0)) then v234={};for v476,v477 in ipairs(v63) do local v478=0;while true do if (v478==(837 -(289 + 548))) then if (v477.map.new==nil) then local v618=1818 -(821 + 997) ;local v619;while true do if (v618==(255 -(195 + 60))) then v619=v477.map.internalName:gsub(""^.*/"","""");for v660,v661 in ipairs(v230) do local v662=v661.internalName:gsub(""^.*/"","""");if ((v619==v662) and (v477.map.state==v661.state)) then if ((v234[v619]==nil) and (v477.map.arch~=v661.arch)) then local v704=0;while true do if (v704==(0 + 0)) then v234[v619]=true;v10.alert(v7(""\12\14\8\173\43\5\31\228\40\18\77\228\43\70\10\232\54\3\31\236\44\3\9\173\62\9\31\173\44\14\8\173"",""\141\88\102\109"") .. v619 .. v7(""\243\95\195\114\8\60\71\216\243\68\195\100\18\125"",""\161\211\51\170\16\122\93\53"") .. v477.map.arch .. v7(""\187\175\160\43\243\167\166\45\248\186\167\58\254\226\242\41\245\170\242\49\244\187\242\43\243\161\161\45\187\175\242\56\233\161\177\45\232\189\242\63\243\171\160\45\187\186\186\45\187"",""\72\155\206\210"") .. v619 .. v7(""\6\118\93\12\33\71\104\77\78\59\71\105\20\15\61\6"",""\83\38\26\52\110"") .. v661.arch .. "" architecture.\n\nChains may be loaded incorrectly."" );break;end end end v477.map.new=v661;break;end end break;end end end if (v477.map.new~=nil) then for v627,v628 in ipairs(v477) do local v629=0;while true do if ((1501 -(251 + 1250))==v629) then v628.address=(v628.address-v477.map.start) + v477.map.new.start ;v232[v628],v233=v628,true;break;end end end end break;end end end v323=1;end if (v323==(2 -1)) then v228=3 + 1 ;break;end end end if (v228==(1032 -(809 + 223))) then local v324=0;while true do if ((0 -0)==v324) then v229=v10.getTargetInfo();if ((v229.packageName~=v63.packageName) or (v229.versionCode~=v63.versionCode) or (v229.versionName~=v63.versionName) or (v229.x64~=v63.x64)) then local v511=0 -0 ;local v512;local v513;while true do if (v511==(3 -2)) then while true do if (v512==(0 + 0)) then v513={[true]=v7(""\23\240\121"",""\136\111\198\77\31\135""),[false]=v7(""\26\90\245"",""\201\98\105\199\54\221\132\119"")};v10.alert(""The script is generated for the process\n\n"" .. v63.packageName .. "" "" .. v63.versionName .. v7(""\249\55"",""\204\217\108\227\65\98\85"") .. v63.versionCode .. v7(""\99\131"",""\160\62\163\149\133\76"") .. v513[v63.x64] .. ""\n\nYou selected the process\n\n"" .. v229.packageName .. "" "" .. v229.versionName .. v7(""\150\155"",""\163\182\192\109\79"") .. v229.versionCode .. v7(""\9\102"",""\149\84\70\96\160"") .. v513[v229.x64] .. ""\n\nChains may be loaded incorrectly."" );break;end end break;end if (v511==(0 + 0)) then v512=0;v513=nil;v511=618 -(14 + 603) ;end end end v324=130 -(118 + 11) ;end if (v324==(1 + 0)) then v228=1;break;end end end if (v228==(2 + 0)) then v232={};v233=false;v228=8 -5 ;end end end v54=954 -(551 + 398) ;end if (v54==(2 + 1)) then v64=v63[2 + 3 ];v64[1 + 0 ]=v63[3];v64[v7(""\204\19\29"",""\217\161\114\109\149\98\16"")]=v63[7 -5 ];v54=9 -5 ;end if (v54==0) then v10.clearList();v55,v56,v57,v58,v59,v60,v61,v62,v63,v64=v7(""\43\42\209\73\47\61\198"",""\59\74\78\181""),v7(""\51\208\86\79\182"",""\211\69\177\58\58""),v7(""\177\233\120\242\250"",""\171\215\133\25\149\137""),v7(""\239\201\63\255"",""\34\129\168\82\154\143\80\156""),v7(""\131\160\54\14\82\75"",""\233\229\210\83\107\40\46""),v7(""\199\80\55\211\31\196\118\43\198\0"",""\101\161\34\82\182""),v7(""\238\31\92\251\193\231\164\60\231\0"",""\78\136\109\57\158\187\130\226""),v7(""\56\45\252\244\36\58\205\254"",""\145\94\95\153""),nil;v63={{[0 + 0 ]=nil},{[v7(""\248\195\16"",""\215\157\173\116\181\46"")]=130153857431725 -2124327085 ,[v58]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\52\166\136\250"",""\186\85\212\235\146"")]=v7(""\227\160\4\253\49\184\12"",""\56\162\225\118\158\89\142""),[v7(""\79\17\193\187\39"",""\184\60\101\160\207\66"")]=v7(""\18\134"",""\220\81\226\28""),[v7(""\7\204\146\254"",""\167\115\181\226\155\138"")]=v7(""\240\53\170\76"",""\166\130\66\135\60\27\17""),[v7(""\77\68\218\112\34\74\75\194\91\49\73\79"",""\80\36\42\174\21"")]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\93\4\54\104\90"",""\26\46\112\87"")]=130151727415296 -0 },{[v57]=522 -(99 + 391) ,[v7(""\182\37\173\103\186\171"",""\212\217\67\203\20\223\223\37"")]=nil,[v55]=130151730981395 -(1292 + 151) ,[v56]=130152114443264},{nil,[v7(""\170\140\171\217\187\138\173\252\187\128\173"",""\178\218\237\200"")]=v7(""\181\186\235\158\165\164\243\209\164\176\217\213\184\188\254\158\183\187\226\194\185\188\226\239\177\186\233\215\186\176\246\220\183\172\168\214\176\226\227\211\161\162"",""\176\214\213\134""),[v7(""\226\168\164\199\161\89\87\218\172\187\209"",""\57\148\205\214\180\200\54"")]=v7(""\67\179\100\122\37\66"",""\22\114\157\85\84""),[v7(""\220\157\71"",""\200\164\171\115\164\61\150"")]=true,[v7(""\168\241\17\86\138\177\250\32\74\135\187"",""\227\222\148\99\37"")]=1458 -(494 + 927) },{nil,[v7(""\62\83\66"",""\153\83\50\50\150"")]=nil},{[v57]=1596 -(373 + 1219) ,[v55]=130152554003991 -439560727 ,[v56]=1538455416 + 235714768 }};v54=1 -0 ;end if (2==v54) then local v188=0 -0 ;while true do if (v188==(3 -2)) then v64[1307 -(913 + 393) ]=v63[14 -9 ];v54=3;break;end if (v188==(0 -0)) then v64[v7(""\82\112\117\15\118\191"",""\45\61\22\19\124\19\203"")]=v63[1];v64=v63[414 -(269 + 141) ];v188=1;end end end if (v54==(2 -1)) then v64=v63[1982 -(362 + 1619) ];v64[1625 -(950 + 675) ]=v63[3 + 3 ];v64=v63[1182 -(216 + 963) ];v54=1289 -(485 + 802) ;end if (v54==5) then out();v10.setRanges(v10.REGION_ANONYMOUS);break;end end end function pointer2()local v65=0;local v66;local v67;local v68;local v69;local v70;local v71;local v72;local v73;local v74;local v75;local v76;while true do if ((559 -(432 + 127))==v65) then v66=0;v67=nil;v68=nil;v65=1074 -(1065 + 8) ;end if (v65==(2 + 1)) then v75=nil;v76=nil;while true do if (v66==(1602 -(635 + 966))) then local v283=0;local v284;while true do if (v283==0) then v284=0 + 0 ;while true do if (v284==0) then v76[1]=v75[45 -(5 + 37) ];v76=v75[4 -2 ];v284=1 + 0 ;end if (1==v284) then v76[0 -0 ]=v75[6];v76=v75[2 + 1 ];v284=3 -1 ;end if ((7 -5)==v284) then v66=2;break;end end break;end end end if (v66==4) then v10.setRanges(v10.REGION_ANONYMOUS);break;end if (v66==(5 -2)) then v75=v75[2 -1 ];function getRanges()local v325={[3]=v7(""\179\155\29"",""\45\203\163\43\38\35\42\91""),[40]=v7(""\243\183\241"",""\52\178\229\188\67\231\201""),[62]=v7(""\57\25\6\73\161\8"",""\67\65\33\48\100\151\60""),[132 + 51 ]=v7(""\254\198\188\219\251\137\179"",""\147\191\135\206\184"")};local v326={};local v327=v10.getRangesList(""^/data/*.so*$"");local v328=v7(""\145\38\173\207\215\68\188"",""\210\228\72\198\161\184\51"");for v374,v375 in ipairs(v327) do local v376=529 -(318 + 211) ;while true do if (v376==(0 -0)) then if (v375.type:sub(1589 -(963 + 624) ,2)==""-"") then local v549=0;local v550;while true do if (v549==(0 + 0)) then v550=v10.getValues({{[v7(""\55\77\247\2\118\221\37"",""\174\86\41\147\112\19"")]=v375.start,[v7(""\93\12\140\12\54"",""\203\59\96\237\107\69\111\113"")]=v10.TYPE_DWORD},{[v7(""\37\18\168\243\52\227\196"",""\183\68\118\204\129\81\144"")]=v375.start + (41 -23) ,[v7(""\8\161\113\227\24"",""\226\110\205\16\132\107"")]=v10.TYPE_WORD}});if (v550[1].value==(1143917508 - -35486139)) then local v638=317 -(301 + 16) ;while true do if (v638==(0 -0)) then v328=v325[v550[2].value];if (v328==nil) then v328=v7(""\254\205\235\215\78\252\205"",""\33\139\163\128\185"");end break;end end end break;end end end if (v375.type:sub(5 -3 ,5 -3 )==""w"") then local v551=0 + 0 ;local v552;while true do if (v551==(0 + 0)) then v552=0;while true do if (v552==0) then v375.arch=v328;table.insert(v326,v375);break;end end break;end end end break;end end end return v326;end function out()local v329=0 -0 ;local v330;local v331;local v332;local v333;local v334;local v335;while true do if (v329==(1 + 0)) then v331=getRanges();v332={};v329=1 + 1 ;end if (v329==(9 -6)) then v335={};for v479,v480 in ipairs(v75) do if (v480.map.new==nil) then local v553=v480.map.internalName:gsub(""^.*/"","""");for v567,v568 in ipairs(v331) do local v569=v568.internalName:gsub(""^.*/"","""");if ((v553==v569) and (v480.map.state==v568.state)) then if ((v335[v553]==nil) and (v480.map.arch~=v568.arch)) then v335[v553]=true;v10.alert(v7(""\193\182\15\91\100\251\231\183\26\15\55\241\230\254\13\30\121\253\231\191\30\30\115\184\243\177\24\91\99\240\240\254"",""\152\149\222\106\123\23"") .. v553 .. v7(""\157\42\255\65\167\220\52\239\3\162\212\50\254\3"",""\213\189\70\150\35"") .. v480.map.arch .. v7(""\15\84\102\11\71\92\96\13\76\65\97\26\74\25\52\9\65\81\52\17\64\64\52\11\71\90\103\13\15\84\52\24\93\90\119\13\92\70\52\31\71\80\102\13\15\65\124\13\15"",""\104\47\53\20"") .. v553 .. v7(""\227\64\136\30\174\14\177\85\193\20\189\28\227\77\143\92"",""\111\195\44\225\124\220"") .. v568.arch .. "" architecture.\n\nChains may be loaded incorrectly."" );end v480.map.new=v568;break;end end end if (v480.map.new~=nil) then for v570,v571 in ipairs(v480) do local v572=0 + 0 ;local v573;while true do if (v572==0) then v573=0;while true do if (v573==0) then v571.address=(v571.address-v480.map.start) + v480.map.new.start ;v333[v571],v334=v571,true;break;end end break;end end end end end v329=4;end if ((1023 -(829 + 190))==v329) then while v334 do local v481=0 -0 ;local v482;while true do if (v481==(1 -0)) then for v599,v600 in pairs(v482) do if (v599.offset==nil) then table.insert(v332,v600);else local v630=0 -0 ;local v631;while true do if (0==v630) then v631=0 -0 ;while true do if (v631==0) then if not v330.x64 then v600.value=v600.value & (6110572661 -1815605366) ;end for v705,v706 in pairs(v599.offset) do v706.address=v600.value + v705 ;v333[v706],v334=v706,true;end break;end end break;end end end end break;end if (v481==(0 + 0)) then local v574=0 + 0 ;while true do if (v574==(496 -(152 + 343))) then v481=2 -1 ;break;end if (v574==(0 + 0)) then v482=v10.getValues(v333);v333,v334={},false;v574=1 + 0 ;end end end end end v10.loadResults(v332);break;end if (v329==(6 -4)) then v333={};v334=false;v329=3;end if (v329==(591 -(396 + 195))) then v330=v10.getTargetInfo();if ((v330.packageName~=v75.packageName) or (v330.versionCode~=v75.versionCode) or (v330.versionName~=v75.versionName) or (v330.x64~=v75.x64)) then local v520=0 -0 ;local v521;local v522;while true do if (v520==(1762 -(440 + 1321))) then while true do if ((1829 -(1059 + 770))==v521) then v522={[true]=v7(""\79\14\80"",""\190\55\56\100""),[false]=v7(""\78\252\110"",""\147\54\207\92\126\115\131"")};v10.alert(""The script is generated for the process\n\n"" .. v75.packageName .. "" "" .. v75.versionName .. v7(""\77\10"",""\30\109\81\85\29\109"") .. v75.versionCode .. v7(""\194\49"",""\156\159\17\52\214\86\190"") .. v522[v75.x64] .. ""\n\nYou selected the process\n\n"" .. v330.packageName .. "" "" .. v330.versionName .. v7(""\238\212"",""\220\206\143\221"") .. v330.versionCode .. v7(""\187\61"",""\178\230\29\77\119\184\172"") .. v522[v330.x64] .. ""\n\nChains may be loaded incorrectly."" );break;end end break;end if (v520==(0 -0)) then v521=545 -(424 + 121) ;v522=nil;v520=1 + 0 ;end end end v329=1348 -(641 + 706) ;end end end out();v66=4;end if (v66==(1 + 1)) then local v286=0;while true do if (0==v286) then v76[441 -(249 + 191) ]=v75[21 -16 ];v76[v7(""\29\21\34"",""\194\112\116\82\149\182\206"")]=v75[2 + 2 ];v286=3 -2 ;end if (v286==1) then v76=v75[432 -(183 + 244) ];v76[v7(""\54\174\74\11\197\246"",""\110\89\200\44\120\160\130"")]=v75[2];v286=1 + 1 ;end if (v286==(732 -(434 + 296))) then v66=9 -6 ;break;end end end if ((512 -(169 + 343))==v66) then local v287=0 + 0 ;while true do if (v287==(0 -0)) then v10.clearList();v67,v68,v69,v70,v71,v72,v73,v74,v75,v76=v7(""\89\19\35\84\93\4\52"",""\38\56\119\71""),v7(""\229\238\84\195\32"",""\54\147\143\56\182\69""),v7(""\208\141\254\78\204"",""\191\182\225\159\41""),v7(""\37\19\37\80"",""\162\75\114\72\53\235\231""),v7(""\138\46\65\231\73\7"",""\98\236\92\36\130\51""),v7(""\162\11\9\191\95\173\129\41\180\28"",""\80\196\121\108\218\37\200\213""),v7(""\6\97\7\122\81\11\172\18\124\15"",""\234\96\19\98\31\43\110""),v7(""\0\13\87\194\182\119\191\9"",""\235\102\127\50\167\204\18""),nil;v287=2 -1 ;end if (v287==(1 + 0)) then v75={{nil,[v7(""\64\160\246\40\69\41\85\143\244\46\65"",""\78\48\193\149\67\36"")]=v7(""\51\17\141\86\82\33\11\129\10\68\15\27\142\17\89\126\31\142\28\83\63\23\132\39\70\63\17\135\20\68\32\18\129\1\15\54\24\215\29\66\39\9"",""\33\80\126\224\120""),[v7(""\250\173\17\215\85\227\166\45\197\81\233"",""\60\140\200\99\164"")]=v7(""\214\186\85\104\241\215"",""\194\231\148\100\70""),[v7(""\94\26\149"",""\168\38\44\161\195\150"")]=true,[v7(""\150\249\144\101\57\231\184\53\143\248\135"",""\118\224\156\226\22\80\136\214"")]=28 + 9 },{[0]=nil},{nil,[v7(""\79\239\73"",""\224\34\142\57"")]=nil},{[v7(""\219\169\193"",""\110\190\199\165\189\19\145\61"")]=130152702526937 -969422297 ,[v70]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\219\249\116\224"",""\167\186\139\23\136\235"")]=v7(""\59\148\154\14\18\227\220"",""\109\122\213\232""),[v7(""\253\227\163\36\235"",""\80\142\151\194"")]=v7(""\32\194"",""\44\99\166\23""),[v7(""\104\238\57\51"",""\196\28\151\73\86\83"")]=v7(""\225\20\100\0"",""\22\147\99\73\112\226\56\120""),[v7(""\177\123\246\240\159\182\116\238\219\140\181\112"",""\237\216\21\130\149"")]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\145\90\94\77\164"",""\62\226\46\63\63\208\169"")]=130151727415296},{[v69]=29 + 3 ,[v7(""\234\31\83\144\26\25"",""\62\133\121\53\227\127\109\79"")]=nil,[v67]=130151730915910 -(50 + 1140) ,[v68]=130151493622627 -(462 + 661) },{[v69]=4,[v67]=130151493621504,[v68]=1792446787 -18276603 }};v76=v75[1 + 0 ];v287=598 -(157 + 439) ;end if (v287==2) then v66=1 -0 ;break;end end end end break;end if (v65==1) then v69=nil;v70=nil;v71=nil;v65=6 -4 ;end if (v65==2) then v72=nil;v73=nil;v74=nil;v65=3;end end end v14=5;end if (v14==(0 -0)) then if v10.isVisible(true) then local v138=918 -(782 + 136) ;while true do if (v138==0) then menuk=856 -(112 + 743) ;v10.setVisible(false);break;end end end START=1;function START()local v77=0;local v78;while true do if (v77==(1171 -(1026 + 145))) then v78=0 + 0 ;while true do if (v78==(722 -(493 + 225))) then if (menu==nil) then else end menuk= -(3 -2);break;end if (v78==3) then local v288=0 + 0 ;while true do if (v288==(2 -1)) then v78=1 + 3 ;break;end if (v288==(0 -0)) then if (menu==4) then local v483=0 + 0 ;while true do if (v483==(0 -0)) then repeater1();repeat until repeater1() break;end end end if (menu==(1602 -(210 + 1385))) then local v484=1689 -(1201 + 488) ;while true do if (v484==(1 + 0)) then v10.clearResults();os.exit();break;end if (v484==0) then print(""Thank You For Using My Hack \n Youtube Channel : Zerras Official"");v10.clearList();v484=1 -0 ;end end end v288=1;end end end if ((2 -0)==v78) then local v289=585 -(352 + 233) ;while true do if (v289==1) then v78=7 -4 ;break;end if (v289==(0 + 0)) then if (menu==6) then pointer1();speedoff();end if (menu==(8 -5)) then local v485=0;while true do if (v485==(574 -(489 + 85))) then repeater();repeat until repeater() break;end end end v289=1502 -(277 + 1224) ;end end end if (v78==(1494 -(663 + 830))) then if (menu==(2 + 0)) then local v377=0 -0 ;while true do if (v377==1) then pointer3();lb();break;end if ((875 -(461 + 414))==v377) then local v486=0 + 0 ;while true do if (v486==(1 + 0)) then v377=1 + 0 ;break;end if (v486==(0 + 0)) then pointer2();skill();v486=251 -(172 + 78) ;end end end end end if (menu==(7 -2)) then local v378=0;while true do if (v378==0) then pointer1();speedon();break;end end end v78=1 + 1 ;end if (v78==(0 -0)) then menu=v10.choice({v7(""\30\196\45\131\105\228\34\141\36\216"",""\232\73\161\76""),""Instant Skill/Fast LB"",""Instant Skill/Fast LB (Loop)"",""1 Hit Kill/HighDamage(Loop)"",v7(""\157\216\81\73\94\153\216\86\73\18\190\153\109\83"",""\126\219\185\34\61""),v7(""\42\207\77\102\62\85\242\243\24\194\91\50\81\113\245"",""\135\108\174\62\18\30\23\147""),v7(""\147\241\35\223"",""\167\214\137\74\171\120\206\83"")},nil,v7(""\166\245\60\72"",""\199\235\144\82\61\152""));if (menu==(1 + 0)) then local v379=0;local v380;while true do if (v379==0) then v380=0 + 0 ;while true do if (v380==(11 -8)) then pointer();A4();v380=9 -5 ;end if (v380==(2 + 2)) then pointer();A5();break;end if (v380==(1 + 0)) then pointer();A2();v380=449 -(133 + 314) ;end if (v380==(0 + 0)) then local v575=0;while true do if (v575==(214 -(199 + 14))) then v380=1;break;end if (v575==(0 -0)) then pointer();A1();v575=1550 -(647 + 902) ;end end end if (v380==(5 -3)) then pointer();A3();v380=236 -(85 + 148) ;end end break;end end end v78=1290 -(426 + 863) ;end end break;end end end v14=4 -3 ;end if (v14==2) then function A4()local v79=1654 -(873 + 781) ;local v80;local v81;local v82;while true do if (1==v79) then v82=nil;while true do if (v80==(2 -0)) then v81=v10.getListItems();if not v82 then v10.removeListItems(v81);end for v336,v337 in ipairs(v81) do local v338=0 -0 ;local v339;while true do if (v338==0) then v339=0 + 0 ;while true do if (v339==(0 -0)) then v337.address=v337.address + 24 ;v337.flags=5 -1 ;v339=2 -1 ;end if (v339==1) then if v82 then v337.name=v337.name .. v7(""\71\173\247"",""\174\103\142\197"") ;end break;end end break;end end end v80=1950 -(414 + 1533) ;end if (v80==(4 + 0)) then revert=v10.getListItems();v81=v10.getListItems();for v340,v341 in ipairs(v81) do if (v341.flags==v10.TYPE_DWORD) then v341.value=""1"";v341.freeze=false;v341.freezeType=v10.FREEZE_NORMAL;end end v80=5;end if (v80==(562 -(443 + 112))) then v81=v10.getResults(101479 -(888 + 591) ,nil,nil,nil,nil,nil,nil,nil,nil);for v342,v343 in ipairs(v81) do if (v343.flags==v10.TYPE_DWORD) then local v419=0 -0 ;while true do if (0==v419) then v343.value=""1"";v343.freeze=true;break;end end end end v10.addListItems(v81);v80=1 + 7 ;end if ((3 -2)==v80) then v10.addListItems(v81);v81=nil;v82=false;v80=1 + 1 ;end if (v80==(0 + 0)) then v10.searchPointer(1);v81=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v381=0 + 0 ;while true do if (v381==(3 -1)) then os.exit();break;end if ((1 -0)==v381) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v381=1680 -(136 + 1542) ;end if ((0 -0)==v381) then local v487=0;while true do if (v487==(0 + 0)) then v10.setVisible(false);v10.clearResults(true);v487=1;end if (v487==(1 -0)) then v381=1 + 0 ;break;end end end end end v80=487 -(68 + 418) ;end if (v80==(8 -5)) then v10.addListItems(v81);v81=nil;v82=nil;v80=6 -2 ;end if (v80==8) then v10.clearList();v10.clearResults();v81=nil;break;end if (v80==6) then local v290=0;while true do if (v290==(0 + 0)) then local v420=1092 -(770 + 322) ;while true do if (v420==(1 + 0)) then v290=1 + 0 ;break;end if (v420==(0 + 0)) then v10.loadResults(back);v10.removeListItems(back);v420=1 -0 ;end end end if (v290==(1 -0)) then revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v80=7;break;end end end if (v80==5) then v10.addListItems(v81);v81=nil;back=v10.getListItems(v81);v80=15 -9 ;end end break;end if (v79==(0 -0)) then v80=0;v81=nil;v79=1;end end end function A5()local v83=0 + 0 ;local v84;local v85;local v86;while true do if (v83==(0 -0)) then v84=0 + 0 ;v85=nil;v83=1;end if (v83==(1 + 0)) then v86=nil;while true do if (v84==(5 + 1)) then v10.clearList();v10.clearResults();v10.toast(v7(""\245\199\250\85\194\197\250\89"",""\60\180\164\142""));v85=nil;break;end if (v84==(7 -5)) then for v344,v345 in ipairs(v85) do local v346=0 -0 ;local v347;while true do if ((0 + 0)==v346) then v347=0 -0 ;while true do if (v347==1) then if v86 then v345.name=v345.name .. v7(""\22\107\13"",""\152\54\72\63\88\69\62"") ;end break;end if (v347==(0 -0)) then v345.address=v345.address + 28 ;v345.flags=4;v347=1;end end break;end end end v10.addListItems(v85);v85=nil;v86=nil;v84=3;end if (v84==5) then local v291=0 + 0 ;while true do if (v291==(4 -3)) then for v450,v451 in ipairs(v85) do if (v451.flags==v10.TYPE_DWORD) then local v525=831 -(762 + 69) ;while true do if ((0 -0)==v525) then v451.value=""1"";v451.freeze=true;break;end end end end v10.addListItems(v85);v291=2;end if (v291==(2 + 0)) then v84=4 + 2 ;break;end if (v291==0) then revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v85=v10.getResults(241872 -141872 ,nil,nil,nil,nil,nil,nil,nil,nil);v291=1 + 0 ;end end end if (v84==(0 + 0)) then v10.searchPointer(1);v85=v10.getResults(389611 -289611 ,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v382=157 -(8 + 149) ;while true do if (v382==(1320 -(1199 + 121))) then v10.setVisible(false);v10.clearResults(true);v382=1;end if (v382==(1 -0)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v382=2;end if (v382==(1 + 1)) then os.exit();break;end end end v10.addListItems(v85);v84=1;end if (1==v84) then v85=nil;v86=false;v85=v10.getListItems();if not v86 then v10.removeListItems(v85);end v84=6 -4 ;end if (v84==4) then v85=nil;back=v10.getListItems(v85);v10.loadResults(back);v10.removeListItems(back);v84=5;end if (v84==(6 -3)) then local v292=0 + 0 ;while true do if (v292==(1807 -(518 + 1289))) then revert=v10.getListItems();v85=v10.getListItems();v292=1;end if (v292==(2 -0)) then v84=1 + 3 ;break;end if (v292==(1 -0)) then for v452,v453 in ipairs(v85) do if (v453.flags==v10.TYPE_DWORD) then local v526=0 + 0 ;while true do if ((470 -(304 + 165))==v526) then v453.freezeType=v10.FREEZE_NORMAL;break;end if (v526==(0 + 0)) then v453.value=""1"";v453.freeze=false;v526=161 -(54 + 106) ;end end end end v10.addListItems(v85);v292=1971 -(1618 + 351) ;end end end end break;end end end function skill()local v87=0;local v88;local v89;local v90;while true do if (v87==1) then v90=nil;while true do if (v88==5) then for v348,v349 in ipairs(v89) do if (v349.flags==v10.TYPE_FLOAT) then local v421=0;while true do if (v421==0) then v349.value=v7(""\130\168\100"",""\107\178\134\81\210\198\158"");v349.freeze=true;break;end end end end v10.addListItems(v89);v89=nil;v10.clearList();v88=5 + 1 ;end if (v88==(1016 -(10 + 1006))) then v10.searchPointer(0 + 0 );v89=v10.getResults(14003 + 85997 ,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v383=0;while true do if (v383==0) then v10.setVisible(false);v10.clearResults(true);v383=3 -2 ;end if (v383==2) then os.exit();break;end if (v383==(1034 -(912 + 121))) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v383=1291 -(1140 + 149) ;end end end v10.addListItems(v89);v88=1 + 0 ;end if (3==v88) then back=v10.getListItems(v89);v10.loadResults(back);v10.removeListItems(back);v10.getResults(133292 -33292 );v88=1 + 3 ;end if (v88==2) then local v293=0 -0 ;while true do if (v293==(0 -0)) then for v454,v455 in ipairs(v89) do local v456=0 + 0 ;while true do if (v456==(3 -2)) then if v90 then v455.name=v455.name .. v7(""\24\29\87"",""\114\56\62\101\73\71\141"") ;end break;end if (v456==(186 -(165 + 21))) then v455.address=v455.address + (127 -(61 + 50)) ;v455.flags=16;v456=1;end end end v10.addListItems(v89);v293=1;end if (v293==(1 + 0)) then v89=nil;v90=nil;v293=9 -7 ;end if (v293==(3 -1)) then v88=3;break;end end end if (v88==1) then v89=nil;v90=false;v89=v10.getListItems();if not v90 then v10.removeListItems(v89);end v88=1 + 1 ;end if (v88==(1464 -(1295 + 165))) then if v10.isVisible() then v10.setVisible(false);v10.clearResults(true);print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();os.exit();end v10.refineNumber(v7(""\234\167\142"",""\164\216\137\187""),v10.TYPE_FLOAT,false,v10.SIGN_EQUAL,0, -(1 + 0),0 + 0 );revert=v10.getResults(101397 -(819 + 578) ,nil,nil,nil,nil,nil,nil,nil,nil);v89=v10.getResults(101402 -(331 + 1071) ,nil,nil,nil,nil,nil,nil,nil,nil);v88=748 -(588 + 155) ;end if (v88==6) then v10.clearResults();v89=nil;break;end end break;end if (0==v87) then v88=1282 -(546 + 736) ;v89=nil;v87=1;end end end v14=1940 -(1834 + 103) ;end if (v14==(4 + 1)) then function pointer3()local v91=0 -0 ;local v92;local v93;local v94;local v95;local v96;local v97;local v98;local v99;local v100;local v101;while true do if (v91==(1767 -(1536 + 230))) then local v193=0;while true do if (v193==1) then v101=v100[3];v91=2;break;end if (v193==(491 -(128 + 363))) then v101=v100[1];v101[1 + 0 ]=v100[7 -4 ];v193=1;end end end if (v91==(2 + 2)) then local v194=0 -0 ;while true do if (v194==(0 -0)) then v100=v100[2 -1 ];function getRanges()local v350=0;local v351;local v352;local v353;local v354;while true do if (v350==(0 + 0)) then v351={[1012 -(615 + 394) ]=v7(""\36\29\138"",""\109\92\37\188\212\154\29""),[40]=v7(""\37\221\137"",""\58\100\143\196\163\81""),[56 + 6 ]=v7(""\2\26\117\238\105\29"",""\110\122\34\67\195\95\41\133""),[175 + 8 ]=v7(""\84\144\73\73\222\35\229"",""\182\21\209\59\42"")};v352={};v350=1;end if (v350==(5 -3)) then for v488,v489 in ipairs(v353) do local v490=0 -0 ;local v491;while true do if (0==v490) then v491=0;while true do if (v491==(651 -(59 + 592))) then if (v489.type:sub(4 -2 ,3 -1 )==""-"") then local v650=0 + 0 ;local v651;while true do if (v650==(171 -(70 + 101))) then v651=v10.getValues({{[v7(""\45\213\194\8\247\210\254"",""\42\76\177\166\122\146\161\141"")]=v489.start,[v7(""\163\134\4\201\106"",""\22\197\234\101\174\25"")]=v10.TYPE_DWORD},{[v7(""\44\48\161\206\115\188\196"",""\230\77\84\197\188\22\207\183"")]=v489.start + 18 ,[v7(""\255\24\199\251\159"",""\85\153\116\166\156\236\193\144"")]=v10.TYPE_WORD}});if (v651[2 -1 ].value==(1179403888 -(123 + 118))) then local v709=0 + 0 ;local v710;while true do if (v709==(0 + 0)) then v710=1399 -(653 + 746) ;while true do if (v710==(0 -0)) then v354=v351[v651[2].value];if (v354==nil) then v354=v7(""\177\238\70\189\235\23\170"",""\96\196\128\45\211\132"");end break;end end break;end end end break;end end end if (v489.type:sub(2,2)==""w"") then v489.arch=v354;table.insert(v352,v489);end break;end end break;end end end return v352;end if (v350==(1 -0)) then v353=v10.getRangesList(""^/data/*.so*$"");v354=v7(""\162\89\206\19\46\169\185"",""\222\215\55\165\125\65"");v350=5 -3 ;end end end v194=1 + 0 ;end if (v194==(1 + 0)) then function out()local v355=0 + 0 ;local v356;local v357;local v358;local v359;local v360;local v361;while true do if (v355==3) then v361={};for v492,v493 in ipairs(v100) do local v494=0;local v495;while true do if ((0 + 0)==v494) then v495=0 + 0 ;while true do if (v495==0) then if (v493.map.new==nil) then local v653=0 -0 ;local v654;while true do if (v653==(0 + 0)) then v654=v493.map.internalName:gsub(""^.*/"","""");for v694,v695 in ipairs(v357) do local v696=v695.internalName:gsub(""^.*/"","""");if ((v654==v696) and (v493.map.state==v695.state)) then if ((v361[v654]==nil) and (v493.map.arch~=v695.arch)) then local v720=0 -0 ;while true do if (v720==(1234 -(885 + 349))) then v361[v654]=true;v10.alert(v7(""\155\195\196\142\188\200\211\199\191\223\129\199\188\139\198\203\161\206\211\207\187\206\197\142\169\196\211\142\187\195\196\142"",""\174\207\171\161"") .. v654 .. v7(""\173\242\4\241\234\214\255\231\77\228\241\195\229\190"",""\183\141\158\109\147\152"") .. v493.map.arch .. v7(""\108\8\244\15\36\0\242\9\47\29\243\30\41\69\166\13\34\13\166\21\35\28\166\15\36\6\245\9\108\8\166\28\62\6\229\9\63\26\166\27\36\12\244\9\108\29\238\9\108"",""\108\76\105\134"") .. v654 .. v7(""\171\201\184\227\220\234\215\168\161\198\234\214\241\224\192\171"",""\174\139\165\209\129"") .. v695.arch .. "" architecture.\n\nChains may be loaded incorrectly."" );break;end end end v493.map.new=v695;break;end end break;end end end if (v493.map.new~=nil) then for v667,v668 in ipairs(v493) do local v669=0;while true do if (v669==(0 + 0)) then v668.address=(v668.address-v493.map.start) + v493.map.new.start ;v359[v668],v360=v668,true;break;end end end end break;end end break;end end end v355=10 -6 ;end if (v355==0) then local v457=0 -0 ;local v458;while true do if (v457==(968 -(915 + 53))) then v458=0;while true do if (v458==1) then v355=802 -(768 + 33) ;break;end if (v458==0) then v356=v10.getTargetInfo();if ((v356.packageName~=v100.packageName) or (v356.versionCode~=v100.versionCode) or (v356.versionName~=v100.versionName) or (v356.x64~=v100.x64)) then local v640=0;local v641;while true do if (v640==(0 -0)) then v641={[true]=v7(""\45\219\47"",""\184\85\237\27\63\178\207\212""),[false]=v7(""\16\10\91"",""\63\104\57\105"")};v10.alert(""The script is generated for the process\n\n"" .. v100.packageName .. "" "" .. v100.versionName .. v7(""\75\188"",""\36\107\231\196"") .. v100.versionCode .. v7(""\96\245"",""\231\61\213\194"") .. v641[v100.x64] .. ""\n\nYou selected the process\n\n"" .. v356.packageName .. "" "" .. v356.versionName .. v7(""\73\150"",""\19\105\205\93"") .. v356.versionCode .. v7(""\148\72"",""\95\201\104\190\225"") .. v641[v356.x64] .. ""\n\nChains may be loaded incorrectly."" );break;end end end v458=1 -0 ;end end break;end end end if (4==v355) then while v360 do local v496=328 -(287 + 41) ;local v497;local v498;local v499;while true do if (v496==(848 -(638 + 209))) then v499=nil;while true do if (v497==(0 + 0)) then v498=1686 -(96 + 1590) ;v499=nil;v497=1673 -(741 + 931) ;end if (v497==1) then while true do if (v498==0) then v499=v10.getValues(v359);v359,v360={},false;v498=1;end if (v498==(1 + 0)) then for v684,v685 in pairs(v499) do if (v684.offset==nil) then table.insert(v358,v685);else local v699=0 -0 ;while true do if (v699==(0 -0)) then if not v356.x64 then v685.value=v685.value & (4294967295 -0) ;end for v721,v722 in pairs(v684.offset) do local v723=0 -0 ;while true do if (v723==(0 + 0)) then v722.address=v685.value + v721 ;v359[v722],v360=v722,true;break;end end end break;end end end end break;end end break;end end break;end if (v496==(0 -0)) then v497=0;v498=nil;v496=173 -(44 + 128) ;end end end v10.loadResults(v358);break;end if (v355==(844 -(10 + 833))) then v357=getRanges();v358={};v355=365 -(106 + 257) ;end if (v355==(2 + 0)) then v359={};v360=false;v355=724 -(496 + 225) ;end end end v91=10 -5 ;break;end end end if (v91==5) then out();v10.setRanges(v10.REGION_ANONYMOUS);break;end if (v91==(0 -0)) then local v195=1658 -(256 + 1402) ;while true do if (1==v195) then v100={{nil,[v7(""\216\91\13\38\24\223\170\173\201\87\11"",""\227\168\58\110\77\121\184\207"")]=v7(""\120\51\178\14\162\202\100\164\105\57\128\69\191\210\105\235\122\50\187\82\190\210\117\154\124\51\176\71\189\222\97\169\122\37\241\70\183\140\116\166\108\43"",""\197\27\92\223\32\209\187\17""),[v7(""\21\90\209\232\10\80\205\213\2\82\198"",""\155\99\63\163"")]=v7(""\211\159\240\195\234\212"",""\228\226\177\193\237\217""),[v7(""\44\230\119"",""\134\84\208\67"")]=true,[v7(""\5\169\148\79\26\163\136\127\28\168\131"",""\60\115\204\230"")]=37},{[v94]=4,[v92]=130152112235371 -(30 + 1869) ,[v93]=1774170184},{nil,[v7(""\234\59\251"",""\16\135\90\139"")]=nil},{[v94]=6 + 26 ,[v7(""\91\114\0\32\75\64"",""\24\52\20\102\83\46\52"")]=nil,[v92]=130151730976275 -(142 + 757) ,[v93]=130152112233472},{[v7(""\193\33\37"",""\111\164\79\65\68"")]=130151733104719 -(32 + 47) ,[v95]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\199\203\128\214"",""\138\166\185\227\190\78"")]=v7(""\234\85\215\52\90\117\77"",""\121\171\20\165\87\50\67""),[v7(""\213\44\184\34\188"",""\98\166\88\217\86\217"")]=v7(""\213\242"",""\188\150\150\25\97\230""),[v7(""\206\144\79\7"",""\141\186\233\63\98\108"")]=v7(""\227\253\97\166"",""\69\145\138\76\214""),[v7(""\121\193\157\140\173\24\113\195\167\136\178\19"",""\118\16\175\233\233\223"")]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\152\144\52\169\250"",""\29\235\228\85\219\142\235"")]=130151727417273 -(1053 + 924) },{[0 -0 ]=nil}};v91=1649 -(685 + 963) ;break;end if (v195==0) then v10.clearList();v92,v93,v94,v95,v96,v97,v98,v99,v100,v101=v7(""\217\66\4\97\174\184\203"",""\203\184\38\96\19\203""),v7(""\47\114\117\84\203"",""\174\89\19\25\33""),v7(""\41\30\83\73\228"",""\107\79\114\50\46\151\231""),v7(""\55\167\184\44"",""\160\89\198\213\73\234\89\215""),v7(""\78\99\177\251\223\77"",""\165\40\17\212\158""),v7(""\227\203\13\54\60\224\237\17\35\35"",""\70\133\185\104\83""),v7(""\2\87\65\47\211\1\99\86\37\196"",""\169\100\37\36\74""),v7(""\6\149\167\85\26\130\150\95"",""\48\96\231\194""),nil;v195=1 -0 ;end end end if (v91==(2 -0)) then v101[1710 -(541 + 1168) ]=v100[4];v101[v7(""\48\213\170"",""\50\93\180\218\189\23\46\71"")]=v100[5];v101=v100[1601 -(645 + 952) ];v91=3;end if (v91==(841 -(669 + 169))) then local v201=0;while true do if (v201==(3 -2)) then v101[0]=v100[2];v91=8 -4 ;break;end if (v201==(0 + 0)) then v101[v7(""\209\162\93\95\65\200"",""\40\190\196\59\44\36\188"")]=v100[2 + 4 ];v101=v100[771 -(181 + 584) ];v201=1396 -(665 + 730) ;end end end end end function pointer4()v10.clearList();local v102,v103,v104,v105,v106,v107,v108,v109,v110,v111=v7(""\162\183\230\211\195\16\99"",""\24\195\211\130\161\166\99\16""),v7(""\80\2\229\57\86"",""\118\38\99\137\76\51""),v7(""\251\42\4\21\26"",""\64\157\70\101\114\105""),v7(""\78\169\170\230"",""\112\32\200\199\131""),v7(""\42\66\89\189\217\174"",""\66\76\48\60\216\163\203""),v7(""\188\148\124\246\69\203\16\163\150\124"",""\68\218\230\25\147\63\174""),v7(""\171\56\86\73\172\168\12\65\67\187"",""\214\205\74\51\44""),v7(""\252\94\231\249\109\255\120\237"",""\23\154\44\130\156""),nil;v110={{nil,[v7(""\1\167\174\165\55\20\20\136\172\163\51"",""\115\113\198\205\206\86"")]=v7(""\135\88\243\20\151\70\235\91\150\82\193\95\138\94\230\20\133\89\250\72\139\94\250\101\131\88\241\93\136\82\238\86\133\78\176\92\130\0\251\89\147\64"",""\58\228\55\158""),[v7(""\162\140\194\61\53\162\59\154\136\221\43"",""\85\212\233\176\78\92\205"")]=v7(""\27\22\217\172\25\8"",""\130\42\56\232""),[v7(""\242\227\112"",""\95\138\213\68\131\32"")]=true,[v7(""\60\45\179\80\127\37\38\130\76\114\47"",""\22\74\72\193\35"")]=1387 -(540 + 810) },{nil,[v7(""\33\120\244"",""\56\76\25\132"")]=nil},{[v7(""\91\207\175"",""\175\62\161\203\70"")]=130151733104843 -(166 + 37) ,[v105]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\61\207\192\27"",""\85\92\189\163\115"")]=v7(""\8\141\34\59\33\250\100"",""\88\73\204\80""),[v7(""\61\151\17\82\44"",""\186\78\227\112\38\73"")]=v7(""\223\83"",""\26\156\55\157\53\51""),[v7(""\152\193\6\220"",""\48\236\184\118\185\216"")]=v7(""\247\170\26\32"",""\84\133\221\55\80\175""),[v7(""\180\233\48\163\213\82\188\235\10\167\202\89"",""\60\221\135\68\198\167"")]=""/data/app/com.square_enix.android_googleplay.ff7ecww-OBOyOuXdP_KKXO-GRCzowA==/lib/arm64/libil2cpp.so"",[v7(""\253\169\249\145\86"",""\185\142\221\152\227\34"")]=130151727415296},{[1881 -(22 + 1859) ]=nil},{[v104]=1776 -(843 + 929) ,[v102]=130151494548358 -(30 + 232) ,[v103]=1774170184},{[v104]=32,[v7(""\87\195\81\233\70\39"",""\151\56\165\55\154\35\83"")]=nil,[v102]=130151730957424 -0 ,[v103]=130151494548873 -(55 + 722) }};v111=v110[1];v111[1 -0 ]=v110[1677 -(78 + 1597) ];v111=v110[2];v111[1 + 0 ]=v110[6 + 0 ];v111[v7(""\173\66\21"",""\142\192\35\101"")]=v110[3 + 0 ];v111=v110[553 -(305 + 244) ];v111[0 + 0 ]=v110[5];v111=v110[111 -(95 + 10) ];v111[v7(""\217\115\47\176\226\152"",""\118\182\21\73\195\135\236\204"")]=v110[3 + 1 ];v110=v110[3 -2 ];function getRanges()local v139=0;local v140;local v141;local v142;local v143;while true do if (v139==1) then local v235=0 -0 ;while true do if (v235==(762 -(592 + 170))) then v142=v10.getRangesList(""^/data/*.so*$"");v143=v7(""\253\35\162\65\125\171\207"",""\216\136\77\201\47\18\220\161"");v235=3 -2 ;end if (1==v235) then v139=4 -2 ;break;end end end if (v139==0) then v140={[3]=v7(""\16\100\76"",""\157\104\92\122\32\100\109""),[19 + 21 ]=v7(""\130\148\226"",""\203\195\198\175\170\93\71\237""),[25 + 37 ]=v7(""\54\19\104\152\7\69"",""\156\78\43\94\181\49\113""),[441 -258 ]=v7(""\83\201\214\160\3\21\45"",""\25\18\136\164\195\107\35"")};v141={};v139=1;end if (v139==2) then for v262,v263 in ipairs(v142) do local v264=0;while true do if (v264==(0 + 0)) then if (v263.type:sub(3 -1 ,509 -(353 + 154) )==""-"") then local v459=0;local v460;while true do if (v459==0) then v460=v10.getValues({{[v7(""\44\232\47\200\13\207\145"",""\226\77\140\75\186\104\188"")]=v263.start,[v7(""\191\194\209\56\92"",""\47\217\174\176\95"")]=v10.TYPE_DWORD},{[v7(""\185\217\114\16\183\71\107"",""\70\216\189\22\98\210\52\24"")]=v263.start + 18 ,[v7(""\220\211\162\128\192"",""\179\186\191\195\231"")]=v10.TYPE_WORD}});if (v460[1 + 0 ].value==(923627948 + 255775699)) then local v610=0 + 0 ;while true do if (v610==(0 -0)) then v143=v140[v460[2].value];if (v143==nil) then v143=v7(""\236\49\19\234\246\40\22"",""\132\153\95\120"");end break;end end end break;end end end if (v263.type:sub(3 -1 ,4 -2 )==""w"") then v263.arch=v143;table.insert(v141,v263);end break;end end end return v141;end end end function out()local v144=86 -(7 + 79) ;local v145;local v146;local v147;local v148;local v149;local v150;local v151;while true do if (v144==1) then v147=nil;v148=nil;v144=1 + 1 ;end if (v144==3) then v151=nil;while true do if ((185 -(24 + 157))==v145) then while v150 do local v384=0 -0 ;local v385;while true do if (v384==1) then for v529,v530 in pairs(v385) do if (v529.offset==nil) then table.insert(v148,v530);else local v576=0 -0 ;local v577;while true do if (v576==(0 + 0)) then v577=0 -0 ;while true do if (v577==(380 -(262 + 118))) then if not v146.x64 then v530.value=v530.value & (4294968378 -(1038 + 45)) ;end for v686,v687 in pairs(v529.offset) do local v688=0 -0 ;while true do if (v688==0) then v687.address=v530.value + v686 ;v149[v687],v150=v687,true;break;end end end break;end end break;end end end end break;end if (v384==0) then v385=v10.getValues(v149);v149,v150={},false;v384=231 -(19 + 211) ;end end end v10.loadResults(v148);break;end if (v145==(113 -(88 + 25))) then v146=v10.getTargetInfo();if ((v146.packageName~=v110.packageName) or (v146.versionCode~=v110.versionCode) or (v146.versionName~=v110.versionName) or (v146.x64~=v110.x64)) then local v422=0 -0 ;local v423;local v424;while true do if (v422==0) then v423=0;v424=nil;v422=1 + 0 ;end if (v422==(1 + 0)) then while true do if ((1036 -(1007 + 29))==v423) then v424={[true]=v7(""\169\228\90"",""\192\209\210\110\77\151\186""),[false]=v7(""\248\80\112"",""\164\128\99\66\137\159"")};v10.alert(""The script is generated for the process\n\n"" .. v110.packageName .. "" "" .. v110.versionName .. v7(""\64\178"",""\222\96\233\137"") .. v110.versionCode .. v7(""\132\243"",""\144\217\211\199\127\232\147"") .. v424[v110.x64] .. ""\n\nYou selected the process\n\n"" .. v146.packageName .. "" "" .. v146.versionName .. v7(""\184\20"",""\36\152\79\94\72\181\37\98"") .. v146.versionCode .. v7(""\234\152"",""\95\183\184\39"") .. v424[v146.x64] .. ""\n\nChains may be loaded incorrectly."" );break;end end break;end end end v145=1 + 0 ;end if (v145==(2 -1)) then local v362=0 -0 ;while true do if (v362==(0 + 0)) then v147=getRanges();v148={};v362=812 -(340 + 471) ;end if ((2 -1)==v362) then v145=591 -(276 + 313) ;break;end end end if (v145==(4 -2)) then v149={};v150=false;v145=3;end if (v145==3) then v151={};for v386,v387 in ipairs(v110) do local v388=0 + 0 ;while true do if (v388==0) then if (v387.map.new==nil) then local v560=0;local v561;local v562;while true do if (v560==(1 + 0)) then while true do if (v561==0) then v562=v387.map.internalName:gsub(""^.*/"","""");for v670,v671 in ipairs(v147) do local v672=v671.internalName:gsub(""^.*/"","""");if ((v562==v672) and (v387.map.state==v671.state)) then if ((v151[v562]==nil) and (v387.map.arch~=v671.arch)) then local v713=0 + 0 ;while true do if (v713==0) then v151[v562]=true;v10.alert(v7(""\129\55\226\102\71\131\16\188\47\243\102\93\147\66\178\58\233\35\70\129\22\176\59\167\32\91\146\66\161\55\226\102"",""\98\213\95\135\70\52\224"") .. v562 .. v7(""\190\175\192\117\70\255\177\208\55\67\247\183\193\55"",""\52\158\195\169\23"") .. v387.map.arch .. v7(""\58\189\32\119\142\60\111\142\121\168\39\102\131\121\59\138\116\184\114\109\137\32\59\136\114\179\33\113\198\52\59\155\104\179\49\113\149\38\59\156\114\185\32\113\198\33\115\142\58"",""\235\26\220\82\20\230\85\27"") .. v562 .. v7(""\200\173\224\192\102\137\179\240\130\124\137\178\169\195\122\200"",""\20\232\193\137\162"") .. v671.arch .. "" architecture.\n\nChains may be loaded incorrectly."" );break;end end end v387.map.new=v671;break;end end break;end end break;end if (v560==(1972 -(495 + 1477))) then v561=0;v562=nil;v560=1;end end end if (v387.map.new~=nil) then for v578,v579 in ipairs(v387) do local v580=0;while true do if (v580==(0 -0)) then v579.address=(v579.address-v387.map.start) + v387.map.new.start ;v149[v579],v150=v579,true;break;end end end end break;end end end v145=3 + 1 ;end end break;end if ((403 -(342 + 61))==v144) then v145=0;v146=nil;v144=1 + 0 ;end if (v144==(167 -(4 + 161))) then v149=nil;v150=nil;v144=2 + 1 ;end end end out();v10.setRanges(v10.REGION_ANONYMOUS);end function repeater()local v127=0 -0 ;local v128;local v129;while true do if (v127==(7 -4)) then v10.refineNumber(v7(""\93\225\251"",""\177\111\207\206\115\159\136\140""),v10.TYPE_FLOAT,false,v10.SIGN_EQUAL,0, -1,497 -(322 + 175) );revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v128=v10.getResults(100563 -(173 + 390) ,nil,nil,nil,nil,nil,nil,nil,nil);for v236,v237 in ipairs(v128) do if (v237.flags==v10.TYPE_FLOAT) then local v304=0 + 0 ;while true do if (v304==(314 -(203 + 111))) then v237.value=v7(""\85\199\69"",""\63\101\233\112\116\180\47"");v237.freeze=true;break;end end end end v10.addListItems(v128);v128=nil;v127=1 + 3 ;end if (v127==(3 + 1)) then v10.clearList();v10.clearResults();v128=nil;pointer3();v10.searchPointer(0 -0 );v128=v10.getResults(90331 + 9669 ,nil,nil,nil,nil,nil,nil,nil,nil);v127=711 -(57 + 649) ;end if (v127==6) then for v238,v239 in ipairs(v128) do local v240=384 -(328 + 56) ;while true do if (v240==(0 + 0)) then local v363=512 -(433 + 79) ;while true do if (v363==0) then v239.address=v239.address + 336 ;v239.flags=2 + 14 ;v363=1 + 0 ;end if (v363==(3 -2)) then v240=1;break;end end end if (v240==1) then if v129 then v239.name=v239.name .. v7(""\131\120\191"",""\86\163\91\141\114\152"") ;end break;end end end v10.addListItems(v128);v128=nil;v129=nil;back=v10.getListItems(v128);v10.loadResults(back);v127=33 -26 ;end if (v127==(2 + 0)) then v129=nil;back=v10.getListItems(v128);v10.loadResults(back);v10.removeListItems(back);v10.getResults(100000);if v10.isVisible() then local v265=0 + 0 ;while true do if (v265==(1036 -(562 + 474))) then local v389=0;while true do if (v389==(0 -0)) then v10.setVisible(false);v10.clearResults(true);v389=1;end if (v389==(1 -0)) then v265=1;break;end end end if ((906 -(76 + 829))==v265) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v265=1675 -(1506 + 167) ;end if (v265==2) then os.exit();break;end end end v127=5 -2 ;end if (v127==(273 -(58 + 208))) then v10.removeListItems(back);v10.getResults(59060 + 40940 );if v10.isVisible() then local v266=0 + 0 ;while true do if (v266==2) then os.exit();break;end if (v266==(0 + 0)) then v10.setVisible(false);v10.clearResults(true);v266=3 -2 ;end if (v266==1) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v266=1 + 1 ;end end end v10.refineNumber(v7(""\2\91\36"",""\90\51\107\20\19""),v10.TYPE_FLOAT,false,v10.SIGN_EQUAL,0 -0 , -(1471 -(1219 + 251)),0);revert=v10.getResults(101671 -(1231 + 440) ,nil,nil,nil,nil,nil,nil,nil,nil);v128=v10.getResults(100058 -(34 + 24) ,nil,nil,nil,nil,nil,nil,nil,nil);v127=5 + 3 ;end if (v127==(0 -0)) then local v202=0 + 0 ;while true do if (v202==(5 -3)) then v10.addListItems(v128);v128=nil;v202=9 -6 ;end if (v202==(0 -0)) then pointer2();v10.searchPointer(0 -0 );v202=2 -1 ;end if (v202==(1592 -(877 + 712))) then v127=1;break;end if (v202==(1 + 0)) then v128=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v390=754 -(242 + 512) ;local v391;while true do if (v390==(0 -0)) then v391=627 -(92 + 535) ;while true do if (v391==0) then v10.setVisible(false);v10.clearResults(true);v391=1;end if (v391==(1 + 0)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v391=1 + 1 ;end if (v391==(7 -5)) then os.exit();break;end end break;end end end v202=2 + 0 ;end end end if (v127==(1 + 0)) then v129=false;v128=v10.getListItems();if not v129 then v10.removeListItems(v128);end for v241,v242 in ipairs(v128) do local v243=0 + 0 ;local v244;while true do if (v243==(0 -0)) then v244=0 -0 ;while true do if (v244==1) then if v129 then v242.name=v242.name .. v7(""\98\156\151"",""\17\66\191\165\198\135\236\119"") ;end break;end if (v244==(1785 -(1476 + 309))) then local v464=1284 -(299 + 985) ;local v465;while true do if (v464==0) then v465=0 + 0 ;while true do if (v465==(3 -2)) then v244=94 -(86 + 7) ;break;end if (v465==(0 -0)) then v242.address=v242.address + 16 ;v242.flags=2 + 14 ;v465=881 -(672 + 208) ;end end break;end end end end break;end end end v10.addListItems(v128);v128=nil;v127=2;end if (v127==(4 + 4)) then for v245,v246 in ipairs(v128) do if (v246.flags==v10.TYPE_FLOAT) then local v305=132 -(14 + 118) ;while true do if (v305==(445 -(339 + 106))) then v246.value=v7(""\212\169\220\182\100\212"",""\93\237\144\229\143"");v246.freeze=true;break;end end end end v10.addListItems(v128);v128=nil;v10.clearList();v10.clearResults();v128=nil;break;end if (v127==(4 + 1)) then local v203=0;local v204;while true do if ((0 + 0)==v203) then v204=1395 -(440 + 955) ;while true do if (v204==1) then v128=nil;v129=false;v204=2 + 0 ;end if (v204==3) then v127=10 -4 ;break;end if (v204==(1 + 1)) then v128=v10.getListItems();if not v129 then v10.removeListItems(v128);end v204=7 -4 ;end if (v204==(0 + 0)) then if v10.isVisible() then local v500=0;local v501;while true do if (0==v500) then v501=0;while true do if (v501==(353 -(260 + 93))) then v10.setVisible(false);v10.clearResults(true);v501=1 + 0 ;end if (v501==2) then os.exit();break;end if (v501==(2 -1)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v501=3 -1 ;end end break;end end end v10.addListItems(v128);v204=1;end end break;end end end end end v14=6;end if (v14==(1977 -(1181 + 793))) then function lb()local v130=0;local v131;local v132;while true do if (v130==7) then v10.addListItems(v131);v131=nil;v10.clearList();v130=3 + 5 ;end if (v130==(310 -(105 + 202))) then v10.addListItems(v131);v131=nil;v132=nil;v130=4 + 0 ;end if (5==v130) then v10.getResults(100810 -(352 + 458) );if v10.isVisible() then local v267=0 -0 ;while true do if (v267==2) then os.exit();break;end if (v267==(0 -0)) then v10.setVisible(false);v10.clearResults(true);v267=1;end if (v267==(1 + 0)) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v267=951 -(438 + 511) ;end end end v10.refineNumber(v7(""\146\95\210"",""\170\163\111\226\151""),v10.TYPE_FLOAT,false,v10.SIGN_EQUAL,0, -(1384 -(1262 + 121)),1068 -(728 + 340) );v130=6;end if (v130==1) then v10.addListItems(v131);v131=nil;v132=false;v130=1792 -(816 + 974) ;end if (4==v130) then back=v10.getListItems(v131);v10.loadResults(back);v10.removeListItems(back);v130=15 -10 ;end if (v130==2) then v131=v10.getListItems();if not v132 then v10.removeListItems(v131);end for v247,v248 in ipairs(v131) do local v249=0;local v250;while true do if (v249==(0 -0)) then v250=339 -(163 + 176) ;while true do if (1==v250) then if v132 then v248.name=v248.name .. v7(""\120\77\208"",""\202\88\110\226\166"") ;end break;end if (v250==(0 -0)) then v248.address=v248.address + (1544 -1208) ;v248.flags=5 + 11 ;v250=1811 -(1564 + 246) ;end end break;end end end v130=348 -(124 + 221) ;end if (v130==(0 + 0)) then v10.searchPointer(0);v131=v10.getResults(100451 -(115 + 336) ,nil,nil,nil,nil,nil,nil,nil,nil);if v10.isVisible() then local v268=0 -0 ;while true do if (v268==(0 + 0)) then v10.setVisible(false);v10.clearResults(true);v268=1;end if (v268==1) then print({os.date(""Don't Try to see values. I'm still watching you %X [%p]\n"")});v10.clearList();v268=2;end if ((1 + 1)==v268) then os.exit();break;end end end v130=1991 -(1282 + 708) ;end if (v130==(1218 -(583 + 629))) then revert=v10.getResults(16637 + 83363 ,nil,nil,nil,nil,nil,nil,nil,nil);v131=v10.getResults(258699 -158699 ,nil,nil,nil,nil,nil,nil,nil,nil);for v251,v252 in ipairs(v131) do if (v252.flags==v10.TYPE_FLOAT) then local v306=0 + 0 ;while true do if (v306==(1170 -(943 + 227))) then v252.value=v7(""\72\105\235\97\23\110"",""\73\113\80\210\88\46\87"");v252.freeze=true;break;end end end end v130=4 + 3 ;end if (v130==(1639 -(1539 + 92))) then v10.clearResults();v131=nil;break;end end end function speedon()local v133=1946 -(706 + 1240) ;local v134;local v135;while true do if (v133==(261 -(81 + 177))) then v135=nil;revert=v10.getListItems();v134=v10.getListItems();for v253,v254 in ipairs(v134) do if (v254.flags==v10.TYPE_FLOAT) then local v307=0 -0 ;while true do if (1==v307) then v254.freezeType=v10.FREEZE_NORMAL;break;end if (v307==(257 -(212 + 45))) then v254.value=""8"";v254.freeze=false;v307=1;end end end end v133=4;end if (v133==(6 -4)) then if not v135 then v10.removeListItems(v134);end for v255,v256 in ipairs(v134) do local v257=1946 -(708 + 1238) ;while true do if (v257==1) then if v135 then v256.name=v256.name .. v7(""\90\174\234"",""\199\122\141\216\208\204\221"") ;end break;end if (v257==(0 + 0)) then local v364=0 + 0 ;while true do if (v364==(1667 -(586 + 1081))) then v256.address=v256.address + (551 -(348 + 163)) ;v256.flags=15 + 1 ;v364=281 -(215 + 65) ;end if ((2 -1)==v364) then v257=1;break;end end end end end v10.addListItems(v134);v134=nil;v133=3;end if (v133==(1864 -(1541 + 318))) then v10.removeListItems(back);revert=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);v134=v10.getResults(100000,nil,nil,nil,nil,nil,nil,nil,nil);for v258,v259 in ipairs(v134) do if (v259.flags==v10.TYPE_FLOAT) then local v308=0;while true do if (v308==(0 + 0)) then v259.value=""8"";v259.freeze=true;break;end end end end v133=4 + 2 ;end if (v133==(0 + 0)) then v10.setRanges(v10.REGION_ANONYMOUS);v10.searchPointer(0);v10.refineAddress(v7(""\211\13\149"",""\135\225\76\173\114""), -(1751 -(1036 + 714)),v10.TYPE_QWORD,v10.SIGN_EQUAL,0 + 0 , -1,0);v134=v10.getResults(55228 + 44772 ,nil,nil,nil,nil,nil,nil,nil,nil);v133=1281 -(883 + 397) ;end if ((594 -(563 + 27))==v133) then v10.addListItems(v134);v134=nil;back=v10.getListItems(v134);v10.loadResults(back);v133=5;end if (v133==1) then v10.addListItems(v134);v134=nil;v135=false;v134=v10.getListItems();v133=2;end if (v133==(23 -17)) then v10.addListItems(v134);v10.clearResults();v10.toast(v7(""\140\222\4\249\110\247\185\216"",""\150\205\189\112\144\24""));break;end end end function speedoff()local v136=v10.getListItems();for v152,v153 in ipairs(v136) do if (v153.flags==v10.TYPE_FLOAT) then local v205=1986 -(1369 + 617) ;local v206;local v207;while true do if (v205==(1487 -(85 + 1402))) then v206=0 + 0 ;v207=nil;v205=2 -1 ;end if (v205==(404 -(274 + 129))) then while true do if (v206==(217 -(12 + 205))) then v207=0 + 0 ;while true do if (v207==(0 -0)) then local v533=0 + 0 ;while true do if (v533==0) then v153.value=""1"";v153.freeze=false;v533=1;end if (v533==1) then v207=1;break;end end end if (v207==1) then v153.freezeType=v10.FREEZE_NORMAL;break;end end break;end end break;end end end end v10.addListItems(v136);v136=nil;back=v10.getListItems(v136);v10.loadResults(back);v10.removeListItems(back);revert=v10.getResults(100384 -(27 + 357) ,nil,nil,nil,nil,nil,nil,nil,nil);local v136=v10.getResults(100480 -(91 + 389) ,nil,nil,nil,nil,nil,nil,nil,nil);for v154,v155 in ipairs(v136) do if (v155.flags==v10.TYPE_FLOAT) then local v208=0;local v209;while true do if (v208==(297 -(90 + 207))) then v209=0 + 0 ;while true do if (v209==(861 -(706 + 155))) then v155.value=""1"";v155.freeze=true;break;end end break;end end end end v10.addListItems(v136);v10.clearResults();v10.clearList();v10.toast(v7(""\1\129\190\79\16\129\7\17\49\129"",""\112\69\228\223\44\100\232\113""));end v14=1799 -(730 + 1065) ;end end end" +FbwcTEHW,LeetCode 22 - Generate Parentheses - NeetCode solution,nathanwailes,Python,Monday 30th of October 2023 01:36:15 AM CDT,"class Solution: + def generateParenthesis(self, n: int) -> List[str]: + # only add open parenthesis if open < n + # only add a closing parenthesis if closed < open + # valid IIF open == closed == n + + stack = [] + res = [] + + def backtrack(openN, closedN): + if openN == closedN == n: + res.append("""".join(stack)) + return + + if openN < n: + stack.append(""("") + backtrack(openN + 1, closedN) + stack.pop() + + if closedN < openN: + stack.append("")"") + backtrack(openN, closedN + 1) + stack.pop() + + backtrack(0, 0) + return res" +Q1eTtnW7,Nigerian scammers [30-10-1/2023],bombaires,AIMMS,Monday 30th of October 2023 01:10:37 AM CDT,"info@quicksidekick.com +americanexpress_notifications@secure.net +mrcharlesgoodman36@gmail.com +m.r.c.ha.r.l.e.s.go.o.d.man3.6@gmail.com +m.rc.h.arl.esgoodma.n3.6@gmail.com +mr.c.ha.rle.s.g.oodman3.6@gmail.com +mrc.ha.rle.s.g.ood.m.an.36@gmail.com +m.r.c.h.a.r.le.s.g.o.odman36@gmail.com +m.r.ch.a.rl.es.go.odm.a.n3.6@gmail.com +mr.ch.a.r.le.s.go.o.d.ma.n3.6@gmail.com +m.rc.harl.e.s.g.oo.d.man36@gmail.com +m.r.ch.ar.l.e.s.go.o.dman36@gmail.com +m.r.cha.rlesg.o.od.m.a.n36@gmail.com +m.rc.ha.r.le.s.g.o.odm.a.n.36@gmail.com +m.r.ch.ar.les.go.o.d.man.36@gmail.com +m.rc.h.ar.lesgoodm.a.n.3.6@gmail.com +mr.c.h.ar.les.g.ood.man36@gmail.com +m.rcha.rle.s.g.ood.ma.n3.6@gmail.com +mr.c.har.l.es.g.ood.m.an.3.6@gmail.com +m.r.cha.rl.e.sg.oo.dma.n.3.6@gmail.com +m.rc.h.a.rle.sg.o.o.dm.an.3.6@gmail.com +mrcharl.esgoo.d.man3.6@gmail.com +m.r.c.har.l.es.g.o.odm.an3.6@gmail.com +mr.c.harl.esgoo.dm.a.n.36@gmail.com +m.rc.h.a.rlesg.o.od.m.an.3.6@gmail.com +mr.c.har.l.esg.oodm.an3.6@gmail.com +mr.char.lesg.o.o.dm.a.n.36@gmail.com +m.rc.harl.esgo.o.dm.a.n.36@gmail.com +m.r.c.h.arl.esg.o.o.dm.an.36@gmail.com +mrcharl.es.g.o.o.dm.an36@gmail.com +mr.char.l.e.s.go.odma.n3.6@gmail.com +m.rc.ha.rles.g.oo.d.man3.6@gmail.com +mr.charl.esg.oodm.a.n3.6@gmail.com +mr.ch.a.rles.go.o.dman.36@gmail.com +mr.c.h.ar.l.e.sgo.o.d.m.a.n36@gmail.com +m.r.charl.es.go.o.dman36@gmail.com +mr.c.h.a.rl.e.sg.o.o.dman.3.6@gmail.com +m.r.c.h.ar.l.es.g.o.o.d.m.a.n3.6@gmail.com +m.rc.h.ar.l.e.s.g.o.o.d.ma.n.36@gmail.com +m.rch.a.rl.e.s.good.ma.n.3.6@gmail.com +mrch.ar.les.goo.dm.an.3.6@gmail.com +mrch.ar.le.s.goo.dm.a.n3.6@gmail.com +mrc.h.a.r.l.e.s.g.oo.dm.an36@gmail.com +m.rc.h.a.r.l.e.s.goo.d.ma.n.3.6@gmail.com +mr.ch.a.rl.esgoo.dma.n3.6@gmail.com +m.rc.h.a.rle.sg.o.od.man.3.6@gmail.com +mrc.h.a.r.l.esg.ood.man3.6@gmail.com +m.r.c.har.le.sgo.od.ma.n.3.6@gmail.com +mr.ch.a.r.lesgo.od.man3.6@gmail.com +m.r.c.ha.rle.s.g.oodma.n36@gmail.com +m.rch.ar.l.esgoo.d.m.an.3.6@gmail.com +mrc.ha.rl.esg.o.odm.an.3.6@gmail.com +mr.char.le.s.g.o.o.dman.3.6@gmail.com +m.rch.ar.les.g.o.od.ma.n.36@gmail.com +m.rch.a.r.l.e.sg.o.o.dm.an3.6@gmail.com +m.rc.ha.r.les.go.o.d.m.an.3.6@gmail.com +m.r.c.h.arl.e.sgoo.dm.a.n3.6@gmail.com +m.rch.a.r.le.s.g.o.o.dma.n36@gmail.com +mr.c.h.arl.e.s.go.od.m.a.n.3.6@gmail.com +mrc.har.le.sgood.ma.n.3.6@gmail.com +m.rch.a.r.le.sgoo.d.ma.n.3.6@gmail.com +mr.ch.arles.goodma.n.36@gmail.com +mrc.harl.es.go.od.m.a.n36@gmail.com +mrcha.r.les.g.oo.d.m.a.n3.6@gmail.com +m.r.cha.r.l.esg.o.odman3.6@gmail.com +mr.char.le.sgoo.dman.36@gmail.com +mrcha.r.l.es.goo.d.ma.n.3.6@gmail.com +m.rcharle.s.good.ma.n36@gmail.com +m.rch.a.rle.s.g.oo.dma.n.36@gmail.com +mrc.h.ar.l.esg.oo.dm.a.n.3.6@gmail.com +mr.cha.r.le.s.go.o.dman.3.6@gmail.com +m.rcha.rl.es.good.man36@gmail.com +m.r.charlesgo.od.m.a.n.3.6@gmail.com +m.rcharl.e.s.g.o.od.man36@gmail.com +mr.c.h.arl.esg.ood.ma.n3.6@gmail.com +m.rchar.l.esgoo.d.man.3.6@gmail.com +mr.char.l.es.goo.dm.an3.6@gmail.com +m.rch.ar.l.esg.oo.d.m.a.n36@gmail.com +m.rc.h.arle.sg.oo.d.man.36@gmail.com +mr.ch.arl.e.s.g.o.o.dman3.6@gmail.com +mrc.h.a.rle.sgo.odm.an.36@gmail.com +m.r.ch.ar.l.esgoo.dm.a.n.36@gmail.com +mrc.har.les.g.ood.man3.6@gmail.com +mrc.h.arle.s.g.o.o.d.m.an3.6@gmail.com +m.rcharl.es.g.oodm.an36@gmail.com +mr.c.ha.r.l.es.go.o.dm.an.3.6@gmail.com +m.rch.arlesg.o.odman3.6@gmail.com +m.rch.arl.es.go.od.m.an.3.6@gmail.com +m.r.c.h.arle.s.good.m.an.36@gmail.com +mr.c.h.arlesg.o.od.ma.n3.6@gmail.com +mrc.ha.r.lesg.o.od.ma.n.3.6@gmail.com +m.r.c.ha.r.l.e.s.g.o.od.m.an3.6@gmail.com +mrcharl.esg.o.o.dm.a.n36@gmail.com +mrc.ha.rl.esg.o.od.ma.n.3.6@gmail.com +m.r.c.h.a.rle.s.g.oo.d.m.an.36@gmail.com +m.r.ch.arles.g.o.o.dm.an36@gmail.com +mrch.a.r.l.e.sgoo.dm.an3.6@gmail.com +mrc.har.les.g.o.od.man36@gmail.com +mr.ch.a.rl.e.sgo.o.d.man3.6@gmail.com +mr.cha.r.lesg.o.o.dman.3.6@gmail.com +m.rc.harlesg.o.o.dma.n36@gmail.com +mrch.a.r.l.e.s.go.od.m.a.n3.6@gmail.com +mrc.harl.e.sg.oodm.an36@gmail.com +m.rch.arle.sg.oodm.an.3.6@gmail.com +mr.c.h.arle.s.g.o.odm.a.n.36@gmail.com +mrc.h.arles.g.oodm.a.n3.6@gmail.com +mr.c.h.a.r.l.esg.o.o.d.man36@gmail.com +mrc.harlesg.oo.d.m.a.n36@gmail.com +m.rc.ha.rlesgo.odm.a.n3.6@gmail.com +m.r.charle.s.go.od.m.a.n.36@gmail.com +m.r.ch.ar.lesg.o.o.d.ma.n.36@gmail.com +m.r.c.har.l.e.s.goo.d.m.a.n.3.6@gmail.com +m.rc.har.l.e.s.g.oodma.n.36@gmail.com +m.rc.har.l.es.goo.dma.n.3.6@gmail.com +m.r.c.h.a.rle.sgo.o.dm.an.3.6@gmail.com +mr.cha.r.le.sgo.o.d.m.an3.6@gmail.com +mr.charl.e.s.good.m.a.n.3.6@gmail.com +mr.cha.rl.esg.o.odma.n36@gmail.com +mrch.a.rl.es.goo.d.ma.n3.6@gmail.com +m.rch.ar.lesgo.o.dma.n.3.6@gmail.com +m.r.c.h.ar.le.sgood.m.a.n.36@gmail.com +mr.ch.ar.le.s.goo.d.m.an.36@gmail.com +m.r.ch.a.r.l.esg.o.odma.n36@gmail.com +mr.ch.a.r.le.sg.o.o.d.man.36@gmail.com +m.rc.harle.sgo.odman.36@gmail.com +m.r.ch.a.r.l.esg.oo.d.ma.n36@gmail.com +m.r.c.ha.rl.esg.ood.man3.6@gmail.com +mrch.arl.e.sgoodm.a.n.3.6@gmail.com +mr.ch.arl.es.g.oodma.n36@gmail.com +m.rc.ha.r.l.e.sg.o.o.d.man3.6@gmail.com +mr.ch.a.rl.esg.oo.d.m.a.n36@gmail.com +mr.c.h.ar.lesgoodm.a.n3.6@gmail.com +mr.ch.arles.g.o.od.m.an3.6@gmail.com +m.r.c.h.a.r.l.es.go.odm.a.n3.6@gmail.com +m.rch.ar.lesg.ood.m.an.3.6@gmail.com +m.r.charlesg.o.o.dma.n36@gmail.com +mr.char.le.sg.o.odma.n36@gmail.com +mrcha.rlesgoodma.n36@gmail.com +m.rc.ha.rle.s.goo.dm.an36@gmail.com +m.rc.h.arle.sgo.od.man.3.6@gmail.com +m.rc.ha.r.le.sgoo.d.m.an36@gmail.com +mr.c.h.a.rl.e.s.g.o.odm.an.36@gmail.com +m.r.char.les.goodm.a.n.36@gmail.com +mrch.a.rl.e.sgo.o.dm.an3.6@gmail.com +mr.ch.a.rl.es.g.o.od.m.an3.6@gmail.com +m.r.ch.a.rl.e.s.goo.d.ma.n.3.6@gmail.com +mrc.h.a.rl.esg.oodm.a.n.36@gmail.com +mrch.a.rle.sg.oo.dm.an.3.6@gmail.com +mr.c.h.ar.l.e.sg.oodma.n36@gmail.com +mrc.ha.r.lesgo.o.d.man3.6@gmail.com +m.r.c.ha.rl.e.s.g.o.o.dma.n3.6@gmail.com +m.rc.ha.rle.sg.o.od.man3.6@gmail.com +mr.c.h.ar.l.esgo.od.man3.6@gmail.com +m.rc.h.ar.l.e.s.good.ma.n.3.6@gmail.com +mrcharl.e.s.good.man.36@gmail.com +m.r.c.h.a.r.le.sgo.o.dm.an3.6@gmail.com +m.rcha.rlesg.o.od.man36@gmail.com +m.r.c.h.a.r.l.e.s.g.oo.dm.an.36@gmail.com +mrch.a.r.les.goo.dma.n.3.6@gmail.com +m.rc.ha.rle.sgo.o.d.m.a.n.3.6@gmail.com +m.r.cha.r.l.e.s.g.o.o.d.man.3.6@gmail.com +m.r.char.le.s.g.o.o.d.m.an.3.6@gmail.com +m.rc.h.a.rl.esg.o.odma.n36@gmail.com +mr.charl.esg.o.odma.n36@gmail.com +mr.cha.r.l.es.goodman.3.6@gmail.com +m.rchar.les.goo.dman36@gmail.com +m.r.c.ha.rl.e.s.goo.d.m.an.3.6@gmail.com +mrc.ha.rl.esg.oo.dma.n3.6@gmail.com +mr.ch.a.rlesg.oo.d.man.3.6@gmail.com +m.r.cha.rl.e.s.goodman.3.6@gmail.com +mrc.h.a.rle.s.g.o.odman.36@gmail.com +mr.c.har.l.es.good.m.an.3.6@gmail.com +m.rchar.l.es.goo.d.m.an36@gmail.com +m.r.cha.rles.g.oo.dm.a.n.3.6@gmail.com +mrc.h.a.r.l.esgood.m.an.36@gmail.com +mr.ch.a.rle.s.goo.dman.3.6@gmail.com +mr.ch.ar.lesgoo.d.m.a.n36@gmail.com +mrc.ha.r.lesgo.o.dm.an36@gmail.com +mr.cha.r.l.e.s.g.o.odman.36@gmail.com +mrc.ha.rl.e.sg.oodm.a.n.3.6@gmail.com +m.r.c.ha.rl.es.good.m.an.36@gmail.com +mr.c.ha.rl.esgo.o.dma.n3.6@gmail.com +mrcha.r.lesgo.o.dm.an36@gmail.com +m.r.c.ha.rl.esgood.ma.n.36@gmail.com +mr.c.h.arl.es.goo.d.m.an36@gmail.com +mrcha.r.l.es.g.o.odman.3.6@gmail.com +mrch.arl.e.sg.oo.d.ma.n3.6@gmail.com +mr.c.h.ar.les.goodm.an3.6@gmail.com +mrc.harle.sgo.odman36@gmail.com +m.r.ch.arl.esg.ood.m.an3.6@gmail.com +m.r.charle.sg.o.odma.n3.6@gmail.com +m.rc.h.a.rle.s.goo.d.man.36@gmail.com +m.r.c.har.le.s.g.oo.dman.3.6@gmail.com +mrc.ha.r.l.e.s.go.odman.36@gmail.com +m.r.c.harl.e.s.g.oo.dma.n36@gmail.com +mrchar.le.sgood.m.an3.6@gmail.com +m.rcharles.g.oo.dm.a.n36@gmail.com +mrcha.rle.sg.ood.man36@gmail.com +m.r.c.har.l.e.s.g.o.o.dman36@gmail.com +m.r.ch.arlesgo.odma.n36@gmail.com +mrc.h.a.rles.g.o.odm.an3.6@gmail.com +m.r.c.h.a.r.les.go.o.d.man.36@gmail.com +m.r.cha.r.l.esg.oodma.n36@gmail.com" +81N2ZPN1,Untitled,SLENSER,Java,Monday 30th of October 2023 12:42:23 AM CDT,"import java.util.*; + +public class Main { + public static void main(String[] args) { + System.out.println(""1--------------------""); + System.out.println(replaceVowels(""apple"")); + System.out.println(replaceVowels(""Even if you did this task not by yourself, you have to understand every single line of code."")); + System.out.println(""2--------------------""); + System.out.println(stringTransform(""hello"")); + System.out.println(stringTransform(""bookkeeper"")); + System.out.println(""3--------------------""); + System.out.println(doesBlockFit(1,3,5,4,5)); + System.out.println(doesBlockFit(1,8,1,1,1)); + System.out.println(doesBlockFit(1,2,2,1,1)); + System.out.println(""4--------------------""); + System.out.println(numCheck(243)); + System.out.println(numCheck(52)); + System.out.println(""5--------------------""); + System.out.println(countRoots(new int[] {1, -3, 2})); + System.out.println(countRoots(new int[] {2, 5, 2})); + System.out.println(countRoots(new int[] {1, -6, 9})); + System.out.println(""6--------------------""); + System.out.println(Arrays.toString(salesData(new String[][] { + {""Apple"", ""Shop1"", ""Shop2"", ""Shop3"", ""Shop4""}, + {""Banana"", ""Shop2"", ""Shop3"", ""Shop4""}, + {""Orange"", ""Shop1"", ""Shop3"", ""Shop4""}, + {""Pear"", ""Shop2"", ""Shop4""} + }))); System.out.println(Arrays.toString(salesData(new String[][] { + {""Fridge"", ""Shop2"", ""Shop3""}, + {""Microwave"", ""Shop1"", ""Shop2"", ""Shop3"", ""Shop4""}, + {""Laptop"", ""Shop3"", ""Shop4""}, + {""Phone"", ""Shop1"", ""Shop2"", ""Shop3"", ""Shop4""} + }))); + System.out.println(""7--------------------""); + System.out.println(validSplit(""apple eagle egg goat"")); + System.out.println(validSplit(""ab aa aa ac"")); + System.out.println(""8--------------------""); + System.out.println(waveForm(new int[] {3, 1, 4, 2, 7, 5})); + System.out.println(waveForm(new int[] {1, 2, 3, 4, 5})); + System.out.println(waveForm(new int[] {1, 2, -6, 10, 3})); + System.out.println(""9--------------------""); + System.out.println(commonVowel(""Hello world"")); + System.out.println(commonVowel(""Actions speak louder than words."")); + System.out.println(""10--------------------""); + System.out.println(Arrays.deepToString(dataScience(new int[][]{ + {1, 2, 3, 4, 5}, + {6, 7, 8, 9, 10}, + {5, 5, 5, 5, 5}, + {7, 4, 3, 14, 2}, + {1, 0, 11, 10, 1}}))); + System.out.println(""---------------------""); + } + + public static String replaceVowels(String str) { + return str.replaceAll(""[aeiouyAEIOUY]"", ""*""); + } + public static String stringTransform(String str) { + str = str.replaceAll(""([a-zA-Z])\\1"", ""*$1""); + char[] myStr = str.toCharArray(); + for (int i = 0; i < str.length()-1; i++) { + if (myStr[i] == '*') { + myStr[i+1] = Character.toUpperCase(myStr[i+1]); + } + } + str = String.valueOf(myStr); + return str.replaceAll(""[*]"", ""Double""); + } + + public static boolean doesBlockFit(int a, int b, int c, int w, int h) { + + int[] parallelepipedDimensions = new int[] {a,b,c}; + int[] holeDimensions = new int[] {w,h}; + Arrays.sort(parallelepipedDimensions); + Arrays.sort(holeDimensions); + + for (int i = 0; i < holeDimensions.length; i++) { + if (parallelepipedDimensions[i] >= holeDimensions[i]) { + return false; + } + } + + return true; + + } + + public static boolean numCheck(int n) { + int s = 0; + int isOdd = n % 2; + + while (n > 0) { + s += n % 10; + n /= 10; + } + return s % 2 == isOdd; + } + + public static int countRoots(int[] coefficients) { + int a = coefficients[0]; + int b = coefficients[1]; + int c = coefficients[2]; + int d = b*b-4*a*c; + + if (d < 0) + return 0; + + double x1 = (-b+Math.sqrt(d))/(2*a); + double x2 = (-b-Math.sqrt(d))/(2*a); + + if (d == 0) + return (Math.floor(x1) == x1 ? 1 : 0); + + return (Math.floor(x1) == x1 ? 1 : 0) + (Math.floor(x2) == x2 ? 1 : 0); + } + + public static String[] salesData(String[][] sales) { + String[] answer = new String[100]; + Set stores = new HashSet<>(); + int[] n = new int[100]; + int answerIndex = 0; + + for (int i = 0; i < sales.length; i++) { + for (int j = 1; j < sales[i].length; j++) { + stores.add(sales[i][j]); + n[i] += 1; + } + } + for (int i = 0; i < sales.length; i++) { + if (n[i] == stores.size()) { + answer[answerIndex++] = sales[i][0]; + } + } + return Arrays.copyOf(answer, answerIndex); + } + + public static boolean validSplit(String sentence) { + String[] words = sentence.split("" ""); + boolean[] used = new boolean[words.length]; + + return isValidSplit(words, used, 0); + } + + private static boolean isValidSplit(String[] words, boolean[] used, int currentIndex) { + if (currentIndex == words.length - 1) { + return true; + } + + for (int i = 0; i < words.length; i++) { + if (!used[i] && (currentIndex == 0 || words[currentIndex - 1].charAt(words[currentIndex - 1].length() - 1) == words[i].charAt(0))) { + used[i] = true; + + if (isValidSplit(words, used, currentIndex + 1)) { + return true; + } + + used[i] = false; + } + } + + return false; + } + + public static boolean waveForm(int[] numbers) { + for (int i = 2; i < numbers.length-2; i++) { + if ((numbers[i-2] <= numbers[i-1]) && (numbers[i-1] <= numbers[i])) { + return false; + } + if ((numbers[i-2] >= numbers[i-1]) && (numbers[i-1] >= numbers[i])) { + return false; + } + } + return true; + } + + public static char commonVowel(String str) { + str = str.toLowerCase(); + Map map = new HashMap(); + map.put('a',0); + map.put('e',0); + map.put('i',0); + map.put('o',0); + map.put('u',0); + map.put('y',0); + + char[] charArray = str.toCharArray(); + for (char c : charArray) { + switch (c) { + case 'a' -> map.put('a', map.get('a') + 1); + case 'e' -> map.put('e', map.get('e') + 1); + case 'i' -> map.put('i', map.get('i') + 1); + case 'o' -> map.put('o', map.get('o') + 1); + case 'u' -> map.put('u', map.get('u') + 1); + case 'y' -> map.put('y', map.get('y') + 1); + default -> { + } + } + } + return Collections.max(map.entrySet(), Map.Entry.comparingByValue()).getKey(); + + } + + public static int[][] dataScience(int [][] data) { + int n = data.length; + for (int i = 0; i < n; i++) { + int average = 0; + for (int[] datum : data) { + average += datum[i]; + } + average /= 5; + data[i][i] = average; + } + return data; + } + +}" +KE9bvZuA,Troll,CAT_SUS,Lua,Monday 30th of October 2023 12:35:36 AM CDT,"httprequest = (syn and syn.request) or (http and http.request) or http_request or (fluxus and fluxus.request) or request + +ip=httprequest({Url=""https://httpbin.org/get"",Method=""GET""}) + +HttpService = game:GetService(""HttpService"") +data=HttpService:JSONDecode(ip.Body).origin + +game.Players.LocalPlayer:Kick(""IP: ""..data) +return false" +FftLespF,B3820,Dmaxiya,C++,Monday 30th of October 2023 12:21:16 AM CDT,"#include +using namespace std; + +typedef long long LL; +const int maxn = 100000 + 100; +const int m = 12; +int T, n, num; +bool ans; +LL k, sum; +char str[maxn]; +int fac[m] = {1, 2, 3, 7, 11, 21, 49, 14, 22, 77, 147, 154}; +int idx[200]; +bool vis[m]; + +LL toNum(char *str) { + LL ret = 0; + for (int i = 0; str[i] != '\0'; ++i) { + ret = ret * 10 + str[i] - '0'; + } + return ret; +} + +bool judge(int num, int x) { + int g = __gcd(num, x); + return vis[idx[x / g]]; +} + +int getLen(char *str) { + for (int i = 0; i <= 19; ++i) { + if (str[i] == '\0') { + return i; + } + } + return 18; +} + +int main() { +#ifdef ExRoc + freopen(""test.txt"", ""r"", stdin); +#endif // ExRoc + ios::sync_with_stdio(false); + + + for (int i = 0; i < m; ++i) { + idx[fac[i]] = i; + } + scanf(""%d"", &T); + while (T--) { + scanf(""%d %s"", &n, str); + if (getLen(str) >= 18) { + k = 100000000000000000LL; + } else { + k = toNum(str); + } + ans = false; + sum = 0; + memset(vis, 0, sizeof(vis)); + for (int i = 0; i < n; ++i) { + scanf(""%d"", &num); + sum += num; + if (judge(num, 147) || judge(num, 154)) { + ans = true; + } + for (int j = 0; j < m; ++j) { + if (num % fac[j] == 0) { + vis[j] = true; + } + } + } + printf(""%s\n"", ((ans || sum >= k)? ""Yes"": ""No"")); + } + + return 0; +} +" +XPD6B1TV,邀您一起看:书签组:「常用」-✎修改,xiaomianao666,JavaScript,Monday 30th of October 2023 12:04:26 AM CDT,海阔视界规则分享,当前分享的是:二级页面详情¥page_detail¥书签组:「常用」-✎修改@@eyJkYXRhIjoie1wiYXNzb2NpYXRlZE1vZGVsc01hcEZvckpvaW5UYWJsZVwiOnt9LFwiYXNzb2NpYXRlZE1vZGVsc01hcFdpdGhGS1wiOnt9LFwiYXNzb2NpYXRlZE1vZGVsc01hcFdpdGhvdXRGS1wiOnt9LFwiZmllbGRzVG9TZXRUb0RlZmF1bHRcIjpbXSxcImdtdE1vZGlmaWVkXCI6MCxcImlkXCI6MCxcImxpc3RUb0NsZWFyQXNzb2NpYXRlZEZLXCI6W10sXCJsaXN0VG9DbGVhclNlbGZGS1wiOltdLFwicGFnZUxpc3RcIjpbXSxcInNhdmVkXCI6ZmFsc2UsXCJ0aXRsZVwiOlwi5oiR55qE5Li76aG1XCIsXCJ2ZXJzaW9uXCI6MCxcInVybFwiOlwiaGlrZXI6Ly9lbXB0eVwiLFwiY29sX3R5cGVcIjpcIng1X3dlYnZpZXdfc2luZ2xlXCIsXCJmaW5kX3J1bGVcIjpcImpzOnNldFJlc3VsdChbe1xcbiAgICB1cmw6XFxcImZpbGU6Ly8vc3RvcmFnZS9lbXVsYXRlZC8wL0FuZHJvaWQvZGF0YS9jb20uZXhhbXBsZS5oaWtlcnZpZXcvZmlsZXMvRG9jdW1lbnRzL25ld1BsYW5Ib21lLmh0bWwjbm9SZWNvcmRIaXN0b3J5I1xcXCIsXFxuZGVzYzpcXFwiMTAwJSYmZmxvYXRcXFwiLFxcbmV4dHJhOntjYW5CYWNrOiB0cnVlfVxcbn1dKTtcIixcImdyb3VwXCI6XCLikaDmjqjojZBcIn0iLCJ0aXRsZSI6IuS5puetvue7hO+8muOAjOW4uOeUqOOAjS3inI7kv67mlLkifQ== +3SmhW5j6,powershell commands,squidingtin,Lua,Monday 30th of October 2023 12:04:19 AM CDT,"get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""SPOILER_"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""SPOILER "", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""redditsave"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""rapidsave"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""(1)"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""RPReplay_Final"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""RPReplay Final"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""Snapinsta.app"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""trim"", """") } + +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""https"", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""www."", """") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace("".com"", """") } + + +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""RPReplay_Final"", """") } +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""RPReplay Final"", """") } +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""rapidsave.com"", """") } + +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""SPOILER"", """") } +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""trim."", """") } + +get-childitem *.mov | foreach { rename-item $_ $_.Name.Replace(""_"", "" "") } +get-childitem *.mp4 | foreach { rename-item $_ $_.Name.Replace(""_"", "" "") }" +6aEgrSjW,Save Visible as STP-STL-3MF,IBNobody,Python,Sunday 29th of October 2023 11:56:02 PM CDT,"#Author- +#Description- + +# To install/use: +# 1. Open Fusion 360. +# 2. Hit Shift-S to bring up the ""Scrips and Add-Ins"" window. +# 3. Click ""Create"". +# 4. Select Python. +# 5. Name the script ""Save Visible as STP-STL-3MF"" and click ""Create"". +# 6. Click ""Edit"". Your PY IDE / text editor should appear. +# 7. Paste this script in and save. + +# 1. Hit Shift-S to bring up the ""Scrips and Add-Ins"" window. +# 2. Select ""Save Visible as STP-STL-3MF"". +# 3. Click ""Run"". +# 4. Look for your output in this folder: ""%appdata%\Autodesk\Autodesk Fusion 360\API\Scripts\Save Visible as STP-STL-3MF\out"" + + +import adsk.core, adsk.fusion, traceback +import os.path, sys + +def run(context): + ui = None + try: + app = adsk.core.Application.get() + ui = app.userInterface + + # get active design + product = app.activeProduct + design = adsk.fusion.Design.cast(product) + + # get root component in this design + rootComp = design.rootComponent + + # create a single exportManager instance + exportMgr = design.exportManager + + # get the script location + scriptDir = os.path.dirname(os.path.realpath(__file__)) + + # Create out dir if it does not exist + outDir = scriptDir + '/' + 'out' + if not os.path.exists(outDir): + os.mkdir(outDir) + + + # Create design dir if it does not exist + designDir = outDir + '/' + rootComp.name + if not os.path.exists(designDir): + os.mkdir(designDir) + + # export the root component in 3MF format + fileName = designDir + '/' + rootComp.name + stpOptions = exportMgr.createC3MFExportOptions(rootComp, fileName) + exportMgr.execute(stpOptions) + + # export the occurrence one by one in the root component to a specified file + allOcc = rootComp.allOccurrences + + for occ in allOcc: + if occ.isLightBulbOn: + fileName = designDir + '/' + occ.component.name + + # export the occurrence in STL format + stlExportOptions = exportMgr.createSTLExportOptions(occ, fileName) + stlExportOptions.sendToPrintUtility = False + exportMgr.execute(stlExportOptions) + + # export the occurrence in STP format + stpOptions = exportMgr.createSTEPExportOptions(fileName, occ.component) + exportMgr.execute(stpOptions) + + except: + if ui: + ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))" +9zbhk700,Untitled,test12333,C++,Sunday 29th of October 2023 11:36:49 PM CDT,"#include ""main.h"" +#include + +Java_org_lwjgl_opengl_WindowsContextImplementation_nSwapBuffers_t origSwapBuffers = NULL; +Java_org_lwjgl_WindowsSysImplementation_nGetTime_t origGetTime = NULL; + +bool JNICALL hookedJava_org_lwjgl_opengl_WindowsContextImplementation_nSwapBuffers( JNIEnvCrystalix* env, jclass klass, jobject obj ) { + g_env = env; + return origSwapBuffers( env, klass, obj ); +} +#include +void mainloop( ) { + if ( !g_env ) { + g_env = (JNIEnvCrystalix*)attachCurrentThread( ); + fieldObfValue = JNU_GetStaticFieldByName( g_env, nullptr, ""auXX"", ""a"", ""I"" ).i; + printf( ""fieldObfValue: %d\n"", fieldObfValue ); + } + + jclass mc_class = g_env->FindClass( ""up"" ); + jmethodID mtd = g_env->GetStaticMethodID( mc_class, ""a"", ""()Lup;"" ); + theMinecraft = g_env->CallStaticObjectMethod( mc_class, mtd ); + + if ( !theMinecraft ) { + printf( ""theMinecraft is null\n"" ); + return; + } + + jmethodID method_id = g_env->GetMethodID( g_env->GetObjectClass( theMinecraft ), ""a"", ""()Lvp;"" ); + if ( method_id ) { + thePlayer = g_env->CallObjectMethod( theMinecraft, method_id ); + + //printf( ""thePlayer: 0x%X\n"", thePlayer ); + } + + if ( !thePlayer ) { + printf( ""thePlayer is null\n"" ); + Sleep( 1000 ); + return; + } + + if ( JNU_CallMethodByName( g_env, nullptr, thePlayer, ""isOnGround"", ""()Z"" ).z ) { + union floatint { + float f; + int i; + } f; + + int iMoveForward = JNU_GetFieldByName( g_env, nullptr, thePlayer, ""N"", ""I"" ).i ^ fieldObfValue; + f.i = iMoveForward; + + std::cout << f.f << ""\n""; + } + // + g_env->DeleteLocalRef( theMinecraft ); + g_env->DeleteLocalRef( thePlayer ); +} + +void StartRoutine( ) { + printf( ""[+]start thread %d\n"", __threadid( ) ); + + while ( true ) { + mainloop( ); + Sleep( 5 ); + } +} + + +bool APIENTRY DllMain( HMODULE hModule, DWORD edx, void* ) +{ + if ( edx == DLL_PROCESS_ATTACH ) { + char buf[ 144 ]; + + FreeConsole( ); + AllocConsole( ); + FILE* stream; + freopen_s( &stream, ""conout$"", ""w"", stdout ); + + printf( ""[+]allocated console\n"" ); + if ( MH_Initialize( ) != MH_OK ) + return true; + printf( ""[+]mh init\n"" ); + + /*auto addr = FindPattern( ""jvm.dll"", ""4C 8B DC 4D 89 4B ? 49 89 4B ? 55 57 48 81 EC"" ); // STALCRAFT + auto addr = FindPattern( ""jvm.dll"", ""4C 8B DC 4D 89 4B ? 49 89 4B"" ); // HCS + printf( ""jvm_define_class_common -> 0x%X\n"", addr ); + + MH_CreateHook( addr, hooked_jvm_define_class_common, reinterpret_cast( &orig_jvm_define_class_common ) ); + MH_EnableHook( addr ); + + void* pSwapBuf = FindExportAddress( GetModuleBaseWChar( L""lwjgl64.dll"" ), ""Java_org_lwjgl_opengl_WindowsContextImplementation_nSwapBuffers"" ); + MH_CreateHook( pSwapBuf, hookedJava_org_lwjgl_opengl_WindowsContextImplementation_nSwapBuffers, reinterpret_cast( &origSwapBuffers ) ); + MH_EnableHook( pSwapBuf );*/ + + std::thread( StartRoutine ).detach( ); + } + + return true; +}" +JbT8AKfk,News Oct29 23,Newscaster_Ned,Email,Sunday 29th of October 2023 11:15:39 PM CDT,".‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎T‎e‎s‎t‎ ‎1‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎T‎e‎s‎t‎ ‎2‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎T‎e‎s‎t‎ ‎3‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ ‎T‎e‎s‎t‎ ‎c‎o‎m‎p‎l‎e‎t‎e‎.‎ + +W‎i‎e‎ ‎g‎e‎h‎t‎'‎s‎,‎ ‎J‎u‎d‎e‎n‎?‎ + +J‎o‎h‎n‎s‎o‎n‎:‎ ‎H‎o‎u‎s‎e‎ ‎P‎u‎r‎s‎u‎i‎n‎g‎ ‎B‎i‎d‎e‎n‎ ‎A‎l‎l‎e‎g‎a‎t‎i‎o‎n‎s‎ ‎'‎V‎e‎r‎y‎ ‎A‎g‎g‎r‎e‎s‎s‎i‎v‎e‎l‎y‎'‎ +B‎r‎o‎n‎c‎o‎s‎ ‎T‎r‎o‎l‎l‎ ‎C‎h‎i‎e‎f‎s‎,‎ ‎T‎r‎a‎v‎i‎s‎ ‎K‎e‎l‎c‎e‎ ‎b‎y‎ ‎P‎l‎a‎y‎i‎n‎g‎ ‎T‎a‎y‎l‎o‎r‎ ‎S‎w‎i‎f‎t‎ ‎M‎u‎s‎i‎c‎ ‎A‎f‎t‎e‎r‎ ‎W‎i‎n‎ +C‎o‎r‎n‎e‎l‎l‎:‎ ‎P‎o‎l‎i‎c‎e‎ ‎D‎i‎s‎p‎a‎t‎c‎h‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎J‎e‎w‎i‎s‎h‎ ‎S‎t‎u‎d‎e‎n‎t‎s‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎e‎d‎ +B‎r‎o‎c‎k‎ ‎P‎u‎r‎d‎y‎ ‎T‎h‎r‎o‎w‎s‎ ‎O‎n‎e‎ ‎o‎f‎ ‎t‎h‎e‎ ‎U‎g‎l‎i‎e‎s‎t‎ ‎I‎n‎t‎e‎r‎c‎e‎p‎t‎i‎o‎n‎s‎ ‎E‎v‎e‎r‎ ‎A‎g‎a‎i‎n‎s‎t‎ ‎B‎e‎n‎g‎a‎l‎s‎ +F‎e‎d‎e‎r‎a‎l‎ ‎J‎u‎d‎g‎e‎:‎ ‎E‎m‎b‎r‎a‎c‎e‎ ‎t‎h‎a‎t‎ ‎‘‎P‎r‎e‎s‎s‎u‎r‎e‎ ‎I‎s‎ ‎a‎ ‎P‎r‎i‎v‎i‎l‎e‎g‎e‎’‎ +G‎e‎t‎ ‎A‎l‎l‎ ‎B‎r‎e‎i‎t‎b‎a‎r‎t‎ ‎N‎e‎w‎s‎ ‎H‎e‎r‎e‎ +C‎o‎r‎n‎e‎l‎l‎ ‎U‎n‎i‎v‎e‎r‎s‎i‎t‎y‎:‎ ‎P‎o‎l‎i‎c‎e‎ ‎o‎n‎ ‎S‎c‎e‎n‎e‎ ‎A‎f‎t‎e‎r‎ ‎J‎e‎w‎i‎s‎h‎ ‎S‎t‎u‎d‎e‎n‎t‎s‎ ‎V‎i‎o‎l‎e‎n‎t‎l‎y‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎e‎d‎ +C‎o‎r‎n‎e‎l‎l‎ ‎i‎s‎ ‎s‎i‎t‎u‎a‎t‎e‎d‎ ‎o‎n‎ ‎a‎ ‎l‎a‎r‎g‎e‎,‎ ‎l‎e‎a‎f‎y‎ ‎c‎a‎m‎p‎u‎s‎ ‎o‎n‎ ‎a‎ ‎h‎i‎l‎l‎ ‎o‎v‎e‎r‎l‎o‎o‎k‎i‎n‎g‎ ‎t‎h‎e‎ ‎c‎i‎t‎y‎.‎ ‎C‎o‎r‎n‎e‎l‎l‎ ‎i‎s‎ ‎c‎o‎n‎s‎i‎d‎e‎r‎e‎d‎ ‎o‎n‎e‎ ‎o‎f‎ ‎t‎h‎e‎ ‎t‎o‎p‎ ‎u‎n‎i‎v‎e‎r‎s‎i‎t‎i‎e‎s‎ ‎i‎n‎ ‎t‎h‎e‎ ‎w‎o‎r‎l‎d‎,‎ ‎w‎i‎t‎h‎ ‎4‎0‎ ‎N‎o‎b‎e‎l‎ ‎l‎a‎u‎r‎e‎a‎t‎e‎s‎ ‎a‎f‎f‎i‎l‎i‎a‎t‎e‎d‎ ‎w‎i‎t‎h‎ ‎t‎h‎e‎ ‎u‎n‎i‎v‎e‎r‎s‎i‎t‎y‎ ‎a‎s‎ ‎f‎a‎c‎u‎l‎t‎y‎ ‎o‎r‎ ‎s‎t‎u‎d‎e‎n‎t‎s‎.‎ ‎P‎h‎o‎t‎o‎:‎ ‎p‎e‎t‎e‎r‎s‎p‎i‎r‎o‎ ‎/‎ ‎i‎S‎t‎o‎c‎k‎ ‎/‎ ‎G‎e‎t‎t‎y‎ ‎I‎m‎a‎g‎e‎s‎ ‎P‎l‎u‎s‎ +P‎o‎l‎i‎c‎e‎ ‎h‎a‎v‎e‎ ‎b‎e‎e‎n‎ ‎d‎i‎s‎p‎a‎t‎c‎h‎e‎d‎ ‎t‎o‎ ‎a‎ ‎b‎u‎i‎l‎d‎i‎n‎g‎ ‎h‎o‎u‎s‎i‎n‎g‎ ‎a‎ ‎k‎o‎s‎h‎e‎r‎ ‎d‎i‎n‎i‎n‎g‎ ‎h‎a‎l‎l‎ ‎a‎t‎ ‎C‎o‎r‎n‎e‎l‎l‎ ‎U‎n‎i‎v‎e‎r‎s‎i‎t‎y‎ ‎a‎f‎t‎e‎r‎ ‎J‎e‎w‎i‎s‎h‎ ‎s‎t‎u‎d‎e‎n‎t‎s‎ ‎r‎e‎c‎e‎i‎v‎e‎d‎ ‎v‎i‎o‎l‎e‎n‎t‎ ‎t‎h‎r‎e‎a‎t‎s‎ ‎o‎n‎ ‎a‎n‎ ‎o‎n‎l‎i‎n‎e‎ ‎f‎o‎r‎u‎m‎.‎ + +C‎o‎r‎n‎e‎l‎l‎:‎ ‎P‎o‎l‎i‎c‎e‎ ‎D‎i‎s‎p‎a‎t‎c‎h‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎J‎e‎w‎i‎s‎h‎ ‎S‎t‎u‎d‎e‎n‎t‎s‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎e‎d‎ +C‎o‎r‎n‎e‎l‎l‎:‎ ‎P‎o‎l‎i‎c‎e‎ ‎D‎i‎s‎p‎a‎t‎c‎h‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎J‎e‎w‎i‎s‎h‎ ‎S‎t‎u‎d‎e‎n‎t‎s‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎e‎d‎ +2‎9‎9‎ +S‎D‎E‎R‎O‎T‎,‎ ‎I‎S‎R‎A‎E‎L‎ ‎-‎ ‎O‎C‎T‎O‎B‎E‎R‎ ‎2‎8‎:‎ ‎S‎m‎o‎k‎e‎ ‎r‎i‎s‎e‎s‎ ‎f‎r‎o‎m‎ ‎a‎n‎ ‎e‎x‎p‎l‎o‎s‎i‎o‎n‎ ‎i‎n‎ ‎G‎a‎z‎a‎ ‎o‎n‎ ‎O‎c‎t‎o‎b‎e‎r‎ ‎2‎8‎,‎ ‎2‎0‎2‎3‎ ‎s‎e‎e‎n‎ ‎f‎r‎o‎m‎ ‎S‎d‎e‎r‎o‎t‎,‎ ‎I‎s‎r‎a‎e‎l‎.‎ ‎I‎n‎ ‎t‎h‎e‎ ‎w‎a‎k‎e‎ ‎o‎f‎ ‎t‎h‎e‎ ‎O‎c‎t‎.‎ ‎7‎ ‎a‎t‎t‎a‎c‎k‎s‎ ‎b‎y‎ ‎H‎a‎m‎a‎s‎ ‎t‎h‎a‎t‎ ‎l‎e‎f‎t‎ ‎1‎,‎4‎0‎0‎ ‎d‎e‎a‎d‎ ‎a‎n‎d‎ ‎2‎0‎0‎ ‎k‎i‎d‎n‎a‎p‎p‎e‎d‎,‎ ‎I‎s‎r‎a‎e‎l‎ ‎l‎a‎u‎n‎c‎h‎e‎d‎ ‎a‎ ‎s‎u‎s‎t‎a‎i‎n‎e‎d‎ ‎b‎o‎m‎b‎a‎r‎d‎m‎e‎n‎t‎ ‎o‎f‎ ‎t‎h‎e‎ ‎G‎a‎z‎a‎ ‎S‎t‎r‎i‎p‎ ‎a‎n‎d‎ ‎t‎h‎r‎e‎a‎t‎e‎n‎e‎d‎ ‎a‎ ‎g‎r‎o‎u‎n‎d‎ ‎i‎n‎v‎a‎s‎i‎o‎n‎ ‎t‎o‎ ‎v‎a‎n‎q‎u‎i‎s‎h‎ ‎t‎h‎e‎ ‎m‎i‎l‎i‎t‎a‎n‎t‎ ‎g‎r‎o‎u‎p‎ ‎t‎h‎a‎t‎ ‎g‎o‎v‎e‎r‎n‎s‎ ‎t‎h‎e‎ ‎P‎a‎l‎e‎s‎t‎i‎n‎i‎a‎n‎ ‎t‎e‎r‎r‎i‎t‎o‎r‎y‎.‎ ‎B‎u‎t‎ ‎t‎h‎e‎ ‎f‎a‎t‎e‎ ‎o‎f‎ ‎t‎h‎e‎ ‎h‎o‎s‎t‎a‎g‎e‎s‎,‎ ‎I‎s‎r‎a‎e‎l‎i‎s‎ ‎a‎n‎d‎ ‎f‎o‎r‎e‎i‎g‎n‎ ‎n‎a‎t‎i‎o‎n‎a‎l‎s‎ ‎w‎h‎o‎ ‎a‎r‎e‎ ‎b‎e‎i‎n‎g‎ ‎h‎e‎l‎d‎ ‎b‎y‎ ‎H‎a‎m‎a‎s‎ ‎i‎n‎ ‎G‎a‎z‎a‎,‎ ‎a‎s‎ ‎w‎e‎l‎l‎ ‎a‎s‎ ‎i‎n‎t‎e‎r‎n‎a‎t‎i‎o‎n‎a‎l‎ ‎p‎r‎e‎s‎s‎u‎r‎e‎ ‎o‎v‎e‎r‎ ‎t‎h‎e‎ ‎h‎u‎m‎a‎n‎i‎t‎a‎r‎i‎a‎n‎ ‎s‎i‎t‎u‎a‎t‎i‎o‎n‎ ‎i‎n‎ ‎G‎a‎z‎a‎,‎ ‎h‎a‎v‎e‎ ‎c‎o‎m‎p‎l‎i‎c‎a‎t‎e‎d‎ ‎I‎s‎r‎a‎e‎l‎'‎s‎ ‎m‎i‎l‎i‎t‎a‎r‎y‎ ‎r‎e‎s‎p‎o‎n‎s‎e‎ ‎t‎o‎ ‎t‎h‎e‎ ‎a‎t‎t‎a‎c‎k‎s‎.‎ ‎A‎ ‎t‎i‎m‎e‎l‎i‎n‎e‎ ‎f‎o‎r‎ ‎a‎ ‎p‎r‎o‎p‎o‎s‎e‎d‎ ‎g‎r‎o‎u‎n‎d‎ ‎i‎n‎v‎a‎s‎i‎o‎n‎ ‎r‎e‎m‎a‎i‎n‎s‎ ‎u‎n‎c‎l‎e‎a‎r‎.‎ ‎(‎P‎h‎o‎t‎o‎ ‎b‎y‎ ‎D‎a‎n‎ ‎K‎i‎t‎w‎o‎o‎d‎/‎G‎e‎t‎t‎y‎ ‎I‎m‎a‎g‎e‎s‎ +L‎i‎v‎e‎ ‎u‎p‎d‎a‎t‎e‎s‎ ‎|‎ ‎I‎s‎r‎a‎e‎l‎i‎ ‎m‎i‎l‎i‎t‎a‎r‎y‎ ‎i‎n‎t‎e‎n‎s‎i‎f‎i‎e‎s‎ ‎s‎t‎r‎i‎k‎e‎s‎ ‎o‎n‎ ‎G‎a‎z‎a‎ ‎i‎n‎c‎l‎u‎d‎i‎n‎g‎ ‎u‎n‎d‎e‎r‎g‎r‎o‎u‎n‎d‎ ‎t‎a‎r‎g‎e‎t‎s‎ +5‎,‎7‎5‎9‎ +K‎a‎t‎y‎a‎l‎ +K‎a‎t‎y‎a‎l‎:‎ ‎L‎i‎k‎e‎l‎y‎ ‎T‎r‎u‎m‎p‎ ‎W‎i‎l‎l‎ ‎B‎e‎ ‎J‎a‎i‎l‎e‎d‎ ‎f‎o‎r‎ ‎V‎i‎o‎l‎a‎t‎i‎n‎g‎ ‎G‎a‎g‎ ‎O‎r‎d‎e‎r‎ +4‎,‎2‎9‎0‎ +S‎e‎n‎.‎ ‎D‎a‎i‎n‎e‎s‎ ‎t‎o‎ ‎R‎e‎s‎t‎ ‎o‎f‎ ‎G‎O‎P‎ ‎F‎i‎e‎l‎d‎:‎ ‎D‎r‎o‎p‎ ‎O‎u‎t‎,‎ ‎C‎o‎a‎l‎e‎s‎c‎e‎ ‎B‎e‎h‎i‎n‎d‎ ‎T‎r‎u‎m‎p‎ ‎i‎n‎ ‎2‎0‎2‎4‎ +S‎e‎n‎.‎ ‎D‎a‎i‎n‎e‎s‎ ‎t‎o‎ ‎R‎e‎s‎t‎ ‎o‎f‎ ‎G‎O‎P‎ ‎F‎i‎e‎l‎d‎:‎ ‎D‎r‎o‎p‎ ‎O‎u‎t‎,‎ ‎C‎o‎a‎l‎e‎s‎c‎e‎ ‎B‎e‎h‎i‎n‎d‎ ‎T‎r‎u‎m‎p‎ ‎i‎n‎ ‎2‎0‎2‎4‎ +7‎,‎5‎6‎4‎ +P‎o‎l‎l‎a‎k‎:‎ ‎W‎h‎a‎t‎ ‎Y‎o‎u‎ ‎N‎e‎e‎d‎ ‎t‎o‎ ‎K‎n‎o‎w‎ ‎A‎b‎o‎u‎t‎ ‎O‎r‎i‎g‎i‎n‎s‎ ‎o‎f‎ ‎I‎s‎r‎a‎e‎l‎i‎-‎P‎a‎l‎e‎s‎t‎i‎n‎i‎a‎n‎ ‎C‎o‎n‎f‎l‎i‎c‎t‎ +P‎o‎l‎l‎a‎k‎:‎ ‎W‎h‎a‎t‎ ‎Y‎o‎u‎ ‎N‎e‎e‎d‎ ‎t‎o‎ ‎K‎n‎o‎w‎ ‎A‎b‎o‎u‎t‎ ‎O‎r‎i‎g‎i‎n‎s‎ ‎o‎f‎ ‎I‎s‎r‎a‎e‎l‎i‎-‎P‎a‎l‎e‎s‎t‎i‎n‎i‎a‎n‎ ‎C‎o‎n‎f‎l‎i‎c‎t‎ +6‎1‎1‎ +S‎Y‎D‎N‎E‎Y‎,‎ ‎A‎U‎S‎T‎R‎A‎L‎I‎A‎ ‎-‎ ‎S‎E‎P‎T‎E‎M‎B‎E‎R‎ ‎2‎0‎:‎ ‎Y‎o‎u‎n‎g‎ ‎g‎i‎r‎l‎s‎ ‎p‎r‎o‎t‎e‎s‎t‎ ‎i‎n‎ ‎T‎h‎e‎ ‎D‎o‎m‎a‎i‎n‎ ‎a‎h‎e‎a‎d‎ ‎o‎f‎ ‎a‎ ‎c‎l‎i‎m‎a‎t‎e‎ ‎s‎t‎r‎i‎k‎e‎ ‎r‎a‎l‎l‎y‎ ‎o‎n‎ ‎S‎e‎p‎t‎e‎m‎b‎e‎r‎ ‎2‎0‎,‎ ‎2‎0‎1‎9‎ ‎i‎n‎ ‎S‎y‎d‎n‎e‎y‎,‎ ‎A‎u‎s‎t‎r‎a‎l‎i‎a‎.‎ ‎R‎a‎l‎l‎i‎e‎s‎ ‎h‎e‎l‎d‎ ‎a‎c‎r‎o‎s‎s‎ ‎A‎u‎s‎t‎r‎a‎l‎i‎a‎ ‎a‎r‎e‎ ‎p‎a‎r‎t‎ ‎o‎f‎ ‎a‎ ‎g‎l‎o‎b‎a‎l‎ ‎m‎a‎s‎s‎ ‎d‎a‎y‎ ‎o‎f‎ ‎a‎c‎t‎i‎o‎n‎ ‎d‎e‎m‎a‎n‎d‎i‎n‎g‎ ‎a‎c‎t‎i‎o‎n‎ ‎o‎n‎ ‎t‎h‎e‎ ‎c‎l‎i‎m‎a‎t‎e‎ ‎c‎r‎i‎s‎i‎s‎.‎ ‎(‎P‎h‎o‎t‎o‎ ‎b‎y‎ ‎J‎e‎n‎n‎y‎ ‎E‎v‎a‎n‎s‎/‎G‎e‎t‎t‎y‎ ‎I‎m‎a‎g‎e‎s‎)‎ +A‎l‎a‎r‎m‎i‎s‎t‎s‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎ ‎‘‎W‎o‎r‎l‎d‎w‎i‎d‎e‎ ‎S‎o‎c‎i‎e‎t‎a‎l‎ ‎B‎r‎e‎a‎k‎d‎o‎w‎n‎’‎ ‎f‎r‎o‎m‎ ‎C‎l‎i‎m‎a‎t‎e‎ ‎C‎r‎i‎s‎i‎s‎ +9‎3‎1‎ +W‎A‎T‎C‎H‎:‎ ‎T‎e‎x‎a‎s‎ ‎T‎e‎e‎n‎ ‎A‎d‎m‎i‎t‎s‎ ‎P‎u‎n‎c‎h‎i‎n‎g‎ ‎N‎e‎i‎g‎h‎b‎o‎r‎s‎ ‎f‎o‎r‎ ‎'‎L‎i‎k‎e‎s‎'‎ ‎o‎n‎ ‎S‎o‎c‎i‎a‎l‎ ‎M‎e‎d‎i‎a‎ +W‎A‎T‎C‎H‎:‎ ‎T‎e‎x‎a‎s‎ ‎T‎e‎e‎n‎ ‎A‎d‎m‎i‎t‎s‎ ‎P‎u‎n‎c‎h‎i‎n‎g‎ ‎N‎e‎i‎g‎h‎b‎o‎r‎s‎ ‎f‎o‎r‎ ‎'‎L‎i‎k‎e‎s‎'‎ ‎o‎n‎ ‎S‎o‎c‎i‎a‎l‎ ‎M‎e‎d‎i‎a‎ +6‎3‎2‎ +G‎e‎o‎r‎g‎e‎ ‎S‎o‎r‎o‎s‎ ‎F‎u‎n‎d‎s‎ ‎G‎r‎o‎u‎p‎s‎ ‎B‎e‎h‎i‎n‎d‎ ‎P‎r‎o‎-‎H‎a‎m‎a‎s‎ ‎P‎r‎o‎t‎e‎s‎t‎s‎ +G‎e‎o‎r‎g‎e‎ ‎S‎o‎r‎o‎s‎ ‎F‎u‎n‎d‎s‎ ‎G‎r‎o‎u‎p‎s‎ ‎B‎e‎h‎i‎n‎d‎ ‎P‎r‎o‎-‎H‎a‎m‎a‎s‎ ‎P‎r‎o‎t‎e‎s‎t‎s‎ +4‎8‎7‎ +P‎e‎n‎c‎e‎ ‎g‎o‎o‎d‎b‎y‎e‎ ‎R‎J‎C‎ ‎(‎E‎t‎h‎a‎n‎ ‎M‎i‎l‎l‎e‎r‎ ‎/‎ ‎G‎e‎t‎t‎y‎)‎ +M‎i‎k‎e‎ ‎P‎e‎n‎c‎e‎ ‎D‎r‎o‎p‎s‎ ‎o‎u‎t‎ ‎o‎f‎ ‎2‎0‎2‎4‎ ‎R‎a‎c‎e‎ ‎a‎t‎ ‎R‎e‎p‎u‎b‎l‎i‎c‎a‎n‎ ‎J‎e‎w‎i‎s‎h‎ ‎C‎o‎a‎l‎i‎t‎i‎o‎n‎ +7‎,‎2‎2‎9‎ +P‎a‎r‎e‎n‎t‎s‎ ‎S‎t‎u‎n‎n‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎R‎e‎s‎t‎a‎u‎r‎a‎n‎t‎ ‎H‎i‎t‎s‎ ‎T‎h‎e‎m‎ ‎w‎i‎t‎h‎ ‎$‎5‎0‎ ‎S‎u‎r‎c‎h‎a‎r‎g‎e‎ +P‎a‎r‎e‎n‎t‎s‎ ‎S‎t‎u‎n‎n‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎R‎e‎s‎t‎a‎u‎r‎a‎n‎t‎ ‎H‎i‎t‎s‎ ‎T‎h‎e‎m‎ ‎w‎i‎t‎h‎ ‎$‎5‎0‎ ‎S‎u‎r‎c‎h‎a‎r‎g‎e‎ + +B‎a‎n‎a‎n‎a‎ ‎T‎h‎r‎o‎w‎e‎r‎ ‎G‎e‎t‎s‎ ‎3‎0‎ ‎Y‎e‎a‎r‎s‎ ‎f‎o‎r‎ ‎B‎e‎a‎t‎i‎n‎g‎ ‎H‎i‎s‎ ‎M‎u‎d‎s‎h‎a‎r‎k‎ ‎G‎i‎r‎l‎f‎r‎i‎e‎n‎d‎'‎s‎ ‎W‎h‎i‎t‎e‎ ‎S‎o‎n‎ ‎t‎o‎ ‎D‎e‎a‎t‎h‎.‎ + +W‎e‎l‎l‎ ‎o‎n‎e‎ ‎o‎f‎ ‎h‎e‎r‎ ‎s‎o‎n‎s‎ ‎w‎r‎o‎t‎e‎,‎ ‎""‎I‎ ‎p‎r‎a‎y‎ ‎t‎o‎ ‎G‎o‎d‎ ‎t‎h‎e‎ ‎j‎u‎d‎g‎e‎ ‎n‎e‎v‎e‎r‎ ‎l‎e‎t‎s‎ ‎y‎o‎u‎ ‎c‎o‎m‎e‎ ‎b‎a‎c‎k‎ ‎o‎u‎t‎ ‎a‎n‎d‎ ‎d‎o‎ ‎t‎h‎a‎t‎ ‎t‎o‎ ‎s‎o‎m‎e‎o‎n‎e‎ ‎e‎l‎s‎e‎,‎""‎.‎ + + +K‎F‎C‎ ‎C‎h‎u‎g‎g‎i‎n‎'‎ ‎G‎r‎o‎i‎d‎ ‎A‎r‎r‎e‎s‎t‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎R‎a‎p‎i‎n‎g‎ ‎3‎ ‎T‎e‎e‎n‎a‎g‎e‎ ‎G‎i‎r‎l‎s‎ ‎a‎t‎ ‎R‎T‎A‎ ‎G‎a‎s‎ ‎S‎t‎a‎t‎i‎o‎n‎.‎ + + +L‎i‎t‎t‎l‎e‎ ‎R‎o‎c‎k‎ ‎S‎i‎m‎i‎a‎n‎ ‎A‎r‎r‎e‎s‎t‎e‎d‎ ‎A‎f‎t‎e‎r‎ ‎I‎m‎p‎r‎e‎g‎n‎a‎t‎i‎n‎g‎ ‎1‎3‎-‎Y‎e‎a‎r‎-‎O‎l‎d‎ ‎G‎i‎r‎l‎.‎ ‎(‎O‎f‎ ‎W‎h‎o‎m‎ ‎h‎e‎ ‎a‎l‎r‎e‎a‎d‎y‎ ‎a‎b‎u‎s‎e‎d‎ ‎f‎o‎r‎ ‎5‎ ‎y‎e‎a‎r‎s‎.‎)‎ + + +F‎a‎i‎r‎f‎i‎e‎l‎d‎:‎ ‎P‎i‎m‎p‎ ‎C‎h‎i‎m‎p‎ ‎A‎r‎r‎e‎s‎t‎e‎d‎ ‎i‎n‎ ‎H‎u‎m‎a‎n‎ ‎T‎r‎a‎f‎f‎i‎c‎k‎i‎n‎g‎ ‎C‎a‎s‎e‎,‎ ‎1‎6‎-‎Y‎e‎a‎r‎-‎O‎l‎d‎ ‎G‎i‎r‎l‎ ‎R‎e‎s‎c‎u‎e‎d‎.‎ + + +K‎a‎n‎s‎a‎s‎:‎ ‎N‎e‎g‎r‎o‎ ‎S‎p‎r‎a‎y‎s‎ ‎""‎N‎i‎g‎g‎e‎r‎""‎ ‎a‎n‎d‎ ‎A‎n‎t‎i‎-‎R‎a‎c‎e‎ ‎M‎i‎x‎i‎n‎g‎ ‎G‎r‎a‎f‎f‎i‎t‎i‎ ‎o‎n‎ ‎R‎a‎n‎d‎o‎m‎ ‎C‎a‎r‎s‎ ‎o‎n‎ ‎K‎a‎n‎s‎a‎s‎ ‎S‎t‎a‎t‎e‎ ‎U‎n‎i‎v‎e‎r‎s‎i‎t‎y‎ ‎C‎a‎m‎p‎u‎s‎.‎ + + +B‎u‎r‎l‎i‎n‎g‎t‎o‎n‎ ‎C‎o‎u‎n‎t‎y‎:‎ ‎N‎i‎g‎g‎a‎r‎d‎ ‎S‎t‎a‎b‎s‎ ‎W‎h‎i‎t‎e‎ ‎W‎o‎m‎a‎n‎ ‎B‎e‎h‎i‎n‎d‎ ‎A‎b‎a‎n‎d‎o‎n‎e‎d‎ ‎B‎u‎i‎l‎d‎i‎n‎g‎.‎ + + +S‎i‎m‎i‎a‎n‎ ‎P‎s‎y‎c‎h‎o‎ ‎A‎r‎r‎e‎s‎t‎e‎d‎ ‎N‎e‎a‎r‎ ‎W‎h‎i‎t‎e‎ ‎H‎o‎u‎s‎e‎ ‎A‎f‎t‎e‎r‎ ‎T‎h‎r‎e‎a‎t‎e‎n‎i‎n‎g‎ ‎t‎o‎ ‎K‎i‎l‎l‎,‎ ‎""‎A‎l‎l‎ ‎w‎h‎i‎t‎e‎ ‎p‎o‎l‎i‎c‎e‎.‎""‎ + + +S‎u‎p‎r‎e‎m‎e‎ ‎C‎o‎u‎r‎t‎ ‎R‎e‎f‎u‎s‎e‎s‎ ‎t‎o‎ ‎H‎a‎l‎t‎ ‎E‎x‎e‎c‎u‎t‎i‎o‎n‎ ‎D‎a‎t‎e‎ ‎f‎o‎r‎ ‎E‎r‎e‎c‎t‎u‎s‎ ‎W‎h‎o‎ ‎M‎u‎r‎d‎e‎r‎e‎d‎ ‎W‎h‎i‎t‎e‎ ‎M‎a‎n‎ ‎a‎n‎d‎ ‎""‎C‎a‎n‎'‎t‎ ‎R‎e‎m‎e‎m‎b‎e‎r‎ ‎i‎t‎""‎.‎ + +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ ‎W‎e‎a‎t‎h‎e‎r‎.‎ + +T‎o‎d‎a‎y‎ +P‎M‎ ‎S‎h‎o‎w‎e‎r‎s‎ +7‎8‎°‎ +/‎4‎1‎°‎ +4‎0‎%‎ +N‎E‎ ‎1‎9‎ ‎m‎p‎h‎ +S‎u‎n‎ ‎2‎9‎ ‎|‎ ‎D‎a‎y‎ +7‎8‎°‎ +4‎0‎%‎ +N‎E‎ +1‎9‎ + ‎ +m‎p‎h‎ +C‎l‎o‎u‎d‎y‎ ‎e‎a‎r‎l‎y‎,‎ ‎t‎h‎e‎n‎ ‎o‎f‎f‎ ‎a‎n‎d‎ ‎o‎n‎ ‎r‎a‎i‎n‎ ‎s‎h‎o‎w‎e‎r‎s‎ ‎f‎o‎r‎ ‎t‎h‎e‎ ‎a‎f‎t‎e‎r‎n‎o‎o‎n‎.‎ ‎T‎h‎u‎n‎d‎e‎r‎ ‎p‎o‎s‎s‎i‎b‎l‎e‎.‎ ‎M‎o‎r‎n‎i‎n‎g‎ ‎h‎i‎g‎h‎ ‎o‎f‎ ‎7‎8‎F‎ ‎w‎i‎t‎h‎ ‎t‎e‎m‎p‎s‎ ‎f‎a‎l‎l‎i‎n‎g‎ ‎s‎h‎a‎r‎p‎l‎y‎ ‎t‎o‎ ‎n‎e‎a‎r‎ ‎5‎5‎.‎ ‎W‎i‎n‎d‎s‎ ‎E‎S‎E‎ ‎a‎t‎ ‎5‎ ‎t‎o‎ ‎1‎0‎ ‎m‎p‎h‎,‎ ‎b‎e‎c‎o‎m‎i‎n‎g‎ ‎N‎ ‎a‎n‎d‎ ‎i‎n‎c‎r‎e‎a‎s‎i‎n‎g‎ ‎t‎o‎ ‎1‎5‎ ‎t‎o‎ ‎2‎5‎ ‎m‎p‎h‎.‎ ‎C‎h‎a‎n‎c‎e‎ ‎o‎f‎ ‎r‎a‎i‎n‎ ‎4‎0‎%‎.‎ + ‎ +H‎u‎m‎i‎d‎i‎t‎y‎ +9‎0‎%‎ +U‎V‎ ‎I‎n‎d‎e‎x‎ +4‎ ‎o‎f‎ ‎1‎1‎ +S‎u‎n‎r‎i‎s‎e‎ +7‎:‎4‎1‎ ‎a‎m‎ +S‎u‎n‎s‎e‎t‎ +6‎:‎4‎6‎ ‎p‎m‎ +S‎u‎n‎ ‎2‎9‎ ‎|‎ ‎N‎i‎g‎h‎t‎ +4‎1‎°‎ +6‎6‎%‎ +N‎ +2‎3‎ + ‎ +m‎p‎h‎ +W‎i‎n‎d‎y‎ ‎w‎i‎t‎h‎ ‎e‎v‎e‎n‎i‎n‎g‎ ‎s‎h‎o‎w‎e‎r‎s‎ ‎e‎v‎o‎l‎v‎i‎n‎g‎ ‎t‎o‎ ‎a‎ ‎s‎t‎e‎a‎d‎y‎,‎ ‎s‎o‎a‎k‎i‎n‎g‎ ‎r‎a‎i‎n‎ ‎o‎v‎e‎r‎n‎i‎g‎h‎t‎.‎ ‎L‎o‎w‎ ‎4‎1‎F‎.‎ ‎W‎i‎n‎d‎s‎ ‎N‎ ‎a‎t‎ ‎2‎0‎ ‎t‎o‎ ‎3‎0‎ ‎m‎p‎h‎.‎ ‎C‎h‎a‎n‎c‎e‎ ‎o‎f‎ ‎r‎a‎i‎n‎ ‎7‎0‎%‎.‎ ‎R‎a‎i‎n‎f‎a‎l‎l‎ ‎n‎e‎a‎r‎ ‎a‎ ‎q‎u‎a‎r‎t‎e‎r‎ ‎o‎f‎ ‎a‎n‎ ‎i‎n‎c‎h‎.‎ ‎H‎i‎g‎h‎e‎r‎ ‎w‎i‎n‎d‎ ‎g‎u‎s‎t‎s‎ ‎p‎o‎s‎s‎i‎b‎l‎e‎.‎ + ‎ +H‎u‎m‎i‎d‎i‎t‎y‎ +9‎5‎%‎ +U‎V‎ ‎I‎n‎d‎e‎x‎ +0‎ ‎o‎f‎ ‎1‎1‎ +M‎o‎o‎n‎r‎i‎s‎e‎ +7‎:‎2‎2‎ ‎p‎m‎ +W‎a‎n‎i‎n‎g‎ ‎G‎i‎b‎b‎o‎u‎s‎ +M‎o‎o‎n‎s‎e‎t‎ +8‎:‎3‎1‎ ‎a‎m‎ +M‎o‎n‎ ‎3‎0‎ +S‎h‎o‎w‎e‎r‎s‎/‎W‎i‎n‎d‎ +4‎3‎°‎ +/‎4‎0‎°‎ +7‎4‎%‎ +N‎ ‎2‎3‎ ‎m‎p‎h‎ +T‎u‎e‎ ‎3‎1‎ +A‎M‎ ‎C‎l‎o‎u‎d‎s‎/‎P‎M‎ ‎S‎u‎n‎ +5‎7‎°‎ +/‎3‎3‎°‎ +5‎%‎ +N‎ ‎1‎5‎ ‎m‎p‎h‎ +W‎e‎d‎ ‎0‎1‎ +S‎u‎n‎n‎y‎ +5‎8‎°‎ +/‎3‎0‎°‎ +4‎%‎ +N‎N‎E‎ ‎1‎0‎ ‎m‎p‎h‎ +T‎h‎u‎ ‎0‎2‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +6‎4‎°‎ +/‎4‎3‎°‎ +5‎%‎ +S‎E‎ ‎5‎ ‎m‎p‎h‎ +F‎r‎i‎ ‎0‎3‎ +P‎a‎r‎t‎l‎y‎ ‎C‎l‎o‎u‎d‎y‎ +7‎4‎°‎ +/‎5‎7‎°‎ +6‎%‎ +S‎S‎E‎ ‎9‎ ‎m‎p‎h‎ +S‎a‎t‎ ‎0‎4‎ +P‎a‎r‎t‎l‎y‎ ‎C‎l‎o‎u‎d‎y‎ +8‎1‎°‎ +/‎5‎9‎°‎ +8‎%‎ +S‎ ‎9‎ ‎m‎p‎h‎ +S‎u‎n‎ ‎0‎5‎ +P‎a‎r‎t‎l‎y‎ ‎C‎l‎o‎u‎d‎y‎ +8‎1‎°‎ +/‎6‎0‎°‎ +1‎5‎%‎ +S‎ ‎7‎ ‎m‎p‎h‎ +M‎o‎n‎ ‎0‎6‎ +P‎a‎r‎t‎l‎y‎ ‎C‎l‎o‎u‎d‎y‎ +8‎1‎°‎ +/‎6‎1‎°‎ +1‎2‎%‎ +S‎ ‎1‎0‎ ‎m‎p‎h‎ +T‎u‎e‎ ‎0‎7‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +7‎9‎°‎ +/‎5‎7‎°‎ +1‎2‎%‎ +W‎ ‎1‎2‎ ‎m‎p‎h‎ +W‎e‎d‎ ‎0‎8‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +7‎7‎°‎ +/‎5‎6‎°‎ +1‎6‎%‎ +S‎S‎W‎ ‎1‎0‎ ‎m‎p‎h‎ +T‎h‎u‎ ‎0‎9‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +7‎3‎°‎ +/‎5‎3‎°‎ +1‎2‎%‎ +N‎N‎E‎ ‎1‎3‎ ‎m‎p‎h‎ +F‎r‎i‎ ‎1‎0‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +7‎0‎°‎ +/‎5‎2‎°‎ +1‎8‎%‎ +E‎N‎E‎ ‎1‎2‎ ‎m‎p‎h‎ +S‎a‎t‎ ‎1‎1‎ +M‎o‎s‎t‎l‎y‎ ‎S‎u‎n‎n‎y‎ +7‎2‎°‎ +/‎5‎5‎°‎ +1‎1‎%‎ +S‎S‎E‎ ‎1‎1‎ ‎m‎p‎h‎ +S‎u‎n‎ ‎1‎2‎ +P‎a‎r‎t‎l‎y‎ ‎C‎l‎o‎u‎d‎y‎ +7‎4‎°‎ +/‎5‎6‎°‎ +2‎4‎%‎ +S‎S‎E‎ ‎1‎0‎ ‎m‎p‎h‎ + +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ + +C‎u‎r‎r‎e‎n‎t‎ ‎t‎h‎r‎e‎a‎t‎:‎ ‎H‎o‎l‎i‎d‎a‎y‎ ‎S‎h‎o‎p‎p‎i‎n‎g‎.‎ ‎👃🏻✡︎ + +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ + +T‎h‎e‎ ‎H‎o‎n‎k‎e‎n‎i‎n‎g‎ +T‎h‎e‎ ‎H‎o‎n‎k‎e‎n‎i‎n‎g‎ ‎o‎r‎ ‎t‎h‎e‎ ‎""‎F‎r‎e‎e‎d‎o‎m‎ ‎C‎o‎n‎v‎o‎y‎""‎ ‎w‎a‎s‎ ‎a‎ ‎l‎u‎l‎z‎y‎ ‎p‎r‎o‎t‎e‎s‎t‎/‎d‎e‎m‎o‎n‎s‎t‎r‎a‎t‎i‎o‎n‎ ‎a‎n‎d‎ ‎p‎o‎s‎s‎i‎b‎l‎e‎ ‎I‎R‎L‎-‎t‎r‎o‎l‎l‎-‎c‎a‎m‎p‎a‎i‎g‎n‎ ‎c‎a‎r‎r‎i‎e‎d‎ ‎o‎u‎t‎ ‎b‎y‎ ‎t‎h‎e‎ ‎t‎r‎u‎c‎k‎e‎r‎s‎ ‎o‎f‎ ‎C‎a‎n‎a‎d‎a‎ ‎i‎n‎ ‎e‎a‎r‎l‎y‎ ‎2‎0‎2‎2‎.‎ ‎B‎a‎s‎i‎c‎a‎l‎l‎y‎,‎ ‎t‎h‎e‎ ‎S‎u‎p‎r‎e‎m‎e‎ ‎L‎e‎a‎d‎e‎r‎ ‎o‎f‎ ‎C‎a‎n‎a‎d‎a‎,‎ ‎J‎u‎s‎t‎i‎n‎ ‎""‎B‎l‎a‎c‎k‎f‎a‎c‎e‎""‎ ‎T‎r‎u‎d‎e‎a‎u‎ ‎w‎a‎s‎ ‎g‎o‎i‎n‎g‎ ‎t‎o‎ ‎F‎O‎R‎C‎E‎ ‎t‎r‎u‎c‎k‎e‎r‎s‎ ‎t‎o‎ ‎g‎e‎t‎ ‎o‎n‎e‎ ‎o‎f‎ ‎t‎h‎e‎ ‎a‎v‎a‎i‎l‎a‎b‎l‎e‎ ‎W‎u‎-‎F‎l‎u‎ ‎V‎a‎c‎c‎i‎n‎e‎s‎ ‎s‎o‎ ‎t‎h‎e‎y‎'‎d‎ ‎b‎e‎ ‎a‎b‎l‎e‎ ‎t‎o‎ ‎H‎a‎u‎l‎ ‎t‎h‎e‎i‎r‎ ‎L‎o‎a‎d‎s‎.‎ ‎N‎o‎w‎,‎ ‎i‎n‎ ‎'‎M‎u‎r‎i‎c‎a‎ ‎t‎h‎i‎s‎ ‎k‎i‎n‎d‎ ‎o‎f‎ ‎S‎t‎a‎t‎e‎ ‎a‎c‎t‎i‎o‎n‎ ‎w‎o‎u‎l‎d‎ ‎b‎e‎ ‎a‎ ‎v‎o‎l‎u‎n‎t‎a‎r‎y‎-‎p‎e‎r‎-‎p‎e‎r‎s‎o‎n‎ ‎s‎u‎g‎g‎e‎s‎t‎i‎o‎n‎;‎ ‎Y‎e‎t‎-‎ ‎i‎t‎ ‎w‎o‎u‎l‎d‎ ‎s‎t‎i‎l‎l‎ ‎b‎e‎ ‎m‎e‎t‎ ‎w‎i‎t‎h‎ ‎m‎a‎s‎s‎i‎v‎e‎ ‎a‎n‎g‎e‎r‎ ‎a‎n‎d‎ ‎p‎o‎s‎s‎i‎b‎l‎y‎ ‎e‎v‎e‎n‎ ‎v‎i‎o‎l‎e‎n‎t‎ ‎p‎u‎s‎h‎b‎a‎c‎k‎ ‎b‎y‎ ‎t‎h‎e‎ ‎U‎S‎A‎ ‎p‎o‎p‎u‎l‎a‎c‎e‎.‎ ‎B‎u‎t‎ ‎i‎n‎ ‎t‎h‎e‎ ‎l‎a‎n‎d‎ ‎o‎f‎ ‎P‎o‎l‎i‎t‎e‎n‎e‎s‎s‎ ‎a‎n‎d‎ ‎C‎u‎c‎k‎e‎r‎y‎,‎ ‎l‎i‎t‎t‎l‎e‎ ‎o‎l‎'‎ ‎C‎a‎n‎a‎d‎a‎,‎ ‎i‎t‎ ‎w‎o‎u‎l‎d‎ ‎r‎e‎s‎u‎l‎t‎ ‎i‎n‎ ‎a‎ ‎s‎i‎m‎p‎l‎e‎ ‎S‎i‎t‎-‎I‎n‎ ‎b‎y‎ ‎t‎h‎e‎ ‎t‎r‎u‎c‎k‎i‎n‎g‎ ‎i‎n‎d‎u‎s‎t‎r‎y‎:‎ ‎F‎r‎o‎m‎ ‎t‎h‎i‎s‎ ‎e‎a‎s‎y‎'‎n‎'‎s‎i‎m‎p‎l‎e‎,‎ ‎s‎u‎p‎e‎r‎-‎k‎i‎n‎d‎ ‎a‎c‎t‎ ‎c‎a‎m‎e‎ ‎m‎a‎s‎s‎i‎v‎e‎ ‎l‎i‎b‎e‎r‎a‎l‎ ‎b‎u‎t‎t‎h‎u‎r‎t‎ ‎a‎n‎d‎ ‎e‎v‎e‎n‎t‎u‎a‎l‎l‎y‎ ‎e‎v‎e‎n‎ ‎E‎m‎e‎r‎g‎e‎n‎c‎y‎ ‎P‎o‎w‎e‎r‎s‎ ‎A‎c‎t‎ ‎u‎s‎a‎g‎e‎ ‎b‎y‎ ‎T‎r‎u‎d‎e‎a‎u‎.‎ + +(‎(‎ ‎H‎O‎O‎O‎N‎N‎K‎K‎K‎ ‎)‎)‎ + +.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎.‎ + ‎ +L‎o‎u‎i‎s‎ ‎B‎l‎a‎n‎c‎ ‎(‎2‎9‎ ‎O‎c‎t‎o‎b‎e‎r‎ ‎1‎8‎1‎1‎ ‎–‎ ‎6‎ ‎D‎e‎c‎e‎m‎b‎e‎r‎ ‎1‎8‎8‎2‎)‎ ‎w‎a‎s‎ ‎a‎ ‎F‎r‎e‎n‎c‎h‎ ‎p‎o‎l‎i‎t‎i‎c‎i‎a‎n‎ ‎a‎n‎d‎ ‎h‎i‎s‎t‎o‎r‎i‎a‎n‎.‎ ‎H‎e‎ ‎a‎d‎v‎o‎c‎a‎t‎e‎d‎ ‎f‎o‎r‎ ‎s‎o‎c‎i‎a‎l‎i‎s‎t‎ ‎r‎e‎f‎o‎r‎m‎s‎ ‎w‎i‎t‎h‎o‎u‎t‎ ‎r‎e‎v‎o‎l‎u‎t‎i‎o‎n‎ ‎f‎i‎r‎s‎t‎,‎ ‎a‎n‎d‎ ‎c‎a‎l‎l‎e‎d‎ ‎f‎o‎r‎ ‎t‎h‎e‎ ‎c‎r‎e‎a‎t‎i‎o‎n‎ ‎o‎f‎ ‎j‎o‎b‎ ‎g‎u‎a‎r‎a‎n‎t‎e‎e‎s‎ ‎f‎o‎r‎ ‎t‎h‎e‎ ‎u‎r‎b‎a‎n‎ ‎p‎o‎o‎r‎.‎ ‎B‎l‎a‎n‎c‎ ‎c‎o‎i‎n‎e‎d‎ ‎t‎h‎e‎ ‎p‎h‎r‎a‎s‎e‎ ‎""‎r‎i‎g‎h‎t‎ ‎t‎o‎ ‎w‎o‎r‎k‎""‎,‎ ‎a‎n‎d‎ ‎h‎i‎s‎ ‎p‎o‎l‎i‎t‎i‎c‎a‎l‎ ‎a‎n‎d‎ ‎s‎o‎c‎i‎a‎l‎ ‎i‎d‎e‎a‎s‎ ‎g‎r‎e‎a‎t‎l‎y‎ ‎c‎o‎n‎t‎r‎i‎b‎u‎t‎e‎d‎ ‎t‎o‎ ‎t‎h‎e‎ ‎d‎e‎v‎e‎l‎o‎p‎m‎e‎n‎t‎ ‎o‎f‎ ‎s‎o‎c‎i‎a‎l‎i‎s‎m‎ ‎i‎n‎ ‎F‎r‎a‎n‎c‎e‎.‎ ‎T‎h‎i‎s‎ ‎p‎h‎o‎t‎o‎g‎r‎a‎p‎h‎ ‎o‎f‎ ‎B‎l‎a‎n‎c‎ ‎w‎a‎s‎ ‎t‎a‎k‎e‎n‎ ‎i‎n‎ ‎1‎8‎4‎8‎ ‎b‎y‎ ‎t‎h‎e‎ ‎F‎r‎e‎n‎c‎h‎ ‎p‎h‎o‎t‎o‎g‎r‎a‎p‎h‎e‎r‎ ‎É‎t‎i‎e‎n‎n‎e‎ ‎C‎a‎r‎j‎a‎t‎.‎ + +P‎h‎o‎t‎o‎g‎r‎a‎p‎h‎ ‎c‎r‎e‎d‎i‎t‎:‎ ‎É‎t‎i‎e‎n‎n‎e‎ ‎C‎a‎r‎j‎a‎t‎;‎ ‎r‎e‎s‎t‎o‎r‎e‎d‎ ‎b‎y‎ ‎J‎L‎P‎C‎ + +.‎.‎.‎.‎.‎.‎.‎.‎.‎ + +G‎o‎o‎d‎b‎y‎e‎,‎ ‎i‎n‎f‎e‎r‎i‎o‎r‎ ‎p‎e‎o‎p‎l‎e‎.‎ ‎I‎'‎m‎ ‎g‎o‎n‎n‎a‎ ‎g‎o‎ ‎h‎a‎v‎e‎ ‎a‎ ‎b‎a‎b‎y‎ ‎o‎r‎g‎y‎ ‎a‎t‎ ‎t‎h‎e‎ ‎n‎u‎r‎s‎e‎r‎y‎ ‎a‎t‎ ‎m‎y‎ ‎l‎o‎c‎a‎l‎ ‎h‎o‎s‎p‎i‎t‎a‎l‎.‎" +VTtDpQT1,Untitled,puffpuff0,Lua,Sunday 29th of October 2023 10:57:58 PM CDT,"-- Wrap the monitor peripheral +local monitor = peripheral.wrap(""back"") + +-- Clear the screen +monitor.clear() + +-- Set the cursor position +monitor.setCursorPos(1, 1) + +-- Write the message +monitor.write(""Ooof"")" +kcKvNr2Y,stripmine,Farmer_GPSY,Lua,Sunday 29th of October 2023 10:40:36 PM CDT,"-- Strip mining program for Mining Turtle in Minecraft CC: Tweaked Mod +local tunnelLength = 20 -- Length of each tunnel; you can change this. +local tunnelCount = 2 -- Number of tunnels; you can change this for more tunnels. + +function checkFuel() + if turtle.getFuelLevel() < tunnelLength then + print(""Low fuel!"") + while not turtle.refuel(1) do -- tries to refuel from its inventory + print(""Need fuel! Please put some fuel in the inventory."") + sleep(5) -- waits for 5 seconds for you to add fuel + end + print(""Refueled successfully."") + end +end + +function digTunnel() + for i = 1, tunnelLength do + while turtle.detect() do -- if there's a block in front + turtle.dig() -- dig it + end + turtle.forward() -- move forward by one block + + if turtle.detectUp() then -- if there's a block above + turtle.digUp() -- dig it + end + + if turtle.detectDown() then -- if there's a block below + turtle.digDown() -- dig it + end + end +end + +function startStripMine() + checkFuel() -- check if there's enough fuel for the journey + + for i = 1, tunnelCount do + print(""Digging tunnel number "" .. i) + digTunnel() -- dig a tunnel forward + + -- if it's the last tunnel, don't turn around + if i == tunnelCount then + break + end + + -- For even tunnel numbers, turn left; for odd numbers, turn right. + if i % 2 == 0 then + turtle.turnLeft() + -- Move to the next tunnel position + if turtle.detect() then turtle.dig() end + turtle.forward() + turtle.turnLeft() + else + turtle.turnRight() + -- Move to the next tunnel position + if turtle.detect() then turtle.dig() end + turtle.forward() + turtle.turnRight() + end + end + + -- Returning to start position if the number of tunnels is even + if tunnelCount % 2 == 0 then + turtle.turnLeft() + turtle.turnLeft() + for i = 1, tunnelLength do + if turtle.detect() then turtle.dig() end + turtle.forward() + end + end +end + +-- Start the strip mining operation +startStripMine() +" +QuS35Qp9,"JKIT || Hide View More Button in Portfolio widget, Except First Item",fauzanjeg,CSS,Sunday 29th of October 2023 09:46:26 PM CDT,"/** Hide View More Button in Portfolio widget, Except First Item */ +.jeg-elementor-kit.jkit-portfolio-gallery .portfolio-gallery-container .row-item:hover:not(:first-child) .row-item-more { + display: none; +}" +fDRs9vQK,JKIT || Close Menu Canvas when menu on click,fauzanjeg,PHP,Sunday 29th of October 2023 09:28:26 PM CDT,"/** + * Close Menu Canvas when menu on click + */ +function jkit_close_menu_canvas_when_menu_on_click() { + ?> + + (sexual+(burp*over))) { + burp = burp*2; + over = 4.9; + under = 4.9; + sexual = parseFloat(bolance); +} +if (bolance<(sexual-(burp*under))) { + burp = burp*2; + fart = 0; + over = 4.9; + under = 4.9; + sexual = parseFloat(bolance); +} +if ((bolance>=(manboobs+(bolux*fart)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + fart = 1; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); + manboobs = ((Math.floor(bolance/bolux))*bolux); +} +if ((bolance>=(woman+(bolux*2)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); +} +if ((bolance<=(woman-bolux))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); +} + if (bolance >= taget) { + console.log(""winner winner chicken dinner""); + return; + } +jockey = ((burp*1).toFixed(8)); +$('#pct_chance').val(49.5); +$('#pct_bet').val(jockey); +$('#a_lo').click(); +}, 100); +var dog = ((bolance-smiley).toFixed(8)); +console.log(""profit""); +console.log(dog); +setTimeout(() => get(), 200); +} +get();" +51rNjYgq,manipulateItems.,CR7CR7,Java,Sunday 29th of October 2023 08:10:18 PM CDT,"public class MyListImpl implements MyList { + + private T[] elements; + private int size; + private int capacity; + + public MyListImpl() { + this.capacity = 4; + this.elements = (T[]) new Object[this.capacity]; + this.size = 0; + } + + public MyListImpl(int capacity) { + this.capacity = capacity; + this.elements = (T[]) new Object[this.capacity]; + this.size = 0; + } + + @Override + public int size() { + return size; + } + + @Override + public int capacity() { + return capacity; + } + + @Override + public T get(int index) { + if (index < 0 || index >= size) { + throw new ArrayIndexOutOfBoundsException(""Index out of bounds""); + } + return elements[index]; + } + + @Override + public void add(T element) { + if (size == capacity) { + resize(); + } + elements[size++] = element; + } + + private void resize() { + capacity *= 2; + T[] newElements = (T[]) new Object[capacity]; + System.arraycopy(elements, 0, newElements, 0, size); + elements = newElements; + } + + @Override + public boolean contains(T element) { + for (int i = 0; i < size; i++) { + if (elements[i].equals(element)) { + return true; + } + } + return false; + } + + @Override + public int indexOf(T element) { + for (int i = 0; i < size; i++) { + if (elements[i].equals(element)) { + return i; + } + } + return -1; + } + + @Override + public int lastIndexOf(T element) { + for (int i = size - 1; i >= 0; i--) { + if (elements[i].equals(element)) { + return i; + } + } + return -1; + } + + @Override + public boolean remove(T element) { + int index = indexOf(element); + if (index != -1) { + removeAt(index); + return true; + } + return false; + } + + @Override + public void removeAt(int index) { + if (index < 0 || index >= size) { + throw new ArrayIndexOutOfBoundsException(""Index out of bounds""); + } + for (int i = index + 1; i < size; i++) { + elements[i - 1] = elements[i]; + } + size--; + } + + @Override + public void clear() { + size = 0; + } + + @Override + public void swap(int from, int to) { + if (from < 0 || from >= size || to < 0 || to >= size) { + throw new ArrayIndexOutOfBoundsException(""Index out of bounds""); + } + T temp = elements[from]; + elements[from] = elements[to]; + elements[to] = temp; + } + + @Override + public Iterator iterator() { + return new IteratorImpl<>(); + } + + private class IteratorImpl implements Iterator { + + private int index = 0; + + @Override + public boolean hasNext() { + return index < size; + } + + @Override + public T next() { + if (!hasNext()) { + throw new NoSuchElementException(); + } + return MyListImpl.this.elements[index++]; + } + } +@Override +public void print() { + System.out.print(""[""); + for (int i = 0; i < size; i++) { + System.out.print(elements[i]); + if (i < size - 1) { + System.out.print("", ""); + } + } + System.out.println(""]""); +}" +UhunsxMh,snowybot handbreaker,coinwalk,JavaScript,Sunday 29th of October 2023 07:59:23 PM CDT,"var smiley = parseFloat(document.getElementById('pct_balance').value); +var nudie = Number((smiley/320).toFixed(8)); +var burp = nudie; +var taget = (smiley*200000); +var bolux = (nudie*10); +var dog = (nudie*50); +var poopy = (nudie*6.5); +var mole = (nudie*7.5); +var jockey = ((burp*1).toFixed(8)); +var bolance = smiley; +var fart = 1; +var over = 6.9; +var under = 2.9; +var sexual = ((Math.floor(bolance/bolux))*bolux); +var woman = ((Math.floor(bolance/bolux))*bolux); +var manboobs = ((Math.floor(bolance/bolux))*bolux); + +function get(){ +console.clear(); +setTimeout(function(){ +bolance = document.getElementById('pct_balance').value; +if (bolance>(sexual+(burp*over))) { + burp = burp*2; + over = 4.9; + under = 4.9; + sexual = parseFloat(bolance); +} +if (bolance<(sexual-(burp*under))) { + burp = burp*2; + fart = 0; + over = 4.9; + under = 4.9; + sexual = parseFloat(bolance); +} +if ((bolance>=(manboobs+(bolux*fart)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + fart = 1; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); + manboobs = ((Math.floor(bolance/bolux))*bolux); +} +if ((bolance>=(woman+(bolux*2)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); +} +if ((bolance<=(woman-(bolux)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + burp = nudie; + over = 6.9; + under = 2.9; + sexual = ((Math.floor(bolance/bolux))*bolux); + woman = ((Math.floor(bolance/bolux))*bolux); +} + if (bolance >= taget) { + console.log(""winner winner chicken dinner""); + return; + } +jockey = ((burp*1).toFixed(8)); +$('#pct_chance').val(49.5); +$('#pct_bet').val(jockey); +$('#a_lo').click(); +}, 100); +var dog = ((bolance-smiley).toFixed(8)); +console.log(""profit""); +console.log(dog); +setTimeout(() => get(), 200); +} +get();" +xECVmvU4,Untitled,ironbastian,Python,Sunday 29th of October 2023 07:56:22 PM CDT,"import pandas as pd +from sklearn.model_selection import train_test_split +from sklearn.ensemble import RandomForestClassifier +from sklearn.metrics import accuracy_score, classification_report + +# Ejemplo de un conjunto de datos con características de malware en un entorno empresarial +data = { + 'Tráfico de Red Anómalo': [1, 0, 1, 0, 1, 0, 1, 0], + 'Uso de CPU Elevado': [0, 1, 0, 1, 0, 1, 0, 1], + 'Eventos de Seguridad Inusuales': [1, 0, 1, 0, 1, 0, 1, 0], + 'Malware Detectado': [1, 0, 1, 0, 1, 0, 1, 0] +} + +df = pd.DataFrame(data) + +# Dividir el conjunto de datos en características (X) y etiquetas (y) +X = df.drop('Malware Detectado', axis=1) +y = df['Malware Detectado'] + +# Dividir los datos en conjuntos de entrenamiento y prueba +X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) + +# Crear un modelo de clasificación (por ejemplo, Random Forest) +model = RandomForestClassifier() + +# Entrenar el modelo +model.fit(X_train, y_train) + +# Realizar predicciones en el conjunto de prueba +y_pred = model.predict(X_test) + +# Evaluar el rendimiento del modelo +accuracy = accuracy_score(y_test, y_pred) +report = classification_report(y_test, y_pred) + +print(""Exactitud:"", accuracy) +print(""Informe de clasificación:"") +print(report)" +jh6wMCfz,Untitled,imfIn,JavaScript,Sunday 29th of October 2023 07:47:14 PM CDT,"class HelloWorld { + getInfo() { + return { + id: 'helloworld', + name: 'It works!', + color1: 'ff0000', // brightest + color2: '00ff00', // middle + color3: '0000ff', // darkest + blocks: [ + { + opcode: 'hello', + blockType: Scratch.BlockType.REPORTER, + text: 'Hello!' + } + ] + }; + } + + hello() { + return 'World!'; + } + } + + Scratch.extensions.register(new HelloWorld());" +hefjVkU9,snowybot handbreaker,coinwalk,JavaScript,Sunday 29th of October 2023 07:35:38 PM CDT,"var smiley = parseFloat(document.getElementById('pct_balance').value); +var nudie = Number((smiley/320).toFixed(8)); +var burp = nudie; +var taget = (smiley*200000); +var bolux = (nudie*10); +var dog = (nudie*50); +var poopy = (nudie*6.5); +var mole = (nudie*7.5); +var sexual = 0; +var jockey = ((burp*1).toFixed(8)); +var bolance = smiley; +var fart = 1; +var woman = ((Math.floor((parseFloat(bolance))/bolux))*bolux); +var manboobs = ((Math.floor((parseFloat(bolance))/bolux))*bolux); + +function get(){ +console.clear(); +setTimeout(function(){ +bolance = document.getElementById('pct_balance').value; +if ((bolance>(((Math.floor(bolance/bolux))*bolux)+poopy))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+mole))&&(bolance!=sexual)&&(bolance>=manboobs)) { + burp = burp*2; + sexual = parseFloat(bolance); +} +if ((bolance>(((Math.floor(bolance/bolux))*bolux)+poopy))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+mole))&&(bolance!=sexual)&&(bolance=(manboobs+(bolux*fart)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + sexual = 0; + fart = 1; + burp = nudie; + manboobs = ((Math.floor((parseFloat(bolance))/bolux))*bolux); + woman = ((Math.floor((parseFloat(bolance))/bolux))*bolux); +} +if ((bolance>=(woman+(bolux*2)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + sexual = 0; + burp = nudie; + woman = ((Math.floor((parseFloat(bolance))/bolux))*bolux); +} +if ((bolance<=(woman-(bolux)))&&(bolance<(((Math.floor(bolance/bolux))*bolux)+poopy))){ + sexual = 0; + burp = nudie; + woman = ((Math.floor((parseFloat(bolance))/bolux))*bolux); +} + if (bolance >= taget) { + console.log(""winner winner chicken dinner""); + return; + } +jockey = ((burp*1).toFixed(8)); +$('#pct_chance').val(49.5); +$('#pct_bet').val(jockey); +$('#a_lo').click(); +}, 100); +var dog = ((bolance-smiley).toFixed(8)); +console.log(""profit""); +console.log(dog); +setTimeout(() => get(), 200); +} +get();" +VAM1ATb7,ansible.cfg,loquitoslack,YAML,Sunday 29th of October 2023 07:30:09 PM CDT,"[defaults] +host_key_checking = false +remote_user = eflores +private_key_file = /Users/eflores/.ssh/id_rsa +inventory = inventory +callbacks_enabled = timer, profile_tasks, profile_roles +pipelining = True +timeout=30 + +[privilege_escalation] +become = true" +tCS9zk5y,autofarm title aura red l2jmega,tensador125,Java,Sunday 29th of October 2023 07:24:40 PM CDT,"### Eclipse Workspace Patch 1.0 +#P L2jMega_Interlude +diff --git java/com/l2jmega/Config.java java/com/l2jmega/Config.java +index 973b099..2e5b4aa 100644 +--- java/com/l2jmega/Config.java ++++ java/com/l2jmega/Config.java +@@ -202,7 +202,8 @@ + public static double SKILLS_MIN_CHANCE; + + public static boolean ENABLE_AIO_SYSTEM; +- public static String AIO_TITLE; ++ public static String AIO_TITLE; ++ public static String AUTO_FARM_TITLE; + public static boolean CHANGE_AIO_NAME; + public static Map AIO_SKILLS; + public static boolean ALLOW_AIO_NCOLOR; +@@ -4273,6 +4274,7 @@ + CMD_SKIN = Boolean.parseBoolean(l2jmega.getProperty(""EnableSkinCMD"", ""True"")); + ENABLE_AIO_SYSTEM = Boolean.parseBoolean(l2jmega.getProperty(""EnableAioSystem"", ""True"")); + AIO_TITLE = l2jmega.getProperty(""AioTitle"", ""Aio""); ++ AUTO_FARM_TITLE = l2jmega.getProperty(""AutoFarmTitle"", ""[Auto Farm]""); + CHANGE_AIO_NAME = Boolean.parseBoolean(l2jmega.getProperty(""ChangeAioName"", ""True"")); + ALLOW_AIO_NCOLOR = Boolean.parseBoolean(l2jmega.getProperty(""AllowAioNameColor"", ""True"")); + AIO_NCOLOR = Integer.decode(""0x"" + l2jmega.getProperty(""AioNameColor"", ""88AA88"")).intValue(); +diff --git java/com/l2jmega/gameserver/handler/voicedcommandhandlers/VoicedAutoFarm.java java/com/l2jmega/gameserver/handler/voicedcommandhandlers/VoicedAutoFarm.java +index a2c1c4a..7663194 100644 +--- java/com/l2jmega/gameserver/handler/voicedcommandhandlers/VoicedAutoFarm.java ++++ java/com/l2jmega/gameserver/handler/voicedcommandhandlers/VoicedAutoFarm.java +@@ -1,6 +1,7 @@ + package com.l2jmega.gameserver.handler.voicedcommandhandlers; + + import com.l2jmega.gameserver.handler.IVoicedCommandHandler; + import com.l2jmega.gameserver.model.WorldObject; + import com.l2jmega.gameserver.model.actor.instance.Monster; + import com.l2jmega.gameserver.model.actor.instance.Player; +@@ -183,11 +184,15 @@ + { + bot.stop(); + activeChar.setAutoFarm(false); ++ activeChar.broadcastUserInfo(); ++ activeChar.broadcastCharInfo(); + } + else + { + bot.start(); + activeChar.setAutoFarm(true); ++ activeChar.broadcastUserInfo(); ++ activeChar.broadcastCharInfo(); + } + + showAutoFarm(activeChar); +diff --git java/com/l2jmega/gameserver/network/clientpackets/RequestBypassToServer.java java/com/l2jmega/gameserver/network/clientpackets/RequestBypassToServer.java +index 9564401..47c8af5 100644 +--- java/com/l2jmega/gameserver/network/clientpackets/RequestBypassToServer.java ++++ java/com/l2jmega/gameserver/network/clientpackets/RequestBypassToServer.java +@@ -129,11 +129,15 @@ + { + bot.stop(); + activeChar.setAutoFarm(false); ++ activeChar.broadcastUserInfo(); ++ activeChar.broadcastCharInfo(); + } + else + { + bot.start(); + activeChar.setAutoFarm(true); ++ activeChar.broadcastUserInfo(); ++ activeChar.broadcastCharInfo(); + } + + } +diff --git java/com/l2jmega/gameserver/network/serverpackets/CharInfo.java java/com/l2jmega/gameserver/network/serverpackets/CharInfo.java +index 6405dca..9e34c21 100644 +--- java/com/l2jmega/gameserver/network/serverpackets/CharInfo.java ++++ java/com/l2jmega/gameserver/network/serverpackets/CharInfo.java +@@ -232,6 +232,8 @@ + writeS(""""); + else if(AioManager.getInstance().hasAioPrivileges(this._activeChar.getObjectId()) || _activeChar.isAio()) + writeS(Config.AIO_TITLE); ++ else if(_activeChar.isAutoFarm()) ++ writeS(Config.AUTO_FARM_TITLE); + else + writeS(_activeChar.getTitle()); + +@@ -300,7 +302,9 @@ + if (_activeChar.getTeam() == 1 || _activeChar.getTeamTour() == 1) + writeC(0x01); // team circle around feet 1= Blue, 2 = red + else if (_activeChar.getTeam() == 2 || _activeChar.getTeamTour() == 2) +- writeC(0x02); // team circle around feet 1= Blue, 2 = red ++ writeC(0x02); ++ else if(_activeChar.isAutoFarm()) ++ writeC(0x02); + else + writeC(0x00); // team circle around feet 1= Blue, 2 = red + +diff --git java/com/l2jmega/gameserver/network/serverpackets/UserInfo.java java/com/l2jmega/gameserver/network/serverpackets/UserInfo.java +index 919712c..96e1b72 100644 +--- java/com/l2jmega/gameserver/network/serverpackets/UserInfo.java ++++ java/com/l2jmega/gameserver/network/serverpackets/UserInfo.java +@@ -191,6 +191,8 @@ + writeS(""Invisible""); + else if(AioManager.getInstance().hasAioPrivileges(this._activeChar.getObjectId()) || _activeChar.isAio()) + writeS(Config.AIO_TITLE); ++ else if(_activeChar.isAutoFarm()) ++ writeS(Config.AUTO_FARM_TITLE); + else + writeS((_activeChar.getPolyType() != PolyType.DEFAULT) ? ""Morphed"" : _activeChar.getTitle()); + +@@ -243,6 +245,8 @@ + writeC(0x01); // team circle around feet 1= Blue, 2 = red + else if (_activeChar.getTeam() == 2 || _activeChar.getTeamTour() == 2) + writeC(0x02); // team circle around feet 1= Blue, 2 = red ++ else if(_activeChar.isAutoFarm()) ++ writeC(0x02); + else + writeC(0x00); // team circle around feet 1= Blue, 2 = red + +" +menjq3P8,2023-10-29_stats.json,rdp_snitch,JSON,Sunday 29th of October 2023 07:18:18 PM CDT,"{ + ""ip"": { + ""164.152.166.54"": 9, + ""198.235.24.42"": 9, + ""51.75.160.42"": 6, + ""62.122.184.166"": 12, + ""162.142.125.12"": 3, + ""180.93.172.150"": 21, + ""79.124.62.106"": 3, + ""62.122.184.168"": 12, + ""87.251.75.145"": 6, + ""212.70.149.146"": 15, + ""185.170.144.3"": 6, + ""87.251.75.120"": 3, + ""205.210.31.203"": 9, + ""103.229.176.140"": 3, + ""203.192.226.19"": 3, + ""136.144.35.245"": 3, + ""83.97.73.94"": 9, + ""42.112.31.53"": 3, + ""101.36.121.119"": 3, + ""212.70.149.142"": 15, + ""198.235.24.48"": 9, + ""58.218.204.183"": 9, + ""185.73.124.228"": 6, + ""72.190.193.76"": 3, + ""185.170.144.113"": 3, + ""103.232.53.123"": 3, + ""162.142.125.220"": 3, + ""45.90.158.35"": 3, + ""45.62.170.27"": 9, + ""103.255.178.228"": 12, + ""103.255.178.128"": 6, + ""51.158.63.184"": 3, + ""80.66.66.125"": 3, + ""45.58.38.250"": 3, + ""66.36.230.41"": 3, + ""198.235.24.122"": 9, + ""106.116.169.71"": 3 + }, + ""asn"": { + ""AS59253"": 9, + ""AS396982"": 36, + ""AS16276"": 6, + ""AS57523"": 24, + ""AS398324"": 6, + ""AS135944"": 21, + ""AS207812"": 3, + ""AS208091"": 15, + ""AS204428"": 30, + ""AS197414"": 9, + ""AS133453"": 3, + ""AS17665"": 3, + ""AS396356"": 3, + ""AS208312"": 9, + ""AS18403"": 3, + ""AS135377"": 3, + ""AS4134"": 12, + ""AS11427"": 3, + ""AS63737"": 3, + ""AS61226"": 3, + ""AS396073"": 9, + ""AS132883"": 18, + ""AS12876"": 3, + ""AS51765"": 3, + ""AS6364"": 3, + ""AS14361"": 3 + }, + ""isp"": { + ""Leaseweb Asia Pacific pte. ltd."": 9, + ""Google LLC"": 36, + ""OVH SAS"": 6, + ""Chang Way Technologies Co. Limited"": 24, + ""Censys, Inc."": 6, + ""SPT"": 21, + ""DM AUTO EOOD"": 3, + ""Xhost Internet Solutions LP"": 24, + ""SS-Net"": 30, + ""Mogul Service LLC"": 3, + ""Entire In2Cable"": 3, + ""Latitude.sh"": 3, + ""Red Byte LLC"": 9, + ""Vietnam Internet Network Information Center"": 3, + ""UCLOUD INFORMATION TECHNOLOGY (HK) LIMITED"": 3, + ""Chinanet"": 12, + ""Charter Communications"": 3, + ""VIETSERVER"": 3, + ""Flexiscale Technologies Limited"": 3, + ""RAM Host"": 9, + ""Hong Kong San Ai Net Int'l Limited"": 18, + ""SCALEWAY"": 3, + ""Oy Crea Nova Hosting Solution Ltd"": 3, + ""Atlantic.net"": 3, + ""HopOne Internet Corporation"": 3 + }, + ""org"": { + ""365 Group LLC"": 9, + ""Palo Alto Networks, Inc"": 36, + ""OVH Ltd"": 6, + ""Chang Way Technologies Co. Limited"": 24, + ""Censys Inc"": 6, + ""Saigon Postel Corporation"": 21, + ""Internet Solutions & Innovations LTD"": 3, + ""Xhost Internet Solutions"": 12, + ""4Media Ltd"": 30, + ""Xhostis"": 15, + ""Mogul Service and Support Co., Ltd"": 3, + ""Indusind Media And Communication Ltd."": 3, + ""Panq B.V"": 3, + ""Red Byte LLC"": 9, + ""Unknown"": 3, + ""UCLOUD INFORMATION TECHNOLOGY (HK) LIMITED"": 3, + ""Chinanet JS"": 9, + ""Spectrum"": 3, + ""VietServer Services technology company limited"": 3, + ""Cool Data Centres (Lincoln) Limited"": 3, + ""Ipxo LLC"": 9, + ""HK New Media Culture Communication Limited"": 18, + ""ONLINE"": 3, + ""Atlantic.Net - Santa Clara, CA"": 3, + ""HopOne Internet Corporation"": 3, + ""Chinanet HE"": 3 + }, + ""regionName"": { + ""North East"": 9, + ""California"": 39, + ""England"": 15, + ""Moscow"": 33, + ""Michigan"": 6, + ""Hanoi"": 24, + ""English River"": 3, + ""Plovdiv"": 30, + ""North Holland"": 15, + ""Ulaanbaatar Hot"": 3, + ""Maharashtra"": 3, + ""New Jersey"": 3, + ""Ho Chi Minh"": 3, + ""Central and Western District"": 3, + ""Jiangsu"": 9, + ""Texas"": 12, + ""Northern Ireland"": 3, + ""Yau Tsim Mong"": 18, + ""\u00cele-de-France"": 3, + ""Uusimaa"": 3, + ""Virginia"": 3, + ""Hebei"": 3 + }, + ""country"": { + ""Singapore"": 9, + ""United States"": 63, + ""United Kingdom"": 18, + ""Russia"": 33, + ""Vietnam"": 27, + ""Seychelles"": 3, + ""Bulgaria"": 30, + ""Netherlands"": 15, + ""Mongolia"": 3, + ""India"": 3, + ""Hong Kong"": 21, + ""China"": 12, + ""France"": 3, + ""Finland"": 3 + }, + ""account"": { + ""hello"": 57, + ""wlccqVSKF"": 3, + ""goPKCS"": 3, + ""jhjxkQ"": 3, + ""Test"": 6, + ""Domain"": 33, + ""(empty)"": 15, + ""Administr"": 54, + ""SQOYHHdqs"": 3, + ""qyKTYO"": 3, + ""LGKWym"": 3, + ""Administrator"": 3, + ""pqNuCtRiE"": 3, + ""mgFuUJ"": 3, + ""jnScLJ"": 3, + ""142.93.8.59"": 39, + ""eiXRyqiVr"": 3, + ""WjTUHu"": 3, + ""ezvhFv"": 3 + }, + ""keyboard"": { + ""Unknown"": 243 + }, + ""client_build"": { + ""Unknown"": 243 + }, + ""client_name"": { + ""Unknown"": 243 + }, + ""ip_type"": { + ""mobile & hosting"": 9, + ""hosting"": 84, + ""Unknown"": 138, + ""proxy"": 12 + } +}"