@badzz88/baileys 8.5.7 → 8.5.8

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 (142) hide show
  1. package/README.md +337 -1055
  2. package/WAProto/WAProto.proto +284 -264
  3. package/WAProto/index.js +5 -5
  4. package/engine-requirements.js +7 -15
  5. package/lib/Defaults/index.js +130 -187
  6. package/lib/Signal/Group/ciphertext-message.js +11 -14
  7. package/lib/Signal/Group/group-session-builder.js +29 -91
  8. package/lib/Signal/Group/group_cipher.js +81 -88
  9. package/lib/Signal/Group/index.js +12 -136
  10. package/lib/Signal/Group/keyhelper.js +15 -70
  11. package/lib/Signal/Group/sender-chain-key.js +25 -31
  12. package/lib/Signal/Group/sender-key-distribution-message.js +62 -65
  13. package/lib/Signal/Group/sender-key-message.js +65 -68
  14. package/lib/Signal/Group/sender-key-name.js +41 -43
  15. package/lib/Signal/Group/sender-key-record.js +40 -43
  16. package/lib/Signal/Group/sender-key-state.js +83 -96
  17. package/lib/Signal/Group/sender-message-key.js +25 -29
  18. package/lib/Signal/libsignal.js +425 -453
  19. package/lib/Signal/lid-mapping.js +276 -259
  20. package/lib/Socket/Client/index.js +3 -30
  21. package/lib/Socket/Client/types.js +10 -12
  22. package/lib/Socket/Client/websocket.js +53 -61
  23. package/lib/Socket/business.js +379 -422
  24. package/lib/Socket/chats.js +1193 -1816
  25. package/lib/Socket/communities.js +431 -549
  26. package/lib/Socket/graphql.js +672 -612
  27. package/lib/Socket/groups.js +374 -764
  28. package/lib/Socket/index.js +17 -38
  29. package/lib/Socket/interop.js +417 -503
  30. package/lib/Socket/messages-recv.js +1915 -2441
  31. package/lib/Socket/messages-send.js +1213 -1630
  32. package/lib/Socket/mex.js +9 -15
  33. package/lib/Socket/newsletter.js +747 -808
  34. package/lib/Socket/privacy.js +310 -441
  35. package/lib/Socket/socket.js +1025 -1022
  36. package/lib/Socket/username.js +8 -15
  37. package/lib/Store/index.js +10 -36
  38. package/lib/Store/make-cache-manager-store.js +80 -85
  39. package/lib/Store/make-in-memory-store.js +231 -591
  40. package/lib/Store/make-ordered-dictionary.js +72 -78
  41. package/lib/Store/object-repository.js +28 -25
  42. package/lib/Types/Auth.js +2 -38
  43. package/lib/Types/Bussines.js +2 -2
  44. package/lib/Types/Call.js +2 -2
  45. package/lib/Types/Chat.js +8 -4
  46. package/lib/Types/Contact.js +2 -2
  47. package/lib/Types/Events.js +2 -2
  48. package/lib/Types/GroupMetadata.js +2 -2
  49. package/lib/Types/Label.js +24 -26
  50. package/lib/Types/LabelAssociation.js +6 -8
  51. package/lib/Types/Message.js +11 -95
  52. package/lib/Types/Mex.js +111 -112
  53. package/lib/Types/Product.js +2 -2
  54. package/lib/Types/Signal.js +2 -2
  55. package/lib/Types/Socket.js +3 -2
  56. package/lib/Types/State.js +56 -70
  57. package/lib/Types/USync.js +2 -2
  58. package/lib/Types/index.js +26 -55
  59. package/lib/Utils/auth-utils.js +288 -292
  60. package/lib/Utils/browser-utils.js +47 -113
  61. package/lib/Utils/business.js +224 -240
  62. package/lib/Utils/chat-utils.js +869 -1205
  63. package/lib/Utils/companion-reg-client-utils.js +34 -41
  64. package/lib/Utils/crypto.js +107 -144
  65. package/lib/Utils/decode-wa-message.js +308 -518
  66. package/lib/Utils/event-buffer.js +611 -596
  67. package/lib/Utils/generics.js +355 -515
  68. package/lib/Utils/history.js +134 -244
  69. package/lib/Utils/identity-change-handler.js +49 -51
  70. package/lib/Utils/index.js +23 -57
  71. package/lib/Utils/link-preview.js +77 -135
  72. package/lib/Utils/logger.js +3 -9
  73. package/lib/Utils/lt-hash.js +6 -37
  74. package/lib/Utils/make-mutex.js +33 -36
  75. package/lib/Utils/message-composer.js +233 -439
  76. package/lib/Utils/message-retry-manager.js +260 -265
  77. package/lib/Utils/messages-media.js +829 -855
  78. package/lib/Utils/messages.js +961 -2528
  79. package/lib/Utils/noise-handler.js +200 -195
  80. package/lib/Utils/offline-node-processor.js +33 -35
  81. package/lib/Utils/pre-key-manager.js +102 -103
  82. package/lib/Utils/process-message.js +560 -978
  83. package/lib/Utils/reporting-utils.js +253 -257
  84. package/lib/Utils/signal.js +195 -218
  85. package/lib/Utils/stanza-ack.js +29 -31
  86. package/lib/Utils/sticker.js +109 -144
  87. package/lib/Utils/sync-action-utils.js +45 -50
  88. package/lib/Utils/tc-token-utils.js +139 -137
  89. package/lib/Utils/use-multi-file-auth-state.js +109 -109
  90. package/lib/Utils/validate-connection.js +202 -218
  91. package/lib/WABinary/constants.js +1299 -1302
  92. package/lib/WABinary/decode.js +262 -343
  93. package/lib/WABinary/encode.js +4 -12
  94. package/lib/WABinary/generic-utils.js +187 -223
  95. package/lib/WABinary/index.js +6 -33
  96. package/lib/WABinary/jid-utils.js +88 -351
  97. package/lib/WABinary/types.js +2 -2
  98. package/lib/WAM/BinaryInfo.js +9 -12
  99. package/lib/WAM/constants.js +22853 -39486
  100. package/lib/WAM/encode.js +140 -132
  101. package/lib/WAM/index.js +4 -31
  102. package/lib/WAUSync/Protocols/USyncBotProfileProtocol.js +21 -23
  103. package/lib/WAUSync/Protocols/USyncBusinessProtocol.js +9 -9
  104. package/lib/WAUSync/Protocols/USyncContactProtocol.js +7 -7
  105. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +10 -10
  106. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +7 -7
  107. package/lib/WAUSync/Protocols/USyncFeatureProtocol.js +11 -12
  108. package/lib/WAUSync/Protocols/USyncLIDProtocol.js +4 -5
  109. package/lib/WAUSync/Protocols/USyncPictureProtocol.js +7 -7
  110. package/lib/WAUSync/Protocols/USyncSidelistProtocol.js +7 -8
  111. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +7 -7
  112. package/lib/WAUSync/Protocols/USyncTextStatusProtocol.js +8 -8
  113. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +7 -7
  114. package/lib/WAUSync/Protocols/index.js +12 -39
  115. package/lib/WAUSync/USyncQuery.js +67 -49
  116. package/lib/WAUSync/USyncUser.js +11 -5
  117. package/lib/WAUSync/index.js +3 -31
  118. package/lib/index.js +15 -48
  119. package/package.json +129 -99
  120. package/LICENSE +0 -21
  121. package/lib/Defaults/phonenumber-mcc.json +0 -223
  122. package/lib/Socket/aigroups.js +0 -240
  123. package/lib/Socket/interactive-handler.js +0 -522
  124. package/lib/Socket/managed-account.js +0 -183
  125. package/lib/Socket/registration.js +0 -427
  126. package/lib/Socket/text-router.js +0 -83
  127. package/lib/Types/Newsletter.js +0 -121
  128. package/lib/Utils/command-loader.d.ts +0 -31
  129. package/lib/Utils/command-loader.js +0 -100
  130. package/lib/Utils/consumer-application.js +0 -107
  131. package/lib/Utils/curve25519-js.js +0 -275
  132. package/lib/Utils/group-history.js +0 -60
  133. package/lib/Utils/jid-display-normalization.js +0 -218
  134. package/lib/Utils/meta-ai-msmsg.js +0 -262
  135. package/lib/Utils/native-bridge.js +0 -82
  136. package/lib/Utils/session-pool.d.ts +0 -16
  137. package/lib/Utils/session-pool.js +0 -94
  138. package/lib/Utils/sticker.d.ts +0 -17
  139. package/lib/Utils/view-once-cache.d.ts +0 -9
  140. package/lib/Utils/view-once-cache.js +0 -79
  141. package/lib/Utils/voip-rekey.js +0 -22
  142. package/lib/antiban.js +0 -4637
