@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.
- package/constants/features.d.ts +1 -0
- package/constants/features.js +1 -0
- package/constants/heuristics.d.ts +5 -4
- package/constants/heuristics.js +5 -10
- package/constants/selectors.d.ts +13 -7
- package/constants/selectors.js +29 -17
- package/debug.d.ts +24 -1
- package/debug.js +15 -13
- package/dictionary/generate.js +30 -21
- package/dictionary/generated/dictionary.d.ts +18 -4
- package/dictionary/generated/dictionary.js +31 -17
- package/dictionary/source/dictionary.d.ts +4 -3
- package/dictionary/source/dictionary.js +155 -89
- package/dictionary/source/patterns.js +2 -2
- package/features/feature.d.ts +17 -0
- package/features/feature.js +72 -0
- package/features/feature.spec.d.ts +1 -0
- package/features/feature.spec.js +55 -0
- package/features/v1/abstract.field.d.ts +20401 -0
- package/features/v1/abstract.field.js +95 -0
- package/features/v1/abstract.form.d.ts +1226 -0
- package/features/v1/abstract.form.js +336 -0
- package/features/v1/field.email.d.ts +62 -0
- package/features/v1/field.email.js +27 -0
- package/features/v1/field.otp.d.ts +142 -0
- package/features/v1/field.otp.js +105 -0
- package/features/v1/field.password.d.ts +162 -0
- package/features/v1/field.password.js +81 -0
- package/features/v1/field.username-hidden.d.ts +62 -0
- package/features/v1/field.username-hidden.js +25 -0
- package/features/v1/field.username.d.ts +72 -0
- package/features/v1/field.username.js +31 -0
- package/features/v1/index.d.ts +4427 -0
- package/features/v1/index.js +22 -0
- package/features/v1/index.spec.d.ts +1 -0
- package/features/v1/index.spec.js +30 -0
- package/index.d.ts +5 -2
- package/index.js +10 -3
- package/models/perceptron/index.d.ts +2 -0
- package/models/perceptron/index.js +27 -0
- package/models/perceptron/params/email-model.json +53 -0
- package/models/perceptron/params/login-model.json +465 -0
- package/models/perceptron/params/new-password-model.json +133 -0
- package/models/perceptron/params/otp-model.json +117 -0
- package/models/perceptron/params/password-change-model.json +465 -0
- package/models/perceptron/params/password-model.json +133 -0
- package/models/perceptron/params/recovery-model.json +465 -0
- package/models/perceptron/params/register-model.json +465 -0
- package/models/perceptron/params/username-hidden-model.json +53 -0
- package/models/perceptron/params/username-model.json +61 -0
- package/models/prod_20240829/index.d.ts +2 -0
- package/models/prod_20240829/index.js +27 -0
- package/models/prod_20240829/params/email-model.json +45 -0
- package/models/prod_20240829/params/login-model.json +421 -0
- package/models/prod_20240829/params/new-password-model.json +125 -0
- package/models/prod_20240829/params/otp-model.json +153 -0
- package/models/prod_20240829/params/password-change-model.json +421 -0
- package/models/prod_20240829/params/password-model.json +125 -0
- package/models/prod_20240829/params/recovery-model.json +421 -0
- package/models/prod_20240829/params/register-model.json +421 -0
- package/models/prod_20240829/params/username-hidden-model.json +41 -0
- package/models/prod_20240829/params/username-model.json +45 -0
- package/models/random_forest/index.d.ts +2 -0
- package/models/random_forest/index.js +27 -0
- package/models/random_forest/params/email-model.json +1456 -0
- package/models/random_forest/params/login-model.json +4194 -0
- package/models/random_forest/params/new-password-model.json +1448 -0
- package/models/random_forest/params/otp-model.json +2004 -0
- package/models/random_forest/params/password-change-model.json +1422 -0
- package/models/random_forest/params/password-model.json +1292 -0
- package/models/random_forest/params/recovery-model.json +2754 -0
- package/models/random_forest/params/register-model.json +3678 -0
- package/models/random_forest/params/username-hidden-model.json +1108 -0
- package/models/random_forest/params/username-model.json +1052 -0
- package/models/v1/index.d.ts +2 -0
- package/models/v1/index.js +35 -0
- package/package.json +14 -15
- package/rules/v1/index.d.ts +3 -0
- package/rules/v1/index.js +69 -0
- package/rulesets.d.ts +2 -2
- package/rulesets.js +11 -10
- package/types/index.d.ts +72 -17
- package/types/index.js +35 -2
- package/utils/attributes.js +1 -1
- package/utils/clustering.js +18 -5
- package/utils/credit-card.d.ts +32 -0
- package/utils/credit-card.js +259 -0
- package/utils/credit-card.samples.spec.d.ts +1 -0
- package/utils/credit-card.samples.spec.js +452 -0
- package/utils/credit-card.spec.d.ts +1 -0
- package/utils/credit-card.spec.js +296 -0
- package/utils/dom.d.ts +3 -2
- package/utils/dom.js +12 -7
- package/utils/exclusion.d.ts +1 -0
- package/utils/exclusion.js +22 -10
- package/utils/extract.d.ts +1 -0
- package/utils/extract.js +26 -7
- package/utils/fathom.d.ts +10 -23
- package/utils/fathom.js +7 -12
- package/utils/field.d.ts +12 -4
- package/utils/field.js +25 -14
- package/utils/flags.d.ts +9 -3
- package/utils/flags.js +27 -9
- package/utils/form.d.ts +16 -5
- package/utils/form.js +35 -14
- package/utils/identity.d.ts +12 -21
- package/utils/identity.js +66 -41
- package/utils/identity.samples.spec.d.ts +1 -0
- package/utils/identity.samples.spec.js +28 -0
- package/utils/iframe.d.ts +2 -0
- package/utils/iframe.js +22 -0
- package/utils/overrides.d.ts +19 -0
- package/utils/overrides.js +40 -0
- package/utils/prepass.js +6 -4
- package/utils/re.d.ts +19 -4
- package/utils/re.js +22 -7
- package/utils/re.spec.d.ts +1 -0
- package/utils/re.spec.js +62 -0
- package/utils/shadow-dom.d.ts +8 -0
- package/utils/shadow-dom.js +53 -0
- package/utils/shadow-dom.spec.d.ts +1 -0
- package/utils/shadow-dom.spec.js +215 -0
- package/utils/visible.d.ts +3 -2
- package/utils/visible.js +42 -22
- package/cli.d.ts +0 -2
- package/cli.js +0 -128
- package/features/abstract.field.d.ts +0 -123
- package/features/abstract.field.js +0 -63
- package/features/abstract.form.d.ts +0 -98
- package/features/abstract.form.js +0 -281
- package/features/field.email.d.ts +0 -18
- package/features/field.email.js +0 -43
- package/features/field.otp.d.ts +0 -36
- package/features/field.otp.js +0 -116
- package/features/field.password.d.ts +0 -35
- package/features/field.password.js +0 -104
- package/features/field.username-hidden.d.ts +0 -15
- package/features/field.username-hidden.js +0 -40
- package/features/field.username.d.ts +0 -16
- package/features/field.username.js +0 -41
- package/features/form.combined.d.ts +0 -1
- package/features/form.combined.js +0 -6
- package/trainees/field.email.d.ts +0 -2
- package/trainees/field.email.js +0 -16
- package/trainees/field.identity.d.ts +0 -2
- package/trainees/field.identity.js +0 -9
- package/trainees/field.otp.d.ts +0 -2
- package/trainees/field.otp.js +0 -16
- package/trainees/field.password.current.d.ts +0 -2
- package/trainees/field.password.current.js +0 -16
- package/trainees/field.password.new.d.ts +0 -2
- package/trainees/field.password.new.js +0 -16
- package/trainees/field.username-hidden.d.ts +0 -2
- package/trainees/field.username-hidden.js +0 -22
- package/trainees/field.username.d.ts +0 -2
- package/trainees/field.username.js +0 -16
- package/trainees/form.login.d.ts +0 -2
- package/trainees/form.login.js +0 -16
- package/trainees/form.noop.d.ts +0 -1
- package/trainees/form.noop.js +0 -7
- package/trainees/form.password-change.d.ts +0 -2
- package/trainees/form.password-change.js +0 -16
- package/trainees/form.recovery.d.ts +0 -2
- package/trainees/form.recovery.js +0 -16
- package/trainees/form.register.d.ts +0 -2
- package/trainees/form.register.js +0 -16
- package/trainees/index.d.ts +0 -9
- package/trainees/index.js +0 -72
- package/trainees/results/result.email.d.ts +0 -2
- package/trainees/results/result.email.js +0 -17
- package/trainees/results/result.login.d.ts +0 -2
- package/trainees/results/result.login.js +0 -110
- package/trainees/results/result.new-password.d.ts +0 -2
- package/trainees/results/result.new-password.js +0 -36
- package/trainees/results/result.otp.d.ts +0 -2
- package/trainees/results/result.otp.js +0 -43
- package/trainees/results/result.password-change.d.ts +0 -2
- package/trainees/results/result.password-change.js +0 -110
- package/trainees/results/result.password.d.ts +0 -2
- package/trainees/results/result.password.js +0 -36
- package/trainees/results/result.recovery.d.ts +0 -2
- package/trainees/results/result.recovery.js +0 -110
- package/trainees/results/result.register.d.ts +0 -2
- package/trainees/results/result.register.js +0 -110
- package/trainees/results/result.username-hidden.d.ts +0 -2
- package/trainees/results/result.username-hidden.js +0 -15
- package/trainees/results/result.username.d.ts +0 -2
- package/trainees/results/result.username.js +0 -16
- package/utils/memoize.d.ts +0 -5
- package/utils/memoize.js +0 -12
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bias": 3.163503885269165,
|
|
3
|
+
"coeffs": [
|
|
4
|
+
[
|
|
5
|
+
"password--attrConfirm",
|
|
6
|
+
-2.803438901901245
|
|
7
|
+
],
|
|
8
|
+
[
|
|
9
|
+
"password--attrCreate",
|
|
10
|
+
-1.198984980583191
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"password--attrCurrent",
|
|
14
|
+
2.4272873401641846
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"password--attrReset",
|
|
18
|
+
0.09989714622497559
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"password--autocompleteCurrent",
|
|
22
|
+
1.4347081184387207
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
"password--autocompleteNew",
|
|
26
|
+
-6.174221515655518
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"password--autocompleteOTP",
|
|
30
|
+
-1.9344940185546875
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
"password--autocompleteOff",
|
|
34
|
+
-1.9959008693695068
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"password--fieldCC",
|
|
38
|
+
-2.5282342433929443
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"password--fieldExotic",
|
|
42
|
+
-6.076562881469727
|
|
43
|
+
],
|
|
44
|
+
[
|
|
45
|
+
"password--fieldIdentity",
|
|
46
|
+
1.1720734785904023e-35
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
"password--fieldLogin",
|
|
50
|
+
7.1168036460876465
|
|
51
|
+
],
|
|
52
|
+
[
|
|
53
|
+
"password--fieldRegister",
|
|
54
|
+
-9.024020195007324
|
|
55
|
+
],
|
|
56
|
+
[
|
|
57
|
+
"password--labelConfirm",
|
|
58
|
+
-1.5682286024093628
|
|
59
|
+
],
|
|
60
|
+
[
|
|
61
|
+
"password--labelCreate",
|
|
62
|
+
-4.940610408782959
|
|
63
|
+
],
|
|
64
|
+
[
|
|
65
|
+
"password--labelCurrent",
|
|
66
|
+
2.943845510482788
|
|
67
|
+
],
|
|
68
|
+
[
|
|
69
|
+
"password--nextPwConfirm",
|
|
70
|
+
-5.163945198059082
|
|
71
|
+
],
|
|
72
|
+
[
|
|
73
|
+
"password--nextPwCurrent",
|
|
74
|
+
-0.0007364622433669865
|
|
75
|
+
],
|
|
76
|
+
[
|
|
77
|
+
"password--nextPwField",
|
|
78
|
+
-2.317049264907837
|
|
79
|
+
],
|
|
80
|
+
[
|
|
81
|
+
"password--nextPwNew",
|
|
82
|
+
3.5548436641693115
|
|
83
|
+
],
|
|
84
|
+
[
|
|
85
|
+
"password--passwordOutlier",
|
|
86
|
+
-6.958127021789551
|
|
87
|
+
],
|
|
88
|
+
[
|
|
89
|
+
"password--prevPwCurrent",
|
|
90
|
+
-1.4101134538650513
|
|
91
|
+
],
|
|
92
|
+
[
|
|
93
|
+
"password--prevPwField",
|
|
94
|
+
-5.666751861572266
|
|
95
|
+
],
|
|
96
|
+
[
|
|
97
|
+
"password--prevPwNew",
|
|
98
|
+
-2.841886281967163
|
|
99
|
+
],
|
|
100
|
+
[
|
|
101
|
+
"password--textConfirm",
|
|
102
|
+
-0.9127426147460938
|
|
103
|
+
],
|
|
104
|
+
[
|
|
105
|
+
"password--textCreate",
|
|
106
|
+
-4.5491533279418945
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"password--textCurrent",
|
|
110
|
+
0.5577603578567505
|
|
111
|
+
],
|
|
112
|
+
[
|
|
113
|
+
"password--fieldLogin,autocompleteNew",
|
|
114
|
+
1.9040064811706543
|
|
115
|
+
],
|
|
116
|
+
[
|
|
117
|
+
"password--fieldLogin,maybeNew",
|
|
118
|
+
1.4597890377044678
|
|
119
|
+
],
|
|
120
|
+
[
|
|
121
|
+
"password--fieldRegister,autocompleteCurrent",
|
|
122
|
+
-2.2519829273223877
|
|
123
|
+
],
|
|
124
|
+
[
|
|
125
|
+
"password--fieldRegister,maybeCurrent",
|
|
126
|
+
-0.1014399379491806
|
|
127
|
+
],
|
|
128
|
+
[
|
|
129
|
+
"password--prevPwCurrent,nextPwNew",
|
|
130
|
+
-1.3695015907287598
|
|
131
|
+
]
|
|
132
|
+
]
|
|
133
|
+
}
|
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bias": -2.4607722759246826,
|
|
3
|
+
"coeffs": [
|
|
4
|
+
[
|
|
5
|
+
"recovery--visibleFieldsCountScaled",
|
|
6
|
+
2.638584852218628
|
|
7
|
+
],
|
|
8
|
+
[
|
|
9
|
+
"recovery--visibleInputsCountScaled",
|
|
10
|
+
1.4415720701217651
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"recovery--fieldsetsCountScaled",
|
|
14
|
+
3.91945219039917
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"recovery--textsCountScaled",
|
|
18
|
+
0.21768750250339508
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"recovery--textareasCountScaled",
|
|
22
|
+
-10.481021881103516
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
"recovery--selectsCountScaled",
|
|
26
|
+
-4.173792839050293
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"recovery--disabledCountScaled",
|
|
30
|
+
-0.09392393380403519
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
"recovery--radiosCountScaled",
|
|
34
|
+
-1.865826964378357
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"recovery--readOnlyCountScaled",
|
|
38
|
+
6.996588230133057
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"recovery--formComplexityScaled",
|
|
42
|
+
-7.132521152496338
|
|
43
|
+
],
|
|
44
|
+
[
|
|
45
|
+
"recovery--visibleIdentifiersCountScaled",
|
|
46
|
+
-1.231680989265442
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
"recovery--hiddenIdentifiersCountScaled",
|
|
50
|
+
-3.241222381591797
|
|
51
|
+
],
|
|
52
|
+
[
|
|
53
|
+
"recovery--usernamesCountScaled",
|
|
54
|
+
1.7767406702041626
|
|
55
|
+
],
|
|
56
|
+
[
|
|
57
|
+
"recovery--emailsCountScaled",
|
|
58
|
+
0.7306358218193054
|
|
59
|
+
],
|
|
60
|
+
[
|
|
61
|
+
"recovery--hiddenCountScaled",
|
|
62
|
+
3.7756564617156982
|
|
63
|
+
],
|
|
64
|
+
[
|
|
65
|
+
"recovery--hiddenPasswordsCountScaled",
|
|
66
|
+
-4.441102027893066
|
|
67
|
+
],
|
|
68
|
+
[
|
|
69
|
+
"recovery--submitsCountScaled",
|
|
70
|
+
0.7697615027427673
|
|
71
|
+
],
|
|
72
|
+
[
|
|
73
|
+
"recovery--identitiesCountScaled",
|
|
74
|
+
-2.4982995986938477
|
|
75
|
+
],
|
|
76
|
+
[
|
|
77
|
+
"recovery--ccsCountScaled",
|
|
78
|
+
-0.842802107334137
|
|
79
|
+
],
|
|
80
|
+
[
|
|
81
|
+
"recovery--hasTels",
|
|
82
|
+
-1.1201077699661255
|
|
83
|
+
],
|
|
84
|
+
[
|
|
85
|
+
"recovery--hasOAuth",
|
|
86
|
+
-2.8689558506011963
|
|
87
|
+
],
|
|
88
|
+
[
|
|
89
|
+
"recovery--hasCaptchas",
|
|
90
|
+
8.954608917236328
|
|
91
|
+
],
|
|
92
|
+
[
|
|
93
|
+
"recovery--hasFiles",
|
|
94
|
+
-12.784327507019043
|
|
95
|
+
],
|
|
96
|
+
[
|
|
97
|
+
"recovery--hasDate",
|
|
98
|
+
-4.0498835005564615e-05
|
|
99
|
+
],
|
|
100
|
+
[
|
|
101
|
+
"recovery--hasNumber",
|
|
102
|
+
-0.9297000169754028
|
|
103
|
+
],
|
|
104
|
+
[
|
|
105
|
+
"recovery--oneVisibleField",
|
|
106
|
+
0.4270676076412201
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"recovery--twoVisibleFields",
|
|
110
|
+
-6.208211898803711
|
|
111
|
+
],
|
|
112
|
+
[
|
|
113
|
+
"recovery--threeOrMoreVisibleFields",
|
|
114
|
+
-1.7739930152893066
|
|
115
|
+
],
|
|
116
|
+
[
|
|
117
|
+
"recovery--noPasswords",
|
|
118
|
+
0.23899425566196442
|
|
119
|
+
],
|
|
120
|
+
[
|
|
121
|
+
"recovery--onePassword",
|
|
122
|
+
-6.254555702209473
|
|
123
|
+
],
|
|
124
|
+
[
|
|
125
|
+
"recovery--twoPasswords",
|
|
126
|
+
-1.3477014303207397
|
|
127
|
+
],
|
|
128
|
+
[
|
|
129
|
+
"recovery--threeOrMorePasswords",
|
|
130
|
+
-0.2142723798751831
|
|
131
|
+
],
|
|
132
|
+
[
|
|
133
|
+
"recovery--noIdentifiers",
|
|
134
|
+
-5.24464750289917
|
|
135
|
+
],
|
|
136
|
+
[
|
|
137
|
+
"recovery--oneIdentifier",
|
|
138
|
+
-1.5370241403579712
|
|
139
|
+
],
|
|
140
|
+
[
|
|
141
|
+
"recovery--twoIdentifiers",
|
|
142
|
+
3.262336492538452
|
|
143
|
+
],
|
|
144
|
+
[
|
|
145
|
+
"recovery--threeOrMoreIdentifiers",
|
|
146
|
+
-2.516977548599243
|
|
147
|
+
],
|
|
148
|
+
[
|
|
149
|
+
"recovery--autofocusedIsIdentifier",
|
|
150
|
+
1.0344569683074951
|
|
151
|
+
],
|
|
152
|
+
[
|
|
153
|
+
"recovery--autofocusedIsPassword",
|
|
154
|
+
-0.030006591230630875
|
|
155
|
+
],
|
|
156
|
+
[
|
|
157
|
+
"recovery--visibleRatio",
|
|
158
|
+
-1.118340253829956
|
|
159
|
+
],
|
|
160
|
+
[
|
|
161
|
+
"recovery--inputRatio",
|
|
162
|
+
-2.73777437210083
|
|
163
|
+
],
|
|
164
|
+
[
|
|
165
|
+
"recovery--hiddenRatio",
|
|
166
|
+
2.3140668869018555
|
|
167
|
+
],
|
|
168
|
+
[
|
|
169
|
+
"recovery--identifierRatio",
|
|
170
|
+
-3.8864951133728027
|
|
171
|
+
],
|
|
172
|
+
[
|
|
173
|
+
"recovery--emailRatio",
|
|
174
|
+
7.4257588386535645
|
|
175
|
+
],
|
|
176
|
+
[
|
|
177
|
+
"recovery--usernameRatio",
|
|
178
|
+
1.487234115600586
|
|
179
|
+
],
|
|
180
|
+
[
|
|
181
|
+
"recovery--passwordRatio",
|
|
182
|
+
-4.671369552612305
|
|
183
|
+
],
|
|
184
|
+
[
|
|
185
|
+
"recovery--disabledRatio",
|
|
186
|
+
-0.11529175937175751
|
|
187
|
+
],
|
|
188
|
+
[
|
|
189
|
+
"recovery--requiredRatio",
|
|
190
|
+
-0.8672489523887634
|
|
191
|
+
],
|
|
192
|
+
[
|
|
193
|
+
"recovery--checkboxRatio",
|
|
194
|
+
-15.014094352722168
|
|
195
|
+
],
|
|
196
|
+
[
|
|
197
|
+
"recovery--hiddenIdentifierRatio",
|
|
198
|
+
0.06713610887527466
|
|
199
|
+
],
|
|
200
|
+
[
|
|
201
|
+
"recovery--hiddenPasswordRatio",
|
|
202
|
+
-7.677776336669922
|
|
203
|
+
],
|
|
204
|
+
[
|
|
205
|
+
"recovery--pageLogin",
|
|
206
|
+
0.24683307111263275
|
|
207
|
+
],
|
|
208
|
+
[
|
|
209
|
+
"recovery--formTextLogin",
|
|
210
|
+
-1.3089786989439745e-05
|
|
211
|
+
],
|
|
212
|
+
[
|
|
213
|
+
"recovery--formAttrsLogin",
|
|
214
|
+
1.560520887374878
|
|
215
|
+
],
|
|
216
|
+
[
|
|
217
|
+
"recovery--headingsLogin",
|
|
218
|
+
-0.5963063836097717
|
|
219
|
+
],
|
|
220
|
+
[
|
|
221
|
+
"recovery--layoutLogin",
|
|
222
|
+
0.043929941952228546
|
|
223
|
+
],
|
|
224
|
+
[
|
|
225
|
+
"recovery--rememberMeCheckbox",
|
|
226
|
+
-1.5976451635360718
|
|
227
|
+
],
|
|
228
|
+
[
|
|
229
|
+
"recovery--troubleLink",
|
|
230
|
+
3.233335494995117
|
|
231
|
+
],
|
|
232
|
+
[
|
|
233
|
+
"recovery--submitLogin",
|
|
234
|
+
0.4399992525577545
|
|
235
|
+
],
|
|
236
|
+
[
|
|
237
|
+
"recovery--pageRegister",
|
|
238
|
+
-1.7381529808044434
|
|
239
|
+
],
|
|
240
|
+
[
|
|
241
|
+
"recovery--formTextRegister",
|
|
242
|
+
-0.004387963097542524
|
|
243
|
+
],
|
|
244
|
+
[
|
|
245
|
+
"recovery--formAttrsRegister",
|
|
246
|
+
-4.024492263793945
|
|
247
|
+
],
|
|
248
|
+
[
|
|
249
|
+
"recovery--headingsRegister",
|
|
250
|
+
-1.048626184463501
|
|
251
|
+
],
|
|
252
|
+
[
|
|
253
|
+
"recovery--layoutRegister",
|
|
254
|
+
-8.985740661621094
|
|
255
|
+
],
|
|
256
|
+
[
|
|
257
|
+
"recovery--pwNewRegister",
|
|
258
|
+
-1.2929311990737915
|
|
259
|
+
],
|
|
260
|
+
[
|
|
261
|
+
"recovery--pwConfirmRegister",
|
|
262
|
+
-1.1711570024490356
|
|
263
|
+
],
|
|
264
|
+
[
|
|
265
|
+
"recovery--submitRegister",
|
|
266
|
+
-1.0909039974212646
|
|
267
|
+
],
|
|
268
|
+
[
|
|
269
|
+
"recovery--TOSRef",
|
|
270
|
+
-5.986723899841309
|
|
271
|
+
],
|
|
272
|
+
[
|
|
273
|
+
"recovery--pagePwReset",
|
|
274
|
+
-2.2017836570739746
|
|
275
|
+
],
|
|
276
|
+
[
|
|
277
|
+
"recovery--formTextPwReset",
|
|
278
|
+
-2.0704075723187998e-05
|
|
279
|
+
],
|
|
280
|
+
[
|
|
281
|
+
"recovery--formAttrsPwReset",
|
|
282
|
+
2.4164793491363525
|
|
283
|
+
],
|
|
284
|
+
[
|
|
285
|
+
"recovery--headingsPwReset",
|
|
286
|
+
4.336867332458496
|
|
287
|
+
],
|
|
288
|
+
[
|
|
289
|
+
"recovery--layoutPwReset",
|
|
290
|
+
0.04182944446802139
|
|
291
|
+
],
|
|
292
|
+
[
|
|
293
|
+
"recovery--pageRecovery",
|
|
294
|
+
5.971342086791992
|
|
295
|
+
],
|
|
296
|
+
[
|
|
297
|
+
"recovery--formTextRecovery",
|
|
298
|
+
1.1768496418554316e-35
|
|
299
|
+
],
|
|
300
|
+
[
|
|
301
|
+
"recovery--formAttrsRecovery",
|
|
302
|
+
2.6148746013641357
|
|
303
|
+
],
|
|
304
|
+
[
|
|
305
|
+
"recovery--headingsRecovery",
|
|
306
|
+
5.727959156036377
|
|
307
|
+
],
|
|
308
|
+
[
|
|
309
|
+
"recovery--layoutRecovery",
|
|
310
|
+
2.1721582412719727
|
|
311
|
+
],
|
|
312
|
+
[
|
|
313
|
+
"recovery--identifierRecovery",
|
|
314
|
+
7.586393356323242
|
|
315
|
+
],
|
|
316
|
+
[
|
|
317
|
+
"recovery--submitRecovery",
|
|
318
|
+
7.611932754516602
|
|
319
|
+
],
|
|
320
|
+
[
|
|
321
|
+
"recovery--formTextMFA",
|
|
322
|
+
0.8953113555908203
|
|
323
|
+
],
|
|
324
|
+
[
|
|
325
|
+
"recovery--formAttrsMFA",
|
|
326
|
+
2.243652820587158
|
|
327
|
+
],
|
|
328
|
+
[
|
|
329
|
+
"recovery--inputsMFA",
|
|
330
|
+
-4.307714939117432
|
|
331
|
+
],
|
|
332
|
+
[
|
|
333
|
+
"recovery--newsletterForm",
|
|
334
|
+
-5.093679904937744
|
|
335
|
+
],
|
|
336
|
+
[
|
|
337
|
+
"recovery--searchForm",
|
|
338
|
+
2.6055891513824463
|
|
339
|
+
],
|
|
340
|
+
[
|
|
341
|
+
"recovery--multistepForm",
|
|
342
|
+
-2.677457094192505
|
|
343
|
+
],
|
|
344
|
+
[
|
|
345
|
+
"recovery--multiAuthForm",
|
|
346
|
+
-1.9874005317687988
|
|
347
|
+
],
|
|
348
|
+
[
|
|
349
|
+
"recovery--multistepForm,multiAuthForm",
|
|
350
|
+
-1.3790802955627441
|
|
351
|
+
],
|
|
352
|
+
[
|
|
353
|
+
"recovery--visibleRatio,visibleFieldsCountScaled",
|
|
354
|
+
1.791503667831421
|
|
355
|
+
],
|
|
356
|
+
[
|
|
357
|
+
"recovery--visibleRatio,visibleIdentifiersCountScaled",
|
|
358
|
+
-0.9494102597236633
|
|
359
|
+
],
|
|
360
|
+
[
|
|
361
|
+
"recovery--visibleRatio,visiblePasswordsCountScaled",
|
|
362
|
+
-3.1869845390319824
|
|
363
|
+
],
|
|
364
|
+
[
|
|
365
|
+
"recovery--visibleRatio,hiddenIdentifiersCountScaled",
|
|
366
|
+
1.0118017196655273
|
|
367
|
+
],
|
|
368
|
+
[
|
|
369
|
+
"recovery--visibleRatio,hiddenPasswordsCountScaled",
|
|
370
|
+
-0.8004609942436218
|
|
371
|
+
],
|
|
372
|
+
[
|
|
373
|
+
"recovery--visibleRatio,multiAuthForm",
|
|
374
|
+
-1.530393123626709
|
|
375
|
+
],
|
|
376
|
+
[
|
|
377
|
+
"recovery--visibleRatio,multistepForm",
|
|
378
|
+
0.636962890625
|
|
379
|
+
],
|
|
380
|
+
[
|
|
381
|
+
"recovery--identifierRatio,visibleFieldsCountScaled",
|
|
382
|
+
4.78097677230835
|
|
383
|
+
],
|
|
384
|
+
[
|
|
385
|
+
"recovery--identifierRatio,visibleIdentifiersCountScaled",
|
|
386
|
+
-4.398954391479492
|
|
387
|
+
],
|
|
388
|
+
[
|
|
389
|
+
"recovery--identifierRatio,visiblePasswordsCountScaled",
|
|
390
|
+
-5.11899995803833
|
|
391
|
+
],
|
|
392
|
+
[
|
|
393
|
+
"recovery--identifierRatio,hiddenIdentifiersCountScaled",
|
|
394
|
+
2.6882452964782715
|
|
395
|
+
],
|
|
396
|
+
[
|
|
397
|
+
"recovery--identifierRatio,hiddenPasswordsCountScaled",
|
|
398
|
+
-4.727269172668457
|
|
399
|
+
],
|
|
400
|
+
[
|
|
401
|
+
"recovery--identifierRatio,multiAuthForm",
|
|
402
|
+
-2.036472797393799
|
|
403
|
+
],
|
|
404
|
+
[
|
|
405
|
+
"recovery--identifierRatio,multistepForm",
|
|
406
|
+
4.3962883949279785
|
|
407
|
+
],
|
|
408
|
+
[
|
|
409
|
+
"recovery--passwordRatio,visibleFieldsCountScaled",
|
|
410
|
+
-3.164785385131836
|
|
411
|
+
],
|
|
412
|
+
[
|
|
413
|
+
"recovery--passwordRatio,visibleIdentifiersCountScaled",
|
|
414
|
+
-4.5203142166137695
|
|
415
|
+
],
|
|
416
|
+
[
|
|
417
|
+
"recovery--passwordRatio,visiblePasswordsCountScaled",
|
|
418
|
+
-3.867450714111328
|
|
419
|
+
],
|
|
420
|
+
[
|
|
421
|
+
"recovery--passwordRatio,hiddenIdentifiersCountScaled",
|
|
422
|
+
-1.0072402954101562
|
|
423
|
+
],
|
|
424
|
+
[
|
|
425
|
+
"recovery--passwordRatio,hiddenPasswordsCountScaled",
|
|
426
|
+
-3.002961238962598e-05
|
|
427
|
+
],
|
|
428
|
+
[
|
|
429
|
+
"recovery--passwordRatio,multiAuthForm",
|
|
430
|
+
-0.3690747618675232
|
|
431
|
+
],
|
|
432
|
+
[
|
|
433
|
+
"recovery--passwordRatio,multistepForm",
|
|
434
|
+
0.37242916226387024
|
|
435
|
+
],
|
|
436
|
+
[
|
|
437
|
+
"recovery--requiredRatio,visibleFieldsCountScaled",
|
|
438
|
+
-3.152287483215332
|
|
439
|
+
],
|
|
440
|
+
[
|
|
441
|
+
"recovery--requiredRatio,visibleIdentifiersCountScaled",
|
|
442
|
+
-0.7932913303375244
|
|
443
|
+
],
|
|
444
|
+
[
|
|
445
|
+
"recovery--requiredRatio,visiblePasswordsCountScaled",
|
|
446
|
+
-1.2200944423675537
|
|
447
|
+
],
|
|
448
|
+
[
|
|
449
|
+
"recovery--requiredRatio,hiddenIdentifiersCountScaled",
|
|
450
|
+
-6.920216083526611
|
|
451
|
+
],
|
|
452
|
+
[
|
|
453
|
+
"recovery--requiredRatio,hiddenPasswordsCountScaled",
|
|
454
|
+
-0.0003239401848986745
|
|
455
|
+
],
|
|
456
|
+
[
|
|
457
|
+
"recovery--requiredRatio,multiAuthForm",
|
|
458
|
+
-0.20280800759792328
|
|
459
|
+
],
|
|
460
|
+
[
|
|
461
|
+
"recovery--requiredRatio,multistepForm",
|
|
462
|
+
-1.8623329401016235
|
|
463
|
+
]
|
|
464
|
+
]
|
|
465
|
+
}
|