@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,1108 @@
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
+ ],
19
+ "id": 0,
20
+ "left_children": [
21
+ 1,
22
+ 3,
23
+ -1,
24
+ -1,
25
+ 5,
26
+ 7,
27
+ -1,
28
+ -1,
29
+ -1
30
+ ],
31
+ "right_children": [
32
+ 2,
33
+ 4,
34
+ -1,
35
+ -1,
36
+ 6,
37
+ 8,
38
+ -1,
39
+ -1,
40
+ -1
41
+ ],
42
+ "split_conditions": [
43
+ 1,
44
+ 1,
45
+ 0.9663704,
46
+ -0.5023872,
47
+ 1,
48
+ 1,
49
+ 0.9313285,
50
+ -0.28143215,
51
+ 0.6779853
52
+ ],
53
+ "split_indices": [
54
+ 8,
55
+ 3,
56
+ 0,
57
+ 0,
58
+ 0,
59
+ 2,
60
+ 0,
61
+ 0,
62
+ 0
63
+ ],
64
+ "split_type": [
65
+ 0,
66
+ 0,
67
+ 0,
68
+ 0,
69
+ 0,
70
+ 0,
71
+ 0,
72
+ 0,
73
+ 0
74
+ ]
75
+ },
76
+ {
77
+ "categories_nodes": [],
78
+ "categories_segments": [],
79
+ "categories_sizes": [],
80
+ "categories": [],
81
+ "default_left": [
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0
93
+ ],
94
+ "id": 1,
95
+ "left_children": [
96
+ 1,
97
+ 3,
98
+ 5,
99
+ -1,
100
+ 7,
101
+ -1,
102
+ -1,
103
+ 9,
104
+ -1,
105
+ -1,
106
+ -1
107
+ ],
108
+ "right_children": [
109
+ 2,
110
+ 4,
111
+ 6,
112
+ -1,
113
+ 8,
114
+ -1,
115
+ -1,
116
+ 10,
117
+ -1,
118
+ -1,
119
+ -1
120
+ ],
121
+ "split_conditions": [
122
+ 1,
123
+ 1,
124
+ 1,
125
+ -0.43745038,
126
+ 1,
127
+ 0.55882937,
128
+ 0.14207755,
129
+ 1,
130
+ 0.5558926,
131
+ -0.2444785,
132
+ 0.47237504
133
+ ],
134
+ "split_indices": [
135
+ 8,
136
+ 3,
137
+ 6,
138
+ 0,
139
+ 0,
140
+ 0,
141
+ 0,
142
+ 2,
143
+ 0,
144
+ 0,
145
+ 0
146
+ ],
147
+ "split_type": [
148
+ 0,
149
+ 0,
150
+ 0,
151
+ 0,
152
+ 0,
153
+ 0,
154
+ 0,
155
+ 0,
156
+ 0,
157
+ 0,
158
+ 0
159
+ ]
160
+ },
161
+ {
162
+ "categories_nodes": [],
163
+ "categories_segments": [],
164
+ "categories_sizes": [],
165
+ "categories": [],
166
+ "default_left": [
167
+ 0,
168
+ 0,
169
+ 0,
170
+ 0,
171
+ 0,
172
+ 0,
173
+ 0,
174
+ 0,
175
+ 0,
176
+ 0,
177
+ 0
178
+ ],
179
+ "id": 2,
180
+ "left_children": [
181
+ 1,
182
+ 3,
183
+ 5,
184
+ -1,
185
+ 7,
186
+ -1,
187
+ -1,
188
+ 9,
189
+ -1,
190
+ -1,
191
+ -1
192
+ ],
193
+ "right_children": [
194
+ 2,
195
+ 4,
196
+ 6,
197
+ -1,
198
+ 8,
199
+ -1,
200
+ -1,
201
+ 10,
202
+ -1,
203
+ -1,
204
+ -1
205
+ ],
206
+ "split_conditions": [
207
+ 1,
208
+ 1,
209
+ 1,
210
+ -0.40053633,
211
+ 1,
212
+ 0.43166316,
213
+ 0.11213473,
214
+ 1,
215
+ 0.43835866,
216
+ -0.21539547,
217
+ 0.37346515
218
+ ],
219
+ "split_indices": [
220
+ 8,
221
+ 3,
222
+ 6,
223
+ 0,
224
+ 0,
225
+ 0,
226
+ 0,
227
+ 2,
228
+ 0,
229
+ 0,
230
+ 0
231
+ ],
232
+ "split_type": [
233
+ 0,
234
+ 0,
235
+ 0,
236
+ 0,
237
+ 0,
238
+ 0,
239
+ 0,
240
+ 0,
241
+ 0,
242
+ 0,
243
+ 0
244
+ ]
245
+ },
246
+ {
247
+ "categories_nodes": [],
248
+ "categories_segments": [],
249
+ "categories_sizes": [],
250
+ "categories": [],
251
+ "default_left": [
252
+ 0,
253
+ 0,
254
+ 0,
255
+ 0,
256
+ 0,
257
+ 0,
258
+ 0
259
+ ],
260
+ "id": 3,
261
+ "left_children": [
262
+ 1,
263
+ 3,
264
+ -1,
265
+ -1,
266
+ 5,
267
+ -1,
268
+ -1
269
+ ],
270
+ "right_children": [
271
+ 2,
272
+ 4,
273
+ -1,
274
+ -1,
275
+ 6,
276
+ -1,
277
+ -1
278
+ ],
279
+ "split_conditions": [
280
+ 1,
281
+ 1,
282
+ 0.38996693,
283
+ -0.37626892,
284
+ 1,
285
+ -0.27649283,
286
+ 0.40189734
287
+ ],
288
+ "split_indices": [
289
+ 3,
290
+ 8,
291
+ 0,
292
+ 0,
293
+ 2,
294
+ 0,
295
+ 0
296
+ ],
297
+ "split_type": [
298
+ 0,
299
+ 0,
300
+ 0,
301
+ 0,
302
+ 0,
303
+ 0,
304
+ 0
305
+ ]
306
+ },
307
+ {
308
+ "categories_nodes": [],
309
+ "categories_segments": [],
310
+ "categories_sizes": [],
311
+ "categories": [],
312
+ "default_left": [
313
+ 0,
314
+ 0,
315
+ 0,
316
+ 0,
317
+ 0,
318
+ 0,
319
+ 0,
320
+ 0,
321
+ 0,
322
+ 0,
323
+ 0
324
+ ],
325
+ "id": 4,
326
+ "left_children": [
327
+ 1,
328
+ 3,
329
+ 5,
330
+ -1,
331
+ 7,
332
+ -1,
333
+ -1,
334
+ 9,
335
+ -1,
336
+ -1,
337
+ -1
338
+ ],
339
+ "right_children": [
340
+ 2,
341
+ 4,
342
+ 6,
343
+ -1,
344
+ 8,
345
+ -1,
346
+ -1,
347
+ 10,
348
+ -1,
349
+ -1,
350
+ -1
351
+ ],
352
+ "split_conditions": [
353
+ 1,
354
+ 1,
355
+ 1,
356
+ -0.35819644,
357
+ 1,
358
+ 0.31799963,
359
+ 0.051092748,
360
+ 1,
361
+ 0.32908025,
362
+ -0.23591001,
363
+ 0.25992033
364
+ ],
365
+ "split_indices": [
366
+ 8,
367
+ 3,
368
+ 6,
369
+ 0,
370
+ 0,
371
+ 0,
372
+ 0,
373
+ 2,
374
+ 0,
375
+ 0,
376
+ 0
377
+ ],
378
+ "split_type": [
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0
390
+ ]
391
+ },
392
+ {
393
+ "categories_nodes": [],
394
+ "categories_segments": [],
395
+ "categories_sizes": [],
396
+ "categories": [],
397
+ "default_left": [
398
+ 0,
399
+ 0,
400
+ 0,
401
+ 0,
402
+ 0,
403
+ 0,
404
+ 0
405
+ ],
406
+ "id": 5,
407
+ "left_children": [
408
+ 1,
409
+ 3,
410
+ -1,
411
+ -1,
412
+ 5,
413
+ -1,
414
+ -1
415
+ ],
416
+ "right_children": [
417
+ 2,
418
+ 4,
419
+ -1,
420
+ -1,
421
+ 6,
422
+ -1,
423
+ -1
424
+ ],
425
+ "split_conditions": [
426
+ 1,
427
+ 1,
428
+ 0.3000668,
429
+ -0.35021028,
430
+ 1,
431
+ -0.23507138,
432
+ 0.32960477
433
+ ],
434
+ "split_indices": [
435
+ 3,
436
+ 2,
437
+ 0,
438
+ 0,
439
+ 8,
440
+ 0,
441
+ 0
442
+ ],
443
+ "split_type": [
444
+ 0,
445
+ 0,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 0
451
+ ]
452
+ },
453
+ {
454
+ "categories_nodes": [],
455
+ "categories_segments": [],
456
+ "categories_sizes": [],
457
+ "categories": [],
458
+ "default_left": [
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0
470
+ ],
471
+ "id": 6,
472
+ "left_children": [
473
+ 1,
474
+ 3,
475
+ 5,
476
+ 7,
477
+ -1,
478
+ 9,
479
+ -1,
480
+ -1,
481
+ -1,
482
+ -1,
483
+ -1
484
+ ],
485
+ "right_children": [
486
+ 2,
487
+ 4,
488
+ 6,
489
+ 8,
490
+ -1,
491
+ 10,
492
+ -1,
493
+ -1,
494
+ -1,
495
+ -1,
496
+ -1
497
+ ],
498
+ "split_conditions": [
499
+ 1,
500
+ 1,
501
+ 1,
502
+ 1,
503
+ 0.26613352,
504
+ 1,
505
+ 0.3172974,
506
+ -0.33937696,
507
+ -0.037531197,
508
+ -0.17028445,
509
+ 0.30147302
510
+ ],
511
+ "split_indices": [
512
+ 8,
513
+ 0,
514
+ 3,
515
+ 2,
516
+ 0,
517
+ 2,
518
+ 0,
519
+ 0,
520
+ 0,
521
+ 0,
522
+ 0
523
+ ],
524
+ "split_type": [
525
+ 0,
526
+ 0,
527
+ 0,
528
+ 0,
529
+ 0,
530
+ 0,
531
+ 0,
532
+ 0,
533
+ 0,
534
+ 0,
535
+ 0
536
+ ]
537
+ },
538
+ {
539
+ "categories_nodes": [],
540
+ "categories_segments": [],
541
+ "categories_sizes": [],
542
+ "categories": [],
543
+ "default_left": [
544
+ 0,
545
+ 0,
546
+ 0,
547
+ 0,
548
+ 0,
549
+ 0,
550
+ 0
551
+ ],
552
+ "id": 7,
553
+ "left_children": [
554
+ 1,
555
+ 3,
556
+ -1,
557
+ -1,
558
+ 5,
559
+ -1,
560
+ -1
561
+ ],
562
+ "right_children": [
563
+ 2,
564
+ 4,
565
+ -1,
566
+ -1,
567
+ 6,
568
+ -1,
569
+ -1
570
+ ],
571
+ "split_conditions": [
572
+ 1,
573
+ 1,
574
+ 0.23808745,
575
+ -0.31645128,
576
+ 1,
577
+ -0.12458779,
578
+ 0.2760537
579
+ ],
580
+ "split_indices": [
581
+ 3,
582
+ 8,
583
+ 0,
584
+ 0,
585
+ 2,
586
+ 0,
587
+ 0
588
+ ],
589
+ "split_type": [
590
+ 0,
591
+ 0,
592
+ 0,
593
+ 0,
594
+ 0,
595
+ 0,
596
+ 0
597
+ ]
598
+ },
599
+ {
600
+ "categories_nodes": [],
601
+ "categories_segments": [],
602
+ "categories_sizes": [],
603
+ "categories": [],
604
+ "default_left": [
605
+ 0,
606
+ 0,
607
+ 0,
608
+ 0,
609
+ 0,
610
+ 0,
611
+ 0,
612
+ 0,
613
+ 0
614
+ ],
615
+ "id": 8,
616
+ "left_children": [
617
+ 1,
618
+ 3,
619
+ 5,
620
+ 7,
621
+ -1,
622
+ -1,
623
+ -1,
624
+ -1,
625
+ -1
626
+ ],
627
+ "right_children": [
628
+ 2,
629
+ 4,
630
+ 6,
631
+ 8,
632
+ -1,
633
+ -1,
634
+ -1,
635
+ -1,
636
+ -1
637
+ ],
638
+ "split_conditions": [
639
+ 1,
640
+ 1,
641
+ 1,
642
+ 1,
643
+ 0.21769561,
644
+ 0.21055369,
645
+ 0,
646
+ -0.31709492,
647
+ -0.011989442
648
+ ],
649
+ "split_indices": [
650
+ 8,
651
+ 0,
652
+ 6,
653
+ 2,
654
+ 0,
655
+ 0,
656
+ 0,
657
+ 0,
658
+ 0
659
+ ],
660
+ "split_type": [
661
+ 0,
662
+ 0,
663
+ 0,
664
+ 0,
665
+ 0,
666
+ 0,
667
+ 0,
668
+ 0,
669
+ 0
670
+ ]
671
+ },
672
+ {
673
+ "categories_nodes": [],
674
+ "categories_segments": [],
675
+ "categories_sizes": [],
676
+ "categories": [],
677
+ "default_left": [
678
+ 0,
679
+ 0,
680
+ 0,
681
+ 0,
682
+ 0,
683
+ 0,
684
+ 0,
685
+ 0,
686
+ 0,
687
+ 0,
688
+ 0
689
+ ],
690
+ "id": 9,
691
+ "left_children": [
692
+ 1,
693
+ 3,
694
+ 5,
695
+ -1,
696
+ 7,
697
+ 9,
698
+ -1,
699
+ -1,
700
+ -1,
701
+ -1,
702
+ -1
703
+ ],
704
+ "right_children": [
705
+ 2,
706
+ 4,
707
+ 6,
708
+ -1,
709
+ 8,
710
+ 10,
711
+ -1,
712
+ -1,
713
+ -1,
714
+ -1,
715
+ -1
716
+ ],
717
+ "split_conditions": [
718
+ 1,
719
+ 1,
720
+ 1,
721
+ -0.28680897,
722
+ 1,
723
+ 1,
724
+ 0.25452876,
725
+ -0.13690837,
726
+ 0.2335126,
727
+ -0.010397975,
728
+ 0.19672291
729
+ ],
730
+ "split_indices": [
731
+ 3,
732
+ 8,
733
+ 8,
734
+ 0,
735
+ 2,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 0,
741
+ 0
742
+ ],
743
+ "split_type": [
744
+ 0,
745
+ 0,
746
+ 0,
747
+ 0,
748
+ 0,
749
+ 0,
750
+ 0,
751
+ 0,
752
+ 0,
753
+ 0,
754
+ 0
755
+ ]
756
+ },
757
+ {
758
+ "categories_nodes": [],
759
+ "categories_segments": [],
760
+ "categories_sizes": [],
761
+ "categories": [],
762
+ "default_left": [
763
+ 0,
764
+ 0,
765
+ 0,
766
+ 0,
767
+ 0,
768
+ 0,
769
+ 0,
770
+ 0,
771
+ 0,
772
+ 0,
773
+ 0
774
+ ],
775
+ "id": 10,
776
+ "left_children": [
777
+ 1,
778
+ 3,
779
+ -1,
780
+ 5,
781
+ 7,
782
+ 9,
783
+ -1,
784
+ -1,
785
+ -1,
786
+ -1,
787
+ -1
788
+ ],
789
+ "right_children": [
790
+ 2,
791
+ 4,
792
+ -1,
793
+ 6,
794
+ 8,
795
+ 10,
796
+ -1,
797
+ -1,
798
+ -1,
799
+ -1,
800
+ -1
801
+ ],
802
+ "split_conditions": [
803
+ 1,
804
+ 1,
805
+ 0.273696,
806
+ 1,
807
+ 1,
808
+ 1,
809
+ 0,
810
+ 0.013317485,
811
+ 0.22259626,
812
+ -0.38486236,
813
+ 0.0258427
814
+ ],
815
+ "split_indices": [
816
+ 0,
817
+ 2,
818
+ 0,
819
+ 3,
820
+ 8,
821
+ 11,
822
+ 0,
823
+ 0,
824
+ 0,
825
+ 0,
826
+ 0
827
+ ],
828
+ "split_type": [
829
+ 0,
830
+ 0,
831
+ 0,
832
+ 0,
833
+ 0,
834
+ 0,
835
+ 0,
836
+ 0,
837
+ 0,
838
+ 0,
839
+ 0
840
+ ]
841
+ },
842
+ {
843
+ "categories_nodes": [],
844
+ "categories_segments": [],
845
+ "categories_sizes": [],
846
+ "categories": [],
847
+ "default_left": [
848
+ 0,
849
+ 0,
850
+ 0,
851
+ 0,
852
+ 0,
853
+ 0,
854
+ 0,
855
+ 0,
856
+ 0
857
+ ],
858
+ "id": 11,
859
+ "left_children": [
860
+ 1,
861
+ 3,
862
+ 5,
863
+ -1,
864
+ 7,
865
+ -1,
866
+ -1,
867
+ -1,
868
+ -1
869
+ ],
870
+ "right_children": [
871
+ 2,
872
+ 4,
873
+ 6,
874
+ -1,
875
+ 8,
876
+ -1,
877
+ -1,
878
+ -1,
879
+ -1
880
+ ],
881
+ "split_conditions": [
882
+ 1,
883
+ 1,
884
+ 1,
885
+ -0.25198624,
886
+ 1,
887
+ 0.064802036,
888
+ 0.22176398,
889
+ -0.081628986,
890
+ 0.19138262
891
+ ],
892
+ "split_indices": [
893
+ 3,
894
+ 8,
895
+ 8,
896
+ 0,
897
+ 2,
898
+ 0,
899
+ 0,
900
+ 0,
901
+ 0
902
+ ],
903
+ "split_type": [
904
+ 0,
905
+ 0,
906
+ 0,
907
+ 0,
908
+ 0,
909
+ 0,
910
+ 0,
911
+ 0,
912
+ 0
913
+ ]
914
+ },
915
+ {
916
+ "categories_nodes": [],
917
+ "categories_segments": [],
918
+ "categories_sizes": [],
919
+ "categories": [],
920
+ "default_left": [
921
+ 0,
922
+ 0,
923
+ 0,
924
+ 0,
925
+ 0,
926
+ 0,
927
+ 0,
928
+ 0,
929
+ 0,
930
+ 0,
931
+ 0
932
+ ],
933
+ "id": 12,
934
+ "left_children": [
935
+ 1,
936
+ 3,
937
+ -1,
938
+ 5,
939
+ 7,
940
+ 9,
941
+ -1,
942
+ -1,
943
+ -1,
944
+ -1,
945
+ -1
946
+ ],
947
+ "right_children": [
948
+ 2,
949
+ 4,
950
+ -1,
951
+ 6,
952
+ 8,
953
+ 10,
954
+ -1,
955
+ -1,
956
+ -1,
957
+ -1,
958
+ -1
959
+ ],
960
+ "split_conditions": [
961
+ 1,
962
+ 1,
963
+ 0.24476564,
964
+ 1,
965
+ 1,
966
+ 1,
967
+ 0.044094473,
968
+ 0.0300698,
969
+ 0.18395658,
970
+ -0.34156743,
971
+ -0.030063339
972
+ ],
973
+ "split_indices": [
974
+ 0,
975
+ 2,
976
+ 0,
977
+ 11,
978
+ 8,
979
+ 3,
980
+ 0,
981
+ 0,
982
+ 0,
983
+ 0,
984
+ 0
985
+ ],
986
+ "split_type": [
987
+ 0,
988
+ 0,
989
+ 0,
990
+ 0,
991
+ 0,
992
+ 0,
993
+ 0,
994
+ 0,
995
+ 0,
996
+ 0,
997
+ 0
998
+ ]
999
+ },
1000
+ {
1001
+ "categories_nodes": [],
1002
+ "categories_segments": [],
1003
+ "categories_sizes": [],
1004
+ "categories": [],
1005
+ "default_left": [
1006
+ 0,
1007
+ 0,
1008
+ 0,
1009
+ 0,
1010
+ 0,
1011
+ 0,
1012
+ 0
1013
+ ],
1014
+ "id": 13,
1015
+ "left_children": [
1016
+ 1,
1017
+ 3,
1018
+ -1,
1019
+ 5,
1020
+ -1,
1021
+ -1,
1022
+ -1
1023
+ ],
1024
+ "right_children": [
1025
+ 2,
1026
+ 4,
1027
+ -1,
1028
+ 6,
1029
+ -1,
1030
+ -1,
1031
+ -1
1032
+ ],
1033
+ "split_conditions": [
1034
+ 1,
1035
+ 1,
1036
+ 0.22014485,
1037
+ 1,
1038
+ 0.117701836,
1039
+ -0.25317448,
1040
+ -0.013423289
1041
+ ],
1042
+ "split_indices": [
1043
+ 0,
1044
+ 2,
1045
+ 0,
1046
+ 8,
1047
+ 0,
1048
+ 0,
1049
+ 0
1050
+ ],
1051
+ "split_type": [
1052
+ 0,
1053
+ 0,
1054
+ 0,
1055
+ 0,
1056
+ 0,
1057
+ 0,
1058
+ 0
1059
+ ]
1060
+ }
1061
+ ],
1062
+ "feature_names": [
1063
+ "username-hidden--attrMatch",
1064
+ "username-hidden--autocompleteUsername",
1065
+ "username-hidden--attrEmail",
1066
+ "username-hidden--attrUsername",
1067
+ "username-hidden--autocompleteEmail",
1068
+ "username-hidden--fieldCC",
1069
+ "username-hidden--fieldExotic",
1070
+ "username-hidden--fieldIdentity",
1071
+ "username-hidden--valueEmail",
1072
+ "username-hidden--valueTel",
1073
+ "username-hidden--valueUsername",
1074
+ "username-hidden--visibleReadonly"
1075
+ ],
1076
+ "feature_types": [
1077
+ "int",
1078
+ "int",
1079
+ "int",
1080
+ "int",
1081
+ "int",
1082
+ "int",
1083
+ "int",
1084
+ "int",
1085
+ "int",
1086
+ "int",
1087
+ "int",
1088
+ "int"
1089
+ ],
1090
+ "tree_info": [
1091
+ 0,
1092
+ 0,
1093
+ 0,
1094
+ 0,
1095
+ 0,
1096
+ 0,
1097
+ 0,
1098
+ 0,
1099
+ 0,
1100
+ 0,
1101
+ 0,
1102
+ 0,
1103
+ 0,
1104
+ 0
1105
+ ],
1106
+ "num_class": 0,
1107
+ "objective": "binary:logistic"
1108
+ }