package/package.json CHANGED
@@ -1,106 +1,136 @@
1
1
  {
2
- "name": "@badzz88/baileys",
3
- "version": "8.5.7",
4
- "description": "Baileys Whatsapp Api Modification By Badzz88",
5
- "keywords": [
6
- "whatsapp",
7
- "whatsapp-web",
8
- "whatsapp-api",
9
- "baileys",
10
- "multi-device",
11
- "wasm",
12
- "rust",
13
- "automation",
14
- "md"
15
- ],
16
- "homepage": "https://www.npmjs.com/package/@badzz88/baileys",
17
- "repository": {
18
- "url": "https://github.com/package/Badzz88/baileys.giy"
19
- },
20
- "license": "MIT",
21
- "author": "Badzz88",
22
- "main": "lib/index.js",
23
- "files": [
24
- "lib/**/*",
25
- "WAProto/**/*",
26
- "engine-requirements.js"
27
- ],
28
- "scripts": {
29
- "ncu": "npm-check-updates",
30
- "format": "prettier --write \"lib/**/*.{js,json,md}\"",
31
- "lint": "tsc && eslint src --ext .js",
32
- "lint:fix": "npm run format && npm run lint -- --fix",
33
- "test": "jest --runInBand"
34
- },
35
- "dependencies": {
36
- "@adiwajshing/keyed-db": "^0.2.4",
37
- "@cacheable/node-cache": "^3.0.1",
38
- "@hapi/boom": "^10.0.1",
39
- "async-mutex": "^0.5.0",
40
- "cache-manager": "^7.2.8",
41
- "libphonenumber-js": "^1.13.3",
42
- "lru-cache": "^11.5.0",
43
- "music-metadata": "^11.12.3",
44
- "p-queue": "^9.3.0",
45
- "pino": "^10.3.1",
46
- "protobufjs": "^7.6.1",
47
- "ws": "^8.21.0",
48
- "whatsapp-rust-bridge": "0.5.4",
49
- "jimp": "^1.6.0",
50
- "chalk": "^4.1.2"
51
- },
52
- "devDependencies": {
53
- "@eslint/eslintrc": "^3.3.1",
54
- "@eslint/js": "^9.31.0",
55
- "@types/jest": "^30.0.0",
56
- "@types/node": "^22.0.0",
57
- "@types/ws": "^8.0.0",
58
- "@typescript-eslint/eslint-plugin": "^8.59.4",
59
- "@typescript-eslint/parser": "^8.59.4",
60
- "@whiskeysockets/eslint-config": "^1.0.0",
61
- "eslint": "^9",
62
- "eslint-config-prettier": "^10.1.8",
63
- "eslint-plugin-prettier": "^5.4.1",
64
- "jest": "^30.0.5",
65
- "jimp": "^1.6.0",
66
- "jiti": "^2.4.2",
67
- "json": "^11.0.0",
68
- "link-preview-js": "^3.2.0",
69
- "pino-pretty": "^13.1.1",
70
- "prettier": "^3.5.3",
71
- "protobufjs-cli": "^1.3.1",
72
- "qrcode-terminal": "^0.12.0",
73
- "ts-jest": "^29.4.11",
74
- "tsx": "^4.22.3"
75
- },
76
- "peerDependencies": {
77
- "audio-decode": "^2.1.3",
78
- "link-preview-js": "^3.2.0",
79
- "@img/sharp-wasm32": "^0.35.1",
80
- "sharp": "^0.32.5"
81
- },
82
- "peerDependenciesMeta": {
83
- "audio-decode": {
84
- "optional": true
2
+ "name": "@badzz88/baileys",
3
+ "version": "8.5.8",
4
+ "description": "A WebSockets library for interacting with WhatsApp Web",
5
+ "keywords": [
6
+ "WhatsApp",
7
+ "Baileys",
8
+ "Badzz88"
9
+ ],
10
+ "homepage": "https://www.npmjs.com/package/@badzz88/baileys",
11
+ "repository": {
12
+ "url": "https://www.npmjs.com/package/@badzz88/baileys"
85
13
  },
86
- "jimp": {
87
- "optional": true
14
+ "license": "MIT",
15
+ "author": "Badzz88",
16
+ "main": "lib/index.js",
17
+ "types": "lib/index.d.ts",
18
+ "files": [
19
+ "lib/**/*",
20
+ "WAProto/**/*",
21
+ "engine-requirements.js"
22
+ ],
23
+ "scripts": {
24
+ "build:all": "tsc && typedoc",
25
+ "build:docs": "typedoc",
26
+ "build:tsc": "tsc",
27
+ "changelog:last": "conventional-changelog -p angular -r 2",
28
+ "changelog:preview": "conventional-changelog -p angular -u",
29
+ "gen:protobuf": "sh WAProto/GenerateStatics.sh",
30
+ "lint": "eslint src --ext .js,.ts,.jsx,.tsx",
31
+ "lint:fix": "eslint src --fix --ext .js,.ts,.jsx,.tsx",
32
+ "prepack": "",
33
+ "prepare": "",
34
+ "preinstall": "node ./engine-requirements.js",
35
+ "release": "release-it",
36
+ "test": "jest"
88
37
  },
89
- "link-preview-js": {
90
- "optional": true
38
+ "dependencies": {
39
+ "@cacheable/node-cache": "^1.4.0",
40
+ "@hapi/boom": "^9.1.3",
41
+ "async-mutex": "^0.5.0",
42
+ "libsignal": "npm:@vnxsync/libsignal-node",
43
+ "lru-cache": "^11.1.0",
44
+ "music-metadata": "^11.12.3",
45
+ "p-queue": "^9.0.0",
46
+ "pino": "^9.6",
47
+ "protobufjs": "^7.5.6",
48
+ "whatsapp-rust-bridge": "0.5.4",
49
+ "ws": "^8.13.0",
50
+ "chalk": "^4.1.2",
51
+ "cache-manager": "^7.2.8"
91
52
  },
92
- "@img/sharp-wasm32": {
93
- "optional": true
53
+ "devDependencies": {
54
+ "@eslint/eslintrc": "^3.3.1",
55
+ "@eslint/js": "^9.31.0",
56
+ "@types/jest": "^30.0.0",
57
+ "@types/node": "^20.9.0",
58
+ "@types/ws": "^8.0.0",
59
+ "@typescript-eslint/eslint-plugin": "^8",
60
+ "@typescript-eslint/parser": "^8",
61
+ "@whiskeysockets/eslint-config": "^1.0.0",
62
+ "conventional-changelog": "^7.1.1",
63
+ "conventional-changelog-angular": "^8.0.0",
64
+ "esbuild-register": "^3.6.0",
65
+ "eslint": "^9",
66
+ "eslint-config-prettier": "^10.1.2",
67
+ "eslint-plugin-prettier": "^5.4.0",
68
+ "jest": "^30.0.5",
69
+ "jimp": "^1.6.1",
70
+ "jiti": "^2.4.2",
71
+ "json": "^11.0.0",
72
+ "link-preview-js": "^3.0.0",
73
+ "lru-cache": "^11.1.0",
74
+ "open": "^8.4.2",
75
+ "pino-pretty": "^13.1.1",
76
+ "prettier": "^3.5.3",
77
+ "protobufjs-cli": "^1.1.3",
78
+ "release-it": "^20.0.1",
79
+ "ts-jest": "^29.4.0",
80
+ "tsc-esm-fix": "^3.1.2",
81
+ "tsx": "^4.20.3",
82
+ "typedoc": "^0.27.9",
83
+ "typedoc-plugin-markdown": "4.4.2",
84
+ "typescript": "^5.8.2"
94
85
  },
95
- "sharp": {
96
- "optional": true
86
+ "peerDependencies": {
87
+ "audio-decode": "^2.1.3",
88
+ "jimp": "^1.6.1",
89
+ "link-preview-js": "^3.0.0",
90
+ "sharp": "*"
97
91
  },
98
- "whatsapp-rust-bridge": {
99
- "optional": true
92
+ "resolutions": {
93
+ "ajv@npm:^6.12.4": "^6.14.0",
94
+ "basic-ftp": "^5.2.4",
95
+ "brace-expansion@npm:^1.1.7": "^1.1.13",
96
+ "brace-expansion@npm:^2.0.1": "^2.0.3",
97
+ "flatted": "^3.4.2",
98
+ "glob@npm:^10.2.2": "^10.5.0",
99
+ "glob@npm:^10.3.10": "^10.5.0",
100
+ "glob@npm:^10.5.0": "^10.5.0",
101
+ "handlebars": "^4.7.9",
102
+ "ip-address": "^10.1.1",
103
+ "js-yaml@npm:^3.13.1": "^3.14.2",
104
+ "js-yaml@npm:^4.1.0": "^4.1.1",
105
+ "markdown-it": "^14.1.1",
106
+ "minimatch@npm:^3.0.4": "^3.1.5",
107
+ "minimatch@npm:^3.1.2": "^3.1.5",
108
+ "minimatch@npm:^5.0.1": "^5.1.8",
109
+ "minimatch@npm:^9.0.4": "^9.0.9",
110
+ "minimatch@npm:^9.0.5": "^9.0.9",
111
+ "picomatch@npm:^2.0.4": "^2.3.2",
112
+ "picomatch@npm:^2.3.1": "^2.3.2",
113
+ "picomatch@npm:^4.0.0": "^4.0.4",
114
+ "picomatch@npm:^4.0.2": "^4.0.4",
115
+ "socks": "^2.8.8",
116
+ "tar": "^7.5.11",
117
+ "tmp": "^0.2.5",
118
+ "underscore": "^1.13.8",
119
+ "yaml@npm:^2.6.1": "^2.8.4"
120
+ },
121
+ "peerDependenciesMeta": {
122
+ "audio-decode": {
123
+ "optional": true
124
+ },
125
+ "jimp": {
126
+ "optional": true
127
+ },
128
+ "link-preview-js": {
129
+ "optional": true
130
+ }
131
+ },
132
+ "packageManager": "yarn@4.9.2",
133
+ "engines": {
134
+ "node": ">=20.0.0"
100
135
  }
101
- },
102
- "packageManager": "yarn@4.9.2",
103
- "engines": {
104
- "node": ">=20.0.0"
105
- }
106
- }
136
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Baron
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
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,223 +0,0 @@
1
- {
2
- "93": 412,
3
- "355": 276,
4
- "213": 603,
5
- "1-684": 544,
6
- "376": 213,
7
- "244": 631,
8
- "1-264": 365,
9
- "1-268": 344,
10
- "54": 722,
11
- "374": 283,
12
- "297": 363,
13
- "61": 505,
14
- "43": 232,
15
- "994": 400,
16
- "1-242": 364,
17
- "973": 426,
18
- "880": 470,
19
- "1-246": 342,
20
- "375": 257,
21
- "32": 206,
22
- "501": 702,
23
- "229": 616,
24
- "1-441": 350,
25
- "975": 402,
26
- "591": 736,
27
- "387": 218,
28
- "267": 652,
29
- "55": 724,
30
- "1-284": 348,
31
- "673": 528,
32
- "359": 284,
33
- "226": 613,
34
- "257": 642,
35
- "855": 456,
36
- "237": 624,
37
- "238": 625,
38
- "1-345": 346,
39
- "236": 623,
40
- "235": 622,
41
- "56": 730,
42
- "86": 454,
43
- "57": 732,
44
- "269": 654,
45
- "682": 548,
46
- "506": 712,
47
- "385": 219,
48
- "53": 368,
49
- "357": 280,
50
- "420": 230,
51
- "243": 630,
52
- "45": 238,
53
- "253": 638,
54
- "1-767": 366,
55
- "1-809": 370,
56
- "1-849": 370,
57
- "1-829": 370,
58
- "593": 740,
59
- "20": 602,
60
- "503": 706,
61
- "240": 627,
62
- "291": 657,
63
- "372": 248,
64
- "251": 636,
65
- "500": 750,
66
- "298": 288,
67
- "679": 542,
68
- "358": 244,
69
- "33": 208,
70
- "689": 547,
71
- "241": 628,
72
- "220": 607,
73
- "995": 282,
74
- "49": 262,
75
- "233": 620,
76
- "350": 266,
77
- "30": 202,
78
- "299": 290,
79
- "1-473": 352,
80
- "1-671": 535,
81
- "502": 704,
82
- "224": 537,
83
- "592": 738,
84
- "509": 372,
85
- "504": 708,
86
- "852": 454,
87
- "36": 216,
88
- "354": 274,
89
- "91": 404,
90
- "62": 510,
91
- "98": 432,
92
- "964": 418,
93
- "353": 234,
94
- "972": 425,
95
- "39": 222,
96
- "225": 612,
97
- "1-876": 338,
98
- "81": 440,
99
- "962": 416,
100
- "254": 639,
101
- "686": 545,
102
- "383": 221,
103
- "965": 419,
104
- "371": 247,
105
- "961": 415,
106
- "266": 651,
107
- "231": 618,
108
- "218": 606,
109
- "423": 295,
110
- "370": 246,
111
- "352": 270,
112
- "389": 294,
113
- "261": 646,
114
- "265": 650,
115
- "60": 502,
116
- "960": 472,
117
- "223": 610,
118
- "356": 278,
119
- "692": 551,
120
- "222": 609,
121
- "230": 617,
122
- "52": 334,
123
- "691": 550,
124
- "373": 259,
125
- "377": 212,
126
- "976": 428,
127
- "382": 297,
128
- "1-664": 354,
129
- "212": 604,
130
- "258": 643,
131
- "95": 414,
132
- "264": 649,
133
- "674": 536,
134
- "977": 429,
135
- "31": 204,
136
- "687": 546,
137
- "64": 530,
138
- "505": 710,
139
- "227": 614,
140
- "234": 621,
141
- "683": 555,
142
- "1-670": 534,
143
- "47": 242,
144
- "968": 226,
145
- "92": 410,
146
- "680": 552,
147
- "970": 423,
148
- "507": 714,
149
- "675": 537,
150
- "595": 744,
151
- "51": 716,
152
- "63": 515,
153
- "48": 260,
154
- "351": 268,
155
- "1-787, 1-939": 330,
156
- "974": 427,
157
- "242": 630,
158
- "40": 226,
159
- "7": 250,
160
- "250": 635,
161
- "290": 658,
162
- "1-869": 356,
163
- "1-758": 358,
164
- "508": 308,
165
- "1-784": 360,
166
- "685": 544,
167
- "378": 292,
168
- "239": 626,
169
- "966": 420,
170
- "221": 608,
171
- "381": 220,
172
- "248": 633,
173
- "232": 619,
174
- "65": 525,
175
- "386": 293,
176
- "677": 540,
177
- "27": 655,
178
- "211": 659,
179
- "34": 214,
180
- "94": 413,
181
- "249": 634,
182
- "597": 746,
183
- "268": 653,
184
- "46": 240,
185
- "41": 228,
186
- "963": 417,
187
- "886": 466,
188
- "992": 436,
189
- "255": 640,
190
- "66": 520,
191
- "228": 615,
192
- "690": 554,
193
- "676": 539,
194
- "1-868": 374,
195
- "216": 605,
196
- "90": 286,
197
- "993": 438,
198
- "1-649": 376,
199
- "688": 553,
200
- "1-340": 332,
201
- "256": 641,
202
- "380": 255,
203
- "971": 424,
204
- "44": 234,
205
- "1": 310,
206
- "598": 748,
207
- "998": 434,
208
- "678": 541,
209
- "379": 225,
210
- "58": 734,
211
- "681": 543,
212
- "967": 421,
213
- "260": 645,
214
- "263": 648,
215
- "670": 514,
216
- "245": 632,
217
- "856": 457,
218
- "599": 362,
219
- "850": 467,
220
- "262": 647,
221
- "82": 450,
222
- "84": 452
223
- }