Supernova11c commited on
Commit
1951814
ยท
verified ยท
1 Parent(s): 56eb440

Release Supernova NepaliFast V4 with extended Unicode vocabulary and benchmark

Browse files
Files changed (5) hide show
  1. LICENSE +5 -0
  2. README.md +67 -164
  3. benchmark.py +77 -0
  4. metadata.json +27 -19
  5. tokenizer.json +2777 -326
LICENSE ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Apache License 2.0
2
+
3
+ Copyright 2026 Supernova AI
4
+
5
+ Licensed under the Apache License, Version 2.0.
README.md CHANGED
@@ -1,206 +1,109 @@
1
  ---
 
2
  language:
3
  - ne
4
  - en
5
- license: apache-2.0
6
  tags:
7
  - tokenizer
8
  - nepali
9
- - nepali-nlp
10
- - natural-language-processing
11
- - cython
12
  - trie
 
13
  - tokenization
14
- - supernova
15
- - fast-tokenizer
16
- pipeline_tag: text-generation
17
  ---
18
 
19
- # ๐Ÿš€ Supernova V4 - NepaliFast Trie Tokenizer
20
 
21
- **A high-performance Nepali-focused tokenizer engineered by Supernova.**
22
 
23
- Supernova V4 is a custom tokenizer architecture built around a
24
- **longest-match Trie** and a **Cython-optimized encoding core**.
25
 
26
- The goal is simple:
 
 
 
 
 
 
 
 
 
 
27
 
28
- > Fast tokenization with strong Nepali vocabulary coverage.
29
 
30
- ## โšก Why Supernova V4?
 
 
31
 
32
- During development, several Nepali characters were identified as
33
- causing the previous V3 implementation to fall back to the V1
34
- tokenizer.
35
 
36
- Instead of relying on the slower fallback path, Supernova V4
37
- extends the V3 vocabulary with eight verified characters.
 
 
 
38
 
39
- ## ๐Ÿงฉ Added characters
 
 
 
40
 
41
- | ID | Character |
42
- |---:|:---|
43
- | 348 | เคˆ |
44
- | 349 | เค› |
45
- | 350 | เฅˆ |
46
- | 351 | เฅจ |
47
- | 352 | เฅฆ |
48
- | 353 | เฅฎ |
49
- | 354 | เฅฉ |
50
- | 355 | เคถ |
51
 
52
- The original V3 IDs are preserved.
 
53
 
54
- ## ๐Ÿง  Architecture
55
 
56
  ```text
57
- Input text
58
- โ†“
59
- Unicode characters
60
- โ†“
61
- Longest-match Trie
62
- โ†“
63
- Cython optimized traversal
64
- โ†“
65
- Token IDs
66
  ```
67
 
68
- The Trie searches for the longest valid token beginning at each
69
- character position.
70
-
71
- ## ๐Ÿ”ฅ Final benchmark
72
-
73
- **Benchmark corpus: 6,450,000 characters**
74
-
75
- | Metric | Supernova V4 | Tiktoken o200k_base | Relative |
76
- |---|---:|---:|---:|
77
- | Characters/sec | 12,837,384 | 10,083,356 | 1.27x |
78
- | Tokens/sec | 11,444,179 | 3,048,472 | 3.75x |
79
- | Tokens/character | 0.8915 | 0.3023 | - |
80
-
81
- ### ๐Ÿ† Result
82
-
83
- On this benchmark, Supernova V4 processed characters **1.27x faster**
84
- than Tiktoken.
85
-
86
- Measured output-token throughput was **3.75x higher**.
87
-
88
- These results are benchmark-specific and can vary with hardware,
89
- corpus composition, implementation, and workload.
90
-
91
- ## ๐Ÿ“Š Research comparison
92
-
93
- | Property | Supernova V4 | Tiktoken o200k_base |
94
- |---|---|---|
95
- | Primary focus | Nepali-focused | General-purpose |
96
- | Nepali vocabulary | Specialized | General |
97
- | English support | Yes | Yes |
98
- | Architecture | Longest-match Trie | BPE-based |
99
- | Cython core | Yes | No |
100
- | Custom vocabulary | Yes | No |
101
- | V4 ID space | 0-355 | Different vocabulary |
102
- | Nepali extension | Yes | No |
103
- | Character throughput | 12.84M/s | 10.08M/s |
104
- | Token throughput | 11.44M/s | 3.05M/s |
105
-
106
- ## ๐Ÿ”ฌ Research motivation
107
-
108
- Supernova V4 explores whether a compact, language-focused vocabulary
109
- combined with a native/Cython Trie can provide high-speed tokenization
110
- for Nepali workloads.
111
-
112
- Development included:
113
-
114
- 1. V3 Trie implementation
115
- 2. Python performance analysis
116
- 3. Cython acceleration
117
- 4. Unsupported-character analysis
118
- 5. Vocabulary coverage investigation
119
- 6. Eight-character vocabulary extension
120
- 7. Trie validation
121
- 8. Large-corpus benchmarking
122
- 9. Tiktoken comparison
123
-
124
- ## ๐ŸŒ Why Nepali?
125
 
126
- Nepali contains Unicode characters and combining marks that deserve
127
- careful vocabulary coverage.
128
-
129
- A Nepali-focused tokenizer can provide:
130
-
131
- - Better vocabulary targeting
132
- - Fewer unknown characters
133
- - Predictable tokenization
134
- - Fast longest-match lookup
135
- - Compact vocabulary control
136
- - Better control for Nepali-focused model research
137
-
138
- ## ๐Ÿ› ๏ธ Using tokenizer.json
139
-
140
- This repository uses the custom Supernova tokenizer JSON format.
141
-
142
- ```python
143
- import json
144
-
145
- with open('tokenizer.json', 'r', encoding='utf-8') as f:
146
- data = json.load(f)
147
-
148
- vocab = {
149
- int(token_id): token
150
- for token_id, token in data['vocab'].items()
151
- }
152
-
153
- print('Model:', data['model_name'])
154
- print('Version:', data['version'])
155
- print('Vocabulary:', data['vocab_size'])
156
  ```
157
 
158
- ## โšก Using the Cython encoder
159
-
160
- The high-performance Trie encoder is implemented as a separate
161
- Cython extension.
162
-
163
- ```python
164
- import json
165
- import trie_core
166
-
167
- with open('tokenizer.json', 'r', encoding='utf-8') as f:
168
- data = json.load(f)
169
 
170
- token_to_id = {
171
- token: int(token_id)
172
- for token_id, token in data['vocab'].items()
173
- if token != ''
174
- }
175
 
176
- trie = trie_core.build_trie(token_to_id)
177
 
178
- text = 'เคจเคฎเคธเฅเคคเฅ‡, เคจเฅ‡เคชเคพเคฒ เคธเฅเคจเฅเคฆเคฐ เค›เฅค'
179
-
180
- tokens = trie_core.encode_v3_fast(text, trie)
181
-
182
- print(tokens)
183
  ```
184
 
185
- ## โš ๏ธ Model compatibility
186
-
187
- This is a tokenizer release.
188
 
189
- The new IDs 348-355 require corresponding entries in a neural
190
- model's embedding/output layers before a model can safely consume
191
- those IDs.
192
 
193
- Do not use the new IDs with a model whose embedding vocabulary
194
- was trained only for the original vocabulary size.
 
 
 
 
 
195
 
196
- Tokenizer and model vocabulary dimensions must match.
197
 
198
- ## ๐Ÿ“œ License
199
 
200
- Apache License 2.0
201
 
202
- ## ๐ŸŒŸ Supernova
203
 
204
- Built as part of the Supernova AI research project.
205
 
206
- **Fast. Nepali-focused. Open. Experimental.**
 
1
  ---
2
+ license: apache-2.0
3
  language:
4
  - ne
5
  - en
 
6
  tags:
7
  - tokenizer
8
  - nepali
9
+ - devanagari
10
+ - unicode
 
11
  - trie
12
+ - nlp
13
  - tokenization
 
 
 
14
  ---
15
 
16
+ # Supernova NepaliFast V4
17
 
18
+ Supernova NepaliFast V4 is a Nepali-first, Unicode-aware Longest-Match Trie tokenizer.
19
 
20
+ ## Features
 
21
 
22
+ | Feature | Status |
23
+ |---|---|
24
+ | Nepali-first | PASS |
25
+ | Devanagari | PASS |
26
+ | English | PASS |
27
+ | Unicode | PASS |
28
+ | Emoji | PASS |
29
+ | Mathematical symbols | PASS |
30
+ | Multilingual text | PASS |
31
+ | Round-trip decoding | PASS |
32
+ | CPU-friendly | PASS |
33
 
34
+ ## Vocabulary
35
 
36
+ - Vocabulary size: 2,890
37
+ - ID range: 0 -> 2889
38
+ - ID integrity: PASS
39
 
40
+ ## Final Extreme Benchmark
 
 
41
 
42
+ - Documents: 9,120
43
+ - Characters: 8,597,880
44
+ - Unknown characters: 0
45
+ - Round-trip failures: 0
46
+ - Fallback documents: 0
47
 
48
+ | Engine | Characters/sec | Tokens/sec |
49
+ |---|---:|---:|
50
+ | Supernova V4 | 7,886,249 | 6,897,069 |
51
+ | Tiktoken o200k | 7,666,757 | 4,802,143 |
52
 
53
+ ### Relative performance
 
 
 
 
 
 
 
 
 
54
 
55
+ - Character throughput: 1.03x
56
+ - Token throughput: 1.44x
57
 
58
+ ## Tested Unicode
59
 
60
  ```text
61
+ โˆš2 โ‰ˆ 1.4142135623730951
62
+ โˆ‘(xแตขยฒ) โ†’ โˆž
63
+ ๐Ÿ‡ณ๐Ÿ‡ต ๐Ÿš€ ๐Ÿ”ฅ ๐Ÿค– ๐Ÿง  ๐Ÿ’ป ๐ŸŒ‹
64
+ ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿง‘โ€๐Ÿš€
65
+ โ€” โ€“ โ€ฆ ยซ ยป โ€œ โ€ โ€˜ โ€™ โ‰  โ‰ค โ‰ฅ ยฑ ร— รท โˆž
 
 
 
 
66
  ```
67
 
68
+ ## Nepali
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ ```text
71
+ เคจเคฎเคธเฅเคคเฅ‡ เคจเฅ‡เคชเคพเคฒ
72
+ เคฒเฅเคฎเฅเคฌเคฟเคจเฅ€ เคจเฅ‡เคชเคพเคฒเค•เฅ‹ เคชเฅเคฐเคธเคฟเคฆเฅเคง เคธเฅเคฅเคพเคจ เคนเฅ‹เฅค
73
+ เคธเค—เคฐเคฎเคพเคฅเคพ เคจเฅ‡เคชเคพเคฒเค•เฅ‹ เค—เฅŒเคฐเคต เคนเฅ‹เฅค
74
+ เคฒเคพเค– เค•เคฐเฅ‹เคก เค…เคฐเคฌ เค–เคฐเฅเคฌ เคนเคœเคพเคฐ
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  ```
76
 
77
+ ## Run on your own computer
 
 
 
 
 
 
 
 
 
 
78
 
79
+ Install Python 3.9 or newer.
 
 
 
 
80
 
81
+ Run the included benchmark:
82
 
83
+ ```bash
84
+ python benchmark.py
 
 
 
85
  ```
86
 
87
+ The repository contains the tokenizer vocabulary and a reference Python implementation for testing.
 
 
88
 
89
+ ## Research Focus
 
 
90
 
91
+ - Nepali-first tokenization
92
+ - Devanagari coverage
93
+ - Unicode robustness
94
+ - Deterministic tokenization
95
+ - Lossless round-trip decoding
96
+ - High token throughput
97
+ - CPU-friendly execution
98
 
99
+ Supernova NepaliFast V4 is a tokenizer, not a language model.
100
 
101
+ ## License
102
 
103
+ Apache License 2.0.
104
 
105
+ ## Supernova AI
106
 
107
+ Built as part of the Supernova AI tokenizer research project.
108
 
109
+ **Fast. Unicode-safe. Nepali-first.**
benchmark.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ from pathlib import Path
3
+
4
+ ROOT = Path(__file__).parent
5
+
6
+ with open(ROOT / "tokenizer.json", "r", encoding="utf-8") as f:
7
+ data = json.load(f)
8
+
9
+ id_to_token = {
10
+ int(k): v
11
+ for k, v in data["vocab"].items()
12
+ }
13
+
14
+ token_to_id = {
15
+ token: idx
16
+ for idx, token in id_to_token.items()
17
+ }
18
+
19
+ tokens = sorted(
20
+ token_to_id,
21
+ key=len,
22
+ reverse=True
23
+ )
24
+
25
+ def encode(text):
26
+ ids = []
27
+ i = 0
28
+
29
+ while i < len(text):
30
+ found = None
31
+
32
+ for token in tokens:
33
+ if text.startswith(token, i):
34
+ found = token
35
+ break
36
+
37
+ if found is None:
38
+ ids.append(-1)
39
+ i += 1
40
+ else:
41
+ ids.append(token_to_id[found])
42
+ i += len(found)
43
+
44
+ return ids
45
+
46
+ def decode(ids):
47
+ return ''.join(
48
+ id_to_token.get(i, '')
49
+ for i in ids
50
+ if i >= 0
51
+ )
52
+
53
+ tests = [
54
+ "เคจเคฎเคธเฅเคคเฅ‡ เคจเฅ‡เคชเคพเคฒ ๐Ÿ‡ณ๐Ÿ‡ต",
55
+ "เคฒเคพเค– เค•เคฐเฅ‹เคก เค…เคฐเคฌ เค–เคฐเฅเคฌ เคนเคœเคพเคฐ",
56
+ "เคจเฅ‡เคชเคพเคฒ เคธเฅเคจเฅเคฆเคฐ เคฆเฅ‡เคถ เคนเฅ‹เฅค",
57
+ "โˆš2 โ‰ˆ 1.4142135623730951",
58
+ "โˆ‘(xแตขยฒ) โ†’ โˆž",
59
+ "๐Ÿ‡ณ๐Ÿ‡ต ๐Ÿš€ ๐Ÿ”ฅ ๐Ÿค– ๐Ÿง  ๐Ÿ’ป ๐ŸŒ‹",
60
+ "เคจเคฎเคธเฅเคคเฅ‡ Hello ใ“ใ‚“ใซใกใฏ ์•ˆ๋…•ํ•˜์„ธ์š” ู…ุฑุญุจุง",
61
+ "เคจเฅ‡เคชเคพเคฒ Nepal ๆ—ฅๆœฌ Japan เคญเคพเคฐเคค India",
62
+ "โ€” โ€“ โ€ฆ ยซ ยป โ€œ โ€ โ€˜ โ€™ โ‰  โ‰ค โ‰ฅ ยฑ ร— รท โˆž"
63
+ ]
64
+
65
+ print("=" * 70)
66
+ print("SUPERNOVA NEPALIFAST V4 LOCAL TEST")
67
+ print("=" * 70)
68
+
69
+ for text in tests:
70
+ ids = encode(text)
71
+ unknown = sum(x == -1 for x in ids)
72
+ decoded = decode(ids)
73
+
74
+ print("\nText:", text)
75
+ print("Tokens:", len(ids))
76
+ print("Unknown:", unknown)
77
+ print("Roundtrip:", decoded == text)
metadata.json CHANGED
@@ -1,25 +1,33 @@
1
  {
2
- "name": "Supernova V4 - NepaliFast Trie",
3
  "version": "4.0.0",
 
 
4
  "architecture": "Cython Optimized Longest-Match Trie",
5
- "vocab_size": 356,
6
- "added_tokens": {
7
- "348": "เคˆ",
8
- "349": "เค›",
9
- "350": "เฅˆ",
10
- "351": "เฅจ",
11
- "352": "เฅฆ",
12
- "353": "เฅฎ",
13
- "354": "เฅฉ",
14
- "355": "เคถ"
 
 
15
  },
16
- "benchmark": {
17
- "corpus_characters": 6450000,
18
- "supernova_chars_per_second": 12837384,
19
- "tiktoken_chars_per_second": 10083356,
20
- "character_speedup": 1.27,
21
- "supernova_tokens_per_second": 11444179,
22
- "tiktoken_tokens_per_second": 3048472,
23
- "token_throughput_ratio": 3.75
 
 
 
 
24
  }
25
  }
 
1
  {
2
+ "name": "Supernova NepaliFast V4",
3
  "version": "4.0.0",
4
+ "repository": "Supernova11c/Supernova-NepaliFast-V4",
5
+ "type": "model",
6
  "architecture": "Cython Optimized Longest-Match Trie",
7
+ "vocabulary_size": 2890,
8
+ "languages": [
9
+ "Nepali",
10
+ "English"
11
+ ],
12
+ "coverage": {
13
+ "unicode": true,
14
+ "devanagari": true,
15
+ "latin": true,
16
+ "emoji": true,
17
+ "mathematics": true,
18
+ "multilingual": true
19
  },
20
+ "extreme_benchmark": {
21
+ "documents": 9120,
22
+ "characters": 8597880,
23
+ "unknown_characters": 0,
24
+ "roundtrip_failures": 0,
25
+ "fallback_documents": 0,
26
+ "supernova_chars_per_second": 7886249,
27
+ "supernova_tokens_per_second": 6897069,
28
+ "tiktoken_chars_per_second": 7666757,
29
+ "tiktoken_tokens_per_second": 4802143,
30
+ "character_speed_ratio": 1.03,
31
+ "token_throughput_ratio": 1.44
32
  }
33
  }
