@protontech/autofill 0.0.22991789 → 0.0.33690782

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (190) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +17 -0
  16. package/features/feature.js +72 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4427 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +5 -2
  38. package/index.js +10 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +27 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/prod_20240829/index.d.ts +2 -0
  52. package/models/prod_20240829/index.js +27 -0
  53. package/models/prod_20240829/params/email-model.json +45 -0
  54. package/models/prod_20240829/params/login-model.json +421 -0
  55. package/models/prod_20240829/params/new-password-model.json +125 -0
  56. package/models/prod_20240829/params/otp-model.json +153 -0
  57. package/models/prod_20240829/params/password-change-model.json +421 -0
  58. package/models/prod_20240829/params/password-model.json +125 -0
  59. package/models/prod_20240829/params/recovery-model.json +421 -0
  60. package/models/prod_20240829/params/register-model.json +421 -0
  61. package/models/prod_20240829/params/username-hidden-model.json +41 -0
  62. package/models/prod_20240829/params/username-model.json +45 -0
  63. package/models/random_forest/index.d.ts +2 -0
  64. package/models/random_forest/index.js +27 -0
  65. package/models/random_forest/params/email-model.json +1456 -0
  66. package/models/random_forest/params/login-model.json +4194 -0
  67. package/models/random_forest/params/new-password-model.json +1448 -0
  68. package/models/random_forest/params/otp-model.json +2004 -0
  69. package/models/random_forest/params/password-change-model.json +1422 -0
  70. package/models/random_forest/params/password-model.json +1292 -0
  71. package/models/random_forest/params/recovery-model.json +2754 -0
  72. package/models/random_forest/params/register-model.json +3678 -0
  73. package/models/random_forest/params/username-hidden-model.json +1108 -0
  74. package/models/random_forest/params/username-model.json +1052 -0
  75. package/models/v1/index.d.ts +2 -0
  76. package/models/v1/index.js +35 -0
  77. package/package.json +14 -15
  78. package/rules/v1/index.d.ts +3 -0
  79. package/rules/v1/index.js +69 -0
  80. package/rulesets.d.ts +2 -2
  81. package/rulesets.js +11 -10
  82. package/types/index.d.ts +72 -17
  83. package/types/index.js +35 -2
  84. package/utils/attributes.js +1 -1
  85. package/utils/clustering.js +18 -5
  86. package/utils/credit-card.d.ts +32 -0
  87. package/utils/credit-card.js +259 -0
  88. package/utils/credit-card.samples.spec.d.ts +1 -0
  89. package/utils/credit-card.samples.spec.js +452 -0
  90. package/utils/credit-card.spec.d.ts +1 -0
  91. package/utils/credit-card.spec.js +296 -0
  92. package/utils/dom.d.ts +3 -2
  93. package/utils/dom.js +12 -7
  94. package/utils/exclusion.d.ts +1 -0
  95. package/utils/exclusion.js +22 -10
  96. package/utils/extract.d.ts +1 -0
  97. package/utils/extract.js +26 -7
  98. package/utils/fathom.d.ts +10 -23
  99. package/utils/fathom.js +7 -12
  100. package/utils/field.d.ts +12 -4
  101. package/utils/field.js +25 -14
  102. package/utils/flags.d.ts +9 -3
  103. package/utils/flags.js +27 -9
  104. package/utils/form.d.ts +16 -5
  105. package/utils/form.js +35 -14
  106. package/utils/identity.d.ts +12 -21
  107. package/utils/identity.js +66 -41
  108. package/utils/identity.samples.spec.d.ts +1 -0
  109. package/utils/identity.samples.spec.js +28 -0
  110. package/utils/iframe.d.ts +2 -0
  111. package/utils/iframe.js +22 -0
  112. package/utils/overrides.d.ts +19 -0
  113. package/utils/overrides.js +40 -0
  114. package/utils/prepass.js +6 -4
  115. package/utils/re.d.ts +19 -4
  116. package/utils/re.js +22 -7
  117. package/utils/re.spec.d.ts +1 -0
  118. package/utils/re.spec.js +62 -0
  119. package/utils/shadow-dom.d.ts +8 -0
  120. package/utils/shadow-dom.js +53 -0
  121. package/utils/shadow-dom.spec.d.ts +1 -0
  122. package/utils/shadow-dom.spec.js +215 -0
  123. package/utils/visible.d.ts +3 -2
  124. package/utils/visible.js +42 -22
  125. package/cli.d.ts +0 -2
  126. package/cli.js +0 -128
  127. package/features/abstract.field.d.ts +0 -123
  128. package/features/abstract.field.js +0 -63
  129. package/features/abstract.form.d.ts +0 -98
  130. package/features/abstract.form.js +0 -281
  131. package/features/field.email.d.ts +0 -18
  132. package/features/field.email.js +0 -43
  133. package/features/field.otp.d.ts +0 -36
  134. package/features/field.otp.js +0 -116
  135. package/features/field.password.d.ts +0 -35
  136. package/features/field.password.js +0 -104
  137. package/features/field.username-hidden.d.ts +0 -15
  138. package/features/field.username-hidden.js +0 -40
  139. package/features/field.username.d.ts +0 -16
  140. package/features/field.username.js +0 -41
  141. package/features/form.combined.d.ts +0 -1
  142. package/features/form.combined.js +0 -6
  143. package/trainees/field.email.d.ts +0 -2
  144. package/trainees/field.email.js +0 -16
  145. package/trainees/field.identity.d.ts +0 -2
  146. package/trainees/field.identity.js +0 -9
  147. package/trainees/field.otp.d.ts +0 -2
  148. package/trainees/field.otp.js +0 -16
  149. package/trainees/field.password.current.d.ts +0 -2
  150. package/trainees/field.password.current.js +0 -16
  151. package/trainees/field.password.new.d.ts +0 -2
  152. package/trainees/field.password.new.js +0 -16
  153. package/trainees/field.username-hidden.d.ts +0 -2
  154. package/trainees/field.username-hidden.js +0 -22
  155. package/trainees/field.username.d.ts +0 -2
  156. package/trainees/field.username.js +0 -16
  157. package/trainees/form.login.d.ts +0 -2
  158. package/trainees/form.login.js +0 -16
  159. package/trainees/form.noop.d.ts +0 -1
  160. package/trainees/form.noop.js +0 -7
  161. package/trainees/form.password-change.d.ts +0 -2
  162. package/trainees/form.password-change.js +0 -16
  163. package/trainees/form.recovery.d.ts +0 -2
  164. package/trainees/form.recovery.js +0 -16
  165. package/trainees/form.register.d.ts +0 -2
  166. package/trainees/form.register.js +0 -16
  167. package/trainees/index.d.ts +0 -9
  168. package/trainees/index.js +0 -72
  169. package/trainees/results/result.email.d.ts +0 -2
  170. package/trainees/results/result.email.js +0 -17
  171. package/trainees/results/result.login.d.ts +0 -2
  172. package/trainees/results/result.login.js +0 -110
  173. package/trainees/results/result.new-password.d.ts +0 -2
  174. package/trainees/results/result.new-password.js +0 -36
  175. package/trainees/results/result.otp.d.ts +0 -2
  176. package/trainees/results/result.otp.js +0 -43
  177. package/trainees/results/result.password-change.d.ts +0 -2
  178. package/trainees/results/result.password-change.js +0 -110
  179. package/trainees/results/result.password.d.ts +0 -2
  180. package/trainees/results/result.password.js +0 -36
  181. package/trainees/results/result.recovery.d.ts +0 -2
  182. package/trainees/results/result.recovery.js +0 -110
  183. package/trainees/results/result.register.d.ts +0 -2
  184. package/trainees/results/result.register.js +0 -110
  185. package/trainees/results/result.username-hidden.d.ts +0 -2
  186. package/trainees/results/result.username-hidden.js +0 -15
  187. package/trainees/results/result.username.d.ts +0 -2
  188. package/trainees/results/result.username.js +0 -16
  189. package/utils/memoize.d.ts +0 -5
  190. package/utils/memoize.js +0 -12
