fca-naughty2 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.gitattributes +2 -0
  2. package/.github/workflows/publish.yml +20 -0
  3. package/Extra/Database/index.js +469 -0
  4. package/Extra/ExtraAddons.js +80 -0
  5. package/Extra/ExtraFindUID.js +62 -0
  6. package/Extra/ExtraGetThread.js +118 -0
  7. package/Extra/ExtraScreenShot.js +430 -0
  8. package/Extra/ExtraUptimeRobot.js +38 -0
  9. package/Extra/Html/Classic/script.js +119 -0
  10. package/Extra/Html/Classic/style.css +8 -0
  11. package/Extra/Security/Index.js +146 -0
  12. package/Extra/Security/Step_1.js +6 -0
  13. package/Extra/Security/Step_2.js +22 -0
  14. package/Extra/Security/Step_3.js +22 -0
  15. package/Extra/Src/Change_Environment.js +24 -0
  16. package/Extra/Src/Check_Update.js +67 -0
  17. package/Extra/Src/History.js +115 -0
  18. package/Extra/Src/Instant_Update.js +65 -0
  19. package/Extra/Src/Last-Run.js +65 -0
  20. package/Extra/Src/Premium.js +81 -0
  21. package/Extra/Src/Release_Memory.js +41 -0
  22. package/Extra/Src/uuid.js +137 -0
  23. package/Func/AcceptAgreement.js +32 -0
  24. package/Func/ClearCache.js +64 -0
  25. package/Func/ReportV1.js +54 -0
  26. package/LICENSE +24 -0
  27. package/Language/index.json +206 -0
  28. package/Main.js +1099 -0
  29. package/README.md +140 -0
  30. package/SECURITY.md +17 -0
  31. package/broadcast.js +40 -0
  32. package/index.js +350 -0
  33. package/logger.js +66 -0
  34. package/package.json +94 -0
  35. package/src/Dev_Horizon_Data.js +125 -0
  36. package/src/Premium.js +30 -0
  37. package/src/Screenshot.js +83 -0
  38. package/src/addExternalModule.js +16 -0
  39. package/src/addUserToGroup.js +79 -0
  40. package/src/changeAdminStatus.js +79 -0
  41. package/src/changeArchivedStatus.js +41 -0
  42. package/src/changeAvt.js +85 -0
  43. package/src/changeBio.js +65 -0
  44. package/src/changeBlockedStatus.js +36 -0
  45. package/src/changeGroupImage.js +106 -0
  46. package/src/changeNickname.js +45 -0
  47. package/src/changeThreadColor.js +62 -0
  48. package/src/changeThreadEmoji.js +42 -0
  49. package/src/createNewGroup.js +70 -0
  50. package/src/createPoll.js +60 -0
  51. package/src/deleteMessage.js +45 -0
  52. package/src/deleteThread.js +43 -0
  53. package/src/forwardAttachment.js +48 -0
  54. package/src/getAccessToken.js +28 -0
  55. package/src/getCurrentUserID.js +7 -0
  56. package/src/getEmojiUrl.js +27 -0
  57. package/src/getFriendsList.js +73 -0
  58. package/src/getMessage.js +80 -0
  59. package/src/getThreadHistory.js +537 -0
  60. package/src/getThreadInfo.js +412 -0
  61. package/src/getThreadList.js +213 -0
  62. package/src/getThreadMain.js +220 -0
  63. package/src/getThreadPictures.js +59 -0
  64. package/src/getUID.js +59 -0
  65. package/src/getUserID.js +62 -0
  66. package/src/getUserInfo.js +113 -0
  67. package/src/getUserInfoMain.js +65 -0
  68. package/src/getUserInfoV2.js +32 -0
  69. package/src/getUserInfoV3.js +63 -0
  70. package/src/getUserInfoV4.js +55 -0
  71. package/src/getUserInfoV5.js +61 -0
  72. package/src/handleFriendRequest.js +46 -0
  73. package/src/handleMessageRequest.js +49 -0
  74. package/src/httpGet.js +49 -0
  75. package/src/httpPost.js +48 -0
  76. package/src/httpPostFormData.js +41 -0
  77. package/src/listenMqtt.js +697 -0
  78. package/src/logout.js +68 -0
  79. package/src/markAsDelivered.js +48 -0
  80. package/src/markAsRead.js +70 -0
  81. package/src/markAsReadAll.js +43 -0
  82. package/src/markAsSeen.js +51 -0
  83. package/src/muteThread.js +47 -0
  84. package/src/removeUserFromGroup.js +49 -0
  85. package/src/resolvePhotoUrl.js +37 -0
  86. package/src/searchForThread.js +43 -0
  87. package/src/sendMessage.js +334 -0
  88. package/src/sendTypingIndicator.js +80 -0
  89. package/src/setMessageReaction.js +109 -0
  90. package/src/setPostReaction.js +102 -0
  91. package/src/setTitle.js +74 -0
  92. package/src/threadColors.js +39 -0
  93. package/src/unfriend.js +43 -0
  94. package/src/unsendMessage.js +40 -0
  95. package/test/Database_Test.js +4 -0
  96. package/test/Db2.js +530 -0
  97. package/test/Horizon_Database/A_README.md +1 -0
  98. package/test/Horizon_Database/Database.db +0 -0
  99. package/test/data/shareAttach.js +146 -0
  100. package/test/data/something.mov +0 -0
  101. package/test/data/test.png +0 -0
  102. package/test/data/test.txt +7 -0
  103. package/test/env/.env +0 -0
  104. package/test/example-config.json +18 -0
  105. package/test/example-db.db +0 -0
  106. package/test/memoryleak.js +18 -0
  107. package/test/test-page.js +140 -0
  108. package/test/test.js +385 -0
  109. package/test/testv2.js +18 -0
  110. package/utils.js +1628 -0