tokenizer.json CHANGED
@@ -1,12 +1,9 @@
1
  {
2
- "model_name": "Supernova V4 - NepaliFast Trie",
3
  "version": "4.0.0",
4
  "architecture": "Cython Optimized Longest-Match Trie",
5
- "language": [
6
- "Nepali",
7
- "English"
8
- ],
9
- "vocab_size": 356,
10
  "vocab": {
11
  "0": "\u0000",
12
  "1": "\u0001",
@@ -137,326 +134,2780 @@
137
  "126": "~",
138
  "127": "",
139
  "128": "",
140
- "129": "",
141
- "130": "",
142
- "131": "",
143
- "132": "",
144
- "133": "",
145
- "134": "",
146
- "135": "",
147
- "136": "",
148
- "137": "",
149
- "138": "",
150
- "139": "",
151
- "140": "",
152
- "141": "",
153
- "142": "",
154
- "143": "",
155
- "144": "",
156
- "145": "",
157
- "146": "",
158
- "147": "",
159
- "148": "",
160
- "149": "",
161
- "150": "",
162
- "151": "",
163
- "152": "",
164
- "153": "",
165
- "154": "",
166
- "155": "",
167
- "156": "",
168
- "157": "",
169
- "158": "",
170
- "159": "",
171
- "160": "",
172
- "161": "",
173
- "162": "",
174
- "163": "",
175
- "164": "",
176
- "165": "",
177
- "166": "",
178
- "167": "",
179
- "168": "",
180
- "169": "",
181
- "170": "",
182
- "171": "",
183
- "172": "",
184
- "173": "",
185
- "174": "",
186
- "175": "",
187
- "176": "",
188
- "177": "",
189
- "178": "",
190
- "179": "",
191
- "180": "",
192
- "181": "",
193
- "182": "",
194
- "183": "",
195
- "184": "",
196
- "185": "",
197
- "186": "",
198
- "187": "",
199
- "188": "",
200
- "189": "",
201
- "190": "",
202
- "191": "",
203
- "192": "",
204
- "193": "",
205
- "194": "",
206
- "195": "",
207
- "196": "",
208
- "197": "",
209
- "198": "",
210
- "199": "",
211
- "200": "",
212
- "201": "",
213
- "202": "",
214
- "203": "",
215
- "204": "",
216
- "205": "",
217
- "206": "",
218
- "207": "",
219
- "208": "",
220
- "209": "",
221
- "210": "",
222
- "211": "",
223
- "212": "",
224
- "213": "",
225
- "214": "",
226
- "215": "",
227
- "216": "",
228
- "217": "",
229
- "218": "",
230
- "219": "",
231
- "220": "",
232
- "221": "",
233
- "222": "",
234
- "223": "",
235
- "224": "",
236
- "225": "",
237
- "226": "",
238
- "227": "",
239
- "228": "",
240
- "229": "",
241
- "230": "",
242
- "231": "",
243
- "232": "",
244
- "233": "",
245
- "234": "",
246
- "235": "",
247
- "236": "",
248
- "237": "",
249
- "238": "",
250
- "239": "",
251
- "240": "",
252
- "241": "",
253
- "242": "",
254
- "243": "",
255
- "244": "",
256
- "245": "",
257
- "246": "",
258
- "247": "",
259
- "248": "",
260
- "249": "",
261
- "250": "",
262
- "251": "",
263
- "252": "",
264
- "253": "",
265
- "254": "",
266
- "255": "",
267
- "256": "",
268
- "257": "",
269
- "258": "เคพ",
270
- "259": "เคจ",
271
- "260": "เฅ‡",
272
- "261": "เฅ‡",
273
- "262": "เคพ",
274
- "263": "เฅ",
275
- "264": "เคธ",
276
- "265": "เคฐ",
277
- "266": "เค•",
278
- "267": "เคจเฅ‡",
279
- "268": "เคจเฅ‡เคช",
280
- "269": "เคจเฅ‡เคชเคพ",
281
- "270": "เคจเฅ‡เคชเคพเคฒ",
282
- "271": "เคฆ",
283
- "272": "เค—",
284
- "273": "เฅ‹",
285
- "274": "เฅค",
286
- "275": "เค‚",
287
- "276": "เฅ",
288
- "277": "เคฟ",
289
- "278": "เฅ€",
290
- "279": "เคค",
291
- "280": "เคคเคฟ",
292
- "281": "เค—เคฐ",
293
- "282": "เค",
294
- "283": "เคเค•",
295
- "284": "เคธเฅ",
296
- "285": "เคธเฅเคจ",
297
- "286": "เคธเฅเคจเฅ",
298
- "287": "เคธเฅเคจเฅเคฆ",
299
- "288": "เคธเฅเคจเฅเคฆเคฐ",
300
- "289": "เคฆเฅ‡",
301
- "290": "เคฆเฅ‡เคถ",
302
- "291": "เคน",
303
- "292": "เคนเฅ‹",
304
- "293": "เคนเฅ‹เฅค",
305
- "294": "เคจเฅ‡เคชเคพเคฒเฅ€",
306
- "295": "เคญ",
307
- "296": "เคญเคพ",
308
- "297": "เคญเคพเคท",
309
- "298": "เคญเคพเคทเคพ",
310
- "299": "เคธเค‚",
311
- "300": "เคธเค‚เคธ",
312
- "301": "เคธเค‚เคธเฅ",
313
- "302": "เคธเค‚เคธเฅเค•",
314
- "303": "เคธเค‚เคธเฅเค•",
315
- "304": "เคธเค‚เคธเฅเค•เฅƒ",
316
- "305": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟ",
317
- "306": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟเค•",
318
- "307": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟเค•เฅ‹",
319
- "308": "เคœ",
320
- "309": "เคœเค—",
321
- "310": "เคœเค—เฅ‡",
322
- "311": "เคœเค—เฅ‡เคฐ",
323
- "312": "เคœเค—เฅ‡เคฐเฅ",
324
- "313": "เคœเค—เฅ‡เคฐเฅเคจ",
325
- "314": "เคœเค—เฅ‡เคฐเฅเคจเคพ",
326
- "315": "เค—เคฐ",
327
- "316": "เค—เคฐเฅŒ",
328
- "317": "เค—เคฐเฅŒเค‚",
329
- "318": "เค—เคฐเฅŒเค‚เฅค",
330
- "319": "เค—เคฐเฅŒเค‚เฅคเคจเฅ‡เคชเคพเคฒ",
331
- "320": "เคฎ",
332
- "321": "เคพเคฅ",
333
- "322": "เฅ",
334
- "323": "เคช",
335
- "324": "เคธเค—เคฐ",
336
- "325": "เคธเค—เคฐเคฎ",
337
- "326": "เคธเค—เคฐเคฎเคพเคฅ",
338
- "327": "เคธเค—เคฐเคฎเคพเคฅเคพ",
339
- "328": "เคฒ",
340
- "329": "เคฒเฅ",
341
- "330": "เคฒเฅเคฎ",
342
- "331": "เคฒเฅเคฎเฅ",
343
- "332": "เคฒเฅเคฎเฅเคฌ",
344
- "333": "เคฒเฅเคฎเฅเคฌเคฟ",
345
- "334": "เคฒเฅเคฎเฅเคฌเคฟเคจ",
346
- "335": "เคฒเฅเคฎเฅเคฌเคฟเคจเฅ€",
347
- "336": "เคช",
348
- "337": "เคชเคถ",
349
- "338": "เคชเคถเฅ",
350
- "339": "เคชเคถเฅเคช",
351
- "340": "เคชเคถเฅเคชเคคเคฟ",
352
- "341": "เคชเคถเฅเคชเคคเคฟเคจ",
353
- "342": "เคชเคถเฅเคชเคคเคฟเคจเคพเคฅ",
354
- "343": "เคฌ",
355
- "344": "เคฌเฅ",
356
- "345": "เคฌเฅเคฆ",
357
- "346": "เคฌเฅเคฆเฅ",
358
- "347": "เคฌเฅเคฆเฅเคง",
359
- "348": "เคˆ",
360
- "349": "เค›",
361
- "350": "เฅˆ",
362
- "351": "เฅจ",
363
- "352": "เฅฆ",
364
- "353": "เฅฎ",
365
- "354": "เฅฉ",
366
- "355": "เคถ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  },
368
- "merges": {
369
- "224,164": 256,
370
- "224,165": 257,
371
- "256,190": 258,
372
- "256,168": 259,
373
- "257,135": 260,
374
- "260,256": 261,
375
- "258,256": 262,
376
- "257,141": 263,
377
- "256,184": 264,
378
- "256,176": 265,
379
- "256,149": 266,
380
- "259,261": 267,
381
- "267,170": 268,
382
- "268,262": 269,
383
- "269,178": 270,
384
- "256,166": 271,
385
- "256,151": 272,
386
- "257,139": 273,
387
- "257,164": 274,
388
- "256,130": 275,
389
- "257,129": 276,
390
- "256,191": 277,
391
- "257,128": 278,
392
- "256,164": 279,
393
- "279,277": 280,
394
- "272,265": 281,
395
- "256,143": 282,
396
- "282,266": 283,
397
- "264,276": 284,
398
- "284,259": 285,
399
- "285,263": 286,
400
- "286,271": 287,
401
- "287,265": 288,
402
- "271,261": 289,
403
- "289,182": 290,
404
- "256,185": 291,
405
- "291,273": 292,
406
- "292,274": 293,
407
- "270,278": 294,
408
- "256,173": 295,
409
- "295,262": 296,
410
- "296,183": 297,
411
- "297,258": 298,
412
- "264,275": 299,
413
- "299,264": 300,
414
- "300,263": 301,
415
- "301,266": 302,
416
- "302,257": 303,
417
- "303,131": 304,
418
- "304,280": 305,
419
- "305,266": 306,
420
- "306,273": 307,
421
- "256,156": 308,
422
- "308,272": 309,
423
- "309,261": 310,
424
- "310,176": 311,
425
- "311,263": 312,
426
- "312,259": 313,
427
- "313,258": 314,
428
- "281,257": 315,
429
- "315,140": 316,
430
- "316,275": 317,
431
- "317,274": 318,
432
- "318,270": 319,
433
- "256,174": 320,
434
- "262,165": 321,
435
- "263,256": 322,
436
- "256,170": 323,
437
- "264,281": 324,
438
- "324,320": 325,
439
- "325,321": 326,
440
- "326,258": 327,
441
- "256,178": 328,
442
- "328,276": 329,
443
- "329,320": 330,
444
- "330,322": 331,
445
- "331,172": 332,
446
- "332,277": 333,
447
- "333,259": 334,
448
- "334,278": 335,
449
- "323,256": 336,
450
- "336,182": 337,
451
- "337,276": 338,
452
- "338,323": 339,
453
- "339,280": 340,
454
- "340,259": 341,
455
- "341,321": 342,
456
- "256,172": 343,
457
- "343,276": 344,
458
- "344,271": 345,
459
- "345,322": 346,
460
- "346,167": 347
461
  }
462
  }
 
1
  {
2
+ "model_name": "Supernova NepaliFast V4",
3
  "version": "4.0.0",
4
  "architecture": "Cython Optimized Longest-Match Trie",
5
+ "tokenizer_type": "supernova_trie",
6
+ "vocab_size": 2890,
 
 
 
7
  "vocab": {
8
  "0": "\u0000",
9
  "1": "\u0001",
 
134
  "126": "~",
135
  "127": "",
136
  "128": "",
137
+ "129": "เคจ",
138
+ "130": "เฅ‡",
139
+ "131": "เคพ",
140
+ "132": "เคธ",
141
+ "133": "เคฐ",
142
+ "134": "๏ฟฝ๏ฟฝ๏ฟฝ",
143
+ "135": "เคจเฅ‡",
144
+ "136": "เคจเฅ‡เคช",
145
+ "137": "เคจเฅ‡เคชเคพ",
146
+ "138": "เคจเฅ‡เคชเคพเคฒ",
147
+ "139": "เคฆ",
148
+ "140": "เค—",
149
+ "141": "เฅ‹",
150
+ "142": "เฅค",
151
+ "143": "เค‚",
152
+ "144": "เฅ",
153
+ "145": "เคฟ",
154
+ "146": "เฅ€",
155
+ "147": "เคค",
156
+ "148": "เคคเคฟ",
157
+ "149": "เค",
158
+ "150": "เคเค•",
159
+ "151": "เคธเฅ",
160
+ "152": "เคธเฅเคจ",
161
+ "153": "เคธเฅเคจเฅ",
162
+ "154": "เคธเฅเคจเฅเคฆ",
163
+ "155": "เคธเฅเคจเฅเคฆเคฐ",
164
+ "156": "เคฆเฅ‡",
165
+ "157": "เคฆเฅ‡เคถ",
166
+ "158": "เคน",
167
+ "159": "เคนเฅ‹",
168
+ "160": "เคนเฅ‹เฅค",
169
+ "161": "เคจเฅ‡เคชเคพเคฒเฅ€",
170
+ "162": "เคญ",
171
+ "163": "เคญเคพ",
172
+ "164": "เคญเคพเคท",
173
+ "165": "เคญเคพเคทเคพ",
174
+ "166": "เคธเค‚",
175
+ "167": "เคธเค‚เคธ",
176
+ "168": "เคธเค‚เคธเฅ",
177
+ "169": "เคธเค‚เคธเฅเค•",
178
+ "170": "เคธเค‚เคธเฅเค•เฅƒ",
179
+ "171": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟ",
180
+ "172": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟเค•",
181
+ "173": "เคธเค‚เคธเฅเค•เฅƒเคคเคฟเค•เฅ‹",
182
+ "174": "เคœ",
183
+ "175": "เคœเค—",
184
+ "176": "เคœเค—เฅ‡",
185
+ "177": "เคœเค—เฅ‡เคฐ",
186
+ "178": "เคœเค—เฅ‡เคฐเฅ",
187
+ "179": "เคœเค—เฅ‡เคฐเฅเคจ",
188
+ "180": "เคœเค—เฅ‡เคฐเฅเคจเคพ",
189
+ "181": "เค—เคฐ",
190
+ "182": "เค—เคฐเฅŒ",
191
+ "183": "เค—เคฐเฅŒเค‚",
192
+ "184": "เค—เคฐเฅŒเค‚เฅค",
193
+ "185": "เค—เคฐเฅŒเค‚เฅคเคจเฅ‡เคชเคพเคฒ",
194
+ "186": "เคฎ",
195
+ "187": "เคพเคฅ",
196
+ "188": "เฅ",
197
+ "189": "เคธเค—เคฐ",
198
+ "190": "เคธเค—เคฐเคฎ",
199
+ "191": "เคธเค—เคฐเคฎเคพเคฅ",
200
+ "192": "เคธเค—เคฐเคฎเคพเคฅเคพ",
201
+ "193": "เคฒ",
202
+ "194": "เคฒเฅ",
203
+ "195": "เคฒเฅเคฎ",
204
+ "196": "เคฒเฅเคฎเฅ",
205
+ "197": "เคฒเฅเคฎเฅเคฌ",
206
+ "198": "เคฒเฅเคฎเฅเคฌเคฟ",
207
+ "199": "เคฒเฅเคฎเฅเคฌเคฟเคจ",
208
+ "200": "เคฒเฅเคฎเฅเคฌเคฟเคจเฅ€",
209
+ "201": "เคช",
210
+ "202": "เคชเคถ",
211
+ "203": "เคชเคถเฅ",
212
+ "204": "เคชเคถเฅเคช",
213
+ "205": "เคชเคถเฅเคชเคคเคฟ",
214
+ "206": "เคชเคถเฅเคชเคคเคฟเคจ",
215
+ "207": "เคชเคถเฅเคชเคคเคฟเคจเคพเคฅ",
216
+ "208": "เคฌ",
217
+ "209": "เคฌเฅ",
218
+ "210": "เคฌเฅเคฆ",
219
+ "211": "เคฌเฅเคฆเฅ",
220
+ "212": "เคฌเฅเคฆเฅเคง",
221
+ "213": "[PAD]",
222
+ "214": "[UNK]",
223
+ "215": "[BOS]",
224
+ "216": "[EOS]",
225
+ "217": "ยก",
226
+ "218": "ยข",
227
+ "219": "ยฃ",
228
+ "220": "ยค",
229
+ "221": "ยฅ",
230
+ "222": "ยฆ",
231
+ "223": "ยง",
232
+ "224": "ยจ",
233
+ "225": "ยฉ",
234
+ "226": "ยช",
235
+ "227": "ยซ",
236
+ "228": "ยฌ",
237
+ "229": "ยฎ",
238
+ "230": "ยฏ",
239
+ "231": "ยฐ",
240
+ "232": "ยฑ",
241
+ "233": "ยฒ",
242
+ "234": "ยณ",
243
+ "235": "ยด",
244
+ "236": "ยต",
245
+ "237": "ยถ",
246
+ "238": "ยท",
247
+ "239": "ยธ",
248
+ "240": "ยน",
249
+ "241": "ยบ",
250
+ "242": "ยป",
251
+ "243": "ยผ",
252
+ "244": "ยฝ",
253
+ "245": "ยพ",
254
+ "246": "ยฟ",
255
+ "247": "ร€",
256
+ "248": "ร",
257
+ "249": "ร‚",
258
+ "250": "รƒ",
259
+ "251": "ร„",
260
+ "252": "ร…",
261
+ "253": "ร†",
262
+ "254": "ร‡",
263
+ "255": "รˆ",
264
+ "256": "ร‰",
265
+ "257": "รŠ",
266
+ "258": "ร‹",
267
+ "259": "รŒ",
268
+ "260": "ร",
269
+ "261": "รŽ",
270
+ "262": "ร",
271
+ "263": "ร",
272
+ "264": "ร‘",
273
+ "265": "ร’",
274
+ "266": "ร“",
275
+ "267": "ร”",
276
+ "268": "ร•",
277
+ "269": "ร–",
278
+ "270": "ร—",
279
+ "271": "ร˜",
280
+ "272": "ร™",
281
+ "273": "รš",
282
+ "274": "ร›",
283
+ "275": "รœ",
284
+ "276": "ร",
285
+ "277": "รž",
286
+ "278": "รŸ",
287
+ "279": "ร ",
288
+ "280": "รก",
289
+ "281": "รข",
290
+ "282": "รฃ",
291
+ "283": "รค",
292
+ "284": "รฅ",
293
+ "285": "รฆ",
294
+ "286": "รง",
295
+ "287": "รจ",
296
+ "288": "รฉ",
297
+ "289": "รช",
298
+ "290": "รซ",
299
+ "291": "รฌ",
300
+ "292": "รญ",
301
+ "293": "รฎ",
302
+ "294": "รฏ",
303
+ "295": "รฐ",
304
+ "296": "รฑ",
305
+ "297": "รฒ",
306
+ "298": "รณ",
307
+ "299": "รด",
308
+ "300": "รต",
309
+ "301": "รถ",
310
+ "302": "รท",
311
+ "303": "รธ",
312
+ "304": "รน",
313
+ "305": "รบ",
314
+ "306": "รป",
315
+ "307": "รผ",
316
+ "308": "รฝ",
317
+ "309": "รพ",
318
+ "310": "รฟ",
319
+ "311": "ฤ€",
320
+ "312": "ฤ",
321
+ "313": "ฤ‚",
322
+ "314": "ฤƒ",
323
+ "315": "ฤ„",
324
+ "316": "ฤ…",
325
+ "317": "ฤ†",
326
+ "318": "ฤ‡",
327
+ "319": "ฤˆ",
328
+ "320": "ฤ‰",
329
+ "321": "ฤŠ",
330
+ "322": "ฤ‹",
331
+ "323": "ฤŒ",
332
+ "324": "ฤ",
333
+ "325": "ฤŽ",
334
+ "326": "ฤ",
335
+ "327": "ฤ",
336
+ "328": "ฤ‘",
337
+ "329": "ฤ’",
338
+ "330": "ฤ“",
339
+ "331": "ฤ”",
340
+ "332": "ฤ•",
341
+ "333": "ฤ–",
342
+ "334": "ฤ—",
343
+ "335": "ฤ˜",
344
+ "336": "ฤ™",
345
+ "337": "ฤš",
346
+ "338": "ฤ›",
347
+ "339": "ฤœ",
348
+ "340": "ฤ",
349
+ "341": "ฤž",
350
+ "342": "ฤŸ",
351
+ "343": "ฤ ",
352
+ "344": "ฤก",
353
+ "345": "ฤข",
354
+ "346": "ฤฃ",
355
+ "347": "ฤค",
356
+ "348": "ฤฅ",
357
+ "349": "ฤฆ",
358
+ "350": "ฤง",
359
+ "351": "ฤจ",
360
+ "352": "ฤฉ",
361
+ "353": "ฤช",
362
+ "354": "ฤซ",
363
+ "355": "ฤฌ",
364
+ "356": "ฤญ",
365
+ "357": "ฤฎ",
366
+ "358": "ฤฏ",
367
+ "359": "ฤฐ",
368
+ "360": "ฤฑ",
369
+ "361": "ฤฒ",
370
+ "362": "ฤณ",
371
+ "363": "ฤด",
372
+ "364": "ฤต",
373
+ "365": "ฤถ",
374
+ "366": "ฤท",
375
+ "367": "ฤธ",
376
+ "368": "ฤน",
377
+ "369": "ฤบ",
378
+ "370": "ฤป",
379
+ "371": "ฤผ",
380
+ "372": "ฤฝ",
381
+ "373": "ฤพ",
382
+ "374": "ฤฟ",
383
+ "375": "ล€",
384
+ "376": "ล",
385
+ "377": "ล‚",
386
+ "378": "ลƒ",
387
+ "379": "ร ยค",
388
+ "380": "ร ยฅ",
389
+ "381": "ฤ ร ยค",
390
+ "382": "ร ยคยพ",
391
+ "383": "ร ยฅฤฏ",
392
+ "384": "ร ยคยจ",
393
+ "385": "ร ยฅฤฃ",
394
+ "386": "ร ยคยฐ",
395
+ "387": "ร ยฅฤญ",
396
+ "388": "ร ยคยฟ",
397
+ "389": "ฤ ร ยคยธ",
398
+ "390": "ร ยคฤท",
399
+ "391": "ร ยฅฤฉ",
400
+ "392": "ร ยคยฎ",
401
+ "393": "ฤ ร ยคฤท",
402
+ "394": "ร ยคยฏ",
403
+ "395": "ร ยคฤฝ",
404
+ "396": "ร ยคยฒ",
405
+ "397": "ฤ ร ยคยฎ",
406
+ "398": "ร ยคยช",
407
+ "399": "ร ยคยง",
408
+ "400": "ร ยฅยค",
409
+ "401": "ร ยคยค",
410
+ "402": "ร ยคฤช",
411
+ "403": "ร ยฅฤช",
412
+ "404": "ร ยคยฆ",
413
+ "405": "ฤ ร ยคลƒ",
414
+ "406": "ร ยคยธ",
415
+ "407": "ร ยฅฤข",
416
+ "408": "ฤ ร ยคยน",
417
+ "409": "ฤ ร ยคลƒร ยคยจ",
418
+ "410": "ฤ ร ยคยฌ",
419
+ "411": "ร ยคล",
420
+ "412": "ฤ ร ยคฤน",
421
+ "413": "ร ยคฤซ",
422
+ "414": "ฤ ร ยคยฐ",
423
+ "415": "ร ยคยน",
424
+ "416": "er",
425
+ "417": "ฤ ร ยคยค",
426
+ "418": "ฤ ร ยคฤนร ยคยฐ",
427
+ "419": "ร ยคฤฉ",
428
+ "420": "ร ยคฤฟ",
429
+ "421": "ร ยคฤฌ",
430
+ "422": "ฤ ร ยคยช",
431
+ "423": "ร ยฅฤฅ",
432
+ "424": "ร ยคยชร ยคยฏ",
433
+ "425": "รขฤข",
434
+ "426": "ร ยคฤฉร ยคยฆ",
435
+ "427": "ร ยคยต",
436
+ "428": "รขฤขฤถ",
437
+ "429": "ฤฑร ยคฤซ",
438
+ "430": "ฤฑร ยคฤซร ยคล",
439
+ "431": "ฤ ร ยคยต",
440
+ "432": "ร ยคฤฃ",
441
+ "433": "ร ยคยท",
442
+ "434": "ฤ ร ยคยฎร ยคยฒ",
443
+ "435": "on",
444
+ "436": "ร ยฅฤฃร ยฅยค",
445
+ "437": "en",
446
+ "438": "ร ยคยถ",
447
+ "439": "ฤ ร ยคยจ",
448
+ "440": "at",
449
+ "441": "ฤ ร ยคฤง",
450
+ "442": "ฤ ร ยคฤพ",
451
+ "443": "ร ยฅฤค",
452
+ "444": "ฤ S",
453
+ "445": "ฤ ร ยคฤฑร ยคฤซร ยคล",
454
+ "446": "ร ยคฤฑ",
455
+ "447": "ร ยคยฅ",
456
+ "448": "ฤ ร ยคยธร ยคฤท",
457
+ "449": "ร ยคฤค",
458
+ "450": "per",
459
+ "451": "ร ยคยฌ",
460
+ "452": "ic",
461
+ "453": "ฤ ร ยคยฆ",
462
+ "454": "ฤ ร ยคฤฝ",
463
+ "455": "ร ยคยฎร ยคยฒ",
464
+ "456": "ฤ c",
465
+ "457": "ฤ ร ยคฤซ",
466
+ "458": "ฤ ร ยคยธร ยคยฎ",
467
+ "459": "no",
468
+ "460": "ร ยฅฤฎ",
469
+ "461": "va",
470
+ "462": "uper",
471
+ "463": "nova",
472
+ "464": "upernova",
473
+ "465": "ร ยคฤน",
474
+ "466": "ร ยคยฃ",
475
+ "467": "ฤ ร ยคฤจ",
476
+ "468": "ฤ s",
477
+ "469": "ion",
478
+ "470": "ร ยคฤพ",
479
+ "471": "ร ยคลƒ",
480
+ "472": "ฤ Supernova",
481
+ "473": "es",
482
+ "474": "ร ยคฤฑร ยคฤซร ยคล",
483
+ "475": "ฤ C",
484
+ "476": "ฤ f",
485
+ "477": "ฤ d",
486
+ "478": "ร ยฅฤญร ยฅยค",
487
+ "479": "ร ยคฤฃร ยฅยค",
488
+ "480": "om",
489
+ "481": "he",
490
+ "482": "or",
491
+ "483": "it",
492
+ "484": "al",
493
+ "485": "ฤ ร ยคยฒ",
494
+ "486": "in",
495
+ "487": "ฤ ร ยคยคร ยคยช",
496
+ "488": "ร ยคฤผ",
497
+ "489": "ร ยฅฤฎ?",
498
+ "490": "re",
499
+ "491": "un",
500
+ "492": "ร ยคฤธ",
501
+ "493": "ฤ ร ยคฤผ",
502
+ "494": "ep",
503
+ "495": "ฤ p",
504
+ "496": "ร ยคยฏร ยคฤท",
505
+ "497": "ร ยคยตร ยคยถ",
506
+ "498": "ien",
507
+ "499": "ฤ ร ยคฤงร ยคยจ",
508
+ "500": "ut",
509
+ "501": "omp",
510
+ "502": "ฤ Comp",
511
+ "503": "ฤ ร ยคลƒร ยคฤฑ",
512
+ "504": "ฤ ร ยคยชร ยคยฐ",
513
+ "505": "ฤ A",
514
+ "506": "ity",
515
+ "507": "ฤ ร ยคฤทร ยคยธ",
516
+ "508": "ร ยคฤซร ยคยจ",
517
+ "509": "ร ยคยฐร ยคยฎ",
518
+ "510": "ฤ ร ยคยคร ยคยฐ",
519
+ "511": "ฤ ร ยคฤพร ยคยจ",
520
+ "512": "ac",
521
+ "513": "mat",
522
+ "514": "ร ยคยชร ยคยท",
523
+ "515": "ฤ AI",
524
+ "516": "ent",
525
+ "517": "ฤ ร ยคฤซร ยคยค",
526
+ "518": "ฤ ร ยคยธร ยคยน",
527
+ "519": "ul",
528
+ "520": "ร ยคยฐร ยคฤท",
529
+ "521": "ฤ con",
530
+ "522": "ร ยฅฤญ?",
531
+ "523": "ing",
532
+ "524": "ฤ ร ยคยฌร ยคยค",
533
+ "525": "ฤ M",
534
+ "526": "ce",
535
+ "527": "oun",
536
+ "528": "ฤ ร ยคยง",
537
+ "529": "as",
538
+ "530": "athe",
539
+ "531": "ร ยคยชร ยคยฎ",
540
+ "532": "an",
541
+ "533": "ics",
542
+ "534": "uter",
543
+ "535": "matics",
544
+ "536": "ฤ Mathe",
545
+ "537": "ฤ Mathematics",
546
+ "538": "am",
547
+ "539": "ฤ Computer",
548
+ "540": "ร ยฅฤฃ,",
549
+ "541": "ร ยคยฏร ยคยธ",
550
+ "542": "ation",
551
+ "543": "ound",
552
+ "544": "ro",
553
+ "545": "ฤ ร ยคฤธ",
554
+ "546": "ร ยคลƒร ยคฤฑ",
555
+ "547": "ร ยคยตร ยคฤท",
556
+ "548": "ฤ found",
557
+ "549": "ฤ T",
558
+ "550": "ience",
559
+ "551": "ฤ founder",
560
+ "552": "cience",
561
+ "553": "ฤ Te",
562
+ "554": "ร ยคยคร ยคยฐ",
563
+ "555": "ฤ ร ยคยฎร ยคยจ",
564
+ "556": "ฤ Science",
565
+ "557": "ร ยคฤฉร ยคยจ",
566
+ "558": "ฤ ร ยคฤนร ยคยฒ",
567
+ "559": "ฤ ร ยคยชร ยคยจ",
568
+ "560": "ur",
569
+ "561": "ass",
570
+ "562": "ฤ ร ยคฤจร ยคยง",
571
+ "563": "ve",
572
+ "564": "ร ยคยซ",
573
+ "565": "ional",
574
+ "566": "tep",
575
+ "567": "ฤ ร ยคยถ",
576
+ "568": "ec",
577
+ "569": "ร ยคยนร ยคยจ",
578
+ "570": "ed",
579
+ "571": "ฤ de",
580
+ "572": "ess",
581
+ "573": "ร ยคยฌร ยคยจ",
582
+ "574": "ร ยคยจร ยคฤท",
583
+ "575": "ฤ ร ยคยธร ยคยนร ยคยฏ",
584
+ "576": "ment",
585
+ "577": "ar",
586
+ "578": "ฤ ร ยคฤนร ยคยฒร ยคยค",
587
+ "579": "ire",
588
+ "580": "bl",
589
+ "581": "ฤ ร ยคฤจร ยคยซ",
590
+ "582": "ฤ ร ยคฤงร ยคยฐ",
591
+ "583": "lo",
592
+ "584": "ฤ ร ยคฤจร ยคยตร ยคยถ",
593
+ "585": "ฤ ร ยคฤทร ยคยฎ",
594
+ "586": "ร ยคยจร ยคยช",
595
+ "587": "ฤ step",
596
+ "588": "ubl",
597
+ "589": "ublic",
598
+ "590": "lass",
599
+ "591": "ฤ 9",
600
+ "592": "ฤ Class",
601
+ "593": "ร ยคยฐร ยคยถ",
602
+ "594": "ublicity",
603
+ "595": "ร ยคยทร ยคยฏ",
604
+ "596": "ฤ fr",
605
+ "597": "ฤ P",
606
+ "598": "ฤ pro",
607
+ "599": "ฤ ร ยคยธร ยคยค",
608
+ "600": "ฤ ร ยคยชร ยคยน",
609
+ "601": "iend",
610
+ "602": "ฤ friend",
611
+ "603": "ร ยคยชร ยคยฐ",
612
+ "604": "ร ยคยชร ยคยจ",
613
+ "605": "ication",
614
+ "606": "ร ยฅฤฎร ยคฤฃร ยฅยค",
615
+ "607": "ฤ ร ยคยฅ",
616
+ "608": "ฤ ร ยคยจร ยคลƒร ยคฤฑ",
617
+ "609": "ฤฑร ยคฤท",
618
+ "610": "ฤ ร ยคฤฑร ยคฤท",
619
+ "611": "ร ยคยฏร ยคยต",
620
+ "612": "ร ยคยชร ยคฤท",
621
+ "613": "ly",
622
+ "614": "ฤ ร ยคยจร ยคลƒร ยคฤฑร ยคยฎ",
623
+ "615": "ร ยคยฏร ยคยตร ยคยน",
624
+ "616": "ร ยคลƒร ยคยต",
625
+ "617": "ฤ t",
626
+ "618": "ge",
627
+ "619": "ฤ ร ยคฤพร ยคยธ",
628
+ "620": "ct",
629
+ "621": "ฤ ร ยคยธร ยคยฌ",
630
+ "622": "ฤ o",
631
+ "623": "ฤฉร ยคยฎ",
632
+ "624": "ฤ ร ยคฤฉร ยคยฎ",
633
+ "625": "ร ยคยจร ยคยฆ",
634
+ "626": "ฤ sec",
635
+ "627": "ร ยคลƒร ยคยจ",
636
+ "628": "ig",
637
+ "629": "ive",
638
+ "630": "ฤ Team",
639
+ "631": "ฤ def",
640
+ "632": "irect",
641
+ "633": "age",
642
+ "634": "ฤ ร ยคฤซร ยคยชร ยคยฏ",
643
+ "635": "pt",
644
+ "636": "ฤ ร ยคฤงร ยคยตร ยคยถ",
645
+ "637": "ฤ ร ยคฤทร ยคยฎร ยคฤพ",
646
+ "638": "st",
647
+ "639": "ร ยคยทร ยคยฃ",
648
+ "640": "ฤ ร ยคลƒร ยคฤฑร ยคฤท",
649
+ "641": "ฤ friendly",
650
+ "642": "ร ยคยตร ยคฤพ",
651
+ "643": "ฤ Publicity",
652
+ "644": "her",
653
+ "645": "ร ยฅฤฏร ยฅยค",
654
+ "646": "ร ยคยฐร ยคยฃ",
655
+ "647": "ฤ dep",
656
+ "648": "ฤ ac",
657
+ "649": "ฤ ร ยคฤซร ยคยช",
658
+ "650": "ฤ com",
659
+ "651": "ฤ cont",
660
+ "652": "ร ยคยธร ยคยฎ",
661
+ "653": "ร ยคยตร ยคฤพร ยคยจ",
662
+ "654": "ร ยฅฤญ,",
663
+ "655": "uth",
664
+ "656": "ฤ prof",
665
+ "657": "ฤ of",
666
+ "658": "ฤ acc",
667
+ "659": "ร ยฅฤฃร ยคฤฃ",
668
+ "660": "ร ยคยฏร ยคยธร ยคยฒ",
669
+ "661": "IT",
670
+ "662": "acher",
671
+ "663": "ฤ Teacher",
672
+ "664": "essional",
673
+ "665": "ฤ professional",
674
+ "666": "ฤ O",
675
+ "667": "ฤ m",
676
+ "668": "enc",
677
+ "669": "ฤ w",
678
+ "670": "ory",
679
+ "671": "em",
680
+ "672": "ou",
681
+ "673": "sory",
682
+ "674": "ฤ Compul",
683
+ "675": "ptional",
684
+ "676": "ฤ Optional",
685
+ "677": "ฤ Compulsory",
686
+ "678": "ฤ per",
687
+ "679": "ฤ pers",
688
+ "680": "ฤ person",
689
+ "681": "ร ยคล‚",
690
+ "682": "ร ยฅฤชร ยคฤฃ",
691
+ "683": "ร ยคลƒร ยคฤฑร ยคฤท",
692
+ "684": "ฤ an",
693
+ "685": "ฤ ร ยคฤนร ยคยฃ",
694
+ "686": "ฤ ร ยคลƒร ยคฤฑร ยคยฎ",
695
+ "687": "ard",
696
+ "688": "ver",
697
+ "689": "ฤ D",
698
+ "690": "ฤ personal",
699
+ "691": "Bo",
700
+ "692": "ens",
701
+ "693": "ร ยคยฃร ยคยฏ",
702
+ "694": "ors",
703
+ "695": "irectors",
704
+ "696": "ฤ Directors",
705
+ "697": "Board",
706
+ "698": "ร ยคฤฑร ยคฤท",
707
+ "699": "ฤ ร ยคยคร ยคยฅ",
708
+ "700": "ฤ j",
709
+ "701": "ร ยคฤง",
710
+ "702": "ร ยคยธร ยคยน",
711
+ "703": "ร ยคยก",
712
+ "704": "ฤ the",
713
+ "705": "ฤ defens",
714
+ "706": "ฤ defensive",
715
+ "707": "ฤ access",
716
+ "708": "kes",
717
+ "709": "ex",
718
+ "710": "okes",
719
+ "711": "ฤ ร ยคฤบ",
720
+ "712": "ฤ jokes",
721
+ "713": "urity",
722
+ "714": "mun",
723
+ "715": "up",
724
+ "716": "yst",
725
+ "717": "ฤ syst",
726
+ "718": "ฤ commun",
727
+ "719": "ฤ system",
728
+ "720": "ack",
729
+ "721": "ฤ des",
730
+ "722": "ร ยคยจร ยคยฎ",
731
+ "723": "ร ยคยฎร ยคยค",
732
+ "724": "ฤ communication",
733
+ "725": "ign",
734
+ "726": "ฤ design",
735
+ "727": "is",
736
+ "728": "ร ยคยพ,",
737
+ "729": "ฤ ร ยคฤซร ยคยฆ",
738
+ "730": "ฤ Board",
739
+ "731": "ฤ personality",
740
+ "732": "ฤ un",
741
+ "733": "ฤ ร ยคฤฟ",
742
+ "734": "ฤ b",
743
+ "735": "ept",
744
+ "736": "ฤ conc",
745
+ "737": "ful",
746
+ "738": "ฤ concept",
747
+ "739": "ฤ ร ยคฤงร ยคยธร ยคยน",
748
+ "740": "ฤ a",
749
+ "741": "ฤ he",
750
+ "742": "ร ยคยพร ยคฤฃ",
751
+ "743": "gr",
752
+ "744": "ming",
753
+ "745": "lp",
754
+ "746": "ฤ ร ยคยจร ยคยฐ",
755
+ "747": "ฤ help",
756
+ "748": "ฤ k",
757
+ "749": "pment",
758
+ "750": "amming",
759
+ "751": "velo",
760
+ "752": "ฤ develo",
761
+ "753": "gramming",
762
+ "754": "ฤ development",
763
+ "755": "ฤ h",
764
+ "756": "ฤ cur",
765
+ "757": "ฤ ร ยคยฌร ยคยจ",
766
+ "758": "ฤ I",
767
+ "759": "loy",
768
+ "760": "ฤ po",
769
+ "761": "ฤ curi",
770
+ "762": "ฤ ร ยคยฒร ยคฤท",
771
+ "763": "ted",
772
+ "764": "ฤ deploy",
773
+ "765": "ous",
774
+ "766": "ext",
775
+ "767": "ฤ deployment",
776
+ "768": "ind",
777
+ "769": "ฤ ร ยคฤทร ยคล‚",
778
+ "770": "ร ยคยนร ยคยฐ",
779
+ "771": "ฤ helpful",
780
+ "772": "et",
781
+ "773": "fer",
782
+ "774": "lit",
783
+ "775": "ร ยคยฅร ยคยช",
784
+ "776": "ฤ polit",
785
+ "777": "ฤ curious",
786
+ "778": "ฤ polite",
787
+ "779": "entication",
788
+ "780": "uthentication",
789
+ "781": "ฤ ร ยคยธร ยคยง",
790
+ "782": "ins",
791
+ "783": "hear",
792
+ "784": "ฤ kind",
793
+ "785": "hearted",
794
+ "786": "ร ยคยฏร ยคยฒ",
795
+ "787": "ฤ ร ยคยจร ยคยฌร ยคยจ",
796
+ "788": "ฤ ร ยคยจร ยคยชร ยคยฐ",
797
+ "789": "ฤ pre",
798
+ "790": "sw",
799
+ "791": "ร ยฅฤญรขฤขฤถ",
800
+ "792": "ร ยคยนร ยคยฌ",
801
+ "793": "swer",
802
+ "794": "ร ยคล€",
803
+ "795": "ฤ answer",
804
+ "796": "insp",
805
+ "797": "ired",
806
+ "798": "inspired",
807
+ "799": "ร ยคฤฉร ยคฤท",
808
+ "800": "ฤ l",
809
+ "801": "end",
810
+ "802": "ฤ prefer",
811
+ "803": "ฤ ร ยคยธร ยคล",
812
+ "804": "tion",
813
+ "805": "ร ยคลร ยคยค",
814
+ "806": "ences",
815
+ "807": "ฤ preferences",
816
+ "808": "ฤ ร ยคฤงร ยคยก",
817
+ "809": "ฤ ร ยคฤทร ยคยธร ยคยฐ",
818
+ "810": "ad",
819
+ "811": "ฤ conf",
820
+ "812": "ร ยฅฤฏ;",
821
+ "813": "ร ยคยฒร ยคยฌ",
822
+ "814": "ฤ ร ยคฤซร ยคยชร ยคยฒร ยคยฌ",
823
+ "815": "ร ยคยชร ยคฤฝ",
824
+ "816": "ord",
825
+ "817": "ฤ n",
826
+ "818": "ith",
827
+ "819": "ร ยคยคร ยคยฎ",
828
+ "820": "ร ยคยฏร ยคยธร ยคยชร ยคฤฝ",
829
+ "821": "ร ยคยทร ยคยฏร ยคยฎ",
830
+ "822": "ency",
831
+ "823": "ging",
832
+ "824": "iz",
833
+ "825": "ure",
834
+ "826": "word",
835
+ "827": "ร ยคฤฑร ยคยฐ",
836
+ "828": "assword",
837
+ "829": "ร ยคฤบ",
838
+ "830": "ฤ ร ยคยฎร ยคยธ",
839
+ "831": "ฤ ร ยคฤซร ยคฤผ",
840
+ "832": "ret",
841
+ "833": "ฤ lo",
842
+ "834": "ฤ fe",
843
+ "835": "ร ยคฤผร ยคยจ",
844
+ "836": "ฤ depend",
845
+ "837": "eth",
846
+ "838": "dat",
847
+ "839": "ฤ up",
848
+ "840": "ical",
849
+ "841": "ฤ password",
850
+ "842": "uration",
851
+ "843": "iguration",
852
+ "844": "ฤ configuration",
853
+ "845": "ฤ log",
854
+ "846": "ฤ ร ยคยฏ",
855
+ "847": "ฤ ร ยคล",
856
+ "848": "ร ยคยฐร ยคยธ",
857
+ "849": "ร ยคยนร ยคยฒ",
858
+ "850": "ฤ ร ยคฤทร ยคยธร ยคยฒ",
859
+ "851": "anage",
860
+ "852": "ฤ manage",
861
+ "853": "ฤ updat",
862
+ "854": "ร ยคยจร ยคยฒ",
863
+ "855": "erver",
864
+ "856": "ฤ server",
865
+ "857": "ฤ secure",
866
+ "858": "ฤ secret",
867
+ "859": "ish",
868
+ "860": "ฤ dependency",
869
+ "861": "ฤ logging",
870
+ "862": "ฤ management",
871
+ "863": "ฤ updates",
872
+ "864": "rad",
873
+ "865": "ร ยคฤทร ยคยฒ",
874
+ "866": "ฤ for",
875
+ "867": "ร ยคฤผร ยคยฏ",
876
+ "868": "ฤ contrad",
877
+ "869": "ฤ contradic",
878
+ "870": "od",
879
+ "871": "ฤ ร ยคลƒร ยคยฏ",
880
+ "872": "ร ยคยฏร ยคยธร ยคยฎ",
881
+ "873": "rol",
882
+ "874": "ฤ contradiction",
883
+ "875": "ฤ in",
884
+ "876": "ร ยคยฐร ยคยน",
885
+ "877": "ร ยคฤทร ยคยฐ",
886
+ "878": "ร ยคยฏร ยคยฌ",
887
+ "879": "ฤ ร ยคยฎร ยคยน",
888
+ "880": "ร ยคยตร ยคยฒ",
889
+ "881": "ฤ Authentication",
890
+ "882": "ฤ ร ยคยธร ยคยนร ยคยฎร ยคยค",
891
+ "883": "ฤ control",
892
+ "884": "ร ยคฤงร ยคฤบ",
893
+ "885": "ร ยคยคร ยคยฐร ยคยฎ",
894
+ "886": "oriz",
895
+ "887": "ฤ ร ยคลƒร ยคฤฑร ยคยธร ยคยฎ",
896
+ "888": "ult",
897
+ "889": "uthoriz",
898
+ "890": "ฤ eth",
899
+ "891": "ฤ ร ยคฤงร ยคยน",
900
+ "892": "ฤ security",
901
+ "893": "ฤ next",
902
+ "894": "uthorized",
903
+ "895": "ฤ ethical",
904
+ "896": "Supernova",
905
+ "897": "ber",
906
+ "898": "gl",
907
+ "899": "En",
908
+ "900": "vers",
909
+ "901": "glish",
910
+ "902": "English",
911
+ "903": "authorized",
912
+ "904": "sec",
913
+ "905": "yber",
914
+ "906": "ร ยฅฤฏรขฤข",
915
+ "907": "ร ยคฤฃ,",
916
+ "908": "ฤ cyber",
917
+ "909": "ฤ ร ยคยธร ยคยฎร ยคยธ",
918
+ "910": "ฤ dam",
919
+ "911": "acking",
920
+ "912": "ฤ unauthorized",
921
+ "913": "ฤ hacking",
922
+ "914": "security",
923
+ "915": "ร ยฅฤฏรขฤขฤฏ",
924
+ "916": "ฤ cybersecurity",
925
+ "917": "ฤ damage",
926
+ "918": "ฤ al",
927
+ "919": "ฤ ร ยคยจร ยคยฆ",
928
+ "920": "ฤ y",
929
+ "921": "ร ยฅฤข,",
930
+ "922": "back",
931
+ "923": "gu",
932
+ "924": "ร ยคยคร ยคยค",
933
+ "925": "ร ยคยธร ยคยธ",
934
+ "926": "ฤ cod",
935
+ "927": "ร ยฅฤฎร ยคฤฃ,",
936
+ "928": "est",
937
+ "929": "edback",
938
+ "930": "ฤ feedback",
939
+ "931": "ฤ ร ยคยฎร ยคยนร ยคยธ",
940
+ "932": "ฤ coding",
941
+ "933": "ms",
942
+ "934": "ฤ mat",
943
+ "935": "ร ยฅฤฏ,",
944
+ "936": "ร ยฅฤฃ?",
945
+ "937": "ร ยคยตร ยคยฌ",
946
+ "938": "ฤ ร ยคฤงร ยคยธร ยคยนร ยคฤพ",
947
+ "939": "by",
948
+ "940": "id",
949
+ "941": "step",
950
+ "942": "ฤ English",
951
+ "943": "ort",
952
+ "944": "gor",
953
+ "945": "ร ยคยธร ยคฤท",
954
+ "946": "ร ยคฤงร ยคยจ",
955
+ "947": "ithms",
956
+ "948": "ฤ form",
957
+ "949": "ฤ algor",
958
+ "950": "ฤ algorithms",
959
+ "951": "ault",
960
+ "952": "eb",
961
+ "953": "ฤ ร ยคยฎร ยคยง",
962
+ "954": "ula",
963
+ "955": "ร ยคยฏร ยคยธร ยคฤงร ยคยจ",
964
+ "956": "ฤ Pro",
965
+ "957": "ฤ default",
966
+ "958": "ฤ math",
967
+ "959": "ร ยคยจร ยคยฌ",
968
+ "960": "ฤ convers",
969
+ "961": "angu",
970
+ "962": "ฤ web",
971
+ "963": "ฤ langu",
972
+ "964": "ฤ formula",
973
+ "965": "ฤ Programming",
974
+ "966": "ฤ conversation",
975
+ "967": "ฤ language",
976
+ "968": "ฤ ร ยคยฎร ยคยฆ",
977
+ "969": "ร ยคยฆร ยคยค",
978
+ "970": "ho",
979
+ "971": "upp",
980
+ "972": "ฤ you",
981
+ "973": "ร ยคฤพร ยคยธ",
982
+ "974": "ฤ publicity",
983
+ "975": "ฤ re",
984
+ "976": "ฤ supp",
985
+ "977": "ฤ direct",
986
+ "978": "ฤ conversational",
987
+ "979": "ฤ support",
988
+ "980": "ate",
989
+ "981": "ร ยคฤนร ยคล‚",
990
+ "982": "uld",
991
+ "983": "ร ยคฤนร ยคล‚ร ยคยจ",
992
+ "984": "ฤ ร ยคยธร ยคฤผ",
993
+ "985": "ร ยคฤนร ยคยฒ",
994
+ "986": "ฤ ร ยคฤงร ยคยธร ยคยนร ยคยฎร ยคยค",
995
+ "987": "ฤ supportive",
996
+ "988": "ฤ ร ยคยข",
997
+ "989": "ร ยคฤทร ยคยค",
998
+ "990": "ฤ programming",
999
+ "991": "ร ยคยฃร ยคยฏร ยคยนร ยคยฐ",
1000
+ "992": "ฤ best",
1001
+ "993": "ฤ direction",
1002
+ "994": "ร ยฅฤฃร ยคฤฃร ยฅยค",
1003
+ "995": "ร ยฅฤข-",
1004
+ "996": "ฤ ร ยคยจร ยคฤน",
1005
+ "997": "ฤ sho",
1006
+ "998": "ฤ ร ยคยจร ยคฤนร ยคยฐ",
1007
+ "999": "ri",
1008
+ "1000": "ร ยคยฏร ยคยช",
1009
+ "1001": "ร ยคฤฝร ยคยจ",
1010
+ "1002": "il",
1011
+ "1003": "ฤ and",
1012
+ "1004": "ร ยฅฤฉ?",
1013
+ "1005": "ฤ should",
1014
+ "1006": "us",
1015
+ "1007": "ร ยคยฐร ยคยฏ",
1016
+ "1008": "ฤ ร ยคยนร ยคยฒ",
1017
+ "1009": "ฤ st",
1018
+ "1010": "wn",
1019
+ "1011": "ร ยคยข",
1020
+ "1012": "ร ยคยฏร ยคยนร ยคยฐ",
1021
+ "1013": "ฤ ร ยคฤงร ยคยง",
1022
+ "1014": "ฤ wh",
1023
+ "1015": "if",
1024
+ "1016": "ฤ ร ยคยฎร ยคฤพ",
1025
+ "1017": "edy",
1026
+ "1018": "ฤ comedy",
1027
+ "1019": "ร ยคยชร ยคฤทร ยคฤท",
1028
+ "1020": "ฤ own",
1029
+ "1021": "ฤ owner",
1030
+ "1022": "ร ยคฤฅ",
1031
+ "1023": "qu",
1032
+ "1024": "ร ยฅฤฃร ยคฤฅ",
1033
+ "1025": "ฤ ch",
1034
+ "1026": "not",
1035
+ "1027": "ect",
1036
+ "1028": "ฤ ex",
1037
+ "1029": "ฤ can",
1038
+ "1030": "ฤ ร ยคยฏร ยคยฆ",
1039
+ "1031": "ฤ ร ยคยฏร ยคยน",
1040
+ "1032": "ร ยคฤฑร ยคยฎ",
1041
+ "1033": "ฤ cl",
1042
+ "1034": "ร ยคยฐร ยคยฃร ยคยธร ยคยน",
1043
+ "1035": "dent",
1044
+ "1036": "ial",
1045
+ "1037": "ron",
1046
+ "1038": "ร ยคฤทร ยคฤท",
1047
+ "1039": "ฤ pri",
1048
+ "1040": "el",
1049
+ "1041": "ฤ not",
1050
+ "1042": "ฤ cre",
1051
+ "1043": "dential",
1052
+ "1044": "ฤ credential",
1053
+ "1045": "ft",
1054
+ "1046": "rong",
1055
+ "1047": "for",
1056
+ "1048": "pl",
1057
+ "1049": "ฤ context",
1058
+ "1050": "ain",
1059
+ "1051": "im",
1060
+ "1052": "ฤ ร ยคยชร ยคยข",
1061
+ "1053": "ฤ theft",
1062
+ "1054": "ฤ e",
1063
+ "1055": "iqu",
1064
+ "1056": "vate",
1065
+ "1057": "ount",
1066
+ "1058": "ฤ account",
1067
+ "1059": "ฤ be",
1068
+ "1060": "ique",
1069
+ "1061": "FA",
1070
+ "1062": "ฤ it",
1071
+ "1063": "ร ยฅฤญ!",
1072
+ "1064": "mation",
1073
+ "1065": "ฤ MFA",
1074
+ "1066": "ฤ unique",
1075
+ "1067": "ฤ authentication",
1076
+ "1068": "ฤ infor",
1077
+ "1069": "ฤ strong",
1078
+ "1070": "ฤ information",
1079
+ "1071": "ฤ th",
1080
+ "1072": "apt",
1081
+ "1073": "ter",
1082
+ "1074": "ence",
1083
+ "1075": "ฤ me",
1084
+ "1076": "ject",
1085
+ "1077": "ฤ r",
1086
+ "1078": "ฤ passwords",
1087
+ "1079": "ฤ private",
1088
+ "1080": "Publicity",
1089
+ "1081": "um",
1090
+ "1082": "ฤ chapt",
1091
+ "1083": "ฤ chapter",
1092
+ "1084": "ist",
1093
+ "1085": "our",
1094
+ "1086": "vid",
1095
+ "1087": "ฤ id",
1096
+ "1088": "ฤ or",
1097
+ "1089": "ฤ do",
1098
+ "1090": "ฤ to",
1099
+ "1091": "ak",
1100
+ "1092": "ฤ is",
1101
+ "1093": "ฤ with",
1102
+ "1094": "ฤ what",
1103
+ "1095": "ฤ on",
1104
+ "1096": "ฤ em",
1105
+ "1097": "uman",
1106
+ "1098": "ฤ us",
1107
+ "1099": "ason",
1108
+ "1100": "ble",
1109
+ "1101": "ฤ human",
1110
+ "1102": "ฤ reason",
1111
+ "1103": "vi",
1112
+ "1104": "ฤ N",
1113
+ "1105": "act",
1114
+ "1106": "ร ยคฤซร ยคยค",
1115
+ "1107": "ฤ res",
1116
+ "1108": "ake",
1117
+ "1109": "ฤ ร ยคยซ",
1118
+ "1110": "ร ยคฤนร ยคยค",
1119
+ "1111": "ฤ project",
1120
+ "1112": "ฤ expl",
1121
+ "1113": "ฤ beh",
1122
+ "1114": "vidence",
1123
+ "1115": "ail",
1124
+ "1116": "able",
1125
+ "1117": "out",
1126
+ "1118": "ฤ ร ยคยฌร ยคยข",
1127
+ "1119": "orre",
1128
+ "1120": "ฤ when",
1129
+ "1121": "ฤ cla",
1130
+ "1122": "ฤ evidence",
1131
+ "1123": "orrect",
1132
+ "1124": "avi",
1133
+ "1125": "cus",
1134
+ "1126": "ฤ det",
1135
+ "1127": "ร ยคฤงร ยคยฒ",
1136
+ "1128": "ฤ ident",
1137
+ "1129": "ฤ reasoning",
1138
+ "1130": "ฤ behavi",
1139
+ "1131": "ฤ behavior",
1140
+ "1132": "are",
1141
+ "1133": "ear",
1142
+ "1134": "tain",
1143
+ "1135": "ร ยคยพ:",
1144
+ "1136": "ertain",
1145
+ "1137": "ฤ cr",
1146
+ "1138": "ฤ correct",
1147
+ "1139": "ฤ sa",
1148
+ "1140": "ฤ feel",
1149
+ "1141": "ification",
1150
+ "1142": "ฤ resp",
1151
+ "1143": "ฤ claim",
1152
+ "1144": "ts",
1153
+ "1145": "ust",
1154
+ "1146": "รฐล",
1155
+ "1147": "ฤ รฐล",
1156
+ "1148": "ร ยคยจร ยคยตร ยคฤพ",
1157
+ "1149": "รขฤขฤป",
1158
+ "1150": "ร ยคลƒร ยคยฏ",
1159
+ "1151": "and",
1160
+ "1152": "ฤ but",
1161
+ "1153": "ฤ ha",
1162
+ "1154": "ร ยคยจร ยคยตร ยคฤพร ยคยธ",
1163
+ "1155": "Can",
1164
+ "1156": "ck",
1165
+ "1157": "der",
1166
+ "1158": "ea",
1167
+ "1159": "le",
1168
+ "1160": "lu",
1169
+ "1161": "ocus",
1170
+ "1162": "ty",
1171
+ "1163": "ฤ as",
1172
+ "1164": "ฤ am",
1173
+ "1165": "ฤ ร ยคล‚",
1174
+ "1166": "ฤ dis",
1175
+ "1167": "ฤ pr",
1176
+ "1168": "ฤ cons",
1177
+ "1169": "ฤ my",
1178
+ "1170": "ฤ inter",
1179
+ "1171": "ฤ clar",
1180
+ "1172": "ฤ that",
1181
+ "1173": "ฤ without",
1182
+ "1174": "ฤ No",
1183
+ "1175": "ฤ detail",
1184
+ "1176": "ertainty",
1185
+ "1177": "ฤ รฐลฤบ",
1186
+ "1178": "cy",
1187
+ "1179": "gre",
1188
+ "1180": "hat",
1189
+ "1181": "ฤ g",
1190
+ "1182": "ฤ comp",
1191
+ "1183": "valu",
1192
+ "1184": "vacy",
1193
+ "1185": "ฤ su",
1194
+ "1186": "ฤ ร ยคลƒร ยคฤฑร ยคยฐ",
1195
+ "1187": "ฤ tr",
1196
+ "1188": "ฤ mor",
1197
+ "1189": "ฤ emp",
1198
+ "1190": "ฤ use",
1199
+ "1191": "ฤ identity",
1200
+ "1192": "derst",
1201
+ "1193": "ฤ clarification",
1202
+ "1194": "ฤ รฐลฤบฤฌ",
1203
+ "1195": "gree",
1204
+ "1196": "os",
1205
+ "1197": "tend",
1206
+ "1198": "vent",
1207
+ "1199": "ฤ vers",
1208
+ "1200": "ร ยคยฐร ยคยฒ",
1209
+ "1201": "ฤ ร ยคฤงร ยคลƒ",
1210
+ "1202": "vail",
1211
+ "1203": "ฤ som",
1212
+ "1204": "ร ยคฤพร ยคยจร ยคฤท",
1213
+ "1205": "ฤ fact",
1214
+ "1206": "heck",
1215
+ "1207": "ฤ underst",
1216
+ "1208": "ฤ ad",
1217
+ "1209": "ฤ avail",
1218
+ "1210": "ฤ invent",
1219
+ "1211": "ile",
1220
+ "1212": "ify",
1221
+ "1213": "ฤ privacy",
1222
+ "1214": "ource",
1223
+ "1215": "ฤ crit",
1224
+ "1216": "ฤ have",
1225
+ "1217": "ฤ version",
1226
+ "1218": "ฤ understand",
1227
+ "1219": "'t",
1228
+ "1220": "ot",
1229
+ "1221": "pro",
1230
+ "1222": "se",
1231
+ "1223": "ud",
1232
+ "1224": "ware",
1233
+ "1225": "ฤ ร ยคยก",
1234
+ "1226": "ร ยคยจร ยคฤพร ยคยจร ยคฤท",
1235
+ "1227": "ฤ ร ยคฤฝร ยคยจ",
1236
+ "1228": "ฤ cal",
1237
+ "1229": "now",
1238
+ "1230": "ฤ source",
1239
+ "1231": "ฤ focus",
1240
+ "1232": "ork",
1241
+ "1233": "alware",
1242
+ "1234": "ฤ mist",
1243
+ "1235": "ฤ malware",
1244
+ "1236": "ฤ work",
1245
+ "1237": "ฤ ne",
1246
+ "1238": "ฤ your",
1247
+ "1239": "ฤ idea",
1248
+ "1240": "ฤ available",
1249
+ "1241": "ฤ critic",
1250
+ "1242": "cu",
1251
+ "1243": "hy",
1252
+ "1244": "ies",
1253
+ "1245": "ning",
1254
+ "1246": "ual",
1255
+ "1247": "ฤ Y",
1256
+ "1248": "ฤ qu",
1257
+ "1249": "ฤ im",
1258
+ "1250": "ร ยคฤถ",
1259
+ "1251": "ร ยคยฐร ยคยค",
1260
+ "1252": "ฤ ร ยคยธร ยคยฐร ยคยฒ",
1261
+ "1253": "ร ยคยตร ยคยช",
1262
+ "1254": "icate",
1263
+ "1255": "ant",
1264
+ "1256": "oundar",
1265
+ "1257": "ฤ from",
1266
+ "1258": "ฤ make",
1267
+ "1259": "ฤ unc",
1268
+ "1260": "ฤ boundar",
1269
+ "1261": "ฤ ร ยคยฎร ยคยนร ยคยค",
1270
+ "1262": "ฤ exper",
1271
+ "1263": "ฤ clear",
1272
+ "1264": "ฤ does",
1273
+ "1265": "ฤ docu",
1274
+ "1266": "ฤ explain",
1275
+ "1267": "ฤ consist",
1276
+ "1268": "ฤ sub",
1277
+ "1269": "ฤ more",
1278
+ "1270": "ฤ document",
1279
+ "1271": "If",
1280
+ "1272": "What",
1281
+ "1273": "ay",
1282
+ "1274": "agree",
1283
+ "1275": "ir",
1284
+ "1276": "ould",
1285
+ "1277": "rent",
1286
+ "1278": "ร ยคยฐร ยคลƒ",
1287
+ "1279": "ร ยคยคร ยคยต",
1288
+ "1280": "ร ยคยฆร ยคยฒ",
1289
+ "1281": "ฤ ร ยคยชร ยคยค",
1290
+ "1282": "ร ยคยตร ยคยจ",
1291
+ "1283": "one",
1292
+ "1284": "ฤ ร ยคฤงร ยคฤบ",
1293
+ "1285": "ร ยคยฅร ยคยฎ",
1294
+ "1286": "ฤ ร ยคยฒร ยคฤน",
1295
+ "1287": "ine",
1296
+ "1288": "ints",
1297
+ "1289": "ings",
1298
+ "1290": "any",
1299
+ "1291": "ampl",
1300
+ "1292": "ฤ provid",
1301
+ "1293": "ฤ mem",
1302
+ "1294": "ฤ want",
1303
+ "1295": "ฤ are",
1304
+ "1296": "ฤ lif",
1305
+ "1297": "ฤ chan",
1306
+ "1298": "ฤ exampl",
1307
+ "1299": "ฤ than",
1308
+ "1300": "ฤ user",
1309
+ "1301": "ฤ feelings",
1310
+ "1302": "ฤ respon",
1311
+ "1303": "ฤ respect",
1312
+ "1304": "ฤ disagree",
1313
+ "1305": "ฤ mistake",
1314
+ "1306": "ฤ Yes",
1315
+ "1307": "ฤ uncertainty",
1316
+ "1308": "ฤ life",
1317
+ "1309": "ฤ disagreement",
1318
+ "1310": "aus",
1319
+ "1311": "ci",
1320
+ "1312": "eep",
1321
+ "1313": "iv",
1322
+ "1314": "ll",
1323
+ "1315": "pe",
1324
+ "1316": "ue",
1325
+ "1317": "ฤ at",
1326
+ "1318": "ฤ ver",
1327
+ "1319": "ฤ gu",
1328
+ "1320": "ฤ valu",
1329
+ "1321": "ร ยคยฎร ยคฤท",
1330
+ "1322": "ร ยคยคร ยคยจ",
1331
+ "1323": "ฤ ร ยคยฌร ยคยฆร ยคยฒ",
1332
+ "1324": "atas",
1333
+ "1325": "ฤ ร ยคฤงร ยคยชร ยคยฎ",
1334
+ "1326": "ฤ check",
1335
+ "1327": "ฤ ร ยคฤจร ยคฤพ",
1336
+ "1328": "ฤ so",
1337
+ "1329": "ฤ science",
1338
+ "1330": "ฤ sim",
1339
+ "1331": "estion",
1340
+ "1332": "ฤ fir",
1341
+ "1333": "ฤ don",
1342
+ "1334": "ali",
1343
+ "1335": "epali",
1344
+ "1336": "ฤ ร ยคฤงร ยคยจร ยคยง",
1345
+ "1337": "ach",
1346
+ "1338": "acter",
1347
+ "1339": "ฤ ร ยคยงร ยคยจ",
1348
+ "1340": "ase",
1349
+ "1341": "anation",
1350
+ "1342": "aracter",
1351
+ "1343": "ฤ personally",
1352
+ "1344": "ฤ just",
1353
+ "1345": "ฤ jud",
1354
+ "1346": "ise",
1355
+ "1347": "ism",
1356
+ "1348": "ฤ bec",
1357
+ "1349": "ฤ concepts",
1358
+ "1350": "ฤ ap",
1359
+ "1351": "ฤ know",
1360
+ "1352": "ฤ keep",
1361
+ "1353": "ฤ If",
1362
+ "1354": "ฤ curios",
1363
+ "1355": "ething",
1364
+ "1356": "ฤ rele",
1365
+ "1357": "ฤ character",
1366
+ "1358": "ell",
1367
+ "1359": "ฤ mean",
1368
+ "1360": "ฤ one",
1369
+ "1361": "ฤ Nepali",
1370
+ "1362": "ฤ explanation",
1371
+ "1363": "ฤ saf",
1372
+ "1364": "ฤ ask",
1373
+ "1365": "ฤ company",
1374
+ "1366": "ฤ useful",
1375
+ "1367": "ฤ something",
1376
+ "1368": "ฤ criticism",
1377
+ "1369": "ฤ question",
1378
+ "1370": "ฤ boundary",
1379
+ "1371": "ฤ subject",
1380
+ "1372": "ฤ examples",
1381
+ "1373": "ause",
1382
+ "1374": "ฤ guess",
1383
+ "1375": "ฤ values",
1384
+ "1376": "ataset",
1385
+ "1377": "ฤ simpl",
1386
+ "1378": "ฤ first",
1387
+ "1379": "ฤ curiosity",
1388
+ "1380": "Do",
1389
+ "1381": "ces",
1390
+ "1382": "cre",
1391
+ "1383": "ef",
1392
+ "1384": "ead",
1393
+ "1385": "fect",
1394
+ "1386": "gh",
1395
+ "1387": "ness",
1396
+ "1388": "pri",
1397
+ "1389": "ther",
1398
+ "1390": "tual",
1399
+ "1391": "yle",
1400
+ "1392": "ฤ U",
1401
+ "1393": "ฤ en",
1402
+ "1394": "ฤ ass",
1403
+ "1395": "ฤ ins",
1404
+ "1396": "ฤ if",
1405
+ "1397": "ร ยฅฤฉ!",
1406
+ "1398": "ฤ ร ยคฤทร ยคยน",
1407
+ "1399": "ฤ ร ยคลƒร ยคฤฉ",
1408
+ "1400": "ฤ ร ยคยจร ยคยฏ",
1409
+ "1401": "ated",
1410
+ "1402": "ather",
1411
+ "1403": "athy",
1412
+ "1404": "ฤ ร ยคฤงร ยคฤน",
1413
+ "1405": "ice",
1414
+ "1406": "ฤ certainty",
1415
+ "1407": "ร ยฅฤฎร ยฅยค",
1416
+ "1408": "ฤ dif",
1417
+ "1409": "ories",
1418
+ "1410": "all",
1419
+ "1411": "ฤ par",
1420
+ "1412": "ฤ public",
1421
+ "1413": "iences",
1422
+ "1414": "ublish",
1423
+ "1415": "ฤ ร ยคยจร ยคลƒร ยคฤฑร ยคฤท",
1424
+ "1416": "ฤ defin",
1425
+ "1417": "ption",
1426
+ "1418": "stead",
1427
+ "1419": "ฤ actual",
1428
+ "1420": "ฤ wrong",
1429
+ "1421": "ฤ would",
1430
+ "1422": "ough",
1431
+ "1423": "ety",
1432
+ "1424": "ฤ pretend",
1433
+ "1425": "ฤ le",
1434
+ "1426": "ฤ lear",
1435
+ "1427": "ize",
1436
+ "1428": "ฤ instead",
1437
+ "1429": "ฤ style",
1438
+ "1430": "elf",
1439
+ "1431": "ฤ evalu",
1440
+ "1432": "ฤ this",
1441
+ "1433": "ฤ rather",
1442
+ "1434": "ฤ only",
1443
+ "1435": "ฤ say",
1444
+ "1436": "ฤ pract",
1445
+ "1437": "ฤ empathy",
1446
+ "1438": "tended",
1447
+ "1439": "ฤ experiences",
1448
+ "1440": "ฤ consistency",
1449
+ "1441": "ฤ memories",
1450
+ "1442": "ฤ respond",
1451
+ "1443": "ฤ respectful",
1452
+ "1444": "ฤ because",
1453
+ "1445": "ฤ safety",
1454
+ "1446": "ฤ ร ยคลƒร ยคฤฉร ยคยฐร ยคยน",
1455
+ "1447": "'s",
1456
+ "1448": "Ex",
1457
+ "1449": "bout",
1458
+ "1450": "cul",
1459
+ "1451": "check",
1460
+ "1452": "eone",
1461
+ "1453": "ik",
1462
+ "1454": "ief",
1463
+ "1455": "ld",
1464
+ "1456": "otion",
1465
+ "1457": "ood",
1466
+ "1458": "oid",
1467
+ "1459": "ress",
1468
+ "1460": "th",
1469
+ "1461": "void",
1470
+ "1462": "ฤ B",
1471
+ "1463": "ฤ รขฤข",
1472
+ "1464": "ฤ ge",
1473
+ "1465": "ร ยคยฐร ยคยฌ",
1474
+ "1466": "ร ยคยฟร ยคฤฃ",
1475
+ "1467": "ร ยคยฎร ยคยธ",
1476
+ "1468": "ร ยคลร ยคฤทร ยคยฐ",
1477
+ "1469": "ฤ ร ยคยชร ยคฤท",
1478
+ "1470": "ร ยคยตร ยคยธ",
1479
+ "1471": "ร ยคยตร ยคล",
1480
+ "1472": "ร ยคฤฃ?",
1481
+ "1473": "ฤ ร ยคยจร ยคยน",
1482
+ "1474": "atical",
1483
+ "1475": "ฤ ร ยคฤงร ยคฤฟ",
1484
+ "1476": "ich",
1485
+ "1477": "icens",
1486
+ "1478": "ฤ sep",
1487
+ "1479": "ฤ Con",
1488
+ "1480": "ฤ fail",
1489
+ "1481": "ฤ did",
1490
+ "1482": "ฤ dataset",
1491
+ "1483": "omatical",
1492
+ "1484": "hed",
1493
+ "1485": "hether",
1494
+ "1486": "int",
1495
+ "1487": "utomatical",
1496
+ "1488": "asic",
1497
+ "1489": "ame",
1498
+ "1490": "ร ยคยฏร ยคยธร ยคฤท",
1499
+ "1491": "ฤ ร ยคยถร ยคยฌ",
1500
+ "1492": "arate",
1501
+ "1493": "ฤ ter",
1502
+ "1494": "ฤ out",
1503
+ "1495": "ฤ whether",
1504
+ "1496": "ฤ perfect",
1505
+ "1497": "ensho",
1506
+ "1498": "ฤ ร ยคฤบร ยคล",
1507
+ "1499": "ฤ communicate",
1508
+ "1500": "ฤ bet",
1509
+ "1501": "ฤ bel",
1510
+ "1502": "ฤ about",
1511
+ "1503": "ฤ avoid",
1512
+ "1504": "ฤ automatical",
1513
+ "1505": "ฤ current",
1514
+ "1506": "ferent",
1515
+ "1507": "ฤ lik",
1516
+ "1508": "ฤ licens",
1517
+ "1509": "ฤ confid",
1518
+ "1510": "ฤ confus",
1519
+ "1511": "ฤ int",
1520
+ "1512": "ฤ infer",
1521
+ "1513": "ฤ intended",
1522
+ "1514": "ฤ rec",
1523
+ "1515": "ฤ rem",
1524
+ "1516": "ฤ requ",
1525
+ "1517": "ฤ repe",
1526
+ "1518": "rivate",
1527
+ "1519": "ill",
1528
+ "1520": "ฤ stor",
1529
+ "1521": "ฤ state",
1530
+ "1522": "ฤ while",
1531
+ "1523": "ฤ which",
1532
+ "1524": "fore",
1533
+ "1525": "aining",
1534
+ "1526": "ฤ ever",
1535
+ "1527": "tern",
1536
+ "1528": "ฤ emot",
1537
+ "1529": "ฤ emotion",
1538
+ "1530": "ฤ result",
1539
+ "1531": "ฤ identify",
1540
+ "1532": "ฤ cras",
1541
+ "1533": "ฤ pres",
1542
+ "1534": "ฤ give",
1543
+ "1535": "ฤ truth",
1544
+ "1536": "ฤ understanding",
1545
+ "1537": "ฤ calcul",
1546
+ "1538": "ฤ need",
1547
+ "1539": "ฤ imm",
1548
+ "1540": "ฤ documentation",
1549
+ "1541": "ฤ provide",
1550
+ "1542": "ฤ change",
1551
+ "1543": "ฤ att",
1552
+ "1544": "ฤ appro",
1553
+ "1545": "creensho",
1554
+ "1546": "ฤ insult",
1555
+ "1547": "ฤ different",
1556
+ "1548": "ฤ defined",
1557
+ "1549": "ฤ learning",
1558
+ "1550": "ฤ evaluate",
1559
+ "1551": "iefs",
1560
+ "1552": "ฤ get",
1561
+ "1553": "ฤ separate",
1562
+ "1554": "ฤ beliefs",
1563
+ "1555": "ฤ automatically",
1564
+ "1556": "ฤ like",
1565
+ "1557": "ฤ licensing",
1566
+ "1558": "ฤ confident",
1567
+ "1559": "ฤ emotional",
1568
+ "1560": "ฤ calculation",
1569
+ "1561": "creenshot",
1570
+ "1562": "Good",
1571
+ "1563": "You",
1572
+ "1564": "ab",
1573
+ "1565": "abl",
1574
+ "1566": "akes",
1575
+ "1567": "bo",
1576
+ "1568": "cri",
1577
+ "1569": "du",
1578
+ "1570": "ee",
1579
+ "1571": "fic",
1580
+ "1572": "fid",
1581
+ "1573": "focus",
1582
+ "1574": "gg",
1583
+ "1575": "gn",
1584
+ "1576": "gment",
1585
+ "1577": "hort",
1586
+ "1578": "ix",
1587
+ "1579": "ied",
1588
+ "1580": "iate",
1589
+ "1581": "li",
1590
+ "1582": "led",
1591
+ "1583": "less",
1592
+ "1584": "lus",
1593
+ "1585": "ny",
1594
+ "1586": "op",
1595
+ "1587": "ogn",
1596
+ "1588": "pp",
1597
+ "1589": "pret",
1598
+ "1590": "pos",
1599
+ "1591": "tic",
1600
+ "1592": "uil",
1601
+ "1593": "vile",
1602
+ "1594": "vice",
1603
+ "1595": "xing",
1604
+ "1596": "yper",
1605
+ "1597": "ying",
1606
+ "1598": "ฤ W",
1607
+ "1599": "ฤ er",
1608
+ "1600": "ฤ enc",
1609
+ "1601": "ฤ est",
1610
+ "1602": "ฤ What",
1611
+ "1603": "ร ยคยจร ยคยถ",
1612
+ "1604": "ฤ ร ยคยธร ยคลƒ",
1613
+ "1605": "ร ยคฤทร ยคลƒร ยคยจ",
1614
+ "1606": "ร ยฅฤฉ,",
1615
+ "1607": "ร ยฅฤฉร ยคฤฃ",
1616
+ "1608": "ร ยคยฎร ยคยฎ",
1617
+ "1609": "ฤ ร ยคฤทร ยคยก",
1618
+ "1610": "ร ยคยฏร ยคยฎ",
1619
+ "1611": "ร ยคยฏร ยคฤพร ยคยธ",
1620
+ "1612": "ร ยคยฒร ยคยจ",
1621
+ "1613": "ร ยคยคร ยคยฐร ยคฤท",
1622
+ "1614": "ร ยฅฤช,",
1623
+ "1615": "ร ยคยฆร ยคยจร ยคยถ",
1624
+ "1616": "ร ยคยธร ยคยฌ",
1625
+ "1617": "erve",
1626
+ "1618": "ร ยคฤฉร ยคยฎ",
1627
+ "1619": "ฤ ร ยคยชร ยคล‚",
1628
+ "1620": "ร ยคยตร ยคยฐ",
1629
+ "1621": "ร ยคยทร ยคยฎร ยคยค",
1630
+ "1622": "ฤ ร ยคยจร ยคฤท",
1631
+ "1623": "ฤ ร ยคยจร ยคยฌ",
1632
+ "1624": "ฤ ร ยคยจร ยคฤพ",
1633
+ "1625": "ฤ ร ยคยจร ยคยธร ยคฤท",
1634
+ "1626": "ฤ ร ยคยจร ยคยฎร ยคยธ",
1635
+ "1627": "ating",
1636
+ "1628": "ฤ ร ยคฤงร ยคยธ",
1637
+ "1629": "ฤ ร ยคฤงร ยคยธร ยคยฎ",
1638
+ "1630": "ฤ ร ยคฤงร ยคยตร ยคยธ",
1639
+ "1631": "ฤ ร ยคฤพร ยคล",
1640
+ "1632": "icit",
1641
+ "1633": "ฤ ร ยคยฆร ยคยฏ",
1642
+ "1634": "ฤ care",
1643
+ "1635": "ฤ cop",
1644
+ "1636": "noun",
1645
+ "1637": "nown",
1646
+ "1638": "ร ยฅฤฎร ยคฤฃ?",
1647
+ "1639": "van",
1648
+ "1640": "ฤ ร ยคฤจร ยคยฐ",
1649
+ "1641": "ฤ ร ยคฤจร ยคยฏ",
1650
+ "1642": "ฤ ร ยคฤจร ยคฤซ",
1651
+ "1643": "ฤ sound",
1652
+ "1644": "ฤ sand",
1653
+ "1645": "ฤ self",
1654
+ "1646": "ฤ short",
1655
+ "1647": "ฤ Cur",
1656
+ "1648": "ฤ fun",
1657
+ "1649": "omise",
1658
+ "1650": "orted",
1659
+ "1651": "ฤ ร ยคยฒร ยคยฎ",
1660
+ "1652": "inal",
1661
+ "1653": "ร ยคฤผร ยคยฎ",
1662
+ "1654": "ฤ ร ยคฤผร ยคยฐ",
1663
+ "1655": "ฤ publish",
1664
+ "1656": "ร ยคยฏร ยคฤทร ยคยค",
1665
+ "1657": "action",
1666
+ "1658": "cement",
1667
+ "1659": "ask",
1668
+ "1660": "ast",
1669
+ "1661": "ases",
1670
+ "1662": "athetic",
1671
+ "1663": "ฤ founding",
1672
+ "1664": "ฤ That",
1673
+ "1665": "urate",
1674
+ "1666": "ection",
1675
+ "1667": "ediate",
1676
+ "1668": "ฤ steps",
1677
+ "1669": "ฤ frust",
1678
+ "1670": "ฤ Password",
1679
+ "1671": "ฤ proact",
1680
+ "1672": "ฤ ร ยคฤฑร ยคฤทร ยคฤฝ",
1681
+ "1673": "ฤ test",
1682
+ "1674": "ฤ tell",
1683
+ "1675": "ฤ task",
1684
+ "1676": "here",
1685
+ "1677": "ฤ depth",
1686
+ "1678": "ฤ profile",
1687
+ "1679": "ฤ accurate",
1688
+ "1680": "ร ยฅฤฃร ยคฤฃ,",
1689
+ "1681": "ฤ mak",
1690
+ "1682": "ฤ mix",
1691
+ "1683": "ฤ was",
1692
+ "1684": "ฤ word",
1693
+ "1685": "ฤ wort",
1694
+ "1686": "ฤ who",
1695
+ "1687": "ฤ announ",
1696
+ "1688": "ฤ descri",
1697
+ "1689": "ฤ designed",
1698
+ "1690": "ished",
1699
+ "1691": "ฤ uns",
1700
+ "1692": "ฤ unless",
1701
+ "1693": "ฤ basic",
1702
+ "1694": "ฤ buil",
1703
+ "1695": "ฤ authorized",
1704
+ "1696": "ฤ anot",
1705
+ "1697": "ฤ agree",
1706
+ "1698": "ฤ known",
1707
+ "1699": "ฤ hints",
1708
+ "1700": "ฤ hyper",
1709
+ "1701": "ฤ In",
1710
+ "1702": "loyee",
1711
+ "1703": "ฤ preference",
1712
+ "1704": "odel",
1713
+ "1705": "ฤ inc",
1714
+ "1706": "ide",
1715
+ "1707": "ฤ formal",
1716
+ "1708": "ฤ show",
1717
+ "1709": "ility",
1718
+ "1710": "ฤ still",
1719
+ "1711": "ified",
1720
+ "1712": "ฤ chall",
1721
+ "1713": "ฤ exc",
1722
+ "1714": "ฤ cannot",
1723
+ "1715": "ฤ reasonable",
1724
+ "1716": "ฤ ร ยคยซร ยคยฐร ยคฤท",
1725
+ "1717": "ฤ explicit",
1726
+ "1718": "cuss",
1727
+ "1719": "ฤ detection",
1728
+ "1720": "ฤ correction",
1729
+ "1721": "ฤ corrected",
1730
+ "1722": "ฤ happ",
1731
+ "1723": "ฤ discuss",
1732
+ "1724": "ฤ consci",
1733
+ "1725": "ฤ intern",
1734
+ "1726": "ฤ interest",
1735
+ "1727": "ฤ interpret",
1736
+ "1728": "ฤ interaction",
1737
+ "1729": "ฤ details",
1738
+ "1730": "ฤ go",
1739
+ "1731": "ฤ computer",
1740
+ "1732": "ฤ sugg",
1741
+ "1733": "ฤ true",
1742
+ "1734": "ฤ training",
1743
+ "1735": "ฤ morning",
1744
+ "1736": "ฤ empathetic",
1745
+ "1737": "ฤ employee",
1746
+ "1738": "ฤ someone",
1747
+ "1739": "ฤ add",
1748
+ "1740": "ฤ advice",
1749
+ "1741": "ฤ inventing",
1750
+ "1742": "ฤ versioning",
1751
+ "1743": "prove",
1752
+ "1744": "ฤ calm",
1753
+ "1745": "ฤ focused",
1754
+ "1746": "ฤ improve",
1755
+ "1747": "ฤ experience",
1756
+ "1748": "ฤ consistent",
1757
+ "1749": "ฤ provided",
1758
+ "1750": "ฤ verification",
1759
+ "1751": "ฤ verified",
1760
+ "1752": "ฤ judge",
1761
+ "1753": "ฤ judgment",
1762
+ "1754": "ฤ release",
1763
+ "1755": "ฤ meaning",
1764
+ "1756": "ฤ subjects",
1765
+ "1757": "ฤ subjective",
1766
+ "1758": "ฤ simplify",
1767
+ "1759": "privile",
1768
+ "1760": "ฤ enough",
1769
+ "1761": "ฤ assum",
1770
+ "1762": "ฤ part",
1771
+ "1763": "ฤ actually",
1772
+ "1764": "ฤ pretending",
1773
+ "1765": "ฤ least",
1774
+ "1766": "ฤ practical",
1775
+ "1767": "checking",
1776
+ "1768": "ฤ Be",
1777
+ "1769": "ฤ Confid",
1778
+ "1770": "ฤ recogn",
1779
+ "1771": "ฤ remain",
1780
+ "1772": "ฤ storage",
1781
+ "1773": "ฤ every",
1782
+ "1774": "ฤ crash",
1783
+ "1775": "ฤ preserve",
1784
+ "1776": "ฤ truthful",
1785
+ "1777": "ฤ immediate",
1786
+ "1778": "boxing",
1787
+ "1779": "focused",
1788
+ "1780": "ledge",
1789
+ "1781": "ฤ encour",
1790
+ "1782": "ฤ establ",
1791
+ "1783": "ฤ careful",
1792
+ "1784": "ฤ sandboxing",
1793
+ "1785": "ฤ Current",
1794
+ "1786": "ฤ funny",
1795
+ "1787": "ฤ frustr",
1796
+ "1788": "ฤ proactive",
1797
+ "1789": "ฤ making",
1798
+ "1790": "ฤ worth",
1799
+ "1791": "ฤ announcement",
1800
+ "1792": "ฤ another",
1801
+ "1793": "ฤ challen",
1802
+ "1794": "ฤ explicitly",
1803
+ "1795": "ฤ conscious",
1804
+ "1796": "ฤ interpretation",
1805
+ "1797": "privilege",
1806
+ "1798": "ฤ Confidence",
1807
+ "1799": "An",
1808
+ "1800": "Comp",
1809
+ "1801": "Dataset",
1810
+ "1802": "Just",
1811
+ "1803": "Pro",
1812
+ "1804": "Private",
1813
+ "1805": "Rep",
1814
+ "1806": "The",
1815
+ "1807": "Tell",
1816
+ "1808": "aging",
1817
+ "1809": "bar",
1818
+ "1810": "bility",
1819
+ "1811": "ch",
1820
+ "1812": "che",
1821
+ "1813": "cise",
1822
+ "1814": "dit",
1823
+ "1815": "dea",
1824
+ "1816": "ew",
1825
+ "1817": "een",
1826
+ "1818": "eem",
1827
+ "1819": "each",
1828
+ "1820": "fam",
1829
+ "1821": "ger",
1830
+ "1822": "gan",
1831
+ "1823": "hi",
1832
+ "1824": "ht",
1833
+ "1825": "iar",
1834
+ "1826": "iming",
1835
+ "1827": "ible",
1836
+ "1828": "king",
1837
+ "1829": "know",
1838
+ "1830": "lan",
1839
+ "1831": "llo",
1840
+ "1832": "licate",
1841
+ "1833": "line",
1842
+ "1834": "ma",
1843
+ "1835": "mall",
1844
+ "1836": "oints",
1845
+ "1837": "ollo",
1846
+ "1838": "pec",
1847
+ "1839": "press",
1848
+ "1840": "points",
1849
+ "1841": "ring",
1850
+ "1842": "rass",
1851
+ "1843": "ss",
1852
+ "1844": "ser",
1853
+ "1845": "sult",
1854
+ "1846": "self",
1855
+ "1847": "shi",
1856
+ "1848": "ting",
1857
+ "1849": "thy",
1858
+ "1850": "uation",
1859
+ "1851": "uck",
1860
+ "1852": "wo",
1861
+ "1853": "wor",
1862
+ "1854": "way",
1863
+ "1855": "ween",
1864
+ "1856": "ฤ F",
1865
+ "1857": "ฤ ro",
1866
+ "1858": "ฤ ind",
1867
+ "1859": "ฤ Ex",
1868
+ "1860": "ฤ Good",
1869
+ "1861": "ฤ Rep",
1870
+ "1862": "ร ยคฤป",
1871
+ "1863": "ร ยฅฤฏ?",
1872
+ "1864": "ฤ ร ยคยธร ยคฤพ",
1873
+ "1865": "ร ยคฤทร ยคยจ",
1874
+ "1866": "ร ยคฤทร ยคยธ",
1875
+ "1867": "ร ยฅฤฉร ยคฤฃ,",
1876
+ "1868": "ร ยคยฏร ยคยน",
1877
+ "1869": "ร ยฅฤชร ยฅยค",
1878
+ "1870": "ร ยคยธร ยคยฒ",
1879
+ "1871": "ร ยคยธร ยคยง",
1880
+ "1872": "ercise",
1881
+ "1873": "รขฤขฤฟ",
1882
+ "1874": "ened",
1883
+ "1875": "atur",
1884
+ "1876": "ative",
1885
+ "1877": "attern",
1886
+ "1878": "ฤ ร ยคฤงร ยคยฒ",
1887
+ "1879": "ฤ ร ยคฤงร ยคยฌ",
1888
+ "1880": "ฤ ร ยคฤพร ยคยฌ",
1889
+ "1881": "ฤ car",
1890
+ "1882": "ฤ could",
1891
+ "1883": "ฤ cases",
1892
+ "1884": "ฤ ร ยคฤซร ยคยน",
1893
+ "1885": "ร ยฅฤฎ,",
1894
+ "1886": "ร ยคฤนร ยคยฎ",
1895
+ "1887": "ฤ sit",
1896
+ "1888": "ฤ sess",
1897
+ "1889": "ฤ set",
1898
+ "1890": "ฤ spe",
1899
+ "1891": "ฤ same",
1900
+ "1892": "ฤ screenshot",
1901
+ "1893": "ฤ side",
1902
+ "1894": "ฤ seem",
1903
+ "1895": "ฤ small",
1904
+ "1896": "ฤ spec",
1905
+ "1897": "ested",
1906
+ "1898": "ฤ fil",
1907
+ "1899": "ฤ follo",
1908
+ "1900": "ฤ dec",
1909
+ "1901": "ฤ dup",
1910
+ "1902": "ฤ dist",
1911
+ "1903": "itation",
1912
+ "1904": "ality",
1913
+ "1905": "althy",
1914
+ "1906": "inue",
1915
+ "1907": "read",
1916
+ "1908": "ฤ plan",
1917
+ "1909": "ฤ pattern",
1918
+ "1910": "utine",
1919
+ "1911": "ฤ condit",
1920
+ "1912": "ance",
1921
+ "1913": "ational",
1922
+ "1914": "ฤ Tell",
1923
+ "1915": "vel",
1924
+ "1916": "veal",
1925
+ "1917": "ech",
1926
+ "1918": "ร ยคยนร ยคยจร ยคยค",
1927
+ "1919": "arli",
1928
+ "1920": "ฤ Private",
1929
+ "1921": "ฤ prove",
1930
+ "1922": "ฤ friendshi",
1931
+ "1923": "lying",
1932
+ "1924": "ฤ tre",
1933
+ "1925": "ฤ text",
1934
+ "1926": "ฤ tone",
1935
+ "1927": "ฤ teach",
1936
+ "1928": "ฤ two",
1937
+ "1929": "ฤ old",
1938
+ "1930": "ight",
1939
+ "1931": "ฤ define",
1940
+ "1932": "stance",
1941
+ "1933": "ฤ acknow",
1942
+ "1934": "ฤ continue",
1943
+ "1935": "ฤ On",
1944
+ "1936": "ฤ mis",
1945
+ "1937": "ฤ mad",
1946
+ "1938": "ฤ meth",
1947
+ "1939": "ฤ mot",
1948
+ "1940": "ฤ model",
1949
+ "1941": "empt",
1950
+ "1942": "ฤ angr",
1951
+ "1943": "ฤ anger",
1952
+ "1944": "ร ยคยจร ยคยฎร ยคยธ",
1953
+ "1945": "ision",
1954
+ "1946": "ฤ unse",
1955
+ "1947": "ฤ unfam",
1956
+ "1948": "ฤ by",
1957
+ "1949": "ฤ bot",
1958
+ "1950": "ฤ aft",
1959
+ "1951": "ฤ It",
1960
+ "1952": "ฤ points",
1961
+ "1953": "ฤ point",
1962
+ "1954": "ฤ poss",
1963
+ "1955": "eting",
1964
+ "1956": "ฤ lim",
1965
+ "1957": "ฤ list",
1966
+ "1958": "ฤ name",
1967
+ "1959": "ฤ natur",
1968
+ "1960": "ฤ dependent",
1969
+ "1961": "ฤ logs",
1970
+ "1962": "ulty",
1971
+ "1963": "ฤ alread",
1972
+ "1964": "ฤ match",
1973
+ "1965": "upported",
1974
+ "1966": "ฤ rep",
1975
+ "1967": "ฤ real",
1976
+ "1968": "ฤ read",
1977
+ "1969": "ฤ repro",
1978
+ "1970": "ฤ reveal",
1979
+ "1971": "ฤ directly",
1980
+ "1972": "rible",
1981
+ "1973": "iliar",
1982
+ "1974": "ฤ stuck",
1983
+ "1975": "ฤ why",
1984
+ "1976": "ific",
1985
+ "1977": "ฤ expos",
1986
+ "1978": "ronment",
1987
+ "1979": "ฤ earli",
1988
+ "1980": "ฤ before",
1989
+ "1981": "ฤ though",
1990
+ "1982": "ฤ meeting",
1991
+ "1983": "ฤ right",
1992
+ "1984": "ฤ organ",
1993
+ "1985": "ฤ embar",
1994
+ "1986": "vironment",
1995
+ "1987": "ฤ behind",
1996
+ "1988": "ฤ claiming",
1997
+ "1989": "ฤ behavioral",
1998
+ "1990": "ฤ corrective",
1999
+ "1991": "ฤ safer",
2000
+ "1992": "ฤ disc",
2001
+ "1993": "ฤ promise",
2002
+ "1994": "ฤ Not",
2003
+ "1995": "ฤ compare",
2004
+ "1996": "ฤ adapt",
2005
+ "1997": "ฤ call",
2006
+ "1998": "ฤ works",
2007
+ "1999": "ฤ working",
2008
+ "2000": "ฤ new",
2009
+ "2001": "ฤ never",
2010
+ "2002": "ฤ criticize",
2011
+ "2003": "ฤ quality",
2012
+ "2004": "ฤ boundaries",
2013
+ "2005": "ฤ clearly",
2014
+ "2006": "ฤ substance",
2015
+ "2007": "ฤ documented",
2016
+ "2008": "ฤ changing",
2017
+ "2009": "ฤ response",
2018
+ "2010": "cibility",
2019
+ "2011": "ivity",
2020
+ "2012": "iving",
2021
+ "2013": "ฤ checkpoints",
2022
+ "2014": "ฤ justify",
2023
+ "2015": "ฤ keeping",
2024
+ "2016": "ฤ relevan",
2025
+ "2017": "ฤ means",
2026
+ "2018": "ฤ questions",
2027
+ "2019": "ฤ guessing",
2028
+ "2020": "ฤ simple",
2029
+ "2021": "priate",
2030
+ "2022": "ฤ Un",
2031
+ "2023": "ฤ environment",
2032
+ "2024": "ฤ parts",
2033
+ "2025": "ฤ level",
2034
+ "2026": "ฤ practice",
2035
+ "2027": "ฤ รขฤขฤบ",
2036
+ "2028": "ฤ รขฤขฤพ",
2037
+ "2029": "ฤ didn",
2038
+ "2030": "ฤ terms",
2039
+ "2031": "ฤ terrible",
2040
+ "2032": "ฤ better",
2041
+ "2033": "ฤ between",
2042
+ "2034": "ฤ confusing",
2043
+ "2035": "ฤ into",
2044
+ "2036": "ฤ intent",
2045
+ "2037": "ฤ inference",
2046
+ "2038": "ฤ request",
2047
+ "2039": "ฤ repeated",
2048
+ "2040": "ฤ attack",
2049
+ "2041": "ฤ attempt",
2050
+ "2042": "ฤ approach",
2051
+ "2043": "ฤ appropriate",
2052
+ "2044": "ducibility",
2053
+ "2045": "ficulty",
2054
+ "2046": "lusivity",
2055
+ "2047": "ฤ We",
2056
+ "2048": "ฤ erase",
2057
+ "2049": "ฤ copying",
2058
+ "2050": "ฤ wording",
2059
+ "2051": "ฤ description",
2060
+ "2052": "ฤ unsupported",
2061
+ "2053": "ฤ built",
2062
+ "2054": "ฤ Insult",
2063
+ "2055": "ฤ shows",
2064
+ "2056": "ฤ exclusivity",
2065
+ "2057": "ฤ happened",
2066
+ "2058": "ฤ discussed",
2067
+ "2059": "ฤ internal",
2068
+ "2060": "ฤ goal",
2069
+ "2061": "ฤ suggest",
2070
+ "2062": "ฤ address",
2071
+ "2063": "ฤ assumption",
2072
+ "2064": "ฤ Before",
2073
+ "2065": "ฤ recognize",
2074
+ "2066": "ฤ truthfulness",
2075
+ "2067": "ฤ immediately",
2076
+ "2068": "ฤ encourage",
2077
+ "2069": "ฤ established",
2078
+ "2070": "ฤ frustrated",
2079
+ "2071": "ฤ challenge",
2080
+ "2072": "Answer",
2081
+ "2073": "Computer",
2082
+ "2074": "Project",
2083
+ "2075": "chema",
2084
+ "2076": "pressive",
2085
+ "2077": "world",
2086
+ "2078": "ฤ routine",
2087
+ "2079": "ฤ Expressive",
2088
+ "2080": "ฤ ร ยคฤพร ยคยฌร ยค๏ฟฝ๏ฟฝร ยคยฎ",
2089
+ "2081": "ฤ caring",
2090
+ "2082": "ฤ situation",
2091
+ "2083": "ฤ session",
2092
+ "2084": "ฤ setup",
2093
+ "2085": "ฤ speech",
2094
+ "2086": "ฤ specific",
2095
+ "2087": "ฤ files",
2096
+ "2088": "ฤ follow",
2097
+ "2089": "ฤ decision",
2098
+ "2090": "ฤ duplicate",
2099
+ "2091": "ฤ condition",
2100
+ "2092": "ฤ friendship",
2101
+ "2093": "ฤ acknowledge",
2102
+ "2094": "ฤ miss",
2103
+ "2095": "ฤ made",
2104
+ "2096": "ฤ method",
2105
+ "2097": "ฤ motiv",
2106
+ "2098": "ฤ angry",
2107
+ "2099": "ฤ unseen",
2108
+ "2100": "ฤ unfamiliar",
2109
+ "2101": "ฤ both",
2110
+ "2102": "ฤ after",
2111
+ "2103": "ฤ possible",
2112
+ "2104": "ฤ limitation",
2113
+ "2105": "ฤ listen",
2114
+ "2106": "ฤ natural",
2115
+ "2107": "ฤ already",
2116
+ "2108": "ฤ reproducibility",
2117
+ "2109": "ฤ exposing",
2118
+ "2110": "ฤ earlier",
2119
+ "2111": "ฤ organiz",
2120
+ "2112": "ฤ embarrass",
2121
+ "2113": "ฤ relevant",
2122
+ "2114": "00",
2123
+ "2115": "100",
2124
+ "2116": "Are",
2125
+ "2117": "Agree",
2126
+ "2118": "Chat",
2127
+ "2119": "Don",
2128
+ "2120": "Evidence",
2129
+ "2121": "For",
2130
+ "2122": "Found",
2131
+ "2123": "Give",
2132
+ "2124": "Human",
2133
+ "2125": "Idea",
2134
+ "2126": "Jud",
2135
+ "2127": "My",
2136
+ "2128": "Make",
2137
+ "2129": "Model",
2138
+ "2130": "Pr",
2139
+ "2131": "Pret",
2140
+ "2132": "Pri",
2141
+ "2133": "Res",
2142
+ "2134": "Som",
2143
+ "2135": "Sho",
2144
+ "2136": "Source",
2145
+ "2137": "Say",
2146
+ "2138": "Screenshot",
2147
+ "2139": "Tr",
2148
+ "2140": "Use",
2149
+ "2141": "User",
2150
+ "2142": "Why",
2151
+ "2143": "Your",
2152
+ "2144": "ave",
2153
+ "2145": "air",
2154
+ "2146": "be",
2155
+ "2147": "bet",
2156
+ "2148": "cing",
2157
+ "2149": "de",
2158
+ "2150": "day",
2159
+ "2151": "eo",
2160
+ "2152": "eat",
2161
+ "2153": "ff",
2162
+ "2154": "ffect",
2163
+ "2155": "ffic",
2164
+ "2156": "ged",
2165
+ "2157": "gain",
2166
+ "2158": "gative",
2167
+ "2159": "hen",
2168
+ "2160": "hing",
2169
+ "2161": "han",
2170
+ "2162": "ibl",
2171
+ "2163": "lic",
2172
+ "2164": "mit",
2173
+ "2165": "mar",
2174
+ "2166": "mly",
2175
+ "2167": "mula",
2176
+ "2168": "mine",
2177
+ "2169": "nec",
2178
+ "2170": "ok",
2179
+ "2171": "ow",
2180
+ "2172": "ost",
2181
+ "2173": "oci",
2182
+ "2174": "pdat",
2183
+ "2175": "port",
2184
+ "2176": "pect",
2185
+ "2177": "pear",
2186
+ "2178": "publish",
2187
+ "2179": "res",
2188
+ "2180": "ror",
2189
+ "2181": "round",
2190
+ "2182": "riend",
2191
+ "2183": "rain",
2192
+ "2184": "ricate",
2193
+ "2185": "rating",
2194
+ "2186": "so",
2195
+ "2187": "sist",
2196
+ "2188": "side",
2197
+ "2189": "to",
2198
+ "2190": "tec",
2199
+ "2191": "text",
2200
+ "2192": "til",
2201
+ "2193": "ues",
2202
+ "2194": "uas",
2203
+ "2195": "uge",
2204
+ "2196": "uming",
2205
+ "2197": "uish",
2206
+ "2198": "uffic",
2207
+ "2199": "ven",
2208
+ "2200": "ving",
2209
+ "2201": "vis",
2210
+ "2202": "vise",
2211
+ "2203": "yway",
2212
+ "2204": "ฤ no",
2213
+ "2205": "ฤ ent",
2214
+ "2206": "ฤ ment",
2215
+ "2207": "ฤ bl",
2216
+ "2208": "ฤ ig",
2217
+ "2209": "ฤ gr",
2218
+ "2210": "ฤ insp",
2219
+ "2211": "ฤ end",
2220
+ "2212": "ฤ rol",
2221
+ "2213": "ฤ now",
2222
+ "2214": "ฤ here",
2223
+ "2215": "ฤ Just",
2224
+ "2216": "ฤ 100",
2225
+ "2217": "ฤ Evidence",
2226
+ "2218": "ฤ Human",
2227
+ "2219": "ฤ vis",
2228
+ "2220": "ฤฎล€",
2229
+ "2221": "ฤตร ยคยธ",
2230
+ "2222": "ร ยคฤตร ยคยธ",
2231
+ "2223": "ร ยคยจร ยคยจ",
2232
+ "2224": "ร ยคยจร ยคยฏ",
2233
+ "2225": "ร ยคยจร ยคยต",
2234
+ "2226": "ร ยคยจร ยคฤงร ยคยจ",
2235
+ "2227": "ร ยคยฐร ยคยฆ",
2236
+ "2228": "ร ยคยฐร ยคยชร ยคยฐ",
2237
+ "2229": "ร ยฅฤญรขฤขฤป",
2238
+ "2230": "ร ยคยฎร ยคฤน",
2239
+ "2231": "ร ยคยฏร ยคยจ",
2240
+ "2232": "ร ยคยฒร ยคฤท",
2241
+ "2233": "ร ยคยชร ยคยฒ",
2242
+ "2234": "ร ยคยชร ยคล",
2243
+ "2235": "ร ยคยชร ยคยน",
2244
+ "2236": "ร ยคยงร ยคยจ",
2245
+ "2237": "ร ยคยคร ยคฤพร ยคยธ",
2246
+ "2238": "ร ยคฤชร ยคยตร ยคล",
2247
+ "2239": "ร ยฅฤชรขฤขฤป",
2248
+ "2240": "ร ยคยฆร ยคยฎ",
2249
+ "2241": "ฤ ร ยคลƒร ยคยฐร ยคยชร ยคยฐ",
2250
+ "2242": "ร ยฅฤขร ยคฤฃ",
2251
+ "2243": "ฤ ร ยคยนร ยคยฐ",
2252
+ "2244": "ฤ ร ยคยนร ยคล",
2253
+ "2245": "ฤ ร ยคยฌร ยคยธ",
2254
+ "2246": "ฤ ร ยคฤนร ยคฤฑ",
2255
+ "2247": "ฤ ร ยคยฐร ยคยน",
2256
+ "2248": "ฤ ร ยคยฐร ยคยนร ยคยจ",
2257
+ "2249": "eric",
2258
+ "2250": "erial",
2259
+ "2251": "erday",
2260
+ "2252": "ฤ ร ยคยคร ยคยฏ",
2261
+ "2253": "ฤ ร ยคยคร ยคยค",
2262
+ "2254": "ฤ ร ยคยคร ยคยธ",
2263
+ "2255": "ร ยคยตร ยคยค",
2264
+ "2256": "ฤ ร ยคยตร ยคยฐ",
2265
+ "2257": "ร ยคยทร ยคฤท",
2266
+ "2258": "onest",
2267
+ "2259": "onsist",
2268
+ "2260": "eneric",
2269
+ "2261": "ฤ ร ยคยจร ยคยท",
2270
+ "2262": "ฤ ร ยคยจร ยคลƒ",
2271
+ "2263": "ฤ ร ยคยจร ยคฤผ",
2272
+ "2264": "ฤ ร ยคยจร ยคฤธ",
2273
+ "2265": "ฤ ร ยคยจร ยคลƒร ยคยจ",
2274
+ "2266": "ates",
2275
+ "2267": "ฤ ร ยคฤงร ยคยต",
2276
+ "2268": "ร ยฅฤคร ยคฤฃ?",
2277
+ "2269": "ฤ Sure",
2278
+ "2270": "ฤ Say",
2279
+ "2271": "ฤ Screenshot",
2280
+ "2272": "ฤ Schema",
2281
+ "2273": "icates",
2282
+ "2274": "ฤ cho",
2283
+ "2275": "ฤ cel",
2284
+ "2276": "ฤ certain",
2285
+ "2277": "ฤ ร ยคฤซร ยคยธ",
2286
+ "2278": "ฤ ร ยคฤซร ยคล‚",
2287
+ "2279": "noring",
2288
+ "2280": "ร ยคยฃร ยคยฌ",
2289
+ "2281": "ร ยคยฃร ยคฤงร ยคยจ",
2290
+ "2282": "ฤ ร ยคฤจร ยคยฒ",
2291
+ "2283": "ฤ ร ยคฤจร ยคฤทร ยคยฐ",
2292
+ "2284": "ฤ sur",
2293
+ "2285": "ฤ sens",
2294
+ "2286": "ฤ sum",
2295
+ "2287": "ฤ schema",
2296
+ "2288": "ฤ Correct",
2297
+ "2289": "ฤ fit",
2298
+ "2290": "ฤ fal",
2299
+ "2291": "ฤ fin",
2300
+ "2292": "ฤ fut",
2301
+ "2293": "ฤ ful",
2302
+ "2294": "ฤ find",
2303
+ "2295": "ฤ fake",
2304
+ "2296": "ฤ fab",
2305
+ "2297": "ฤ final",
2306
+ "2298": "ฤ fair",
2307
+ "2299": "ฤ dur",
2308
+ "2300": "ฤ done",
2309
+ "2301": "oming",
2310
+ "2302": "omis",
2311
+ "2303": "hey",
2312
+ "2304": "healthy",
2313
+ "2305": "ited",
2314
+ "2306": "itness",
2315
+ "2307": "alking",
2316
+ "2308": "inct",
2317
+ "2309": "inking",
2318
+ "2310": "ร ยคฤผร ยคฤท",
2319
+ "2311": "epend",
2320
+ "2312": "ฤ pause",
2321
+ "2313": "ฤ peo",
2322
+ "2314": "ient",
2323
+ "2315": "utable",
2324
+ "2316": "ฤ Company",
2325
+ "2317": "ฤ ร ยคลƒร ยคฤฑร ยคยชร ยคฤฝ",
2326
+ "2318": "ร ยคยฐร ยคยฎร ยคยถ",
2327
+ "2319": "enting",
2328
+ "2320": "ฤ const",
2329
+ "2321": "inguish",
2330
+ "2322": "ฤ Mist",
2331
+ "2323": "ced",
2332
+ "2324": "ceiving",
2333
+ "2325": "asy",
2334
+ "2326": "ased",
2335
+ "2327": "ฤ Than",
2336
+ "2328": "ฤ They",
2337
+ "2329": "ร ยคฤฉร ยคยจร ยคยจ",
2338
+ "2330": "urning",
2339
+ "2331": "ร ยคยซร ยคยค",
2340
+ "2332": "ฤ deter",
2341
+ "2333": "essar",
2342
+ "2334": "ments",
2343
+ "2335": "art",
2344
+ "2336": "arge",
2345
+ "2337": "arting",
2346
+ "2338": "armly",
2347
+ "2339": "irements",
2348
+ "2340": "blem",
2349
+ "2341": "lose",
2350
+ "2342": "ฤ Publish",
2351
+ "2343": "ฤ proud",
2352
+ "2344": "ฤ propos",
2353
+ "2345": "ฤ protec",
2354
+ "2346": "ฤ proving",
2355
+ "2347": "ฤ problem",
2356
+ "2348": "ฤ ร ยคยฅร ยคยช",
2357
+ "2349": "ฤ tho",
2358
+ "2350": "ฤ tim",
2359
+ "2351": "ฤ take",
2360
+ "2352": "ฤ there",
2361
+ "2353": "ฤ talking",
2362
+ "2354": "ฤ turning",
2363
+ "2355": "ฤ targe",
2364
+ "2356": "ฤ our",
2365
+ "2357": "ฤ other",
2366
+ "2358": "ฤ option",
2367
+ "2359": "igent",
2368
+ "2360": "iginal",
2369
+ "2361": "ฤ offer",
2370
+ "2362": "ฤ accept",
2371
+ "2363": "ฤ must",
2372
+ "2364": "ฤ may",
2373
+ "2365": "ฤ makes",
2374
+ "2366": "ฤ most",
2375
+ "2367": "ฤ we",
2376
+ "2368": "ฤ won",
2377
+ "2369": "ฤ went",
2378
+ "2370": "ฤ way",
2379
+ "2371": "ฤ will",
2380
+ "2372": "ฤ where",
2381
+ "2373": "ฤ witness",
2382
+ "2374": "ฤ warmly",
2383
+ "2375": "ember",
2384
+ "2376": "ฤ persuas",
2385
+ "2377": "ฤ angl",
2386
+ "2378": "ฤ anyway",
2387
+ "2379": "ฤ Dif",
2388
+ "2380": "ร ยคฤฑร ยคฤทร ยคฤผ",
2389
+ "2381": "ร ยคฤงร ยคยฐ",
2390
+ "2382": "ฤ communicates",
2391
+ "2383": "ฤ unint",
2392
+ "2384": "ฤ unnec",
2393
+ "2385": "ฤ until",
2394
+ "2386": "ฤ unhealthy",
2395
+ "2387": "ฤ bri",
2396
+ "2388": "ฤ based",
2397
+ "2389": "ฤ conclus",
2398
+ "2390": "ฤ authoriz",
2399
+ "2391": "ฤ affect",
2400
+ "2392": "ฤ again",
2401
+ "2393": "ฤ heard",
2402
+ "2394": "ฤ healthy",
2403
+ "2395": "ฤ hard",
2404
+ "2396": "ฤ hid",
2405
+ "2397": "ฤ hint",
2406
+ "2398": "ฤ how",
2407
+ "2399": "ฤ huge",
2408
+ "2400": "ฤ honest",
2409
+ "2401": "ฤ Is",
2410
+ "2402": "ฤ Ident",
2411
+ "2403": "ฤ Idea",
2412
+ "2404": "ets",
2413
+ "2405": "etim",
2414
+ "2406": "ฤ previ",
2415
+ "2407": "ฤ answers",
2416
+ "2408": "ฤ lect",
2417
+ "2409": "ฤ lea",
2418
+ "2410": "ฤ lab",
2419
+ "2411": "ฤ lets",
2420
+ "2412": "adual",
2421
+ "2413": "ฤ conflic",
2422
+ "2414": "izing",
2423
+ "2415": "ized",
2424
+ "2416": "ฤ look",
2425
+ "2417": "ฤ dependence",
2426
+ "2418": "ฤ ร ยคยฏร ยคยธร ยคยฒ",
2427
+ "2419": "ฤ manageable",
2428
+ "2420": "ฤ update",
2429
+ "2421": "ฤ force",
2430
+ "2422": "ฤ forcing",
2431
+ "2423": "ฤ contradicts",
2432
+ "2424": "ฤ incre",
2433
+ "2425": "ฤ altern",
2434
+ "2426": "ฤ alway",
2435
+ "2427": "ฤ also",
2436
+ "2428": "ฤ yest",
2437
+ "2429": "estarting",
2438
+ "2430": "ฤ matter",
2439
+ "2431": "ฤ material",
2440
+ "2432": "ider",
2441
+ "2433": "ebrating",
2442
+ "2434": "ฤ Project",
2443
+ "2435": "ฤ revi",
2444
+ "2436": "ฤ reach",
2445
+ "2437": "ฤ redu",
2446
+ "2438": "ฤ reli",
2447
+ "2439": "ฤ relying",
2448
+ "2440": "ฤ revise",
2449
+ "2441": "ฤ receiving",
2450
+ "2442": "ฤ supports",
2451
+ "2443": "usual",
2452
+ "2444": "ฤ stud",
2453
+ "2445": "ฤ start",
2454
+ "2446": "ฤ chat",
2455
+ "2447": "ฤ exist",
2456
+ "2448": "ฤ exact",
2457
+ "2449": "ฤ exercise",
2458
+ "2450": "ฤ clue",
2459
+ "2451": "ฤ clues",
2460
+ "2452": "eless",
2461
+ "2453": "ฤ nothing",
2462
+ "2454": "ple",
2463
+ "2455": "plain",
2464
+ "2456": "plies",
2465
+ "2457": "ฤ each",
2466
+ "2458": "ฤ eff",
2467
+ "2459": "ฤ even",
2468
+ "2460": "ฤ easy",
2469
+ "2461": "ฤ accounts",
2470
+ "2462": "ฤ being",
2471
+ "2463": "ฤ its",
2472
+ "2464": "ฤ itself",
2473
+ "2465": "ฤ thing",
2474
+ "2466": "ฤ thinking",
2475
+ "2467": "ฤ restarting",
2476
+ "2468": "ouraging",
2477
+ "2469": "ฤ original",
2478
+ "2470": "ฤ too",
2479
+ "2471": "aken",
2480
+ "2472": "ฤ online",
2481
+ "2473": "ฤ onto",
2482
+ "2474": "ฤ usual",
2483
+ "2475": "ฤ useless",
2484
+ "2476": "ฤ New",
2485
+ "2477": "ฤ correctness",
2486
+ "2478": "ฤ said",
2487
+ "2479": "ฤ feels",
2488
+ "2480": "ฤ รฐลฤฎล€",
2489
+ "2481": "derlying",
2490
+ "2482": "lude",
2491
+ "2483": "ฤ promis",
2492
+ "2484": "ฤ consider",
2493
+ "2485": "ฤ clarify",
2494
+ "2486": "ฤ detailed",
2495
+ "2487": "ฤ รฐลฤบฤฆ",
2496
+ "2488": "ฤ got",
2497
+ "2489": "ฤ giving",
2498
+ "2490": "ฤ gave",
2499
+ "2491": "ฤ generic",
2500
+ "2492": "ฤ trust",
2501
+ "2493": "derstood",
2502
+ "2494": "ose",
2503
+ "2495": "ฤ sometim",
2504
+ "2496": "ฤ advan",
2505
+ "2497": "ฤ admit",
2506
+ "2498": "ฤ availab",
2507
+ "2499": "ฤ invents",
2508
+ "2500": "ฤ critique",
2509
+ "2501": "ฤ versions",
2510
+ "2502": "ฤ understandable",
2511
+ "2503": "seful",
2512
+ "2504": "ฤ mistakes",
2513
+ "2505": "ฤ mistaken",
2514
+ "2506": "ฤ worked",
2515
+ "2507": "ฤ negative",
2516
+ "2508": "ฤ yourself",
2517
+ "2509": "ฤ criticized",
2518
+ "2510": "ฤ You",
2519
+ "2511": "ฤ import",
2520
+ "2512": "ฤ uncertain",
2521
+ "2513": "ฤ clearer",
2522
+ "2514": "ฤ explaining",
2523
+ "2515": "ร ยคยคร ยคยตร ยคยฎ",
2524
+ "2516": "ฤ memory",
2525
+ "2517": "ฤ member",
2526
+ "2518": "ฤ changed",
2527
+ "2519": "ฤ example",
2528
+ "2520": "ฤ attended",
2529
+ "2521": "ฤ ร ยคฤจร ยคฤพร ยคฤท",
2530
+ "2522": "ฤ becoming",
2531
+ "2523": "ฤ appear",
2532
+ "2524": "ฤ applies",
2533
+ "2525": "ฤ knowing",
2534
+ "2526": "ฤ knowledge",
2535
+ "2527": "ฤ keeps",
2536
+ "2528": "ฤ releases",
2537
+ "2529": "elligent",
2538
+ "2530": "ฤ safe",
2539
+ "2531": "ฤ asks",
2540
+ "2532": "ฤ asked",
2541
+ "2533": "ฤ simpler",
2542
+ "2534": "efly",
2543
+ "2535": "ฤ User",
2544
+ "2536": "ฤ Updat",
2545
+ "2537": "ฤ Useful",
2546
+ "2538": "ฤ associ",
2547
+ "2539": "ฤ assuming",
2548
+ "2540": "ฤ insuffic",
2549
+ "2541": "ฤ difficulty",
2550
+ "2542": "ฤ publicly",
2551
+ "2543": "ฤ defines",
2552
+ "2544": "ฤ learn",
2553
+ "2545": "ฤ evaluation",
2554
+ "2546": "ฤ says",
2555
+ "2547": "ฤ saying",
2556
+ "2548": "ฤ respectfully",
2557
+ "2549": "Exercise",
2558
+ "2550": "Explain",
2559
+ "2551": "thing",
2560
+ "2552": "ฤ Basic",
2561
+ "2553": "ร ยคยตร ยคยธร ยคยจ",
2562
+ "2554": "ฤ Context",
2563
+ "2555": "ฤ failing",
2564
+ "2556": "ฤ failure",
2565
+ "2557": "ฤ outside",
2566
+ "2558": "ฤ ร ยคฤบร ยคลร ยคยจ",
2567
+ "2559": "ฤ avoiding",
2568
+ "2560": "ฤ confusion",
2569
+ "2561": "ฤ confused",
2570
+ "2562": "ฤ inferring",
2571
+ "2563": "ฤ record",
2572
+ "2564": "ฤ remember",
2573
+ "2565": "ฤ requested",
2574
+ "2566": "ฤ requirements",
2575
+ "2567": "ฤ repeat",
2576
+ "2568": "ฤ repeating",
2577
+ "2569": "ฤ store",
2578
+ "2570": "ฤ statement",
2579
+ "2571": "ternet",
2580
+ "2572": "ฤ crashed",
2581
+ "2573": "ฤ presenting",
2582
+ "2574": "ฤ needed",
2583
+ "2575": "ฤ immutable",
2584
+ "2576": "ฤ insulting",
2585
+ "2577": "ฤ differently",
2586
+ "2578": "ฤ getting",
2587
+ "2579": "ฤ separately",
2588
+ "2580": "ฤ confidently",
2589
+ "2581": "ฤ When",
2590
+ "2582": "ฤ error",
2591
+ "2583": "ฤ ร ยคยจร ยคยฌร ยคยฆร ยคยฒ",
2592
+ "2584": "ฤ copy",
2593
+ "2585": "ฤ sounds",
2594
+ "2586": "ฤ shorter",
2595
+ "2587": "ฤ shorten",
2596
+ "2588": "ฤ publishing",
2597
+ "2589": "ฤ tells",
2598
+ "2590": "ฤ telling",
2599
+ "2591": "ฤ words",
2600
+ "2592": "ฤ whole",
2601
+ "2593": "ฤ describe",
2602
+ "2594": "ฤ unsure",
2603
+ "2595": "ฤ build",
2604
+ "2596": "ฤ Internet",
2605
+ "2597": "ฤ incorrect",
2606
+ "2598": "ฤ inconsist",
2607
+ "2599": "ฤ include",
2608
+ "2600": "ฤ excited",
2609
+ "2601": "ฤ happens",
2610
+ "2602": "ฤ internet",
2611
+ "2603": "ฤ going",
2612
+ "2604": "ฤ suggested",
2613
+ "2605": "ฤ calmly",
2614
+ "2606": "ฤ improved",
2615
+ "2607": "ฤ consistently",
2616
+ "2608": "ฤ assume",
2617
+ "2609": "ฤ Being",
2618
+ "2610": "ฤ recognizing",
2619
+ "2611": "ฤ everything",
2620
+ "2612": "ฤ encouraging",
2621
+ "2613": "ฤ establish",
2622
+ "2614": "ฤ frustration",
2623
+ "2615": "ฤ challenging",
2624
+ "2616": "ฤ Final",
2625
+ "2617": "ฤ Friend",
2626
+ "2618": "ฤ indicate",
2627
+ "2619": "ฤ independ",
2628
+ "2620": "ฤ Report",
2629
+ "2621": "ฤ Repeat",
2630
+ "2622": "ฤ ร ยคฤงร ยคยฒร ยคฤน",
2631
+ "2623": "ฤ seems",
2632
+ "2624": "ฤ smaller",
2633
+ "2625": "ฤ distinct",
2634
+ "2626": "ฤ distinguish",
2635
+ "2627": "ร ยคยนร ยคยจร ยคยคร ยคฤท",
2636
+ "2628": "ฤ treat",
2637
+ "2629": "ฤ treating",
2638
+ "2630": "ฤ One",
2639
+ "2631": "ฤ Online",
2640
+ "2632": "ฤ pointing",
2641
+ "2633": "ฤ matches",
2642
+ "2634": "ฤ reported",
2643
+ "2635": "ฤ repres",
2644
+ "2636": "ฤ revealing",
2645
+ "2637": "ฤ thought",
2646
+ "2638": "ฤ thoughts",
2647
+ "2639": "ฤ disclose",
2648
+ "2640": "ฤ discouraging",
2649
+ "2641": "ฤ adapting",
2650
+ "2642": "ฤ Underlying",
2651
+ "2643": "ฤ Understood",
2652
+ "2644": "ฤ attacks",
2653
+ "2645": "ฤ attempts",
2654
+ "2646": "ฤ Insults",
2655
+ "2647": "ฤ addressing",
2656
+ "2648": "ฤ assumptions",
2657
+ "2649": "ฤ conditions",
2658
+ "2650": "ฤ motivation",
2659
+ "2651": "ฤ motivational",
2660
+ "2652": "ฤ listening",
2661
+ "2653": "ฤ organization",
2662
+ "2654": "ฤ organizational",
2663
+ "2655": "ฤ embarrassing",
2664
+ "2656": "ฤ embarrassed",
2665
+ "2657": "Formula",
2666
+ "2658": "Founder",
2667
+ "2659": "Judge",
2668
+ "2660": "Promise",
2669
+ "2661": "Pretend",
2670
+ "2662": "Privacy",
2671
+ "2663": "Respect",
2672
+ "2664": "Someone",
2673
+ "2665": "Should",
2674
+ "2666": "Training",
2675
+ "2667": "better",
2676
+ "2668": "ibly",
2677
+ "2669": "marize",
2678
+ "2670": "rounding",
2679
+ "2671": "raints",
2680
+ "2672": "ฤ entire",
2681
+ "2673": "ฤ mention",
2682
+ "2674": "ฤ blind",
2683
+ "2675": "ฤ ignoring",
2684
+ "2676": "ฤ gradual",
2685
+ "2677": "ฤ inspect",
2686
+ "2678": "ฤ ends",
2687
+ "2679": "ฤ role",
2688
+ "2680": "ฤ visibly",
2689
+ "2681": "ร ยคยชร ยคลร ยคฤท",
2690
+ "2682": "ฤ ร ยคฤนร ยคฤฑร ยคยชร ยคฤฝ",
2691
+ "2683": "ฤ ร ยคยจร ยคลƒร ยคฤช",
2692
+ "2684": "ฤ ร ยคยจร ยคฤผร ยคยฒ",
2693
+ "2685": "ฤ Saying",
2694
+ "2686": "ฤ choose",
2695
+ "2687": "ฤ celebrating",
2696
+ "2688": "ฤ surrounding",
2697
+ "2689": "ฤ sense",
2698
+ "2690": "ฤ summarize",
2699
+ "2691": "ฤ Correctness",
2700
+ "2692": "ฤ false",
2701
+ "2693": "ฤ finished",
2702
+ "2694": "ฤ future",
2703
+ "2695": "ฤ full",
2704
+ "2696": "ฤ fabricate",
2705
+ "2697": "ฤ fairly",
2706
+ "2698": "ฤ during",
2707
+ "2699": "ฤ people",
2708
+ "2700": "ฤ constraints",
2709
+ "2701": "ฤ Mistakes",
2710
+ "2702": "ฤ Thank",
2711
+ "2703": "ฤ determine",
2712
+ "2704": "essary",
2713
+ "2705": "ฤ proposed",
2714
+ "2706": "ฤ protected",
2715
+ "2707": "ฤ those",
2716
+ "2708": "ฤ time",
2717
+ "2709": "ฤ targeted",
2718
+ "2710": "ฤ witnessed",
2719
+ "2711": "ฤ persuasive",
2720
+ "2712": "ฤ angle",
2721
+ "2713": "ฤ Difficulty",
2722
+ "2714": "ฤ unintelligent",
2723
+ "2715": "ฤ unnecessary",
2724
+ "2716": "ฤ briefly",
2725
+ "2717": "ฤ conclusion",
2726
+ "2718": "ฤ authorization",
2727
+ "2719": "ฤ affects",
2728
+ "2720": "ฤ hiding",
2729
+ "2721": "ฤ Identity",
2730
+ "2722": "ฤ previous",
2731
+ "2723": "ฤ lecture",
2732
+ "2724": "ฤ leave",
2733
+ "2725": "ฤ label",
2734
+ "2726": "ฤ conflicts",
2735
+ "2727": "ฤ increase",
2736
+ "2728": "ฤ alternative",
2737
+ "2729": "ฤ always",
2738
+ "2730": "ฤ yesterday",
2739
+ "2731": "ฤ matters",
2740
+ "2732": "ฤ materials",
2741
+ "2733": "ฤ review",
2742
+ "2734": "ฤ reduce",
2743
+ "2735": "ฤ reliable",
2744
+ "2736": "ฤ studying",
2745
+ "2737": "ฤ exists",
2746
+ "2738": "ฤ exactly",
2747
+ "2739": "ฤ effort",
2748
+ "2740": "ฤ promises",
2749
+ "2741": "ฤ sometimes",
2750
+ "2742": "ฤ advanced",
2751
+ "2743": "ฤ availability",
2752
+ "2744": "ฤ important",
2753
+ "2745": "ฤ appears",
2754
+ "2746": "ฤ Updating",
2755
+ "2747": "ฤ associated",
2756
+ "2748": "ฤ insufficient",
2757
+ "2749": "ฤ inconsistency",
2758
+ "2750": "ฤ Friendly",
2759
+ "2751": "ฤ independence",
2760
+ "2752": "ฤ distinction",
2761
+ "2753": "ฤ represent",
2762
+ "2754": "Respectful",
2763
+ "2755": "ฤ gradually",
2764
+ "2756": "เค…",
2765
+ "2757": "เค†",
2766
+ "2758": "เค‡",
2767
+ "2759": "เคˆ",
2768
+ "2760": "เค‰",
2769
+ "2761": "เคŠ",
2770
+ "2762": "เค‹",
2771
+ "2763": "เฅ ",
2772
+ "2764": "เคŒ",
2773
+ "2765": "เฅก",
2774
+ "2766": "เค",
2775
+ "2767": "เค“",
2776
+ "2768": "เค”",
2777
+ "2769": "เค–",
2778
+ "2770": "เค˜",
2779
+ "2771": "เค™",
2780
+ "2772": "เคš",
2781
+ "2773": "เค›",
2782
+ "2774": "เค",
2783
+ "2775": "เคž",
2784
+ "2776": "เคŸ",
2785
+ "2777": "เค ",
2786
+ "2778": "เคก",
2787
+ "2779": "เคข",
2788
+ "2780": "เคฃ",
2789
+ "2781": "เคฅ",
2790
+ "2782": "เคง",
2791
+ "2783": "เคซ",
2792
+ "2784": "เคฏ",
2793
+ "2785": "เคต",
2794
+ "2786": "เคถ",
2795
+ "2787": "เคท",
2796
+ "2788": "เค",
2797
+ "2789": "เคƒ",
2798
+ "2790": "เคผ",
2799
+ "2791": "เฅ‚",
2800
+ "2792": "เฅƒ",
2801
+ "2793": "เฅ„",
2802
+ "2794": "เฅ…",
2803
+ "2795": "เฅ†",
2804
+ "2796": "เฅˆ",
2805
+ "2797": "เฅ‰",
2806
+ "2798": "เฅŠ",
2807
+ "2799": "เฅŒ",
2808
+ "2800": "เฅฅ",
2809
+ "2801": "เฅฆ",
2810
+ "2802": "เฅง",
2811
+ "2803": "เฅจ",
2812
+ "2804": "เฅฉ",
2813
+ "2805": "เฅช",
2814
+ "2806": "เฅซ",
2815
+ "2807": "เฅฌ",
2816
+ "2808": "เฅญ",
2817
+ "2809": "เฅฎ",
2818
+ "2810": "เฅฏ",
2819
+ "2811": "ฯ€",
2820
+ "2812": "โ‰ˆ",
2821
+ "2813": "โ€”",
2822
+ "2814": "โ€",
2823
+ "2815": "ุง",
2824
+ "2816": "ุจ",
2825
+ "2817": "ุญ",
2826
+ "2818": "ุฑ",
2827
+ "2819": "ู…",
2828
+ "2820": "แตข",
2829
+ "2821": "โ€“",
2830
+ "2822": "โ€˜",
2831
+ "2823": "โ€™",
2832
+ "2824": "โ€œ",
2833
+ "2825": "โ€",
2834
+ "2826": "โ€ฆ",
2835
+ "2827": "โ‚ฌ",
2836
+ "2828": "โ‚น",
2837
+ "2829": "โ‚ฝ",
2838
+ "2830": "โ„ข",
2839
+ "2831": "โ†",
2840
+ "2832": "โ†‘",
2841
+ "2833": "โ†’",
2842
+ "2834": "โ†“",
2843
+ "2835": "โ†”",
2844
+ "2836": "โ‡’",
2845
+ "2837": "โ‡”",
2846
+ "2838": "โˆ",
2847
+ "2839": "โˆ‘",
2848
+ "2840": "โˆš",
2849
+ "2841": "โˆž",
2850
+ "2842": "โˆซ",
2851
+ "2843": "โ‰ ",
2852
+ "2844": "โ‰ค",
2853
+ "2845": "โ‰ฅ",
2854
+ "2846": "โ™‚",
2855
+ "2847": "ใ“",
2856
+ "2848": "ใก",
2857
+ "2849": "ใซ",
2858
+ "2850": "ใฏ",
2859
+ "2851": "ใ‚“",
2860
+ "2852": "ๆ—ฅ",
2861
+ "2853": "ๆœฌ",
2862
+ "2854": "๋…•",
2863
+ "2855": "์„ธ",
2864
+ "2856": "์•ˆ",
2865
+ "2857": "์š”",
2866
+ "2858": "ํ•˜",
2867
+ "2859": "๏ธ",
2868
+ "2860": "๐Ÿ‡ง",
2869
+ "2861": "๐Ÿ‡ฌ",
2870
+ "2862": "๐Ÿ‡ฎ",
2871
+ "2863": "๐Ÿ‡ฏ",
2872
+ "2864": "๐Ÿ‡ณ",
2873
+ "2865": "๐Ÿ‡ต",
2874
+ "2866": "๐Ÿ‡ธ",
2875
+ "2867": "๐Ÿ‡บ",
2876
+ "2868": "๐ŸŒ‹",
2877
+ "2869": "๐Ÿƒ",
2878
+ "2870": "๐Ÿ‘ฆ",
2879
+ "2871": "๐Ÿ‘ง",
2880
+ "2872": "๐Ÿ‘จ",
2881
+ "2873": "๐Ÿ‘ฉ",
2882
+ "2874": "๐Ÿ’ป",
2883
+ "2875": "๐Ÿ”ฅ",
2884
+ "2876": "๐Ÿ˜€",
2885
+ "2877": "๐Ÿ˜",
2886
+ "2878": "๐Ÿ˜‚",
2887
+ "2879": "๐Ÿ˜ƒ",
2888
+ "2880": "๐Ÿ˜„",
2889
+ "2881": "๐Ÿ˜…",
2890
+ "2882": "๐Ÿ˜†",
2891
+ "2883": "๐Ÿ˜Š",
2892
+ "2884": "๐Ÿ˜",
2893
+ "2885": "๐Ÿš€",
2894
+ "2886": "๐Ÿค–",
2895
+ "2887": "๐Ÿคฃ",
2896
+ "2888": "๐Ÿง‘",
2897
+ "2889": "๐Ÿง "
2898
  },
2899
+ "merges": [],
2900
+ "special_tokens": {},
2901
+ "metadata": {
2902
+ "languages": [
2903
+ "Nepali",
2904
+ "English"
2905
+ ],
2906
+ "unicode_safe": true,
2907
+ "devanagari_support": true,
2908
+ "emoji_support": true,
2909
+ "mathematical_symbol_support": true,
2910
+ "multilingual_support": true,
2911
+ "roundtrip_safe": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2912
  }
2913
  }