@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,421 @@
1
+ {
2
+ "coeffs": [
3
+ [
4
+ "password-change--visibleFieldsCountScaled",
5
+ -3.3321454524993896
6
+ ],
7
+ [
8
+ "password-change--visibleInputsCountScaled",
9
+ -3.0804550647735596
10
+ ],
11
+ [
12
+ "password-change--fieldsetsCountScaled",
13
+ -5.934694766998291
14
+ ],
15
+ [
16
+ "password-change--textsCountScaled",
17
+ -6.049551486968994
18
+ ],
19
+ [
20
+ "password-change--textareasCountScaled",
21
+ -6.0787129402160645
22
+ ],
23
+ [
24
+ "password-change--selectsCountScaled",
25
+ -5.987492084503174
26
+ ],
27
+ [
28
+ "password-change--optionsCountScaled",
29
+ -6.083714485168457
30
+ ],
31
+ [
32
+ "password-change--radiosCountScaled",
33
+ -6.052059173583984
34
+ ],
35
+ [
36
+ "password-change--identifiersCountScaled",
37
+ -5.403328895568848
38
+ ],
39
+ [
40
+ "password-change--hiddenIdentifiersCountScaled",
41
+ -4.4229230880737305
42
+ ],
43
+ [
44
+ "password-change--usernamesCountScaled",
45
+ -6.04349422454834
46
+ ],
47
+ [
48
+ "password-change--emailsCountScaled",
49
+ -4.912832736968994
50
+ ],
51
+ [
52
+ "password-change--hiddenCountScaled",
53
+ -3.4236717224121094
54
+ ],
55
+ [
56
+ "password-change--hiddenPasswordsCountScaled",
57
+ -5.930105209350586
58
+ ],
59
+ [
60
+ "password-change--submitsCountScaled",
61
+ -3.8625235557556152
62
+ ],
63
+ [
64
+ "password-change--hasTels",
65
+ -6.051826000213623
66
+ ],
67
+ [
68
+ "password-change--hasOAuth",
69
+ -6.006768226623535
70
+ ],
71
+ [
72
+ "password-change--hasCaptchas",
73
+ -6.024316310882568
74
+ ],
75
+ [
76
+ "password-change--hasFiles",
77
+ -6.003083229064941
78
+ ],
79
+ [
80
+ "password-change--hasDate",
81
+ -6.042792320251465
82
+ ],
83
+ [
84
+ "password-change--hasNumber",
85
+ -8.931044578552246
86
+ ],
87
+ [
88
+ "password-change--oneVisibleField",
89
+ -5.420173645019531
90
+ ],
91
+ [
92
+ "password-change--twoVisibleFields",
93
+ -3.1558315753936768
94
+ ],
95
+ [
96
+ "password-change--threeOrMoreVisibleFields",
97
+ -1.8346830606460571
98
+ ],
99
+ [
100
+ "password-change--noPasswords",
101
+ -6.032570838928223
102
+ ],
103
+ [
104
+ "password-change--onePassword",
105
+ -5.337682247161865
106
+ ],
107
+ [
108
+ "password-change--twoPasswords",
109
+ 7.295647144317627
110
+ ],
111
+ [
112
+ "password-change--threeOrMorePasswords",
113
+ 21.68557357788086
114
+ ],
115
+ [
116
+ "password-change--noIdentifiers",
117
+ -2.4498164653778076
118
+ ],
119
+ [
120
+ "password-change--oneIdentifier",
121
+ -6.094106197357178
122
+ ],
123
+ [
124
+ "password-change--twoIdentifiers",
125
+ -5.916845321655273
126
+ ],
127
+ [
128
+ "password-change--threeOrMoreIdentifiers",
129
+ 1.6939911842346191
130
+ ],
131
+ [
132
+ "password-change--autofocusedIsIdentifier",
133
+ -6.033471584320068
134
+ ],
135
+ [
136
+ "password-change--autofocusedIsPassword",
137
+ 15.131577491760254
138
+ ],
139
+ [
140
+ "password-change--visibleRatio",
141
+ -4.09120512008667
142
+ ],
143
+ [
144
+ "password-change--inputRatio",
145
+ -4.173065185546875
146
+ ],
147
+ [
148
+ "password-change--hiddenRatio",
149
+ -3.4960551261901855
150
+ ],
151
+ [
152
+ "password-change--identifierRatio",
153
+ -5.710056781768799
154
+ ],
155
+ [
156
+ "password-change--emailRatio",
157
+ -5.21774435043335
158
+ ],
159
+ [
160
+ "password-change--usernameRatio",
161
+ -6.235389232635498
162
+ ],
163
+ [
164
+ "password-change--passwordRatio",
165
+ 4.32260274887085
166
+ ],
167
+ [
168
+ "password-change--requiredRatio",
169
+ -2.6061058044433594
170
+ ],
171
+ [
172
+ "password-change--checkboxRatio",
173
+ -5.914191722869873
174
+ ],
175
+ [
176
+ "password-change--pageLogin",
177
+ -6.2052154541015625
178
+ ],
179
+ [
180
+ "password-change--formTextLogin",
181
+ -6.029303073883057
182
+ ],
183
+ [
184
+ "password-change--formAttrsLogin",
185
+ -6.053979873657227
186
+ ],
187
+ [
188
+ "password-change--headingsLogin",
189
+ -5.993305683135986
190
+ ],
191
+ [
192
+ "password-change--layoutLogin",
193
+ -6.096299648284912
194
+ ],
195
+ [
196
+ "password-change--rememberMeCheckbox",
197
+ -6.082805156707764
198
+ ],
199
+ [
200
+ "password-change--troubleLink",
201
+ -3.7113256454467773
202
+ ],
203
+ [
204
+ "password-change--submitLogin",
205
+ -6.145804405212402
206
+ ],
207
+ [
208
+ "password-change--pageRegister",
209
+ -5.985432147979736
210
+ ],
211
+ [
212
+ "password-change--formTextRegister",
213
+ -0.03591149300336838
214
+ ],
215
+ [
216
+ "password-change--formAttrsRegister",
217
+ -6.035892963409424
218
+ ],
219
+ [
220
+ "password-change--headingsRegister",
221
+ -6.411230087280273
222
+ ],
223
+ [
224
+ "password-change--layoutRegister",
225
+ -6.010503768920898
226
+ ],
227
+ [
228
+ "password-change--newPasswordRegister",
229
+ 13.145064353942871
230
+ ],
231
+ [
232
+ "password-change--newPasswordConfirmRegister",
233
+ 7.383437633514404
234
+ ],
235
+ [
236
+ "password-change--submitRegister",
237
+ -7.358190059661865
238
+ ],
239
+ [
240
+ "password-change--TOSRef",
241
+ -6.726124286651611
242
+ ],
243
+ [
244
+ "password-change--pagePasswordReset",
245
+ 15.504810333251953
246
+ ],
247
+ [
248
+ "password-change--formTextPasswordReset",
249
+ 22.969263076782227
250
+ ],
251
+ [
252
+ "password-change--formAttrsPasswordReset",
253
+ 14.371417045593262
254
+ ],
255
+ [
256
+ "password-change--headingsPasswordReset",
257
+ 18.480045318603516
258
+ ],
259
+ [
260
+ "password-change--layoutPasswordReset",
261
+ 16.99905014038086
262
+ ],
263
+ [
264
+ "password-change--pageRecovery",
265
+ -6.04259729385376
266
+ ],
267
+ [
268
+ "password-change--formTextRecovery",
269
+ -0.04274427890777588
270
+ ],
271
+ [
272
+ "password-change--formAttrsRecovery",
273
+ -6.037948131561279
274
+ ],
275
+ [
276
+ "password-change--headingsRecovery",
277
+ -3.522164821624756
278
+ ],
279
+ [
280
+ "password-change--layoutRecovery",
281
+ -4.054919242858887
282
+ ],
283
+ [
284
+ "password-change--identifierRecovery",
285
+ -5.953251361846924
286
+ ],
287
+ [
288
+ "password-change--submitRecovery",
289
+ 4.2396721839904785
290
+ ],
291
+ [
292
+ "password-change--formTextMFA",
293
+ -5.927785396575928
294
+ ],
295
+ [
296
+ "password-change--formAttrsMFA",
297
+ -5.923059463500977
298
+ ],
299
+ [
300
+ "password-change--inputsMFA",
301
+ -5.985617160797119
302
+ ],
303
+ [
304
+ "password-change--inputsOTP",
305
+ -5.914240837097168
306
+ ],
307
+ [
308
+ "password-change--newsletterForm",
309
+ -5.989622116088867
310
+ ],
311
+ [
312
+ "password-change--searchForm",
313
+ -5.92101526260376
314
+ ],
315
+ [
316
+ "password-change--multistepForm",
317
+ -5.9458184242248535
318
+ ],
319
+ [
320
+ "password-change--multiAuthForm",
321
+ -6.091955184936523
322
+ ],
323
+ [
324
+ "password-change--visibleRatio,visibleFieldsCountScaled",
325
+ -3.3477888107299805
326
+ ],
327
+ [
328
+ "password-change--visibleRatio,identifiersCountScaled",
329
+ -5.617403984069824
330
+ ],
331
+ [
332
+ "password-change--visibleRatio,passwordsCountScaled",
333
+ 3.3302927017211914
334
+ ],
335
+ [
336
+ "password-change--visibleRatio,hiddenIdentifiersCountScaled",
337
+ -2.4642622470855713
338
+ ],
339
+ [
340
+ "password-change--visibleRatio,hiddenPasswordsCountScaled",
341
+ -6.048635959625244
342
+ ],
343
+ [
344
+ "password-change--visibleRatio,multistepForm",
345
+ -5.95064115524292
346
+ ],
347
+ [
348
+ "password-change--identifierRatio,visibleFieldsCountScaled",
349
+ -4.540703296661377
350
+ ],
351
+ [
352
+ "password-change--identifierRatio,identifiersCountScaled",
353
+ -5.502275466918945
354
+ ],
355
+ [
356
+ "password-change--identifierRatio,passwordsCountScaled",
357
+ -4.315083026885986
358
+ ],
359
+ [
360
+ "password-change--identifierRatio,hiddenIdentifiersCountScaled",
361
+ -6.072136878967285
362
+ ],
363
+ [
364
+ "password-change--identifierRatio,hiddenPasswordsCountScaled",
365
+ -5.912572383880615
366
+ ],
367
+ [
368
+ "password-change--identifierRatio,multistepForm",
369
+ -5.936649322509766
370
+ ],
371
+ [
372
+ "password-change--passwordRatio,visibleFieldsCountScaled",
373
+ 5.619084358215332
374
+ ],
375
+ [
376
+ "password-change--passwordRatio,identifiersCountScaled",
377
+ -4.406495571136475
378
+ ],
379
+ [
380
+ "password-change--passwordRatio,passwordsCountScaled",
381
+ 9.266096115112305
382
+ ],
383
+ [
384
+ "password-change--passwordRatio,hiddenIdentifiersCountScaled",
385
+ -0.12468687444925308
386
+ ],
387
+ [
388
+ "password-change--passwordRatio,hiddenPasswordsCountScaled",
389
+ -6.000542163848877
390
+ ],
391
+ [
392
+ "password-change--passwordRatio,multistepForm",
393
+ -5.978328227996826
394
+ ],
395
+ [
396
+ "password-change--requiredRatio,visibleFieldsCountScaled",
397
+ -3.897763729095459
398
+ ],
399
+ [
400
+ "password-change--requiredRatio,identifiersCountScaled",
401
+ -6.03505802154541
402
+ ],
403
+ [
404
+ "password-change--requiredRatio,passwordsCountScaled",
405
+ 3.800820827484131
406
+ ],
407
+ [
408
+ "password-change--requiredRatio,hiddenIdentifiersCountScaled",
409
+ 0.2164151817560196
410
+ ],
411
+ [
412
+ "password-change--requiredRatio,hiddenPasswordsCountScaled",
413
+ -5.912103176116943
414
+ ],
415
+ [
416
+ "password-change--requiredRatio,multistepForm",
417
+ -5.9860992431640625
418
+ ]
419
+ ],
420
+ "bias": -4.346797466278076
421
+ }
@@ -0,0 +1,125 @@
1
+ {
2
+ "coeffs": [
3
+ [
4
+ "password--isFormLogin",
5
+ 11.489188194274902
6
+ ],
7
+ [
8
+ "password--isFormRegister",
9
+ -12.317614555358887
10
+ ],
11
+ [
12
+ "password--isFormPasswordChange",
13
+ -3.3522896766662598
14
+ ],
15
+ [
16
+ "password--isFormNoop",
17
+ -11.274672508239746
18
+ ],
19
+ [
20
+ "password--autocompleteNew",
21
+ -3.2165679931640625
22
+ ],
23
+ [
24
+ "password--autocompleteCurrent",
25
+ 1.107975721359253
26
+ ],
27
+ [
28
+ "password--autocompleteOff",
29
+ -1.5637125968933105
30
+ ],
31
+ [
32
+ "password--parentFormOnePassword",
33
+ 1.6692641973495483
34
+ ],
35
+ [
36
+ "password--prevPasswordFieldExists",
37
+ -3.853325843811035
38
+ ],
39
+ [
40
+ "password--nextPasswordFieldExists",
41
+ -2.6056430339813232
42
+ ],
43
+ [
44
+ "password--attrCreate",
45
+ -2.091197967529297
46
+ ],
47
+ [
48
+ "password--attrCurrent",
49
+ 2.623647451400757
50
+ ],
51
+ [
52
+ "password--attrConfirm",
53
+ -6.392003536224365
54
+ ],
55
+ [
56
+ "password--attrReset",
57
+ 0.0007354617118835449
58
+ ],
59
+ [
60
+ "password--textCreate",
61
+ -2.4505302906036377
62
+ ],
63
+ [
64
+ "password--textCurrent",
65
+ 1.7695688009262085
66
+ ],
67
+ [
68
+ "password--textConfirm",
69
+ -6.402401924133301
70
+ ],
71
+ [
72
+ "password--textReset",
73
+ -0.1697392612695694
74
+ ],
75
+ [
76
+ "password--labelCreate",
77
+ -7.204258441925049
78
+ ],
79
+ [
80
+ "password--labelCurrent",
81
+ 14.438202857971191
82
+ ],
83
+ [
84
+ "password--labelConfirm",
85
+ -6.259541988372803
86
+ ],
87
+ [
88
+ "password--labelReset",
89
+ 0.015617117285728455
90
+ ],
91
+ [
92
+ "password--prevPasswordNew",
93
+ -6.184617519378662
94
+ ],
95
+ [
96
+ "password--prevPasswordCurrent",
97
+ -6.242441177368164
98
+ ],
99
+ [
100
+ "password--prevPasswordConfirm",
101
+ -0.17926810681819916
102
+ ],
103
+ [
104
+ "password--nextPasswordNew",
105
+ 9.929208755493164
106
+ ],
107
+ [
108
+ "password--nextPasswordCurrent",
109
+ -7.612186431884766
110
+ ],
111
+ [
112
+ "password--nextPasswordConfirm",
113
+ -6.865516662597656
114
+ ],
115
+ [
116
+ "password--passwordOutlier",
117
+ -17.66224479675293
118
+ ],
119
+ [
120
+ "password--prevPasswordCurrent,nextPasswordNew",
121
+ -5.839819431304932
122
+ ]
123
+ ],
124
+ "bias": 0.2366154044866562
125
+ }