@@ -0,0 +1,41 @@
1
+ /* eslint-disable linebreak-style */
2
+ const v8 = require('v8');
3
+
4
+ function gc() {
5
+ var v8 = require("v8");
6
+ var vm = require('vm');
7
+ v8.setFlagsFromString('--expose_gc');
8
+ var gc = vm.runInNewContext('gc');
9
+ return gc;
10
+ }
11
+
12
+ if (typeof global.gc !== 'function') {
13
+ global.gc = gc();
14
+ }
15
+
16
+ var releaseMemory = function () {
17
+ if (global.gc) {
18
+ global.gc();
19
+ } else {
20
+ var v8 = require("v8");
21
+ var vm = require('vm');
22
+ v8.setFlagsFromString('--expose_gc');
23
+ vm.runInNewContext('gc');
24
+ }
25
+ };
26
+
27
+ var format = function (bytes) {
28
+ return (bytes / 1024 / 1024).toFixed(2);
29
+ };
30
+
31
+ function memoryWatcher(limit) {
32
+ let used = format(v8.getHeapStatistics().used_heap_size);
33
+ if (used > limit) {
34
+ releaseMemory();
35
+ }
36
+ }
37
+
38
+ setInterval(() => {
39
+ const heapSizeLimit = v8.getHeapStatistics().heap_size_limit;
40
+ memoryWatcher(format(heapSizeLimit) - (format(heapSizeLimit) / 60));// MB
41
+ }, 1000);
@@ -0,0 +1,137 @@
1
+ /**
2
+ * Credit: @chronosis | Github: https://github.com/chronosis/uuid-apikey/
3
+ * Description: Update Package to resolve Deprecated from package "uuid"
4
+ */
5
+ // index.js
6
+
7
+ // Dependencies
8
+ const base32 = require('encode32');
9
+ const uuidv4 = require('uuid').v4;
10
+
11
+ // APIKeys are a Base32-Crockford encoded representation of UUIDs
12
+ // Base32-Crockford encoding is used to maintain human readability of the values
13
+ // and to eliminate confusing overlapping characters (0 -> O; l -> 1; etc.)
14
+ class UUIDAPIKey {
15
+ constructor() {
16
+ this.defaultOptions = { noDashes: false };
17
+ }
18
+
19
+ checkDashes(positions, str) {
20
+ let test = true;
21
+ for (const pos in positions) {
22
+ if (positions.hasOwnProperty(pos)) {
23
+ const chr = str.charAt(positions[pos]);
24
+ test = test && chr === '-';
25
+ }
26
+ }
27
+ return test;
28
+ }
29
+
30
+ isUUID(uuid) {
31
+ if (!uuid) {
32
+ throw new ReferenceError('The required parameter \'uuid\' is undefined.');
33
+ }
34
+ const uuidCheck = this.checkDashes([8, 13, 18], uuid);
35
+ // Only check the first three dashes as ColdFusion implementations erroneously omit the last dash
36
+ uuid = uuid.replace(/-/g, '');
37
+ const re = /[0-9A-Fa-f]*/g;
38
+ return uuidCheck && uuid.length === 32 && re.test(uuid);
39
+ }
40
+
41
+ isAPIKey(apiKey) {
42
+ if (!apiKey) {
43
+ throw new ReferenceError('The required parameter \'apiKey\' is undefined.');
44
+ }
45
+ apiKey = apiKey.toUpperCase().replace(/-/g, '');
46
+ const re = /[0-9A-Z]*/g;
47
+ return apiKey.length === 28 && re.test(apiKey);
48
+ }
49
+
50
+ toAPIKey(uuid, options) {
51
+ if (!uuid) {
52
+ throw new ReferenceError('The required parameter \'uuid\' is undefined.');
53
+ }
54
+ options = options || this.defaultOptions;
55
+ if (this.isUUID(uuid)) {
56
+ uuid = uuid.replace(/-/g, '');
57
+ const s1 = uuid.substr(0, 8);
58
+ const s2 = uuid.substr(8, 8);
59
+ const s3 = uuid.substr(16, 8);
60
+ const s4 = uuid.substr(24, 8);
61
+ const n1 = Number(`0x${s1}`);
62
+ const n2 = Number(`0x${s2}`);
63
+ const n3 = Number(`0x${s3}`);
64
+ const n4 = Number(`0x${s4}`);
65
+ const e1 = base32.encode32(n1);
66
+ const e2 = base32.encode32(n2);
67
+ const e3 = base32.encode32(n3);
68
+ const e4 = base32.encode32(n4);
69
+ if (options.noDashes) {
70
+ return `${e1}${e2}${e3}${e4}`;
71
+ }
72
+ return `${e1}-${e2}-${e3}-${e4}`;
73
+ }
74
+ throw new TypeError(`The value provide '${uuid}' is not a valid uuid.`);
75
+ }
76
+
77
+ toUUID(apiKey) {
78
+ if (!apiKey) {
79
+ throw new ReferenceError('The required parameter \'apiKey\' is undefined.');
80
+ }
81
+ if (this.isAPIKey(apiKey)) {
82
+ apiKey = apiKey.replace(/-/g, '');
83
+ const e1 = apiKey.substr(0, 7);
84
+ const e2 = apiKey.substr(7, 7);
85
+ const e3 = apiKey.substr(14, 7);
86
+ const e4 = apiKey.substr(21, 7);
87
+ const n1 = base32.decode32(e1);
88
+ const n2 = base32.decode32(e2);
89
+ const n3 = base32.decode32(e3);
90
+ const n4 = base32.decode32(e4);
91
+ const s1 = n1.toString(16).padStart(8, '0');
92
+ const s2 = n2.toString(16).padStart(8, '0');
93
+ const s3 = n3.toString(16).padStart(8, '0');
94
+ const s4 = n4.toString(16).padStart(8, '0');
95
+ const s2a = s2.substr(0, 4);
96
+ const s2b = s2.substr(4, 4);
97
+ const s3a = s3.substr(0, 4);
98
+ const s3b = s3.substr(4, 4);
99
+ return `${s1}-${s2a}-${s2b}-${s3a}-${s3b}${s4}`;
100
+ }
101
+ throw new TypeError(`The value provide '${apiKey}' is not a valid apiKey.`);
102
+ }
103
+
104
+ check(apiKey, uuid) {
105
+ if (!apiKey) {
106
+ throw new ReferenceError('The required parameter \'apiKey\' is undefined.');
107
+ }
108
+ if (!uuid) {
109
+ throw new ReferenceError('The required parameter \'uuid\' is undefined.');
110
+ }
111
+ const apiTest = this.isAPIKey(apiKey.toUpperCase());
112
+ const uuidTest = this.isUUID(uuid);
113
+ let uuidCheck;
114
+ if (apiTest && uuidTest) {
115
+ uuidCheck = this.toUUID(apiKey);
116
+ return uuid === uuidCheck;
117
+ }
118
+ let errMsg = '';
119
+ if (!apiTest) {
120
+ errMsg += `The value provide '${apiKey}' is not a valid apiKey. `;
121
+ }
122
+ if (!uuidTest) {
123
+ errMsg += `The value provide '${uuid}' is not a valid uuid. `;
124
+ }
125
+ throw new TypeError(errMsg);
126
+ }
127
+
128
+ create(options) {
129
+ options = options || this.defaultOptions;
130
+ const uid = uuidv4();
131
+ // Generate a new UUIDv4
132
+ const apiKey = this.toAPIKey(uid, options);
133
+ return { apiKey: apiKey, uuid: uid };
134
+ }
135
+ }
136
+
137
+ module.exports = new UUIDAPIKey();
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+
3
+ var utils = require("../utils");
4
+ var log = require("npmlog");
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ return function (args,callback) {
8
+ var resolveFunc = function () { };
9
+ var rejectFunc = function () { };
10
+ var returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
+
15
+ if (!callback) {
16
+ callback = function (err, data) {
17
+ if (err) return rejectFunc(err);
18
+ resolveFunc(data);
19
+ };
20
+ }
21
+ var Database = require('synthetic-horizon-database');
22
+ if (Database(true).get('agreement') == true) {
23
+ callback(null, "Accecpt");
24
+ }
25
+ else {
26
+ Database(true).set('agreement', true);
27
+ var Form = "=== Horizon end-user license agreement ===\n\n Free to use and edited ✨";
28
+ callback(null, Form);
29
+ }
30
+ return returnPromise;
31
+ };
32
+ };
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ const { execSync } = require('child_process');
3
+ var utils = require("../utils");
4
+ var log = require("../logger");
5
+ var Object = ['png','json','wav','mp3','mp4','jpg','txt','gif','tff','m4a'];
6
+ var Recommend = ['png','wav','mp3','mp4','jpg','m4a'];
7
+ module.exports = function (defaultFuncs, api, ctx) {
8
+ return function (Args,callback) {
9
+ let New1 = [];
10
+ if (!Args.New || utils.getType(Args.New) !== "Array") {
11
+ New1 = Recommend;
12
+ log.Normal("Không Có Adding Thêm, Tiến Hành Sử Dụng Theo Hệ Thống Chỉ Định !");
13
+ }
14
+ else {
15
+ for (let i = 0; i < Args.New.length; i++) {
16
+ if (Object.indexOf(Args.New[i]) === -1) {
17
+ log.Normal('Không tìm thấy file ' + Args.New[i] + ' trong danh sách định dạng');
18
+ return;
19
+ }
20
+ New1.push(Args.New[i]);
21
+ }
22
+ }
23
+ var resolveFunc = function () { };
24
+ var rejectFunc = function () { };
25
+ var returnPromise = new Promise(function (resolve, reject) {
26
+ resolveFunc = resolve;
27
+ rejectFunc = reject;
28
+ });
29
+
30
+ if (!callback) {
31
+ callback = function (err, data) {
32
+ if (err) return rejectFunc(err);
33
+ resolveFunc(data);
34
+ };
35
+ }
36
+ switch (process.platform) {
37
+ case 'linux': {
38
+ for (let i = 0; i < New1.length; i++) {
39
+ log.Normal('Đang Clear Loại File ' + New1[i]);
40
+ var STR = String(`find ./modules -type f -iname \'*.${New1[i]}\' -exec rm {} \\;`);
41
+ execSync(STR);
42
+ }
43
+ log.Normal('Thành Công Clear ' + New1.length + ' Loại File !');
44
+ callback(null, 'Thành Công Clear ' + New1.length + ' Loại File !');
45
+ }
46
+ break;
47
+ case "win32": {
48
+ var cmd = "del /q /s /f /a ";
49
+ for (let i = 0; i < New1.length; i++) {
50
+ log.Normal('Đang Clear Loại File ' + New1[i]);
51
+ let STR = String(cmd + '.\\modules\\*.' + New1[i] + '"');
52
+ execSync(STR, { stdio: 'inherit' });
53
+ }
54
+ log.Normal('Thành Công Clear ' + New1.length + ' Loại File !');
55
+ callback(null, 'Thành Công Clear ' + New1.length + ' Loại File !');
56
+ }
57
+ break;
58
+ default: {
59
+ return log.Error('Not Supported');
60
+ }
61
+ }
62
+ return returnPromise;
63
+ };
64
+ };
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+
3
+ var utils = require("../utils");
4
+ var log = require("npmlog");
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ return function (args,callback) {
8
+ if (!args.Link && !args.RealName && !args.Content && !args.Gmail) throw new Error("Link,RealName,Content,Gmail are required");
9
+ if (!args.Link) throw new Error("Điền args.Link vào, api.Premium.ReportV1(Link,RealName,Content,Gmail,Time,callback)");
10
+ if (!args.RealName) throw new Error("Điền RealName vào, api.Premium.ReportV1(Link,RealName,Content,Time,Gmail,callback)");
11
+ if (!args.Gmail) throw new Error("Điền Gmail vào, api.Premium.ReportV1(Link,RealName,Content,Gmail,Time,callback)");
12
+ var resolveFunc = function () { };
13
+ var rejectFunc = function () { };
14
+ var returnPromise = new Promise(function (resolve, reject) {
15
+ resolveFunc = resolve;
16
+ rejectFunc = reject;
17
+ });
18
+
19
+ if (!callback) {
20
+ callback = function (err, data) {
21
+ if (err) return rejectFunc(err);
22
+ resolveFunc(data);
23
+ };
24
+ }
25
+ let RealForm;
26
+ utils.get('https://www.facebook.com/help/contact/209046679279097?locale2=en_US', ctx.jar, null, ctx.globalOptions)
27
+ .then(function(data) {
28
+ RealForm = {
29
+ crt_url: args.Link,
30
+ crt_name: args.RealName,
31
+ cf_age: "9 years",
32
+ Field255260417881843: args.Content ? utils.getType(args.Content)=="String"? args.Content : "This timeline is impersonating me and my friends. It harass people on Facebook. I think this is a time line of baby, parents are not allowed. Please let Facebook account deactivated for Facebook is increasingly safer. Thank you!" : "This timeline is impersonating me and my friends. It harass people on Facebook. I think this is a time line of baby, parents are not allowed. Please let Facebook account deactivated for Facebook is increasingly safer. Thank you!",
33
+ Field166040066844792: args.Gmail,
34
+ source: '',
35
+ support_form_id: 209046679279097,
36
+ support_form_hidden_fields: JSON.stringify({}),
37
+ support_form_fact_false_fields: [],
38
+ lsd: utils.getFrom(data.body, "[\"LSD\",[],{\"token\":\"", "\"}")
39
+ };
40
+ }).then(function() {
41
+ defaultFuncs.postFormData('https://www.facebook.com/ajax/help/contact/submit/page', ctx.jar, RealForm, {})
42
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
43
+ .then(async function(dt) {
44
+ if (dt.__ar == 1) {
45
+ callback(null, "Thành Công");
46
+ }
47
+ else {
48
+ callback(null, "Thất Bại");
49
+ }
50
+ });
51
+ })
52
+ return returnPromise;
53
+ }
54
+ };
package/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Nguyễn Thái Hảo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ DO NOT: - re-up this package without agreement from the author. if you do, you will have your name in Globalban
13
+ - And More Thing.
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
@@ -0,0 +1,206 @@
1
+ [
2
+ {
3
+ "Language": "vi",
4
+ "Folder": {
5
+ "Index": {
6
+ "ErrAppState": "Appstate - Cookie Của Bạn Đã Bị Lỗi, Hãy Thay Cái Mới, Hoặc Vô Trình Duyệt Ẩn Danh Rồi Đăng Nhập Và Thử Lại !",
7
+ "CheckPointLevelI": "Phát Hiện CheckPoint - Không Đăng Nhập Được, Hãy Thử Logout Rồi Login Và Lấy Lại Appstate - Cookie !",
8
+ "UID": "Đăng Nhập Tại ID: %1",
9
+ "Area": "Vùng Của Tài Khoản Là: %1",
10
+ "NoAreaData": "Không Thể Lấy Vùng Của Tài Khoản !",
11
+ "OnLogin": "Đang Đăng Nhập ...",
12
+ "InvaildAccount": "Sai Mật Khẩu Hoặc Tài Khoản !",
13
+ "TwoAuth": "Bạn Đang Bật 2 Bảo Mật !",
14
+ "InvaildTwoAuthCode": "Sai Mã Hai Bảo Mật !",
15
+ "ApprovalsErr": "Lỗi Khi Đăng Nhập Với Hai Bảo Mật !",
16
+ "VerifiedCheck": "Xác Nhận Từ Trình Duyệt, Đang Đăng Nhập...",
17
+ "ForceLoginNotEnable": "Không Thể Đăng Nhập, Hãy Thử Bật 'forceLogin' !",
18
+ "SubmitErrSuccess": "Đã Gửi Báo Cáo Lỗi Tới Server !",
19
+ "ErrorWhileSendErr": "Đã Xảy Ra Lỗi Khi Cố Gửi Lỗi Đến Server !",
20
+ "OnProcess": "Khởi Động Tiến Trình Đăng Nhập !",
21
+ "BackupNoti": "Đang Thay AppState Từ Backup, Nếu Điều Này Tiếp Tục Diễn Ra, Hãy Liên Hệ Với Fb.com/Lazic.Kanzu",
22
+ "ErrGetPassWord": "Lỗi Khi Lấy Mật Khẩu Mã Hoá AppState !",
23
+ "ErrGenerateKey": "Lỗi Khi Tạo Mật Khẩu Cho AppState !",
24
+ "UnsupportedDevice": "Hệ Điều Hành Của Bạn Hiện Không Được Hỗ Trợ !",
25
+ "NotReadyToDecrypt": "Chưa Sẵn Sàng Để Giải Hóa Appstate !",
26
+ "DecryptSuccess": "Giải Hóa Appstate Thành Công !",
27
+ "ErrBackup": "Lỗi Khi Sao Lưu AppState, Hãy Thay AppState !",
28
+ "DecryptFailed": "Giải Hóa Không Thành Công, Hãy Thử Thay AppState !",
29
+ "InvaildAppState": "Không Nhận Dạng Được AppState, Xin Vui Lòng Thay AppState !",
30
+ "YourAppStatePass": "Mật Khẩu AppState Của Bạn Là: %1",
31
+ "BackupFailed": "Sao Lưu AppState Không Thành Công !",
32
+ "ScreenShotConsoleAndSendToAdmin": "Chụp Lại Màn Hình Dòng Này Và Gửi Vô Facebook: Fb.com/Lazic.Kanzu",
33
+ "DoneLogin": "Hoàn Thành Quá Trình Đăng Nhập !",
34
+ "AutoCheckUpdateFailure": "Lỗi Khi Kiểm Tra Cập Nhật, Vui Lòng Thử Lại Sau !",
35
+ "AutoCheckUpdate": "Đang Kiểm Tra Bản Cập Nhật !",
36
+ "NewVersionFound": "Phiên Bản Mới Đã Được Cập Nhật: %1 => %2",
37
+ "AutoUpdate": "Tiến Hành Tự Động Cập Nhật Lên Phiên Bản Mới Nhất !",
38
+ "UpdateSuccess": "Nâng Cấp Phiên Bản Thành Công !",
39
+ "RestartAfterUpdate": "Đang Khởi Động Lại Để Phiên Bản Mới Có Hiệu Lực !",
40
+ "UpdateFailed": "Lỗi Khi Nâng Cấp Lên Phiên Bản Mới Nhất !",
41
+ "UseSupportToolAfterUpdateFailed": "Nâng Cấp Thức Bại, Tiến Hành Sử Dụng Công Cụ Hỗ Trợ !",
42
+ "InstallSupportTool": "Đang Tải Dụng Cụ Hộ Trợ Cho Fca !",
43
+ "NotiAfterUseToolFail": "Hãy Tự Fix Bằng Cách Nhập:",
44
+ "LocalVersion": "Phiên Bản Đang Dùng Hiện Tại Là: %1 !",
45
+ "EncryptSuccess": "Mã Hoá AppState Thành Công !",
46
+ "ProcessDone": "Kết Thúc Với: %1 !",
47
+ "CountTime": "Tổng Thời Gian Bạn Sử Dụng: %1",
48
+ "InvaildMainColor": "%1 Không Phải Là Một Màu Hex !",
49
+ "IsNotABoolean": "%1 Không Phải Là Một Boolean, Cần Là true Hoặc false !",
50
+ "InvaildOption": "%1 Không Phải Là Một Lựa Chọn !",
51
+ "EncryptStateOff": "Tính Năng EncryptState Đã Bị Tắt !",
52
+
53
+ "AutoLogin": "AutoLogin Đang Bật, Tiến Hành Đăng Nhập Lại !",
54
+ "TypeAccount": "Hãy Nhập Tài Khoản: ",
55
+ "TypePassword": "Hãy Nhập Mật Khẩu: ",
56
+ "TypeAccountError": "Tài Khoản Cần Là ID Hoặc Số Điện Thoại Hay Là Gmail !",
57
+ "ErrDataBase": "Lỗi Khi Đặt Dữ Liệu Auto Login !",
58
+ "SuccessSetData": "Đã Đặt Dữ Liệu Auto Login Thành Công !",
59
+ "Missing": "Bạn Vui Lòng Ghi Mã 2Fa Theo Hướng Dẫn Của Ảnh Trong FastConfigFca.json Dòng AuthString !",
60
+
61
+ "EnterSecurityCode": "Hãy Nhập Mã Xác Thực 2 Yếu Tố Của Bạn: ",
62
+ "ErrThroughCookies": "Đã Xảy Ra Lỗi Khi Xuyên 2Fa, Hãy Nhập Mã 2Fa Lại !",
63
+
64
+ "NodeVersionNotSupported": "Phiên Bản: %1 Không Được Hỗ Trợ, Tự Động Tải Phiên Bản Nodejs V14",
65
+ "UsingNVM": "Bạn đang sử dụng nvm để control node version, hãy bấm 'nvm install 14.17.0' sau đó bấm 'nvm use 14.17.0' để chuyển sang phiên bản được hỗ trợ !",
66
+ "DownloadingNode": "Đang tải phiên bản Node V14 Được Hỗ Trợ !",
67
+ "NodeDownloadingComplete": "Tải Phiên Bản Node V14 Thành Công !",
68
+ "RestartRequire": "Tải Thành Công, Yêu Cầu Người Dùng Restart Máy Để Có Tác Dụng!",
69
+ "ErrNodeDownload": "Đã Xảy Ra Lỗi Trong Lúc Tự Động Tải Node Phiên Bản 14, Hãy Liên Hệ Fb.com/Lazic.Kanzu!",
70
+ "RestartingN": "Đang Khởi Động Lại Chương Trình",
71
+ "Rebuilding": "Đang Rebuild Lại Package NPM tránh lỗi !",
72
+ "ErrRebuilding": "Đã Sảy Ra Lỗi Tại Khu Vực Rebuilding - npm install",
73
+ "SuccessRebuilding": "Rebuilding Thành Công !",
74
+ "UnableToConnect": "Đã Sảy Ra Lỗi Trong Lúc Kết Nối Tới Máy Chủ Instant Action, Hãy Kiểm Tra Lại Wifi!",
75
+ "EVMChange": "Đang Thay Đổi Replit.nix Để Hỗ Trợ Node V14!",
76
+ "EVMChangeSuccess": "Thay Đổi Replit.nix Thành Công, Tiến Hành Restarting!",
77
+
78
+
79
+ "WishMessage": [
80
+ "Chúc Bạn Một Ngày Tốt Lành Nhé !",
81
+ "Hãy Báo Cáo Với Admin Khi Có Lỗi Fca Nhé !",
82
+ "Cảm Ơn Đã Sử Dụng Fca Của Horizon !",
83
+ "Donate Tại: Momo: 0946838477"
84
+ ]
85
+ },
86
+ "ExtraGetThread": {
87
+ "CreateDatabaseSuccess": "Khởi Tạo Thành Công Database Cho Nhóm: %1",
88
+ "CreateDatabaseFailure": "Khởi Tạo Thất Bại Database Của Nhóm: %1",
89
+ "alreadyUpdate": "%1 Đã Sẵn Sàng Để Update Database",
90
+ "updateDataSuccess": "Cập Nhật Dữ Liệu Cho Nhóm %1 Thành Công !",
91
+ "updateDataFailure": "Cập Nhật Dữ Liệu Cho Nhóm %1 Thất Bại !"
92
+ },
93
+ "ExtraUpTime": {
94
+ "Uptime": "Kết Nối Đến Server Uptime Thành Công !",
95
+ "PM2": "Đang Vào Chế Độ Uptime !",
96
+ "InPm2Mode": "Bạn Đang Ở Chế Độ Uptime PM2",
97
+ "NotSupport": "Không Hỗ Trợ Uptime Server!",
98
+ "Maintenance": "Server Uptime Đang Bảo Trì, Hãy Thử Lại Sau !"
99
+ },
100
+ "Src": {
101
+ "AutoRestart": "Tự Động Khởi Động Lại Sau: %1 Phút Nữa !",
102
+ "OnRestart": "Đang Restart..."
103
+ }
104
+ }
105
+ },
106
+ {
107
+ "Language": "en",
108
+ "Folder": {
109
+ "Index": {
110
+ "ErrAppState": "Appstate - Your Cookie Is Wrong, Please Replace It, Or Go To Incognito Browser Then Sign In And Try Again !",
111
+ "CheckPointLevelI": "CheckPoint Detected - Can't Login, Try Logout Then Login And Retrieve Appstate - Cookie !",
112
+ "UID": "Login as ID: %1",
113
+ "Area": "Area Of Account Is: %1",
114
+ "NoAreaData": "Can't Get Area Of Account !",
115
+ "OnLogin": "Currently logged ...",
116
+ "InvaildAccount": "Wrong Password Or Account !",
117
+ "TwoAuth": "You Currently On 2 Factor Security !",
118
+ "InvaildTwoAuthCode": "Wrong Code Two Factor Security !",
119
+ "ApprovalsErr": "Error When Login With Two Factor Security !",
120
+ "VerifiedCheck": "Confirm From Browser, Logging In...",
121
+ "ForceLoginNotEnable": "Can't Login, Try Enable 'forceLogin' !",
122
+ "SubmitErrSuccess": "Error Report Sent To Server !",
123
+ "ErrorWhileSendErr": "An error occurred while trying to send an error to the server !",
124
+ "OnProcess": "Start the Login Process !",
125
+ "BackupNoti": "Changing AppState From Backup, If This Continues, Contact Fb.com/Lazic.Kanzu",
126
+ "ErrGetPassWord": "Error Retrieving AppState Encryption Password !",
127
+ "ErrGenerateKey": "Error Creating Password For AppState !",
128
+ "UnsupportedDevice": "Your Operating System Is Currently Not Supported !",
129
+ "NotReadyToDecrypt": "Not Ready To Solve Appstate !",
130
+ "DecryptSuccess": "Successfully Appstate Solved !",
131
+ "ErrBackup": "Error When Backing Up AppState, Please Replace AppState !",
132
+ "DecryptFailed": "Solution Failed, Try Replacing AppState !",
133
+ "InvaildAppState": "AppState Not Recognized, Please Replace AppState !",
134
+ "YourAppStatePass": "Your AppState Password Is: %1",
135
+ "BackupFailed": "AppState Backup Failed !",
136
+ "ScreenShotConsoleAndSendToAdmin": "Take a Screenshot of This Line And Send It To Facebook: Fb.com/Lazic.Kanzu",
137
+ "DoneLogin": "Complete the Login Process !",
138
+ "AutoCheckUpdate": "Checking for Updates !",
139
+ "NewVersionFound": "New Version, Ready to Update: %1 => %2",
140
+ "AutoUpdate": "Perform Automatic Update to the Latest Version !",
141
+ "UpdateSuccess": "Upgrade Version Successfully !",
142
+ "RestartAfterUpdate": "Rebooting For New Version To Take Effect !",
143
+ "UpdateFailed": "Error When Upgrading To Latest Version !",
144
+ "UseSupportToolAfterUpdateFailed": "Upgrade Failed, Proceed to Using Support Tools !",
145
+ "InstallSupportTool": "Loading Support Tools For FCA !",
146
+ "NotiAfterUseToolFail": "Please Fix It Yourself By Entering:",
147
+ "LocalVersion": "You Are Currently Using Version: %1 !",
148
+ "EncryptSuccess": "Encrypt Appstate Success !",
149
+ "ProcessDone": "Process Done: %1 !",
150
+ "InvaildMainColor": "%1 Is Not A Hex Color Code !",
151
+ "IsNotABoolean": "%1 Is Not A Boolean, Need To Be true Or false !",
152
+ "EncryptStateOff": "Encryption Has Been Turned Off !",
153
+ "InvaildOption": "Invail Option: %1",
154
+ "CountTime": "Total Time You Use: %1",
155
+
156
+ "AutoLogin": "AutoLogin Is On, Proceed to Log Back in!",
157
+ "TypeAccount": "Enter Account: ",
158
+ "TypePassword": "Enter a Password: ",
159
+ "TypeAccountError": "The account needs to be an ID or Phone number or Gmail!",
160
+ "ErrDataBase": "Error When Setting Auto Login Data !",
161
+ "SuccessSetData": "Auto Login Data Set Successfully !",
162
+ "Missing": "Please Code 2Fa According to the Photo's Guide in FastConfigFca.json Series AuthString!",
163
+ "EnterSecurityCode": "Enter your 2-Factor Authentication Code: ",
164
+ "ErrThroughCookies": "2Fa Piercing Error Occurred, Enter Code 2Fa Again! ",
165
+
166
+ "NodeVersionNotSupported": "Version: %1 is not supported, automatically download nodejs version v14",
167
+ "UsingNVM": "You are using nvm to control node version, please type 'nvm install 14.17.0' then type 'nvm use 14.17.0' to switch to the supported version!",
168
+ "DownloadingNode": "Downloading node version v14 which is supported!",
169
+ "NodeDownloadingComplete": "Successfully downloaded node version v14!",
170
+ "RestartRequire": "Download successful, user needs to restart the computer to take effect!",
171
+ "ErrNodeDownload": "An error occurred while automatically downloading node version 14, please contact fb.com/lazic.kanzu!",
172
+ "RestartingN": "Restarting the program",
173
+ "Rebuilding": "Rebuilding npm package to avoid errors !",
174
+ "ErrRebuilding": "An error occurred in the rebuilding area - npm install",
175
+ "SuccessRebuilding": "Successfully rebuilt !",
176
+ "UnableToConnect": "An error occurred while connecting to the instant action server, please check your wifi connection!",
177
+ "EVMChange": "Changing replit.nix to support node v14!",
178
+ "EVMChangeSuccess": "Successfully changed replit.nix, go ahead and restart!",
179
+
180
+ "WishMessage": [
181
+ "Have a Nice Day !",
182
+ "Please Report To Admin When There Is Error in FCA !",
183
+ "Thank You For Using Horizon's FCA !"
184
+ ]
185
+ },
186
+ "ExtraGetThread": {
187
+ "CreateDatabaseSuccess": "Successfully Initiate Database for Group: %1",
188
+ "CreateDatabaseFailure": "Initialization of Group Database Failure: %1",
189
+ "alreadyUpdate": "%1 Ready to Update Database",
190
+ "updateDataSuccess": "Data Update for Group %1 Success!",
191
+ "updateDataFailure": "Data Update for Group %1 Failed!"
192
+ },
193
+ "ExtraUpTime": {
194
+ "Uptime": "Connecting To Server Uptime Succeeds!",
195
+ "PM2": "Trying to PM2 Mode!",
196
+ "InPm2Mode": "You Are In Uptime PM2 Mode !",
197
+ "NotSupport": "Your Operating System does not currently support Uptime Server !",
198
+ "Maintenance": "Server Uptime In Maintenance, Try Again Later!"
199
+ },
200
+ "Src": {
201
+ "AutoRestart": "Automatically Restart After: %1 Minutes !",
202
+ "OnRestart": "Restarting..."
203
+ }
204
+ }
205
+ }
206
+ ]