@@ -0,0 +1,1448 @@
1
+ {
2
+ "trees": [
3
+ {
4
+ "categories_nodes": [],
5
+ "categories_segments": [],
6
+ "categories_sizes": [],
7
+ "categories": [],
8
+ "default_left": [
9
+ 0,
10
+ 0,
11
+ 0,
12
+ 0,
13
+ 0,
14
+ 0,
15
+ 0,
16
+ 0,
17
+ 0,
18
+ 0,
19
+ 0
20
+ ],
21
+ "id": 0,
22
+ "left_children": [
23
+ 1,
24
+ 3,
25
+ -1,
26
+ 5,
27
+ -1,
28
+ 7,
29
+ -1,
30
+ 9,
31
+ -1,
32
+ -1,
33
+ -1
34
+ ],
35
+ "right_children": [
36
+ 2,
37
+ 4,
38
+ -1,
39
+ 6,
40
+ -1,
41
+ 8,
42
+ -1,
43
+ 10,
44
+ -1,
45
+ -1,
46
+ -1
47
+ ],
48
+ "split_conditions": [
49
+ 1,
50
+ 1,
51
+ -1.0684268,
52
+ 1,
53
+ -0.8698359,
54
+ 1,
55
+ -0.66187483,
56
+ 1,
57
+ -0.61957103,
58
+ 0.49743783,
59
+ 0.10796653
60
+ ],
61
+ "split_indices": [
62
+ 11,
63
+ 15,
64
+ 0,
65
+ 20,
66
+ 0,
67
+ 9,
68
+ 0,
69
+ 2,
70
+ 0,
71
+ 0,
72
+ 0
73
+ ],
74
+ "split_type": [
75
+ 0,
76
+ 0,
77
+ 0,
78
+ 0,
79
+ 0,
80
+ 0,
81
+ 0,
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0
86
+ ]
87
+ },
88
+ {
89
+ "categories_nodes": [],
90
+ "categories_segments": [],
91
+ "categories_sizes": [],
92
+ "categories": [],
93
+ "default_left": [
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 0,
101
+ 0,
102
+ 0,
103
+ 0,
104
+ 0
105
+ ],
106
+ "id": 1,
107
+ "left_children": [
108
+ 1,
109
+ 3,
110
+ -1,
111
+ 5,
112
+ -1,
113
+ 7,
114
+ -1,
115
+ 9,
116
+ -1,
117
+ -1,
118
+ -1
119
+ ],
120
+ "right_children": [
121
+ 2,
122
+ 4,
123
+ -1,
124
+ 6,
125
+ -1,
126
+ 8,
127
+ -1,
128
+ 10,
129
+ -1,
130
+ -1,
131
+ -1
132
+ ],
133
+ "split_conditions": [
134
+ 1,
135
+ 1,
136
+ -0.58295226,
137
+ 1,
138
+ -0.5381904,
139
+ 1,
140
+ -0.46587023,
141
+ 1,
142
+ -0.44782868,
143
+ 0.43160474,
144
+ 0.08548157
145
+ ],
146
+ "split_indices": [
147
+ 11,
148
+ 15,
149
+ 0,
150
+ 20,
151
+ 0,
152
+ 9,
153
+ 0,
154
+ 2,
155
+ 0,
156
+ 0,
157
+ 0
158
+ ],
159
+ "split_type": [
160
+ 0,
161
+ 0,
162
+ 0,
163
+ 0,
164
+ 0,
165
+ 0,
166
+ 0,
167
+ 0,
168
+ 0,
169
+ 0,
170
+ 0
171
+ ]
172
+ },
173
+ {
174
+ "categories_nodes": [],
175
+ "categories_segments": [],
176
+ "categories_sizes": [],
177
+ "categories": [],
178
+ "default_left": [
179
+ 0,
180
+ 0,
181
+ 0,
182
+ 0,
183
+ 0,
184
+ 0,
185
+ 0,
186
+ 0,
187
+ 0,
188
+ 0,
189
+ 0,
190
+ 0,
191
+ 0
192
+ ],
193
+ "id": 2,
194
+ "left_children": [
195
+ 1,
196
+ 3,
197
+ -1,
198
+ 5,
199
+ -1,
200
+ 7,
201
+ -1,
202
+ 9,
203
+ -1,
204
+ -1,
205
+ 11,
206
+ -1,
207
+ -1
208
+ ],
209
+ "right_children": [
210
+ 2,
211
+ 4,
212
+ -1,
213
+ 6,
214
+ -1,
215
+ 8,
216
+ -1,
217
+ 10,
218
+ -1,
219
+ -1,
220
+ 12,
221
+ -1,
222
+ -1
223
+ ],
224
+ "split_conditions": [
225
+ 1,
226
+ 1,
227
+ -0.46492106,
228
+ 1,
229
+ -0.42226633,
230
+ 1,
231
+ -0.3689748,
232
+ 1,
233
+ -0.35703117,
234
+ 0.39883202,
235
+ 1,
236
+ -0.0066284756,
237
+ 0.2673945
238
+ ],
239
+ "split_indices": [
240
+ 11,
241
+ 15,
242
+ 0,
243
+ 20,
244
+ 0,
245
+ 9,
246
+ 0,
247
+ 4,
248
+ 0,
249
+ 0,
250
+ 1,
251
+ 0,
252
+ 0
253
+ ],
254
+ "split_type": [
255
+ 0,
256
+ 0,
257
+ 0,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ 0,
265
+ 0,
266
+ 0,
267
+ 0
268
+ ]
269
+ },
270
+ {
271
+ "categories_nodes": [],
272
+ "categories_segments": [],
273
+ "categories_sizes": [],
274
+ "categories": [],
275
+ "default_left": [
276
+ 0,
277
+ 0,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ 0,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ 0,
287
+ 0,
288
+ 0
289
+ ],
290
+ "id": 3,
291
+ "left_children": [
292
+ 1,
293
+ 3,
294
+ -1,
295
+ 5,
296
+ -1,
297
+ 7,
298
+ -1,
299
+ 9,
300
+ -1,
301
+ 11,
302
+ -1,
303
+ -1,
304
+ -1
305
+ ],
306
+ "right_children": [
307
+ 2,
308
+ 4,
309
+ -1,
310
+ 6,
311
+ -1,
312
+ 8,
313
+ -1,
314
+ 10,
315
+ -1,
316
+ 12,
317
+ -1,
318
+ -1,
319
+ -1
320
+ ],
321
+ "split_conditions": [
322
+ 1,
323
+ 1,
324
+ -0.404177,
325
+ 1,
326
+ -0.35723823,
327
+ 1,
328
+ -0.30888295,
329
+ 1,
330
+ -0.2992825,
331
+ 1,
332
+ 0,
333
+ 0.3775506,
334
+ 0.17438516
335
+ ],
336
+ "split_indices": [
337
+ 11,
338
+ 15,
339
+ 0,
340
+ 20,
341
+ 0,
342
+ 9,
343
+ 0,
344
+ 2,
345
+ 0,
346
+ 4,
347
+ 0,
348
+ 0,
349
+ 0
350
+ ],
351
+ "split_type": [
352
+ 0,
353
+ 0,
354
+ 0,
355
+ 0,
356
+ 0,
357
+ 0,
358
+ 0,
359
+ 0,
360
+ 0,
361
+ 0,
362
+ 0,
363
+ 0,
364
+ 0
365
+ ]
366
+ },
367
+ {
368
+ "categories_nodes": [],
369
+ "categories_segments": [],
370
+ "categories_sizes": [],
371
+ "categories": [],
372
+ "default_left": [
373
+ 0,
374
+ 0,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0,
385
+ 0,
386
+ 0,
387
+ 0
388
+ ],
389
+ "id": 4,
390
+ "left_children": [
391
+ 1,
392
+ 3,
393
+ 5,
394
+ 7,
395
+ -1,
396
+ -1,
397
+ -1,
398
+ 9,
399
+ -1,
400
+ 11,
401
+ -1,
402
+ -1,
403
+ 13,
404
+ -1,
405
+ -1
406
+ ],
407
+ "right_children": [
408
+ 2,
409
+ 4,
410
+ 6,
411
+ 8,
412
+ -1,
413
+ -1,
414
+ -1,
415
+ 10,
416
+ -1,
417
+ 12,
418
+ -1,
419
+ -1,
420
+ 14,
421
+ -1,
422
+ -1
423
+ ],
424
+ "split_conditions": [
425
+ 1,
426
+ 1,
427
+ 1,
428
+ 1,
429
+ -0.31243968,
430
+ -0.3912413,
431
+ -0.22888952,
432
+ 1,
433
+ -0.26630962,
434
+ 1,
435
+ -0.25800085,
436
+ 0.36260188,
437
+ 1,
438
+ -0.3700407,
439
+ 0.29843462
440
+ ],
441
+ "split_indices": [
442
+ 11,
443
+ 15,
444
+ 7,
445
+ 20,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 9,
450
+ 0,
451
+ 19,
452
+ 0,
453
+ 0,
454
+ 5,
455
+ 0,
456
+ 0
457
+ ],
458
+ "split_type": [
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0
474
+ ]
475
+ },
476
+ {
477
+ "categories_nodes": [],
478
+ "categories_segments": [],
479
+ "categories_sizes": [],
480
+ "categories": [],
481
+ "default_left": [
482
+ 0,
483
+ 0,
484
+ 0,
485
+ 0,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0,
493
+ 0,
494
+ 0,
495
+ 0,
496
+ 0
497
+ ],
498
+ "id": 5,
499
+ "left_children": [
500
+ 1,
501
+ 3,
502
+ 5,
503
+ 7,
504
+ -1,
505
+ -1,
506
+ -1,
507
+ 9,
508
+ -1,
509
+ 11,
510
+ -1,
511
+ -1,
512
+ 13,
513
+ -1,
514
+ -1
515
+ ],
516
+ "right_children": [
517
+ 2,
518
+ 4,
519
+ 6,
520
+ 8,
521
+ -1,
522
+ -1,
523
+ -1,
524
+ 10,
525
+ -1,
526
+ 12,
527
+ -1,
528
+ -1,
529
+ 14,
530
+ -1,
531
+ -1
532
+ ],
533
+ "split_conditions": [
534
+ 1,
535
+ 1,
536
+ 1,
537
+ 1,
538
+ -0.2775746,
539
+ -0.36624423,
540
+ -0.19057415,
541
+ 1,
542
+ -0.23355536,
543
+ 1,
544
+ -0.22620057,
545
+ 0.3460164,
546
+ 1,
547
+ -0.293766,
548
+ 0.28241032
549
+ ],
550
+ "split_indices": [
551
+ 11,
552
+ 15,
553
+ 7,
554
+ 20,
555
+ 0,
556
+ 0,
557
+ 0,
558
+ 9,
559
+ 0,
560
+ 19,
561
+ 0,
562
+ 0,
563
+ 16,
564
+ 0,
565
+ 0
566
+ ],
567
+ "split_type": [
568
+ 0,
569
+ 0,
570
+ 0,
571
+ 0,
572
+ 0,
573
+ 0,
574
+ 0,
575
+ 0,
576
+ 0,
577
+ 0,
578
+ 0,
579
+ 0,
580
+ 0,
581
+ 0,
582
+ 0
583
+ ]
584
+ },
585
+ {
586
+ "categories_nodes": [],
587
+ "categories_segments": [],
588
+ "categories_sizes": [],
589
+ "categories": [],
590
+ "default_left": [
591
+ 0,
592
+ 0,
593
+ 0,
594
+ 0,
595
+ 0,
596
+ 0,
597
+ 0,
598
+ 0,
599
+ 0,
600
+ 0,
601
+ 0,
602
+ 0,
603
+ 0
604
+ ],
605
+ "id": 6,
606
+ "left_children": [
607
+ 1,
608
+ 3,
609
+ 5,
610
+ 7,
611
+ -1,
612
+ -1,
613
+ -1,
614
+ 9,
615
+ -1,
616
+ 11,
617
+ -1,
618
+ -1,
619
+ -1
620
+ ],
621
+ "right_children": [
622
+ 2,
623
+ 4,
624
+ 6,
625
+ 8,
626
+ -1,
627
+ -1,
628
+ -1,
629
+ 10,
630
+ -1,
631
+ 12,
632
+ -1,
633
+ -1,
634
+ -1
635
+ ],
636
+ "split_conditions": [
637
+ 1,
638
+ 1,
639
+ 1,
640
+ 1,
641
+ 0.30589545,
642
+ -0.34647155,
643
+ -0.15656288,
644
+ 1,
645
+ 0.31010216,
646
+ 1,
647
+ 0.18955624,
648
+ -0.14657755,
649
+ -0.5266673
650
+ ],
651
+ "split_indices": [
652
+ 11,
653
+ 12,
654
+ 7,
655
+ 22,
656
+ 0,
657
+ 0,
658
+ 0,
659
+ 16,
660
+ 0,
661
+ 18,
662
+ 0,
663
+ 0,
664
+ 0
665
+ ],
666
+ "split_type": [
667
+ 0,
668
+ 0,
669
+ 0,
670
+ 0,
671
+ 0,
672
+ 0,
673
+ 0,
674
+ 0,
675
+ 0,
676
+ 0,
677
+ 0,
678
+ 0,
679
+ 0
680
+ ]
681
+ },
682
+ {
683
+ "categories_nodes": [],
684
+ "categories_segments": [],
685
+ "categories_sizes": [],
686
+ "categories": [],
687
+ "default_left": [
688
+ 0,
689
+ 0,
690
+ 0,
691
+ 0,
692
+ 0,
693
+ 0,
694
+ 0,
695
+ 0,
696
+ 0,
697
+ 0,
698
+ 0,
699
+ 0,
700
+ 0
701
+ ],
702
+ "id": 7,
703
+ "left_children": [
704
+ 1,
705
+ 3,
706
+ 5,
707
+ 7,
708
+ 9,
709
+ -1,
710
+ -1,
711
+ 11,
712
+ -1,
713
+ -1,
714
+ -1,
715
+ -1,
716
+ -1
717
+ ],
718
+ "right_children": [
719
+ 2,
720
+ 4,
721
+ 6,
722
+ 8,
723
+ 10,
724
+ -1,
725
+ -1,
726
+ 12,
727
+ -1,
728
+ -1,
729
+ -1,
730
+ -1,
731
+ -1
732
+ ],
733
+ "split_conditions": [
734
+ 1,
735
+ 1,
736
+ 1,
737
+ 1,
738
+ 1,
739
+ -0.32882312,
740
+ -0.12676324,
741
+ 1,
742
+ 0.29092464,
743
+ 0.3333822,
744
+ -0.22410493,
745
+ -0.10076578,
746
+ -0.32128462
747
+ ],
748
+ "split_indices": [
749
+ 11,
750
+ 12,
751
+ 7,
752
+ 22,
753
+ 20,
754
+ 0,
755
+ 0,
756
+ 19,
757
+ 0,
758
+ 0,
759
+ 0,
760
+ 0,
761
+ 0
762
+ ],
763
+ "split_type": [
764
+ 0,
765
+ 0,
766
+ 0,
767
+ 0,
768
+ 0,
769
+ 0,
770
+ 0,
771
+ 0,
772
+ 0,
773
+ 0,
774
+ 0,
775
+ 0,
776
+ 0
777
+ ]
778
+ },
779
+ {
780
+ "categories_nodes": [],
781
+ "categories_segments": [],
782
+ "categories_sizes": [],
783
+ "categories": [],
784
+ "default_left": [
785
+ 0,
786
+ 0,
787
+ 0,
788
+ 0,
789
+ 0,
790
+ 0,
791
+ 0,
792
+ 0,
793
+ 0,
794
+ 0,
795
+ 0,
796
+ 0,
797
+ 0,
798
+ 0,
799
+ 0
800
+ ],
801
+ "id": 8,
802
+ "left_children": [
803
+ 1,
804
+ 3,
805
+ 5,
806
+ 7,
807
+ 9,
808
+ -1,
809
+ -1,
810
+ 11,
811
+ -1,
812
+ -1,
813
+ -1,
814
+ 13,
815
+ -1,
816
+ -1,
817
+ -1
818
+ ],
819
+ "right_children": [
820
+ 2,
821
+ 4,
822
+ 6,
823
+ 8,
824
+ 10,
825
+ -1,
826
+ -1,
827
+ 12,
828
+ -1,
829
+ -1,
830
+ -1,
831
+ 14,
832
+ -1,
833
+ -1,
834
+ -1
835
+ ],
836
+ "split_conditions": [
837
+ 1,
838
+ 1,
839
+ 1,
840
+ 1,
841
+ 1,
842
+ -0.3115269,
843
+ -0.10121941,
844
+ 1,
845
+ 0.27109188,
846
+ 0.2840264,
847
+ 0.098319806,
848
+ 1,
849
+ 0.18918057,
850
+ -0.102185756,
851
+ -0.41418976
852
+ ],
853
+ "split_indices": [
854
+ 11,
855
+ 12,
856
+ 7,
857
+ 22,
858
+ 7,
859
+ 0,
860
+ 0,
861
+ 16,
862
+ 0,
863
+ 0,
864
+ 0,
865
+ 18,
866
+ 0,
867
+ 0,
868
+ 0
869
+ ],
870
+ "split_type": [
871
+ 0,
872
+ 0,
873
+ 0,
874
+ 0,
875
+ 0,
876
+ 0,
877
+ 0,
878
+ 0,
879
+ 0,
880
+ 0,
881
+ 0,
882
+ 0,
883
+ 0,
884
+ 0,
885
+ 0
886
+ ]
887
+ },
888
+ {
889
+ "categories_nodes": [],
890
+ "categories_segments": [],
891
+ "categories_sizes": [],
892
+ "categories": [],
893
+ "default_left": [
894
+ 0,
895
+ 0,
896
+ 0,
897
+ 0,
898
+ 0,
899
+ 0,
900
+ 0,
901
+ 0,
902
+ 0,
903
+ 0,
904
+ 0,
905
+ 0,
906
+ 0
907
+ ],
908
+ "id": 9,
909
+ "left_children": [
910
+ 1,
911
+ 3,
912
+ 5,
913
+ 7,
914
+ -1,
915
+ -1,
916
+ -1,
917
+ 9,
918
+ -1,
919
+ 11,
920
+ -1,
921
+ -1,
922
+ -1
923
+ ],
924
+ "right_children": [
925
+ 2,
926
+ 4,
927
+ 6,
928
+ 8,
929
+ -1,
930
+ -1,
931
+ -1,
932
+ 10,
933
+ -1,
934
+ 12,
935
+ -1,
936
+ -1,
937
+ -1
938
+ ],
939
+ "split_conditions": [
940
+ 1,
941
+ 1,
942
+ 1,
943
+ 1,
944
+ -0.22716466,
945
+ -0.29361704,
946
+ -0.07983644,
947
+ 1,
948
+ 0.3096535,
949
+ 1,
950
+ 0.25072566,
951
+ -0.04992432,
952
+ -0.21377085
953
+ ],
954
+ "split_indices": [
955
+ 11,
956
+ 20,
957
+ 7,
958
+ 12,
959
+ 0,
960
+ 0,
961
+ 0,
962
+ 22,
963
+ 0,
964
+ 19,
965
+ 0,
966
+ 0,
967
+ 0
968
+ ],
969
+ "split_type": [
970
+ 0,
971
+ 0,
972
+ 0,
973
+ 0,
974
+ 0,
975
+ 0,
976
+ 0,
977
+ 0,
978
+ 0,
979
+ 0,
980
+ 0,
981
+ 0,
982
+ 0
983
+ ]
984
+ },
985
+ {
986
+ "categories_nodes": [],
987
+ "categories_segments": [],
988
+ "categories_sizes": [],
989
+ "categories": [],
990
+ "default_left": [
991
+ 0,
992
+ 0,
993
+ 0,
994
+ 0,
995
+ 0,
996
+ 0,
997
+ 0,
998
+ 0,
999
+ 0,
1000
+ 0,
1001
+ 0,
1002
+ 0,
1003
+ 0,
1004
+ 0,
1005
+ 0
1006
+ ],
1007
+ "id": 10,
1008
+ "left_children": [
1009
+ 1,
1010
+ 3,
1011
+ 5,
1012
+ 7,
1013
+ 9,
1014
+ -1,
1015
+ -1,
1016
+ 11,
1017
+ -1,
1018
+ -1,
1019
+ -1,
1020
+ 13,
1021
+ -1,
1022
+ -1,
1023
+ -1
1024
+ ],
1025
+ "right_children": [
1026
+ 2,
1027
+ 4,
1028
+ 6,
1029
+ 8,
1030
+ 10,
1031
+ -1,
1032
+ -1,
1033
+ 12,
1034
+ -1,
1035
+ -1,
1036
+ -1,
1037
+ 14,
1038
+ -1,
1039
+ -1,
1040
+ -1
1041
+ ],
1042
+ "split_conditions": [
1043
+ 1,
1044
+ 1,
1045
+ 1,
1046
+ 1,
1047
+ 1,
1048
+ -0.27473122,
1049
+ -0.06232441,
1050
+ 1,
1051
+ 0.23026434,
1052
+ 0.23588946,
1053
+ 0.05588896,
1054
+ 1,
1055
+ 0.18256965,
1056
+ -0.071794786,
1057
+ -0.32123476
1058
+ ],
1059
+ "split_indices": [
1060
+ 11,
1061
+ 12,
1062
+ 7,
1063
+ 22,
1064
+ 7,
1065
+ 0,
1066
+ 0,
1067
+ 16,
1068
+ 0,
1069
+ 0,
1070
+ 0,
1071
+ 18,
1072
+ 0,
1073
+ 0,
1074
+ 0
1075
+ ],
1076
+ "split_type": [
1077
+ 0,
1078
+ 0,
1079
+ 0,
1080
+ 0,
1081
+ 0,
1082
+ 0,
1083
+ 0,
1084
+ 0,
1085
+ 0,
1086
+ 0,
1087
+ 0,
1088
+ 0,
1089
+ 0,
1090
+ 0,
1091
+ 0
1092
+ ]
1093
+ },
1094
+ {
1095
+ "categories_nodes": [],
1096
+ "categories_segments": [],
1097
+ "categories_sizes": [],
1098
+ "categories": [],
1099
+ "default_left": [
1100
+ 0,
1101
+ 0,
1102
+ 0,
1103
+ 0,
1104
+ 0,
1105
+ 0,
1106
+ 0,
1107
+ 0,
1108
+ 0,
1109
+ 0,
1110
+ 0,
1111
+ 0,
1112
+ 0
1113
+ ],
1114
+ "id": 11,
1115
+ "left_children": [
1116
+ 1,
1117
+ 3,
1118
+ 5,
1119
+ 7,
1120
+ -1,
1121
+ -1,
1122
+ -1,
1123
+ 9,
1124
+ -1,
1125
+ 11,
1126
+ -1,
1127
+ -1,
1128
+ -1
1129
+ ],
1130
+ "right_children": [
1131
+ 2,
1132
+ 4,
1133
+ 6,
1134
+ 8,
1135
+ -1,
1136
+ -1,
1137
+ -1,
1138
+ 10,
1139
+ -1,
1140
+ 12,
1141
+ -1,
1142
+ -1,
1143
+ -1
1144
+ ],
1145
+ "split_conditions": [
1146
+ 1,
1147
+ 1,
1148
+ 1,
1149
+ 1,
1150
+ -0.21390891,
1151
+ -0.25498638,
1152
+ -0.04824786,
1153
+ 1,
1154
+ 0.2832279,
1155
+ 1,
1156
+ 0.21027178,
1157
+ -0.026320776,
1158
+ -0.1438587
1159
+ ],
1160
+ "split_indices": [
1161
+ 11,
1162
+ 20,
1163
+ 7,
1164
+ 12,
1165
+ 0,
1166
+ 0,
1167
+ 0,
1168
+ 22,
1169
+ 0,
1170
+ 19,
1171
+ 0,
1172
+ 0,
1173
+ 0
1174
+ ],
1175
+ "split_type": [
1176
+ 0,
1177
+ 0,
1178
+ 0,
1179
+ 0,
1180
+ 0,
1181
+ 0,
1182
+ 0,
1183
+ 0,
1184
+ 0,
1185
+ 0,
1186
+ 0,
1187
+ 0,
1188
+ 0
1189
+ ]
1190
+ },
1191
+ {
1192
+ "categories_nodes": [],
1193
+ "categories_segments": [],
1194
+ "categories_sizes": [],
1195
+ "categories": [],
1196
+ "default_left": [
1197
+ 0,
1198
+ 0,
1199
+ 0,
1200
+ 0,
1201
+ 0,
1202
+ 0,
1203
+ 0,
1204
+ 0,
1205
+ 0,
1206
+ 0,
1207
+ 0,
1208
+ 0,
1209
+ 0
1210
+ ],
1211
+ "id": 12,
1212
+ "left_children": [
1213
+ 1,
1214
+ 3,
1215
+ -1,
1216
+ 5,
1217
+ 7,
1218
+ 9,
1219
+ -1,
1220
+ -1,
1221
+ -1,
1222
+ 11,
1223
+ -1,
1224
+ -1,
1225
+ -1
1226
+ ],
1227
+ "right_children": [
1228
+ 2,
1229
+ 4,
1230
+ -1,
1231
+ 6,
1232
+ 8,
1233
+ 10,
1234
+ -1,
1235
+ -1,
1236
+ -1,
1237
+ 12,
1238
+ -1,
1239
+ -1,
1240
+ -1
1241
+ ],
1242
+ "split_conditions": [
1243
+ 1,
1244
+ 1,
1245
+ 0.23758346,
1246
+ 1,
1247
+ 1,
1248
+ 1,
1249
+ -0.0661977,
1250
+ 0.15560074,
1251
+ 0,
1252
+ 1,
1253
+ -0.2343276,
1254
+ 0.07869541,
1255
+ -0.19763683
1256
+ ],
1257
+ "split_indices": [
1258
+ 16,
1259
+ 12,
1260
+ 0,
1261
+ 7,
1262
+ 7,
1263
+ 11,
1264
+ 0,
1265
+ 0,
1266
+ 0,
1267
+ 18,
1268
+ 0,
1269
+ 0,
1270
+ 0
1271
+ ],
1272
+ "split_type": [
1273
+ 0,
1274
+ 0,
1275
+ 0,
1276
+ 0,
1277
+ 0,
1278
+ 0,
1279
+ 0,
1280
+ 0,
1281
+ 0,
1282
+ 0,
1283
+ 0,
1284
+ 0,
1285
+ 0
1286
+ ]
1287
+ },
1288
+ {
1289
+ "categories_nodes": [],
1290
+ "categories_segments": [],
1291
+ "categories_sizes": [],
1292
+ "categories": [],
1293
+ "default_left": [
1294
+ 0,
1295
+ 0,
1296
+ 0,
1297
+ 0,
1298
+ 0,
1299
+ 0,
1300
+ 0,
1301
+ 0,
1302
+ 0
1303
+ ],
1304
+ "id": 13,
1305
+ "left_children": [
1306
+ 1,
1307
+ 3,
1308
+ -1,
1309
+ 5,
1310
+ -1,
1311
+ 7,
1312
+ -1,
1313
+ -1,
1314
+ -1
1315
+ ],
1316
+ "right_children": [
1317
+ 2,
1318
+ 4,
1319
+ -1,
1320
+ 6,
1321
+ -1,
1322
+ 8,
1323
+ -1,
1324
+ -1,
1325
+ -1
1326
+ ],
1327
+ "split_conditions": [
1328
+ 1,
1329
+ 1,
1330
+ 0.21690276,
1331
+ 1,
1332
+ 0.14176962,
1333
+ 1,
1334
+ 0.081492275,
1335
+ -0.23595187,
1336
+ -0.05680148
1337
+ ],
1338
+ "split_indices": [
1339
+ 16,
1340
+ 22,
1341
+ 0,
1342
+ 12,
1343
+ 0,
1344
+ 7,
1345
+ 0,
1346
+ 0,
1347
+ 0
1348
+ ],
1349
+ "split_type": [
1350
+ 0,
1351
+ 0,
1352
+ 0,
1353
+ 0,
1354
+ 0,
1355
+ 0,
1356
+ 0,
1357
+ 0,
1358
+ 0
1359
+ ]
1360
+ }
1361
+ ],
1362
+ "feature_names": [
1363
+ "new-password--attrConfirm",
1364
+ "new-password--attrCreate",
1365
+ "new-password--attrCurrent",
1366
+ "new-password--attrReset",
1367
+ "new-password--autocompleteCurrent",
1368
+ "new-password--autocompleteNew",
1369
+ "new-password--autocompleteOTP",
1370
+ "new-password--autocompleteOff",
1371
+ "new-password--fieldCC",
1372
+ "new-password--fieldExotic",
1373
+ "new-password--fieldIdentity",
1374
+ "new-password--fieldLogin",
1375
+ "new-password--fieldRegister",
1376
+ "new-password--labelConfirm",
1377
+ "new-password--labelCreate",
1378
+ "new-password--labelCurrent",
1379
+ "new-password--nextPwConfirm",
1380
+ "new-password--nextPwCurrent",
1381
+ "new-password--nextPwField",
1382
+ "new-password--nextPwNew",
1383
+ "new-password--passwordOutlier",
1384
+ "new-password--prevPwCurrent",
1385
+ "new-password--prevPwField",
1386
+ "new-password--prevPwNew",
1387
+ "new-password--textConfirm",
1388
+ "new-password--textCreate",
1389
+ "new-password--textCurrent",
1390
+ "new-password--fieldLogin,autocompleteNew",
1391
+ "new-password--fieldLogin,maybeNew",
1392
+ "new-password--fieldRegister,autocompleteCurrent",
1393
+ "new-password--fieldRegister,maybeCurrent",
1394
+ "new-password--prevPwCurrent,nextPwNew"
1395
+ ],
1396
+ "feature_types": [
1397
+ "int",
1398
+ "int",
1399
+ "int",
1400
+ "int",
1401
+ "int",
1402
+ "int",
1403
+ "int",
1404
+ "int",
1405
+ "int",
1406
+ "int",
1407
+ "int",
1408
+ "int",
1409
+ "int",
1410
+ "int",
1411
+ "int",
1412
+ "int",
1413
+ "int",
1414
+ "int",
1415
+ "int",
1416
+ "int",
1417
+ "int",
1418
+ "int",
1419
+ "int",
1420
+ "int",
1421
+ "int",
1422
+ "int",
1423
+ "int",
1424
+ "int",
1425
+ "int",
1426
+ "int",
1427
+ "int",
1428
+ "int"
1429
+ ],
1430
+ "tree_info": [
1431
+ 0,
1432
+ 0,
1433
+ 0,
1434
+ 0,
1435
+ 0,
1436
+ 0,
1437
+ 0,
1438
+ 0,
1439
+ 0,
1440
+ 0,
1441
+ 0,
1442
+ 0,
1443
+ 0,
1444
+ 0
1445
+ ],
1446
+ "num_class": 0,
1447
+ "objective": "binary:logistic"
1448
+ }