axe-core-api 4.2.0.pre.d50cf94 → 4.2.1.pre.d87a85a

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75faaec6191b55edd1b3db1fb28d4fb6c50c4f3e46613d1ffe01cf9ad8afd323
4
- data.tar.gz: 16c30209e314a005c1f911bd8b151459f691a0d9e05d1be1ac5bde7b713d71b8
3
+ metadata.gz: '008b1ba8654a09e0e54dcfa3bb20d56abb38c5eefc7a8527229fa7a7358d5ebf'
4
+ data.tar.gz: 1c2c70fe199377877d1ed7e667b3ea2527714f7e289b2729839b692d5385a753
5
5
  SHA512:
6
- metadata.gz: 952140303c395ad36e9b82477fcc1069dbd5620983679d82406080956a480eb774d5510db09773f0212ab4e5221970cafc1b88ad8966dbb190b8f5900949c803
7
- data.tar.gz: 5ca7f3547dd3022ccddbe501c06dc13c0638d84f6e3aa6e7df4ec9e147bd394129277a6275c5935f3c376ac772838cc597c3e37463a2eda3dd47227dc5012747
6
+ metadata.gz: 581f6ad0d1bf351fa988838a60c6122c43099d9aab256b3cc45ce44400d0f49fc90857639dd74ec2ced81d080a9283208a2cbac12745b582af52f9cef36b0400
7
+ data.tar.gz: b386691064cef3acd9418d11c376844b9dd4a5fdecb82534dfb81557a1d828aa98dcf0798ce216f4279388c06252d4e5597ddf956e0c0b6e4ba4d80e7322ca85
@@ -16,13 +16,19 @@ module Axe
16
16
  @exclusion.concat selectors.map { |s| Array(Selector.new s) }
17
17
  end
18
18
 
19
+ def to_h
20
+ to_hash
21
+ end
19
22
  def to_hash
20
- { include: @inclusion, exclude: @exclusion }
21
- .reject { |k, v| v.empty? }
23
+ return { exclude: @exclusion } if @inclusion.empty?
24
+ h = {}
25
+ h["include"] = @inclusion unless @inclusion.empty?
26
+ h["exclude"] = @exclusion unless @exclusion.empty?
27
+ h
22
28
  end
23
29
 
24
- def to_json
25
- to_hash.to_json
30
+ def to_json(options = nil)
31
+ to_hash.to_json options
26
32
  end
27
33
 
28
34
  def empty?
@@ -14,12 +14,16 @@ module Axe
14
14
  @custom = {}
15
15
  end
16
16
 
17
+ def to_h
18
+ to_hash
19
+ end
20
+
17
21
  def to_hash
18
22
  @rules.to_hash.merge(@custom)
19
23
  end
20
24
 
21
- def to_json
22
- to_hash.to_json
25
+ def to_json(options = nil)
26
+ to_hash.to_json options
23
27
  end
24
28
 
25
29
  def empty?
@@ -10,6 +10,10 @@ module Axe
10
10
  attribute :incomplete, ::Array[Rule]
11
11
  attribute :passes, ::Array[Rule]
12
12
  attribute :timestamp
13
+ attribute :testEngine
14
+ attribute :testEnvironment
15
+ attribute :testRunner
16
+ attribute :toolOptions
13
17
  attribute :url, ::String
14
18
  attribute :violations, ::Array[Rule]
15
19
  end
@@ -28,12 +32,18 @@ module Axe
28
32
  inapplicable: inapplicable.map(&:to_h),
29
33
  incomplete: incomplete.map(&:to_h),
30
34
  passes: passes.map(&:to_h),
35
+ testEngine: testEngine,
31
36
  timestamp: timestamp,
32
37
  url: url,
33
38
  violations: violations.map(&:to_h),
34
39
  }
35
40
  end
36
41
 
42
+ def timestamp=(ts)
43
+ timestamp = ts
44
+ end
45
+
46
+
37
47
  private
38
48
 
39
49
  def violation_count_message
data/lib/axe/api/run.rb CHANGED
@@ -27,21 +27,182 @@ module Axe
27
27
  end
28
28
 
29
29
  def call(page)
30
- audit page do |results|
31
- Audit.new to_js, Results.new(results)
32
- end
30
+ results = audit page
31
+ Audit.new to_js, Results.new(results)
32
+ end
33
+
34
+ def analyze_post_43x(page, lib)
35
+ @original_window = window_handle page
36
+ partial_results = run_partial_recursive(page, @context, lib, true)
37
+ throw partial_results if partial_results.respond_to?("key?") and partial_results.key?("errorMessage")
38
+ results = within_about_blank_context(page) { |page|
39
+ Common::Loader.new(page, lib).load_top_level Axe::Configuration.instance.jslib
40
+ begin
41
+ axe_finish_run page, partial_results
42
+ rescue
43
+ raise StandardError.new "axe.finishRun failed. Please check out https://github.com/dequelabs/axe-core-gems/error-handling.md`"
44
+ end
45
+ }
46
+ Audit.new to_js, Results.new(results)
33
47
  end
34
48
 
35
49
  private
36
50
 
37
51
  def audit(page)
38
- yield page.execute_async_script "#{METHOD_NAME}.apply(#{Core::JS_NAME}, arguments)", *js_args
52
+ script = <<-JS
53
+ var callback = arguments[arguments.length - 1];
54
+ var context = arguments[0] || document;
55
+ var options = arguments[1] || {};
56
+ #{METHOD_NAME}(context, options).then(callback);
57
+ JS
58
+ page.execute_async_script_fixed script, *js_args
59
+ end
60
+
61
+ def switch_to_frame_by_handle(page, handle)
62
+ page = get_selenium page
63
+ page.switch_to.frame handle
64
+ end
65
+
66
+ def switch_to_parent_frame(page)
67
+ page = get_selenium page
68
+ page.switch_to.parent_frame
69
+ end
70
+
71
+ def within_about_blank_context(page)
72
+ driver = get_selenium page
73
+
74
+ num_handles = page.window_handles.length
75
+ begin
76
+ driver.execute_script("window.open('about:blank'), '_blank'")
77
+ if num_handles == page.window_handles.length
78
+ raise StandardError.new "Could not open new window. Please make sure that you have popup blockers disabled."
79
+ end
80
+ driver.switch_to.window page.window_handles[-1]
81
+ rescue
82
+ raise StandardError.new "switchToWindow failed. Are you using updated browser drivers?"
83
+ end
84
+ driver.get "about:blank"
85
+
86
+ ret = yield page
87
+
88
+ driver.switch_to.window page.window_handles[-1]
89
+ driver.close
90
+ driver.switch_to.window @original_window
91
+
92
+ ret
93
+ end
94
+ def window_handle(page)
95
+ page = get_selenium page
96
+
97
+ return page.window_handle if page.respond_to?("window_handle")
98
+ page.current_window_handle
99
+ end
100
+
101
+ def run_partial_recursive(page, context, lib, top_level = false)
102
+ begin
103
+ if not top_level
104
+ begin
105
+ Common::Loader.new(page, lib).load_top_level Axe::Configuration.instance.jslib
106
+ rescue
107
+ return [nil]
108
+ end
109
+
110
+ end
111
+
112
+ frame_contexts = get_frame_context_script page
113
+ if frame_contexts.respond_to?("key?") and frame_contexts.key?("errorMessage")
114
+ throw frame_contexts if top_level
115
+ return [nil]
116
+ end
117
+
118
+ res = axe_run_partial page, context
119
+ if res.key?("errorMessage")
120
+ throw res if top_level
121
+ return [nil]
122
+ else
123
+ results = [res]
124
+ end
125
+
126
+ for frame_context in frame_contexts
127
+ frame_selector = frame_context["frameSelector"]
128
+ frame_context = frame_context["frameContext"]
129
+ frame = axe_shadow_select page, frame_selector
130
+ switch_to_frame_by_handle page, frame
131
+ res = run_partial_recursive page, frame_context, lib
132
+ results += res
133
+ end
134
+
135
+ ensure
136
+ switch_to_parent_frame page if not top_level
137
+ end
138
+ return results
139
+ end
140
+
141
+ def axe_finish_run(page, partial_results)
142
+ script = <<-JS
143
+ const partialResults = arguments[0];
144
+ return axe.finishRun(partialResults);
145
+ JS
146
+ page.execute_script_fixed script, partial_results
147
+ end
148
+
149
+ def axe_shadow_select(page, frame_selector)
150
+ script = <<-JS
151
+ const frameSelector = arguments[0];
152
+ return axe.utils.shadowSelect(frameSelector);
153
+ JS
154
+ page.execute_script_fixed script, frame_selector
155
+ end
156
+
157
+ def axe_run_partial(page, context)
158
+ script = <<-JS
159
+ const context = arguments[0];
160
+ const options = arguments[1];
161
+ const cb = arguments[arguments.length - 1];
162
+ try {
163
+ const ret = window.axe.runPartial(context, options);
164
+ cb(ret);
165
+ } catch (err) {
166
+ const ret = {
167
+ violations: [],
168
+ passes: [],
169
+ url: '',
170
+ timestamp: new Date().toString(),
171
+ errorMessage: err.message
172
+ };
173
+ cb(ret);
174
+ }
175
+ JS
176
+ page.execute_async_script_fixed script, context, @options
177
+ end
178
+
179
+ def get_frame_context_script(page)
180
+ script = <<-JS
181
+ const context = arguments[0];
182
+ try {
183
+ return window.axe.utils.getFrameContexts(context);
184
+ } catch (err) {
185
+ return {
186
+ violations: [],
187
+ passes: [],
188
+ url: '',
189
+ timestamp: new Date().toString(),
190
+ errorMessage: err.message
191
+ };
192
+ }
193
+ JS
194
+ page.execute_script_fixed script, @context
195
+ end
196
+
197
+ def get_selenium(page)
198
+ page = page.driver if page.respond_to?("driver")
199
+ page = page.browser if page.respond_to?("browser") and not page.browser.is_a?(::Symbol)
200
+ page
39
201
  end
40
202
 
41
203
  def js_args
42
204
  [@context, @options]
43
- .reject(&:empty?)
44
- .map(&:to_json)
205
+ .map(&:to_h)
45
206
  end
46
207
 
47
208
  def to_js
@@ -14,7 +14,8 @@ module Axe
14
14
  attr_writer :jslib
15
15
  attr_accessor :page,
16
16
  :jslib_path,
17
- :skip_iframes
17
+ :skip_iframes,
18
+ :legacy_mode
18
19
  def_delegators ::WebDriverScriptAdapter,
19
20
  :async_results_identifier,
20
21
  :async_results_identifier=,
data/lib/axe/core.rb CHANGED
@@ -14,13 +14,36 @@ module Axe
14
14
  end
15
15
 
16
16
  def call(callable)
17
- callable.call(@page)
17
+ if use_run_partial
18
+ callable.analyze_post_43x @page, self
19
+ else
20
+ callable.call @page
21
+ end
22
+ end
23
+
24
+ def call_verbatim(callable)
25
+ callable.call @page
18
26
  end
19
27
 
20
28
  private
21
29
 
30
+ def use_run_partial
31
+ has_run_partial? and not Axe::Configuration.instance.legacy_mode
32
+ end
33
+
22
34
  def load_axe_core(source)
23
- Common::Loader.new(@page, self).call(source) unless already_loaded?
35
+ return if already_loaded?
36
+ loader = Common::Loader.new(@page, self)
37
+ loader.load_top_level source
38
+ return if use_run_partial
39
+
40
+ loader.call source
41
+ end
42
+
43
+ def has_run_partial?
44
+ @page.evaluate_script <<-JS
45
+ typeof window.axe.runPartial === 'function'
46
+ JS
24
47
  end
25
48
 
26
49
  def already_loaded?
data/lib/loader.rb CHANGED
@@ -6,20 +6,33 @@ module Common
6
6
  def initialize(page, lib)
7
7
  @page = page
8
8
  @lib = lib
9
+ @loaded_top_level = false
9
10
  end
10
11
 
11
- def call(source)
12
+ def load_top_level(source)
12
13
  @page.execute_script source
13
- @page.execute_script "axe.configure({ allowedOrigins: ['<unsafe_all_origins>'] });"
14
+ @loaded_top_level = true
15
+ Common::Hooks.run_after_load @lib
16
+ end
17
+
18
+ def call(source, is_top_level = true)
19
+ @page.execute_script source unless (@loaded_top_level and is_top_level)
20
+ set_allowed_origins
14
21
  Common::Hooks.run_after_load @lib
15
22
  load_into_iframes(source) unless Axe::Configuration.instance.skip_iframes
16
23
  end
17
24
 
18
25
  private
19
26
 
27
+ def set_allowed_origins
28
+ allowed_origins = "<unsafe_all_origins>"
29
+ allowed_origins = "<same_origin>" if Axe::Configuration.instance.legacy_mode
30
+ @page.execute_script "axe.configure({ allowedOrigins: ['#{allowed_origins}'] });"
31
+ end
32
+
20
33
  def load_into_iframes(source)
21
34
  @page.find_frames.each do |iframe|
22
- @page.within_frame(iframe) { call source }
35
+ @page.within_frame(iframe) { call source, false }
23
36
  end
24
37
  end
25
38
  end
@@ -8,7 +8,7 @@ module WebDriverScriptAdapter
8
8
  def self.wrap(driver)
9
9
  raise WebDriverError, "WebDriver must respond to #execute_script" unless driver.respond_to? :execute_script
10
10
 
11
- driver.respond_to?(:evaluate_script) ? driver : new(driver)
11
+ driver.respond_to?(:evaluate_script) ? ExecEvalScriptAdapter2.new(driver) : new(driver)
12
12
  end
13
13
 
14
14
  # executes script without returning result
@@ -21,6 +21,19 @@ module WebDriverScriptAdapter
21
21
  def evaluate_script(script)
22
22
  __getobj__.execute_script "return #{script}"
23
23
  end
24
+
25
+ def execute_script_fixed(script, *args)
26
+ page = __getobj__
27
+ page.execute_script(script, *args)
28
+ end
29
+ end
30
+ class ExecEvalScriptAdapter2 < ::DumbDelegator
31
+ def execute_script_fixed(script, *args)
32
+ page = __getobj__
33
+ page = page.driver if page.respond_to?("driver")
34
+ page = page.browser if page.respond_to?("browser") and not page.browser.is_a?(::Symbol)
35
+ page.execute_script(script, *args)
36
+ end
24
37
  end
25
38
 
26
39
  class WebDriverError < TypeError; end
@@ -3,6 +3,11 @@ require "securerandom"
3
3
  require "timeout"
4
4
  require_relative "./exec_eval_script_adapter"
5
5
 
6
+ def get_selenium(page)
7
+ page = page.driver if page.respond_to?("driver")
8
+ page = page.browser if page.respond_to?("browser") and not page.browser.is_a?(Symbol)
9
+ page
10
+ end
6
11
  module WebDriverScriptAdapter
7
12
  class << self
8
13
  attr_accessor :async_results_identifier,
@@ -76,7 +81,7 @@ module WebDriverScriptAdapter
76
81
 
77
82
  class ExecuteAsyncScriptAdapter < ::DumbDelegator
78
83
  def self.wrap(driver)
79
- new ExecEvalScriptAdapter.wrap driver
84
+ new driver
80
85
  end
81
86
 
82
87
  def execute_async_script(script, *args)
@@ -84,6 +89,13 @@ module WebDriverScriptAdapter
84
89
  execute_script ScriptWriter.async_wrapper(script, *args, ScriptWriter.callback(results))
85
90
  Patiently.wait_until { evaluate_script results }
86
91
  end
92
+
93
+ def execute_async_script_fixed(script, *args)
94
+ page = __getobj__
95
+ page = page.driver if page.respond_to?("driver")
96
+ page = page.browser if page.respond_to?("browser") and not page.browser.is_a?(::Symbol)
97
+ page.execute_async_script(script, *args)
98
+ end
87
99
  end
88
100
 
89
101
  configure do |c|
@@ -1,4 +1,4 @@
1
- /*! axe v4.2.1
1
+ /*! axe v4.3.3
2
2
  * Copyright (c) 2021 Deque Systems, Inc.
3
3
  *
4
4
  * Your use of this Source Code Form is subject to the terms of the Mozilla Public
@@ -9,4 +9,4 @@
9
9
  * distribute or in any file that contains substantial portions of this source
10
10
  * code.
11
11
  */
12
- !function e(window){var uc=window,document=window.document;function cc(e){return(cc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var axe=axe||{};function dc(e){this.name="SupportError",this.cause=e.cause,this.message="`".concat(e.cause,"` - feature unsupported in your environment."),e.ruleId&&(this.ruleId=e.ruleId,this.message+=" Skipping ".concat(this.ruleId," rule.")),this.stack=(new Error).stack}function pc(e,t){if(null==e)return{};var r,a=function(e,t){if(null==e)return{};var r,a,n={},o=Object.keys(e);for(a=0;a<o.length;a++)r=o[a],0<=t.indexOf(r)||(n[r]=e[r]);return n}(e,t);if(Object.getOwnPropertySymbols)for(var n=Object.getOwnPropertySymbols(e),o=0;o<n.length;o++)r=n[o],0<=t.indexOf(r)||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r]);return a}function fc(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}function r(e,t){return(r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function mc(o){var i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}();return function(){var e,t,r,a,n=l(o);return t=i?(e=l(this).constructor,Reflect.construct(n,arguments,e)):n.apply(this,arguments),r=this,!(a=t)||"object"!==cc(a)&&"function"!=typeof a?hc(r):a}}function hc(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function l(e){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function gc(e){return function(e){if(Array.isArray(e))return n(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||s(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function vc(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],a=!0,n=!1,o=void 0;try{for(var i,l=e[Symbol.iterator]();!(a=(i=l.next()).done)&&(r.push(i.value),!t||r.length!==t);a=!0);}catch(e){n=!0,o=e}finally{try{a||null==l.return||l.return()}finally{if(n)throw o}}return r}(e,t)||s(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function bc(){return(bc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&(e[a]=r[a])}return e}).apply(this,arguments)}function yc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var r=0;r<t.length;r++){var a=t[r];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}function Dc(e,t,r){return t&&a(e.prototype,t),r&&a(e,r),e}function wc(e,t){var r;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=s(e))||t&&e&&"number"==typeof e.length){r&&(e=r);function a(){}var n=0;return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i=!0,l=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return i=e.done,e},e:function(e){l=!0,o=e},f:function(){try{i||null==r.return||r.return()}finally{if(l)throw o}}}}function s(e,t){if(e){if("string"==typeof e)return n(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}}function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,a=new Array(t);r<t;r++)a[r]=e[r];return a}function cc(e){return(cc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}axe.version="4.2.1","function"==typeof define&&define.amd&&define("axe-core",[],function(){return axe}),"object"===("undefined"==typeof module?"undefined":cc(module))&&module.exports&&"function"==typeof e.toString&&(axe.source="("+e.toString()+')(typeof window === "object" ? window : this);',module.exports=axe),"function"==typeof window.getComputedStyle&&(window.axe=axe),(dc.prototype=Object.create(Error.prototype)).constructor=dc,function(){function o(e){return i(e,"__esModule",{value:!0})}function e(e,t){return function(){return t||e((t={exports:{}}).exports,t),t.exports}}function t(e,t){for(var r in o(e),t)i(e,r,{get:t[r],enumerable:!0})}function r(e){return e&&e.__esModule?e:function(t,r){if(o(t),"object"===cc(r)||"function"==typeof r){var a,n=wc(s(r));try{for(n.s();!(a=n.n()).done;)!function(){var e=a.value;l.call(t,e)||"default"===e||i(t,e,{get:function(){return r[e]},enumerable:u(r,e).enumerable})}()}catch(e){n.e(e)}finally{n.f()}}return t}(i(a(n(e)),"default",{value:e,enumerable:!0}),e)}var a=Object.create,i=Object.defineProperty,n=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,s=Object.getOwnPropertyNames,u=Object.getOwnPropertyDescriptor,c=e(function(l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.isIdentStart=function(e){return"a"<=e&&e<="z"||"A"<=e&&e<="Z"||"-"===e||"_"===e},l.isIdent=function(e){return"a"<=e&&e<="z"||"A"<=e&&e<="Z"||"0"<=e&&e<="9"||"-"===e||"_"===e},l.isHex=function(e){return"a"<=e&&e<="f"||"A"<=e&&e<="F"||"0"<=e&&e<="9"},l.escapeIdentifier=function(e){for(var t=e.length,r="",a=0;a<t;){var n=e.charAt(a);if(l.identSpecialChars[n])r+="\\"+n;else if("_"===n||"-"===n||"A"<=n&&n<="Z"||"a"<=n&&n<="z"||0!==a&&"0"<=n&&n<="9")r+=n;else{var o=n.charCodeAt(0);if(55296==(63488&o)){var i=e.charCodeAt(a++);if(55296!=(64512&o)||56320!=(64512&i))throw Error("UCS-2(decode): illegal sequence");o=((1023&o)<<10)+(1023&i)+65536}r+="\\"+o.toString(16)+" "}a++}return r},l.escapeStr=function(e){for(var t,r=e.length,a="",n=0;n<r;){var o=e.charAt(n);'"'===o?o='\\"':"\\"===o?o="\\\\":void 0!==(t=l.strReplacementsRev[o])&&(o=t),a+=o,n++}return'"'+a+'"'},l.identSpecialChars={"!":!0,'"':!0,"#":!0,$:!0,"%":!0,"&":!0,"'":!0,"(":!0,")":!0,"*":!0,"+":!0,",":!0,".":!0,"/":!0,";":!0,"<":!0,"=":!0,">":!0,"?":!0,"@":!0,"[":!0,"\\":!0,"]":!0,"^":!0,"`":!0,"{":!0,"|":!0,"}":!0,"~":!0},l.strReplacementsRev={"\n":"\\n","\r":"\\r","\t":"\\t","\f":"\\f","\v":"\\v"},l.singleQuoteEscapeChars={n:"\n",r:"\r",t:"\t",f:"\f","\\":"\\","'":"'"},l.doubleQuotesEscapeChars={n:"\n",r:"\r",t:"\t",f:"\f","\\":"\\",'"':'"'}}),d=e(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var b=c();e.parseCssSelector=function(l,s,u,c,n,d){var p=l.length,f="";function m(e,t){var r="";for(s++,f=l.charAt(s);s<p;){if(f===e)return s++,r;if("\\"===f){s++;var a;if((f=l.charAt(s))===e)r+=e;else if(void 0!==(a=t[f]))r+=a;else{if(b.isHex(f)){var n=f;for(s++,f=l.charAt(s);b.isHex(f);)n+=f,s++,f=l.charAt(s);" "===f&&(s++,f=l.charAt(s)),r+=String.fromCharCode(parseInt(n,16));continue}r+=f}}else r+=f;s++,f=l.charAt(s)}return r}function h(){var e="";for(f=l.charAt(s);s<p;){if(b.isIdent(f))e+=f;else{if("\\"!==f)return e;if(p<=++s)throw Error("Expected symbol but end of file reached.");if(f=l.charAt(s),b.identSpecialChars[f])e+=f;else{if(b.isHex(f)){var t=f;for(s++,f=l.charAt(s);b.isHex(f);)t+=f,s++,f=l.charAt(s);" "===f&&(s++,f=l.charAt(s)),e+=String.fromCharCode(parseInt(t,16));continue}e+=f}}s++,f=l.charAt(s)}return e}function g(){f=l.charAt(s);for(var e=!1;" "===f||"\t"===f||"\n"===f||"\r"===f||"\f"===f;)e=!0,s++,f=l.charAt(s);return e}function v(){var e=r();if(!e)return null;var t=e;for(f=l.charAt(s);","===f;){if(s++,g(),"selectors"!==t.type&&(t={type:"selectors",selectors:[e]}),!(e=r()))throw Error('Rule expected after ",".');t.selectors.push(e)}return t}function r(){g();var e={type:"ruleSet"},t=o();if(!t)return null;for(var r=e;t&&(t.type="rule",r.rule=t,r=t,g(),f=l.charAt(s),!(p<=s||","===f||")"===f));)if(n[f]){var a=f;if(s++,g(),!(t=o()))throw Error('Rule expected after "'+a+'".');t.nestingOperator=a}else(t=o())&&(t.nestingOperator=null);return e}function o(){for(var e=null;s<p;)if("*"===(f=l.charAt(s)))s++,(e=e||{}).tagName="*";else if(b.isIdentStart(f)||"\\"===f)(e=e||{}).tagName=h();else if("."===f)s++,((e=e||{}).classNames=e.classNames||[]).push(h());else if("#"===f)s++,(e=e||{}).id=h();else if("["===f){s++,g();var t={name:h()};if(g(),"]"===f)s++;else{var r="";if(c[f]&&(r=f,s++,f=l.charAt(s)),p<=s)throw Error('Expected "=" but end of file reached.');if("="!==f)throw Error('Expected "=" but "'+f+'" found.');t.operator=r+"=",s++,g();var a="";if(t.valueType="string",'"'===f)a=m('"',b.doubleQuotesEscapeChars);else if("'"===f)a=m("'",b.singleQuoteEscapeChars);else if(d&&"$"===f)s++,a=h(),t.valueType="substitute";else{for(;s<p&&"]"!==f;)a+=f,s++,f=l.charAt(s);a=a.trim()}if(g(),p<=s)throw Error('Expected "]" but end of file reached.');if("]"!==f)throw Error('Expected "]" but "'+f+'" found.');s++,t.value=a}((e=e||{}).attrs=e.attrs||[]).push(t)}else{if(":"!==f)break;s++;var n=h(),o={name:n};if("("===f){s++;var i="";if(g(),"selector"===u[n])o.valueType="selector",i=v();else{if(o.valueType=u[n]||"string",'"'===f)i=m('"',b.doubleQuotesEscapeChars);else if("'"===f)i=m("'",b.singleQuoteEscapeChars);else if(d&&"$"===f)s++,i=h(),o.valueType="substitute";else{for(;s<p&&")"!==f;)i+=f,s++,f=l.charAt(s);i=i.trim()}g()}if(p<=s)throw Error('Expected ")" but end of file reached.');if(")"!==f)throw Error('Expected ")" but "'+f+'" found.');s++,o.value=i}((e=e||{}).pseudos=e.pseudos||[]).push(o)}return e}return function(){var e=v();if(s<p)throw Error('Rule expected but "'+l.charAt(s)+'" found.');return e}()}}),p=e(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=c();e.renderEntity=function t(e){var r="";switch(e.type){case"ruleSet":for(var a=e.rule,n=[];a;)a.nestingOperator&&n.push(a.nestingOperator),n.push(t(a)),a=a.rule;r=n.join(" ");break;case"selectors":r=e.selectors.map(t).join(", ");break;case"rule":e.tagName&&(r="*"===e.tagName?"*":o.escapeIdentifier(e.tagName)),e.id&&(r+="#"+o.escapeIdentifier(e.id)),e.classNames&&(r+=e.classNames.map(function(e){return"."+o.escapeIdentifier(e)}).join("")),e.attrs&&(r+=e.attrs.map(function(e){return"operator"in e?"substitute"===e.valueType?"["+o.escapeIdentifier(e.name)+e.operator+"$"+e.value+"]":"["+o.escapeIdentifier(e.name)+e.operator+o.escapeStr(e.value)+"]":"["+o.escapeIdentifier(e.name)+"]"}).join("")),e.pseudos&&(r+=e.pseudos.map(function(e){return e.valueType?"selector"===e.valueType?":"+o.escapeIdentifier(e.name)+"("+t(e.value)+")":"substitute"===e.valueType?":"+o.escapeIdentifier(e.name)+"($"+e.value+")":"numeric"===e.valueType?":"+o.escapeIdentifier(e.name)+"("+e.value+")":":"+o.escapeIdentifier(e.name)+"("+o.escapeIdentifier(e.value)+")":":"+o.escapeIdentifier(e.name)}).join(""));break;default:throw Error('Unknown entity type: "'+e.type+'".')}return r}}),f=e(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=d(),r=p(),a=(n.prototype.registerSelectorPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.pseudos[n]="selector"}return this},n.prototype.unregisterSelectorPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.pseudos[n]}return this},n.prototype.registerNumericPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.pseudos[n]="numeric"}return this},n.prototype.unregisterNumericPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.pseudos[n]}return this},n.prototype.registerNestingOperators=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.ruleNestingOperators[n]=!0}return this},n.prototype.unregisterNestingOperators=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.ruleNestingOperators[n]}return this},n.prototype.registerAttrEqualityMods=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.attrEqualityMods[n]=!0}return this},n.prototype.unregisterAttrEqualityMods=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.attrEqualityMods[n]}return this},n.prototype.enableSubstitutes=function(){return this.substitutesEnabled=!0,this},n.prototype.disableSubstitutes=function(){return this.substitutesEnabled=!1,this},n.prototype.parse=function(e){return t.parseCssSelector(e,0,this.pseudos,this.attrEqualityMods,this.ruleNestingOperators,this.substitutesEnabled)},n.prototype.render=function(e){return r.renderEntity(e).trim()},n);function n(){this.pseudos={},this.attrEqualityMods={},this.ruleNestingOperators={},this.substitutesEnabled=!1}e.CssSelectorParser=a}),m=e(function(e,t){"use strict";t.exports=function(){}}),C=e(function(e,t){"use strict";var r=m()();t.exports=function(e){return e!==r&&null!==e}}),h=e(function(e,t){"use strict";var r=C(),a=Array.prototype.forEach,n=Object.create;t.exports=function(e){var t=n(null);return a.call(arguments,function(e){r(e)&&function(e,t){var r;for(r in e)t[r]=e[r]}(Object(e),t)}),t}}),g=e(function(e,t){"use strict";t.exports=function(){var e=Math.sign;return"function"==typeof e&&(1===e(10)&&-1===e(-20))}}),v=e(function(e,t){"use strict";t.exports=function(e){return e=Number(e),isNaN(e)||0===e?e:0<e?1:-1}}),b=e(function(e,t){"use strict";t.exports=g()()?Math.sign:v()}),y=e(function(e,t){"use strict";var r=b(),a=Math.abs,n=Math.floor;t.exports=function(e){return isNaN(e)?0:0!==(e=Number(e))&&isFinite(e)?r(e)*n(a(e)):e}}),F=e(function(e,t){"use strict";var r=y(),a=Math.max;t.exports=function(e){return a(0,r(e))}}),D=e(function(e,t){"use strict";var a=F();t.exports=function(e,t,r){return isNaN(e)?0<=t?r&&t?t-1:t:1:!1!==e&&a(e)}}),k=e(function(e,t){"use strict";t.exports=function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function");return e}}),R=e(function(e,t){"use strict";var r=C();t.exports=function(e){if(!r(e))throw new TypeError("Cannot use null or undefined");return e}}),w=e(function(e,t){"use strict";var l=k(),s=R(),u=Function.prototype.bind,c=Function.prototype.call,d=Object.keys,p=Object.prototype.propertyIsEnumerable;t.exports=function(o,i){return function(r,a){var e,n=arguments[2],t=arguments[3];return r=Object(s(r)),l(a),e=d(r),t&&e.sort("function"==typeof t?u.call(t,r):void 0),"function"!=typeof o&&(o=e[o]),c.call(o,e,function(e,t){return p.call(r,e)?c.call(a,n,r[e],e,r,t):i})}}}),x=e(function(e,t){"use strict";t.exports=w()("forEach")}),E=e(function(){}),A=e(function(e,t){"use strict";t.exports=function(){var e,t=Object.assign;return"function"==typeof t&&(t(e={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}}),T=e(function(e,t){"use strict";t.exports=function(){try{return Object.keys("primitive"),!0}catch(e){return!1}}}),N=e(function(e,t){"use strict";var r=C(),a=Object.keys;t.exports=function(e){return a(r(e)?Object(e):e)}}),_=e(function(e,t){"use strict";t.exports=T()()?Object.keys:N()}),O=e(function(e,t){"use strict";var i=_(),l=R(),s=Math.max;t.exports=function(t,r){var a,e,n,o=s(arguments.length,2);for(t=Object(l(t)),n=function(e){try{t[e]=r[e]}catch(e){a=a||e}},e=1;e<o;++e)i(r=arguments[e]).forEach(n);if(void 0!==a)throw a;return t}}),S=e(function(e,t){"use strict";t.exports=A()()?Object.assign:O()}),P=e(function(e,t){"use strict";var r=C(),a={function:!0,object:!0};t.exports=function(e){return r(e)&&a[cc(e)]||!1}}),I=e(function(e,n){"use strict";var o=S(),i=P(),l=C(),s=Error.captureStackTrace;n.exports=function(e){var t=new Error(e),r=arguments[1],a=arguments[2];return l(a)||i(r)&&(a=r,r=null),l(a)&&o(t,a),l(r)&&(t.code=r),s&&s(t,n.exports),t}}),B=e(function(e,t){"use strict";var n=R(),o=Object.defineProperty,i=Object.getOwnPropertyDescriptor,l=Object.getOwnPropertyNames,s=Object.getOwnPropertySymbols;t.exports=function(t,r){var a,e=Object(n(r));if(t=Object(n(t)),l(e).forEach(function(e){try{o(t,e,i(r,e))}catch(e){a=e}}),"function"==typeof s&&s(e).forEach(function(e){try{o(t,e,i(r,e))}catch(e){a=e}}),void 0!==a)throw a;return t}}),L=e(function(e,t){"use strict";function r(e,t){return t}var a,n,o,i,l,s=F();try{Object.defineProperty(r,"length",{configurable:!0,writable:!1,enumerable:!1,value:1})}catch(e){}1===r.length?(a={configurable:!0,writable:!1,enumerable:!1},n=Object.defineProperty,t.exports=function(e,t){return t=s(t),e.length===t?e:(a.value=t,n(e,"length",a))}):(i=B(),l=[],o=function(e){var t,r=0;if(l[e])return l[e];for(t=[];e--;)t.push("a"+(++r).toString(36));return new Function("fn","return function ("+t.join(", ")+") { return fn.apply(this, arguments); };")},t.exports=function(e,t){var r;if(t=s(t),e.length===t)return e;r=o(t)(e);try{i(r,e)}catch(e){}return r})}),q=e(function(e,t){"use strict";t.exports=function(e){return null!=e}}),M=e(function(e,t){"use strict";var r=q(),a={object:!0,function:!0,undefined:!0};t.exports=function(e){return!!r(e)&&hasOwnProperty.call(a,cc(e))}}),j=e(function(e,t){"use strict";var r=M();t.exports=function(e){if(!r(e))return!1;try{return e.constructor?e.constructor.prototype===e:!1}catch(e){return!1}}}),U=e(function(e,t){"use strict";var r=j();t.exports=function(e){if("function"!=typeof e)return!1;if(!hasOwnProperty.call(e,"length"))return!1;try{if("number"!=typeof e.length)return!1;if("function"!=typeof e.call)return!1;if("function"!=typeof e.apply)return!1}catch(e){return!1}return!r(e)}}),V=e(function(e,t){"use strict";var r=U(),a=/^\s*class[\s{/}]/,n=Function.prototype.toString;t.exports=function(e){return!!r(e)&&!a.test(n.call(e))}}),H=e(function(e,t){"use strict";var r="razdwatrzy";t.exports=function(){return"function"==typeof r.contains&&(!0===r.contains("dwa")&&!1===r.contains("foo"))}}),z=e(function(e,t){"use strict";var r=String.prototype.indexOf;t.exports=function(e){return-1<r.call(this,e,arguments[1])}}),$=e(function(e,t){"use strict";t.exports=H()()?String.prototype.contains:z()}),W=e(function(e,t){"use strict";var l=q(),s=V(),u=S(),c=h(),d=$();(t.exports=function(e,t){var r,a,n,o,i;return arguments.length<2||"string"!=typeof e?(o=t,t=e,e=null):o=arguments[2],l(e)?(r=d.call(e,"c"),a=d.call(e,"e"),n=d.call(e,"w")):a=!(r=n=!0),i={value:t,configurable:r,enumerable:a,writable:n},o?u(c(o),i):i}).gs=function(e,t,r){var a,n,o,i;return"string"!=typeof e?(o=r,r=t,t=e,e=null):o=arguments[3],l(t)?s(t)?l(r)?s(r)||(o=r,r=void 0):r=void 0:(o=t,t=r=void 0):t=void 0,n=l(e)?(a=d.call(e,"c"),d.call(e,"e")):!(a=!0),i={get:t,set:r,configurable:a,enumerable:n},o?u(c(o),i):i}}),G=e(function(e,t){"use strict";var r=W(),i=k(),s=Function.prototype.apply,u=Function.prototype.call,a=Object.create,n=Object.defineProperty,o=Object.defineProperties,c=Object.prototype.hasOwnProperty,l={configurable:!0,enumerable:!1,writable:!0},d=function(e,t){var r;return i(t),c.call(this,"__ee__")?r=this.__ee__:(r=l.value=a(null),n(this,"__ee__",l),l.value=null),r[e]?"object"===cc(r[e])?r[e].push(t):r[e]=[r[e],t]:r[e]=t,this},p=function(e,t){var r,a;return i(t),d.call(a=this,e,r=function(){f.call(a,e,r),s.call(t,this,arguments)}),r.__eeOnceListener__=t,this},f=function(e,t){var r,a,n,o;if(i(t),!c.call(this,"__ee__"))return this;if(!(r=this.__ee__)[e])return this;if(a=r[e],"object"===cc(a))for(o=0;n=a[o];++o)n!==t&&n.__eeOnceListener__!==t||(2===a.length?r[e]=a[o?0:1]:a.splice(o,1));else a!==t&&a.__eeOnceListener__!==t||delete r[e];return this},m=function(e,t,r){var a,n,o,i,l;if(c.call(this,"__ee__")&&(i=this.__ee__[e]))if("object"===cc(i)){for(n=arguments.length,l=new Array(n-1),a=1;a<n;++a)l[a-1]=arguments[a];for(i=i.slice(),a=0;o=i[a];++a)s.call(o,this,l)}else switch(arguments.length){case 1:u.call(i,this);break;case 2:u.call(i,this,t);break;case 3:u.call(i,this,t,r);break;default:for(n=arguments.length,l=new Array(n-1),a=1;a<n;++a)l[a-1]=arguments[a];s.call(i,this,l)}},h={on:d,once:p,off:f,emit:m},g={on:r(d),once:r(p),off:r(f),emit:r(m)},v=o({},g);t.exports=e=function(e){return null==e?a(v):o(Object(e),g)},e.methods=h}),Y=e(function(e,t){"use strict";t.exports=function(){var e,t,r=Array.from;return"function"==typeof r&&(t=r(e=["raz","dwa"]),Boolean(t&&t!==e&&"dwa"===t[1]))}}),K=e(function(e,t){"use strict";t.exports=function(){return"object"===("undefined"==typeof globalThis?"undefined":cc(globalThis))&&(!!globalThis&&globalThis.Array===Array)}}),X=e(function(e,t){function r(){if("object"===("undefined"==typeof self?"undefined":cc(self))&&self)return self;if("object"===(void 0===window?"undefined":cc(window))&&window)return window;throw new Error("Unable to resolve global `this`")}t.exports=function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch(e){return r()}try{return __global__?__global__:r()}finally{delete Object.prototype.__global__}}()}),J=e(function(e,t){"use strict";t.exports=K()()?globalThis:X()}),Q=e(function(e,t){"use strict";var r=J(),a={object:!0,symbol:!0};t.exports=function(){var e,t=r.Symbol;if("function"!=typeof t)return!1;e=t("test symbol");try{String(e)}catch(e){return!1}return!!a[cc(t.iterator)]&&(!!a[cc(t.toPrimitive)]&&!!a[cc(t.toStringTag)])}}),Z=e(function(e,t){"use strict";t.exports=function(e){return!!e&&("symbol"===cc(e)||!!e.constructor&&("Symbol"===e.constructor.name&&"Symbol"===e[e.constructor.toStringTag]))}}),ee=e(function(e,t){"use strict";var r=Z();t.exports=function(e){if(!r(e))throw new TypeError(e+" is not a symbol");return e}}),te=e(function(e,t){"use strict";var n=W(),r=Object.create,o=Object.defineProperty,i=Object.prototype,l=r(null);t.exports=function(e){for(var t,r,a=0;l[e+(a||"")];)++a;return l[e+=a||""]=!0,o(i,t="@@"+e,n.gs(null,function(e){r||(r=!0,o(this,t,n(e)),r=!1)})),t}}),re=e(function(e,t){"use strict";var r=W(),a=J().Symbol;t.exports=function(e){return Object.defineProperties(e,{hasInstance:r("",a&&a.hasInstance||e("hasInstance")),isConcatSpreadable:r("",a&&a.isConcatSpreadable||e("isConcatSpreadable")),iterator:r("",a&&a.iterator||e("iterator")),match:r("",a&&a.match||e("match")),replace:r("",a&&a.replace||e("replace")),search:r("",a&&a.search||e("search")),species:r("",a&&a.species||e("species")),split:r("",a&&a.split||e("split")),toPrimitive:r("",a&&a.toPrimitive||e("toPrimitive")),toStringTag:r("",a&&a.toStringTag||e("toStringTag")),unscopables:r("",a&&a.unscopables||e("unscopables"))})}}),ae=e(function(e,t){"use strict";var r=W(),a=ee(),n=Object.create(null);t.exports=function(t){return Object.defineProperties(t,{for:r(function(e){return n[e]?n[e]:n[e]=t(String(e))}),keyFor:r(function(e){var t;for(t in a(e),n)if(n[t]===e)return t})})}}),ne=e(function(e,t){"use strict";var r,a,n,o=W(),i=ee(),l=J().Symbol,s=te(),u=re(),c=ae(),d=Object.create,p=Object.defineProperties,f=Object.defineProperty;if("function"==typeof l)try{String(l()),n=!0}catch(e){}else l=null;a=function(e){if(this instanceof a)throw new TypeError("Symbol is not a constructor");return r(e)},t.exports=r=function e(t){var r;if(this instanceof e)throw new TypeError("Symbol is not a constructor");return n?l(t):(r=d(a.prototype),t=void 0===t?"":String(t),p(r,{__description__:o("",t),__name__:o("",s(t))}))},u(r),c(r),p(a.prototype,{constructor:o(r),toString:o("",function(){return this.__name__})}),p(r.prototype,{toString:o(function(){return"Symbol ("+i(this).__description__+")"}),valueOf:o(function(){return i(this)})}),f(r.prototype,r.toPrimitive,o("",function(){var e=i(this);return"symbol"===cc(e)?e:e.toString()})),f(r.prototype,r.toStringTag,o("c","Symbol")),f(a.prototype,r.toStringTag,o("c",r.prototype[r.toStringTag])),f(a.prototype,r.toPrimitive,o("c",r.prototype[r.toPrimitive]))}),oe=e(function(e,t){"use strict";t.exports=Q()()?J().Symbol:ne()}),ie=e(function(e,t){"use strict";var r=Object.prototype.toString,a=r.call(function(){return arguments}());t.exports=function(e){return r.call(e)===a}}),le=e(function(e,t){"use strict";var r=Object.prototype.toString,a=RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);t.exports=function(e){return"function"==typeof e&&a(r.call(e))}}),se=e(function(e,t){"use strict";var r=Object.prototype.toString,a=r.call("");t.exports=function(e){return"string"==typeof e||e&&"object"===cc(e)&&(e instanceof String||r.call(e)===a)||!1}}),ue=e(function(e,t){"use strict";var f=oe().iterator,m=ie(),h=le(),g=F(),v=k(),b=R(),y=C(),D=se(),w=Array.isArray,x=Function.prototype.call,E={configurable:!0,enumerable:!0,writable:!0,value:null},A=Object.defineProperty;t.exports=function(e){var t,r,a,n,o,i,l,s,u,c,d=arguments[1],p=arguments[2];if(e=Object(b(e)),y(d)&&v(d),this&&this!==Array&&h(this))t=this;else{if(!d){if(m(e))return 1!==(o=e.length)?Array.apply(null,e):((n=new Array(1))[0]=e[0],n);if(w(e)){for(n=new Array(o=e.length),r=0;r<o;++r)n[r]=e[r];return n}}n=[]}if(!w(e))if(void 0!==(u=e[f])){for(l=v(u).call(e),t&&(n=new t),s=l.next(),r=0;!s.done;)c=d?x.call(d,p,s.value,r):s.value,t?(E.value=c,A(n,r,E)):n[r]=c,s=l.next(),++r;o=r}else if(D(e)){for(o=e.length,t&&(n=new t),a=r=0;r<o;++r)c=e[r],r+1<o&&55296<=(i=c.charCodeAt(0))&&i<=56319&&(c+=e[++r]),c=d?x.call(d,p,c,a):c,t?(E.value=c,A(n,a,E)):n[a]=c,++a;o=a}if(void 0===o)for(o=g(e.length),t&&(n=new t(o)),r=0;r<o;++r)c=d?x.call(d,p,e[r],r):e[r],t?(E.value=c,A(n,r,E)):n[r]=c;return t&&(E.value=null,n.length=o),n}}),ce=e(function(e,t){"use strict";t.exports=Y()()?Array.from:ue()}),de=e(function(e,t){"use strict";var r=ce(),a=Array.isArray;t.exports=function(e){return a(e)?e:r(e)}}),pe=e(function(e,t){"use strict";var r=de(),a=C(),n=k(),o=Array.prototype.slice,i=function(r){return this.map(function(e,t){return e?e(r[t]):r[t]}).concat(o.call(r,this.length))};t.exports=function(e){return(e=r(e)).forEach(function(e){a(e)&&n(e)}),i.bind(e)}}),fe=e(function(e,t){"use strict";var r=k();t.exports=function(e){var t;return"function"==typeof e?{set:e,get:e}:(t={get:r(e.get)},void 0!==e.set?(t.set=r(e.set),e.delete&&(t.delete=r(e.delete)),e.clear&&(t.clear=r(e.clear))):t.set=t.get,t)}}),me=e(function(e,t){"use strict";var y=I(),D=L(),w=W(),r=G().methods,x=pe(),E=fe(),A=Function.prototype.apply,C=Function.prototype.call,F=Object.create,k=Object.defineProperties,R=r.on,T=r.emit;t.exports=function(n,r,e){var o,i,l,a,t,s,u,c,d,p,f,m,h,g,v=F(null),b=!1!==r?r:isNaN(n.length)?1:n.length;return e.normalizer&&(d=E(e.normalizer),i=d.get,l=d.set,a=d.delete,t=d.clear),null!=e.resolvers&&(g=x(e.resolvers)),h=i?D(function(e){var t,r,a=arguments;if(g&&(a=g(a)),null!==(t=i(a))&&hasOwnProperty.call(v,t))return p&&o.emit("get",t,a,this),v[t];if(r=1===a.length?C.call(n,this,a[0]):A.call(n,this,a),null===t){if(null!==(t=i(a)))throw y("Circular invocation","CIRCULAR_INVOCATION");t=l(a)}else if(hasOwnProperty.call(v,t))throw y("Circular invocation","CIRCULAR_INVOCATION");return v[t]=r,f&&o.emit("set",t,null,r),r},b):0===r?function(){var e;if(hasOwnProperty.call(v,"data"))return p&&o.emit("get","data",arguments,this),v.data;if(e=arguments.length?A.call(n,this,arguments):C.call(n,this),hasOwnProperty.call(v,"data"))throw y("Circular invocation","CIRCULAR_INVOCATION");return v.data=e,f&&o.emit("set","data",null,e),e}:function(e){var t,r,a=arguments;if(g&&(a=g(arguments)),r=String(a[0]),hasOwnProperty.call(v,r))return p&&o.emit("get",r,a,this),v[r];if(t=1===a.length?C.call(n,this,a[0]):A.call(n,this,a),hasOwnProperty.call(v,r))throw y("Circular invocation","CIRCULAR_INVOCATION");return v[r]=t,f&&o.emit("set",r,null,t),t},o={original:n,memoized:h,profileName:e.profileName,get:function(e){return g&&(e=g(e)),i?i(e):String(e[0])},has:function(e){return hasOwnProperty.call(v,e)},delete:function(e){var t;hasOwnProperty.call(v,e)&&(a&&a(e),t=v[e],delete v[e],m&&o.emit("delete",e,t))},clear:function(){var e=v;t&&t(),v=F(null),o.emit("clear",e)},on:function(e,t){return"get"===e?p=!0:"set"===e?f=!0:"delete"===e&&(m=!0),R.call(this,e,t)},emit:T,updateEnv:function(){n=o.original}},s=i?D(function(e){var t,r=arguments;g&&(r=g(r)),null!==(t=i(r))&&o.delete(t)},b):0===r?function(){return o.delete("data")}:function(e){return g&&(e=g(arguments)[0]),o.delete(e)},u=D(function(){var e,t=arguments;return 0===r?v.data:(g&&(t=g(t)),e=i?i(t):String(t[0]),v[e])}),c=D(function(){var e,t=arguments;return 0===r?o.has("data"):(g&&(t=g(t)),null!==(e=i?i(t):String(t[0]))&&o.has(e))}),k(h,{__memoized__:w(!0),delete:w(s),clear:w(o.clear),_get:w(u),_has:w(c)}),o}}),he=e(function(e,t){"use strict";var o=k(),i=x(),l=E(),s=me(),u=D();t.exports=function e(t){var r,a,n;if(o(t),(r=Object(arguments[1])).async&&r.promise)throw new Error("Options 'async' and 'promise' cannot be used together");return hasOwnProperty.call(t,"__memoized__")&&!r.force?t:(a=u(r.length,t.length,r.async&&l.async),n=s(t,a,r),i(l,function(e,t){r[t]&&e(r[t],n,r)}),e.__profiler__&&e.__profiler__(n),n.updateEnv(),n.memoized)}}),ge=e(function(e,t){"use strict";t.exports=function(e){var t,r,a=e.length;if(!a)return"";for(t=String(e[r=0]);--a;)t+=""+e[++r];return t}}),ve=e(function(e,t){"use strict";t.exports=function(n){return n?function(e){for(var t=String(e[0]),r=0,a=n;--a;)t+=""+e[++r];return t}:function(){return""}}}),be=e(function(e,t){"use strict";t.exports=function(){var e=Number.isNaN;return"function"==typeof e&&(!e({})&&e(NaN)&&!e(34))}}),ye=e(function(e,t){"use strict";t.exports=function(e){return e!=e}}),De=e(function(e,t){"use strict";t.exports=be()()?Number.isNaN:ye()}),we=e(function(e,t){"use strict";var o=De(),i=F(),l=R(),s=Array.prototype.indexOf,u=Object.prototype.hasOwnProperty,c=Math.abs,d=Math.floor;t.exports=function(e){var t,r,a,n;if(!o(e))return s.apply(this,arguments);for(r=i(l(this).length),a=arguments[1],t=a=isNaN(a)?0:0<=a?d(a):i(this.length)-d(c(a));t<r;++t)if(u.call(this,t)&&(n=this[t],o(n)))return t;return-1}}),xe=e(function(e,t){"use strict";var u=we(),r=Object.create;t.exports=function(){var o=0,l=[],s=r(null);return{get:function(e){var t,r=0,a=l,n=e.length;if(0===n)return a[n]||null;if(a=a[n]){for(;r<n-1;){if(-1===(t=u.call(a[0],e[r])))return null;a=a[1][t],++r}return-1!==(t=u.call(a[0],e[r]))&&a[1][t]||null}return null},set:function(e){var t,r=0,a=l,n=e.length;if(0===n)a[n]=++o;else{for(a[n]||(a[n]=[[],[]]),a=a[n];r<n-1;)-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1,a[1].push([[],[]])),a=a[1][t],++r;-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1),a[1][t]=++o}return s[o]=e,o},delete:function(e){var t,r=0,a=l,n=s[e],o=n.length,i=[];if(0===o)delete a[o];else if(a=a[o]){for(;r<o-1;){if(-1===(t=u.call(a[0],n[r])))return;i.push(a,t),a=a[1][t],++r}if(-1===(t=u.call(a[0],n[r])))return;for(e=a[1][t],a[0].splice(t,1),a[1].splice(t,1);!a[0].length&&i.length;)t=i.pop(),(a=i.pop())[0].splice(t,1),a[1].splice(t,1)}delete s[e]},clear:function(){l=[],s=r(null)}}}}),Ee=e(function(e,t){"use strict";var n=we();t.exports=function(){var t=0,r=[],a=[];return{get:function(e){var t=n.call(r,e[0]);return-1===t?null:a[t]},set:function(e){return r.push(e[0]),a.push(++t),t},delete:function(e){var t=n.call(a,e);-1!==t&&(r.splice(t,1),a.splice(t,1))},clear:function(){r=[],a=[]}}}}),Ae=e(function(e,t){"use strict";var u=we(),r=Object.create;t.exports=function(i){var n=0,l=[[],[]],s=r(null);return{get:function(e){for(var t,r=0,a=l;r<i-1;){if(-1===(t=u.call(a[0],e[r])))return null;a=a[1][t],++r}return-1!==(t=u.call(a[0],e[r]))&&a[1][t]||null},set:function(e){for(var t,r=0,a=l;r<i-1;)-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1,a[1].push([[],[]])),a=a[1][t],++r;return-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1),a[1][t]=++n,s[n]=e,n},delete:function(e){for(var t,r=0,a=l,n=[],o=s[e];r<i-1;){if(-1===(t=u.call(a[0],o[r])))return;n.push(a,t),a=a[1][t],++r}if(-1!==(t=u.call(a[0],o[r]))){for(e=a[1][t],a[0].splice(t,1),a[1].splice(t,1);!a[0].length&&n.length;)t=n.pop(),(a=n.pop())[0].splice(t,1),a[1].splice(t,1);delete s[e]}},clear:function(){l=[[],[]],s=r(null)}}}}),Ce=e(function(e,t){"use strict";var r=k(),a=x(),l=Function.prototype.call;t.exports=function(e,n){var o={},i=arguments[2];return r(n),a(e,function(e,t,r,a){o[t]=l.call(n,i,e,t,r,a)}),o}}),Fe=e(function(e,t){"use strict";var o=function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function");return e},r=function(e){var t,r,a=document.createTextNode(""),n=0;return new e(function(){var e;if(t)r&&(t=r.concat(t));else{if(!r)return;t=r}if(r=t,t=null,"function"==typeof r)return e=r,r=null,void e();for(a.data=n=++n%2;r;)e=r.shift(),r.length||(r=null),e()}).observe(a,{characterData:!0}),function(e){o(e),t?"function"==typeof t?t=[t,e]:t.push(e):(t=e,a.data=n=++n%2)}};t.exports=function(){if("object"===("undefined"==typeof process?"undefined":cc(process))&&process&&"function"==typeof process.nextTick)return process.nextTick;if("object"===(void 0===document?"undefined":cc(document))&&document){if("function"==typeof MutationObserver)return r(MutationObserver);if("function"==typeof WebKitMutationObserver)return r(WebKitMutationObserver)}return"function"==typeof setImmediate?function(e){setImmediate(o(e))}:"function"==typeof setTimeout||"object"===("undefined"==typeof setTimeout?"undefined":cc(setTimeout))?function(e){setTimeout(o(e),0)}:null}()}),ke=e(function(){"use strict";var p=ce(),t=Ce(),r=B(),n=L(),f=Fe(),m=Array.prototype.slice,h=Function.prototype.apply,g=Object.create;E().async=function(e,i){var l,s,u,c=g(null),d=g(null),o=i.memoized,a=i.original;i.memoized=n(function(e){var t=arguments,r=t[t.length-1];return"function"==typeof r&&(l=r,t=m.call(t,0,-1)),o.apply(s=this,u=t)},o);try{r(i.memoized,o)}catch(e){}i.on("get",function(t){var r,a,n;if(l){if(c[t])return"function"==typeof c[t]?c[t]=[c[t],l]:c[t].push(l),void(l=null);r=l,a=s,n=u,l=s=u=null,f(function(){var e;hasOwnProperty.call(d,t)?(e=d[t],i.emit("getasync",t,n,a),h.call(r,e.context,e.args)):(l=r,s=a,u=n,o.apply(a,n))})}}),i.original=function(){var e,t,r,o;return l?(e=p(arguments),t=function e(t){var r,a,n=e.id;if(null!=n){if(delete e.id,r=c[n],delete c[n],r)return a=p(arguments),i.has(n)&&(t?i.delete(n):(d[n]={context:this,args:a},i.emit("setasync",n,"function"==typeof r?1:r.length))),"function"==typeof r?o=h.call(r,this,a):r.forEach(function(e){o=h.call(e,this,a)},this),o}else f(h.bind(e,this,arguments))},r=l,l=s=u=null,e.push(t),o=h.call(a,this,e),t.cb=r,l=t,o):h.call(a,this,arguments)},i.on("set",function(e){l?(c[e]?"function"==typeof c[e]?c[e]=[c[e],l.cb]:c[e].push(l.cb):c[e]=l.cb,delete l.cb,l.id=e,l=null):i.delete(e)}),i.on("delete",function(e){var t;hasOwnProperty.call(c,e)||d[e]&&(t=d[e],delete d[e],i.emit("deleteasync",e,m.call(t.args,1)))}),i.on("clear",function(){var e=d;d=g(null),i.emit("clearasync",t(e,function(e){return m.call(e.args,1)}))})}}),Re=e(function(e,t){"use strict";var r=Array.prototype.forEach,a=Object.create;t.exports=function(e){var t=a(null);return r.call(arguments,function(e){t[e]=!0}),t}}),Te=e(function(e,t){"use strict";t.exports=function(e){return"function"==typeof e}}),Ne=e(function(e,t){"use strict";var r=Te();t.exports=function(e){try{return e&&r(e.toString)?e.toString():String(e)}catch(e){throw new TypeError("Passed argument cannot be stringifed")}}}),_e=e(function(e,t){"use strict";var r=R(),a=Ne();t.exports=function(e){return a(r(e))}}),Oe=e(function(e,t){"use strict";var r=Te();t.exports=function(e){try{return e&&r(e.toString)?e.toString():String(e)}catch(e){return"<Non-coercible to string value>"}}}),Se=e(function(e,t){"use strict";var r=Oe(),a=/[\n\r\u2028\u2029]/g;t.exports=function(e){var t=r(e);return 100<t.length&&(t=t.slice(0,99)+"…"),t=t.replace(a,function(e){return JSON.stringify(e).slice(1,-1)})}}),Pe=e(function(e,t){function r(e){return!!e&&("object"===cc(e)||"function"==typeof e)&&"function"==typeof e.then}t.exports=r,t.exports.default=r}),Ie=e(function(){"use strict";var t=Ce(),e=Re(),r=_e(),a=Se(),f=Pe(),m=Fe(),n=Object.create,o=e("then","then:finally","done","done:finally");E().promise=function(s,u){var c=n(null),d=n(null),p=n(null);if(!0===s)s=null;else if(s=r(s),!o[s])throw new TypeError("'"+a(s)+"' is not valid promise mode");u.on("set",function(r,e,t){var a=!1;if(!f(t))return d[r]=t,void u.emit("setasync",r,1);c[r]=1,p[r]=t;function n(e){var t=c[r];if(a)throw new Error("Memoizee error: Detected unordered then|done & finally resolution, which in turn makes proper detection of success/failure impossible (when in 'done:finally' mode)\nConsider to rely on 'then' or 'done' mode instead.");t&&(delete c[r],d[r]=e,u.emit("setasync",r,t))}function o(){a=!0,c[r]&&(delete c[r],delete p[r],u.delete(r))}var i=s;if("then"===(i=i||"then")){var l=function(){m(o)};"function"==typeof(t=t.then(function(e){m(n.bind(this,e))},l)).finally&&t.finally(l)}else if("done"===i){if("function"!=typeof t.done)throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done' mode");t.done(n,o)}else if("done:finally"===i){if("function"!=typeof t.done)throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done:finally' mode");if("function"!=typeof t.finally)throw new Error("Memoizee error: Retrieved promise does not implement 'finally' in 'done:finally' mode");t.done(n),t.finally(o)}}),u.on("get",function(e,t,r){var a,n;c[e]?++c[e]:(a=p[e],n=function(){u.emit("getasync",e,t,r)},f(a)?"function"==typeof a.done?a.done(n):a.then(function(){m(n)}):n())}),u.on("delete",function(e){var t;delete p[e],c[e]?delete c[e]:hasOwnProperty.call(d,e)&&(t=d[e],delete d[e],u.emit("deleteasync",e,[t]))}),u.on("clear",function(){var e=d;d=n(null),c=n(null),p=n(null),u.emit("clearasync",t(e,function(e){return[e]}))})}}),Be=e(function(){"use strict";var n=k(),o=x(),i=E(),l=Function.prototype.apply;i.dispose=function(r,e,t){var a;if(n(r),t.async&&i.async||t.promise&&i.promise)return e.on("deleteasync",a=function(e,t){l.call(r,null,t)}),void e.on("clearasync",function(e){o(e,function(e,t){a(t,e)})});e.on("delete",a=function(e,t){r(t)}),e.on("clear",function(e){o(e,function(e,t){a(t,e)})})}}),Le=e(function(e,t){"use strict";t.exports=2147483647}),qe=e(function(e,t){"use strict";var r=F(),a=Le();t.exports=function(e){if(e=r(e),a<e)throw new TypeError(e+" exceeds maximum possible timeout");return e}}),Me=e(function(){"use strict";var l=ce(),s=x(),u=Fe(),c=Pe(),d=qe(),p=E(),f=Function.prototype,m=Math.max,h=Math.min,g=Object.create;p.maxAge=function(t,n,o){var r,e,a,i;(t=d(t))&&(r=g(null),e=o.async&&p.async||o.promise&&p.promise?"async":"",n.on("set"+e,function(e){r[e]=setTimeout(function(){n.delete(e)},t),"function"==typeof r[e].unref&&r[e].unref(),i&&(i[e]&&"nextTick"!==i[e]&&clearTimeout(i[e]),i[e]=setTimeout(function(){delete i[e]},a),"function"==typeof i[e].unref&&i[e].unref())}),n.on("delete"+e,function(e){clearTimeout(r[e]),delete r[e],i&&("nextTick"!==i[e]&&clearTimeout(i[e]),delete i[e])}),o.preFetch&&(a=!0===o.preFetch||isNaN(o.preFetch)?.333:m(h(Number(o.preFetch),1),0))&&(i={},a=(1-a)*t,n.on("get"+e,function(t,r,a){i[t]||(i[t]="nextTick",u(function(){var e;"nextTick"===i[t]&&(delete i[t],n.delete(t),o.async&&(r=l(r)).push(f),e=n.memoized.apply(a,r),o.promise&&c(e)&&("function"==typeof e.done?e.done(f,f):e.then(f,f)))}))})),n.on("clear"+e,function(){s(r,function(e){clearTimeout(e)}),r={},i&&(s(i,function(e){"nextTick"!==e&&clearTimeout(e)}),i={})}))}}),je=e(function(e,t){"use strict";var r=F(),c=Object.create,d=Object.prototype.hasOwnProperty;t.exports=function(a){var n,o=0,i=1,l=c(null),s=c(null),u=0;return a=r(a),{hit:function(e){var t=s[e],r=++u;if(l[r]=e,s[e]=r,!t){if(++o<=a)return;return e=l[i],n(e),e}if(delete l[t],i===t)for(;!d.call(l,++i););},delete:n=function(e){var t=s[e];if(t&&(delete l[t],delete s[e],--o,i===t)){if(!o)return u=0,void(i=1);for(;!d.call(l,++i););}},clear:function(){o=0,i=1,l=c(null),s=c(null),u=0}}}}),Ue=e(function(){"use strict";var i=F(),l=je(),s=E();s.max=function(e,t,r){var a,n,o;(e=i(e))&&(n=l(e),a=r.async&&s.async||r.promise&&s.promise?"async":"",t.on("set"+a,o=function(e){void 0!==(e=n.hit(e))&&t.delete(e)}),t.on("get"+a,o),t.on("delete"+a,n.delete),t.on("clear"+a,n.clear))}}),Ve=e(function(){"use strict";var o=W(),i=E(),l=Object.create,s=Object.defineProperties;i.refCounter=function(e,t,r){var a=l(null),n=r.async&&i.async||r.promise&&i.promise?"async":"";t.on("set"+n,function(e,t){a[e]=t||1}),t.on("get"+n,function(e){++a[e]}),t.on("delete"+n,function(e){delete a[e]}),t.on("clear"+n,function(){a={}}),s(t.memoized,{deleteRef:o(function(){var e=t.get(arguments);return null!==e&&a[e]?!--a[e]&&(t.delete(e),!0):null}),getRefCount:o(function(){var e=t.get(arguments);return null!==e&&a[e]?a[e]:0})})}}),He=e(function(e,t){"use strict";var a=h(),n=D(),o=he();t.exports=function(e){var t,r=a(arguments[1]);return r.normalizer||0!==(t=r.length=n(r.length,e.length,r.async))&&(r.primitive?!1===t?r.normalizer=ge():1<t&&(r.normalizer=ve()(t)):r.normalizer=!1===t?xe()():1===t?Ee()():Ae()(t)),r.async&&ke(),r.promise&&Ie(),r.dispose&&Be(),r.maxAge&&Me(),r.max&&Ue(),r.refCounter&&Ve(),o(e,r)}}),ze=e(function(e,t){"use strict";t.exports=function(){return/\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g}}),$e=e(function(e,t){!function(){"use strict";var s={name:"doT",version:"1.1.1",templateSettings:{evaluate:/\{\{([\s\S]+?(\}?)+)\}\}/g,interpolate:/\{\{=([\s\S]+?)\}\}/g,encode:/\{\{!([\s\S]+?)\}\}/g,use:/\{\{#([\s\S]+?)\}\}/g,useParams:/(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g,define:/\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,defineParams:/^\s*([\w$]+):([\s\S]+)/,conditional:/\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,iterate:/\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,varname:"it",strip:!0,append:!0,selfcontained:!1,doNotSkipEncoded:!1},template:void 0,compile:void 0,log:!0};!function(){if("object"!==("undefined"==typeof globalThis?"undefined":cc(globalThis)))try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),__magic__.globalThis=__magic__,delete Object.prototype.__magic__}catch(e){window.globalThis=function(){if("undefined"!=typeof self)return self;if(void 0!==window)return window;if(void 0!==uc)return uc;if(void 0!==this)return this;throw new Error("Unable to locate global `this`")}()}}(),s.encodeHTMLSource=function(e){var t={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},r=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(r,function(e){return t[e]||e}):""}},void 0!==t&&t.exports?t.exports=s:"function"==typeof define&&define.amd?define(function(){return s}):globalThis.doT=s;var u={append:{start:"'+(",end:")+'",startencode:"'+encodeHTML("},split:{start:"';out+=(",end:");out+='",startencode:"';out+=encodeHTML("}},c=/$^/;function d(e){return e.replace(/\\('|\\)/g,"$1").replace(/[\r\t\n]/g," ")}s.template=function(e,t,r){var a,n,o=(t=t||s.templateSettings).append?u.append:u.split,i=0,l=t.use||t.define?function a(n,e,o){return("string"==typeof e?e:e.toString()).replace(n.define||c,function(e,a,t,r){return 0===a.indexOf("def.")&&(a=a.substring(4)),a in o||(":"===t?(n.defineParams&&r.replace(n.defineParams,function(e,t,r){o[a]={arg:t,text:r}}),a in o||(o[a]=r)):new Function("def","def['"+a+"']="+r)(o)),""}).replace(n.use||c,function(e,t){n.useParams&&(t=t.replace(n.useParams,function(e,t,r,a){if(o[r]&&o[r].arg&&a){var n=(r+":"+a).replace(/'|\\/g,"_");return o.__exp=o.__exp||{},o.__exp[n]=o[r].text.replace(new RegExp("(^|[^\\w$])"+o[r].arg+"([^\\w$])","g"),"$1"+a+"$2"),t+"def.__exp['"+n+"']"}}));var r=new Function("def","return "+t)(o);return r?a(n,r,o):r})}(t,e,r||{}):e,l=("var out='"+(t.strip?l.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ").replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""):l).replace(/'|\\/g,"\\$&").replace(t.interpolate||c,function(e,t){return o.start+d(t)+o.end}).replace(t.encode||c,function(e,t){return a=!0,o.startencode+d(t)+o.end}).replace(t.conditional||c,function(e,t,r){return t?r?"';}else if("+d(r)+"){out+='":"';}else{out+='":r?"';if("+d(r)+"){out+='":"';}out+='"}).replace(t.iterate||c,function(e,t,r,a){return t?(i+=1,n=a||"i"+i,t=d(t),"';var arr"+i+"="+t+";if(arr"+i+"){var "+r+","+n+"=-1,l"+i+"=arr"+i+".length-1;while("+n+"<l"+i+"){"+r+"=arr"+i+"["+n+"+=1];out+='"):"';} } out+='"}).replace(t.evaluate||c,function(e,t){return"';"+d(t)+"out+='"})+"';return out;").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r").replace(/(\s|;|\}|^|\{)out\+='';/g,"$1").replace(/\+''/g,"");a&&(t.selfcontained||!globalThis||globalThis._encodeHTML||(globalThis._encodeHTML=s.encodeHTMLSource(t.doNotSkipEncoded)),l="var encodeHTML = typeof _encodeHTML !== 'undefined' ? _encodeHTML : ("+s.encodeHTMLSource.toString()+"("+(t.doNotSkipEncoded||"")+"));"+l);try{return new Function(t.varname,l)}catch(e){throw"undefined"!=typeof console&&console.log("Could not create a template function: "+l),e}},s.compile=function(e,t){return s.template(e,null,t)}}()}),We=e(function(e,t){var r,a;a=function(){"use strict";function s(e){return"function"==typeof e}var r=Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)},a=0,t=void 0,n=void 0,i=function(e,t){p[a]=e,p[a+1]=t,2===(a+=2)&&(n?n(f):b())};var e=void 0!==window?window:void 0,o=e||{},l=o.MutationObserver||o.WebKitMutationObserver,u="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),c="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function d(){var e=setTimeout;return function(){return e(f,1)}}var p=new Array(1e3);function f(){for(var e=0;e<a;e+=2){(0,p[e])(p[e+1]),p[e]=void 0,p[e+1]=void 0}a=0}var m,h,g,v,b=void 0;function y(e,t){var r=this,a=new this.constructor(x);void 0===a[w]&&B(a);var n,o=r._state;return o?(n=arguments[o-1],i(function(){return P(o,a,n,r._result)})):O(r,a,e,t),a}function D(e){if(e&&"object"===cc(e)&&e.constructor===this)return e;var t=new this(x);return R(t,e),t}b=u?function(){return process.nextTick(f)}:l?(h=0,g=new l(f),v=document.createTextNode(""),g.observe(v,{characterData:!0}),function(){v.data=h=++h%2}):c?((m=new MessageChannel).port1.onmessage=f,function(){return m.port2.postMessage(0)}):(void 0===e?function(){try{var e=Function("return this")().require("vertx");return void 0!==(t=e.runOnLoop||e.runOnContext)?function(){t(f)}:d()}catch(e){return d()}}:d)();var w=Math.random().toString(36).substring(2);function x(){}var E=void 0,A=1,C=2;function F(e,a,n){i(function(t){var r=!1,e=function(e,t,r,a){try{e.call(t,r,a)}catch(e){return e}}(n,a,function(e){r||(r=!0,(a!==e?R:N)(t,e))},function(e){r||(r=!0,_(t,e))},t._label);!r&&e&&(r=!0,_(t,e))},e)}function k(e,t,r){var a,n;t.constructor===e.constructor&&r===y&&t.constructor.resolve===D?(a=e,(n=t)._state===A?N(a,n._result):n._state===C?_(a,n._result):O(n,void 0,function(e){return R(a,e)},function(e){return _(a,e)})):void 0!==r&&s(r)?F(e,t,r):N(e,t)}function R(t,e){if(t===e)_(t,new TypeError("You cannot resolve a promise with itself"));else if(n=cc(a=e),null===a||"object"!==n&&"function"!==n)N(t,e);else{var r=void 0;try{r=e.then}catch(e){return void _(t,e)}k(t,e,r)}var a,n}function T(e){e._onerror&&e._onerror(e._result),S(e)}function N(e,t){e._state===E&&(e._result=t,e._state=A,0!==e._subscribers.length&&i(S,e))}function _(e,t){e._state===E&&(e._state=C,e._result=t,i(T,e))}function O(e,t,r,a){var n=e._subscribers,o=n.length;e._onerror=null,n[o]=t,n[o+A]=r,n[o+C]=a,0===o&&e._state&&i(S,e)}function S(e){var t=e._subscribers,r=e._state;if(0!==t.length){for(var a,n=void 0,o=e._result,i=0;i<t.length;i+=3)a=t[i],n=t[i+r],a?P(r,a,n,o):n(o);e._subscribers.length=0}}function P(e,t,r,a){var n=s(r),o=void 0,i=void 0,l=!0;if(n){try{o=r(a)}catch(e){l=!1,i=e}if(t===o)return void _(t,new TypeError("A promises callback cannot return that same promise."))}else o=a;t._state!==E||(n&&l?R(t,o):!1===l?_(t,i):e===A?N(t,o):e===C&&_(t,o))}var I=0;function B(e){e[w]=I++,e._state=void 0,e._result=void 0,e._subscribers=[]}var L=(q.prototype._enumerate=function(e){for(var t=0;this._state===E&&t<e.length;t++)this._eachEntry(e[t],t)},q.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,a=r.resolve;if(a===D){var n,o=void 0,i=void 0,l=!1;try{o=t.then}catch(e){l=!0,i=e}o===y&&t._state!==E?this._settledAt(t._state,e,t._result):"function"!=typeof o?(this._remaining--,this._result[e]=t):r===M?(n=new r(x),l?_(n,i):k(n,t,o),this._willSettleAt(n,e)):this._willSettleAt(new r(function(e){return e(t)}),e)}else this._willSettleAt(a(t),e)},q.prototype._settledAt=function(e,t,r){var a=this.promise;a._state===E&&(this._remaining--,e===C?_(a,r):this._result[t]=r),0===this._remaining&&N(a,this._result)},q.prototype._willSettleAt=function(e,t){var r=this;O(e,void 0,function(e){return r._settledAt(A,t,e)},function(e){return r._settledAt(C,t,e)})},q);function q(e,t){this._instanceConstructor=e,this.promise=new e(x),this.promise[w]||B(this.promise),r(t)?(this.length=t.length,this._remaining=t.length,this._result=new Array(this.length),0===this.length?N(this.promise,this._result):(this.length=this.length||0,this._enumerate(t),0===this._remaining&&N(this.promise,this._result))):_(this.promise,new Error("Array Methods must be provided an Array"))}var M=(j.prototype.catch=function(e){return this.then(null,e)},j.prototype.finally=function(t){var r=this.constructor;return s(t)?this.then(function(e){return r.resolve(t()).then(function(){return e})},function(e){return r.resolve(t()).then(function(){throw e})}):this.then(t,t)},j);function j(e){this[w]=I++,this._result=this._state=void 0,this._subscribers=[],x!==e&&("function"!=typeof e&&function(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}(),this instanceof j?function(t,e){try{e(function(e){R(t,e)},function(e){_(t,e)})}catch(e){_(t,e)}}(this,e):function(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}())}return M.prototype.then=y,M.all=function(e){return new L(this,e).promise},M.race=function(n){var o=this;return r(n)?new o(function(e,t){for(var r=n.length,a=0;a<r;a++)o.resolve(n[a]).then(e,t)}):new o(function(e,t){return t(new TypeError("You must pass an array to race."))})},M.resolve=D,M.reject=function(e){var t=new this(x);return _(t,e),t},M._setScheduler=function(e){n=e},M._setAsap=function(e){i=e},M._asap=i,M.polyfill=function(){var e=void 0;if(void 0!==uc)e=uc;else if("undefined"!=typeof self)e=self;else try{e=Function("return this")()}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment")}var t=e.Promise;if(t){var r=null;try{r=Object.prototype.toString.call(t.resolve())}catch(e){}if("[object Promise]"===r&&!t.cast)return}e.Promise=M},M.Promise=M},"object"===cc(r=e)&&void 0!==t?t.exports=a():"function"==typeof define&&define.amd?define(a):r.ES6Promise=a()}),Ge=e(function(p){var t,r,a,n=1e5,f=(t=Object.prototype.toString,r=Object.prototype.hasOwnProperty,{Class:function(e){return t.call(e).replace(/^\[object *|\]$/g,"")},HasProperty:function(e,t){return t in e},HasOwnProperty:function(e,t){return r.call(e,t)},IsCallable:function(e){return"function"==typeof e},ToInt32:function(e){return e>>0},ToUint32:function(e){return e>>>0}}),m=Math.LN2,h=Math.abs,g=Math.floor,v=Math.log,b=Math.min,y=Math.pow,o=Math.round;function D(e){if(i&&a)for(var t=i(e),r=0;r<t.length;r+=1)a(e,t[r],{value:e[t[r]],writable:!1,enumerable:!1,configurable:!1})}a=Object.defineProperty&&function(){try{return Object.defineProperty({},"x",{}),1}catch(e){return}}()?Object.defineProperty:function(e,t,r){if(!e===Object(e))throw new TypeError("Object.defineProperty called on non-object");return f.HasProperty(r,"get")&&Object.prototype.__defineGetter__&&Object.prototype.__defineGetter__.call(e,t,r.get),f.HasProperty(r,"set")&&Object.prototype.__defineSetter__&&Object.prototype.__defineSetter__.call(e,t,r.set),f.HasProperty(r,"value")&&(e[t]=r.value),e};var e,s,i=Object.getOwnPropertyNames||function(e){if(e!==Object(e))throw new TypeError("Object.getOwnPropertyNames called on non-object");var t,r=[];for(t in e)f.HasOwnProperty(e,t)&&r.push(t);return r};function w(r){if(a){if(r.length>n)throw new RangeError("Array too large for polyfill");for(var e=0;e<r.length;e+=1)!function(t){a(r,t,{get:function(){return r._getter(t)},set:function(e){r._setter(t,e)},enumerable:!0,configurable:!1})}(e)}}function l(e,t){var r=32-t;return e<<r>>r}function u(e,t){var r=32-t;return e<<r>>>r}function x(e){return[255&e]}function E(e){return l(e[0],8)}function A(e){return[255&e]}function C(e){return u(e[0],8)}function F(e){return[(e=o(Number(e)))<0?0:255<e?255:255&e]}function k(e){return[e>>8&255,255&e]}function R(e){return l(e[0]<<8|e[1],16)}function T(e){return[e>>8&255,255&e]}function N(e){return u(e[0]<<8|e[1],16)}function _(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}function O(e){return l(e[0]<<24|e[1]<<16|e[2]<<8|e[3],32)}function S(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}function P(e){return u(e[0]<<24|e[1]<<16|e[2]<<8|e[3],32)}function c(e,t,r){var a,n,o,i,l,s,u,c=(1<<t-1)-1;function d(e){var t=g(e),r=e-t;return!(r<.5)&&(.5<r||t%2)?t+1:t}for(e!=e?(n=(1<<t)-1,o=y(2,r-1),a=0):e===1/0||e===-1/0?(n=(1<<t)-1,a=e<(o=0)?1:0):0===e?a=1/e==-1/(o=n=0)?1:0:(a=e<0,(e=h(e))>=y(2,1-c)?(n=b(g(v(e)/m),1023),2<=(o=d(e/y(2,n)*y(2,r)))/y(2,r)&&(n+=1,o=1),c<n?(n=(1<<t)-1,o=0):(n+=c,o-=y(2,r))):(n=0,o=d(e/y(2,1-c-r)))),l=[],i=r;i;--i)l.push(o%2?1:0),o=g(o/2);for(i=t;i;--i)l.push(n%2?1:0),n=g(n/2);for(l.push(a?1:0),l.reverse(),s=l.join(""),u=[];s.length;)u.push(parseInt(s.substring(0,8),2)),s=s.substring(8);return u}function d(e,t,r){for(var a,n,o,i,l,s,u,c=[],d=e.length;d;--d)for(n=e[d-1],a=8;a;--a)c.push(n%2?1:0),n>>=1;return c.reverse(),o=c.join(""),i=(1<<t-1)-1,l=parseInt(o.substring(0,1),2)?-1:1,s=parseInt(o.substring(1,1+t),2),u=parseInt(o.substring(1+t),2),s===(1<<t)-1?0!==u?NaN:1/0*l:0<s?l*y(2,s-i)*(1+u/y(2,r)):0!==u?l*y(2,-(i-1))*(u/y(2,r)):l<0?-0:0}function I(e){return d(e,11,52)}function B(e){return c(e,11,52)}function L(e){return d(e,8,23)}function q(e){return c(e,8,23)}function M(e,t){return f.IsCallable(e.get)?e.get(t):e[t]}function j(e,t,r){if(0===arguments.length)e=new p.ArrayBuffer(0);else if(!(e instanceof p.ArrayBuffer||"ArrayBuffer"===f.Class(e)))throw new TypeError("TypeError");if(this.buffer=e||new p.ArrayBuffer(0),this.byteOffset=f.ToUint32(t),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteLength=arguments.length<3?this.buffer.byteLength-this.byteOffset:f.ToUint32(r),this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer");D(this)}function U(o){return function(e,t){if((e=f.ToUint32(e))+o.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");e+=this.byteOffset;for(var r=new p.Uint8Array(this.buffer,e,o.BYTES_PER_ELEMENT),a=[],n=0;n<o.BYTES_PER_ELEMENT;n+=1)a.push(M(r,n));return Boolean(t)===Boolean(s)&&a.reverse(),M(new o(new p.Uint8Array(a).buffer),0)}}function V(l){return function(e,t,r){if((e=f.ToUint32(e))+l.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");for(var a=new l([t]),n=new p.Uint8Array(a.buffer),o=[],i=0;i<l.BYTES_PER_ELEMENT;i+=1)o.push(M(n,i));Boolean(r)===Boolean(s)&&o.reverse(),new p.Uint8Array(this.buffer,e,l.BYTES_PER_ELEMENT).set(o)}}!function(){function s(e){if((e=f.ToInt32(e))<0)throw new RangeError("ArrayBuffer size is not a small enough positive integer");var t;for(this.byteLength=e,this._bytes=[],this._bytes.length=e,t=0;t<this.byteLength;t+=1)this._bytes[t]=0;D(this)}p.ArrayBuffer=p.ArrayBuffer||s;function a(){}function e(e,t,r){var l=function(e,t,r){var a,n,o,i;if(arguments.length&&"number"!=typeof e)if("object"===cc(e)&&e.constructor===l)for(a=e,this.length=a.length,this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),o=this.byteOffset=0;o<this.length;o+=1)this._setter(o,a._getter(o));else if("object"!==cc(e)||(e instanceof s||"ArrayBuffer"===f.Class(e))){if("object"!==cc(e)||!(e instanceof s||"ArrayBuffer"===f.Class(e)))throw new TypeError("Unexpected argument type(s)");if(this.buffer=e,this.byteOffset=f.ToUint32(t),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteOffset%this.BYTES_PER_ELEMENT)throw new RangeError("ArrayBuffer length minus the byteOffset is not a multiple of the element size.");if(arguments.length<3){if(this.byteLength=this.buffer.byteLength-this.byteOffset,this.byteLength%this.BYTES_PER_ELEMENT)throw new RangeError("length of buffer minus byteOffset not a multiple of the element size");this.length=this.byteLength/this.BYTES_PER_ELEMENT}else this.length=f.ToUint32(r),this.byteLength=this.length*this.BYTES_PER_ELEMENT;if(this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer")}else for(n=e,this.length=f.ToUint32(n.length),this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),o=this.byteOffset=0;o<this.length;o+=1)i=n[o],this._setter(o,Number(i));else{if(this.length=f.ToInt32(e),r<0)throw new RangeError("ArrayBufferView size is not a small enough positive integer");this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),this.byteOffset=0}this.constructor=l,D(this),w(this)};return l.prototype=new a,l.prototype.BYTES_PER_ELEMENT=e,l.prototype._pack=t,l.prototype._unpack=r,l.BYTES_PER_ELEMENT=e,l.prototype._getter=function(e){if(arguments.length<1)throw new SyntaxError("Not enough arguments");if(!((e=f.ToUint32(e))>=this.length)){for(var t=[],r=0,a=this.byteOffset+e*this.BYTES_PER_ELEMENT;r<this.BYTES_PER_ELEMENT;r+=1,a+=1)t.push(this.buffer._bytes[a]);return this._unpack(t)}},l.prototype.get=l.prototype._getter,l.prototype._setter=function(e,t){if(arguments.length<2)throw new SyntaxError("Not enough arguments");if(!((e=f.ToUint32(e))>=this.length))for(var r=this._pack(t),a=0,n=this.byteOffset+e*this.BYTES_PER_ELEMENT;a<this.BYTES_PER_ELEMENT;a+=1,n+=1)this.buffer._bytes[n]=r[a]},l.prototype.set=function(e,t){if(arguments.length<1)throw new SyntaxError("Not enough arguments");var r,a,n,o,i,l,s,u,c,d;if("object"===cc(e)&&e.constructor===this.constructor){if(r=e,(n=f.ToUint32(t))+r.length>this.length)throw new RangeError("Offset plus length of array is out of range");if(u=this.byteOffset+n*this.BYTES_PER_ELEMENT,c=r.length*this.BYTES_PER_ELEMENT,r.buffer===this.buffer){for(d=[],i=0,l=r.byteOffset;i<c;i+=1,l+=1)d[i]=r.buffer._bytes[l];for(i=0,s=u;i<c;i+=1,s+=1)this.buffer._bytes[s]=d[i]}else for(i=0,l=r.byteOffset,s=u;i<c;i+=1,l+=1,s+=1)this.buffer._bytes[s]=r.buffer._bytes[l]}else{if("object"!==cc(e)||void 0===e.length)throw new TypeError("Unexpected argument type(s)");if(a=e,o=f.ToUint32(a.length),(n=f.ToUint32(t))+o>this.length)throw new RangeError("Offset plus length of array is out of range");for(i=0;i<o;i+=1)l=a[i],this._setter(n+i,Number(l))}},l.prototype.subarray=function(e,t){function r(e,t,r){return e<t?t:r<e?r:e}e=f.ToInt32(e),t=f.ToInt32(t),arguments.length<1&&(e=0),arguments.length<2&&(t=this.length),e<0&&(e=this.length+e),t<0&&(t=this.length+t),e=r(e,0,this.length);var a=(t=r(t,0,this.length))-e;return a<0&&(a=0),new this.constructor(this.buffer,this.byteOffset+e*this.BYTES_PER_ELEMENT,a)},l}var t=e(1,x,E),r=e(1,A,C),n=e(1,F,C),o=e(2,k,R),i=e(2,T,N),l=e(4,_,O),u=e(4,S,P),c=e(4,q,L),d=e(8,B,I);p.Int8Array=p.Int8Array||t,p.Uint8Array=p.Uint8Array||r,p.Uint8ClampedArray=p.Uint8ClampedArray||n,p.Int16Array=p.Int16Array||o,p.Uint16Array=p.Uint16Array||i,p.Int32Array=p.Int32Array||l,p.Uint32Array=p.Uint32Array||u,p.Float32Array=p.Float32Array||c,p.Float64Array=p.Float64Array||d}(),e=new p.Uint16Array([4660]),s=18===M(new p.Uint8Array(e.buffer),0),j.prototype.getUint8=U(p.Uint8Array),j.prototype.getInt8=U(p.Int8Array),j.prototype.getUint16=U(p.Uint16Array),j.prototype.getInt16=U(p.Int16Array),j.prototype.getUint32=U(p.Uint32Array),j.prototype.getInt32=U(p.Int32Array),j.prototype.getFloat32=U(p.Float32Array),j.prototype.getFloat64=U(p.Float64Array),j.prototype.setUint8=V(p.Uint8Array),j.prototype.setInt8=V(p.Int8Array),j.prototype.setUint16=V(p.Uint16Array),j.prototype.setInt16=V(p.Int16Array),j.prototype.setUint32=V(p.Uint32Array),j.prototype.setInt32=V(p.Int32Array),j.prototype.setFloat32=V(p.Float32Array),j.prototype.setFloat64=V(p.Float64Array),p.DataView=p.DataView||j}),Ye=e(function(e){!function(e){"use strict";var r,a;function t(){if(void 0===this)throw new TypeError("Constructor WeakMap requires 'new'");if(a(this,"_id","_WeakMap_"+o()+"."+o()),0<arguments.length)throw new TypeError("WeakMap iterable is not supported")}function n(e,t){if(!i(e)||!r.call(e,"_id"))throw new TypeError(t+" method called on incompatible receiver "+cc(e))}function o(){return Math.random().toString().substring(2)}function i(e){return Object(e)===e}e.WeakMap||(r=Object.prototype.hasOwnProperty,a=function(e,t,r){Object.defineProperty?Object.defineProperty(e,t,{configurable:!0,writable:!0,value:r}):e[t]=r},e.WeakMap=(a(t.prototype,"delete",function(e){if(n(this,"delete"),!i(e))return!1;var t=e[this._id];return!(!t||t[0]!==e||(delete e[this._id],0))}),a(t.prototype,"get",function(e){if(n(this,"get"),i(e)){var t=e[this._id];return t&&t[0]===e?t[1]:void 0}}),a(t.prototype,"has",function(e){if(n(this,"has"),!i(e))return!1;var t=e[this._id];return!(!t||t[0]!==e)}),a(t.prototype,"set",function(e,t){if(n(this,"set"),!i(e))throw new TypeError("Invalid value used as weak map key");var r=e[this._id];return r&&r[0]===e?r[1]=t:a(e,this._id,[e,t]),this}),a(t,"_polyfill",!0),t))}("undefined"!=typeof self?self:void 0!==window?window:void 0!==uc?uc:e)}),Ke={helpUrlBase:"https://dequeuniversity.com/rules/",results:[],resultGroups:[],resultGroupMap:{},impact:Object.freeze(["minor","moderate","serious","critical"]),preload:Object.freeze({assets:["cssom","media"],timeout:1e4}),allOrigins:"<unsafe_all_origins>",sameOrigin:"<same_origin>"};[{name:"NA",value:"inapplicable",priority:0,group:"inapplicable"},{name:"PASS",value:"passed",priority:1,group:"passes"},{name:"CANTTELL",value:"cantTell",priority:2,group:"incomplete"},{name:"FAIL",value:"failed",priority:3,group:"violations"}].forEach(function(e){var t=e.name,r=e.value,a=e.priority,n=e.group;Ke[t]=r,Ke[t+"_PRIO"]=a,Ke[t+"_GROUP"]=n,Ke.results[a]=r,Ke.resultGroups[a]=n,Ke.resultGroupMap[r]=n}),Object.freeze(Ke.results),Object.freeze(Ke.resultGroups),Object.freeze(Ke.resultGroupMap),Object.freeze(Ke);var Xe=Ke;var Je=function(){"object"===("undefined"==typeof console?"undefined":cc(console))&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},Qe=/[\t\r\n\f]/g;function Ze(){yc(this,Ze),this.parent=void 0}var et=(Dc(Ze,[{key:"attr",value:function(){throw new Error('VirtualNode class must have an "attr" function')}},{key:"hasAttr",value:function(){throw new Error('VirtualNode class must have a "hasAttr" function')}},{key:"hasClass",value:function(e){var t=this.attr("class");if(!t)return!1;var r=" "+e+" ";return 0<=(" "+t+" ").replace(Qe," ").indexOf(r)}},{key:"props",get:function(){throw new Error('VirtualNode class must have a "props" object consisting of "nodeType" and "nodeName" properties')}},{key:"attrNames",get:function(){throw new Error('VirtualNode class must have an "attrNames" property')}}]),Ze),tt={};t(tt,{DqElement:function(){return yr},aggregate:function(){return Bt},aggregateChecks:function(){return Vt},aggregateNodeResults:function(){return zt},aggregateResult:function(){return Wt},areStylesSet:function(){return Gt},assert:function(){return ot},checkHelper:function(){return Dr},clone:function(){return wr},closest:function(){return Or},collectResultsFromFrames:function(){return Gr},contains:function(){return Yr},convertSelector:function(){return Tr},cssParser:function(){return Er},deepMerge:function(){return Kr},escapeSelector:function(){return Kt},extendMetaData:function(){return Xr},filterHtmlAttrs:function(){return Do},finalizeRuleResult:function(){return Ht},findBy:function(){return $r},getAllChecks:function(){return Hr},getAncestry:function(){return gr},getBaseLang:function(){return Dn},getCheckMessage:function(){return Tn},getCheckOption:function(){return Nn},getFlattenedTree:function(){return yn},getFriendlyUriEnd:function(){return Qt},getNodeAttributes:function(){return er},getNodeFromTree:function(){return _n},getPreloadConfig:function(){return fo},getRootNode:function(){return ea},getRule:function(){return On},getScroll:function(){return Sn},getScrollState:function(){return Pn},getSelector:function(){return mr},getSelectorData:function(){return cr},getShadowSelector:function(){return nr},getStandards:function(){return In},getStyleSheetFactory:function(){return Ln},getXpath:function(){return vr},injectStyle:function(){return qn},isHidden:function(){return Mn},isHtmlElement:function(){return Un},isNodeInContext:function(){return Hn},isShadowRoot:function(){return Qr},isValidLang:function(){return ko},isXHTML:function(){return rr},matches:function(){return _r},matchesExpression:function(){return Nr},matchesSelector:function(){return tr},memoize:function(){return $n},mergeResults:function(){return Wr},nodeSorter:function(){return zr},parseCrossOriginStylesheet:function(){return Xn},parseSameOriginStylesheet:function(){return Wn},parseStylesheet:function(){return Gn},performanceTimer:function(){return eo},pollyfillElementsFromPoint:function(){return to},preload:function(){return mo},preloadCssom:function(){return lo},preloadMedia:function(){return co},processMessage:function(){return Rn},publishMetaData:function(){return go},querySelectorAll:function(){return vo},querySelectorAllFilter:function(){return io},queue:function(){return Lr},respondable:function(){return Mr},ruleShouldRun:function(){return yo},select:function(){return wo},sendCommandToFrame:function(){return Vr},setScrollState:function(){return xo},shouldPreload:function(){return po},toArray:function(){return Yt},tokenList:function(){return Eo},uniqueArray:function(){return no},uuid:function(){return Rt},validInputTypes:function(){return Ao},validLangs:function(){return Fo}});var rt=Object.freeze(["EvalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function at(e){var t;try{t=JSON.parse(e)}catch(e){return}if("object"===cc(r=t)&&"string"==typeof r.channelId&&r.source===nt()){var r,a=t.topic,n=t.channelId,o=t.messageId,i=t.keepalive;return{topic:a,message:"object"===cc(t.error)?function(e){var t=e.message||"Unknown error occurred",r=rt.includes(e.name)?e.name:"Error",a=window[r]||Error;e.stack&&(t+="\n"+e.stack.replace(e.message,""));return new a(t)}(t.error):t.payload,messageId:o,channelId:n,keepalive:!!i}}}function nt(){var e="axeAPI",t="";return void 0!==axe&&axe._audit&&axe._audit.application&&(e=axe._audit.application),void 0!==axe&&(t=axe.version),e+"."+t}var ot=function(e,t){if(!e)throw new Error(t)};function it(e){st(e),ot(window.parent===e,"Source of the response must be the parent window.")}function lt(e){st(e),ot(e.parent===window,"Respondable target must be a frame in the current window")}function st(e){ot(window!==e,"Messages can not be sent to the same window.")}var ut,ct={};var dt,pt,ft,mt,ht=window.crypto||window.msCrypto;!pt&&ht&&ht.getRandomValues&&(dt=new Uint8Array(16),pt=function(){return ht.getRandomValues(dt),dt});try{pt||(ft=require("crypto"),pt=function(){return ft.randomBytes(16)})}catch(e){}pt||(mt=new Array(16),pt=function(){for(var e,t=0;t<16;t++)0==(3&t)&&(e=4294967296*Math.random()),mt[t]=e>>>((3&t)<<3)&255;return mt});for(var gt="function"==typeof window.Buffer?window.Buffer:Array,vt=[],bt={},yt=0;yt<256;yt++)vt[yt]=(yt+256).toString(16).substr(1),bt[vt[yt]]=yt;function Dt(e,t){var r=t||0;return vt[e[r++]]+vt[e[r++]]+vt[e[r++]]+vt[e[r++]]+"-"+vt[e[r++]]+vt[e[r++]]+"-"+vt[e[r++]]+vt[e[r++]]+"-"+vt[e[r++]]+vt[e[r++]]+"-"+vt[e[r++]]+vt[e[r++]]+vt[e[r++]]+vt[e[r++]]+vt[e[r++]]+vt[e[r++]]}var wt=pt(),xt=[1|wt[0],wt[1],wt[2],wt[3],wt[4],wt[5]],Et=16383&(wt[6]<<8|wt[7]),At=0,Ct=0;function Ft(e,t,r){var a=t&&r||0,n=t||[],o=null!=(e=e||{}).clockseq?e.clockseq:Et,i=null!=e.msecs?e.msecs:(new Date).getTime(),l=null!=e.nsecs?e.nsecs:Ct+1,s=i-At+(l-Ct)/1e4;if(s<0&&null==e.clockseq&&(o=o+1&16383),(s<0||At<i)&&null==e.nsecs&&(l=0),1e4<=l)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");At=i,Et=o;var u=(1e4*(268435455&(i+=122192928e5))+(Ct=l))%4294967296;n[a++]=u>>>24&255,n[a++]=u>>>16&255,n[a++]=u>>>8&255,n[a++]=255&u;var c=i/4294967296*1e4&268435455;n[a++]=c>>>8&255,n[a++]=255&c,n[a++]=c>>>24&15|16,n[a++]=c>>>16&255,n[a++]=o>>>8|128,n[a++]=255&o;for(var d=e.node||xt,p=0;p<6;p++)n[a+p]=d[p];return t||Dt(n)}function kt(e,t,r){var a=t&&r||0;"string"==typeof e&&(t="binary"==e?new gt(16):null,e=null);var n=(e=e||{}).random||(e.rng||pt)();if(n[6]=15&n[6]|64,n[8]=63&n[8]|128,t)for(var o=0;o<16;o++)t[a+o]=n[o];return t||Dt(n)}(ut=kt).v1=Ft,ut.v4=kt,ut.parse=function(e,t,r){var a=t&&r||0,n=0;for(t=t||[],e.toLowerCase().replace(/[0-9a-f]{2}/g,function(e){n<16&&(t[a+n++]=bt[e])});n<16;)t[a+n++]=0;return t},ut.unparse=Dt,ut.BufferClass=gt,axe._uuid=Ft();var Rt=kt,Tt=[];function Nt(){var e="".concat(kt(),":").concat(kt());return Tt.includes(e)?Nt():(Tt.push(e),e)}function _t(r,e,t,a){if("function"==typeof a&&function(e,t,r){var a=!(2<arguments.length&&void 0!==r)||r;ot(!ct[e],"A replyHandler already exists for this message channel."),ct[e]={replyHandler:t,sendToParent:a}}(e.channelId,a,t),(t?it:lt)(r),e.message instanceof Error&&!t)return axe.log(e.message),!1;var n,o,i,l,s,u=(n=bc({messageId:Nt()},e),o=n.topic,i=n.channelId,l=n.message,s={channelId:i,topic:o,messageId:n.messageId,keepalive:!!n.keepalive,source:nt()},l instanceof Error?s.error={name:l.name,message:l.message,stack:l.stack}:s.payload=l,JSON.stringify(s)),c=axe._audit.allowedOrigins;return!(!c||!c.length)&&(c.forEach(function(t){try{r.postMessage(u,t)}catch(e){if(e instanceof r.DOMException)throw new Error('allowedOrigins value "'.concat(t,'" is not a valid origin'));throw e}}),!0)}function Ot(a,n,e){var o=!(2<arguments.length&&void 0!==e)||e;return function(e,t,r){_t(a,{channelId:n,message:e,keepalive:t},o,r)}}function St(e,t){var r,a,n,o,i=e.origin,l=e.data,s=e.source,u=at(l)||{},c=u.channelId,d=u.message,p=u.messageId;if(a=i,((n=axe._audit.allowedOrigins)&&n.includes("*")||n.includes(a))&&(r=p,!Tt.includes(r)&&(Tt.push(r),1)))if(d instanceof Error&&s.parent!==window)axe.log(d);else try{u.topic?(o=Ot(s,c),it(s),t(u,o)):function(e,t){var r=t.channelId,a=t.message,n=t.keepalive,o=function(e){return ct[e]}(r)||{},i=o.replyHandler,l=o.sendToParent;if(!i)return;(l?it:lt)(e);var s=Ot(e,r,l);!n&&r&&function(e){delete ct[e]}(r);try{i(a,n,s)}catch(e){axe.log(e),s(e,n)}}(s,u)}catch(e){!function(e,t,r){if(!e.parent!==window)return axe.log(t);try{_t(e,{topic:null,channelId:r,message:t,messageId:Nt(),keepalive:!0},!0)}catch(e){return axe.log(e)}}(s,e,c)}}var Pt={open:function(t){if("function"==typeof window.addEventListener){function e(e){St(e,t)}return window.addEventListener("message",e,!1),function(){window.removeEventListener("message",e,!1)}}},post:function(e,t,r){return"function"==typeof window.addEventListener&&_t(e,t,!1,r)}};function It(e){e.updateMessenger(Pt)}var Bt=function(t,e,r){e=e.slice(),r&&e.push(r);var a=e.map(function(e){return t.indexOf(e)}).sort();return t[a.pop()]},Lt=Xe.CANTTELL_PRIO,qt=Xe.FAIL_PRIO,Mt=[];Mt[Xe.PASS_PRIO]=!0,Mt[Xe.CANTTELL_PRIO]=null,Mt[Xe.FAIL_PRIO]=!1;var jt=["any","all","none"];function Ut(r,a){return jt.reduce(function(e,t){return e[t]=(r[t]||[]).map(function(e){return a(e,t)}),e},{})}var Vt=function(e){var r=Object.assign({},e);Ut(r,function(e,t){var r=void 0===e.result?-1:Mt.indexOf(e.result);e.priority=-1!==r?r:Xe.CANTTELL_PRIO,"none"===t&&(e.priority===Xe.PASS_PRIO?e.priority=Xe.FAIL_PRIO:e.priority===Xe.FAIL_PRIO&&(e.priority=Xe.PASS_PRIO))});var a={all:r.all.reduce(function(e,t){return Math.max(e,t.priority)},0),none:r.none.reduce(function(e,t){return Math.max(e,t.priority)},0),any:r.any.reduce(function(e,t){return Math.min(e,t.priority)},4)%4};r.priority=Math.max(a.all,a.none,a.any);var n=[];return jt.forEach(function(t){r[t]=r[t].filter(function(e){return e.priority===r.priority&&e.priority===a[t]}),r[t].forEach(function(e){return n.push(e.impact)})}),[Lt,qt].includes(r.priority)?r.impact=Bt(Xe.impact,n):r.impact=null,Ut(r,function(e){delete e.result,delete e.priority}),r.result=Xe.results[r.priority],delete r.priority,r};var Ht=function(t){var r=axe._audit.rules.find(function(e){return e.id===t.id});return r&&r.impact&&t.nodes.forEach(function(t){["any","all","none"].forEach(function(e){(t[e]||[]).forEach(function(e){e.impact=r.impact})})}),Object.assign(t,zt(t.nodes)),delete t.nodes,t};var zt=function(e){var t,r={};(e=e.map(function(e){if(e.any&&e.all&&e.none)return Vt(e);if(Array.isArray(e.node))return Ht(e);throw new TypeError("Invalid Result type")}))&&e.length?(t=e.map(function(e){return e.result}),r.result=Bt(Xe.results,t,r.result)):r.result="inapplicable",Xe.resultGroups.forEach(function(e){return r[e]=[]}),e.forEach(function(e){var t=Xe.resultGroupMap[e.result];r[t].push(e)});var a,n=Xe.FAIL_GROUP;return 0===r[n].length&&(n=Xe.CANTTELL_GROUP),0<r[n].length?(a=r[n].map(function(e){return e.impact}),r.impact=Bt(Xe.impact,a)||null):r.impact=null,r};function $t(e,t,r){var a=Object.assign({},t);a.nodes=(a[r]||[]).concat(),Xe.resultGroups.forEach(function(e){delete a[e]}),e[r].push(a)}var Wt=function(e){var r={};return Xe.resultGroups.forEach(function(e){return r[e]=[]}),e.forEach(function(t){t.error?$t(r,t,Xe.CANTTELL_GROUP):t.result===Xe.NA?$t(r,t,Xe.NA_GROUP):Xe.resultGroups.forEach(function(e){Array.isArray(t[e])&&0<t[e].length&&$t(r,t,e)})}),r};var Gt=function e(t,r,a){var n=window.getComputedStyle(t,null);if(!n)return!1;for(var o=0;o<r.length;++o){var i=r[o];if(n.getPropertyValue(i.property)===i.value)return!0}return!(!t.parentNode||t.nodeName.toUpperCase()===a.toUpperCase())&&e(t.parentNode,r,a)};var Yt=function(e){return Array.prototype.slice.call(e)};var Kt=function(e){for(var t,r=String(e),a=r.length,n=-1,o="",i=r.charCodeAt(0);++n<a;)0!=(t=r.charCodeAt(n))?o+=1<=t&&t<=31||127==t||0==n&&48<=t&&t<=57||1==n&&48<=t&&t<=57&&45==i?"\\"+t.toString(16)+" ":(0!=n||1!=a||45!=t)&&(128<=t||45==t||95==t||48<=t&&t<=57||65<=t&&t<=90||97<=t&&t<=122)?r.charAt(n):"\\"+r.charAt(n):o+="�";return o};function Xt(e,t){return[e.substring(0,t),e.substring(t)]}function Jt(e){return e.replace(/\s+$/,"")}var Qt=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"",t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(e.length<=1||"data:"===e.substr(0,5)||"javascript:"===e.substr(0,11)||e.includes("?"))){var r,a,n,o,i,l,s,u,c,d,p,f,m,h=t.currentDomain,g=t.maxLength,v=void 0===g?25:g,b=(m=f=p=d=c="",(u=r=e).includes("#")&&(r=(a=vc(Xt(r,r.indexOf("#")),2))[0],m=a[1]),r.includes("?")&&(r=(n=vc(Xt(r,r.indexOf("?")),2))[0],f=n[1]),r.includes("://")?(c=(o=vc(r.split("://"),2))[0],d=(i=vc(Xt(r=o[1],r.indexOf("/")),2))[0],r=i[1]):"//"===r.substr(0,2)&&(d=(l=vc(Xt(r=r.substr(2),r.indexOf("/")),2))[0],r=l[1]),"www."===d.substr(0,4)&&(d=d.substr(4)),d&&d.includes(":")&&(d=(s=vc(Xt(d,d.indexOf(":")),2))[0],p=s[1]),{original:u,protocol:c,domain:d,port:p,path:r,query:f,hash:m}),y=b.path,D=b.domain,w=b.hash,x=y.substr(y.substr(0,y.length-2).lastIndexOf("/")+1);if(w)return x&&(x+w).length<=v?Jt(x+w):x.length<2&&2<w.length&&w.length<=v?Jt(w):void 0;if(D&&D.length<v&&y.length<=1)return Jt(D+y);if(y==="/"+x&&D&&h&&D!==h&&(D+y).length<=v)return Jt(D+y);var E=x.lastIndexOf(".");return(-1===E||1<E)&&(-1!==E||2<x.length)&&x.length<=v&&!x.match(/index(\.[a-zA-Z]{2-4})?/)&&!function(e){var t=0<arguments.length&&void 0!==e?e:"";return 0!==t.length&&(t.match(/[0-9]/g)||"").length>=t.length/2}(x)?Jt(x):void 0}};var Zt,er=function(e){return e.attributes instanceof window.NamedNodeMap?e.attributes:e.cloneNode(!1).attributes},tr=function(e,t){return Zt&&e[Zt]||(Zt=function(e){for(var t,r=["matches","matchesSelector","mozMatchesSelector","webkitMatchesSelector","msMatchesSelector"],a=r.length,n=0;n<a;n++)if(e[t=r[n]])return t}(e)),!!e[Zt]&&e[Zt](t)};var rr=function(e){return!!e.createElement&&"A"===e.createElement("A").localName};var ar,nr=function(a,e){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};if(!e)return"";var t=e.getRootNode&&e.getRootNode()||document;if(11!==t.nodeType)return a(e,n,t);for(var r=[];11===t.nodeType;){if(!t.host)return"";r.unshift({elm:e,doc:t}),t=(e=t.host).getRootNode()}return r.unshift({elm:e,doc:t}),r.map(function(e){var t=e.elm,r=e.doc;return a(t,n,r)})},or=["class","style","id","selected","checked","disabled","tabindex","aria-checked","aria-selected","aria-invalid","aria-activedescendant","aria-busy","aria-disabled","aria-expanded","aria-grabbed","aria-pressed","aria-valuenow"],ir=31;function lr(e,t){var r,a=t.name;if(-1!==a.indexOf("href")||-1!==a.indexOf("src")){var n=Qt(e.getAttribute(a));if(n){var o=encodeURI(n);if(!o)return;r=Kt(t.name)+'$="'+Kt(o)+'"'}else r=Kt(t.name)+'="'+Kt(e.getAttribute(a))+'"'}else r=Kt(a)+'="'+Kt(t.value)+'"';return r}function sr(e,t){return e.count<t.count?-1:e.count===t.count?0:1}function ur(e){return!or.includes(e.name)&&-1===e.name.indexOf(":")&&(!e.value||e.value.length<ir)}function cr(e){for(var a={classes:{},tags:{},attributes:{}},n=(e=Array.isArray(e)?e:[e]).slice(),o=[];n.length;)!function(){var e,t=n.pop(),r=t.actualNode;for(r.querySelectorAll&&(e=r.nodeName,a.tags[e]?a.tags[e]++:a.tags[e]=1,r.classList&&Array.from(r.classList).forEach(function(e){var t=Kt(e);a.classes[t]?a.classes[t]++:a.classes[t]=1}),r.hasAttributes()&&Array.from(er(r)).filter(ur).forEach(function(e){var t=lr(r,e);t&&(a.attributes[t]?a.attributes[t]++:a.attributes[t]=1)})),t.children.length&&(o.push(n),n=t.children.slice());!n.length&&o.length;)n=o.pop()}();return a}function dr(e){return void 0===ar&&(ar=rr(document)),Kt(ar?e.localName:e.nodeName.toLowerCase())}function pr(e,t){var r,a,n,o,i,l,s,u,c,d,p,f="",m=(a=e,o=[],i=(n=t).classes,l=n.tags,a.classList&&Array.from(a.classList).forEach(function(e){var t=Kt(e);i[t]<l[a.nodeName]&&o.push({name:t,count:i[t],species:"class"})}),o.sort(sr)),h=(s=e,c=[],d=(u=t).attributes,p=u.tags,s.hasAttributes()&&Array.from(er(s)).filter(ur).forEach(function(e){var t=lr(s,e);t&&d[t]<p[s.nodeName]&&c.push({name:t,count:d[t],species:"attribute"})}),c.sort(sr));return m.length&&1===m[0].count?r=[m[0]]:h.length&&1===h[0].count?(r=[h[0]],f=dr(e)):((r=m.concat(h)).sort(sr),(r=r.slice(0,3)).some(function(e){return"class"===e.species})?r.sort(function(e,t){return e.species!==t.species&&"class"===e.species?-1:e.species===t.species?0:1}):f=dr(e)),f+r.reduce(function(e,t){switch(t.species){case"class":return e+"."+t.name;case"attribute":return e+"["+t.name+"]"}return e},"")}function fr(e,t,r){if(!axe._selectorData)throw new Error("Expect axe._selectorData to be set up");var a,n,o=t.toRoot,i=void 0!==o&&o;do{var l=function(e){if(e.getAttribute("id")){var t=e.getRootNode&&e.getRootNode()||document,r="#"+Kt(e.getAttribute("id")||"");return r.match(/player_uid_/)||1!==t.querySelectorAll(r).length?void 0:r}}(e);l||(l=pr(e,axe._selectorData),l+=function(t,r){var e=t.parentNode&&Array.from(t.parentNode.children||"")||[];return e.find(function(e){return e!==t&&tr(e,r)})?":nth-child("+(1+e.indexOf(t))+")":""}(e,l)),a=a?l+" > "+a:l,n=n?n.filter(function(e){return tr(e,a)}):Array.from(r.querySelectorAll(a)),e=e.parentElement}while((1<n.length||i)&&e&&11!==e.nodeType);return 1===n.length?a:-1!==a.indexOf(" > ")?":root"+a.substring(a.indexOf(" > ")):":root"}function mr(e,t){return nr(fr,e,t)}function hr(e){var t=e.nodeName.toLowerCase(),r=e.parentElement;if(!r)return t;var a,n="";return"head"!==t&&"body"!==t&&1<r.children.length&&(a=Array.prototype.indexOf.call(r.children,e)+1,n=":nth-child(".concat(a,")")),hr(r)+" > "+t+n}function gr(e,t){return nr(hr,e,t)}var vr=function(e){return function e(t,r){var a,n,o,i;if(!t)return[];if(!r&&9===t.nodeType)return r=[{str:"html"}];if(r=r||[],t.parentNode&&t.parentNode!==t&&(r=e(t.parentNode,r)),t.previousSibling){for(n=1,a=t.previousSibling;1===a.nodeType&&a.nodeName===t.nodeName&&n++,a=a.previousSibling;);1===n&&(n=null)}else if(t.nextSibling)for(a=t.nextSibling;a=1===a.nodeType&&a.nodeName===t.nodeName?(n=1,null):(n=null,a.previousSibling););return 1===t.nodeType&&((o={}).str=t.nodeName.toLowerCase(),(i=t.getAttribute&&Kt(t.getAttribute("id")))&&1===t.ownerDocument.querySelectorAll("#"+i).length&&(o.id=t.getAttribute("id")),1<n&&(o.count=n),r.push(o)),r}(e).reduce(function(e,t){return t.id?"/".concat(t.str,"[@id='").concat(t.id,"']"):e+"/".concat(t.str)+(0<t.count?"[".concat(t.count,"]"):"")},"")};function br(e,t,r){var a,n,o,i,l;this._fromFrame=!!r,this.spec=r||{},t&&t.absolutePaths&&(this._options={toRoot:!0}),axe._audit.noHtml?this.source=null:void 0!==this.spec.source?this.source=this.spec.source:this.source=((l=(a=e).outerHTML)||"function"!=typeof XMLSerializer||(l=(new XMLSerializer).serializeToString(a)),(n=l||"").length>(o=o||300)&&(i=n.indexOf(">"),n=n.substring(0,i+1)),n),this._element=e}br.prototype={get selector(){return this.spec.selector||[mr(this.element,this._options)]},get ancestry(){return this.spec.ancestry||[gr(this.element)]},get xpath(){return this.spec.xpath||[vr(this.element)]},get element(){return this._element},get fromFrame(){return this._fromFrame},toJSON:function(){return{selector:this.selector,source:this.source,xpath:this.xpath,ancestry:this.ancestry}}},br.fromFrame=function(e,t,r){var a=bc({},e,{selector:[].concat(gc(r.selector),gc(e.selector)),ancestry:[].concat(gc(r.ancestry),gc(e.ancestry)),xpath:[].concat(gc(r.xpath),gc(e.xpath))});return new br(r.element,t,a)};var yr=br;var Dr=function(t,r,a,n){return{isAsync:!1,async:function(){return this.isAsync=!0,function(e){e instanceof Error==!1?(t.result=e,a(t)):n(e)}},data:function(e){t.data=e},relatedNodes:function(e){e=e instanceof window.Node?[e]:Yt(e),t.relatedNodes=e.map(function(e){return new yr(e,r)})}}};var wr=function e(t){var r,a,n=t;if(null!==t&&"object"===cc(t))if(Array.isArray(t))for(n=[],r=0,a=t.length;r<a;r++)n[r]=e(t[r]);else for(r in n={},t)n[r]=e(t[r]);return n},xr=new(r(f()).CssSelectorParser);xr.registerSelectorPseudos("not"),xr.registerSelectorPseudos("is"),xr.registerNestingOperators(">"),xr.registerAttrEqualityMods("^","$","*","~");var Er=xr;function Ar(e,t){return d=t,1===(c=e).props.nodeType&&("*"===d.tag||c.props.nodeName===d.tag)&&(s=e,!(u=t).classes||u.classes.every(function(e){return s.hasClass(e.value)}))&&(i=e,!(l=t).attributes||l.attributes.every(function(e){var t=i.attr(e.key);return null!==t&&(!e.value||e.test(t))}))&&(n=e,!(o=t).id||n.props.id===o.id)&&(r=e,!((a=t).pseudos&&!a.pseudos.every(function(e){if("not"===e.name)return!e.expressions.some(function(e){return Nr(r,e)});if("is"===e.name)return e.expressions.some(function(e){return Nr(r,e)});throw new Error("the pseudo selector "+e.name+" has not yet been implemented")})));var r,a,n,o,i,l,s,u,c,d}var Cr,Fr=(Cr=/(?=[\-\[\]{}()*+?.\\\^$|,#\s])/g,function(e){return e.replace(Cr,"\\")}),kr=/\\/g;function Rr(e){return e.map(function(e){for(var t=[],r=e.rule;r;)t.push({tag:r.tagName?r.tagName.toLowerCase():"*",combinator:r.nestingOperator?r.nestingOperator:" ",id:r.id,attributes:function(e){if(e)return e.map(function(e){var t,r,a=e.name.replace(kr,""),n=(e.value||"").replace(kr,"");switch(e.operator){case"^=":r=new RegExp("^"+Fr(n));break;case"$=":r=new RegExp(Fr(n)+"$");break;case"~=":r=new RegExp("(^|\\s)"+Fr(n)+"(\\s|$)");break;case"|=":r=new RegExp("^"+Fr(n)+"(-|$)");break;case"=":t=function(e){return n===e};break;case"*=":t=function(e){return e&&e.includes(n)};break;case"!=":t=function(e){return n!==e};break;default:t=function(e){return!!e}}return""===n&&/^[*$^]=$/.test(e.operator)&&(t=function(){return!1}),{key:a,value:n,test:t=t||function(e){return e&&r.test(e)}}})}(r.attrs),classes:function(e){if(e)return e.map(function(e){return{value:e=e.replace(kr,""),regexp:new RegExp("(^|\\s)"+Fr(e)+"(\\s|$)")}})}(r.classNames),pseudos:function(e){if(e)return e.map(function(e){var t;return["is","not"].includes(e.name)&&(t=Rr(t=(t=e.value).selectors?t.selectors:[t])),{name:e.name,expressions:t,value:e.value}})}(r.pseudos)}),r=r.rule;return t})}function Tr(e){var t=Er.parse(e);return Rr(t=t.selectors?t.selectors:[t])}function Nr(e,t,r){for(var a=[].concat(t),n=a.pop(),o=Ar(e,n);!o&&r&&e.parent;)o=Ar(e=e.parent,n);if(a.length){if(!1===[" ",">"].includes(n.combinator))throw new Error("axe.utils.matchesExpression does not support the combinator: "+n.combinator);o=o&&Nr(e.parent,a," "===n.combinator)}return o}var _r=function(t,e){return Tr(e).some(function(e){return Nr(t,e)})};var Or=function(e,t){for(;e;){if(_r(e,t))return e;if(void 0===e.parent)throw new TypeError("Cannot resolve parent for non-DOM nodes");e=e.parent}return null};function Sr(){}function Pr(e){if("function"!=typeof e)throw new TypeError("Queue methods require functions as arguments")}var Ir,Br,Lr=function(){function t(e){a=e,setTimeout(function(){null!=a&&Je("Uncaught error (of queue)",a)},1)}var a,n=[],r=0,o=0,i=Sr,l=!1,s=t;function u(e){return i=Sr,s(e),n}function c(){for(var e=n.length;r<e;r++){var t=n[r];try{t.call(null,function(t){return function(e){n[t]=e,--o||i===Sr||(l=!0,i(n))}}(r),u)}catch(e){u(e)}}}var d={defer:function(e){var r;if("object"===cc(e)&&e.then&&e.catch&&(r=e,e=function(e,t){r.then(e).catch(t)}),Pr(e),void 0===a){if(l)throw new Error("Queue already completed");return n.push(e),++o,c(),d}},then:function(e){if(Pr(e),i!==Sr)throw new Error("queue `then` already set");return a||(i=e,o||(l=!0,i(n))),d},catch:function(e){if(Pr(e),s!==t)throw new Error("queue `catch` already set");return a?(e(a),a=null):s=e,d},abort:u};return d},qr={};function Mr(e,t,r,a,n){var o={topic:t,message:r,channelId:"".concat(kt(),":").concat(kt()),keepalive:a};return Br(e,o,n)}function jr(e,t){var r=e.topic,a=e.message,n=e.keepalive,o=qr[r];if(o)try{o(a,n,t)}catch(e){axe.log(e),t(e,n)}}function Ur(e,t){var r;return axe._tree&&(r=mr(t)),new Error(e+": "+(r||t))}Mr.updateMessenger=function(e){var t=e.open,r=e.post;ot("function"==typeof t,"open callback must be a function"),ot("function"==typeof r,"post callback must be a function"),Ir&&Ir();var a=t(jr);Ir=a?(ot("function"==typeof a,"open callback must return a cleanup function"),a):null,Br=r},Mr.subscribe=function(e,t){ot("function"==typeof t,"Subscriber callback must be a function"),ot(!qr[e],"Topic ".concat(e," is already registered to.")),qr[e]=t},Mr.isInFrame=function(e){return!!(0<arguments.length&&void 0!==e?e:window).frameElement},It(Mr);var Vr=function(t,r,a,n){var o=t.contentWindow;if(!o)return Je("Frame does not have a content window",t),void a(null);var i=setTimeout(function(){i=setTimeout(function(){r.debug?n(Ur("No response from frame",t)):a(null)},0)},500);Mr(o,"axe.ping",null,void 0,function(){clearTimeout(i);var e=r.options&&r.options.frameWaitTime||6e4;i=setTimeout(function(){n(Ur("Axe in frame timed out",t))},e),Mr(o,"axe.start",r,void 0,function(e){clearTimeout(i),(e instanceof Error==!1?a:n)(e)})})};var Hr=function(e){return[].concat(e.any||[]).concat(e.all||[]).concat(e.none||[])};var zr=function(e,t){return(e=e.actualNode||e)===(t=t.actualNode||t)?0:4&e.compareDocumentPosition(t)?-1:1};var $r=function(e,t,r){if(Array.isArray(e))return e.find(function(e){return"object"===cc(e)&&e[t]===r})};var Wr=function(e,i){var l=[];return e.forEach(function(e){var t,r,o,a=(t=e)&&t.results?Array.isArray(t.results)?t.results.length?t.results:null:[t.results]:null;a&&a.length&&(e.frameElement&&(r={selector:[e.frame]},o=new yr(e.frameElement,i,r)),a.forEach(function(e){var t,r,a;e.nodes&&o&&(t=e.nodes,r=o,a=i,t.forEach(function(e){e.node=yr.fromFrame(e.node,a,r),Hr(e).forEach(function(e){e.relatedNodes=e.relatedNodes.map(function(e){return yr.fromFrame(e,a,r)})})}));var n=$r(l,"id",e.id);n?e.nodes.length&&function(e,t){for(var r=t[0].node,a=0;a<e.length;a++){var n=e[a].node,o=zr({actualNode:n.element},{actualNode:r.element});if(0<o||0===o&&r.selector.length<n.selector.length)return e.splice.apply(e,[a,0].concat(t))}e.push.apply(e,t)}(n.nodes,e.nodes):l.push(e)}))}),1<e.length&&window&&window.Node&&l.forEach(function(e){e.nodes&&e.nodes.sort(function(e,t){var r=e.node.element,a=t.node.element;return r!==a&&(e.node._fromFrame||t.node._fromFrame)?zr(r,a):0})}),l};var Gr=function(l,s,u,c,t,e){var d=Lr();l.frames.forEach(function(a){var e=parseInt(a.node.getAttribute("tabindex"),10),t=isNaN(e)||0<=e,r=a.node.getBoundingClientRect(),n=parseInt(a.node.getAttribute("width"),10),o=parseInt(a.node.getAttribute("height"),10),n=isNaN(n)?r.width:n,o=isNaN(o)?r.height:o,i={options:s,command:u,parameter:c,context:{initiator:!1,focusable:!1!==l.focusable&&t,boundingClientRect:{width:n,height:o},page:l.page,include:a.include||[],exclude:a.exclude||[]}};d.defer(function(t,e){var r=a.node;Vr(r,i,function(e){return e?t({results:e,frameElement:r,frame:mr(r)}):void t(null)},e)})}),d.then(function(e){t(Wr(e,s))}).catch(e)};var Yr=function(e,t){if(e.shadowId||t.shadowId)return function t(e,r){return e.shadowId===r.shadowId||!!e.children.find(function(e){return t(e,r)})}(e,t);if(e.actualNode)return"function"==typeof e.actualNode.contains?e.actualNode.contains(t.actualNode):!!(16&e.actualNode.compareDocumentPosition(t.actualNode));do{if(t===e)return!0}while(t=t&&t.parent);return!1};var Kr=function n(){for(var o={},e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return t.forEach(function(e){if(e&&"object"===cc(e)&&!Array.isArray(e))for(var t=0,r=Object.keys(e);t<r.length;t++){var a=r[t];!o.hasOwnProperty(a)||"object"!==cc(e[a])||Array.isArray(o[a])?o[a]=e[a]:o[a]=n(o[a],e[a])}}),o};var Xr=function(t,r){Object.assign(t,r),Object.keys(r).filter(function(e){return"function"==typeof r[e]}).forEach(function(e){t[e]=null;try{t[e]=r[e](t)}catch(e){}})},Jr=["article","aside","blockquote","body","div","footer","h1","h2","h3","h4","h5","h6","header","main","nav","p","section","span"];var Qr=function(e){if(e.shadowRoot){var t=e.nodeName.toLowerCase();if(Jr.includes(t)||/^[a-z][a-z0-9_.-]*-[a-z0-9_.-]*$/.test(t))return!0}return!1},Zr={};t(Zr,{findElmsInContext:function(){return ra},findUp:function(){return na},findUpVirtual:function(){return aa},getComposedParent:function(){return oa},getElementByReference:function(){return ia},getElementCoordinates:function(){return sa},getElementStack:function(){return Aa},getRootNode:function(){return ta},getScrollOffset:function(){return la},getTabbableElements:function(){return Ca},getTextElementStack:function(){return ka},getViewportSize:function(){return ua},hasContent:function(){return Ia},hasContentVirtual:function(){return Pa},idrefs:function(){return Na},insertedIntoFocusOrder:function(){return Va},isFocusable:function(){return Ua},isHTML5:function(){return Ha},isHiddenWithCSS:function(){return qa},isInTextBlock:function(){return Wa},isModalOpen:function(){return Ga},isNativelyFocusable:function(){return ja},isNode:function(){return Ya},isOffscreen:function(){return ca},isOpaque:function(){return ln},isSkipLink:function(){return un},isVisible:function(){return ma},isVisualContent:function(){return Ta},reduceToElementsBelowFloating:function(){return cn},shadowElementsFromPoint:function(){return fn},urlPropsFromAttribute:function(){return mn},visuallyContains:function(){return pn},visuallyOverlaps:function(){return gn}});var ea=function(e){var t=e.getRootNode&&e.getRootNode()||document;return t===e&&(t=document),t},ta=ea;var ra=function(e){var t=e.context,r=e.value,a=e.attr,n=e.elm,o=void 0===n?"":n,i=Kt(r),l=9===t.nodeType||11===t.nodeType?t:ta(t);return Array.from(l.querySelectorAll(o+"["+a+"="+i+"]"))};var aa=function(e,t){var r=e.actualNode;if(!e.shadowId&&"function"==typeof e.actualNode.closest){var a=e.actualNode.closest(t);return a?a:null}for(;(r=r.assignedSlot?r.assignedSlot:r.parentNode)&&11===r.nodeType&&(r=r.host),r&&!tr(r,t)&&r!==document.documentElement;);return r&&tr(r,t)?r:null};var na=function(e,t){return aa(_n(e),t)};var oa=function e(t){if(t.assignedSlot)return e(t.assignedSlot);if(t.parentNode){var r=t.parentNode;if(1===r.nodeType)return r;if(r.host)return r.host}return null};var ia=function(e,t){var r=e.getAttribute(t);if(!r)return null;"#"===r.charAt(0)?r=decodeURIComponent(r.substring(1)):"/#"===r.substr(0,2)&&(r=decodeURIComponent(r.substring(2)));var a=document.getElementById(r);return a||((a=document.getElementsByName(r)).length?a[0]:null)};var la=function(e){if(!e.nodeType&&e.document&&(e=e.document),9!==e.nodeType)return{left:e.scrollLeft,top:e.scrollTop};var t=e.documentElement,r=e.body;return{left:t&&t.scrollLeft||r&&r.scrollLeft||0,top:t&&t.scrollTop||r&&r.scrollTop||0}};var sa=function(e){var t=la(document),r=t.left,a=t.top,n=e.getBoundingClientRect();return{top:n.top+a,right:n.right+r,bottom:n.bottom+a,left:n.left+r,width:n.right-n.left,height:n.bottom-n.top}};var ua=function(e){var t=e.document,r=t.documentElement;if(e.innerWidth)return{width:e.innerWidth,height:e.innerHeight};if(r)return{width:r.clientWidth,height:r.clientHeight};var a=t.body;return{width:a.clientWidth,height:a.clientHeight}};var ca=function(e){var t,r=document.documentElement,a=window.getComputedStyle(e),n=window.getComputedStyle(document.body||r).getPropertyValue("direction"),o=sa(e);if(o.bottom<0&&(function(e,t){for(e=oa(e);e&&"html"!==e.nodeName.toLowerCase();){if(e.scrollTop&&0<=(t+=e.scrollTop))return;e=oa(e)}return 1}(e,o.bottom)||"absolute"===a.position))return!0;if(0===o.left&&0===o.right)return!1;if("ltr"===n){if(o.right<=0)return!0}else if(t=Math.max(r.scrollWidth,ua(window).width),o.left>=t)return!0;return!1},da=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,pa=/(\w+)\((\d+)/;function fa(e,t,r){if(!e)throw new TypeError("Cannot determine if element is visible for non-DOM nodes");var a=_n(e),n="_isVisible"+(t?"ScreenReader":"");if(9===e.nodeType)return!0;if(11===e.nodeType&&(e=e.host),a&&void 0!==a[n])return a[n];var o=window.getComputedStyle(e,null);if(null===o)return!1;var i=e.nodeName.toUpperCase();if("AREA"===i)return function(e,t,r){var a=na(e,"map");if(!a)return!1;var n=a.getAttribute("name");if(!n)return!1;var o=ta(e);if(!o||9!==o.nodeType)return!1;var i=vo(axe._tree,'img[usemap="#'.concat(Kt(n),'"]'));return!(!i||!i.length)&&i.some(function(e){return fa(e.actualNode,t,r)})}(e,t,r);if("none"===o.getPropertyValue("display")||["STYLE","SCRIPT","NOSCRIPT","TEMPLATE"].includes(i))return!1;if(t&&"true"===e.getAttribute("aria-hidden"))return!1;if(!t&&(function(e){var t=e.getPropertyValue("clip").match(da),r=e.getPropertyValue("clip-path").match(pa);if(t&&5===t.length)return t[3]-t[1]<=0&&t[2]-t[4]<=0;if(r){var a=r[1],n=parseInt(r[2],10);switch(a){case"inset":return 50<=n;case"circle":return 0===n}}}(o)||"0"===o.getPropertyValue("opacity")||Sn(e)&&0===parseInt(o.getPropertyValue("height"))))return!1;if(!r&&("hidden"===o.getPropertyValue("visibility")||!t&&ca(e)))return!1;var l=e.assignedSlot?e.assignedSlot:e.parentNode,s=!1;return l&&(s=fa(l,t,!0)),a&&(a[n]=s),s}var ma=fa,ha=200;function ga(e){return"static"===e.getComputedStylePropertyValue("position")?-1!==e.getComputedStylePropertyValue("display").indexOf("inline")?2:function e(t){if(!t)return!1;if(void 0!==t._isFloated)return t._isFloated;if("none"!==t.getComputedStylePropertyValue("float"))return t._isFloated=!0;var r=e(t.parent);return t._isFloated=r}(e)?1:0:3}function va(e,t){for(var r=0;r<e._stackingOrder.length;r++){if(void 0===t._stackingOrder[r])return-1;if(t._stackingOrder[r]>e._stackingOrder[r])return 1;if(t._stackingOrder[r]<e._stackingOrder[r])return-1}var a=e.actualNode,n=t.actualNode;if(a.getRootNode&&a.getRootNode()!==n.getRootNode()){for(var o=[];a;)o.push({root:a.getRootNode(),node:a}),a=a.getRootNode().host;for(;n&&!o.find(function(e){return e.root===n.getRootNode()});)n=n.getRootNode().host;if((a=o.find(function(e){return e.root===n.getRootNode()}).node)===n)return e.actualNode.getRootNode()!==a.getRootNode()?-1:1}var i=window.Node,l=i.DOCUMENT_POSITION_FOLLOWING,s=i.DOCUMENT_POSITION_CONTAINS,u=i.DOCUMENT_POSITION_CONTAINED_BY,c=a.compareDocumentPosition(n),d=c&l?1:-1,p=c&s||c&u,f=ga(e),m=ga(t);return f===m||p?d:m-f}function ba(e,t){var r=t._stackingOrder.slice(),a=e.getComputedStylePropertyValue("z-index");return"auto"!==a&&(r[r.length-1]=parseInt(a)),function(e,t){var r=e.getComputedStylePropertyValue("position"),a=e.getComputedStylePropertyValue("z-index");if("fixed"===r||"sticky"===r)return 1;if("auto"!==a&&"static"!==r)return 1;if("1"!==e.getComputedStylePropertyValue("opacity"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-transform")||e.getComputedStylePropertyValue("-ms-transform")||e.getComputedStylePropertyValue("transform")||"none"))return 1;var n=e.getComputedStylePropertyValue("mix-blend-mode");if(n&&"normal"!==n)return 1;var o=e.getComputedStylePropertyValue("filter");if(o&&"none"!==o)return 1;var i=e.getComputedStylePropertyValue("perspective");if(i&&"none"!==i)return 1;var l=e.getComputedStylePropertyValue("clip-path");if(l&&"none"!==l)return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask")||e.getComputedStylePropertyValue("mask")||"none"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask-image")||e.getComputedStylePropertyValue("mask-image")||"none"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask-border")||e.getComputedStylePropertyValue("mask-border")||"none"))return 1;if("isolate"===e.getComputedStylePropertyValue("isolation"))return 1;var s=e.getComputedStylePropertyValue("will-change");if("transform"===s||"opacity"===s)return 1;if("touch"===e.getComputedStylePropertyValue("-webkit-overflow-scrolling"))return 1;var u=e.getComputedStylePropertyValue("contain");if(["layout","paint","strict","content"].includes(u))return 1;if("auto"!==a&&t){var c=t.getComputedStylePropertyValue("display");if(["flex","inline-flex","inline flex","grid","inline-grid","inline grid"].includes(c))return 1}}(e,t)&&r.push(0),r}function ya(u,c){c._grid=u,c.clientRects.forEach(function(e){for(var t=e.left,r=e.top,a=r/ha|0,n=t/ha|0,o=(r+e.height)/ha|0,i=(t+e.width)/ha|0,l=a;l<=o;l++){u.cells[l]=u.cells[l]||[];for(var s=n;s<=i;s++)u.cells[l][s]=u.cells[l][s]||[],u.cells[l][s].includes(c)||u.cells[l][s].push(c)}})}function Da(e,t,r){var a,n,o=0<arguments.length&&void 0!==e?e:document.body,i=1<arguments.length&&void 0!==t?t:{container:null,cells:[]},l=2<arguments.length&&void 0!==r?r:null;l||((n=(n=_n(document.documentElement))||new vn(document.documentElement))._stackingOrder=[0],ya(i,n),Sn(n.actualNode)&&(a={container:n,cells:[]},n._subGrid=a));for(var s=document.createTreeWalker(o,window.NodeFilter.SHOW_ELEMENT,null,!1),u=l?s.nextNode():s.currentNode;u;){var c=_n(u);u.parentElement?l=_n(u.parentElement):u.parentNode&&_n(u.parentNode)&&(l=_n(u.parentNode)),(c=c||new axe.VirtualNode(u,l))._stackingOrder=ba(c,l);var d,p=function(e,t){for(var r=null,a=[e];t;){if(t._scrollRegionParent){r=t._scrollRegionParent;break}if(Sn(t.actualNode)){r=t;break}a.push(t),t=_n(t.actualNode.parentElement||t.actualNode.parentNode)}return a.forEach(function(e){return e._scrollRegionParent=r}),r}(c,l),f=p?p._subGrid:i;Sn(c.actualNode)&&(d={container:c,cells:[]},c._subGrid=d);var m=c.boundingClientRect;0!==m.width&&0!==m.height&&ma(u)&&ya(f,c),Qr(u)&&Da(u.shadowRoot,f,c),u=s.nextNode()}}function wa(e,t,r){var a=2<arguments.length&&void 0!==r&&r,n=t.left+t.width/2,o=t.top+t.height/2,i=o/ha|0,l=n/ha|0,s=e.cells[i][l].filter(function(e){return e.clientRects.find(function(e){var t=e.left,r=e.top;return n<=t+e.width&&t<=n&&o<=r+e.height&&r<=o})}),u=e.container;return u&&(s=wa(u._grid,u.boundingClientRect,!0).concat(s)),a||(s=s.sort(va).map(function(e){return e.actualNode}).concat(document.documentElement).filter(function(e,t,r){return r.indexOf(e)===t})),s}var xa={},Ea={set:function(e,t){xa[e]=t},get:function(e){return xa[e]},clear:function(){xa={}}};var Aa=function(e){Ea.get("gridCreated")||(Da(),Ea.set("gridCreated",!0));var t=_n(e),r=t._grid;return r?wa(r,t.boundingClientRect):[]};var Ca=function(e){return vo(e,"*").filter(function(e){var t=e.isFocusable,r=e.actualNode.getAttribute("tabindex");return(r=r&&!isNaN(parseInt(r,10))?parseInt(r):null)?t&&0<=r:t})};var Fa=function(e){return e?e.replace(/\r\n/g,"\n").replace(/\u00A0/g," ").replace(/[\s]{2,}/g," ").trim():""};var ka=function(e){Ea.get("gridCreated")||(Da(),Ea.set("gridCreated",!0));var t=_n(e),r=t._grid;if(!r)return[];var o=t.boundingClientRect,i=[];return Array.from(e.childNodes).forEach(function(e){if(3===e.nodeType&&""!==Fa(e.textContent)){var t=document.createRange();t.selectNodeContents(e);var r=t.getClientRects();if(Array.from(r).some(function(e){var t=e.left+e.width/2,r=e.top+e.height/2;return t<o.left||t>o.right||r<o.top||r>o.bottom}))return;for(var a=0;a<r.length;a++){var n=r[a];1<=n.width&&1<=n.height&&i.push(n)}}}),i.length?i.map(function(e){return wa(r,e)}):[Aa(e)]},Ra=["checkbox","img","radio","range","slider","spinbutton","textbox"];var Ta=function(e){var t=e.getAttribute("role");if(t)return-1!==Ra.indexOf(t);switch(e.nodeName.toUpperCase()){case"IMG":case"IFRAME":case"OBJECT":case"VIDEO":case"AUDIO":case"CANVAS":case"SVG":case"MATH":case"BUTTON":case"SELECT":case"TEXTAREA":case"KEYGEN":case"PROGRESS":case"METER":return!0;case"INPUT":return"hidden"!==e.type;default:return!1}};var Na=function(e,t){e=e.actualNode||e;try{var r=ta(e),a=[],n=e.getAttribute(t);if(n){n=Eo(n);for(var o=0;o<n.length;o++)a.push(r.getElementById(n[o]))}return a}catch(e){throw new TypeError("Cannot resolve id references for non-DOM nodes")}};var _a=function n(e,o,i){var t=e instanceof et?e:_n(e),l=!e.actualNode||e.actualNode&&ma(e.actualNode,o),r=t.children.map(function(e){var t=e.props,r=t.nodeType,a=t.nodeValue;if(3===r){if(a&&l)return a}else if(!i)return n(e,o)}).join("");return Fa(r)};var Oa=function(e){var t;return e.attr("aria-labelledby")&&(t=Na(e.actualNode,"aria-labelledby").map(function(e){var t=_n(e);return t?_a(t,!0):""}).join(" ").trim())||(t=(t=e.attr("aria-label"))&&Fa(t))?t:null},Sa=["HEAD","TITLE","TEMPLATE","SCRIPT","STYLE","IFRAME","OBJECT","VIDEO","AUDIO","NOSCRIPT"];var Pa=function t(e,r,a){return function(e){if(!Sa.includes(e.actualNode.nodeName.toUpperCase()))return e.children.some(function(e){var t=e.actualNode;return 3===t.nodeType&&t.nodeValue.trim()})}(e)||Ta(e.actualNode)||!a&&!!Oa(e)||!r&&e.children.some(function(e){return 1===e.actualNode.nodeType&&t(e)})};var Ia=function(e,t,r){return e=_n(e),Pa(e,t,r)};function Ba(e,t){var r=_n(e);return r?(void 0===r._isHiddenWithCSS&&(r._isHiddenWithCSS=La(e,t)),r._isHiddenWithCSS):La(e,t)}function La(e,t){if(9===e.nodeType)return!1;if(11===e.nodeType&&(e=e.host),["STYLE","SCRIPT"].includes(e.nodeName.toUpperCase()))return!1;var r=window.getComputedStyle(e,null);if(!r)throw new Error("Style does not exist for the given element.");if("none"===r.getPropertyValue("display"))return!0;var a=["hidden","collapse"],n=r.getPropertyValue("visibility");if(a.includes(n)&&!t)return!0;if(a.includes(n)&&t&&a.includes(t))return!0;var o=oa(e);return!(!o||a.includes(n))&&Ba(o,n)}var qa=Ba;var Ma=function(e){var t=e instanceof et?e:_n(e);return!!t.hasAttr("disabled")||"area"!==t.props.nodeName&&(!!t.actualNode&&qa(t.actualNode))};var ja=function(e){var t=e instanceof et?e:_n(e);if(!t||Ma(t))return!1;switch(t.props.nodeName){case"a":case"area":if(t.hasAttr("href"))return!0;break;case"input":return"hidden"!==t.props.type;case"textarea":case"select":case"summary":case"button":return!0;case"details":return!vo(t,"summary").length}return!1};var Ua=function(e){var t=e instanceof et?e:_n(e);if(1!==t.props.nodeType)return!1;if(Ma(t))return!1;if(ja(t))return!0;var r=t.attr("tabindex");return!(!r||isNaN(parseInt(r,10)))};var Va=function(e){return-1<parseInt(e.getAttribute("tabindex"),10)&&Ua(e)&&!ja(e)};var Ha=function(e){var t=e.doctype;return null!==t&&("html"===t.name&&!t.publicId&&!t.systemId)};var za=["block","list-item","table","flex","grid","inline-block"];function $a(e){var t=window.getComputedStyle(e).getPropertyValue("display");return za.includes(t)||"table-"===t.substr(0,6)}var Wa=function(r){if($a(r))return!1;var e=function(e){for(var t=oa(e);t&&!$a(t);)t=oa(t);return _n(t)}(r),a="",n="",o=0;return function t(e,r){!1!==r(e.actualNode)&&e.children.forEach(function(e){return t(e,r)})}(e,function(e){if(2===o)return!1;if(3===e.nodeType&&(a+=e.nodeValue),1===e.nodeType){var t=(e.nodeName||"").toUpperCase();if(["BR","HR"].includes(t))0===o?n=a="":o=2;else{if("none"===e.style.display||"hidden"===e.style.overflow||!["",null,"none"].includes(e.style.float)||!["",null,"relative"].includes(e.style.position))return!1;if("A"===t&&e.href||"link"===(e.getAttribute("role")||"").toLowerCase())return e===r&&(o=1),n+=e.textContent,!1}}}),a=Fa(a),n=Fa(n),a.length>n.length};var Ga=function(e){var t=(e=e||{}).modalPercent||.75;if(Ea.get("isModalOpen"))return Ea.get("isModalOpen");if(io(axe._tree[0],"dialog, [role=dialog], [aria-modal=true]",function(e){return ma(e.actualNode)}).length)return Ea.set("isModalOpen",!0),!0;for(var r=ua(window),a=r.width*t,n=r.height*t,o=(r.width-a)/2,i=(r.height-n)/2,l=[{x:o,y:i},{x:r.width-o,y:i},{x:r.width/2,y:r.height/2},{x:o,y:r.height-i},{x:r.width-o,y:r.height-i}].map(function(e){return Array.from(document.elementsFromPoint(e.x,e.y))}),s=0;s<l.length;s++){var u=function(e){var t=l[e].find(function(e){var t=window.getComputedStyle(e);return parseInt(t.width,10)>=a&&parseInt(t.height,10)>=n&&"none"!==t.getPropertyValue("pointer-events")&&("absolute"===t.position||"fixed"===t.position)});if(t&&l.every(function(e){return e.includes(t)}))return Ea.set("isModalOpen",!0),{v:!0}}(s);if("object"===cc(u))return u.v}Ea.set("isModalOpen",void 0)};var Ya=function(e){return e instanceof window.Node},Ka={},Xa={set:function(e,t){if("string"!=typeof e)throw new Error("Incomplete data: key must be a string");return t&&(Ka[e]=t),Ka[e]},get:function(e){return Ka[e]},clear:function(){Ka={}}};var Ja=function(e,t){var r=e.nodeName.toUpperCase();if(["IMG","CANVAS","OBJECT","IFRAME","VIDEO","SVG"].includes(r))return Xa.set("bgColor","imgNode"),!0;var a,n=(t=t||window.getComputedStyle(e)).getPropertyValue("background-image"),o="none"!==n;return o&&(a=/gradient/.test(n),Xa.set("bgColor",a?"bgGradient":"bgImage")),o},Qa={alert:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},alertdialog:{type:"widget",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["alert","dialog"],accessibleNameRequired:!0},application:{type:"landmark",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["structure"],accessibleNameRequired:!0},article:{type:"structure",allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["document"]},banner:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},blockquote:{type:"structure",superclassRole:["section"]},button:{type:"widget",allowedAttrs:["aria-expanded","aria-pressed"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},caption:{type:"structure",requiredContext:["figure","table","grid","treegrid"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},cell:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-expanded"],superclassRole:["section"],nameFromContent:!0},checkbox:{type:"widget",allowedAttrs:["aria-checked","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},code:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},columnheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},combobox:{type:"composite",requiredOwned:["listbox","tree","grid","dialog","textbox"],requiredAttrs:["aria-expanded"],allowedAttrs:["aria-controls","aria-autocomplete","aria-readonly","aria-required","aria-activedescendant","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},command:{type:"abstract",superclassRole:["widget"]},complementary:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},composite:{type:"abstract",superclassRole:["widget"]},contentinfo:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},definition:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},deletion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},dialog:{type:"widget",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["window"],accessibleNameRequired:!0},directory:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["list"],nameFromContent:!0},document:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["structure"]},emphasis:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},feed:{type:"structure",requiredOwned:["article"],allowedAttrs:["aria-expanded"],superclassRole:["list"]},figure:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},form:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},grid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-level","aria-multiselectable","aria-readonly","aria-activedescendant","aria-colcount","aria-expanded","aria-rowcount"],superclassRole:["composite","table"],accessibleNameRequired:!1},gridcell:{type:"widget",requiredContext:["row"],allowedAttrs:["aria-readonly","aria-required","aria-selected","aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan"],superclassRole:["cell","widget"],nameFromContent:!0},group:{type:"structure",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["section"]},heading:{type:"structure",requiredAttrs:["aria-level"],allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},img:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!0,childrenPresentational:!0},input:{type:"abstract",superclassRole:["widget"]},insertion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},landmark:{type:"abstract",superclassRole:["section"]},link:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},list:{type:"structure",requiredOwned:["group","listitem"],allowedAttrs:["aria-expanded"],superclassRole:["section"]},listbox:{type:"composite",requiredOwned:["option"],allowedAttrs:["aria-multiselectable","aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},listitem:{type:"structure",requiredContext:["list","group"],allowedAttrs:["aria-level","aria-posinset","aria-setsize","aria-expanded"],superclassRole:["section"],nameFromContent:!0},log:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},main:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},marquee:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},math:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],childrenPresentational:!0},menu:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"]},menubar:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["menu"]},menuitem:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},menuitemcheckbox:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-checked","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["checkbox","menuitem"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},menuitemradio:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-checked","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["menuitemcheckbox","radio"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},meter:{type:"structure",allowedAttrs:["aria-valuetext"],requiredAttrs:["aria-valuemax","aria-valuemin","aria-valuenow"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},navigation:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},none:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},note:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},option:{type:"widget",requiredContext:["listbox"],allowedAttrs:["aria-selected","aria-checked","aria-posinset","aria-setsize"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},paragraph:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},presentation:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},progressbar:{type:"widget",allowedAttrs:["aria-expanded","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},radio:{type:"widget",allowedAttrs:["aria-checked","aria-posinset","aria-setsize","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},radiogroup:{type:"composite",requiredOwned:["radio"],allowedAttrs:["aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},range:{type:"abstract",superclassRole:["widget"]},region:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"],accessibleNameRequired:!1},roletype:{type:"abstract",superclassRole:[]},row:{type:"structure",requiredContext:["grid","rowgroup","table","treegrid"],requiredOwned:["cell","columnheader","gridcell","rowheader"],allowedAttrs:["aria-colindex","aria-level","aria-rowindex","aria-selected","aria-activedescendant","aria-expanded"],superclassRole:["group","widget"],nameFromContent:!0},rowgroup:{type:"structure",requiredContext:["grid","table","treegrid"],requiredOwned:["row"],superclassRole:["structure"],nameFromContent:!0},rowheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},scrollbar:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-controls","aria-orientation","aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],childrenPresentational:!0},search:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},searchbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["textbox"],accessibleNameRequired:!0},section:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},sectionhead:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},select:{type:"abstract",superclassRole:["composite","group"]},separator:{type:"structure",allowedAttrs:["aria-valuemax","aria-valuemin","aria-valuenow","aria-orientation","aria-valuetext"],superclassRole:["structure","widget"],childrenPresentational:!0},slider:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-readonly","aria-valuetext"],superclassRole:["input","range"],accessibleNameRequired:!0,childrenPresentational:!0},spinbutton:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-readonly","aria-required","aria-activedescendant","aria-valuetext"],superclassRole:["composite","input","range"],accessibleNameRequired:!0},status:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},strong:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},structure:{type:"abstract",superclassRole:["roletype"]},subscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},superscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},switch:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-readonly"],superclassRole:["checkbox"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},tab:{type:"widget",requiredContext:["tablist"],allowedAttrs:["aria-posinset","aria-selected","aria-setsize","aria-expanded"],superclassRole:["sectionhead","widget"],nameFromContent:!0,childrenPresentational:!0},table:{type:"structure",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-colcount","aria-rowcount","aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1,nameFromContent:!0},tablist:{type:"composite",requiredOwned:["tab"],allowedAttrs:["aria-level","aria-multiselectable","aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["composite"]},tabpanel:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1},term:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},text:{type:"structure",superclassRole:["section"],nameFromContent:!0},textbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0},time:{type:"structure",superclassRole:["section"]},timer:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["status"]},toolbar:{type:"structure",allowedAttrs:["aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["group"],accessibleNameRequired:!0},tooltip:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},tree:{type:"composite",requiredOwned:["group","treeitem"],allowedAttrs:["aria-multiselectable","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},treegrid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-readonly","aria-required","aria-rowcount"],superclassRole:["grid","tree"],accessibleNameRequired:!1},treeitem:{type:"widget",requiredContext:["group","tree"],allowedAttrs:["aria-checked","aria-expanded","aria-level","aria-posinset","aria-selected","aria-setsize"],superclassRole:["listitem","option"],accessibleNameRequired:!0,nameFromContent:!0},widget:{type:"abstract",superclassRole:["roletype"]},window:{type:"abstract",superclassRole:["roletype"]}},Za={a:{variant:{href:{matches:"[href]",contentTypes:["interactive","phrasing","flow"],allowedRoles:["button","checkbox","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab","treeitem","doc-backlink","doc-biblioref","doc-glossref","doc-noteref"],namingMethods:["subtreeText"]},default:{contentTypes:["phrasing","flow"],allowedRoles:!0}}},abbr:{contentTypes:["phrasing","flow"],allowedRoles:!0},addres:{contentTypes:["flow"],allowedRoles:!0},area:{contentTypes:["phrasing","flow"],allowedRoles:!1,namingMethods:["altText"]},article:{contentTypes:["sectioning","flow"],allowedRoles:["feed","presentation","none","document","application","main","region"],shadowRoot:!0},aside:{contentTypes:["sectioning","flow"],allowedRoles:["feed","note","presentation","none","region","search","doc-dedication","doc-example","doc-footnote","doc-pullquote","doc-tip"]},audio:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"]},b:{contentTypes:["phrasing","flow"],allowedRoles:!1},base:{allowedRoles:!1,noAriaAttrs:!0},bdi:{contentTypes:["phrasing","flow"],allowedRoles:!0},bdo:{contentTypes:["phrasing","flow"],allowedRoles:!0},blockquote:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},body:{allowedRoles:!1,shadowRoot:!0},br:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"],namingMethods:["titleText","singleSpace"]},button:{contentTypes:["interactive","phrasing","flow"],allowedRoles:["checkbox","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"],namingMethods:["subtreeText"]},canvas:{allowedRoles:!0,contentTypes:["embedded","phrasing","flow"]},caption:{allowedRoles:!1},cite:{contentTypes:["phrasing","flow"],allowedRoles:!0},code:{contentTypes:["phrasing","flow"],allowedRoles:!0},col:{allowedRoles:!1,noAriaAttrs:!0},colgroup:{allowedRoles:!1,noAriaAttrs:!0},data:{contentTypes:["phrasing","flow"],allowedRoles:!0},datalist:{contentTypes:["phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-multiselectable":"false"}},dd:{allowedRoles:!1},del:{contentTypes:["phrasing","flow"],allowedRoles:!0},dfn:{contentTypes:["phrasing","flow"],allowedRoles:!0},details:{contentTypes:["interactive","flow"],allowedRoles:!1},dialog:{contentTypes:["flow"],allowedRoles:["alertdialog"]},div:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},dl:{contentTypes:["flow"],allowedRoles:["group","list","presentation","none"]},dt:{allowedRoles:["listitem"]},em:{contentTypes:["phrasing","flow"],allowedRoles:!0},embed:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","presentation","none"]},fieldset:{contentTypes:["flow"],allowedRoles:["none","presentation","radiogroup"],namingMethods:["fieldsetLegendText"]},figcaption:{allowedRoles:["group","none","presentation"]},figure:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["figureText","titleText"]},footer:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},form:{contentTypes:["flow"],allowedRoles:["search","none","presentation"]},h1:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"1"}},h2:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"2"}},h3:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"3"}},h4:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"4"}},h5:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"5"}},h6:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"6"}},head:{allowedRoles:!1,noAriaAttrs:!0},header:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},hgroup:{contentTypes:["heading","flow"],allowedRoles:!0},hr:{contentTypes:["flow"],allowedRoles:["none","presentation","doc-pagebreak"],namingMethods:["titleText","singleSpace"]},html:{allowedRoles:!1,noAriaAttrs:!0},i:{contentTypes:["phrasing","flow"],allowedRoles:!0},iframe:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","none","presentation"]},img:{variant:{nonEmptyAlt:{matches:{attributes:{alt:"/.+/"}},allowedRoles:["button","checkbox","link","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","scrollbar","separator","slider","switch","tab","treeitem","doc-cover"]},usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{allowedRoles:["presentation","none"],contentTypes:["embedded","phrasing","flow"]}},namingMethods:["altText"]},input:{variant:{button:{matches:{properties:{type:"button"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"]},buttonType:{matches:{properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},checkboxPressed:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":"/.*/"}},allowedRoles:["button","menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},checkbox:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":null}},allowedRoles:["menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},noRoles:{matches:{properties:{type:["color","date","datetime-local","file","month","number","password","range","reset","submit","time","week"]}},allowedRoles:!1},hidden:{matches:{properties:{type:"hidden"}},contentTypes:["flow"],allowedRoles:!1,noAriaAttrs:!0},image:{matches:{properties:{type:"image"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","radio","switch"],namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},radio:{matches:{properties:{type:"radio"}},allowedRoles:["menuitemradio"],implicitAttrs:{"aria-checked":"false"}},textWithList:{matches:{properties:{type:"text"},attributes:{list:"/.*/"}},allowedRoles:!1},default:{contentTypes:["interactive","flow"],allowedRoles:["combobox","searchbox","spinbutton"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText","placeholderText"]}}},ins:{contentTypes:["phrasing","flow"],allowedRoles:!0},kbd:{contentTypes:["phrasing","flow"],allowedRoles:!0},label:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1},legend:{allowedRoles:!1},li:{allowedRoles:["menuitem","menuitemcheckbox","menuitemradio","option","none","presentation","radio","separator","tab","treeitem","doc-biblioentry","doc-endnote"],implicitAttrs:{"aria-setsize":"1","aria-posinset":"1"}},link:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},main:{contentTypes:["flow"],allowedRoles:!1,shadowRoot:!0},map:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},math:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!1},mark:{contentTypes:["phrasing","flow"],allowedRoles:!0},menu:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},meta:{variant:{itemprop:{matches:"[itemprop]",contentTypes:["phrasing","flow"]}},allowedRoles:!1,noAriaAttrs:!0},meter:{contentTypes:["phrasing","flow"],allowedRoles:!1},nav:{contentTypes:["sectioning","flow"],allowedRoles:["doc-index","doc-pagelist","doc-toc"],shadowRoot:!0},noscript:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},object:{variant:{usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application","document","img"]},ol:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},optgroup:{allowedRoles:!1},option:{allowedRoles:!1,implicitAttrs:{"aria-selected":"false"}},output:{contentTypes:["phrasing","flow"],allowedRoles:!0,namingMethods:["subtreeText"]},p:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},param:{allowedRoles:!1,noAriaAttrs:!0},picture:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},pre:{contentTypes:["flow"],allowedRoles:!0},progress:{contentTypes:["phrasing","flow"],allowedRoles:!0,implicitAttrs:{"aria-valuemax":"100","aria-valuemin":"0","aria-valuenow":"0"}},q:{contentTypes:["phrasing","flow"],allowedRoles:!0},rp:{allowedRoles:!0},rt:{allowedRoles:!0},ruby:{contentTypes:["phrasing","flow"],allowedRoles:!0},s:{contentTypes:["phrasing","flow"],allowedRoles:!0},samp:{contentTypes:["phrasing","flow"],allowedRoles:!0},script:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},section:{contentTypes:["sectioning","flow"],allowedRoles:["alert","alertdialog","application","banner","complementary","contentinfo","dialog","document","feed","log","main","marquee","navigation","none","note","presentation","search","status","tabpanel","doc-abstract","doc-acknowledgments","doc-afterword","doc-appendix","doc-bibliography","doc-chapter","doc-colophon","doc-conclusion","doc-credit","doc-credits","doc-dedication","doc-endnotes","doc-epigraph","doc-epilogue","doc-errata","doc-example","doc-foreword","doc-glossary","doc-index","doc-introduction","doc-notice","doc-pagelist","doc-part","doc-preface","doc-prologue","doc-pullquote","doc-qna","doc-toc"],shadowRoot:!0},select:{variant:{combobox:{matches:{attributes:{multiple:null,size:[null,"1"]}},allowedRoles:["menu"]},default:{allowedRoles:!1}},contentTypes:["interactive","phrasing","flow"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText"]},slot:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},small:{contentTypes:["phrasing","flow"],allowedRoles:!0},source:{allowedRoles:!1,noAriaAttrs:!0},span:{contentTypes:["phrasing","flow"],allowedRoles:!0,shadowRoot:!0},strong:{contentTypes:["phrasing","flow"],allowedRoles:!0},style:{allowedRoles:!1,noAriaAttrs:!0},svg:{contentTypes:["embedded","phrasing","flow"],allowedRoles:["application","document","img"],namingMethods:["svgTitleText"]},sub:{contentTypes:["phrasing","flow"],allowedRoles:!0},summary:{allowedRoles:!1,namingMethods:["subtreeText"]},sup:{contentTypes:["phrasing","flow"],allowedRoles:!0},table:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["tableCaptionText","tableSummaryText"]},tbody:{allowedRoles:!0},template:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},textarea:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuenow":"","aria-multiline":"true"},namingMethods:["labelText","placeholderText"]},tfoot:{allowedRoles:!0},thead:{allowedRoles:!0},time:{contentTypes:["phrasing","flow"],allowedRoles:!0},title:{allowedRoles:!1,noAriaAttrs:!0},td:{allowedRoles:!0},th:{allowedRoles:!0},tr:{allowedRoles:!0},track:{allowedRoles:!1,noAriaAttrs:!0},u:{contentTypes:["phrasing","flow"],allowedRoles:!0},ul:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},var:{contentTypes:["phrasing","flow"],allowedRoles:!0},video:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"]},wbr:{contentTypes:["phrasing","flow"],allowedRoles:!0}},en={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},tn={ariaAttrs:{"aria-activedescendant":{type:"idref",allowEmpty:!0},"aria-atomic":{type:"boolean",global:!0},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"]},"aria-busy":{type:"boolean",global:!0},"aria-checked":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-colcount":{type:"int",minValue:-1},"aria-colindex":{type:"int",minValue:1},"aria-colspan":{type:"int",minValue:1},"aria-controls":{type:"idrefs",allowEmpty:!0,global:!0},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],global:!0},"aria-describedby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-details":{type:"idref",allowEmpty:!0,global:!0},"aria-disabled":{type:"boolean",global:!0},"aria-dropeffect":{type:"nmtokens",values:["copy","execute","link","move","none","popup"],global:!0},"aria-errormessage":{type:"idref",allowEmpty:!0,global:!0},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"]},"aria-flowto":{type:"idrefs",allowEmpty:!0,global:!0},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],global:!0},"aria-hidden":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["grammar","false","spelling","true"],global:!0},"aria-keyshortcuts":{type:"string",allowEmpty:!0,global:!0},"aria-label":{type:"string",allowEmpty:!0,global:!0},"aria-labelledby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-level":{type:"int",minValue:1},"aria-live":{type:"nmtoken",values:["assertive","off","polite"],global:!0},"aria-modal":{type:"boolean"},"aria-multiline":{type:"boolean"},"aria-multiselectable":{type:"boolean"},"aria-orientation":{type:"nmtoken",values:["horizontal","undefined","vertical"]},"aria-owns":{type:"idrefs",allowEmpty:!0,global:!0},"aria-placeholder":{type:"string",allowEmpty:!0},"aria-posinset":{type:"int",minValue:1},"aria-pressed":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-readonly":{type:"boolean"},"aria-relevant":{type:"nmtokens",values:["additions","all","removals","text"],global:!0},"aria-required":{type:"boolean"},"aria-roledescription":{type:"string",allowEmpty:!0,global:!0},"aria-rowcount":{type:"int",minValue:-1},"aria-rowindex":{type:"int",minValue:1},"aria-rowspan":{type:"int",minValue:0},"aria-selected":{type:"nmtoken",values:["false","true","undefined"]},"aria-setsize":{type:"int",minValue:-1},"aria-sort":{type:"nmtoken",values:["ascending","descending","none","other"]},"aria-valuemax":{type:"decimal"},"aria-valuemin":{type:"decimal"},"aria-valuenow":{type:"decimal"},"aria-valuetext":{type:"string"}},ariaRoles:bc({},Qa,{"doc-abstract":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-acknowledgments":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-afterword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-appendix":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-backlink":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-biblioentry":{type:"listitem",requiredContext:["doc-bibliography"],allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"]},"doc-bibliography":{type:"landmark",requiredOwned:["doc-biblioentry"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-biblioref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-chapter":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-colophon":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-conclusion":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-cover":{type:"img",allowedAttrs:["aria-expanded"],superclassRole:["img"]},"doc-credit":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-credits":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-dedication":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-endnote":{type:"listitem",requiredContext:["doc-endnotes"],allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"]},"doc-endnotes":{type:"landmark",requiredOwned:["doc-endnote"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-epigraph":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-epilogue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-errata":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-example":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-footnote":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-foreword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossary":{type:"landmark",requiredOwned:["definition","term"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-index":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-introduction":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-noteref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-notice":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-pagebreak":{type:"separator",allowedAttrs:["aria-expanded","aria-orientation"],superclassRole:["separator"],childrenPresentational:!0},"doc-pagelist":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-part":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-preface":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-prologue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-pullquote":{type:"none",superclassRole:["none"]},"doc-qna":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-subtitle":{type:"sectionhead",allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"]},"doc-tip":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-toc":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]}},{"graphics-document":{type:"structure",superclassRole:["document"],accessibleNameRequired:!0},"graphics-object":{type:"structure",superclassRole:["group"],nameFromContent:!0},"graphics-symbol":{type:"structure",superclassRole:["img"],accessibleNameRequired:!0,childrenPresentational:!0}}),htmlElms:Za,cssColors:en},rn=bc({},tn);var an=rn;var nn=function(e,t,r,a){this.red=e,this.green=t,this.blue=r,this.alpha=a,this.toHexString=function(){var e=Math.round(this.red).toString(16),t=Math.round(this.green).toString(16),r=Math.round(this.blue).toString(16);return"#"+(15.5<this.red?e:"0"+e)+(15.5<this.green?t:"0"+t)+(15.5<this.blue?r:"0"+r)};var l=/^#[0-9a-f]{3,8}$/i,o=/^((?:rgb|hsl)a?)\s*\(([^\)]*)\)/i;this.parseString=function(e){if(an.cssColors[e]||"transparent"===e){var t=vc(an.cssColors[e]||[0,0,0],3),r=t[0],a=t[1],n=t[2];return this.red=r,this.green=a,this.blue=n,void(this.alpha="transparent"===e?0:1)}if(e.match(o))this.parseColorFnString(e);else{if(!e.match(l))throw new Error('Unable to parse color "'.concat(e,'"'));this.parseHexString(e)}},this.parseRgbString=function(e){if("transparent"===e)return this.red=0,this.green=0,this.blue=0,void(this.alpha=0);this.parseColorFnString(e)},this.parseHexString=function(e){var t,r,a,n,o,i;e.match(l)&&![6,8].includes(e.length)&&((e=e.replace("#","")).length<6&&(e=(r=(t=vc(e,4))[0])+r+(a=t[1])+a+(n=t[2])+n,(o=t[3])&&(e+=o+o)),i=e.match(/.{1,2}/g),this.red=parseInt(i[0],16),this.green=parseInt(i[1],16),this.blue=parseInt(i[2],16),i[3]?this.alpha=parseInt(i[3],16)/255:this.alpha=1)},this.parseColorFnString=function(e){var t,r=vc(e.match(o)||[],3),a=r[1],n=r[2];a&&n&&(t=n.split(/\s*[,\/\s]\s*/).map(function(e){return e.replace(",","").trim()}).filter(function(e){return""!==e}).map(function(e,t){return function(e,t,r){if(/%$/.test(t))return 3===r?parseFloat(t)/100:255*parseFloat(t)/100;if("h"===e[r]){if(/turn$/.test(t))return 360*parseFloat(t);if(/rad$/.test(t))return 57.3*parseFloat(t)}return parseFloat(t)}(a,e,t)}),"hsl"===a.substr(0,3)&&(t=function(e){var t=vc(e,4),r=t[0],a=t[1],n=t[2],o=t[3];a/=255,n/=255;var i=(1-Math.abs(2*n-1))*a,l=i*(1-Math.abs(r/60%2-1)),s=n-i/2,u=r<60?[i,l,0]:r<120?[l,i,0]:r<180?[0,i,l]:r<240?[0,l,i]:r<300?[l,0,i]:[i,0,l];return u.map(function(e){return Math.round(255*(e+s))}).concat(o)}(t)),this.red=t[0],this.green=t[1],this.blue=t[2],this.alpha="number"==typeof t[3]?t[3]:1)},this.getRelativeLuminance=function(){var e=this.red/255,t=this.green/255,r=this.blue/255;return.2126*(e<=.03928?e/12.92:Math.pow((.055+e)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((.055+t)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((.055+r)/1.055,2.4))}};var on=function(e){var t,r=new nn;return r.parseString(e.getPropertyValue("background-color")),0!==r.alpha&&(t=e.getPropertyValue("opacity"),r.alpha=r.alpha*t),r};var ln=function(e){var t=window.getComputedStyle(e);return Ja(e,t)||1===on(t).alpha},sn=/^\/?#[^/!]/;var un=function(e){return!!sn.test(e.getAttribute("href"))&&(void 0!==Ea.get("firstPageLink")?t=Ea.get("firstPageLink"):(t=vo(axe._tree,'a:not([href^="#"]):not([href^="/#"]):not([href^="javascript"])')[0],Ea.set("firstPageLink",t||null)),!t||e.compareDocumentPosition(t.actualNode)===e.DOCUMENT_POSITION_FOLLOWING);var t};var cn=function(e,t){for(var r=["fixed","sticky"],a=[],n=!1,o=0;o<e.length;++o){var i=e[o];i===t&&(n=!0);var l=window.getComputedStyle(i);n||-1===r.indexOf(l.position)?a.push(i):a=[]}return a};function dn(e){for(var t=_n(e).parent;t;){if(Sn(t.actualNode))return t.actualNode;t=t.parent}}var pn=function(e,t){var r,a,n,o,i,l,s,u,c,d,p,f,m,h,g=dn(t);do{var v=dn(e);if(v===g||v===t)return r=t,h=m=f=p=d=c=u=s=l=i=o=n=a=void 0,a=e.getBoundingClientRect(),n=a.top+.01,o=a.bottom-.01,i=a.left+.01,l=a.right-.01,s=r.getBoundingClientRect(),u=s.top,c=s.left,d=u-r.scrollTop,p=u-r.scrollTop+r.scrollHeight,f=c-r.scrollLeft,m=c-r.scrollLeft+r.scrollWidth,"inline"===(h=window.getComputedStyle(r)).getPropertyValue("display")||!(i<f&&i<s.left||n<d&&n<s.top||m<l&&l>s.right||p<o&&o>s.bottom)&&(!(l>s.right||o>s.bottom)||"scroll"===h.overflow||"auto"===h.overflow||"hidden"===h.overflow||r instanceof window.HTMLBodyElement||r instanceof window.HTMLHtmlElement);e=v}while(e);return!1};var fn=function a(n,o){var t=2<arguments.length&&void 0!==arguments[2]?arguments[2]:document,i=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0;if(999<i)throw new Error("Infinite loop detected");return Array.from(t.elementsFromPoint(n,o)||[]).filter(function(e){return ta(e)===t}).reduce(function(e,t){var r;return Qr(t)?(r=a(n,o,t.shadowRoot,i+1),(e=e.concat(r)).length&&pn(e[0],t)&&e.push(t)):e.push(t),e},[])};var mn=function(e,t){if(e.hasAttribute(t)){var r=e.nodeName.toUpperCase(),a=e;["A","AREA"].includes(r)&&!e.ownerSVGElement||((a=document.createElement("a")).href=e.getAttribute(t));var n,o,i,l=["https:","ftps:"].includes(a.protocol)?a.protocol.replace(/s:$/,":"):a.protocol,s=/^\//.test(a.pathname)?a.pathname:"/".concat(a.pathname),u=(o=(n=s).split("/").pop())&&-1!==o.indexOf(".")?{pathname:n.replace(o,""),filename:/index./.test(o)?"":o}:{pathname:n,filename:""},c=u.pathname,d=u.filename;return{protocol:l,hostname:a.hostname,port:(i=a.port,["443","80"].includes(i)?"":i),pathname:/\/$/.test(c)?c:"".concat(c,"/"),search:function(e){var t={};if(!e||!e.length)return t;var r=e.substring(1).split("&");if(!r||!r.length)return t;for(var a=0;a<r.length;a++){var n=vc(r[a].split("="),2),o=n[0],i=n[1],l=void 0===i?"":i;t[decodeURIComponent(o)]=decodeURIComponent(l)}return t}(a.search),hash:function(e){if(!e)return"";var t=e.match(/#!?\/?/g);return t&&"#"!==vc(t,1)[0]?e:""}(a.hash),filename:d}}};var hn,gn=function(e,t){var r=t.getBoundingClientRect(),a=r.top,n=r.left,o=a-t.scrollTop,i=a-t.scrollTop+t.scrollHeight,l=n-t.scrollLeft,s=n-t.scrollLeft+t.scrollWidth;if(e.left>s&&e.left>r.right||e.top>i&&e.top>r.bottom||e.right<l&&e.right<r.left||e.bottom<o&&e.bottom<r.top)return!1;var u=window.getComputedStyle(t);return!(e.left>r.right||e.top>r.bottom)||("scroll"===u.overflow||"auto"===u.overflow||t instanceof window.HTMLBodyElement||t instanceof window.HTMLHtmlElement)},vn=function(){fc(i,et);var o=mc(i);function i(e,t,r){var a,n;return yc(this,i),(a=o.call(this)).shadowId=r,a.children=[],a.actualNode=e,a.parent=t,a._isHidden=null,a._cache={},void 0===hn&&(hn=rr(e.ownerDocument)),a._isXHTML=hn,"input"===e.nodeName.toLowerCase()&&(n=e.getAttribute("type"),n=a._isXHTML?n:(n||"").toLowerCase(),Ao().includes(n)||(n="text"),a._type=n),Ea.get("nodeMap")&&Ea.get("nodeMap").set(e,hc(a)),a}return Dc(i,[{key:"attr",value:function(e){return"function"!=typeof this.actualNode.getAttribute?null:this.actualNode.getAttribute(e)}},{key:"hasAttr",value:function(e){return"function"==typeof this.actualNode.hasAttribute&&this.actualNode.hasAttribute(e)}},{key:"getComputedStylePropertyValue",value:function(e){var t="computedStyle_"+e;return this._cache.hasOwnProperty(t)||(this._cache.hasOwnProperty("computedStyle")||(this._cache.computedStyle=window.getComputedStyle(this.actualNode)),this._cache[t]=this._cache.computedStyle.getPropertyValue(e)),this._cache[t]}},{key:"props",get:function(){var e=this.actualNode,t=e.nodeType,r=e.nodeName,a=e.id,n=e.multiple,o=e.nodeValue,i=e.value;return{nodeType:t,nodeName:this._isXHTML?r:r.toLowerCase(),id:a,type:this._type,multiple:n,nodeValue:o,value:i}}},{key:"attrNames",get:function(){var e;return this._cache.hasOwnProperty("attrNames")||(e=this.actualNode.attributes instanceof window.NamedNodeMap?this.actualNode.attributes:this.actualNode.cloneNode(!1).attributes,this._cache.attrNames=Array.from(e).map(function(e){return e.name})),this._cache.attrNames}},{key:"isFocusable",get:function(){return this._cache.hasOwnProperty("isFocusable")||(this._cache.isFocusable=Ua(this.actualNode)),this._cache.isFocusable}},{key:"tabbableElements",get:function(){return this._cache.hasOwnProperty("tabbableElements")||(this._cache.tabbableElements=Ca(this)),this._cache.tabbableElements}},{key:"clientRects",get:function(){return this._cache.hasOwnProperty("clientRects")||(this._cache.clientRects=Array.from(this.actualNode.getClientRects()).filter(function(e){return 0<e.width})),this._cache.clientRects}},{key:"boundingClientRect",get:function(){return this._cache.hasOwnProperty("boundingClientRect")||(this._cache.boundingClientRect=this.actualNode.getBoundingClientRect()),this._cache.boundingClientRect}}]),i}();function bn(e,n,r){var a,t,o;function i(e,t,r){var a=bn(t,n,r);return a&&(e=e.concat(a)),e}if(e.documentElement&&(e=e.documentElement),o=e.nodeName.toLowerCase(),Qr(e))return a=new vn(e,r,n),n="a"+Math.random().toString().substring(2),t=Array.from(e.shadowRoot.childNodes),a.children=t.reduce(function(e,t){return i(e,t,a)},[]),[a];if("content"===o&&"function"==typeof e.getDistributedNodes)return(t=Array.from(e.getDistributedNodes())).reduce(function(e,t){return i(e,t,r)},[]);if("slot"!==o||"function"!=typeof e.assignedNodes)return 1===e.nodeType?(a=new vn(e,r,n),t=Array.from(e.childNodes),a.children=t.reduce(function(e,t){return i(e,t,a)},[]),[a]):3===e.nodeType?[new vn(e,r)]:void 0;(t=Array.from(e.assignedNodes())).length||(t=function(e){var t=[];for(e=e.firstChild;e;)t.push(e),e=e.nextSibling;return t}(e));window.getComputedStyle(e);return t.reduce(function(e,t){return i(e,t,r)},[])}var yn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:document.documentElement,t=1<arguments.length?arguments[1]:void 0;return Ea.set("nodeMap",new WeakMap),bn(e,t,null)};var Dn=function(e){return e?e.trim().split("-")[0].toLowerCase():""};var wn=function(e){var r={};return r.none=e.none.concat(e.all),r.any=e.any,Object.keys(r).map(function(e){if(r[e].length){var t=axe._audit.data.failureSummaries[e];return t&&"function"==typeof t.failureMessage?t.failureMessage(r[e].map(function(e){return e.message||""})):void 0}}).filter(function(e){return void 0!==e}).join("\n\n")};var xn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:window,t=e.screen,r=void 0===t?{}:t,a=e.navigator,n=void 0===a?{}:a,o=e.location,i=void 0===o?{}:o,l=e.innerHeight,s=e.innerWidth,u=r.msOrientation||r.orientation||r.mozOrientation||{};return{testEngine:{name:"axe-core",version:axe.version},testRunner:{name:axe._audit.brand},testEnvironment:{userAgent:n.userAgent,windowWidth:s,windowHeight:l,orientationAngle:u.angle,orientationType:u.type},timestamp:(new Date).toISOString(),url:i.href}};var En=function(){return"function"==typeof axe._audit.data.incompleteFallbackMessage?axe._audit.data.incompleteFallbackMessage():axe._audit.data.incompleteFallbackMessage};var An=Xe.resultGroups;var Cn=function(e,a){var t=axe.utils.aggregateResult(e);return An.forEach(function(e){a.resultTypes&&!a.resultTypes.includes(e)&&(t[e]||[]).forEach(function(e){Array.isArray(e.nodes)&&0<e.nodes.length&&(e.nodes=[e.nodes[0]])}),t[e]=(t[e]||[]).map(function(t){return t=Object.assign({},t),Array.isArray(t.nodes)&&0<t.nodes.length&&(t.nodes=t.nodes.map(function(e){var t,r;return"object"===cc(e.node)&&(e.html=e.node.source,a.elementRef&&!e.node.fromFrame&&(e.element=e.node.element),!1===a.selectors&&!e.node.fromFrame||(e.target=e.node.selector),a.ancestry&&(e.ancestry=e.node.ancestry),a.xpath&&(e.xpath=e.node.xpath)),delete e.result,delete e.node,t=e,r=a,["any","all","none"].forEach(function(e){Array.isArray(t[e])&&t[e].filter(function(e){return Array.isArray(e.relatedNodes)}).forEach(function(e){e.relatedNodes=e.relatedNodes.map(function(e){var t={html:e.source};return r.elementRef&&!e.fromFrame&&(t.element=e.element),!1===r.selectors&&!e.fromFrame||(t.target=e.selector),r.ancestry&&(t.ancestry=e.ancestry),r.xpath&&(t.xpath=e.xpath),t})})}),e})),An.forEach(function(e){return delete t[e]}),delete t.pageLevel,delete t.result,t})}),t};axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.helpers={failureSummary:wn,getEnvironmentData:xn,incompleteFallbackMessage:En,processAggregate:Cn};var Fn=/\$\{\s?data\s?\}/g;function kn(e,t){if("string"==typeof t)return e.replace(Fn,t);for(var r in t){var a,n;t.hasOwnProperty(r)&&(a=new RegExp("\\${\\s?data\\."+r+"\\s?}","g"),n=void 0===t[r]?"":String(t[r]),e=e.replace(a,n))}return e}var Rn=function e(t,r){if(t){if(Array.isArray(r))return r.values=r.join(", "),"string"!=typeof t.singular||"string"!=typeof t.plural?kn(t,r):kn(1===r.length?t.singular:t.plural,r);if("string"==typeof t)return kn(t,r);if("string"==typeof r)return kn(t[r],r);var a=t.default||En();return r&&r.messageKey&&t[r.messageKey]&&(a=t[r.messageKey]),e(a,r)}};var Tn=function(e,t,r){var a=axe._audit.data.checks[e];if(!a)throw new Error("Cannot get message for unknown check: ".concat(e,"."));if(!a.messages[t])throw new Error('Check "'.concat(e,'"" does not have a "').concat(t,'" message.'));return Rn(a.messages[t],r)};var Nn=function(e,t,r){var a=((r.rules&&r.rules[t]||{}).checks||{})[e.id],n=(r.checks||{})[e.id],o=e.enabled,i=e.options;return n&&(n.hasOwnProperty("enabled")&&(o=n.enabled),n.hasOwnProperty("options")&&(i=n.options)),a&&(a.hasOwnProperty("enabled")&&(o=a.enabled),a.hasOwnProperty("options")&&(i=a.options)),{enabled:o,options:i,absolutePaths:r.absolutePaths}};var _n=function(e,t){var r=t||e;return Ea.get("nodeMap")?Ea.get("nodeMap").get(r):null};var On=function(t){var e=axe._audit.rules.find(function(e){return e.id===t});if(!e)throw new Error("Cannot find rule by id: ".concat(t));return e};var Sn=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,r=e.scrollWidth>e.clientWidth+t,a=e.scrollHeight>e.clientHeight+t;if(r||a){var n=window.getComputedStyle(e),o=n.getPropertyValue("overflow-x"),i=n.getPropertyValue("overflow-y");return r&&("visible"!==o&&"hidden"!==o)||a&&("visible"!==i&&"hidden"!==i)?{elm:e,top:e.scrollTop,left:e.scrollLeft}:void 0}};var Pn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:window,t=e.document.documentElement;return[void 0!==e.pageXOffset?{elm:e,top:e.pageYOffset,left:e.pageXOffset}:{elm:t,top:t.scrollTop,left:t.scrollLeft}].concat(function a(e){return Array.from(e.children||e.childNodes||[]).reduce(function(e,t){var r=Sn(t);return r&&e.push(r),e.concat(a(t))},[])}(document.body))};function In(){return wr(an)}var Bn,Ln=function(d){if(!d)throw new Error("axe.utils.getStyleSheetFactory should be invoked with an argument");return function(e){var t,r=e.data,a=e.isCrossOrigin,n=void 0!==a&&a,o=e.shadowId,i=e.root,l=e.priority,s=e.isLink,u=void 0!==s&&s,c=d.createElement("style");return u?(t=d.createTextNode('@import "'.concat(r.href,'"')),c.appendChild(t)):c.appendChild(d.createTextNode(r)),d.head.appendChild(c),{sheet:c.sheet,isCrossOrigin:n,shadowId:o,root:i,priority:l}}};var qn=function(e){if(Bn&&Bn.parentNode)return void 0===Bn.styleSheet?Bn.appendChild(document.createTextNode(e)):Bn.styleSheet.cssText+=e,Bn;if(e){var t=document.head||document.getElementsByTagName("head")[0];return(Bn=document.createElement("style")).type="text/css",void 0===Bn.styleSheet?Bn.appendChild(document.createTextNode(e)):Bn.styleSheet.cssText=e,t.appendChild(Bn),Bn}};var Mn=function e(t,r){var a=_n(t);if(9===t.nodeType)return!1;if(11===t.nodeType&&(t=t.host),a&&null!==a._isHidden)return a._isHidden;var n=window.getComputedStyle(t,null);if(!n||!t.parentNode||"none"===n.getPropertyValue("display")||!r&&"hidden"===n.getPropertyValue("visibility")||"true"===t.getAttribute("aria-hidden"))return!0;var o=e(t.assignedSlot?t.assignedSlot:t.parentNode,!0);return a&&(a._isHidden=o),o},jn=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"];var Un=function(e){return"http://www.w3.org/2000/svg"!==e.namespaceURI&&jn.includes(e.nodeName.toLowerCase())};function Vn(e){return e.sort(function(e,t){return Yr(e,t)?1:-1})[0]}var Hn=function(t,e){var r=e.include&&Vn(e.include.filter(function(e){return Yr(e,t)})),a=e.exclude&&Vn(e.exclude.filter(function(e){return Yr(e,t)}));return!!(!a&&r||a&&Yr(a,r))},zn=r(He());axe._memoizedFns=[];var $n=function(e){var t=zn.default(e);return axe._memoizedFns.push(t),t};var Wn=function(e,n,o,i){var t=4<arguments.length&&void 0!==arguments[4]&&arguments[4],r=Array.from(e.cssRules);if(!r)return Promise.resolve();var a=r.filter(function(e){return 3===e.type});if(!a.length)return Promise.resolve({isCrossOrigin:t,priority:o,root:n.rootNode,shadowId:n.shadowId,sheet:e});var l=a.filter(function(e){return e.href}).map(function(e){return e.href}).filter(function(e){return!i.includes(e)}).map(function(e,t){var r=[].concat(gc(o),[t]),a=/^https?:\/\/|^\/\//i.test(e);return Xn(e,n,r,i,a)}),s=r.filter(function(e){return 3!==e.type});return s.length&&l.push(Promise.resolve(n.convertDataToStylesheet({data:s.map(function(e){return e.cssText}).join(),isCrossOrigin:t,priority:o,root:n.rootNode,shadowId:n.shadowId}))),Promise.all(l)};var Gn=function(e,t,r,a){var n=4<arguments.length&&void 0!==arguments[4]&&arguments[4];return function(e){try{return!e.cssRules&&e.href?!1:!0}catch(e){return!1}}(e)?Wn(e,t,r,a,n):Xn(e.href,t,r,a,!0)};var Yn,Kn,Xn=function(e,r,a,n,o){return n.push(e),new Promise(function(t,r){var a=new XMLHttpRequest;a.open("GET",e),a.timeout=Xe.preload.timeout,a.addEventListener("error",r),a.addEventListener("timeout",r),a.addEventListener("loadend",function(e){return e.loaded&&a.responseText?t(a.responseText):void r(a.responseText)}),a.send()}).then(function(e){var t=r.convertDataToStylesheet({data:e,isCrossOrigin:o,priority:a,root:r.rootNode,shadowId:r.shadowId});return Gn(t.sheet,r,a,n,t.isCrossOrigin)})};function Jn(){if(window.performance&&window.performance)return window.performance.now()}var Qn,Zn,eo=(Yn=null,Kn=Jn(),{start:function(){this.mark("mark_axe_start")},end:function(){this.mark("mark_axe_end"),this.measure("axe","mark_axe_start","mark_axe_end"),this.logMeasures("axe")},auditStart:function(){this.mark("mark_audit_start")},auditEnd:function(){this.mark("mark_audit_end"),this.measure("audit_start_to_end","mark_audit_start","mark_audit_end"),this.logMeasures()},mark:function(e){window.performance&&void 0!==window.performance.mark&&window.performance.mark(e)},measure:function(e,t,r){window.performance&&void 0!==window.performance.measure&&window.performance.measure(e,t,r)},logMeasures:function(e){function t(e){Je("Measure "+e.name+" took "+e.duration+"ms")}if(window.performance&&void 0!==window.performance.getEntriesByType)for(var r=window.performance.getEntriesByName("mark_axe_start")[0],a=window.performance.getEntriesByType("measure").filter(function(e){return e.startTime>=r.startTime}),n=0;n<a.length;++n){var o=a[n];if(o.name===e)return void t(o);t(o)}},timeElapsed:function(){return Jn()-Kn},reset:function(){Yn=Yn||Jn(),Kn=Jn()}});function to(){if(document.elementsFromPoint)return document.elementsFromPoint;if(document.msElementsFromPoint)return document.msElementsFromPoint;var e,t=((e=document.createElement("x")).style.cssText="pointer-events:auto","auto"===e.style.pointerEvents),l=t?"pointer-events":"visibility",s=t?"none":"hidden",u=document.createElement("style");return u.innerHTML=t?"* { pointer-events: all }":"* { visibility: visible }",function(e,t){var r,a,n,o=[],i=[];for(document.head.appendChild(u);(r=document.elementFromPoint(e,t))&&-1===o.indexOf(r);)o.push(r),i.push({value:r.style.getPropertyValue(l),priority:r.style.getPropertyPriority(l)}),r.style.setProperty(l,s,"important");for(o.indexOf(document.documentElement)<o.length-1&&(o.splice(o.indexOf(document.documentElement),1),o.push(document.documentElement)),a=i.length;n=i[--a];)o[a].style.setProperty(l,n.value?n.value:"",n.priority);return document.head.removeChild(u),o}}function ro(e){return"function"==typeof e||"[object Function]"===Qn.call(e)}function ao(e){var t,r=(t=Number(e),isNaN(t)?0:0!==t&&isFinite(t)?(0<t?1:-1)*Math.floor(Math.abs(t)):t);return Math.min(Math.max(r,0),Zn)}"function"!=typeof Object.assign&&(Object.assign=function(e){if(null==e)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),r=1;r<arguments.length;r++){var a=arguments[r];if(null!=a)for(var n in a)a.hasOwnProperty(n)&&(t[n]=a[n])}return t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var t,r=Object(this),a=r.length>>>0,n=arguments[1],o=0;o<a;o++)if(t=r[o],e.call(n,t,o,r))return t}}),"function"==typeof window.addEventListener&&(document.elementsFromPoint=to()),Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e,t){var r=Object(this),a=parseInt(r.length,10)||0;if(0===a)return!1;var n,o,i=parseInt(t,10)||0;for(0<=i?n=i:(n=a+i)<0&&(n=0);n<a;){if(e===(o=r[n])||e!=e&&o!=o)return!0;n++}return!1}}),Array.prototype.some||Object.defineProperty(Array.prototype,"some",{value:function(e,t){if(null==this)throw new TypeError("Array.prototype.some called on null or undefined");if("function"!=typeof e)throw new TypeError;for(var r=Object(this),a=r.length>>>0,n=2<=arguments.length?t:void 0,o=0;o<a;o++)if(o in r&&e.call(n,r[o],o,r))return!0;return!1}}),Array.from||Object.defineProperty(Array,"from",{value:(Qn=Object.prototype.toString,Zn=Math.pow(2,53)-1,function(e,t,r){var a=Object(e);if(null==e)throw new TypeError("Array.from requires an array-like object - not null or undefined");var n,o=1<arguments.length?t:void 0;if(void 0!==o){if(!ro(o))throw new TypeError("Array.from: when provided, the second argument must be a function");2<arguments.length&&(n=r)}for(var i,l=ao(a.length),s=ro(this)?Object(new this(l)):new Array(l),u=0;u<l;)i=a[u],s[u]=o?void 0===n?o(i,u):o.call(n,i,u):i,u+=1;return s.length=l,s})}),String.prototype.includes||(String.prototype.includes=function(e,t){return"number"!=typeof t&&(t=0),!(t+e.length>this.length)&&-1!==this.indexOf(e,t)});var no=function(e,t){return e.concat(t).filter(function(e,t,r){return r.indexOf(e)===t})};function oo(e,t,r,a){var n={vNodes:e.slice(),anyLevel:t,thisLevel:r,parentShadowId:a};return n.vNodes.reverse(),n}var io=function(e,t,r){return function(e,t,r){for(var a=[],n=oo(Array.isArray(e)?e:[e],t,[],e[0].shadowId),o=[];n.vNodes.length;){for(var i=n.vNodes.pop(),l=[],s=[],u=n.anyLevel.slice().concat(n.thisLevel),c=!1,d=0;d<u.length;d++){var p=u[d];if((!p[0].id||i.shadowId===n.parentShadowId)&&Nr(i,p[0]))if(1===p.length)c||r&&!r(i)||(o.push(i),c=!0);else{var f=p.slice(1);if(!1===[" ",">"].includes(f[0].combinator))throw new Error("axe.utils.querySelectorAll does not support the combinator: "+p[1].combinator);">"===f[0].combinator?l.push(f):s.push(f)}p[0].id&&i.shadowId!==n.parentShadowId||!n.anyLevel.includes(p)||s.push(p)}for(i.children&&i.children.length&&(a.push(n),n=oo(i.children,s,l,i.shadowId));!n.vNodes.length&&a.length;)n=a.pop()}return o}(e=Array.isArray(e)?e:[e],Tr(t),r)};var lo=function(e){var t,r,a=e.treeRoot,n=void 0===a?axe._tree[0]:a,o=(t=[],r=io(n,"*",function(e){return!t.includes(e.shadowId)&&(t.push(e.shadowId),!0)}).map(function(e){return{shadowId:e.shadowId,rootNode:ea(e.actualNode)}}),no(r,[]));if(!o.length)return Promise.resolve();var u,c,i=document.implementation.createHTMLDocument("Dynamic document for loading cssom"),l=Ln(i);return u=l,c=[],o.forEach(function(e,t){var r=e.rootNode,a=e.shadowId,n=function(e,t,r){return function(e){var t=[];return e.filter(function(e){return!e.href||!t.includes(e.href)&&(t.push(e.href),!0)})}(11===e.nodeType&&t?function(o,i){return Array.from(o.children).filter(so).reduce(function(e,t){var r=t.nodeName.toUpperCase(),a="STYLE"===r?t.textContent:t,n=i({data:a,isLink:"LINK"===r,root:o});return e.push(n.sheet),e},[])}(e,r):function(e){return Array.from(e.styleSheets).filter(function(e){return uo(e.media.mediaText)})}(e))}(r,a,u);if(!n)return Promise.all(c);var o=t+1,i={rootNode:r,shadowId:a,convertDataToStylesheet:u,rootIndex:o},l=[],s=Promise.all(n.map(function(e,t){return Gn(e,i,[o,t],l)}));c.push(s)}),Promise.all(c).then(function r(e){return e.reduce(function(e,t){return Array.isArray(t)?e.concat(r(t)):e.concat(t)},[])})};function so(e){var t=e.nodeName.toUpperCase(),r=e.getAttribute("href"),a=e.getAttribute("rel"),n="LINK"===t&&r&&a&&e.rel.toUpperCase().includes("STYLESHEET");return"STYLE"===t||n&&uo(e.media)}function uo(e){return!e||!e.toUpperCase().includes("PRINT")}var co=function(e){var t=e.treeRoot,r=void 0===t?axe._tree[0]:t,a=io(r,"video, audio",function(e){var t=e.actualNode;return t.hasAttribute("src")?!!t.getAttribute("src"):!(Array.from(t.getElementsByTagName("source")).filter(function(e){return!!e.getAttribute("src")}).length<=0)});return Promise.all(a.map(function(e){var r,t=e.actualNode;return r=t,new Promise(function(t){0<r.readyState&&t(r),r.addEventListener("loadedmetadata",function e(){r.removeEventListener("loadedmetadata",e),t(r)})})}))};function po(e){return!e||void 0===e.preload||null===e.preload||("boolean"==typeof e.preload?e.preload:(t=e.preload,"object"===cc(t)&&Array.isArray(t.assets)));var t}function fo(e){var t=Xe.preload,r=t.assets,a=t.timeout,n={assets:r,timeout:a};if(!e.preload)return n;if("boolean"==typeof e.preload)return n;if(!e.preload.assets.every(function(e){return r.includes(e.toLowerCase())}))throw new Error("Requested assets, not supported. Supported assets are: ".concat(r.join(", "),"."));return n.assets=no(e.preload.assets.map(function(e){return e.toLowerCase()}),[]),e.preload.timeout&&"number"==typeof e.preload.timeout&&!isNaN(e.preload.timeout)&&(n.timeout=e.preload.timeout),n}var mo=function(i){var l={cssom:lo,media:co};return po(i)?new Promise(function(r,t){var e=fo(i),a=e.assets,n=e.timeout,o=setTimeout(function(){return t(new Error("Preload assets timed out."))},n);Promise.all(a.map(function(n){return l[n](i).then(function(e){return a=e,(r=n)in(t={})?Object.defineProperty(t,r,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[r]=a,t;var t,r,a})})).then(function(e){var t=e.reduce(function(e,t){return bc({},e,t)},{});clearTimeout(o),r(t)}).catch(function(e){clearTimeout(o),t(e)})}):Promise.resolve()};function ho(n,o){return function(e){var t=n[e.id]||{},r=t.messages||{},a=Object.assign({},t);delete a.messages,void 0===e.result?("object"!==cc(r.incomplete)||Array.isArray(e.data)||(a.message=function(t,r){function a(e){return e.incomplete&&e.incomplete.default?e.incomplete.default:En()}if(!t||!t.missingData)return t&&t.messageKey?r.incomplete[t.messageKey]:a(r);try{var e=r.incomplete[t.missingData[0].reason];if(!e)throw new Error;return e}catch(e){return"string"==typeof t.missingData?r.incomplete[t.missingData]:a(r)}}(e.data,r)),a.message||(a.message=r.incomplete)):a.message=e.result===o?r.pass:r.fail,"function"!=typeof a.message&&(a.message=Rn(a.message,e.data)),Xr(e,a)}}var go=function(e){var t=axe._audit.data.checks||{},r=axe._audit.data.rules||{},a=$r(axe._audit.rules,"id",e.id)||{};e.tags=wr(a.tags||[]);var n=ho(t,!0),o=ho(t,!1);e.nodes.forEach(function(e){e.any.forEach(n),e.all.forEach(n),e.none.forEach(o)}),Xr(e,wr(r[e.id]||{}))};var vo=function(e,t){return io(e,t)};function bo(t,e){var r,a=axe._audit&&axe._audit.tagExclude?axe._audit.tagExclude:[],n=e.hasOwnProperty("include")||e.hasOwnProperty("exclude")?(r=e.include||[],r=Array.isArray(r)?r:[r],n=e.exclude||[],(n=Array.isArray(n)?n:[n]).concat(a.filter(function(e){return-1===r.indexOf(e)}))):(r=Array.isArray(e)?e:[e],a.filter(function(e){return-1===r.indexOf(e)}));return!!(r.some(function(e){return-1!==t.tags.indexOf(e)})||0===r.length&&!1!==t.enabled)&&n.every(function(e){return-1===t.tags.indexOf(e)})}var yo=function(e,t,r){var a=r.runOnly||{},n=(r.rules||{})[e.id];return!(e.pageLevel&&!t.page)&&("rule"===a.type?-1!==a.values.indexOf(e.id):n&&"boolean"==typeof n.enabled?n.enabled:"tag"===a.type&&a.values?bo(e,a.values):bo(e,[]))};var Do=function t(n,o){if(!o)return n;var i=n.cloneNode(!1),e=i.outerHTML,r=er(i);return Ea.get(e)?i=Ea.get(e):r&&(i=document.createElement(i.nodeName),Array.from(r).forEach(function(e){var t,r,a;t=n,r=e.name,void 0!==(a=o)[r]&&(!0===a[r]||tr(t,a[r]))||i.setAttribute(e.name,e.value)}),Ea.set(e,i)),Array.from(n.childNodes).forEach(function(e){i.appendChild(t(e,o))}),i};var wo=function(e,t){var r,a=[];if(axe._selectCache)for(var n=0,o=axe._selectCache.length;n<o;n++){var i=axe._selectCache[n];if(i.selector===e)return i.result}function l(e){return Hn(e,s)}for(var s,u=(s=t).include.reduce(function(e,t){return e.length&&Yr(e[e.length-1],t)||e.push(t),e},[]),c=0;c<u.length;c++)r=u[c],a=function(e,t){var r;if(0===e.length)return t;e.length<t.length&&(r=e,e=t,t=r);for(var a=0,n=t.length;a<n;a++)e.includes(t[a])||e.push(t[a]);return e}(a,io(r,e,l));return axe._selectCache&&axe._selectCache.push({selector:e,result:a}),a};var xo=function(e){e.forEach(function(e){return function(e,t,r){if(e===window)return e.scroll(r,t);e.scrollTop=t,e.scrollLeft=r}(e.elm,e.top,e.left)})};var Eo=function(e){return(e||"").trim().replace(/\s{2,}/g," ").split(" ")};var Ao=function(){return["hidden","text","search","tel","url","email","password","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]},Co=[,[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,,,,,1,1,1,1,,,1,1,1,,1,,1,,1,1],[1,1,1,,1,1,,1,1,1,,1,,,1,1,1,,,1,1,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,,,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1],[,1,,,,,,1,,1,,,,,1,,1,,,,1,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,,,1,,,,,1,1,1,,1,,1,,1,,,,,,1],[1,,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,,1,,1,,,,,1,,1,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,,1,1,1,,1,,1,1,1,,,1,1,1,1,1,1,1,1],[,,1,,,1,,1,,,,1,1,1,,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1,1,1,1,1,,,1,1,1],[1,1,1,1,1,,,1,,,1,,,1,1,1,,,,,1,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1],[,1,,1,1,1,,1,1,,1,,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,,,1,1,1,,,1,1,,,,,,1,1],[1,1,1,,,,,1,,,,1,1,,1,,,,,,1,,,,,1],[,1,,,1,,,1,,,,,,1],[,1,,1,,,,1,,,,1],[1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,,1,,,1,1,1,1],[,1,1,1,1,1,,,1,,,1,,1,1,,1,,1,,,,,1,,1],[,1,,,,1,,,1,1,,1,,1,1,1,1,,1,1,,,1,,,1],[,1,1,,,,,,1,,,,1,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,,1,1,1,,,1,1,1,1,1,1,,1,,,,,1,1,,1,,1],[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,1,1],[,1,1,1,,,,1,1,1,,1,1,,,1,1,,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,,1,,,,,1,1,1,,,1,,1,,,1,1],[,,,,1,,,,,,,,,,,,,,,,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,,1,1,1,,1,1,,,,1,1,1,1,1,,,1,1,1,,,,,1],[1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,1,,,,,,,1],[,1,1,,1,1,,1,,,,,,,,,,,,,1],,[1,1,1,,,,,,,,,,,,,1],[,,,,,,,,1,,,1,,,1,1,,,,,1]],[,[1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,,1],[,,,1,,,,,,,,,,,,,,,1],[,1,,,1,1,,1,,1,1,,,,1,1,,,1,1,,,,1],[1,,,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,,,,1],,[,1,1,1,1,1,,1,1,1,,1,1,,1,1,,,1,1,1,1,,1,1,,1],[,1,,,1,,,1,,1,,,1,1,1,1,,,1,1,,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,,,1,1,1,1,1,1,1,,,1,,,1,,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,,,,1],[,,,,,,,1,,,,1,,1,1],[,1,1,1,1,1,1,1,,,,1,1,1,1,1,,,1,1,,1,1,1,1,1],[,1,,,1,1,,1,,1,1,1,,,1,1,,,1,,1,1,1,1,,1],[,1,1,1,,1,1,,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1],[,,,,,,,,,,,,,,,,1],,[,1,1,1,1,1,,1,1,1,,,1,,1,1,,1,1,1,1,1,,1,,1],[,,1,,,1,,,1,1,,,1,,1,1,,1],[,1,1,,1,,,,1,1,,1,,1,1,1,1,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,1,,1,,1,1],,[,1,1,,1,,,1,,1,,,,1,1,1,,,,,,1,,,,1],[1,1,,,1,1,,1,,,,,1,,1]],[,[,1],[,,,1,,,,1,,,,1,,,,1,,,1,,,1],[,,,,,,,,,,,,,,,,,,1,1,,,,,,1],,[1,,,,,1],[,1,,,,1,,,,1],[,1,,,,,,,,,,,1,,,1,,,,,,,,,1,1],[,,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,1,,1],[,1],[,1,,1,,1,,1,,1,,1,1,1,,1,1,,1,,,,,,,1],[1,,,,,1,,,1,1,,1,,1,,1,1,,,,,1,,,1],[,1,1,,,1,,1,,1,,1,,1,1,1,1,,,1,,1,,1,1,1],[1,1,1,1,1,,1,,1,,,,1,1,1,1,,1,1,,,1,1,1,1],[1,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],,[,1,,,,,,1,1,1,,1,,,,1,,,1,1,1,,,1],[1,,,,,1,,1,1,1,,1,1,1,1,1,,1,,1,,1,,,1,1],[1,,1,1,,,,,1,,,,,,1,1,,,1,1,1,1,,,1,,1],[1,,,,,,,,,,,,,,,,,1],[,,,,,1,,,1,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,,,1],[,1,,,,1]],[,[1,1,1,,1,,1,1,1,1,1,1,1,1,1,,1,,1,,1,1,,,1,1,1],[,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],,[,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1],,[1,1,,,,1,1,,,,,,1,,,,1,,1,,1,1,,1],[1],[,,,,,,,,,,,1,,,,,,,,,,,1],[,1,,,,,,,1,1,,,1,,1,,,,1,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,,1],[,,1,,,,,1,,1],[1,,,,1,,,,,1,,,,1,1,,,,1,1,,,,,1],[,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[1,,,1,1,,,,,,,1,,1,,1,1,1,1,1,1],[,,,,,1,,,,,,,1,,,,,,,1],,[,,1,1,1,1,1,,1,1,1,,,1,1,,,1,1,,1,1,1,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,,,,1],,[1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,,,1,1,1,1,,,,,,1,,1,,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,,,,1,,1,,,1,1,1,1,1],[,,,,,,,,,,,1,,,,,,,,,1,,,,1],[,1,1,,1,1,,1,,,,1,1,,1,1,,,1,,1,1,,1],[,1,,1,,1,,,1,,,1,1,,1,1,,,1,1,1],[,1,1,1,1,1,,1,1,,,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,,,,,,,,,1,,1,,1,1,,,,1,,,1],[,1,,,1,1,,,,,,,,,1,1,1,,,,,1],[1,,,1,1,,,,1,1,1,1,1,,,1,,,1,,,1,,1,,1],[,1,1,,1,1,,1,1,,,,1,1,1,,,1,1,,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,,,,1,,,,,,,,,1],[,1,,,,,,,,1,,,,,1,,,,1,,,1],[,1,1,1,1,,,1,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1],[,,,,,1,,1,,,,,1,1,1,1,1,,,1,,,,1],[,1,,,,,,,,1,,,,,,,,,,,,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,1,,,,1,,1,1,1,1,1,,1,1,,,,,,1],[,1,1,1,1,1,1,1,,1,1,,,1,1,,,,1,,1,1,,1,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,1,1,,1,,,1,1,1,1,,,1,,,,,,,1],[,1,,,,,,,,1,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1],[,1,1,,,,,,,,,,,,1,1,,,,,,1],[,1,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,,,,,1],[1,1,,,1,,,1,1,1,,,,1],,[,,,,,,,,,,,,,1,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,1,,,,,,,1],[1,1,1,,1,,1,1,1,1,1,1,1,1,,1,,,1,,1,,,1,1],[,,,,,,,,,1],[,1,,,,1,,,,,,1,,,1,,,,,1],[,1,1,,1,1,,,,,,,,,,,,,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,1,1,1,,,,1,1,,,,1,,1],[1,1,1,1,1,1,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,,1,1],[,,,,,,,,,,,,,,,1,,,,1],,[1,1,,1,,1,,,,,,1,,1,,1,1,,1,,1,1,,1,1,,1],[,,1,,,,,,1,,,,1,,1,,,,,1],[1,,,,,,,,,1,,,,,,1,,,,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,,1,,,,,,1,,,1,,,,,,,,1],[,1,,1,,,,,,,,,,,,1],,[1,1,,,,,,,,,,,,,,,,,,,,,,1,1],[1]],[,[1,,,,,,,,,1,,,,,1,,1,,1],[,1,1,,1,1,,1,1,1,,,1,1,1,,,,1,,,1,,,,1],[,1,,,,,,,1,,,,1,,,,,,1],[1,1,1,1,1,1,,,,1,,,,,,,,,1,1,1,1],[1],[,1,1,,,1,1,,,,,1,,1,,,,,,,,1,,,,1],[1,,1,,,1,,1,,,,,1,1,1,1,,,,1,,,,1],[,,1,,,,,,,1,,,,,,,1,,,,,,,1],[1,,,,,,,,,,,,,,1,,,,1],[,,,1,,1,,,,,1,,,,1,1,,,,1],[1,,,,,1,,,,1,,1,1,,,1,1,,1,1,1,,1,1,1,,1],[,1,1,,,,,1,,1,,1,1,1,,1,1,,,1,,1,1,1],[,1,,,,1,,,,1,,,1,,1,1,,,1,1,,,,,,1],[1,,1,1,,1,,1,1,,1,,1,1,1,1,1,,,1,1,,,,,,1],[1,,,,,,,,,,,,,,,,,,1,,,1,,1],[,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,,1,,1],[,1,,,,1,,,1,1,,1,,,1,1,,,1,,,1,,,1,1],[1,1,,1,1,1,,1,1,1,,1,,1,1,1,,,1,,1,1],[1,,1,1,1,1,,,,1,,1,1,1,,1,,,1,1,1,,1,1,1,1,1],[1,,,,,,,,,,,,,1],[,,1,,,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,,,1,,1,,1,,,,1],[,,,1,,,,,,,,,1],[,1,,,,,,,,,,,,,,1,,,,,,,,,1],[,,,,,,,,1,1,,,,,,,,,1,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,,,1,1,1],[,,,,,1,,,,1,1,1,,,1,1,,,1,,1,1,,1],[,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,1,,,,,,,,,,,,,1],[,,1,,,1,,1,1,1,,1,1,,1,,,,1,,1,1],,[,,1,,,1,,,,,,1,,,,1],[,,,,,,,,,1,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,,1,1,,1,,1,,,1,1,1,,,1],[,,,,,1,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,1,,1,1,,1,,,1],[,,,,,1,,,,,,,,,,,,,,1],[,1,1,1,1,,,,,1,,,1,,1,,,,1,1,,,,1,1],[,1,,,1,,,1,,1,1,,1,,,,,,,1],[,,1,,1,,,1,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,,,,,,,,,,1,,1,1],[,,,,,,,,,,,,1],,[,1,1,1,1,,,,1,1,,1,1,1,1,1,1,,1,1,1,1,,1,,1],[1,,,,1,,,,,,,,,,1],[1,,,,,,,,,1],,[,1,,,,1,,,,,,,,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,,1,,,,1,1,,,1,1,,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,1],[1,1,1,,,,,1,1,1,,1,1,1,1,,,1,1,,1,1,,,,,1],[,1,,,,,,,1,1,,,1,1,1,,1,,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,,,1,,,,1,,,1,,,,1,,,,,,,1,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1],[1,1,1,,1,,,1,1,1,1,,1,1,1,1,,,,1,,1,,1,,,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,,1,1,,,,,,,,,1],,[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,,1,,1,,,,1],[,1,,,1,1,,1,1,1,,,1,1,1,1,1,,1,1,1,,1,,,1],[1,,,1,,,,1,1,1,,,,,1,1,,,,1,,1],[1,1,,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,,1,,1,,,,,,,,1,,1],[,1,,,,1,,1,1,,,,1,1,,1,,,,1,1,1,,1],,[,1,,,,,,1,,,,,,,1],[,,,,,,,,1,,,,1,,1,,,,,,,,,,,,1]],[,[,1,1,,1,1,1,1,,1,1,1,,1,1,,1,1,,1,1,1,1,1,1,,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,,,1,,,,,,,,1,,,,,,1,,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,,1,,1,1,1,1,1,1,1,,1,1,,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1],[,1,1,,,,,1,1,1,,,1,,1,1,,,,1,,1,,,1,1],[,,,,,,,1,,,,1,1,1,1,1,,1,,,,,,,,1],[1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,,1,,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,1,1,,1,,1,1,1,,1,,1,1,,1,1,,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,,1,,,,,1,,1],[,1,1,1,,1,,1,,1,,,,1,,1,,,1,,,,,,1,1],[,1,,,1,1,,1,,1,,1,1,1,1,1,,1,1,,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,,1,,1,,1,,,,,,1,,1,,,,1,1]],[,[,1,,1,,,,,,,,,,,,,,,1,,,,1],[,,,,,,,,,1,,1,1,1,,1,,,1,,1,1],[1,1,,,,,,,1,,,,,,,1,,,,,,1],[,1,,,,,,,,,,1,,,,,,,,,1,1],,[,,,,,,,,,,,,,,,1,,,,1,,1],[,,1,1,,1,,1,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,,,,,,,,1],[1,,1,1,,,,1,,,,,,,,,1,,,1,,,1,1],[,1,1,,1,1,,1,1,1,1,1,1,1,1,1,,,1,1,,1,1,,1],[,1,,,1,1,,,,,,1,,1,,1,,,1,,1,1],[1,1,1,1,,1,,1,,1,,1,1,,1,1,1,1,1,,1,1,1,1,1],[,1,1,,,1,,1,,1,1,1,,,1,1,1,,1,1,1,1,,1,1],[,,,,1,,,1,,,,,,,1,,,,1,1],[,1,,,,,,,,,,1,,1,,1,,,,,1,,,,,1],,[1,1,,1,,1,,1,1,,,,,,1,1,,,1,1,1,1,1,1,1,1,1],[1,1,,1,,,,,,1,,,,,,1,1,,,,1,1,,,1],[,1,1,,1,1,,,,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,,,1,,,,1,,,,1,1],[,,,,1],[,,,,,,,,,1,,,1],,[,,1,,1,,,,,,,,,1,,,,,,,,,,,,1],[,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,,,1],[,1,,1,,,,,,1,,,,,1,1,,,,,1,1],[,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,,,1,,1,1,1],[,1,,,,1,,,,,,,1],[,1,,,1,,,1,,1,,1,1,,1,,,,,1,,1,,,,1,1],[,1,,,1,,,1,1,1,,1,1,1,1,1,,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,1,1,,,,1,1,,,,,,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,,1,1,,1,1,1,1,1],[,1,,,,1,,,,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,1,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,,1,1,1,,1,1,1,,,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,,,,,,,1,1,,,,,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,1,,1,1,1,1],,[,1,1,,,,,1,,1,,,,1,1,1,,,1,,,,,1],[,,,,,,,,,,,,,1],[,,,,,1,,,,,,,,1,1,,,,,1,,1,,,1,1],[,,,,,,,,,,,,,,1]],[,[,1],,,,,,,,,,,,,,,,,,,,[1,1,1,1,1,,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,1,1,1,1],[,1,,1,,1,,,1,1,1,,1,1,1,1,1,,,1,,,,1,,1,1],[,1,,1,,1,,,1,,,,,1,,,,,,1,1],[,1,,1,,,,,1,,,,1,,1,1,1,1,1,1,1,1,,1],[,1,,,,,,,,,,,,,,,1]],[,[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,,,,,,,,,1,1,,,,1],[,,,,,,1],[,,1],[,1,1,,,1,,1,,1,1,,1,1,1,,,,1,1,1,,,,,1],,[,1,,,,1,,,,,,1,,,1,,,,1,1,,1],[,,,,,,,1,,,,,,,,,1],[,1,,,,1,1,,,,,,1,1,1,,,,1,,1,1],[,,,,,,,1,,1,,,,,,,,,,1],[,1,1,,,,,,1,1,,,,1,,,,,,,1,,,1],,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,,1,,,1,,,,,1,,1,,1,,1,,,,,1],[1,1,1,1,1,1,1,1,,,,,1,1,,1,1,,1,,,1,,1],[,,,,,,,,,,,,,,1,,,,,,1],,[,,,,,,,,,1,,,,,,1,,,,,1],[,,1,,,,,,,1,,,1,1],[,,,1,,,,,1,,,,,1,,,,,,1,,,,1],[1,,1,1,,1,1,1,1,1,,1,,,,1,1,1,,,1,1,,,,1,1],,[1,1,,,,,,,,,,1,,1,,1,,,1],[,,,,1,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,1],[,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,,1,,,1,,,,,,,,1,,,,,,1,,,,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,1,,,,1,1,1,1,1,1,,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,1,,1,1,,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,,1,,1,,1,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,,,,,,1,,1,,,,,1,1,,,,,1],[1,,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,,1,,,,1,1,1,1,1,,,1,1,,1,,1],[,1,1,1,1,,,,,1,,1,1,1,1,1,,,1,1,,,,1,1,1],[,1,1,1,1,1,,1,,,,,1,,1,,1,,,1,,,1,1,,1]],[,[1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,,,,,1,,,,,1,1,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,,,,1,,1,1,,1,1,1,1,1,,,1,,1,,1],[1,1,1,,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,,1,,,,,,,,,,1,1,1,1,1,1,1,,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,1,1,,,,,,1,1,1,1,1,,,,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,,1,1,1],[,1,1,1,,1,,1,1,1,1,,,1,1,1,,1,1,1,1,1,,,1,1],[1,1,,,,1,,,1,1,1,,1,,1,,1,,1,1,1,1,1,,1,,1],[,1,,,,,,,1,,1,,1,1,1,1,,,,,,,,,1]],[,[,,,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,1,,,1,,,,,,1,,,1,,,,1],,[,1,,,,1,,1,,1,1,,1,1,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],[1,1,1,,,1,,,,,,,,,1,1,,,,,,,,,,1],[,1,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1,,,1],[,,,,,,,,,1],[1,1,,,,,,1,1,1,,1,1,,,,1,1,,1,,1,1,1,,1],[,1,1,1,,1,1,,,1,,1,1,1,1,,,,,,,1,,1],[,1,1,1,1,,,1,,1,,,,1,1,1,1,,1,1,,1],[,1,,,1,1,,1,,,,1,,1,1,,1,,1,,,1,,,1,,1],[,,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,,,,,1],,[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1],[,1,,,,,,,1,1,,1,,,,,1,,,1,,1],[,1,,,,1,,,1,,,,,,,,1,,1,,,1],[,,,,,,,,,,,,,1,1,,,,1,,,1],[,,,,,1,,,1,,,,1],[,1],,[,1],[1,,,,,,,,,,,,,,1,,,,,1]],[,[,1,,,,1,1,1,1,1,1,,1,1,1,1,1,,1,1,,1,1,,,1],[,,1,,,,,,,,,1],,,[1,,,1,1,,,,,,,,1,1,,1,1,,1],,[,,,,,,,,,,,,,,,,,,1,,1],,[1,,,1,1,,1,1,,,,,1,,1,,,,,1,1,,1],,[,1,,,,,,,,1,1,1,1,1,,1,1,,,,1,1],[,,,,,,,,,,,,,,,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,,1,1,1,1,1,1],[,,,,,,,,,,,1,,1,,,1],[1,,,,,,,,,,,,,,,,,,1,,1],,,[,1,,,,,,,,,,,,,,1,,,,1,1],[,,,,,,,,,1,,,1,,,,,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,1,1,,,,,,1],,[,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,1,1,,1,1,1,1,1,1,,,1,1,1,1,1,,1,1],[,1,,,,,,,,1],[,,,,1,,,1,,,1,1,,,,,,,,,,1,,,,1],[,1,,1,1,,,1,1,1,,,,1,1,1,1,,1,1,1,1,,1],[,,,,,,,1],[,1,1,,,,,1,,1,,,,,,1,,,,,,1,,1,,1],[,1,,,,,,1,,,,1,,,,,,,,,,1],[,,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1,1,1,1,,1],[,1,,,,,,,,1],[,1,1,,1,,,,,,,,1,,,,,,1,,,1,,1,,1],[,1,,1,,1,,1,1,1,,1,1,1,,1,,,1,1,,1,1,1,1,1],[,1,1,1,1,1,,,1,1,,,,1,1,1,,,,1,1,,,1,1],[,,1,1,1,1,,1,,1,,1,,1,1,1,1,,,,,1,,1,,1],[1,1,1,1,1,1,1,1,,1,,1,,1,1,1,,,1,1,,,,1,,1],[,,,1],,[,1,1,,1,,,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1],[,1,,,,,,1,,1,,1,,,,,,,1,1,,1,1],[,,,,,,1,,1,1,,1,,1,,,,,,,,,,1],[,1,1,,1,,,,1,,,,1,1,1,,,,1,,1,1,1,,1,1],,[,1,1,,,,,,,,,,,,,1,,,1,,,,,1],[,1,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,1,,,,1,,,,,1,,,,,,,1]],[,[,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[,1,1,1,1,1,,1,,1,1,,,1,1,1,1,,1,,,,,1,1,1],[,,1,1,,1,,1,1,,,,1,1,1,1,,,1,,1,1,1,1,,1],[,1,,1,,,,,,,,1,,1,,1,,,,,,,,,,1],[,,1,,1,,,1,,,,,1,1,,,1,,1,1,1,1],[,1],[,1,1,,1,,1,1,,1,,,1,1,1,,,,1,,,1,,1],[1,1,,1,1,1,,,,,,,,,,,,,1,,1,1,1],[,1,1,,,,,,,1,,,1,,1,,1,,1,1,,,1,,,1],[,,1,,,,,,,,,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,,1,,,,,1,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,,1,,1,1,1,,,1,1,1,1,,,,1,1],[,,,1,1,,,1,,1,,1,,1,1,1,1,,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,,1,,1,,,,1,1,,,1,1,,1,1,,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1,,1,1,,,1],[,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,,1,,,1,,,1,,1,1,1,1,1,,1,,1,1],[,,,,,1,,,,1,,,,,1,1,,,,1],[,1,,1,1,1,,1,,,1,1,1,,,1,,,1,,1,,,1],[,,1,,,,,,,,,1,,1,,,,,1,,1],[,1,1,,,,,,,,1,1,1,,,,,,,,1,,,,,1],[,,,,,,,,1,,,,,1,,,1]],[,[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,,1,1,1,1,1,1,1,1,,,,,,,,,1,1],[,,,,,,,,1,,,,1,,1,,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,1,,1,,1,,,,1,1,,1,,1,,,,1,1,1,1,1,,,1],,[,1,,,,,,,,1,,,1,1,,,1,,1,1,,1,,1],[,1,,,1,,,,,,,,1,,,,,,,1],[1,1,,,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1],,[,1,,,,,,1,,1,,1,1,1,1,1,,,1,,1,1,,,,1],[,1,1,,,1,,1,,1,,,1,1,1,1,,,1,,,1,,,,1],[,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1],[,1,,,1,1,,1,1,,,1,1,,1,1,,1,,1,,1],[1,,1,,,,,1,,1,,1,1,1,1,,,,,1,1,,,,1,1],[,1,1,,,,,1,1,,,1,,1,1,1,1,,,,,,,,,,1],,[,1,1,,,1,,,,1,,1,1,1,1,1,,,,1,,,,1,,1],[,,,1,1,,,1,,,,,1,,1,1,1,,1,1,,,,,,1],[,1,,,,,,,,,,,1,,,,1,,,,,,,1,,1],[,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,1,,,,,1,,1,,,1,1,,1,1,,1],[,1,,,,,,1,,,,,1,1,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1,,,1,,,,,1],[,,,,,,,1,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,,1,,,,,,,1,,,,,,,,1,,,1],[,1,,,,,,,1],[,,,,,,,,,,1],[,1,,,,,,1,1,,,,,,1],,[,1,1,,,,,,1,,,,,1,1,,,,1],[1,,1,,1,,,,,1,,,,,1,,,,,,,,,1,1],[,1,1,,,,,,,,,1,1,1,1,,,,1,,,,,1,,,1],,[,1,1,,1,,,1,1,,,1,,,1,1,1,,1,,1,1,1,,,,1],[,,,,,1,,,,,1,,,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,,,1,,,,,1,,,,,1,,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,1],[,1,,,,,,1,,,,,,,1,1,1,,,1],[,1,,,,,,,,,,1,1,1,,,,,1,,,1],[,,,,,1,,1,,,,,1,1,1,,1,1,,1,1,1,,,1,1],[1,1,,,,,,,1,,,,,1,1,,,,,,,,,,,1],,[,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,,1,,,,,1,,,1,,,,1,,1],[,1,,,,,,,,,1]]];function Fo(e){e=Array.isArray(e)?e:Co;var a=[];return e.forEach(function(e,t){var r=String.fromCharCode(t+96).replace("`","");Array.isArray(e)?a=a.concat(Fo(e).map(function(e){return r+e})):a.push(r)}),a}var ko=function(e){for(var t=Co;e.length<3;)e+="`";for(var r=0;r<=e.length-1;r++){if(!(t=t[e.charCodeAt(r)-96]))return!1}return!0};axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.utils={setDefaultFrameMessenger:It};var Ro=function(){fc(i,et);var o=mc(i);function i(e){var t,r,a,n;return yc(this,i),(t=o.call(this))._props=function(e){var t=e.nodeName,r=e.nodeType,a=void 0===r?1:r;ot("number"==typeof a,"nodeType has to be a number, got '".concat(a,"'")),ot("string"==typeof t,"nodeName has to be a string, got '".concat(t,"'")),t=t.toLowerCase();var n=null;"input"===t&&(n=(e.type||e.attributes&&e.attributes.type||"").toLowerCase(),Ao().includes(n)||(n="text"));var o=bc({},e,{nodeType:a,nodeName:t});n&&(o.type=n);return delete o.attributes,Object.freeze(o)}(e),t._attrs=(r=e.attributes,a=void 0===r?{}:r,n={htmlFor:"for",className:"class"},Object.keys(a).reduce(function(e,t){var r=a[t];return ot("object"!==cc(r)||null===r,"expects attributes not to be an object, '".concat(t,"' was")),void 0!==r&&(e[n[t]||t]=null!==r?String(r):null),e},{})),t}return Dc(i,[{key:"attr",value:function(e){return this._attrs[e]||null}},{key:"hasAttr",value:function(e){return void 0!==this._attrs[e]}},{key:"props",get:function(){return this._props}},{key:"attrNames",get:function(){return Object.keys(this._attrs)}}]),i}(),To={};t(To,{allowedAttr:function(){return _o},arialabelText:function(){return Oo},arialabelledbyText:function(){return Mi},getAccessibleRefs:function(){return nl},getElementUnallowedRoles:function(){return sl},getExplicitRole:function(){return Io},getOwnedVirtual:function(){return fi},getRole:function(){return Ko},getRoleType:function(){return ol},getRolesByType:function(){return cl},getRolesWithNameFromContents:function(){return ml},implicitNodes:function(){return vl},implicitRole:function(){return $o},isAccessibleRef:function(){return bl},isAriaRoleAllowedOnElement:function(){return il},isUnsupportedRole:function(){return So},isValidRole:function(){return Po},label:function(){return yl},labelVirtual:function(){return Oa},lookupTable:function(){return gl},namedFromContents:function(){return pi},requiredAttr:function(){return Dl},requiredContext:function(){return wl},requiredOwned:function(){return xl},validateAttr:function(){return Al},validateAttrValue:function(){return El}});var No=function(){if(Ea.get("globalAriaAttrs"))return Ea.get("globalAriaAttrs");var e=Object.keys(an.ariaAttrs).filter(function(e){return an.ariaAttrs[e].global});return Ea.set("globalAriaAttrs",e),e};var _o=function(e){var t=an.ariaRoles[e],r=gc(No());return t&&(t.allowedAttrs&&r.push.apply(r,gc(t.allowedAttrs)),t.requiredAttrs&&r.push.apply(r,gc(t.requiredAttrs))),r};var Oo=function(e){if(!(e instanceof et)){if(1!==e.nodeType)return"";e=_n(e)}return e.attr("aria-label")||""};var So=function(e){var t=an.ariaRoles[e];return!!t&&!!t.unsupported};var Po=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.allowAbstract,a=t.flagUnsupported,n=void 0!==a&&a,o=an.ariaRoles[e],i=So(e);return!(!o||n&&i)&&(!!r||"abstract"!==o.type)};var Io=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.fallback,a=t.abstracts,n=t.dpub;if(1!==(e=e instanceof et?e:_n(e)).props.nodeType)return null;var o=(e.attr("role")||"").trim().toLowerCase();return(r?Eo(o):[o]).find(function(e){return!(!n&&"doc-"===e.substr(0,4))&&Po(e,{allowAbstract:a})})||null};var Bo=function(r){return Object.keys(an.htmlElms).filter(function(e){var t=an.htmlElms[e];return t.contentTypes?t.contentTypes.includes(r):!!t.variant&&(!(!t.variant.default||!t.variant.default.contentTypes)&&t.variant.default.contentTypes.includes(r))})};var Lo=$n(function(e){for(var t=[],r=e.rows,a=0,n=r.length;a<n;a++){var o=r[a].cells;t[a]=t[a]||[];for(var i=0,l=0,s=o.length;l<s;l++)for(var u=0;u<o[l].colSpan;u++){for(var c=o[l].getAttribute("rowspan"),d=0===parseInt(c)||0===o[l].rowspan?r.length:o[l].rowSpan,p=0;p<d;p++){for(t[a+p]=t[a+p]||[];t[a+p][i];)i++;t[a+p][i]=o[l]}i++}}return t});var qo=$n(function(e,t){var r,a;for(t=t||Lo(na(e,"table")),r=0;r<t.length;r++)if(t[r]&&-1!==(a=t[r].indexOf(e)))return{x:a,y:r}});var Mo=function(e){var t=e.getAttribute("scope"),r=e.getAttribute("role");if(e instanceof window.Element==!1||-1===["TD","TH"].indexOf(e.nodeName.toUpperCase()))throw new TypeError("Expected TD or TH element");if("columnheader"===r)return"col";if("rowheader"===r)return"row";if("col"===t||"row"===t)return t;if("TH"!==e.nodeName.toUpperCase())return!1;var a=Lo(na(e,"table")),n=qo(e,a);return a[n.y].reduce(function(e,t){return e&&"TH"===t.nodeName.toUpperCase()},!0)?"col":a.map(function(e){return e[n.x]}).reduce(function(e,t){return e&&t&&"TH"===t.nodeName.toUpperCase()},!0)?"row":"auto"};var jo=function(e){return-1!==["col","auto"].indexOf(Mo(e))};var Uo=function(e){return["row","auto"].includes(Mo(e))},Vo=Bo("sectioning").map(function(e){return"".concat(e,":not([role])")}).join(", ")+" , main:not([role]), [role=article], [role=complementary], [role=main], [role=navigation], [role=region]";function Ho(e){var t=Fa(Mi(e)),r=Fa(Oo(e));return t||r}var zo={a:function(e){return e.hasAttr("href")?"link":null},area:function(e){return e.hasAttr("href")?"link":null},article:"article",aside:"complementary",body:"document",button:"button",datalist:"listbox",dd:"definition",dfn:"term",details:"group",dialog:"dialog",dt:"term",fieldset:"group",figure:"figure",footer:function(e){return Or(e,Vo)?null:"contentinfo"},form:function(e){return Ho(e)?"form":null},h1:"heading",h2:"heading",h3:"heading",h4:"heading",h5:"heading",h6:"heading",header:function(e){return Or(e,Vo)?null:"banner"},hr:"separator",img:function(t){var e=t.hasAttr("alt")&&!t.attr("alt"),r=No().find(function(e){return t.hasAttr(e)});return!e||r||Ua(t)?"img":"presentation"},input:function(e){var t,r;switch(e.hasAttr("list")&&(r=(t=Na(e.actualNode,"list").filter(function(e){return!!e})[0])&&"datalist"===t.nodeName.toLowerCase()),e.props.type){case"checkbox":return"checkbox";case"number":return"spinbutton";case"radio":return"radio";case"range":return"slider";case"search":return r?"combobox":"searchbox";case"button":case"image":case"reset":case"submit":return"button";case"text":case"tel":case"url":case"email":case"":return r?"combobox":"textbox";default:return"textbox"}},li:"listitem",main:"main",math:"math",menu:"list",nav:"navigation",ol:"list",optgroup:"group",option:"option",output:"status",progress:"progressbar",section:function(e){return Ho(e)?"region":null},select:function(e){return e.hasAttr("multiple")||1<parseInt(e.attr("size"))?"listbox":"combobox"},summary:"button",table:"table",tbody:"rowgroup",td:function(e){var t=Or(e,"table"),r=Io(t);return["grid","treegrid"].includes(r)?"gridcell":"cell"},textarea:"textbox",tfoot:"rowgroup",th:function(e){return jo(e.actualNode)?"columnheader":Uo(e.actualNode)?"rowheader":void 0},thead:"rowgroup",tr:"row",ul:"list"};var $o=function(e){var t=e instanceof et?e:_n(e);if(e=t.actualNode,!t)throw new ReferenceError("Cannot get implicit role of a node outside the current scope.");if(e&&"http://www.w3.org/2000/svg"===e.namespaceURI)return null;var r=t.props.nodeName,a=zo[r];return a?"function"==typeof a?a(t):a:null},Wo={td:["tr"],th:["tr"],tr:["thead","tbody","tfoot","table"],thead:["table"],tbody:["table"],tfoot:["table"],li:["ol","ul"],dt:["dl","div"],dd:["dl","div"],div:["dl"]};function Go(e,t){var r=$o(e);if(!r)return null;var a=function e(t,r){var a=Wo[t.props.nodeName];if(!a)return null;if(!t.parent)throw new ReferenceError("Cannot determine role presentational inheritance of a required parent outside the current scope.");if(!a.includes(t.parent.props.nodeName))return null;var n=Io(t.parent,r);return["none","presentation"].includes(n)&&!Yo(t.parent)?n:n?null:e(t.parent,r)}(e,t);return a||r}function Yo(t){return No().some(function(e){return t.hasAttr(e)})||Ua(t)}var Ko=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.noPresentational,a=function(e,t){var r=1<arguments.length&&void 0!==t?t:{},a=r.noImplicit,n=pc(r,["noImplicit"]),o=e instanceof et?e:_n(e);if(1!==o.props.nodeType)return null;var i=Io(o,n);return!i||["presentation","none"].includes(i)&&Yo(o)?a?null:Go(o,n):i}(e,pc(t,["noPresentational"]));return r&&["presentation","none"].includes(a)?null:a};var Xo=function(e,t){var r=cc(t);if(Array.isArray(t)&&void 0!==e)return t.includes(e);if("function"===r)return!!t(e);if(null!=e){if(t instanceof RegExp)return t.test(e);if(/^\/.*\/$/.test(t)){var a=t.substring(1,t.length-1);return new RegExp(a).test(e)}}return t===e};var Jo=function(t,r){if("object"!==cc(r)||Array.isArray(r)||r instanceof RegExp)throw new Error("Expect matcher to be an object");return Object.keys(r).every(function(e){return Xo(t(e),r[e])})};function Qo(t,e){return t instanceof et||(t=_n(t)),Jo(function(e){return t.attr(e)},e)}function Zo(e,t){return!!t(e)}function ei(e,t){return Xo(Io(e),t)}function ti(e,t){return Xo($o(e),t)}function ri(e,t){return e instanceof et||(e=_n(e)),Xo(e.props.nodeName,t)}function ai(t,e){return t instanceof et||(t=_n(t)),Jo(function(e){return t.props[e]},e)}function ni(e,t){return Xo(Ko(e),t)}var oi={attributes:Qo,condition:Zo,explicitRole:ei,implicitRole:ti,nodeName:ri,properties:ai,semanticRole:ni};var ii=function t(a,n){return a instanceof et||(a=_n(a)),Array.isArray(n)?n.some(function(e){return t(a,e)}):"string"==typeof n?_r(a,n):Object.keys(n).every(function(e){if(!oi[e])throw new Error('Unknown matcher type "'.concat(e,'"'));var t=oi[e],r=n[e];return t(a,r)})};var li=function(e,t){return ii(e,t)};li.attributes=Qo,li.condition=Zo,li.explicitRole=ei,li.fromDefinition=ii,li.fromFunction=Jo,li.fromPrimative=Xo,li.implicitRole=ti,li.nodeName=ri,li.properties=ai,li.semanticRole=ni;var si=li;var ui=function(e){var t=an.htmlElms[e.props.nodeName];if(!t)return{};if(!t.variant)return t;var r=t.variant,a=pc(t,["variant"]);for(var n in r)if(r.hasOwnProperty(n)&&"default"!==n){var o=r[n],i=o.matches,l=pc(o,["matches"]);if(si(e,i))for(var s in l)l.hasOwnProperty(s)&&(a[s]=l[s])}for(var u in r.default)r.default.hasOwnProperty(u)&&void 0===a[u]&&(a[u]=r.default[u]);return a},ci=["iframe"];var di=function(e){var t=e instanceof et?e:_n(e);return 1!==t.props.nodeType||!e.hasAttr("title")||!li(t,ci)&&["none","presentation"].includes(Ko(t))?"":t.attr("title")};var pi=function(e){var t=(1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).strict;if(1!==(e=e instanceof et?e:_n(e)).props.nodeType)return!1;var r=Ko(e),a=an.ariaRoles[r];return!(!a||!a.nameFromContent)||!t&&(!a||["presentation","none"].includes(r))};var fi=function(e){var t=e.actualNode,r=e.children;if(!r)throw new Error("getOwnedVirtual requires a virtual node");if(e.hasAttr("aria-owns")){var a=Na(t,"aria-owns").filter(function(e){return!!e}).map(function(e){return axe.utils.getNodeFromTree(e)});return[].concat(gc(r),gc(a))}return gc(r)};var mi=Bo("phrasing").concat(["#text"]);var hi=function(e){var r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},t=Li.alreadyProcessed;r.startNode=r.startNode||e;var a=r.strict,n=r.inControlContext,o=r.inLabelledByContext;return!t(e,r)&&1===e.props.nodeType&&(pi(e,{strict:a})||r.subtreeDescendant)?(a||(r=bc({subtreeDescendant:!n&&!o},r)),fi(e).reduce(function(e,t){return function(e,t,r){var a=t.props.nodeName,n=Li(t,r);if(!n)return e;mi.includes(a)||(" "!==n[0]&&(n+=" "),e&&" "!==e[e.length-1]&&(n=" "+n));return e+n}(e,t,r)},"")):""};var gi=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=Li.alreadyProcessed;if(t.inControlContext||t.inLabelledByContext||r(e,t))return"";t.startNode||(t.startNode=e);var a,n=bc({inControlContext:!0},t),o=function(e){if(!e.attr("id"))return[];if(e.actualNode)return ra({elm:"label",attr:"for",value:e.attr("id"),context:e.actualNode});throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes")}(e),i=Or(e,"label");return i?(a=[].concat(gc(o),[i.actualNode])).sort(zr):a=o,a.map(function(e){return qi(e,n)}).filter(function(e){return""!==e}).join(" ")},vi={submit:"Submit",image:"Submit",reset:"Reset",button:""};function bi(e,t){return t.attr(e)||""}function yi(e,t,r){var a=t.actualNode,n=[e=e.toLowerCase(),a.nodeName.toLowerCase()].join(","),o=a.querySelector(n);return o&&o.nodeName.toLowerCase()===e?qi(o,r):""}var Di={valueText:function(e){return e.actualNode.value||""},buttonDefaultText:function(e){var t=e.actualNode;return vi[t.type]||""},tableCaptionText:yi.bind(null,"caption"),figureText:yi.bind(null,"figcaption"),svgTitleText:yi.bind(null,"title"),fieldsetLegendText:yi.bind(null,"legend"),altText:bi.bind(null,"alt"),tableSummaryText:bi.bind(null,"summary"),titleText:di,subtreeText:hi,labelText:gi,singleSpace:function(){return" "},placeholderText:bi.bind(null,"placeholder")};function wi(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode;if(1!==r.props.nodeType||["presentation","none"].includes(Ko(r)))return"";var t=(ui(r).namingMethods||[]).map(function(e){return Di[e]}).reduce(function(e,t){return e||t(r,a)},"");return a.debug&&axe.log(t||"{empty-value}",e,a),t}var xi={accessibleNameFromFieldValue:["combobox","listbox","progressbar"]},Ei=["button","checkbox","color","file","hidden","image","password","radio","reset","submit"];var Ai=function(e){var t=(e=e instanceof et?e:_n(e)).props.nodeName;return"textarea"===t||"input"===t&&!Ei.includes((e.attr("type")||"").toLowerCase())};var Ci=function(e){return"select"===(e=e instanceof et?e:_n(e)).props.nodeName};var Fi=function(e){return"textbox"===Io(e)};var ki=function(e){return"listbox"===Io(e)};var Ri=function(e){return"combobox"===Io(e)},Ti=["progressbar","scrollbar","slider","spinbutton"];var Ni=function(e){var t=Io(e);return Ti.includes(t)},_i=["textbox","progressbar","scrollbar","slider","spinbutton","combobox","listbox"],Oi={nativeTextboxValue:function(e){var t=e instanceof et?e:_n(e);if(Ai(t))return t.props.value||"";return""},nativeSelectValue:function(e){var t=e instanceof et?e:_n(e);if(!Ci(t))return"";var r=vo(t,"option"),a=r.filter(function(e){return e.hasAttr("selected")});a.length||a.push(r[0]);return a.map(function(e){return _a(e)}).join(" ")||""},ariaTextboxValue:function(e){var t=e instanceof et?e:_n(e),r=t.actualNode;if(!Fi(t))return"";return!r||r&&!qa(r)?_a(t,!0):r.textContent},ariaListboxValue:Si,ariaComboboxValue:function(e,t){var r=e instanceof et?e:_n(e);if(!Ri(r))return"";var a=fi(r).filter(function(e){return"listbox"===Ko(e)})[0];return a?Si(a,t):""},ariaRangeValue:function(e){var t=e instanceof et?e:_n(e);if(!Ni(t)||!t.hasAttr("aria-valuenow"))return"";var r=+t.attr("aria-valuenow");return isNaN(r)?"0":String(r)}};function Si(e,t){var r=e instanceof et?e:_n(e);if(!ki(r))return"";var a=fi(r).filter(function(e){return"option"===Ko(e)&&"true"===e.attr("aria-selected")});return 0===a.length?"":Li(a[0],t)}function Pi(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode,t=xi.accessibleNameFromFieldValue||[],n=Ko(r);if(a.startNode===r||!_i.includes(n)||t.includes(n))return"";var o=Object.keys(Oi).map(function(e){return Oi[e]}).reduce(function(e,t){return e||t(r,a)},"");return a.debug&&Je(o||"{empty-value}",e,a),o}function Ii(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode,a=function(e,t){var r=e.actualNode;t.startNode||(t=bc({startNode:e},t));if(!r)return t;1===r.nodeType&&t.inLabelledByContext&&void 0===t.includeHidden&&(t=bc({includeHidden:!ma(r,!0)},t));return t}(r,a);if(function(e,t){var r=e.actualNode;if(!r)return!1;if(1!==r.nodeType||t.includeHidden)return!1;return!ma(r,!0)}(r,a))return"";var t=[Mi,Oo,wi,Pi,hi,Bi,di].reduce(function(e,t){return a.startNode===r&&(e=Fa(e)),""!==e?e:t(r,a)},"");return a.debug&&axe.log(t||"{empty-value}",e,a),t}function Bi(e){return 3!==e.props.nodeType?"":e.props.nodeValue}Ii.alreadyProcessed=function(e,t){return t.processed=t.processed||[],!!t.processed.includes(e)||(t.processed.push(e),!1)};var Li=Ii;var qi=function(e,t){var r=_n(e);return Li(r,t)};var Mi=function(a){var n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(a instanceof et)){if(1!==a.nodeType)return"";a=_n(a)}return 1!==a.props.nodeType||n.inLabelledByContext||n.inControlContext||!a.attr("aria-labelledby")?"":Na(a,"aria-labelledby").filter(function(e){return e}).reduce(function(e,t){var r=qi(t,bc({inLabelledByContext:!0,startNode:n.startNode||a},n));return e?"".concat(e," ").concat(r):r},"")},ji={};function Ui(){return/[\u1D00-\u1D7F\u1D80-\u1DBF\u1DC0-\u1DFF\u20A0-\u20CF\u20D0-\u20FF\u2100-\u214F\u2150-\u218F\u2190-\u21FF\u2200-\u22FF\u2300-\u23FF\u2400-\u243F\u2440-\u245F\u2460-\u24FF\u2500-\u257F\u2580-\u259F\u25A0-\u25FF\u2600-\u26FF\u2700-\u27BF\uE000-\uF8FF]/g}function Vi(){return/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\xa3\xa2\xa5\xa7\u20ac()*+,\-.\/:;<=>?@\[\]^_`{|}~\xb1]/g}function Hi(){return/[\uDB80-\uDBBF][\uDC00-\uDFFF]/g}t(ji,{accessibleText:function(){return qi},accessibleTextVirtual:function(){return Li},autocomplete:function(){return Xi},formControlValue:function(){return Pi},formControlValueMethods:function(){return Oi},hasUnicode:function(){return $i},isHumanInterpretable:function(){return Yi},isIconLigature:function(){return Ki},isValidAutocomplete:function(){return Ji},label:function(){return el},labelText:function(){return gi},labelVirtual:function(){return Zi},nativeElementType:function(){return tl},nativeTextAlternative:function(){return wi},nativeTextMethods:function(){return Di},removeUnicode:function(){return Gi},sanitize:function(){return Fa},subtreeText:function(){return hi},titleText:function(){return di},unsupported:function(){return xi},visible:function(){return Qi},visibleTextNodes:function(){return rl},visibleVirtual:function(){return _a}});var zi=r(ze());var $i=function(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations;return r?zi.default().test(e):a?Ui().test(e)||Hi().test(e):!!n&&Vi().test(e)},Wi=r(ze());var Gi=function(e,t){var r=t.emoji,a=t.nonBmp,n=t.punctuations;return r&&(e=e.replace(Wi.default(),"")),a&&(e=(e=e.replace(Ui(),"")).replace(Hi(),"")),n&&(e=e.replace(Vi(),"")),e};var Yi=function(e){if(!e.length)return 0;if(["x","i"].includes(e))return 0;var t=Gi(e,{emoji:!0,nonBmp:!0,punctuations:!0});return Fa(t)?1:0};var Ki=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:.15,r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:3,a=e.actualNode.nodeValue.trim();if(!Fa(a)||$i(a,{emoji:!0,nonBmp:!0}))return!1;Ea.get("canvasContext")||Ea.set("canvasContext",document.createElement("canvas").getContext("2d"));var n=Ea.get("canvasContext"),o=n.canvas;Ea.get("fonts")||Ea.set("fonts",{});var i=Ea.get("fonts"),l=window.getComputedStyle(e.parent.actualNode).getPropertyValue("font-family");i[l]||(i[l]={occurances:0,numLigatures:0});var s=i[l];if(s.occurances>=r){if(s.numLigatures/s.occurances==1)return!0;if(0===s.numLigatures)return!1}s.occurances++;var u=30,c="".concat(u,"px ").concat(l);n.font=c;var d,p=a.charAt(0),f=n.measureText(p).width;f<30&&(f*=d=30/f,c="".concat(u*=d,"px ").concat(l)),o.width=f,o.height=u,n.font=c,n.textAlign="left",n.textBaseline="top",n.fillText(p,0,0);var m=new Uint32Array(n.getImageData(0,0,f,u).data.buffer);if(!m.some(function(e){return e}))return s.numLigatures++,!0;n.clearRect(0,0,f,u),n.fillText(a,0,0);var h=new Uint32Array(n.getImageData(0,0,f,u).data.buffer),g=m.reduce(function(e,t,r){return 0===t&&0===h[r]||0!==t&&0!==h[r]?e:++e},0),v=a.split("").reduce(function(e,t){return e+n.measureText(t).width},0),b=n.measureText(a).width;return t<=g/m.length&&t<=1-b/v&&(s.numLigatures++,!0)},Xi={stateTerms:["on","off"],standaloneTerms:["name","honorific-prefix","given-name","additional-name","family-name","honorific-suffix","nickname","username","new-password","current-password","organization-title","organization","street-address","address-line1","address-line2","address-line3","address-level4","address-level3","address-level2","address-level1","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","transaction-currency","transaction-amount","language","bday","bday-day","bday-month","bday-year","sex","url","photo","one-time-code"],qualifiers:["home","work","mobile","fax","pager"],qualifiedTerms:["tel","tel-country-code","tel-national","tel-area-code","tel-local","tel-local-prefix","tel-local-suffix","tel-extension","email","impp"],locations:["billing","shipping"]};var Ji=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.looseTyped,a=void 0!==r&&r,n=t.stateTerms,o=void 0===n?[]:n,i=t.locations,l=void 0===i?[]:i,s=t.qualifiers,u=void 0===s?[]:s,c=t.standaloneTerms,d=void 0===c?[]:c,p=t.qualifiedTerms,f=void 0===p?[]:p;if(e=e.toLowerCase().trim(),(o=o.concat(Xi.stateTerms)).includes(e)||""===e)return!0;u=u.concat(Xi.qualifiers),l=l.concat(Xi.locations),d=d.concat(Xi.standaloneTerms),f=f.concat(Xi.qualifiedTerms);var m=e.split(/\s+/g);if(!a&&(8<m[0].length&&"section-"===m[0].substr(0,8)&&m.shift(),l.includes(m[0])&&m.shift(),u.includes(m[0])&&(m.shift(),d=[]),1!==m.length))return!1;var h=m[m.length-1];return d.includes(h)||f.includes(h)};var Qi=function(e,t,r){return e=_n(e),_a(e,t,r)};var Zi=function(e){if(r=Oa(e))return r;if(e.attr("id")){if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");var t,r,a=Kt(e.attr("id"));if(r=(t=ta(e.actualNode).querySelector('label[for="'+a+'"]'))&&Qi(t,!0))return r}return(r=(t=Or(e,"label"))&&_a(t,!0))||null};var el=function(e){return e=_n(e),Zi(e)},tl=[{matches:[{nodeName:"textarea"},{nodeName:"input",properties:{type:["text","password","search","tel","email","url"]}}],namingMethods:"labelText"},{matches:{nodeName:"input",properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},{matches:{nodeName:"input",properties:{type:"image"}},namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},{matches:"button",namingMethods:"subtreeText"},{matches:"fieldset",namingMethods:"fieldsetLegendText"},{matches:"OUTPUT",namingMethods:"subtreeText"},{matches:[{nodeName:"select"},{nodeName:"input",properties:{type:/^(?!text|password|search|tel|email|url|button|submit|reset)/}}],namingMethods:"labelText"},{matches:"summary",namingMethods:"subtreeText"},{matches:"figure",namingMethods:["figureText","titleText"]},{matches:"img",namingMethods:"altText"},{matches:"table",namingMethods:["tableCaptionText","tableSummaryText"]},{matches:["hr","br"],namingMethods:["titleText","singleSpace"]}];var rl=function t(e){var r=ma(e.actualNode),a=[];return e.children.forEach(function(e){3===e.actualNode.nodeType?r&&a.push(e):a=a.concat(t(e))}),a},al=/^idrefs?$/;var nl=function(e){e=e.actualNode||e;var t=(t=ta(e)).documentElement||t,r=Ea.get("idRefsByRoot");r||(r=new WeakMap,Ea.set("idRefsByRoot",r));var a=r.get(t);return a||(a={},r.set(t,a),function e(t,r,a){if(t.hasAttribute){var n;"LABEL"===t.nodeName.toUpperCase()&&t.hasAttribute("for")&&(r[n=t.getAttribute("for")]=r[n]||[],r[n].push(t));for(var o=0;o<a.length;++o){var i=a[o],l=Fa(t.getAttribute(i)||"");if(l)for(var s=Eo(l),u=0;u<s.length;++u)r[s[u]]=r[s[u]]||[],r[s[u]].push(t)}}for(var c=0;c<t.children.length;c++)e(t.children[c],r,a)}(t,a,Object.keys(an.ariaAttrs).filter(function(e){var t=an.ariaAttrs[e].type;return al.test(t)}))),a[e.id]||[]};var ol=function(e){var t=an.ariaRoles[e];return t?t.type:null};var il=function(e,t){var r=e instanceof et?e:_n(e);if(t===$o(r))return!0;var a=ui(r);return Array.isArray(a.allowedRoles)?a.allowedRoles.includes(t):!!a.allowedRoles},ll=["doc-backlink","doc-biblioentry","doc-biblioref","doc-cover","doc-endnote","doc-glossref","doc-noteref"];var sl=function(r){var a=!(1<arguments.length&&void 0!==arguments[1])||arguments[1],n=r.nodeName.toUpperCase();if(!Un(r))return[];var e,t,o,i,l=(i=[],(e=r)?(e.hasAttribute("role")&&(t=Eo(e.getAttribute("role").toLowerCase()),i=i.concat(t)),e.hasAttributeNS("http://www.idpf.org/2007/ops","type")&&(o=Eo(e.getAttributeNS("http://www.idpf.org/2007/ops","type").toLowerCase()).map(function(e){return"doc-".concat(e)}),i=i.concat(o)),i=i.filter(function(e){return Po(e)})):i),s=$o(r);return l.filter(function(e){if(a&&e===s)return!1;if(a&&ll.includes(e)){var t=ol(e);if(s!==t)return!0}return!(a||"row"===e&&"TR"===n&&tr(r,'table[role="grid"] > tr'))||!il(r,e)})};var ul=function(t){return Object.keys(an.ariaRoles).filter(function(e){return an.ariaRoles[e].type===t})};var cl=function(e){return ul(e)};var dl=function(){if(Ea.get("ariaRolesNameFromContent"))return Ea.get("ariaRolesNameFromContent");var e=Object.keys(an.ariaRoles).filter(function(e){return an.ariaRoles[e].nameFromContent});return Ea.set("ariaRolesNameFromContent",e),e};function pl(e){return null===e}function fl(e){return null!==e}var ml=function(){return dl()},hl={attributes:{"aria-activedescendant":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-atomic":{type:"boolean",values:["true","false"],unsupported:!1},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"],unsupported:!1},"aria-busy":{type:"boolean",values:["true","false"],unsupported:!1},"aria-checked":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-colcount":{type:"int",unsupported:!1},"aria-colindex":{type:"int",unsupported:!1},"aria-colspan":{type:"int",unsupported:!1},"aria-controls":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],unsupported:!1},"aria-describedby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-describedat":{unsupported:!0,unstandardized:!0},"aria-details":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-disabled":{type:"boolean",values:["true","false"],unsupported:!1},"aria-dropeffect":{type:"nmtokens",values:["copy","move","reference","execute","popup","none"],unsupported:!1},"aria-errormessage":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-flowto":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],unsupported:!1},"aria-hidden":{type:"boolean",values:["true","false"],unsupported:!1},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["true","false","spelling","grammar"],unsupported:!1},"aria-keyshortcuts":{type:"string",allowEmpty:!0,unsupported:!1},"aria-label":{type:"string",allowEmpty:!0,unsupported:!1},"aria-labelledby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-level":{type:"int",unsupported:!1},"aria-live":{type:"nmtoken",values:["off","polite","assertive"],unsupported:!1},"aria-modal":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiline":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiselectable":{type:"boolean",values:["true","false"],unsupported:!1},"aria-orientation":{type:"nmtoken",values:["horizontal","vertical"],unsupported:!1},"aria-owns":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-placeholder":{type:"string",allowEmpty:!0,unsupported:!1},"aria-posinset":{type:"int",unsupported:!1},"aria-pressed":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-readonly":{type:"boolean",values:["true","false"],unsupported:!1},"aria-relevant":{type:"nmtokens",values:["additions","removals","text","all"],unsupported:!1},"aria-required":{type:"boolean",values:["true","false"],unsupported:!1},"aria-roledescription":{type:"string",allowEmpty:!0,unsupported:!1},"aria-rowcount":{type:"int",unsupported:!1},"aria-rowindex":{type:"int",unsupported:!1},"aria-rowspan":{type:"int",unsupported:!1},"aria-selected":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-setsize":{type:"int",unsupported:!1},"aria-sort":{type:"nmtoken",values:["ascending","descending","other","none"],unsupported:!1},"aria-valuemax":{type:"decimal",unsupported:!1},"aria-valuemin":{type:"decimal",unsupported:!1},"aria-valuenow":{type:"decimal",unsupported:!1},"aria-valuetext":{type:"string",unsupported:!1}},globalAttributes:["aria-atomic","aria-busy","aria-controls","aria-current","aria-describedby","aria-details","aria-disabled","aria-dropeffect","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-invalid","aria-keyshortcuts","aria-label","aria-labelledby","aria-live","aria-owns","aria-relevant","aria-roledescription"]};hl.role={alert:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},alertdialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["dialog","section"]},application:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage","aria-activedescendant"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","audio","embed","iframe","object","section","svg","video"]},article:{type:"structure",attributes:{allowed:["aria-expanded","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["article"],unsupported:!1},banner:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["header"],unsupported:!1,allowedElements:["section"]},button:{type:"widget",attributes:{allowed:["aria-expanded","aria-pressed","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["button",'input[type="button"]','input[type="image"]','input[type="reset"]','input[type="submit"]',"summary"],unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:fl}}]},cell:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},checkbox:{type:"widget",attributes:{allowed:["aria-checked","aria-required","aria-readonly","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="checkbox"]'],unsupported:!1,allowedElements:["button"]},columnheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},combobox:{type:"composite",attributes:{allowed:["aria-autocomplete","aria-required","aria-activedescendant","aria-orientation","aria-errormessage"],required:["aria-expanded"]},owned:{all:["listbox","tree","grid","dialog","textbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:"input",properties:{type:["text","search","tel","url","email"]}}]},command:{nameFrom:["author"],type:"abstract",unsupported:!1},complementary:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["aside"],unsupported:!1,allowedElements:["section"]},composite:{nameFrom:["author"],type:"abstract",unsupported:!1},contentinfo:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["footer"],unsupported:!1,allowedElements:["section"]},definition:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dd","dfn"],unsupported:!1},dialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dialog"],unsupported:!1,allowedElements:["section"]},directory:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["ol","ul"]},document:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["body"],unsupported:!1,allowedElements:["article","embed","iframe","object","section","svg"]},"doc-abstract":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-acknowledgments":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-afterword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-appendix":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-backlink":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:fl}}]},"doc-biblioentry":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:["doc-bibliography"],unsupported:!1,allowedElements:["li"]},"doc-bibliography":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-biblioentry"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-biblioref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:fl}}]},"doc-chapter":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-colophon":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-conclusion":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-cover":{type:"img",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-credit":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-credits":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-dedication":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-endnote":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,namefrom:["author"],context:["doc-endnotes"],unsupported:!1,allowedElements:["li"]},"doc-endnotes":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-endnote"]},namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-epigraph":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-epilogue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-errata":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-example":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-footnote":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","footer","header"]},"doc-foreword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-glossary":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:["term","definition"],namefrom:["author"],context:null,unsupported:!1,allowedElements:["dl"]},"doc-glossref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:fl}}]},"doc-index":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-introduction":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-noteref":{type:"link",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:fl}}]},"doc-notice":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pagebreak":{type:"separator",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["hr"]},"doc-pagelist":{type:"navigation",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-part":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-preface":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-prologue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pullquote":{type:"none",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-qna":{type:"section",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-subtitle":{type:"sectionhead",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["h1","h2","h3","h4","h5","h6"]}},"doc-tip":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},"doc-toc":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},feed:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["article"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","aside","section"]},figure:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["figure"],unsupported:!1},form:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["form"],unsupported:!1},grid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-colcount","aria-level","aria-multiselectable","aria-readonly","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,implicit:["table"],unsupported:!1},gridcell:{type:"widget",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-selected","aria-readonly","aria-required","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},group:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["details","optgroup"],unsupported:!1,allowedElements:["dl","figcaption","fieldset","figure","footer","header","ol","ul"]},heading:{type:"structure",attributes:{required:["aria-level"],allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["h1","h2","h3","h4","h5","h6"],unsupported:!1},img:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["img"],unsupported:!1,allowedElements:["embed","iframe","object","svg"]},input:{nameFrom:["author"],type:"abstract",unsupported:!1},landmark:{nameFrom:["author"],type:"abstract",unsupported:!1},link:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["a[href]","area[href]"],unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["image","button"]}}]},list:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{all:["listitem"]},nameFrom:["author"],context:null,implicit:["ol","ul","dl"],unsupported:!1},listbox:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-readonly","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["option"]},nameFrom:["author"],context:null,implicit:["select"],unsupported:!1,allowedElements:["ol","ul"]},listitem:{type:"structure",attributes:{allowed:["aria-level","aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["list"],implicit:["li","dt"],unsupported:!1},log:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},main:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["main"],unsupported:!1,allowedElements:["article","section"]},marquee:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},math:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["math"],unsupported:!1},menu:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,implicit:['menu[type="context"]'],unsupported:!1,allowedElements:["ol","ul"]},menubar:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},menuitem:{type:"widget",attributes:{allowed:["aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="command"]'],unsupported:!1,allowedElements:["button","li",{nodeName:"iput",properties:{type:["image","button"]}},{nodeName:"a",attributes:{href:fl}}]},menuitemcheckbox:{type:"widget",attributes:{allowed:["aria-checked","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="checkbox"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:fl}}]},menuitemradio:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button","radio"]}},{nodeName:"a",attributes:{href:fl}}]},navigation:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["nav"],unsupported:!1,allowedElements:["section"]},none:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:fl}}]},note:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},option:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-checked","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["listbox"],implicit:["option"],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","button"]}},{nodeName:"a",attributes:{href:fl}}]},presentation:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:fl}}]},progressbar:{type:"widget",attributes:{allowed:["aria-valuetext","aria-valuenow","aria-valuemax","aria-valuemin","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["progress"],unsupported:!1},radio:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-required","aria-errormessage","aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button"]}}]},radiogroup:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-required","aria-expanded","aria-readonly","aria-errormessage","aria-orientation"]},owned:{all:["radio"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["ol","ul","fieldset"]}},range:{nameFrom:["author"],type:"abstract",unsupported:!1},region:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["section[aria-label]","section[aria-labelledby]","section[title]"],unsupported:!1,allowedElements:{nodeName:["article","aside"]}},roletype:{type:"abstract",unsupported:!1},row:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-colindex","aria-expanded","aria-level","aria-selected","aria-rowindex","aria-errormessage"]},owned:{one:["cell","columnheader","rowheader","gridcell"]},nameFrom:["author","contents"],context:["rowgroup","grid","treegrid","table"],implicit:["tr"],unsupported:!1},rowgroup:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:{all:["row"]},nameFrom:["author","contents"],context:["grid","table","treegrid"],implicit:["tbody","thead","tfoot"],unsupported:!1},rowheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},scrollbar:{type:"widget",attributes:{required:["aria-controls","aria-valuenow"],allowed:["aria-valuetext","aria-orientation","aria-errormessage","aria-valuemax","aria-valuemin"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},search:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["aside","form","section"]}},searchbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="search"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:"text"}}},section:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},sectionhead:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},select:{nameFrom:["author"],type:"abstract",unsupported:!1},separator:{type:"structure",attributes:{allowed:["aria-expanded","aria-orientation","aria-valuenow","aria-valuemax","aria-valuemin","aria-valuetext","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["hr"],unsupported:!1,allowedElements:["li"]},slider:{type:"widget",attributes:{allowed:["aria-valuetext","aria-orientation","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="range"]'],unsupported:!1},spinbutton:{type:"widget",attributes:{allowed:["aria-valuetext","aria-required","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="number"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:["text","tel"]}}},status:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["output"],unsupported:!1,allowedElements:["section"]},structure:{type:"abstract",unsupported:!1},switch:{type:"widget",attributes:{allowed:["aria-errormessage"],required:["aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:fl}}]},tab:{type:"widget",attributes:{allowed:["aria-selected","aria-expanded","aria-setsize","aria-posinset","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["tablist"],unsupported:!1,allowedElements:[{nodeName:["button","h1","h2","h3","h4","h5","h6","li"]},{nodeName:"input",properties:{type:"button"}},{nodeName:"a",attributes:{href:fl}}]},table:{type:"structure",attributes:{allowed:["aria-colcount","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author","contents"],context:null,implicit:["table"],unsupported:!1},tablist:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-errormessage"]},owned:{all:["tab"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},tabpanel:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},term:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["dt"],unsupported:!1},textbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="text"]','input[type="email"]','input[type="password"]','input[type="tel"]','input[type="url"]',"input:not([type])","textarea"],unsupported:!1},timer:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},toolbar:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['menu[type="toolbar"]'],unsupported:!1,allowedElements:["ol","ul"]},tooltip:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1},tree:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["treeitem"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},treegrid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-readonly","aria-required","aria-rowcount","aria-orientation","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,unsupported:!1},treeitem:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["group","tree"],unsupported:!1,allowedElements:["li",{nodeName:"a",attributes:{href:fl}}]},widget:{type:"abstract",unsupported:!1},window:{nameFrom:["author"],type:"abstract",unsupported:!1}},hl.implicitHtmlRole=zo,hl.elementsAllowedNoRole=[{nodeName:["base","body","caption","col","colgroup","datalist","dd","details","dt","head","html","keygen","label","legend","main","map","math","meta","meter","noscript","optgroup","param","picture","progress","script","source","style","template","textarea","title","track"]},{nodeName:"area",attributes:{href:fl}},{nodeName:"input",properties:{type:["color","data","datatime","file","hidden","month","number","password","range","reset","submit","time","week"]}},{nodeName:"link",attributes:{href:fl}},{nodeName:"menu",attributes:{type:"context"}},{nodeName:"menuitem",attributes:{type:["command","checkbox","radio"]}},{nodeName:"select",condition:function(e){return e instanceof axe.AbstractVirtualNode||(e=axe.utils.getNodeFromTree(e)),1<Number(e.attr("size"))},properties:{multiple:!0}},{nodeName:["clippath","cursor","defs","desc","feblend","fecolormatrix","fecomponenttransfer","fecomposite","feconvolvematrix","fediffuselighting","fedisplacementmap","fedistantlight","fedropshadow","feflood","fefunca","fefuncb","fefuncg","fefuncr","fegaussianblur","feimage","femerge","femergenode","femorphology","feoffset","fepointlight","fespecularlighting","fespotlight","fetile","feturbulence","filter","hatch","hatchpath","lineargradient","marker","mask","meshgradient","meshpatch","meshrow","metadata","mpath","pattern","radialgradient","solidcolor","stop","switch","view"]}],hl.elementsAllowedAnyRole=[{nodeName:"a",attributes:{href:pl}},{nodeName:"img",attributes:{alt:pl}},{nodeName:["abbr","address","canvas","div","p","pre","blockquote","ins","del","output","span","table","tbody","thead","tfoot","td","em","strong","small","s","cite","q","dfn","abbr","time","code","var","samp","kbd","sub","sup","i","b","u","mark","ruby","rt","rp","bdi","bdo","br","wbr","th","tr"]}],hl.evaluateRoleForElement={A:function(e){var t=e.node,r=e.out;return"http://www.w3.org/2000/svg"===t.namespaceURI||(!t.href.length||r)},AREA:function(e){return!e.node.href},BUTTON:function(e){var t=e.node,r=e.role,a=e.out;return"menu"===t.getAttribute("type")?"menuitem"===r:a},IMG:function(e){var t=e.node,r=e.role,a=e.out;switch(t.alt){case null:return a;case"":return"presentation"===r||"none"===r;default:return"presentation"!==r&&"none"!==r}},INPUT:function(e){var t=e.node,r=e.role,a=e.out;switch(t.type){case"button":case"image":return a;case"checkbox":return"button"===r&&t.hasAttribute("aria-pressed")?!0:a;case"radio":return"menuitemradio"===r;case"text":return"combobox"===r||"searchbox"===r||"spinbutton"===r;case"tel":return"combobox"===r||"spinbutton"===r;case"url":case"search":case"email":return"combobox"===r;default:return!1}},LI:function(e){var t=e.node,r=e.out;return!axe.utils.matchesSelector(t,"ol li, ul li")||r},MENU:function(e){return"context"!==e.node.getAttribute("type")},OPTION:function(e){var t=e.node;return!axe.utils.matchesSelector(t,"select > option, datalist > option, optgroup > option")},SELECT:function(e){var t=e.node,r=e.role;return!t.multiple&&t.size<=1&&"menu"===r},SVG:function(e){var t=e.node,r=e.out;return!(!t.parentNode||"http://www.w3.org/2000/svg"!==t.parentNode.namespaceURI)||r}},hl.rolesOfType={widget:["button","checkbox","dialog","gridcell","link","log","marquee","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","radio","scrollbar","searchbox","slider","spinbutton","status","switch","tab","tabpanel","textbox","timer","tooltip","tree","treeitem"]};var gl=hl;var vl=function(e){var t=null,r=gl.role[e];return r&&r.implicit&&(t=wr(r.implicit)),t};var bl=function(e){return!!nl(e).length};var yl=function(e){return e=_n(e),Oa(e)};var Dl=function(e){var t=an.ariaRoles[e];return t&&Array.isArray(t.requiredAttrs)?gc(t.requiredAttrs):[]};var wl=function(e){var t=an.ariaRoles[e];return t&&Array.isArray(t.requiredContext)?gc(t.requiredContext):null};var xl=function(e){var t=an.ariaRoles[e];return t&&Array.isArray(t.requiredOwned)?gc(t.requiredOwned):null};var El=function(e,t){var r,a,n=e.getAttribute(t),o=an.ariaAttrs[t],i=ta(e);if(!o)return!0;if(o.allowEmpty&&(!n||""===n.trim()))return!0;switch(o.type){case"boolean":return["true","false"].includes(n.toLowerCase());case"nmtoken":return"string"==typeof n&&o.values.includes(n.toLowerCase());case"nmtokens":return(a=Eo(n)).reduce(function(e,t){return e&&o.values.includes(t)},0!==a.length);case"idref":return!(!n||!i.getElementById(n));case"idrefs":return(a=Eo(n)).some(function(e){return i.getElementById(e)});case"string":return""!==n.trim();case"decimal":return!(!(r=n.match(/^[-+]?([0-9]*)\.?([0-9]*)$/))||!r[1]&&!r[2]);case"int":var l=void 0!==o.minValue?o.minValue:-1/0;return/^[-+]?[0-9]+$/.test(n)&&parseInt(n)>=l}};var Al=function(e){return!!an.ariaAttrs[e]};function Cl(e,t,r){var a=Eo(r.attr("role")).filter(function(e){return"abstract"===ol(e)});return 0<a.length&&(this.data(a),!0)}function Fl(e,t,r){var a=[],n=Ko(r),o=r.attrNames,i=_o(n);if(Array.isArray(t[n])&&(i=no(t[n].concat(i))),n&&i)for(var l=0;l<o.length;l++){var s=o[l];Al(s)&&!i.includes(s)&&a.push(s+'="'+r.attr(s)+'"')}return!a.length||(this.data(a),!1)}function kl(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.allowImplicit,a=void 0===r||r,n=t.ignoredTags,o=void 0===n?[]:n,i=e.nodeName.toUpperCase();if(o.map(function(e){return e.toUpperCase()}).includes(i))return!0;var l=sl(e,a);if(l.length){if(this.data(l),!ma(e,!0))return;return!1}return!0}function Rl(r,e){e=Array.isArray(e)?e:[];var t=r.getAttribute("aria-errormessage"),a=r.hasAttribute("aria-errormessage"),n=r.getAttribute("aria-invalid");if(!r.hasAttribute("aria-invalid")||"false"===n)return!0;var o=ta(r);return-1!==e.indexOf(t)||!a||(this.data(Eo(t)),function(e){if(""===e.trim())return an.ariaAttrs["aria-errormessage"].allowEmpty;var t=e&&o.getElementById(e);return t?"alert"===t.getAttribute("role")||"assertive"===t.getAttribute("aria-live")||"polite"===t.getAttribute("aria-live")||-1<Eo(r.getAttribute("aria-describedby")).indexOf(e):void 0}(t))}function Tl(e,t,r){return"true"!==r.attr("aria-hidden")}function Nl(e){var t=2<arguments.length?arguments[2]:void 0,r=(1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).elementsAllowedAriaLabel,a=function(e,t){var r=Ko(e),a=an.ariaRoles[r];if(a)return a.prohibitedAttrs||[];var n=e.props.nodeName;if(t.includes(n))return[];return["aria-label","aria-labelledby"]}(t,void 0===r?[]:r).filter(function(e){return!!t.attrNames.includes(e)&&""!==Fa(t.attr(e))});return 0!==a.length&&(this.data(a),!(""!==Fa(hi(t)))||void 0)}var _l={};t(_l,{getAriaRolesByType:function(){return ul},getAriaRolesSupportingNameFromContent:function(){return dl},getElementSpec:function(){return ui},getElementsByContentType:function(){return Bo},getGlobalAriaAttrs:function(){return No},implicitHtmlRoles:function(){return zo}});function Ol(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0,a=[];if(r.attrNames.length){var n=Io(r),o=Dl(n),i=ui(r);if(Array.isArray(t[n])&&(o=no(t[n],o)),n&&o)for(var l=0,s=o.length;l<s;l++){var u=o[l];r.attr(u)||i.implicitAttrs&&void 0!==i.implicitAttrs[u]||a.push(u)}}return!a.length||(this.data(a),!1)}function Sl(e,t,r){var a=t&&Array.isArray(t.reviewEmpty)?t.reviewEmpty:[],n=Io(r,{dpub:!0}),o=xl(n);if(null===o)return!0;var i=function(e,a){for(var n=[],o=fi(e),t=0;t<o.length;t++)!function(e){var t=o[e],r=Ko(t,{noPresentational:!0});!r||["group","rowgroup"].includes(r)&&a.some(function(e){return e===r})?o.push.apply(o,gc(t.children)):r&&n.push(r)}(t);return n}(r,o),l=function(e,t,r,a){var n,o,i,l,s="combobox"===t;s&&(("input"===e.props.nodeName&&["text","search","email","url","tel"].includes(e.props.type)||a.includes("searchbox"))&&(r=r.filter(function(e){return"textbox"!==e})),n=["listbox","tree","grid","dialog"],o=e.attr("aria-expanded"),i=o&&"false"!==o.toLowerCase(),l=(e.attr("aria-haspopup")||"listbox").toLowerCase(),r=r.filter(function(e){return!n.includes(e)||i&&e===l}));for(var u=0;u<a.length;u++){var c=a[u];if(r.includes(c)&&(r=r.filter(function(e){return e!==c}),!s))return null}return r.length?r:null}(r,n,o,i);return!l||(this.data(l),!(!a.includes(n)||Pa(r,!1,!0)||i.length||r.hasAttr("aria-owns")&&Na(e,"aria-owns").length)&&void 0)}function Pl(e,t,r,a){var n=Io(e);if(!(r=r||wl(n)))return null;for(var o=a?e:e.parent;o;){var i=Ko(o);if(r.includes("group")&&"group"===i)t.includes(n)&&r.push(n),o=o.parent;else{if(r.includes(i))return null;if(i&&!["presentation","none"].includes(i))return r;o=o.parent}}return r}function Il(e,t,r){var a=t&&Array.isArray(t.ownGroupRoles)?t.ownGroupRoles:[],n=Pl(r,a);if(!n)return!0;var o=function(e){for(var t,r=[],a=null;e;){e.getAttribute("id")&&(t=Kt(e.getAttribute("id")),(a=ta(e).querySelector("[aria-owns~=".concat(t,"]")))&&r.push(a)),e=e.parentElement}return r.length?r:null}(e);if(o)for(var i=0,l=o.length;i<l;i++)if(!(n=Pl(_n(o[i]),a,n,!0)))return!0;return this.data(n),!1}function Bl(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=Ko(e);return!!(t.supportedRoles||[]).includes(r)||!(!r||"presentation"===r||"none"===r)&&void 0}function Ll(a,e,t){var r=t.attrNames.filter(function(e){var t=an.ariaAttrs[e];if(!Al(e))return!1;var r=t.unsupported;return"object"!==cc(r)?!!r:!si(a,r.exceptions)});return!!r.length&&(this.data(r),!0)}function ql(e,t){t=Array.isArray(t.value)?t.value:[];for(var r,a=[],n=/^aria-/,o=er(e),i=0,l=o.length;i<l;i++)r=o[i].name,-1===t.indexOf(r)&&n.test(r)&&!Al(r)&&a.push(r);return!a.length||(this.data(a),!1)}function Ml(e,t){t=Array.isArray(t.value)?t.value:[];for(var r="",a="",n=[],o=/^aria-/,i=er(e),l=["aria-errormessage"],s={"aria-controls":function(){return"false"!==e.getAttribute("aria-expanded")&&"false"!==e.getAttribute("aria-selected")},"aria-current":function(){El(e,"aria-current")||(r='aria-current="'.concat(e.getAttribute("aria-current"),'"'),a="ariaCurrent")},"aria-owns":function(){return"false"!==e.getAttribute("aria-expanded")},"aria-describedby":function(){El(e,"aria-describedby")||(r='aria-describedby="'.concat(e.getAttribute("aria-describedby"),'"'),a="noId")},"aria-labelledby":function(){El(e,"aria-labelledby")||(r='aria-labelledby="'.concat(e.getAttribute("aria-labelledby"),'"'),a="noId")}},u=0,c=i.length;u<c;u++){var d=i[u],p=d.name;l.includes(p)||-1!==t.indexOf(p)||!o.test(p)||s[p]&&!s[p]()||El(e,p)||n.push("".concat(p,'="').concat(d.nodeValue,'"'))}if(!r)return!n.length||(this.data(n),!1);this.data({messageKey:a,needsReview:r})}function jl(e,t,r){return 1<Eo(r.attr("role")).length}function Ul(e,t,r){var a=No().filter(function(e){return r.hasAttr(e)});return this.data(a),0<a.length}function Vl(e){var t=e.getAttribute("role");if(null===t)return!1;var r=ol(t);return"widget"===r||"composite"===r}function Hl(e,t,r){var a=Eo(r.attr("role"));return!!a.every(function(e){return!Po(e,{allowAbstract:!0})})&&(this.data(a),!0)}function zl(e,t,r){return Ua(r)}function $l(e,t,r){var a,n,o=Ko(r,{noImplicit:!0});this.data(o);try{a=Fa(gi(r)).toLowerCase(),n=Fa(Li(r)).toLowerCase()}catch(e){return}return!(!n&&!a)&&(!((n||!a)&&n.includes(a))&&void 0)}function Wl(e,t,r){return So(Ko(r))}var Gl={ARTICLE:!0,ASIDE:!0,NAV:!0,SECTION:!0},Yl={application:!0,banner:!1,complementary:!0,contentinfo:!0,form:!0,main:!0,navigation:!0,region:!0,search:!1};function Kl(e,t){return a=t,(n=Io(e))&&(Yl[n]||a.roles.includes(n))||!1||(r=e.nodeName.toUpperCase(),Gl[r]||!1);var r,a,n}var Xl={};t(Xl,{getAllCells:function(){return Jl},getCellPosition:function(){return qo},getHeaders:function(){return Zl},getScope:function(){return Mo},isColumnHeader:function(){return jo},isDataCell:function(){return es},isDataTable:function(){return ts},isHeader:function(){return rs},isRowHeader:function(){return Uo},toArray:function(){return Lo},toGrid:function(){return Lo},traverse:function(){return as}});var Jl=function(e){for(var t,r,a=[],n=0,o=e.rows.length;n<o;n++)for(t=0,r=e.rows[n].cells.length;t<r;t++)a.push(e.rows[n].cells[t]);return a};function Ql(e,t,r){for(var a,n="row"===e?"_rowHeaders":"_colHeaders",o="row"===e?Uo:jo,i=r[t.y][t.x],l=i.colSpan-1,s=i.getAttribute("rowspan"),u=(0===parseInt(s)||0===i.rowspan?r.length:i.rowSpan)-1,c=t.y+u,d=t.x+l,p="row"===e?t.y:0,f="row"===e?0:t.x,m=[],h=c;p<=h&&!a;h--)for(var g=d;f<=g;g--){var v=r[h]?r[h][g]:void 0;if(v){var b=axe.utils.getNodeFromTree(v);if(b[n]){a=b[n];break}m.push(v)}}return a=(a||[]).concat(m.filter(o)),m.forEach(function(e){axe.utils.getNodeFromTree(e)[n]=a}),a}var Zl=function(e,t){if(e.getAttribute("headers")){var r=Na(e,"headers");if(r.filter(function(e){return e}).length)return r}t=t||Lo(na(e,"table"));var a=qo(e,t),n=Ql("row",a,t),o=Ql("col",a,t);return[].concat(n,o).reverse()};var es=function(e){if(!e.children.length&&!e.textContent.trim())return!1;var t=e.getAttribute("role");return Po(t)?["cell","gridcell"].includes(t):"TD"===e.nodeName.toUpperCase()};var ts=function(e){var t=(e.getAttribute("role")||"").toLowerCase();if(("presentation"===t||"none"===t)&&!Ua(e))return!1;if("true"===e.getAttribute("contenteditable")||na(e,'[contenteditable="true"]'))return!0;if("grid"===t||"treegrid"===t||"table"===t)return!0;if("landmark"===ol(t))return!0;if("0"===e.getAttribute("datatable"))return!1;if(e.getAttribute("summary"))return!0;if(e.tHead||e.tFoot||e.caption)return!0;for(var r=0,a=e.children.length;r<a;r++)if("COLGROUP"===e.children[r].nodeName.toUpperCase())return!0;for(var n,o,i=0,l=e.rows.length,s=!1,u=0;u<l;u++)for(var c=0,d=(n=e.rows[u]).cells.length;c<d;c++){if("TH"===(o=n.cells[c]).nodeName.toUpperCase())return!0;if(s||o.offsetWidth===o.clientWidth&&o.offsetHeight===o.clientHeight||(s=!0),o.getAttribute("scope")||o.getAttribute("headers")||o.getAttribute("abbr"))return!0;if(["columnheader","rowheader"].includes((o.getAttribute("role")||"").toLowerCase()))return!0;if(1===o.children.length&&"ABBR"===o.children[0].nodeName.toUpperCase())return!0;i++}if(e.getElementsByTagName("table").length)return!1;if(l<2)return!1;var p,f,m=e.rows[Math.ceil(l/2)];if(1===m.cells.length&&1===m.cells[0].colSpan)return!1;if(5<=m.cells.length)return!0;if(s)return!0;for(u=0;u<l;u++){if(n=e.rows[u],p&&p!==window.getComputedStyle(n).getPropertyValue("background-color"))return!0;if(p=window.getComputedStyle(n).getPropertyValue("background-color"),f&&f!==window.getComputedStyle(n).getPropertyValue("background-image"))return!0;f=window.getComputedStyle(n).getPropertyValue("background-image")}return 20<=l||!(sa(e).width>.95*ua(window).width)&&(!(i<10)&&!e.querySelector("object, embed, iframe, applet"))};var rs=function(e){if(jo(e)||Uo(e))return!0;if(e.getAttribute("id")){var t=Kt(e.getAttribute("id"));return!!document.querySelector('[headers~="'.concat(t,'"]'))}return!1};var as=function(e,t,r,a){if(Array.isArray(t)&&(a=r,r=t,t={x:0,y:0}),"string"==typeof e)switch(e){case"left":e={x:-1,y:0};break;case"up":e={x:0,y:-1};break;case"right":e={x:1,y:0};break;case"down":e={x:0,y:1}}return function e(t,r,a,n){var o,i=a[r.y]?a[r.y][r.x]:void 0;return i?"function"==typeof n&&!0===(o=n(i,r,a))?[i]:((o=e(t,{x:r.x+t.x,y:r.y+t.y},a,n)).unshift(i),o):[]}(e,{x:t.x+e.x,y:t.y+e.y},r,a)};function ns(e){var t=Lo(e),a=t[0];return t.length<=1||a.length<=1||e.rows.length<=1||a.reduce(function(e,t,r){return e||t!==a[r+1]&&void 0!==a[r+1]},!1)}function os(e){return!Ha(document)||"TH"===e.nodeName.toUpperCase()}function is(e){return!(!e.summary||!e.caption)&&e.summary.toLowerCase()===qi(e.caption).toLowerCase()}function ls(e,t){var r=e.getAttribute("scope").toLowerCase();return-1!==t.values.indexOf(r)}function ss(e){var t=[],r=Jl(e),a=Lo(e);return r.forEach(function(e){Ia(e)&&es(e)&&!yl(e)&&(Zl(e,a).some(function(e){return null!==e&&!!Ia(e)})||t.push(e))}),!t.length||(this.relatedNodes(t),!1)}function us(e){for(var t=[],o=[],i=[],r=0;r<e.rows.length;r++)for(var a=e.rows[r],n=0;n<a.cells.length;n++)t.push(a.cells[n]);var l=t.reduce(function(e,t){return t.getAttribute("id")&&e.push(t.getAttribute("id")),e},[]);return t.forEach(function(e){var t,r=!1;if(e.hasAttribute("headers")){var a=e.getAttribute("headers").trim();if(!a)return o.push(e);var n=Eo(a);0!==n.length&&(e.getAttribute("id")&&(r=-1!==n.indexOf(e.getAttribute("id").trim())),t=n.some(function(e){return!l.includes(e)}),(r||t)&&i.push(e))}}),0<i.length?(this.relatedNodes(i),!1):!o.length||void this.relatedNodes(o)}function cs(e){var t=Jl(e),a=this,n=[];t.forEach(function(e){var t=e.getAttribute("headers");t&&(n=n.concat(t.split(/\s+/)));var r=e.getAttribute("aria-labelledby");r&&(n=n.concat(r.split(/\s+/)))});var r=t.filter(function(e){return""!==Fa(e.textContent)&&("TH"===e.nodeName.toUpperCase()||-1!==["rowheader","columnheader"].indexOf(e.getAttribute("role")))}),o=Lo(e),i=!0;return r.forEach(function(t){var e,r;t.getAttribute("id")&&n.includes(t.getAttribute("id"))||(e=qo(t,o),r=!1,jo(t)&&(r=as("down",e,o).find(function(e){return!jo(e)&&Zl(e,o).includes(t)})),!r&&Uo(t)&&(r=as("right",e,o).find(function(e){return!Uo(e)&&Zl(e,o).includes(t)})),r||a.relatedNodes(t),i=i&&r)}),!!i||void 0}function ds(e,t,r){if(!["SCRIPT","HEAD","TITLE","NOSCRIPT","STYLE","TEMPLATE"].includes(e.nodeName.toUpperCase())&&Pa(r)){var a=window.getComputedStyle(e);if("none"===a.getPropertyValue("display"))return;if("hidden"===a.getPropertyValue("visibility")){var n=oa(e),o=n&&window.getComputedStyle(n);if(!o||"hidden"!==o.getPropertyValue("visibility"))return}}return!0}var ps={};t(ps,{Color:function(){return nn},centerPointOfRect:function(){return fs},elementHasImage:function(){return Ja},elementIsDistinct:function(){return hs},filteredRectStack:function(){return vs},flattenColors:function(){return bs},getBackgroundColor:function(){return xs},getBackgroundStack:function(){return Ds},getContrast:function(){return Es},getForegroundColor:function(){return As},getOwnBackgroundColor:function(){return on},getRectStack:function(){return gs},getTextShadowColors:function(){return ws},hasValidContrastRatio:function(){return Cs},incompleteData:function(){return Xa}});var fs=function(e){if(!(e.left>window.innerWidth||e.top>window.innerHeight))return{x:Math.min(Math.ceil(e.left+e.width/2),window.innerWidth-1),y:Math.min(Math.ceil(e.top+e.height/2),window.innerHeight-1)}};function ms(e){return e.getPropertyValue("font-family").split(/[,;]/g).map(function(e){return e.trim().toLowerCase()})}var hs=function(e,t){var a=window.getComputedStyle(e);if("none"!==a.getPropertyValue("background-image"))return!0;if(["border-bottom","border-top","outline"].reduce(function(e,t){var r=new nn;return r.parseString(a.getPropertyValue(t+"-color")),e||"none"!==a.getPropertyValue(t+"-style")&&0<parseFloat(a.getPropertyValue(t+"-width"))&&0!==r.alpha},!1))return!0;var r=window.getComputedStyle(t);if(ms(a)[0]!==ms(r)[0])return!0;var n=["text-decoration-line","text-decoration-style","font-weight","font-style","font-size"].reduce(function(e,t){return e||a.getPropertyValue(t)!==r.getPropertyValue(t)},!1),o=a.getPropertyValue("text-decoration");return o.split(" ").length<3&&(n=n||o!==r.getPropertyValue("text-decoration")),n};var gs=function(e){var t=Aa(e),r=ka(e);return!r||r.length<=1?[t]:r.some(function(e){return void 0===e})?null:(r.splice(0,0,t),r)};var vs=function(n){var o=gs(n);if(o&&1===o.length)return o[0];if(o&&1<o.length){var i,l=o.shift();return o.forEach(function(e,t){var r,a;0!==t&&(r=o[t-1],a=o[t],i=r.every(function(e,t){return e===a[t]})||l.includes(n))}),i?o[0]:(Xa.set("bgColor","elmPartiallyObscuring"),null)}return Xa.set("bgColor","outsideViewport"),null};var bs=function(e,t){var r=e.alpha,a=(1-r)*t.red+r*e.red,n=(1-r)*t.green+r*e.green,o=(1-r)*t.blue+r*e.blue,i=e.alpha+t.alpha*(1-e.alpha);return new nn(a,n,o,i)};function ys(e,t,r){if(0<e)for(var a=e-1;0<=a;a--){if(function(e,t){var r=e.getClientRects()[0],a=fn(r.left,r.top);if(a)for(var n=0;n<a.length;n++)if(a[n]!==e&&a[n]===t)return 1}(r,t[a]))return 1;t.splice(a,1)}}var Ds=function(e){var t,r,a,n=vs(e);if(null===n)return null;n=cn(n,e),r=(t=n).indexOf(document.body),a=t,(1<r||-1===r)&&!Ja(document.documentElement)&&0===on(window.getComputedStyle(document.documentElement)).alpha&&(1<r&&a.splice(r,1),a.splice(t.indexOf(document.documentElement),1),a.push(document.body));var o=(n=a).indexOf(e);return ys(o,n,e)?(Xa.set("bgColor","bgOverlap"),null):-1!==o?n:null};var ws=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},u=t.minRatio,c=t.maxRatio,d=window.getComputedStyle(e),r=d.getPropertyValue("text-shadow");if("none"===r)return[];var a=d.getPropertyValue("font-size"),p=parseInt(a);ot(!1===isNaN(p),"Unable to determine font-size value ".concat(a));var f=[];return function(e){var t={pixels:[]},r=e.trim(),a=[t];if(!r)return[];for(;r;){var n=r.match(/^rgba?\([0-9,.\s]+\)/i)||r.match(/^[a-z]+/i)||r.match(/^#[0-9a-f]+/i),o=r.match(/^([0-9.-]+)px/i)||r.match(/^(0)/);if(n)ot(!t.colorStr,"Multiple colors identified in text-shadow: ".concat(e)),r=r.replace(n[0],"").trim(),t.colorStr=n[0];else if(o){ot(t.pixels.length<3,"Too many pixel units in text-shadow: ".concat(e)),r=r.replace(o[0],"").trim();var i=parseFloat(("."===o[1][0]?"0":"")+o[1]);t.pixels.push(i)}else{if(","!==r[0])throw new Error("Unable to process text-shadows: ".concat(e));ot(2<=t.pixels.length,"Missing pixel value in text-shadow: ".concat(e)),t={pixels:[]},a.push(t),r=r.substr(1).trim()}}return a}(r).forEach(function(e){var t,r=e.colorStr,a=e.pixels,r=r||d.getPropertyValue("color"),n=vc(a,3),o=n[0],i=n[1],l=n[2],s=void 0===l?0:l;(!u||p*u<=s)&&(!c||s<p*c)&&(t=function(e){var t=e.colorStr,r=e.offsetX,a=e.offsetY,n=e.blurRadius,o=e.fontSize;if(n<r||n<a)return new nn(0,0,0,0);var i=new nn;return i.parseString(t),i.alpha*=function(e,t){return.185/(e/t+.4)}(n,o),i}({colorStr:r,offsetY:o,offsetX:i,blurRadius:s,fontSize:p}),f.push(t))}),f};var xs=function(l){var s=1<arguments.length&&void 0!==arguments[1]?arguments[1]:[],u=ws(l,{minRatio:2<arguments.length&&void 0!==arguments[2]?arguments[2]:.1}),e=Ds(l);return(e||[]).some(function(e){var t,r,a,n,o=window.getComputedStyle(e),i=on(o);return a=i,(n=(t=l)!==(r=e)&&!pn(t,r)&&0!==a.alpha)&&Xa.set("bgColor","elmPartiallyObscured"),n||Ja(e,o)?(u=null,s.push(e),!0):0!==i.alpha&&(s.push(e),u.push(i),1===i.alpha)}),null===u||null===e?null:(u.push(new nn(255,255,255,1)),u.reduce(bs))};var Es=function(e,t){if(!t||!e)return null;t.alpha<1&&(t=bs(t,e));var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(a,r)+.05)/(Math.min(a,r)+.05)};var As=function(e,t,r){var a=window.getComputedStyle(e),n=new nn;n.parseString(a.getPropertyValue("color"));var o=function e(t){if(!t)return 1;var r=_n(t);if(r&&void 0!==r._opacity&&null!==r._opacity)return r._opacity;var a=window.getComputedStyle(t).getPropertyValue("opacity")*e(t.parentElement);return r&&(r._opacity=a),a}(e);if(n.alpha=n.alpha*o,1===n.alpha)return n;if(null!==(r=r||xs(e,[])))return bs(n,r);var i=Xa.get("bgColor");return Xa.set("fgColor",i),null};var Cs=function(e,t,r,a){var n=Es(e,t),o=a&&Math.ceil(72*r)/96<14||!a&&Math.ceil(72*r)/96<18?4.5:3;return{isValid:o<n,contrastRatio:n,expectedContrastRatio:o}},Fs=$n(function(e,t){var r=window.getComputedStyle(e,t),a=on(r);return"none"!==r.getPropertyValue("content")&&"absolute"===r.getPropertyValue("position")&&0!==parseInt(r.getPropertyValue("width"))&&0!==parseInt(r.getPropertyValue("height"))&&(0!==a.alpha||"none"!==r.getPropertyValue("background-image"))});function ks(e,t,r){if(!ma(e,!1))return!0;var a=t.ignoreUnicode,n=t.ignoreLength,o=t.boldValue,i=t.boldTextPt,l=t.largeTextPt,s=t.contrastRatio,u=t.shadowOutlineEmMax,c=_a(r,!1,!0);if(!$i(c,{nonBmp:!0})||""!==Fa(Gi(c,{nonBmp:!0}))||!a){var d,p,f,m=[],h=xs(e,m,u),g=As(e,!1,h),v=ws(e,{maxRatio:u}),b=window.getComputedStyle(e),y=parseFloat(b.getPropertyValue("font-size")),D=b.getPropertyValue("font-weight"),w=parseFloat(D)>=o||"bold"===D,x=null;0===v.length?x=Es(h,g):g&&h&&(d=[].concat(gc(v),[h]).reduce(bs),p=Es(h,d),f=Es(d,g),x=Math.max(p,f));for(var E=Math.ceil(72*y)/96,A=w&&E<i||!w&&E<l?s.normal:s.large,C=A.expected,F=A.minThreshold,k=A.maxThreshold,R=C<x,T=e.parentElement;T;){if(Fs(T,":before")||Fs(T,":after"))return this.data({messageKey:"pseudoContent"}),void this.relatedNodes(T);T=T.parentElement}if("number"==typeof F&&x<F||"number"==typeof k&&k<x)return!0;var N,_=Math.floor(100*x)/100;null===h&&(N=Xa.get("bgColor"));var O=1==_,S=1===c.length;O?N=Xa.set("bgColor","equalRatio"):S&&!n&&(N="shortTextContent");var P={fgColor:g?g.toHexString():void 0,bgColor:h?h.toHexString():void 0,contrastRatio:_,fontSize:"".concat((72*y/96).toFixed(1),"pt (").concat(y,"px)"),fontWeight:w?"bold":"normal",messageKey:N,expectedContrastRatio:C+":1"};return(this.data(P),null===g||null===h||O||S&&!n&&!R)?(N=null,Xa.clear(),void this.relatedNodes(m)):(R||this.relatedNodes(m),R)}this.data({messageKey:"nonBmp"})}function Rs(e,t){var r=e.getRelativeLuminance(),a=t.getRelativeLuminance();return(Math.max(r,a)+.05)/(Math.min(r,a)+.05)}var Ts=["block","list-item","table","flex","grid","inline-block"];function Ns(e){var t=window.getComputedStyle(e).getPropertyValue("display");return-1!==Ts.indexOf(t)||"table-"===t.substr(0,6)}function _s(e){if(Ns(e))return!1;for(var t=oa(e);1===t.nodeType&&!Ns(t);)t=oa(t);if(this.relatedNodes([t]),hs(e,t))return!0;var r=As(e),a=As(t);if(r&&a){var n=Rs(r,a);if(1===n)return!0;if(3<=n)return Xa.set("fgColor","bgContrast"),this.data({messageKey:Xa.get("fgColor")}),void Xa.clear();if(r=xs(e),a=xs(t),!r||!a||3<=Rs(r,a)){var o=r&&a?"bgContrast":Xa.get("bgColor");return Xa.set("fgColor",o),this.data({messageKey:Xa.get("fgColor")}),void Xa.clear()}return!1}}function Os(e,t,r){if("input"!==r.props.nodeName)return!0;var a=["text","search","number","tel"],n=["text","search","url"],o={bday:["text","search","date"],email:["text","search","email"],username:["text","search","email"],"street-address":["text"],tel:["text","search","tel"],"tel-country-code":["text","search","tel"],"tel-national":["text","search","tel"],"tel-area-code":["text","search","tel"],"tel-local":["text","search","tel"],"tel-local-prefix":["text","search","tel"],"tel-local-suffix":["text","search","tel"],"tel-extension":["text","search","tel"],"cc-number":a,"cc-exp":["text","search","month","tel"],"cc-exp-month":a,"cc-exp-year":a,"cc-csc":a,"transaction-amount":a,"bday-day":a,"bday-month":a,"bday-year":a,"new-password":["text","search","password"],"current-password":["text","search","password"],url:n,photo:n,impp:n};"object"===cc(t)&&Object.keys(t).forEach(function(e){o[e]||(o[e]=[]),o[e]=o[e].concat(t[e])});var i=r.attr("autocomplete").split(/\s+/g).map(function(e){return e.toLowerCase()}),l=i[i.length-1];if(Xi.stateTerms.includes(l))return!0;var s=o[l],u=r.hasAttr("type")?Fa(r.attr("type")).toLowerCase():"text",u=Ao().includes(u)?u:"text";return void 0===s?"text"===u:s.includes(u)}function Ss(e,t,r){var a=r.attr("autocomplete")||"";return Ji(a,t)}function Ps(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0;if(!t.attribute||"string"!=typeof t.attribute)throw new TypeError("attr-non-space-content requires options.attribute to be a string");if(!r.hasAttr(t.attribute))return this.data({messageKey:"noAttr"}),!1;var a=r.attr(t.attribute);return!!Fa(a)||(this.data({messageKey:"emptyAttr"}),!1)}function Is(e){return e.some(function(e){return!0===e.result})&&e.forEach(function(e){e.result=!0}),e}function Bs(e,t,r){if(!t||!t.selector||"string"!=typeof t.selector)throw new TypeError("has-descendant requires options.selector to be a string");var a=io(r,t.selector,function(e){return ma(e.actualNode,!0)});return this.relatedNodes(a.map(function(e){return e.actualNode})),0<a.length}function Ls(e,t,r){try{return""!==Fa(hi(r))}catch(e){return}}function qs(e,t,r){return si(r,t.matcher)}function Ms(e){return e.filter(function(e){return"ignored"!==e.data})}function js(e,t,r){if(!t||!t.selector||"string"!=typeof t.selector)throw new TypeError("page-no-duplicate requires options.selector to be a string");var a="page-no-duplicate;"+t.selector;if(!Ea.get(a)){Ea.set(a,!0);var n=io(axe._tree[0],t.selector,function(e){return ma(e.actualNode)});return"string"==typeof t.nativeScopeFilter&&(n=n.filter(function(e){return e.actualNode.hasAttribute("role")||!aa(e,t.nativeScopeFilter)})),this.relatedNodes(n.filter(function(e){return e!==r}).map(function(e){return e.actualNode})),n.length<=1}this.data("ignored")}var Us=" > ";function Vs(e,t){return e=e.slice(0,e.length-1),t&&(e=e.concat(t)),e.join(Us)}function Hs(n){if(n.length<2)return n;var t=n.find(function(e){return!e.node._fromFrame}),o=t.data.headingOrder.map(function(e){return bc({},e,{ancestry:Vs(t.node.ancestry,e.ancestry)})}),e=n.filter(function(e){return e.data&&e.data.headingOrder&&e.node._fromFrame});e.forEach(function(t){t.data.headingOrder=t.data.headingOrder.map(function(e){return bc({},e,{ancestry:Vs(t.node.ancestry,e.ancestry)})})});for(var r,a,i=!1;e.length;){for(var l=0;l<e.length;){var s=e[l],u=function(e){var t=Vs(e.node.ancestry),r=o.find(function(e){return e.ancestry===t});return o.indexOf(r)}(s);-1!==u?(r=u,a=s,o.splice.apply(o,[r,1].concat(gc(a.data.headingOrder))),i=!0,e.splice(l,1)):l++}if(!i)throw new Error("Unable to find parent iframe of heading-order results")}n.forEach(function(e){var t=e.node.ancestry.join(Us),r=o.find(function(e){return e.ancestry===t}),a=o.indexOf(r);o.splice(a,1,{level:o[a].level,result:e})}),o=o.filter(function(e){return 0<e.level});for(var c=1;c<n.length;c++)!function(e){var t=n[e],r=o.find(function(e){return e.result===t}),a=o.indexOf(r);1<o[a].level-o[a-1].level&&(t.result=!1)}(c);return n}function zs(){if(t=Ea.get("headingOrder"))return!0;var e=io(axe._tree[0],"h1, h2, h3, h4, h5, h6, [role=heading], iframe, frame",function(e){return ma(e.actualNode,!0)}),t=e.map(function(e){return{ancestry:[gr(e.actualNode)],level:function(e){var t=e.attr("role");if(t&&t.includes("heading")){var r=e.attr("aria-level"),a=parseInt(r,10);return isNaN(a)||a<1||6<a?2:a}var n=e.props.nodeName.match(/h(\d)/);return n?parseInt(n[1],10):-1}(e)}});return this.data({headingOrder:t}),Ea.set("headingOrder",e),!0}function $s(e){if(e.length<2)return e;function t(r){var e,t=s[r],a=t.data,n=a.name,o=a.urlProps;if(c[n])return"continue";var i=s.filter(function(e,t){return e.data.name===n&&t!==r}),l=i.every(function(e){return function a(n,o){if(!n||!o)return!1;var e=Object.getOwnPropertyNames(n),t=Object.getOwnPropertyNames(o);return e.length===t.length&&e.every(function(e){var t=n[e],r=o[e];return cc(t)===cc(r)&&("object"==typeof t||"object"==typeof r?a(t,r):t===r)})}(e.data.urlProps,o)});i.length&&!l&&(t.result=void 0),t.relatedNodes=[],(e=t.relatedNodes).push.apply(e,gc(i.map(function(e){return e.relatedNodes[0]}))),c[n]=i,u.push(t)}for(var s=e.filter(function(e){return void 0!==e.result}),u=[],c={},r=0;r<s.length;r++)t(r);return u}var Ws={};t(Ws,{aria:function(){return To},color:function(){return ps},dom:function(){return Zr},forms:function(){return Gs},matches:function(){return si},standards:function(){return _l},table:function(){return Xl},text:function(){return ji},utils:function(){return tt}});var Gs={};t(Gs,{isAriaCombobox:function(){return Ri},isAriaListbox:function(){return ki},isAriaRange:function(){return Ni},isAriaTextbox:function(){return Fi},isDisabled:function(){return Ks},isNativeSelect:function(){return Ci},isNativeTextbox:function(){return Ai}});var Ys=["fieldset","button","select","input","textarea"];var Ks=function e(t){if("boolean"==typeof(n=t._isDisabled))return n;var r=t.props.nodeName,a=t.attr("aria-disabled"),n=!(!Ys.includes(r)||!t.hasAttr("disabled"))||(a?"true"===a.toLowerCase():!!t.parent&&e(t.parent));return t._isDisabled=n};function Xs(e,t,r){var a=ji.accessibleTextVirtual(r),n=ji.sanitize(ji.removeUnicode(a,{emoji:!0,nonBmp:!0,punctuations:!0})).toLowerCase();if(n){var o={name:n,urlProps:Zr.urlPropsFromAttribute(e,"href")};return this.data(o),this.relatedNodes([e]),!0}}function Js(e,t,r){return vo(r,"a[href]").some(function(e){return/^#[^/!]/.test(e.actualNode.getAttribute("href"))})}function Qs(e,t,r){var a=r.attr("content")||"",n=a.split(/[;,]/);return""===a||"0"===n[0]}function Zs(e){var t=window.getComputedStyle(function(e){for(var t=e,r=e.textContent.trim(),a=r;a===r&&void 0!==t;){var n=-1;if(0===(e=t).children.length)return e;for(;n++,""===(a=e.children[n].textContent.trim())&&n+1<e.children.length;);t=e.children[n]}return e}(e));return{fontWeight:function(e){switch(e){case"lighter":return 100;case"normal":return 400;case"bold":return 700;case"bolder":return 900}return e=parseInt(e),isNaN(e)?400:e}(t.getPropertyValue("font-weight")),fontSize:parseInt(t.getPropertyValue("font-size")),isItalic:"italic"===t.getPropertyValue("font-style")}}function eu(r,a,e){return e.reduce(function(e,t){return e||(!t.size||r.fontSize/t.size>a.fontSize)&&(!t.weight||r.fontWeight-t.weight>a.fontWeight)&&(!t.italic||r.isItalic&&!a.isItalic)},!1)}function tu(e,t,r){var a=Array.from(e.parentNode.children),n=a.indexOf(e),o=(t=t||{}).margins||[],i=a.slice(n+1).find(function(e){return"P"===e.nodeName.toUpperCase()}),l=a.slice(0,n).reverse().find(function(e){return"P"===e.nodeName.toUpperCase()}),s=Zs(e),u=i?Zs(i):null,c=l?Zs(l):null;if(!u||!eu(s,u,o))return!0;var d=aa(r,"blockquote");return!!(d&&"BLOCKQUOTE"===d.nodeName.toUpperCase()||c&&!eu(s,c,o))&&void 0}var ru=ul("landmark"),au=["alert","log","status"];function nu(e,t){var r,a,n,o,i,l=e.actualNode;if(a=t,n=(r=e).actualNode,o=Ko(r),i=(n.getAttribute("aria-live")||"").toLowerCase().trim(),["assertive","polite"].includes(i)||au.includes(o)||ru.includes(o)||a.regionMatcher&&si(r,a.regionMatcher)||un(e.actualNode)&&ia(e.actualNode,"href")||!ma(l,!0)){for(var s=e;s;)s._hasRegionDescendant=!0,s=s.parent;return[]}return l!==document.body&&Ia(l,!0)?[e]:e.children.filter(function(e){return 1===e.actualNode.nodeType}).map(function(e){return nu(e,t)}).reduce(function(e,t){return e.concat(t)},[])}function ou(e,t){var r=iu(t),a=iu(e);return!(!r||!a)&&r.includes(a)}function iu(e){var t=Gi(e,{emoji:!0,nonBmp:!0,punctuations:!0});return Fa(t)}function lu(e){return""!==(e||"").trim()}var su=function(e,t,r){return r.initiator};var uu=function(e,t){try{return"svg"===t.props.nodeName?!0:!!Or(t,"svg")}catch(e){return!1}};function cu(e,t){var r=ui(t).namingMethods;return(!r||0===r.length)&&("combobox"!==Io(t)||!vo(t,'input:not([type="hidden"])').length)}var du={"abstractrole-evaluate":Cl,"aria-allowed-attr-evaluate":Fl,"aria-allowed-role-evaluate":kl,"aria-errormessage-evaluate":Rl,"aria-hidden-body-evaluate":Tl,"aria-prohibited-attr-evaluate":Nl,"aria-required-attr-evaluate":Ol,"aria-required-children-evaluate":Sl,"aria-required-parent-evaluate":Il,"aria-roledescription-evaluate":Bl,"aria-unsupported-attr-evaluate":Ll,"aria-valid-attr-evaluate":ql,"aria-valid-attr-value-evaluate":Ml,"fallbackrole-evaluate":jl,"has-global-aria-attribute-evaluate":Ul,"has-widget-role-evaluate":Vl,"invalidrole-evaluate":Hl,"is-element-focusable-evaluate":zl,"no-implicit-explicit-label-evaluate":$l,"unsupportedrole-evaluate":Wl,"valid-scrollable-semantics-evaluate":Kl,"caption-faked-evaluate":ns,"html5-scope-evaluate":os,"same-caption-summary-evaluate":is,"scope-value-evaluate":ls,"td-has-header-evaluate":ss,"td-headers-attr-evaluate":us,"th-has-data-cells-evaluate":cs,"hidden-content-evaluate":ds,"color-contrast-evaluate":ks,"link-in-text-block-evaluate":_s,"autocomplete-appropriate-evaluate":Os,"autocomplete-valid-evaluate":Ss,"attr-non-space-content-evaluate":Ps,"has-descendant-after":Is,"has-descendant-evaluate":Bs,"has-text-content-evaluate":Ls,"matches-definition-evaluate":qs,"page-no-duplicate-after":Ms,"page-no-duplicate-evaluate":js,"heading-order-after":Hs,"heading-order-evaluate":zs,"identical-links-same-purpose-after":$s,"identical-links-same-purpose-evaluate":Xs,"internal-link-present-evaluate":Js,"meta-refresh-evaluate":Qs,"p-as-heading-evaluate":tu,"region-evaluate":function(e,t,r){if(a=Ea.get("regionlessNodes"))return!a.includes(r);var a=nu(axe._tree[0],t).map(function(e){for(;e.parent&&!e.parent._hasRegionDescendant&&e.parent.actualNode!==document.body;)e=e.parent;return e}).filter(function(e,t,r){return r.indexOf(e)===t});return Ea.set("regionlessNodes",a),!a.includes(r)},"skip-link-evaluate":function(e){var t=ia(e,"href");return!!t&&(ma(t,!0)||void 0)},"unique-frame-title-after":function(e){var t={};return e.forEach(function(e){t[e.data]=void 0!==t[e.data]?++t[e.data]:0}),e.forEach(function(e){e.result=!!t[e.data]}),e},"unique-frame-title-evaluate":function(e,t,r){var a=Fa(r.attr("title")).toLowerCase();return this.data(a),!0},"aria-label-evaluate":function(e,t,r){return!!Fa(Oo(r))},"aria-labelledby-evaluate":function(e,t,r){try{return!!Fa(Mi(r))}catch(e){return}},"avoid-inline-spacing-evaluate":function(t,e){var r=e.cssProperties.filter(function(e){if("important"===t.style.getPropertyPriority(e))return e});return!(0<r.length)||(this.data(r),!1)},"doc-has-title-evaluate":function(){var e=document.title;return!!Fa(e)},"exists-evaluate":function(){},"has-alt-evaluate":function(e,t,r){var a=r.props.nodeName;return!!["img","input","area"].includes(a)&&r.hasAttr("alt")},"is-on-screen-evaluate":function(e){return ma(e,!1)&&!ca(e)},"non-empty-if-present-evaluate":function(e,t,r){var a=r.props.nodeName,n=(r.attr("type")||"").toLowerCase(),o=r.attr("value");return o&&this.data({messageKey:"has-label"}),!("input"!==a||!["submit","reset"].includes(n))&&null===o},"presentational-role-evaluate":function(e,t,r){var a=Ko(r),n=Io(r);if(["presentation","none"].includes(a))return this.data({role:a}),!0;if(!["presentation","none"].includes(n))return!1;var o=No().some(function(e){return r.hasAttr(e)}),i=Ua(r),l=o&&!i?"globalAria":!o&&i?"focusable":"both";return this.data({messageKey:l,role:a}),!1},"svg-non-empty-title-evaluate":function(e,t,r){if(r.children){var a=r.children.find(function(e){return"title"===e.props.nodeName});if(!a)return this.data({messageKey:"noTitle"}),!1;try{if(""===_a(a))return this.data({messageKey:"emptyTitle"}),!1}catch(e){return}return!0}},"css-orientation-lock-evaluate":function(e,t,r,a){var n=(a||{}).cssom,o=void 0===n?void 0:n,i=(t||{}).degreeThreshold,u=void 0===i?0:i;if(o&&o.length){function l(){var e=f[p],t=d[e],a=t.root,r=t.rules.filter(m);if(!r.length)return"continue";r.forEach(function(e){var t=e.cssRules;Array.from(t).forEach(function(e){var t,r=function(e){var t=e.selectorText,r=e.style;if(!t||r.length<=0)return!1;var a=r.transform||r.webkitTransform||r.msTransform||!1;if(!a)return!1;var n=a.match(/(rotate|rotateZ|rotate3d|matrix|matrix3d)\(([^)]+)\)(?!.*(rotate|rotateZ|rotate3d|matrix|matrix3d))/);if(!n)return!1;var o=vc(n,3),i=o[1],l=o[2],s=function(e,t){switch(e){case"rotate":case"rotateZ":return h(t);case"rotate3d":var r=vc(t.split(",").map(function(e){return e.trim()}),4),a=r[2],n=r[3];if(0===parseInt(a))return;return h(n);case"matrix":case"matrix3d":return function(e){var t=e.split(",");if(t.length<=6){var r=vc(t,2),a=r[0],n=r[1];return g(Math.atan2(parseFloat(n),parseFloat(a)))}var o=parseFloat(t[8]),i=Math.asin(o),l=Math.cos(i);return g(Math.acos(parseFloat(t[0])/l))}(t);default:return}}(i,l);if(!s)return!1;if(s=Math.abs(s),Math.abs(s-180)%180<=u)return!1;return Math.abs(s-90)%90<=u}(e);r&&"HTML"!==e.selectorText.toUpperCase()&&(t=Array.from(a.querySelectorAll(e.selectorText))||[],c=c.concat(t)),s=s||r})})}for(var s=!1,c=[],d=o.reduce(function(e,t){var r=t.sheet,a=t.root,n=t.shadowId,o=n||"topDocument";if(e[o]||(e[o]={root:a,rules:[]}),!r||!r.cssRules)return e;var i=Array.from(r.cssRules);return e[o].rules=e[o].rules.concat(i),e},{}),p=0,f=Object.keys(d);p<f.length;p++)l();return s?(c.length&&this.relatedNodes(c),!1):!0}function m(e){var t=e.type,r=e.cssText;return 4===t&&(/orientation:\s*landscape/i.test(r)||/orientation:\s*portrait/i.test(r))}function h(e){var t=vc(e.match(/(deg|grad|rad|turn)/)||[],1)[0];if(t){var r,a=parseFloat(e.replace(t,""));switch(t){case"rad":return g(a);case"grad":return function(e){(e%=400)<0&&(e+=400);return Math.round(e/400*360)}(a);case"turn":return r=a,Math.round(360/(1/r));case"deg":default:return parseInt(a)}}}function g(e){return Math.round(e*(180/Math.PI))}},"meta-viewport-scale-evaluate":function(e,t,r){var a=t||{},n=a.scaleMinimum,o=void 0===n?2:n,i=a.lowerBound,l=void 0!==i&&i,s=r.attr("content")||"";if(!s)return!0;var u=s.split(/[;,]/).reduce(function(e,t){var r=t.trim();if(!r)return e;var a=vc(r.split("="),2),n=a[0],o=a[1];if(!n||!o)return e;var i=n.toLowerCase().trim(),l=o.toLowerCase().trim();return"maximum-scale"===i&&"yes"===l&&(l=1),"maximum-scale"===i&&parseFloat(l)<0||(e[i]=l),e},{});return!!(l&&u["maximum-scale"]&&parseFloat(u["maximum-scale"])<l)||(l||"no"!==u["user-scalable"]?!(u["maximum-scale"]&&parseFloat(u["maximum-scale"])<o)||(this.data("maximum-scale"),!1):(this.data("user-scalable=no"),!1))},"duplicate-id-after":function(e){var t=[];return e.filter(function(e){return-1===t.indexOf(e.data)&&(t.push(e.data),!0)})},"duplicate-id-evaluate":function(t){var e=t.getAttribute("id").trim();if(!e)return!0;var r=ta(t),a=Array.from(r.querySelectorAll('[id="'.concat(Kt(e),'"]'))).filter(function(e){return e!==t});return a.length&&this.relatedNodes(a),this.data(e),0===a.length},"accesskeys-after":function(e){var r={};return e.filter(function(e){if(!e.data)return!1;var t=e.data.toUpperCase();return r[t]?(r[t].relatedNodes.push(e.relatedNodes[0]),!1):((r[t]=e).relatedNodes=[],!0)}).map(function(e){return e.result=!!e.relatedNodes.length,e})},"accesskeys-evaluate":function(e){return ma(e,!1)&&(this.data(e.getAttribute("accesskey")),this.relatedNodes([e])),!0},"focusable-content-evaluate":function(e,t,r){var a=r.tabbableElements;return!!a&&0<a.filter(function(e){return e!==r}).length},"focusable-disabled-evaluate":function(e,t,r){var n=["BUTTON","FIELDSET","INPUT","SELECT","TEXTAREA"],a=r.tabbableElements;if(!a||!a.length)return!0;var o=a.reduce(function(e,t){var r=t.actualNode,a=r.nodeName.toUpperCase();return n.includes(a)&&e.push(r),e},[]);return this.relatedNodes(o),!(!o.length||!Ga())||0===o.length},"focusable-element-evaluate":function(e,t,n){if(n.hasAttr("contenteditable")&&function e(t){var r=t.attr("contenteditable");if("true"===r||""===r)return!0;if("false"===r)return!1;var a=Or(n.parent,"[contenteditable]");if(!a)return!1;return e(a)}(n))return!0;var r=n.isFocusable,a=parseInt(n.attr("tabindex"),10);return(a=isNaN(a)?null:a)?r&&0<=a:r},"focusable-modal-open-evaluate":function(e,t,r){var a=r.tabbableElements.map(function(e){return e.actualNode});return!a||!a.length||(!Ga()||void this.relatedNodes(a))},"focusable-no-name-evaluate":function(e,t,r){var a=r.attr("tabindex");if(!(Ua(r)&&-1<a))return!1;try{return!Li(r)}catch(e){return}},"focusable-not-tabbable-evaluate":function(e,t,r){var n=["BUTTON","FIELDSET","INPUT","SELECT","TEXTAREA"],a=r.tabbableElements;if(!a||!a.length)return!0;var o=a.reduce(function(e,t){var r=t.actualNode,a=r.nodeName.toUpperCase();return n.includes(a)||e.push(r),e},[]);return this.relatedNodes(o),!!(0<o.length&&Ga())||0===o.length},"landmark-is-top-level-evaluate":function(e){var t=ul("landmark"),r=oa(e),a=Ko(e);for(this.data({role:a});r;){var n=r.getAttribute("role");if(n||"FORM"===r.nodeName.toUpperCase()||(n=$o(r)),n&&t.includes(n)&&("main"!==n||"complementary"!==a))return!1;r=oa(r)}return!0},"no-focusable-content-evaluate":function(e,t,r){if(r.children)try{return!r.children.some(function e(t){if(Ua(t))return!0;if(t.children)return t.children.some(e);if(1===t.props.nodeType)throw new Error("Cannot determine children");return!1})}catch(e){return}},"tabindex-evaluate":function(e,t,r){var a=parseInt(r.attr("tabindex"),10);return!!isNaN(a)||a<=0},"alt-space-value-evaluate":function(e,t,r){var a=r.attr("alt");return"string"==typeof a&&/^\s+$/.test(a)},"duplicate-img-label-evaluate":function(e,t,r){if(["none","presentation"].includes(Ko(r)))return!1;var a=Or(r,t.parentSelector);if(!a)return!1;var n=_a(a,!0).toLowerCase();return""!==n&&n===Li(r).toLowerCase()},"explicit-evaluate":function(e,t,r){if(r.attr("id")){if(!r.actualNode)return;var a=ta(r.actualNode),n=Kt(r.attr("id")),o=Array.from(a.querySelectorAll('label[for="'.concat(n,'"]')));if(o.length)try{return o.some(function(e){return!ma(e)||!!qi(e)})}catch(e){return}}return!1},"help-same-as-label-evaluate":function(e,t,r){var a=Zi(r),n=e.getAttribute("title");return!!a&&(n||(n="",e.getAttribute("aria-describedby")&&(n=Na(e,"aria-describedby").map(function(e){return e?qi(e):""}).join(""))),Fa(n)===Fa(a))},"hidden-explicit-label-evaluate":function(e,t,r){if(r.hasAttr("id")){if(!r.actualNode)return;var a,n=ta(e),o=Kt(e.getAttribute("id")),i=n.querySelector('label[for="'.concat(o,'"]'));if(i&&!ma(i,!0)){try{a=Li(r).trim()}catch(e){return}return""===a}}return!1},"implicit-evaluate":function(e,t,r){try{var a=Or(r,"label");return a?!!Li(a,{inControlContext:!0}):!1}catch(e){return}},"label-content-name-mismatch-evaluate":function(e,t,r){var a=t||{},n=a.pixelThreshold,o=a.occuranceThreshold,i=qi(e).toLowerCase();if(!(Yi(i)<1)){var l=rl(r).filter(function(e){return!Ki(e,n,o)}).map(function(e){return e.actualNode.nodeValue}).join(""),s=Fa(l).toLowerCase();return!s||(Yi(s)<1?!!ou(s,i)||void 0:ou(s,i))}},"multiple-label-evaluate":function(e){var t=Kt(e.getAttribute("id")),r=e.parentNode,a=(a=ta(e)).documentElement||a,n=Array.from(a.querySelectorAll('label[for="'.concat(t,'"]')));for(n.length&&(n=n.filter(function(e){return ma(e)}));r;)"LABEL"===r.nodeName.toUpperCase()&&-1===n.indexOf(r)&&n.push(r),r=r.parentNode;if(this.relatedNodes(n),1<n.length){var o=n.filter(function(e){return ma(e,!0)});if(1<o.length)return;return!Na(e,"aria-labelledby").includes(o[0])&&void 0}return!1},"title-only-evaluate":function(e,t,r){var a=Zi(r),n=di(r),o=r.attr("aria-describedby");return!(a||!n&&!o)},"landmark-is-unique-after":function(e){var r=[];return e.filter(function(t){var e=r.find(function(e){return t.data.role===e.data.role&&t.data.accessibleText===e.data.accessibleText});return e?(e.result=!1,e.relatedNodes.push(t.relatedNodes[0]),!1):(r.push(t),t.relatedNodes=[],!0)})},"landmark-is-unique-evaluate":function(e,t,r){var a=Ko(e),n=(n=Li(r))?n.toLowerCase():null;return this.data({role:a,accessibleText:n}),this.relatedNodes([e]),!0},"has-lang-evaluate":function(e,t,r){var a=void 0!==document&&rr(document);return t.attributes.includes("xml:lang")&&t.attributes.includes("lang")&&lu(r.attr("xml:lang"))&&!lu(r.attr("lang"))&&!a?(this.data({messageKey:"noXHTML"}),!1):!!t.attributes.some(function(e){return lu(r.attr(e))})||(this.data({messageKey:"noLang"}),!1)},"valid-lang-evaluate":function(e,n,o){var i=[];return n.attributes.forEach(function(e){var t,r,a=o.attr(e);"string"==typeof a&&(t=Dn(a),r=n.value?!n.value.map(Dn).includes(t):!ko(t),(""!==t&&r||""!==a&&!Fa(a))&&i.push(e+'="'+o.attr(e)+'"'))}),!!i.length&&(this.data(i),!0)},"xml-lang-mismatch-evaluate":function(e,t,r){return Dn(r.attr("lang"))===Dn(r.attr("xml:lang"))},"dlitem-evaluate":function(e){var t=oa(e),r=t.nodeName.toUpperCase(),a=Io(t);return"DIV"===r&&["presentation","none",null].includes(a)&&(r=(t=oa(t)).nodeName.toUpperCase(),a=Io(t)),"DL"===r&&!(a&&!["presentation","none","list"].includes(a))},"listitem-evaluate":function(e){var t=oa(e);if(t){var r=t.nodeName.toUpperCase(),a=(t.getAttribute("role")||"").toLowerCase();return!!["presentation","none","list"].includes(a)||(a&&Po(a)?(this.data({messageKey:"roleNotValid"}),!1):["UL","OL"].includes(r))}},"only-dlitems-evaluate":function(e,t,r){var o=["definition","term","list"],a=r.children.reduce(function(e,t){var r=t.actualNode;return"DIV"===r.nodeName.toUpperCase()&&null===Ko(r)?e.concat(t.children):e.concat(t)},[]).reduce(function(e,t){var r,a=t.actualNode,n=a.nodeName.toUpperCase();return 1===a.nodeType&&ma(a,!0,!1)?(r=Io(a),("DT"!==n&&"DD"!==n||r)&&(o.includes(r)||e.badNodes.push(a))):3===a.nodeType&&""!==a.nodeValue.trim()&&(e.hasNonEmptyTextNode=!0),e},{badNodes:[],hasNonEmptyTextNode:!1});return a.badNodes.length&&this.relatedNodes(a.badNodes),!!a.badNodes.length||a.hasNonEmptyTextNode},"only-listitems-evaluate":function(e,t,r){var o=!1,i=!1,l=!0,s=[],u=[],c=[];return r.children.forEach(function(e){var t,r,a,n=e.actualNode;3!==n.nodeType||""===n.nodeValue.trim()?1===n.nodeType&&ma(n,!0,!1)&&(l=!1,t="LI"===n.nodeName.toUpperCase(),a="listitem"===(r=Ko(e)),t||a||s.push(n),t&&!a&&(u.push(n),c.includes(r)||c.push(r)),a&&(i=!0)):o=!0}),o||s.length?(this.relatedNodes(s),!0):!l&&!i&&(this.relatedNodes(u),this.data({messageKey:"roleNotValid",roles:c.join(", ")}),!0)},"structured-dlitems-evaluate":function(e,t,r){var a=r.children;if(!a||!a.length)return!1;for(var n,o=!1,i=!1,l=0;l<a.length;l++){if("DT"===(n=a[l].props.nodeName.toUpperCase())&&(o=!0),o&&"DD"===n)return!1;"DD"===n&&(i=!0)}return o||i},"caption-evaluate":function(e,t,r){return!vo(r,"track").some(function(e){return"captions"===(e.attr("kind")||"").toLowerCase()})&&void 0},"frame-tested-evaluate":function(e,t){var r=this.async(),a=Object.assign({isViolation:!1,timeout:500},t),n=a.isViolation,o=a.timeout,i=setTimeout(function(){i=setTimeout(function(){i=null,r(!n&&void 0)},0)},o);Mr(e.contentWindow,"axe.ping",null,void 0,function(){null!==i&&(clearTimeout(i),r(!0))})},"no-autoplay-audio-evaluate":function(e,t){if(e.duration){var r=t.allowedDuration,a=void 0===r?3:r;return function(e){if(!e.currentSrc)return 0;var t=function(e){var t=e.match(/#t=(.*)/);return t?vc(t,2)[1].split(",").map(function(e){return(/:/.test(e)?function(e){var t=e.split(":"),r=0,a=1;for(;0<t.length;)r+=a*parseInt(t.pop(),10),a*=60;return parseFloat(r)}:parseFloat)(e)}):void 0}(e.currentSrc);return t?1!==t.length?Math.abs(t[1]-t[0]):Math.abs(e.duration-t[0]):Math.abs(e.duration-(e.currentTime||0))}(e)<=a&&!e.hasAttribute("loop")||!!e.hasAttribute("controls")}console.warn("axe.utils.preloadMedia did not load metadata")},"aria-allowed-attr-matches":function(e,t){var r=/^aria-/,a=t.attrNames;if(a.length)for(var n=0,o=a.length;n<o;n++)if(r.test(a[n]))return!0;return!1},"aria-allowed-role-matches":function(e){return null!==Io(e,{dpub:!0,fallback:!0})},"aria-form-field-name-matches":cu,"aria-has-attr-matches":function(e){var t=/^aria-/;if(e.hasAttributes())for(var r=er(e),a=0,n=r.length;a<n;a++)if(t.test(r[a].name))return!0;return!1},"aria-hidden-focus-matches":function(e){return function e(t){return!t||"true"!==t.getAttribute("aria-hidden")&&e(oa(t))}(oa(e))},"aria-required-children-matches":function(e,t){var r=Io(t,{dpub:!0});return!!xl(r)},"aria-required-parent-matches":function(e,t){var r=Io(t);return!!wl(r)},"autocomplete-matches":function(e,t){var r=t.attr("autocomplete");if(!r||""===Fa(r))return!1;var a=t.props.nodeName;if(!1===["textarea","input","select"].includes(a))return!1;if("input"===a&&["submit","reset","button","hidden"].includes(t.props.type))return!1;var n=t.attr("aria-disabled")||"false";if(t.hasAttr("disabled")||"true"===n.toLowerCase())return!1;var o=t.attr("role"),i=t.attr("tabindex");if("-1"===i&&o){var l=an.ariaRoles[o];if(void 0===l||"widget"!==l.type)return!1}return!("-1"===i&&t.actualNode&&!ma(t.actualNode,!1)&&!ma(t.actualNode,!0))},"bypass-matches":function(e,t,r){return!su(e,t,r)||!!e.querySelector("a[href]")},"color-contrast-matches":function(e,t){var r=t.props,a=r.nodeName,n=r.type;if("option"===a)return!1;if("select"===a&&!e.options.length)return!1;if("input"===a&&["hidden","range","color","checkbox","radio","image"].includes(n))return!1;if(Ks(t))return!1;if(["input","select","textarea"].includes(a)){var o=window.getComputedStyle(e),i=parseInt(o.getPropertyValue("text-indent"),10);if(i){var l={top:(l=e.getBoundingClientRect()).top,bottom:l.bottom,left:l.left+i,right:l.right+i};if(!gn(l,e))return!1}return!0}var s=aa(t,"label");if("label"===a||s){var u=s||e,c=s?_n(s):t;if(u.htmlFor){var d=ta(u).getElementById(u.htmlFor),p=d&&_n(d);if(p&&Ks(p))return!1}var f=vo(c,'input:not([type="hidden"],[type="image"],[type="button"],[type="submit"],[type="reset"]), select, textarea')[0];if(f&&Ks(f))return!1}for(var m,h=[],g=t;g;){g.props.id&&(m=nl(g).filter(function(e){return Eo(e.getAttribute("aria-labelledby")||"").includes(g.props.id)}).map(function(e){return _n(e)}),h.push.apply(h,gc(m))),g=g.parent}if(0<h.length&&h.every(Ks))return!1;var v=_a(t,!1,!0);if(!v||!Gi(v,{emoji:!0,nonBmp:!1,punctuations:!0}))return!1;for(var b=document.createRange(),y=t.children,D=0;D<y.length;D++){var w=y[D];3===w.actualNode.nodeType&&""!==Fa(w.actualNode.nodeValue)&&b.selectNodeContents(w.actualNode)}for(var x=b.getClientRects(),E=0;E<x.length;E++)if(gn(x[E],e))return!0;return!1},"data-table-large-matches":function(e){if(ts(e)){var t=Lo(e);return 3<=t.length&&3<=t[0].length&&3<=t[1].length&&3<=t[2].length}return!1},"data-table-matches":function(e){return ts(e)},"duplicate-id-active-matches":function(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Kt(t),'"]'),a=Array.from(ta(e).querySelectorAll(r));return!bl(e)&&a.some(Ua)},"duplicate-id-aria-matches":function(e){return bl(e)},"duplicate-id-misc-matches":function(e){var t=e.getAttribute("id").trim(),r='*[id="'.concat(Kt(t),'"]'),a=Array.from(ta(e).querySelectorAll(r));return!bl(e)&&a.every(function(e){return!Ua(e)})},"frame-focusable-content-matches":function(e,t,r){return!r.initiator&&!r.focusable&&1<r.boundingClientRect.width*r.boundingClientRect.height},"frame-title-has-text-matches":function(e){var t=e.getAttribute("title");return!!Fa(t)},"heading-matches":function(e){var t;return e.hasAttribute("role")&&(t=e.getAttribute("role").split(/\s+/i).filter(axe.commons.aria.isValidRole)),t&&0<t.length?t.includes("heading"):"heading"===axe.commons.aria.implicitRole(e)},"html-namespace-matches":function(e,t){return!uu(e,t)},"identical-links-same-purpose-matches":function(e,t){if(!!!Li(t))return!1;var r=Ko(e);return!r||"link"===r},"inserted-into-focus-order-matches":function(e){return Va(e)},"is-initiator-matches":su,"label-content-name-mismatch-matches":function(e,t){var r=Ko(e);return!!r&&(!!ul("widget").includes(r)&&(!!dl().includes(r)&&(!(!Fa(Oo(t))&&!Fa(Mi(e)))&&!!Fa(_a(t)))))},"label-matches":function(e,t){if("input"!==t.props.nodeName||!1===t.hasAttr("type"))return!0;var r=t.attr("type").toLowerCase();return!1===["hidden","image","button","submit","reset"].includes(r)},"landmark-has-body-context-matches":function(e,t){return e.hasAttribute("role")||!aa(t,"article, aside, main, nav, section")},"landmark-unique-matches":function(e,t){var o=["article","aside","main","nav","section"].join(",");return function(e){var t=e.actualNode,r=ul("landmark"),a=Ko(t);if(!a)return!1;var n=t.nodeName.toUpperCase();return"HEADER"===n||"FOOTER"===n?!aa(e,o):"SECTION"!==n&&"FORM"!==n?0<=r.indexOf(a)||"region"===a:!!Li(e)}(t)&&ma(e,!0)},"layout-table-matches":function(e){return!ts(e)&&!Ua(e)},"link-in-text-block-matches":function(e){var t=Fa(e.textContent),r=e.getAttribute("role");return(!r||"link"===r)&&(!!t&&(!!ma(e,!1)&&Wa(e)))},"nested-interactive-matches":function(e,t){var r=Ko(t);return!!r&&!!an.ariaRoles[r].childrenPresentational},"no-autoplay-audio-matches":function(e){return!!e.currentSrc&&(!e.hasAttribute("paused")&&!e.hasAttribute("muted"))},"no-empty-role-matches":function(e,t){return!!t.hasAttr("role")&&!!t.attr("role").trim()},"no-explicit-name-required-matches":function(e,t){var r=Io(t);return!(r&&!["none","presentation"].includes(r))||!(!(Qa[r]||{}).accessibleNameRequired&&!Ua(t))},"no-naming-method-matches":cu,"no-role-matches":function(e){return!e.getAttribute("role")},"not-html-matches":function(e,t){return"html"!==t.props.nodeName},"p-as-heading-matches":function(e){var t=Array.from(e.parentNode.childNodes),r=e.textContent.trim();return!(0===r.length||2<=(r.match(/[.!?:;](?![.!?:;])/g)||[]).length)&&0!==t.slice(t.indexOf(e)+1).filter(function(e){return"P"===e.nodeName.toUpperCase()&&""!==e.textContent.trim()}).length},"scrollable-region-focusable-matches":function(e,t){if(!1==!!Sn(e,13))return!1;var r=Io(t);if(an.ariaRoles.combobox.requiredOwned.includes(r)){if(Or(t,'[role~="combobox"]'))return!1;var a=t.attr("id");if(a){var n=ea(e);if(Array.from(n.querySelectorAll('[aria-owns~="'.concat(a,'"], [aria-controls~="').concat(a,'"]'))).some(function(e){return Eo(e.getAttribute("role")).includes("combobox")}))return!1}}return!!vo(t,"*").some(function(e){return Pa(e,!0,!0)})},"skip-link-matches":function(e){return un(e)&&ca(e)},"svg-namespace-matches":uu,"window-is-top-matches":function(e){return e.ownerDocument.defaultView.self===e.ownerDocument.defaultView.top},"xml-lang-mismatch-matches":function(e){var t=Dn(e.getAttribute("lang")),r=Dn(e.getAttribute("xml:lang"));return ko(t)&&ko(r)}};var pu=function(e){this.id=e.id,this.data=null,this.relatedNodes=[],this.result=null};function fu(e){if("string"!=typeof e)return e;if(du[e])return du[e];if(/^\s*function[\s\w]*\(/.test(e))return new Function("return "+e+";")();throw new ReferenceError("Function ID does not exist in the metadata-function-map: ".concat(e))}function mu(e){var t=0<arguments.length&&void 0!==e?e:{};return!Array.isArray(t)&&"object"===cc(t)||(t={value:t}),t}function hu(e){e&&(this.id=e.id,this.configure(e))}hu.prototype.enabled=!0,hu.prototype.run=function(t,e,r,a,n){var o=(e=e||{}).hasOwnProperty("enabled")?e.enabled:this.enabled,i=this.getOptions(e.options);if(o){var l,s=new pu(this),u=Dr(s,e,a,n);try{l=this.evaluate.call(u,t.actualNode,i,t,r)}catch(e){return t&&t.actualNode&&(e.errorNode=new yr(t.actualNode).toJSON()),void n(e)}u.isAsync||(s.result=l,a(s))}else a(null)},hu.prototype.runSync=function(t,e,r){var a=(e=e||{}).enabled;if(!(void 0===a?this.enabled:a))return null;var n,o=this.getOptions(e.options),i=new pu(this),l=Dr(i,e);l.async=function(){throw new Error("Cannot run async check while in a synchronous run")};try{n=this.evaluate.call(l,t.actualNode,o,t,r)}catch(e){throw t&&t.actualNode&&(e.errorNode=new yr(t.actualNode).toJSON()),e}return i.result=n,i},hu.prototype.configure=function(t){var r=this;t.evaluate&&!du[t.evaluate]||(this._internalCheck=!0),t.hasOwnProperty("enabled")&&(this.enabled=t.enabled),t.hasOwnProperty("options")&&(this._internalCheck?this.options=mu(t.options):this.options=t.options),["evaluate","after"].filter(function(e){return t.hasOwnProperty(e)}).forEach(function(e){return r[e]=fu(t[e])})},hu.prototype.getOptions=function(e){return this._internalCheck?Kr(this.options,mu(e||{})):e||this.options};var gu=hu;var vu=function(e){this.id=e.id,this.result=Xe.NA,this.pageLevel=e.pageLevel,this.impact=null,this.nodes=[]};function bu(e,t){this._audit=t,this.id=e.id,this.selector=e.selector||"*",e.impact&&(ot(Xe.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact),this.excludeHidden="boolean"!=typeof e.excludeHidden||e.excludeHidden,this.enabled="boolean"!=typeof e.enabled||e.enabled,this.pageLevel="boolean"==typeof e.pageLevel&&e.pageLevel,this.reviewOnFail="boolean"==typeof e.reviewOnFail&&e.reviewOnFail,this.any=e.any||[],this.all=e.all||[],this.none=e.none||[],this.tags=e.tags||[],this.preload=!!e.preload,e.matches&&(this.matches=fu(e.matches))}function yu(e){if(e.length){var r=!1,a={};return e.forEach(function(e){var t=e.results.filter(function(e){return e});(a[e.type]=t).length&&(r=!0)}),r?a:null}}function Du(e){var a=["any","all","none"],t=e.nodes.filter(function(t){var r=0;return a.forEach(function(e){t[e]=t[e].filter(function(e){return!0!==e.filtered}),r+=t[e].length}),0<r});return e.pageLevel&&t.length&&(t=[t.reduce(function(t,r){if(t)return a.forEach(function(e){t[e].push.apply(t[e],r[e])}),t})]),t}bu.prototype.matches=function(){return!0},bu.prototype.gather=function(e,t){var r=1<arguments.length&&void 0!==t?t:{},a="mark_gather_start_"+this.id,n="mark_gather_end_"+this.id,o="mark_isHidden_start_"+this.id,i="mark_isHidden_end_"+this.id;r.performanceTimer&&eo.mark(a);var l=wo(this.selector,e);return this.excludeHidden&&(r.performanceTimer&&eo.mark(o),l=l.filter(function(e){return!Mn(e.actualNode)}),r.performanceTimer&&(eo.mark(i),eo.measure("rule_"+this.id+"#gather_axe.utils.isHidden",o,i))),r.performanceTimer&&(eo.mark(n),eo.measure("rule_"+this.id+"#gather",a,n)),l},bu.prototype.runChecks=function(t,n,o,i,r,e){var l=this,s=Lr();this[t].forEach(function(e){var r=l._audit.checks[e.id||e],a=Nn(r,l.id,o);s.defer(function(e,t){r.run(n,a,i,e,t)})}),s.then(function(e){e=e.filter(function(e){return e}),r({type:t,results:e})}).catch(e)},bu.prototype.runChecksSync=function(e,a,n,o){var i=this,l=[];return this[e].forEach(function(e){var t=i._audit.checks[e.id||e],r=Nn(t,i.id,n);l.push(t.runSync(a,r,o))}),{type:e,results:l=l.filter(function(e){return e})}},bu.prototype.run=function(n,e,t,r){var o=this,i=1<arguments.length&&void 0!==e?e:{},a=2<arguments.length?t:void 0,l=3<arguments.length?r:void 0;i.performanceTimer&&this._trackPerformance();var s,u=Lr(),c=new vu(this);try{s=this.gatherAndMatchNodes(n,i)}catch(e){return void l(new dc({cause:e,ruleId:this.id}))}i.performanceTimer&&this._logGatherPerformance(s),s.forEach(function(a){u.defer(function(r,t){var e=Lr();["any","all","none"].forEach(function(r){e.defer(function(e,t){o.runChecks(r,a,i,n,e,t)})}),e.then(function(e){var t=yu(e);t&&(t.node=new yr(a.actualNode,i),c.nodes.push(t),o.reviewOnFail&&(["any","all"].forEach(function(e){t[e].forEach(function(e){!1===e.result&&(e.result=void 0)})}),t.none.forEach(function(e){!0===e.result&&(e.result=void 0)}))),r()}).catch(function(e){return t(e)})})}),u.defer(function(e){return setTimeout(e,0)}),i.performanceTimer&&this._logRulePerformance(),u.then(function(){return a(c)}).catch(function(e){return l(e)})},bu.prototype.runSync=function(n,e){var o=this,i=1<arguments.length&&void 0!==e?e:{};i.performanceTimer&&this._trackPerformance();var t,l=new vu(this);try{t=this.gatherAndMatchNodes(n,i)}catch(e){throw new dc({cause:e,ruleId:this.id})}return i.performanceTimer&&this._logGatherPerformance(t),t.forEach(function(t){var r=[];["any","all","none"].forEach(function(e){r.push(o.runChecksSync(e,t,i,n))});var a=yu(r);a&&(a.node=t.actualNode?new yr(t.actualNode,i):null,l.nodes.push(a),o.reviewOnFail&&(["any","all"].forEach(function(e){a[e].forEach(function(e){!1===e.result&&(e.result=void 0)})}),a.none.forEach(function(e){!0===e.result&&(e.result=void 0)})))}),i.performanceTimer&&this._logRulePerformance(),l},bu.prototype._trackPerformance=function(){this._markStart="mark_rule_start_"+this.id,this._markEnd="mark_rule_end_"+this.id,this._markChecksStart="mark_runchecks_start_"+this.id,this._markChecksEnd="mark_runchecks_end_"+this.id},bu.prototype._logGatherPerformance=function(e){Je("gather (",e.length,"):",eo.timeElapsed()+"ms"),eo.mark(this._markChecksStart)},bu.prototype._logRulePerformance=function(){eo.mark(this._markChecksEnd),eo.mark(this._markEnd),eo.measure("runchecks_"+this.id,this._markChecksStart,this._markChecksEnd),eo.measure("rule_"+this.id,this._markStart,this._markEnd)},bu.prototype.gatherAndMatchNodes=function(t,e){var r=this,a="mark_matches_start_"+this.id,n="mark_matches_end_"+this.id,o=this.gather(t,e);return e.performanceTimer&&eo.mark(a),o=o.filter(function(e){return r.matches(e.actualNode,e,t)}),e.performanceTimer&&(eo.mark(n),eo.measure("rule_"+this.id+"#matches",a,n)),o},bu.prototype.after=function(l,s){var r,e=Hr(r=this).map(function(e){var t=r._audit.checks[e.id||e];return t&&"function"==typeof t.after?t:null}).filter(Boolean),u=this.id;return e.forEach(function(e){var t,r,a,n=(t=l.nodes,r=e.id,a=[],t.forEach(function(t){Hr(t).forEach(function(e){e.id===r&&(e.node=t.node,a.push(e))})}),a),o=Nn(e,u,s),i=e.after(n,o);n.forEach(function(e){delete e.node,-1===i.indexOf(e)&&(e.filtered=!0)})}),l.nodes=Du(l),l},bu.prototype.configure=function(e){e.hasOwnProperty("selector")&&(this.selector=e.selector),e.hasOwnProperty("excludeHidden")&&(this.excludeHidden="boolean"!=typeof e.excludeHidden||e.excludeHidden),e.hasOwnProperty("enabled")&&(this.enabled="boolean"!=typeof e.enabled||e.enabled),e.hasOwnProperty("pageLevel")&&(this.pageLevel="boolean"==typeof e.pageLevel&&e.pageLevel),e.hasOwnProperty("reviewOnFail")&&(this.reviewOnFail="boolean"==typeof e.reviewOnFail&&e.reviewOnFail),e.hasOwnProperty("any")&&(this.any=e.any),e.hasOwnProperty("all")&&(this.all=e.all),e.hasOwnProperty("none")&&(this.none=e.none),e.hasOwnProperty("tags")&&(this.tags=e.tags),e.hasOwnProperty("matches")&&(this.matches=fu(e.matches)),e.impact&&(ot(Xe.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact)};var wu=bu,xu=r($e()),Eu=/\{\{.+?\}\}/g;function Au(){return window.origin?window.origin:window.location&&window.location.origin?window.location.origin:void 0}function Cu(e,t,r){for(var a=0,n=e.length;a<n;a++)t[r](e[a])}function Fu(e){yc(this,Fu),this.lang="en",this.defaultConfig=e,this.standards=an,this._init(),this._defaultLocale=null}function ku(n,e,o){return o.performanceTimer&&eo.mark("mark_rule_start_"+n.id),function(r,a){n.run(e,o,function(e){r(e)},function(e){var t;o.debug?a(e):(t=Object.assign(new vu(n),{result:Xe.CANTTELL,description:"An error occured while running this rule",message:e.message,stack:e.stack,error:e,errorNode:e.errorNode}),r(t))})}}function Ru(e,t,r){var a=e.brand,n=e.application,o=e.lang;return Xe.helpUrlBase+a+"/"+(r||axe.version.substring(0,axe.version.lastIndexOf(".")))+"/"+t+"?application="+encodeURIComponent(n)+(o&&"en"!==o?"&lang="+encodeURIComponent(o):"")}var Tu=(Dc(Fu,[{key:"_setDefaultLocale",value:function(){if(!this._defaultLocale){for(var e={checks:{},rules:{},failureSummaries:{},incompleteFallbackMessage:"",lang:this.lang},t=Object.keys(this.data.checks),r=0;r<t.length;r++){var a=t[r],n=this.data.checks[a].messages,o=n.pass,i=n.fail,l=n.incomplete;e.checks[a]={pass:o,fail:i,incomplete:l}}for(var s=Object.keys(this.data.rules),u=0;u<s.length;u++){var c=s[u],d=this.data.rules[c],p=d.description,f=d.help;e.rules[c]={description:p,help:f}}for(var m=Object.keys(this.data.failureSummaries),h=0;h<m.length;h++){var g=m[h],v=this.data.failureSummaries[g].failureMessage;e.failureSummaries[g]={failureMessage:v}}e.incompleteFallbackMessage=this.data.incompleteFallbackMessage,this._defaultLocale=e}}},{key:"_resetLocale",value:function(){var e=this._defaultLocale;e&&this.applyLocale(e)}},{key:"_applyCheckLocale",value:function(e){for(var t,r,a,n,o=Object.keys(e),i=0;i<o.length;i++){var l=o[i];if(!this.data.checks[l])throw new Error('Locale provided for unknown check: "'.concat(l,'"'));this.data.checks[l]=(t=this.data.checks[l],r=e[l],n=a=void 0,a=r.pass,n=r.fail,"string"==typeof a&&Eu.test(a)&&(a=xu.default.compile(a)),"string"==typeof n&&Eu.test(n)&&(n=xu.default.compile(n)),bc({},t,{messages:{pass:a||t.messages.pass,fail:n||t.messages.fail,incomplete:"object"===cc(t.messages.incomplete)?bc({},t.messages.incomplete,r.incomplete):r.incomplete}}))}}},{key:"_applyRuleLocale",value:function(e){for(var t,r,a,n,o=Object.keys(e),i=0;i<o.length;i++){var l=o[i];if(!this.data.rules[l])throw new Error('Locale provided for unknown rule: "'.concat(l,'"'));this.data.rules[l]=(t=this.data.rules[l],r=e[l],n=a=void 0,a=r.help,n=r.description,"string"==typeof a&&Eu.test(a)&&(a=xu.default.compile(a)),"string"==typeof n&&Eu.test(n)&&(n=xu.default.compile(n)),bc({},t,{help:a||t.help,description:n||t.description}))}}},{key:"_applyFailureSummaries",value:function(e){for(var t,r,a,n=Object.keys(e),o=0;o<n.length;o++){var i=n[o];if(!this.data.failureSummaries[i])throw new Error('Locale provided for unknown failureMessage: "'.concat(i,'"'));this.data.failureSummaries[i]=(t=this.data.failureSummaries[i],r=e[i],a=void 0,"string"==typeof(a=r.failureMessage)&&Eu.test(a)&&(a=xu.default.compile(a)),bc({},t,{failureMessage:a||t.failureMessage}))}}},{key:"applyLocale",value:function(e){var t,r;this._setDefaultLocale(),e.checks&&this._applyCheckLocale(e.checks),e.rules&&this._applyRuleLocale(e.rules),e.failureSummaries&&this._applyFailureSummaries(e.failureSummaries,"failureSummaries"),e.incompleteFallbackMessage&&(this.data.incompleteFallbackMessage=(t=this.data.incompleteFallbackMessage,"string"==typeof(r=e.incompleteFallbackMessage)&&Eu.test(r)&&(r=xu.default.compile(r)),r||t)),e.lang&&(this.lang=e.lang)}},{key:"setAllowedOrigins",value:function(e){var t=Au();this.allowedOrigins=[];var r,a=wc(e);try{for(a.s();!(r=a.n()).done;){var n=r.value;if(n===Xe.allOrigins)return void(this.allowedOrigins=["*"]);n!==Xe.sameOrigin?this.allowedOrigins.push(n):t&&this.allowedOrigins.push(t)}}catch(e){a.e(e)}finally{a.f()}}},{key:"_init",value:function(){var e,t,r,a=((e=this.defaultConfig)?(t=wr(e)).commons=e.commons:t={},t.reporter=t.reporter||null,t.noHtml=t.noHtml||!1,t.allowedOrigins||(r=Au(),t.allowedOrigins=r?[r]:[]),t.rules=t.rules||[],t.checks=t.checks||[],t.data=bc({checks:{},rules:{}},t.data),t);this.lang=a.lang||"en",this.reporter=a.reporter,this.commands={},this.rules=[],this.checks={},this.brand="axe",this.application="axeAPI",this.tagExclude=["experimental"],this.noHtml=a.noHtml,this.allowedOrigins=a.allowedOrigins,Cu(a.rules,this,"addRule"),Cu(a.checks,this,"addCheck"),this.data={},this.data.checks=a.data&&a.data.checks||{},this.data.rules=a.data&&a.data.rules||{},this.data.failureSummaries=a.data&&a.data.failureSummaries||{},this.data.incompleteFallbackMessage=a.data&&a.data.incompleteFallbackMessage||"",this._constructHelpUrls()}},{key:"registerCommand",value:function(e){this.commands[e.id]=e.callback}},{key:"addRule",value:function(e){e.metadata&&(this.data.rules[e.id]=e.metadata);var t=this.getRule(e.id);t?t.configure(e):this.rules.push(new wu(e,this))}},{key:"addCheck",value:function(e){var t=e.metadata;"object"===cc(t)&&(this.data.checks[e.id]=t,"object"===cc(t.messages)&&Object.keys(t.messages).filter(function(e){return t.messages.hasOwnProperty(e)&&"string"==typeof t.messages[e]}).forEach(function(e){0===t.messages[e].indexOf("function")&&(t.messages[e]=new Function("return "+t.messages[e]+";")())})),this.checks[e.id]?this.checks[e.id].configure(e):this.checks[e.id]=new gu(e)}},{key:"run",value:function(o,i,l,s){this.normalizeOptions(i),axe._selectCache=[];var e,r,a,t=(e=this.rules,r=o,a=i,e.reduce(function(e,t){return yo(t,r,a)&&(t.preload?e.later.push(t):e.now.push(t)),e},{now:[],later:[]})),n=t.now,u=t.later,c=Lr();n.forEach(function(e){c.defer(ku(e,o,i))});var d=Lr();u.length&&d.defer(function(t){mo(i).then(function(e){return t(e)}).catch(function(e){console.warn("Couldn't load preload assets: ",e),t(void 0)})});var p=Lr();p.defer(c),p.defer(d),p.then(function(e){var t,r=e.pop();r&&r.length&&(t=r[0])&&(o=bc({},o,t));var a=e[0];if(!u.length)return axe._selectCache=void 0,void l(a.filter(function(e){return!!e}));var n=Lr();u.forEach(function(e){var t=ku(e,o,i);n.defer(t)}),n.then(function(e){axe._selectCache=void 0,l(a.concat(e).filter(function(e){return!!e}))}).catch(s)}).catch(s)}},{key:"after",value:function(e,r){var a=this.rules;return e.map(function(e){var t=$r(a,"id",e.id);if(!t)throw new Error("Result for unknown rule. You may be running mismatch axe-core versions");return t.after(e,r)})}},{key:"getRule",value:function(t){return this.rules.find(function(e){return e.id===t})}},{key:"normalizeOptions",value:function(e){var t=[],r=[];if(this.rules.forEach(function(e){r.push(e.id),e.tags.forEach(function(e){t.includes(e)||t.push(e)})}),"object"===cc(e.runOnly)){if(Array.isArray(e.runOnly)){var a=e.runOnly.find(function(e){return t.includes(e)}),n=e.runOnly.find(function(e){return r.includes(e)});if(a&&n)throw new Error("runOnly cannot be both rules and tags");e.runOnly=n?{type:"rule",values:e.runOnly}:{type:"tag",values:e.runOnly}}var o=e.runOnly;if(o.value&&!o.values&&(o.values=o.value,delete o.value),!Array.isArray(o.values)||0===o.values.length)throw new Error("runOnly.values must be a non-empty array");if(["rule","rules"].includes(o.type))o.type="rule",o.values.forEach(function(e){if(!r.includes(e))throw new Error("unknown rule `"+e+"` in options.runOnly")});else{if(!["tag","tags",void 0].includes(o.type))throw new Error("Unknown runOnly type '".concat(o.type,"'"));o.type="tag";var i=o.values.filter(function(e){return!t.includes(e)});0!==i.length&&Je("Could not find tags `"+i.join("`, `")+"`")}}return"object"===cc(e.rules)&&Object.keys(e.rules).forEach(function(e){if(!r.includes(e))throw new Error("unknown rule `"+e+"` in options.rules")}),e}},{key:"setBranding",value:function(e){var t={brand:this.brand,application:this.application};e&&e.hasOwnProperty("brand")&&e.brand&&"string"==typeof e.brand&&(this.brand=e.brand),e&&e.hasOwnProperty("application")&&e.application&&"string"==typeof e.application&&(this.application=e.application),this._constructHelpUrls(t)}},{key:"_constructHelpUrls",value:function(e){var r=this,a=0<arguments.length&&void 0!==e?e:null,n=(axe.version.match(/^[1-9][0-9]*\.[0-9]+/)||["x.y"])[0];this.rules.forEach(function(e){r.data.rules[e.id]||(r.data.rules[e.id]={});var t=r.data.rules[e.id];("string"!=typeof t.helpUrl||a&&t.helpUrl===Ru(a,e.id,n))&&(t.helpUrl=Ru(r,e.id,n))})}},{key:"resetRulesAndChecks",value:function(){this._init(),this._resetLocale()}}]),Fu);function Nu(e,t){for(var r,a,n=[],o=0,i=e[t].length;o<i;o++){if("string"==typeof(r=e[t][o])){a=Array.from(document.querySelectorAll(r)),n=n.concat(a.map(function(e){return _n(e)}));break}!r||!r.length||r instanceof window.Node?r instanceof window.Node&&(r.documentElement instanceof window.Node?n.push(e.flatTree[0]):n.push(_n(r))):1<r.length?function(e,t,r){var a,n;e.frames=e.frames||[];var o=document.querySelectorAll(r.shift());e:for(var i=0,l=o.length;i<l;i++){n=o[i];for(var s=0,u=e.frames.length;s<u;s++)if(e.frames[s].node===n){e.frames[s][t].push(r);break e}a={node:n,include:[],exclude:[]},r&&a[t].push(r),e.frames.push(a)}}(e,t,r):(a=Array.from(document.querySelectorAll(r[0])),n=n.concat(a.map(function(e){return _n(e)})))}return n.filter(function(e){return e})}var _u=function(e){var a=this;this.frames=[],this.initiator=!e||"boolean"!=typeof e.initiator||e.initiator,this.focusable=!e||"boolean"!=typeof e.focusable||e.focusable,this.boundingClientRect=e&&"object"===cc(e.boundingClientRect)?e.boundingClientRect:{},this.page=!1,e=function(e){if(e&&"object"===cc(e)||e instanceof window.NodeList){if(e instanceof window.Node)return{include:[e],exclude:[]};if(e.hasOwnProperty("include")||e.hasOwnProperty("exclude"))return{include:e.include&&+e.include.length?e.include:[document],exclude:e.exclude||[]};if(e.length===+e.length)return{include:e,exclude:[]}}return"string"==typeof e?{include:[e],exclude:[]}:{include:[document],exclude:[]}}(e),this.flatTree=yn(function(e){for(var t=e.include,r=e.exclude,a=Array.from(t).concat(Array.from(r)),n=0;n<a.length;++n){var o=a[n];if(o instanceof window.Element)return o.ownerDocument.documentElement;if(o instanceof window.Document)return o.documentElement}return document.documentElement}(e)),this.exclude=e.exclude,this.include=e.include,this.include=Nu(this,"include"),this.exclude=Nu(this,"exclude"),wo("frame, iframe",this).forEach(function(e){var t,r;Hn(e,a)&&(t=a.frames,r=e.actualNode,Mn(r)||$r(t,"node",r)||t.push({node:r,include:[],exclude:[]}))}),1===this.include.length&&this.include[0].actualNode===document.documentElement&&(this.page=!0);var t=function(e){if(0===e.include.length){if(0===e.frames.length){var t=Mr.isInFrame()?"frame":"page";return new Error("No elements found for include in "+t+" Context")}e.frames.forEach(function(e,t){if(0===e.include.length)return new Error("No elements found for include in Context of frame "+t)})}}(this);if(t instanceof Error)throw t;Array.isArray(this.include)||(this.include=Array.from(this.include)),this.include.sort(zr)},Ou={};t(Ou,{CssSelectorParser:function(){return Su.CssSelectorParser},doT:function(){return Pu.default},emojiRegexText:function(){return Iu.default},memoize:function(){return Bu.default}});var Su=r(f()),Pu=r($e()),Iu=r(ze()),Bu=r(He()),Lu=r(We()),qu=r(Ge());r(Ye());"Promise"in window||Lu.default.polyfill(),"Uint32Array"in window||(window.Uint32Array=qu.Uint32Array),window.Uint32Array&&("some"in window.Uint32Array.prototype||Object.defineProperty(window.Uint32Array.prototype,"some",{value:Array.prototype.some}),"reduce"in window.Uint32Array.prototype||Object.defineProperty(window.Uint32Array.prototype,"reduce",{value:Array.prototype.reduce}));var Mu,ju=function(t,r){if(t=t||function(){},r=r||axe.log,!axe._audit)throw new Error("No audit configured");var a=axe.utils.queue(),n=[];Object.keys(axe.plugins).forEach(function(e){a.defer(function(t){function r(e){n.push(e),t()}try{axe.plugins[e].cleanup(t,r)}catch(e){r(e)}})});var e=axe.utils.getFlattenedTree(document.body);axe.utils.querySelectorAll(e,"iframe, frame").forEach(function(r){a.defer(function(e,t){return axe.utils.sendCommandToFrame(r.actualNode,{command:"cleanup-plugin"},e,t)})}),a.then(function(e){0===n.length?t(e):r(n)}).catch(r)},Uu={};function Vu(e){return Uu.hasOwnProperty(e)}function Hu(e){return"string"==typeof e&&Uu[e]?Uu[e]:"function"==typeof e?e:Mu}function zu(e){var t=axe._audit;if(!t)throw new Error("No audit configured");if(e.axeVersion||e.ver){var r=e.axeVersion||e.ver;if(!/^\d+\.\d+\.\d+(-canary)?/.test(r))throw new Error("Invalid configured version ".concat(r));var a=vc(r.split("-"),2),n=a[0],o=a[1],i=vc(n.split(".").map(Number),3),l=i[0],s=i[1],u=i[2],c=vc(axe.version.split("-"),2),d=c[0],p=c[1],f=vc(d.split(".").map(Number),3),m=f[0],h=f[1],g=f[2];if(l!==m||h<s||h===s&&g<u||l===m&&s===h&&u===g&&o&&o!==p)throw new Error("Configured version ".concat(r," is not compatible with current axe version ").concat(axe.version))}if(e.reporter&&("function"==typeof e.reporter||Vu(e.reporter))&&(t.reporter=e.reporter),e.checks){if(!Array.isArray(e.checks))throw new TypeError("Checks property must be an array");e.checks.forEach(function(e){if(!e.id)throw new TypeError("Configured check ".concat(JSON.stringify(e)," is invalid. Checks must be an object with at least an id property"));t.addCheck(e)})}var v,b=[];if(e.rules){if(!Array.isArray(e.rules))throw new TypeError("Rules property must be an array");e.rules.forEach(function(e){if(!e.id)throw new TypeError("Configured rule ".concat(JSON.stringify(e)," is invalid. Rules must be an object with at least an id property"));b.push(e.id),t.addRule(e)})}if(e.disableOtherRules&&t.rules.forEach(function(e){!1===b.includes(e.id)&&(e.enabled=!1)}),void 0!==e.branding?t.setBranding(e.branding):t._constructHelpUrls(),e.tagExclude&&(t.tagExclude=e.tagExclude),e.locale&&t.applyLocale(e.locale),e.standards&&(v=e.standards,Object.keys(rn).forEach(function(e){v[e]&&(rn[e]=Kr(rn[e],v[e]))})),e.noHtml&&(t.noHtml=!0),e.allowedOrigins){if(!Array.isArray(e.allowedOrigins))throw new TypeError("Allowed origins property must be an array");if(e.allowedOrigins.includes("*"))throw new Error('"*" is not allowed. Use "'.concat(Xe.allOrigins,'" instead'));t.setAllowedOrigins(e.allowedOrigins)}}function $u(e){var t=(e=e||[]).length?axe._audit.rules.filter(function(t){return!!e.filter(function(e){return-1!==t.tags.indexOf(e)}).length}):axe._audit.rules,r=axe._audit.data.rules||{};return t.map(function(e){var t=r[e.id]||{};return{ruleId:e.id,description:t.description,help:t.help,helpUrl:t.helpUrl,tags:e.tags}})}var Wu=function(){Ea.get("globalDocumentSet")&&(document=null),Ea.get("globalWindowSet")&&(window=null),axe._memoizedFns.forEach(function(e){return e.clear()}),Ea.clear(),axe._tree=void 0,axe._selectorData=void 0,axe._selectCache=void 0};var Gu=function(r,a,n,o){try{r=new _u(r),axe._tree=r.flatTree,axe._selectorData=cr(r.flatTree)}catch(e){return Wu(),o(e)}var e=Lr(),i=axe._audit;a.performanceTimer&&eo.auditStart(),r.frames.length&&!1!==a.iframes&&e.defer(function(e,t){Gr(r,a,"rules",null,e,t)}),e.defer(function(e,t){i.run(r,a,e,t)}),e.then(function(e){try{a.performanceTimer&&eo.auditEnd();var t=Wr(e.map(function(e){return{results:e}}));r.initiator&&((t=i.after(t,a)).forEach(go),t=t.map(Ht));try{n(t,Wu)}catch(e){Wu(),Je(e)}}catch(e){Wu(),o(e)}}).catch(function(e){Wu(),o(e)})};window.top!==window&&(Mr.subscribe("axe.start",function(e,t,r){function a(e){e instanceof Error==!1&&(e=new Error(e)),r(e)}var n=r,o=e&&e.context||{};o.hasOwnProperty("include")&&!o.include.length&&(o.include=[document]);var i=e&&e.options||{};switch(e.command){case"rules":return Gu(o,i,function(e,t){n(e),t()},a);case"cleanup-plugin":return ju(n,a);default:if(axe._audit&&axe._audit.commands&&axe._audit.commands[e.command])return axe._audit.commands[e.command](e,r)}}),Mr.subscribe("axe.ping",function(e,t,r){r({axe:!0})}));function Yu(e){axe._audit=new Tu(e)}function Ku(e){this._run=e.run,this._collect=e.collect,this._registry={},e.commands.forEach(function(e){axe._audit.registerCommand(e)})}Ku.prototype.run=function(){return this._run.apply(this,arguments)},Ku.prototype.collect=function(){return this._collect.apply(this,arguments)},Ku.prototype.cleanup=function(e){var r=axe.utils.queue(),a=this;Object.keys(this._registry).forEach(function(t){r.defer(function(e){a._registry[t].cleanup(e)})}),r.then(e)},Ku.prototype.add=function(e){this._registry[e.id]=e};function Xu(e){axe.plugins[e.id]=new Ku(e)}function Ju(){var e=axe._audit;if(!e)throw new Error("No audit configured");e.resetRulesAndChecks(),Object.keys(rn).forEach(function(e){rn[e]=tn[e]})}function Qu(e,t){var r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};r.reporter=r.reporter||axe._audit.reporter||"v1",axe._selectorData={},t instanceof et||(t=new Ro(t));var a=On(e);if(!a)throw new Error("unknown rule `"+e+"`");var n={initiator:!0,include:[t]},o=(a=Object.create(a,{excludeHidden:{value:!1}})).runSync(n,r);go(o),Ht(o);var i=Wt([o]);return i.violations.forEach(function(e){return e.nodes.forEach(function(e){e.failureSummary=wn(e)})}),bc({},xn(),i,{toolOptions:r})}var Zu=function(){};function ec(e,t,r){var a=new TypeError("axe.run arguments are invalid");if(!function(e){switch(!0){case"string"==typeof e:case Array.isArray(e):case window.Node&&e instanceof window.Node:case window.NodeList&&e instanceof window.NodeList:return 1;case"object"!==cc(e):return;case void 0!==e.include:case void 0!==e.exclude:case"number"==typeof e.length:return 1;default:return}}(e)){if(void 0!==r)throw a;r=t,t=e,e=document}if("object"!==cc(t)){if(void 0!==r)throw a;r=t,t={}}if("function"!=typeof r&&void 0!==r)throw a;return{context:e,options:t,callback:r||Zu}}function tc(e,n,o){if(!axe._audit)throw new Error("No audit configured");var t=window&&"Node"in window&&"NodeList"in window,r=!!document;if(!t||!r){if(!e||!e.ownerDocument)throw new Error('Required "window" or "document" globals not defined and cannot be deduced from the context. Either set the globals before running or pass in a valid Element.');r||(Ea.set("globalDocumentSet",!0),document=e.ownerDocument),t||(Ea.set("globalWindowSet",!0),window=document.defaultView)}var a,i=ec(e,n,o);e=i.context,n=i.options,o=i.callback,n.reporter=n.reporter||axe._audit.reporter||"v1",n.performanceTimer&&axe.utils.performanceTimer.start();var l=Zu,s=Zu;if("function"==typeof Promise&&o===Zu&&(a=new Promise(function(e,t){l=t,s=e})),axe._running){var u="Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.";return o(u),l(u),a}return axe._running=!0,axe._runRules(e,n,function(e,t){function r(e){axe._running=!1,t();try{o(null,e)}catch(e){axe.log(e)}s(e)}n.performanceTimer&&axe.utils.performanceTimer.end();try{var a=Hu(n.reporter)(e,n,r);void 0!==a&&r(a)}catch(e){axe._running=!1,t(),o(e),l(e)}},function(e){axe._running=!1,o(e),l(e)}),a}function rc(e){if(axe._tree)throw new Error("Axe is already setup. Call `axe.teardown()` before calling `axe.setup` again.");return axe._tree=yn(e),axe._selectorData=cr(axe._tree),axe._tree[0]}function ac(e,t,r){console.warn('"na" reporter will be deprecated in axe v4.0. Use the "v2" reporter instead.'),"function"==typeof t&&(r=t,t={});var a=Cn(e,t);r(bc({},xn(),{toolOptions:t,violations:a.violations,passes:a.passes,incomplete:a.incomplete,inapplicable:a.inapplicable}))}function nc(e,t,r){"function"==typeof t&&(r=t,t={}),t.resultTypes=["violations"];var a=Cn(e,t);r(bc({},xn(),{toolOptions:t,violations:a.violations}))}function oc(e,t,r){"function"==typeof t&&(r=t,t={}),sc(e,t,function(e){var t=xn();r({raw:e,env:t})})}function ic(e,t,r){function a(e){e.nodes.forEach(function(e){e.failureSummary=wn(e)})}"function"==typeof t&&(r=t,t={});var n=Cn(e,t);n.incomplete.forEach(a),n.violations.forEach(a),r(bc({},xn(),{toolOptions:t,violations:n.violations,passes:n.passes,incomplete:n.incomplete,inapplicable:n.inapplicable}))}function lc(e,t,r){"function"==typeof t&&(r=t,t={});var a=Cn(e,t);r(bc({},xn(),{toolOptions:t,violations:a.violations,passes:a.passes,incomplete:a.incomplete,inapplicable:a.inapplicable}))}var sc=function(e,t,r){if("function"==typeof t&&(r=t,t={}),!e||!Array.isArray(e))return r(e);r(e.map(function(e){for(var t=bc({},e),r=0,a=["passes","violations","incomplete","inapplicable"];r<a.length;r++){var n=a[r];t[n]&&Array.isArray(t[n])&&(t[n]=t[n].map(function(e){return bc({},e,{node:e.node.toJSON()})}))}return t}))};axe.constants=Xe,axe.log=Je,axe.AbstractVirtualNode=et,axe.SerialVirtualNode=Ro,axe.VirtualNode=vn,axe._cache=Ea,axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.base={Audit:Tu,CheckResult:pu,Check:gu,Context:_u,RuleResult:vu,Rule:wu,metadataFunctionMap:du},axe.imports=Ou,axe.cleanup=ju,axe.configure=zu,axe.frameMessenger=function(e){Mr.updateMessenger(e)},axe.getRules=$u,axe._load=Yu,axe.plugins={},axe.registerPlugin=Xu,axe.hasReporter=Vu,axe.getReporter=Hu,axe.addReporter=function(e,t,r){Uu[e]=t,r&&(Mu=t)},axe.reset=Ju,axe._runRules=Gu,axe.runVirtualRule=Qu,axe.run=tc,axe.setup=rc,axe.teardown=Wu,axe.commons=Ws,axe.utils=tt,axe.addReporter("na",ac),axe.addReporter("no-passes",nc),axe.addReporter("rawEnv",oc),axe.addReporter("raw",sc),axe.addReporter("v1",ic),axe.addReporter("v2",lc,!0)}(),axe._load({lang:"en",data:{rules:{accesskeys:{description:"Ensures every accesskey attribute value is unique",help:"accesskey attribute value should be unique"},"area-alt":{description:"Ensures <area> elements of image maps have alternate text",help:"Active <area> elements must have alternate text"},"aria-allowed-attr":{description:"Ensures ARIA attributes are allowed for an element's role",help:"Elements must only use allowed ARIA attributes"},"aria-allowed-role":{description:"Ensures role attribute has an appropriate value for the element",help:"ARIA role should be appropriate for the element"},"aria-command-name":{description:"Ensures every ARIA button, link and menuitem has an accessible name",help:"ARIA commands must have an accessible name"},"aria-dialog-name":{description:"Ensures every ARIA dialog and alertdialog node has an accessible name",help:"ARIA dialog and alertdialog nodes should have an accessible name"},"aria-hidden-body":{description:"Ensures aria-hidden='true' is not present on the document body.",help:"aria-hidden='true' must not be present on the document body"},"aria-hidden-focus":{description:"Ensures aria-hidden elements do not contain focusable elements",help:"ARIA hidden element must not contain focusable elements"},"aria-input-field-name":{description:"Ensures every ARIA input field has an accessible name",help:"ARIA input fields must have an accessible name"},"aria-meter-name":{description:"Ensures every ARIA meter node has an accessible name",help:"ARIA meter nodes must have an accessible name"},"aria-progressbar-name":{description:"Ensures every ARIA progressbar node has an accessible name",help:"ARIA progressbar nodes must have an accessible name"},"aria-required-attr":{description:"Ensures elements with ARIA roles have all required ARIA attributes",help:"Required ARIA attributes must be provided"},"aria-required-children":{description:"Ensures elements with an ARIA role that require child roles contain them",help:"Certain ARIA roles must contain particular children"},"aria-required-parent":{description:"Ensures elements with an ARIA role that require parent roles are contained by them",help:"Certain ARIA roles must be contained by particular parents"},"aria-roledescription":{description:"Ensure aria-roledescription is only used on elements with an implicit or explicit role",help:"Use aria-roledescription on elements with a semantic role"},"aria-roles":{description:"Ensures all elements with a role attribute use a valid value",help:"ARIA roles used must conform to valid values"},"aria-text":{description:'Ensures "role=text" is used on elements with no focusable descendants',help:'"role=text" should have no focusable descendants'},"aria-toggle-field-name":{description:"Ensures every ARIA toggle field has an accessible name",help:"ARIA toggle fields have an accessible name"},"aria-tooltip-name":{description:"Ensures every ARIA tooltip node has an accessible name",help:"ARIA tooltip nodes must have an accessible name"},"aria-treeitem-name":{description:"Ensures every ARIA treeitem node has an accessible name",help:"ARIA treeitem nodes should have an accessible name"},"aria-valid-attr-value":{description:"Ensures all ARIA attributes have valid values",help:"ARIA attributes must conform to valid values"},"aria-valid-attr":{description:"Ensures attributes that begin with aria- are valid ARIA attributes",help:"ARIA attributes must conform to valid names"},"audio-caption":{description:"Ensures <audio> elements have captions",help:"<audio> elements must have a captions track"},"autocomplete-valid":{description:"Ensure the autocomplete attribute is correct and suitable for the form field",help:"autocomplete attribute must be used correctly"},"avoid-inline-spacing":{description:"Ensure that text spacing set through style attributes can be adjusted with custom stylesheets",help:"Inline text spacing must be adjustable with custom stylesheets"},blink:{description:"Ensures <blink> elements are not used",help:"<blink> elements are deprecated and must not be used"},"button-name":{description:"Ensures buttons have discernible text",help:"Buttons must have discernible text"},bypass:{description:"Ensures each page has at least one mechanism for a user to bypass navigation and jump straight to the content",help:"Page must have means to bypass repeated blocks"},"color-contrast":{description:"Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds",help:"Elements must have sufficient color contrast"},"css-orientation-lock":{description:"Ensures content is not locked to any specific display orientation, and the content is operable in all display orientations",help:"CSS Media queries are not used to lock display orientation"},"definition-list":{description:"Ensures <dl> elements are structured correctly",help:"<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script>, <template> or <div> elements"},dlitem:{description:"Ensures <dt> and <dd> elements are contained by a <dl>",help:"<dt> and <dd> elements must be contained by a <dl>"},"document-title":{description:"Ensures each HTML document contains a non-empty <title> element",help:"Documents must have <title> element to aid in navigation"},"duplicate-id-active":{description:"Ensures every id attribute value of active elements is unique",help:"IDs of active elements must be unique"},"duplicate-id-aria":{description:"Ensures every id attribute value used in ARIA and in labels is unique",help:"IDs used in ARIA and labels must be unique"},"duplicate-id":{description:"Ensures every id attribute value is unique",help:"id attribute value must be unique"},"empty-heading":{description:"Ensures headings have discernible text",help:"Headings should not be empty"},"empty-table-header":{description:"Ensures table headers have discernible text",help:"Table header text must not be empty"},"focus-order-semantics":{description:"Ensures elements in the focus order have an appropriate role",help:"Elements in the focus order need a role appropriate for interactive content"},"form-field-multiple-labels":{description:"Ensures form field does not have multiple label elements",help:"Form field must not have multiple label elements"},"frame-focusable-content":{description:"Ensures <frame> and <iframe> elements with focusable content do not have tabindex=-1",help:"Frames with focusable content must not have tabindex=-1"},"frame-tested":{description:"Ensures <iframe> and <frame> elements contain the axe-core script",help:"Frames should be tested with axe-core"},"frame-title-unique":{description:"Ensures <iframe> and <frame> elements contain a unique title attribute",help:"Frames should have a unique title attribute"},"frame-title":{description:"Ensures <iframe> and <frame> elements have an accessible name",help:"Frames must have an accessible name"},"heading-order":{description:"Ensures the order of headings is semantically correct",help:"Heading levels should only increase by one"},"hidden-content":{description:"Informs users about hidden content.",help:"Hidden content on the page cannot be analyzed"},"html-has-lang":{description:"Ensures every HTML document has a lang attribute",help:"<html> element must have a lang attribute"},"html-lang-valid":{description:"Ensures the lang attribute of the <html> element has a valid value",help:"<html> element must have a valid value for the lang attribute"},"html-xml-lang-mismatch":{description:"Ensure that HTML elements with both valid lang and xml:lang attributes agree on the base language of the page",help:"HTML elements with lang and xml:lang must have the same base language"},"identical-links-same-purpose":{description:"Ensure that links with the same accessible name serve a similar purpose",help:"Links with the same name have a similar purpose"},"image-alt":{description:"Ensures <img> elements have alternate text or a role of none or presentation",help:"Images must have alternate text"},"image-redundant-alt":{description:"Ensure image alternative is not repeated as text",help:"Alternative text of images should not be repeated as text"},"input-button-name":{description:"Ensures input buttons have discernible text",help:"Input buttons must have discernible text"},"input-image-alt":{description:'Ensures <input type="image"> elements have alternate text',help:"Image buttons must have alternate text"},"label-content-name-mismatch":{description:"Ensures that elements labelled through their content must have their visible text as part of their accessible name",help:"Elements must have their visible text as part of their accessible name"},"label-title-only":{description:"Ensures that every form element is not solely labeled using the title or aria-describedby attributes",help:"Form elements should have a visible label"},label:{description:"Ensures every form element has a label",help:"Form elements must have labels"},"landmark-banner-is-top-level":{description:"Ensures the banner landmark is at top level",help:"Banner landmark should not be contained in another landmark"},"landmark-complementary-is-top-level":{description:"Ensures the complementary landmark or aside is at top level",help:"Aside should not be contained in another landmark"},"landmark-contentinfo-is-top-level":{description:"Ensures the contentinfo landmark is at top level",help:"Contentinfo landmark should not be contained in another landmark"},"landmark-main-is-top-level":{description:"Ensures the main landmark is at top level",help:"Main landmark should not be contained in another landmark"},"landmark-no-duplicate-banner":{description:"Ensures the document has at most one banner landmark",help:"Document should not have more than one banner landmark"},"landmark-no-duplicate-contentinfo":{description:"Ensures the document has at most one contentinfo landmark",help:"Document should not have more than one contentinfo landmark"},"landmark-no-duplicate-main":{description:"Ensures the document has at most one main landmark",help:"Document should not have more than one main landmark"},"landmark-one-main":{description:"Ensures the document has a main landmark",help:"Document should have one main landmark"},"landmark-unique":{help:"Ensures landmarks are unique",description:"Landmarks should have a unique role or role/label/title (i.e. accessible name) combination"},"link-in-text-block":{description:"Links can be distinguished without relying on color",help:"Links must be distinguished from surrounding text in a way that does not rely on color"},"link-name":{description:"Ensures links have discernible text",help:"Links must have discernible text"},list:{description:"Ensures that lists are structured correctly",help:"<ul> and <ol> must only directly contain <li>, <script> or <template> elements"},listitem:{description:"Ensures <li> elements are used semantically",help:"<li> elements must be contained in a <ul> or <ol>"},marquee:{description:"Ensures <marquee> elements are not used",help:"<marquee> elements are deprecated and must not be used"},"meta-refresh":{description:'Ensures <meta http-equiv="refresh"> is not used',help:"Timed refresh must not exist"},"meta-viewport-large":{description:'Ensures <meta name="viewport"> can scale a significant amount',help:"Users should be able to zoom and scale the text up to 500%"},"meta-viewport":{description:'Ensures <meta name="viewport"> does not disable text scaling and zooming',help:"Zooming and scaling should not be disabled"},"nested-interactive":{description:"Nested interactive controls are not announced by screen readers",help:"Ensure interactive controls are not nested"},"no-autoplay-audio":{description:"Ensures <video> or <audio> elements do not autoplay audio for more than 3 seconds without a control mechanism to stop or mute the audio",help:"<video> or <audio> elements do not autoplay audio"},"object-alt":{description:"Ensures <object> elements have alternate text",help:"<object> elements must have alternate text"},"p-as-heading":{description:"Ensure p elements are not used to style headings",help:"Bold, italic text and font-size are not used to style p elements as a heading"},"page-has-heading-one":{description:"Ensure that the page, or at least one of its frames contains a level-one heading",help:"Page should contain a level-one heading"},"presentation-role-conflict":{description:"Flags elements whose role is none or presentation and which cause the role conflict resolution to trigger.",help:"Elements of role none or presentation should be flagged"},region:{description:"Ensures all page content is contained by landmarks",help:"All page content should be contained by landmarks"},"role-img-alt":{description:"Ensures [role='img'] elements have alternate text",help:"[role='img'] elements have an alternative text"},"scope-attr-valid":{description:"Ensures the scope attribute is used correctly on tables",help:"scope attribute should be used correctly"},"scrollable-region-focusable":{description:"Elements that have scrollable content must be accessible by keyboard",help:"Ensure that scrollable region has keyboard access"},"select-name":{description:"Ensures select element has an accessible name",help:"Select element must have an accessible name"},"server-side-image-map":{description:"Ensures that server-side image maps are not used",help:"Server-side image maps must not be used"},"skip-link":{description:"Ensure all skip links have a focusable target",help:"The skip-link target should exist and be focusable"},"svg-img-alt":{description:"Ensures svg elements with an img, graphics-document or graphics-symbol role have an accessible text",help:"svg elements with an img role have an alternative text"},tabindex:{description:"Ensures tabindex attribute values are not greater than 0",help:"Elements should not have tabindex greater than zero"},"table-duplicate-name":{description:"Ensure that tables do not have the same summary and caption",help:"The <caption> element should not contain the same text as the summary attribute"},"table-fake-caption":{description:"Ensure that tables with a caption use the <caption> element.",help:"Data or header cells must not be used to give caption to a data table."},"td-has-header":{description:"Ensure that each non-empty data cell in a large table has one or more table headers",help:"All non-empty td element in table larger than 3 by 3 must have an associated table header"},"td-headers-attr":{description:"Ensure that each cell in a table using the headers refers to another cell in that table",help:"All cells in a table element that use the headers attribute must only refer to other cells of that same table"},"th-has-data-cells":{description:"Ensure that each table header in a data table refers to data cells",help:"All th elements and elements with role=columnheader/rowheader must have data cells they describe"},"valid-lang":{description:"Ensures lang attributes have valid values",help:"lang attribute must have a valid value"},"video-caption":{description:"Ensures <video> elements have captions",help:"<video> elements must have captions"}},checks:{abstractrole:{impact:"serious",messages:{pass:"Abstract roles are not used",fail:{singular:"Abstract role cannot be directly used: ${data.values}",plural:"Abstract roles cannot be directly used: ${data.values}"}}},"aria-allowed-attr":{impact:"critical",messages:{pass:"ARIA attributes are used correctly for the defined role",fail:{singular:"ARIA attribute is not allowed: ${data.values}",plural:"ARIA attributes are not allowed: ${data.values}"}}},"aria-allowed-role":{impact:"minor",messages:{pass:"ARIA role is allowed for given element",fail:{singular:"ARIA role ${data.values} is not allowed for given element",plural:"ARIA roles ${data.values} are not allowed for given element"},incomplete:{singular:"ARIA role ${data.values} must be removed when the element is made visible, as it is not allowed for the element",plural:"ARIA roles ${data.values} must be removed when the element is made visible, as they are not allowed for the element"}}},"aria-errormessage":{impact:"critical",messages:{pass:"aria-errormessage exists and references elements visible to screen readers that use a supported aria-errormessage technique",fail:{singular:"aria-errormessage value `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",plural:"aria-errormessage values `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)"},incomplete:{singular:"ensure aria-errormessage value `${data.values}` references an existing element",plural:"ensure aria-errormessage values `${data.values}` reference existing elements"}}},"aria-hidden-body":{impact:"critical",messages:{pass:"No aria-hidden attribute is present on document body",fail:"aria-hidden=true should not be present on the document body"}},"aria-prohibited-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:"ARIA attribute cannot be used, add a role attribute or use a different element: ${data.values}",incomplete:"ARIA attribute is not well supported on the element and the text content will be used instead: ${data.values}"}},"aria-required-attr":{impact:"critical",messages:{pass:"All required ARIA attributes are present",fail:{singular:"Required ARIA attribute not present: ${data.values}",plural:"Required ARIA attributes not present: ${data.values}"}}},"aria-required-children":{impact:"critical",messages:{pass:"Required ARIA children are present",fail:{singular:"Required ARIA child role not present: ${data.values}",plural:"Required ARIA children role not present: ${data.values}"},incomplete:{singular:"Expecting ARIA child role to be added: ${data.values}",plural:"Expecting ARIA children role to be added: ${data.values}"}}},"aria-required-parent":{impact:"critical",messages:{pass:"Required ARIA parent role present",fail:{singular:"Required ARIA parent role not present: ${data.values}",plural:"Required ARIA parents role not present: ${data.values}"}}},"aria-roledescription":{impact:"serious",messages:{pass:"aria-roledescription used on a supported semantic role",incomplete:"Check that the aria-roledescription is announced by supported screen readers",fail:"Give the element a role that supports aria-roledescription"}},"aria-unsupported-attr":{impact:"critical",messages:{pass:"ARIA attribute is supported",fail:"ARIA attribute is not widely supported in screen readers and assistive technologies: ${data.values}"}},"aria-valid-attr-value":{impact:"critical",messages:{pass:"ARIA attribute values are valid",fail:{singular:"Invalid ARIA attribute value: ${data.values}",plural:"Invalid ARIA attribute values: ${data.values}"},incomplete:{noId:"ARIA attribute element ID does not exist on the page: ${data.needsReview}",ariaCurrent:'ARIA attribute value is invalid and will be treated as "aria-current=true": ${data.needsReview}'}}},"aria-valid-attr":{impact:"critical",messages:{pass:"ARIA attribute name is valid",fail:{singular:"Invalid ARIA attribute name: ${data.values}",plural:"Invalid ARIA attribute names: ${data.values}"}}},fallbackrole:{impact:"serious",messages:{pass:"Only one role value used",fail:"Use only one role value, since fallback roles are not supported in older browsers"}},"has-global-aria-attribute":{impact:"minor",messages:{pass:{singular:"Element has global ARIA attribute: ${data.values}",plural:"Element has global ARIA attributes: ${data.values}"},fail:"Element does not have global ARIA attribute"}},"has-widget-role":{impact:"minor",messages:{pass:"Element has a widget role.",fail:"Element does not have a widget role."}},invalidrole:{impact:"critical",messages:{pass:"ARIA role is valid",fail:{singular:"Role must be one of the valid ARIA roles: ${data.values}",plural:"Roles must be one of the valid ARIA roles: ${data.values}"}}},"is-element-focusable":{impact:"minor",messages:{pass:"Element is focusable.",fail:"Element is not focusable."}},"no-implicit-explicit-label":{impact:"moderate",messages:{pass:"There is no mismatch between a <label> and accessible name",incomplete:"Check that the <label> does not need be part of the ARIA ${data} field's name"}},unsupportedrole:{impact:"critical",messages:{pass:"ARIA role is supported",fail:"The role used is not widely supported in screen readers and assistive technologies: ${data.values}"}},"valid-scrollable-semantics":{impact:"minor",messages:{pass:"Element has valid semantics for an element in the focus order.",fail:"Element has invalid semantics for an element in the focus order."}},"color-contrast":{impact:"serious",messages:{pass:"Element has sufficient color contrast of ${data.contrastRatio}",fail:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"link-in-text-block":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text in some way other than by color",fail:"Links need to be distinguished from surrounding text in some way other than by color",incomplete:{default:"Unable to determine contrast ratio",bgContrast:"Element's contrast ratio could not be determined. Check for a distinct hover/focus style",bgImage:"Element's contrast ratio could not be determined due to a background image",bgGradient:"Element's contrast ratio could not be determined due to a background gradient",imgNode:"Element's contrast ratio could not be determined because element contains an image node",bgOverlap:"Element's contrast ratio could not be determined because of element overlap"}}},"autocomplete-appropriate":{impact:"serious",messages:{pass:"the autocomplete value is on an appropriate element",fail:"the autocomplete value is inappropriate for this type of input"}},"autocomplete-valid":{impact:"serious",messages:{pass:"the autocomplete attribute is correctly formatted",fail:"the autocomplete attribute is incorrectly formatted"}},accesskeys:{impact:"serious",messages:{pass:"Accesskey attribute value is unique",fail:"Document has multiple elements with the same accesskey"}},"focusable-content":{impact:"moderate",messages:{pass:"Element contains focusable elements",fail:"Element should have focusable content"}},"focusable-disabled":{impact:"serious",messages:{pass:"No focusable elements contained within element",fail:"Focusable content should be disabled or be removed from the DOM"}},"focusable-element":{impact:"moderate",messages:{pass:"Element is focusable",fail:"Element should be focusable"}},"focusable-modal-open":{impact:"serious",messages:{pass:"No focusable elements while a modal is open",incomplete:"Check that focusable elements are not tabbable in the current state"}},"focusable-no-name":{impact:"serious",messages:{pass:"Element is not in tab order or has accessible text",fail:"Element is in tab order and does not have accessible text",incomplete:"Unable to determine if element has an accessible name"}},"focusable-not-tabbable":{impact:"serious",messages:{pass:"No focusable elements contained within element",fail:"Focusable content should have tabindex='-1' or be removed from the DOM"}},"frame-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"landmark-is-top-level":{impact:"moderate",messages:{pass:"The ${data.role} landmark is at the top level.",fail:"The ${data.role} landmark is contained in another landmark."}},"no-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"page-has-heading-one":{impact:"moderate",messages:{pass:"Page has at least one level-one heading",fail:"Page must have a level-one heading"}},"page-has-main":{impact:"moderate",messages:{pass:"Document has at least one main landmark",fail:"Document does not have a main landmark"}},"page-no-duplicate-banner":{impact:"moderate",messages:{pass:"Document does not have more than one banner landmark",fail:"Document has more than one banner landmark"}},"page-no-duplicate-contentinfo":{impact:"moderate",messages:{pass:"Document does not have more than one contentinfo landmark",fail:"Document has more than one contentinfo landmark"}},"page-no-duplicate-main":{impact:"moderate",messages:{pass:"Document does not have more than one main landmark",fail:"Document has more than one main landmark"}},tabindex:{impact:"serious",messages:{pass:"Element does not have a tabindex greater than 0",fail:"Element has a tabindex greater than 0"}},"alt-space-value":{impact:"critical",messages:{pass:"Element has a valid alt attribute value",fail:"Element has an alt attribute containing only a space character, which is not ignored by all screen readers"}},"duplicate-img-label":{impact:"minor",messages:{pass:"Element does not duplicate existing text in <img> alt text",fail:"Element contains <img> element with alt text that duplicates existing text"}},"explicit-label":{impact:"critical",messages:{pass:"Form element has an explicit <label>",fail:"Form element does not have an explicit <label>",incomplete:"Unable to determine if form element has an explicit <label>"}},"help-same-as-label":{impact:"minor",messages:{pass:"Help text (title or aria-describedby) does not duplicate label text",fail:"Help text (title or aria-describedby) text is the same as the label text"}},"hidden-explicit-label":{impact:"critical",messages:{pass:"Form element has a visible explicit <label>",fail:"Form element has explicit <label> that is hidden",incomplete:"Unable to determine if form element has explicit <label> that is hidden"}},"implicit-label":{impact:"critical",messages:{pass:"Form element has an implicit (wrapped) <label>",fail:"Form element does not have an implicit (wrapped) <label>",incomplete:"Unable to determine if form element has an implicit (wrapped} <label>"}},"label-content-name-mismatch":{impact:"serious",messages:{pass:"Element contains visible text as part of it's accessible name",fail:"Text inside the element is not included in the accessible name"}},"multiple-label":{impact:"moderate",messages:{pass:"Form field does not have multiple label elements",incomplete:"Multiple label elements is not widely supported in assistive technologies. Ensure the first label contains all necessary information."}},"title-only":{impact:"serious",messages:{pass:"Form element does not solely use title attribute for its label",fail:"Only title used to generate label for form element"}},"landmark-is-unique":{impact:"moderate",messages:{pass:"Landmarks must have a unique role or role/label/title (i.e. accessible name) combination",fail:"The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable"}},"has-lang":{impact:"serious",messages:{pass:"The <html> element has a lang attribute",fail:{noXHTML:"The xml:lang attribute is not valid on HTML pages, use the lang attribute.",noLang:"The <html> element does not have a lang attribute"}}},"valid-lang":{impact:"serious",messages:{pass:"Value of lang attribute is included in the list of valid languages",fail:"Value of lang attribute not included in the list of valid languages"}},"xml-lang-mismatch":{impact:"moderate",messages:{pass:"Lang and xml:lang attributes have the same base language",fail:"Lang and xml:lang attributes do not have the same base language"}},dlitem:{impact:"serious",messages:{pass:"Description list item has a <dl> parent element",fail:"Description list item does not have a <dl> parent element"}},listitem:{impact:"serious",messages:{pass:'List item has a <ul>, <ol> or role="list" parent element',fail:{default:"List item does not have a <ul>, <ol> parent element",roleNotValid:'List item does not have a <ul>, <ol> parent element without a role, or a role="list"'}}},"only-dlitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <dt> or <dd> elements",fail:"List element has direct children that are not allowed inside <dt> or <dd> elements"}},"only-listitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <li> elements",fail:{default:"List element has direct children that are not allowed inside <li> elements",roleNotValid:"List element has direct children with a role that is not allowed: ${data.roles}"}}},"structured-dlitems":{impact:"serious",messages:{pass:"When not empty, element has both <dt> and <dd> elements",fail:"When not empty, element does not have at least one <dt> element followed by at least one <dd> element"}},caption:{impact:"critical",messages:{pass:"The multimedia element has a captions track",incomplete:"Check that captions is available for the element"}},"frame-tested":{impact:"critical",messages:{pass:"The iframe was tested with axe-core",fail:"The iframe could not be tested with axe-core",incomplete:"The iframe still has to be tested with axe-core"}},"no-autoplay-audio":{impact:"moderate",messages:{pass:"<video> or <audio> does not output audio for more than allowed duration or has controls mechanism",fail:"<video> or <audio> outputs audio for more than allowed duration and does not have a controls mechanism",incomplete:"Check that the <video> or <audio> does not output audio for more than allowed duration or provides a controls mechanism"}},"css-orientation-lock":{impact:"serious",messages:{pass:"Display is operable, and orientation lock does not exist",fail:"CSS Orientation lock is applied, and makes display inoperable",incomplete:"CSS Orientation lock cannot be determined"}},"meta-viewport-large":{impact:"minor",messages:{pass:"<meta> tag does not prevent significant zooming on mobile devices",fail:"<meta> tag limits zooming on mobile devices"}},"meta-viewport":{impact:"critical",messages:{pass:"<meta> tag does not disable zooming on mobile devices",fail:"${data} on <meta> tag disables zooming on mobile devices"}},"header-present":{impact:"serious",messages:{pass:"Page has a heading",fail:"Page does not have a heading"}},"heading-order":{impact:"moderate",messages:{pass:"Heading order valid",fail:"Heading order invalid"}},"identical-links-same-purpose":{impact:"minor",messages:{pass:"There are no other links with the same name, that go to a different URL",incomplete:"Check that links have the same purpose, or are intentionally ambiguous."}},"internal-link-present":{impact:"serious",messages:{pass:"Valid skip link found",fail:"No valid skip link found"}},landmark:{impact:"serious",messages:{pass:"Page has a landmark region",fail:"Page does not have a landmark region"}},"meta-refresh":{impact:"critical",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page"}},"p-as-heading":{impact:"serious",messages:{pass:"<p> elements are not styled as headings",fail:"Heading elements should be used instead of styled p elements"}},region:{impact:"moderate",messages:{pass:"All page content is contained by landmarks",fail:"Some page content is not contained by landmarks"}},"skip-link":{impact:"moderate",messages:{pass:"Skip link target exists",incomplete:"Skip link target should become visible on activation",fail:"No skip link target"}},"unique-frame-title":{impact:"serious",messages:{pass:"Element's title attribute is unique",fail:"Element's title attribute is not unique"}},"duplicate-id-active":{impact:"serious",messages:{pass:"Document has no active elements that share the same id attribute",fail:"Document has active elements with the same id attribute: ${data}"}},"duplicate-id-aria":{impact:"critical",messages:{pass:"Document has no elements referenced with ARIA or labels that share the same id attribute",fail:"Document has multiple elements referenced with ARIA with the same id attribute: ${data}"}},"duplicate-id":{impact:"minor",messages:{pass:"Document has no static elements that share the same id attribute",fail:"Document has multiple static elements with the same id attribute: ${data}"}},"aria-label":{impact:"serious",messages:{pass:"aria-label attribute exists and is not empty",fail:"aria-label attribute does not exist or is empty"}},"aria-labelledby":{impact:"serious",messages:{pass:"aria-labelledby attribute exists and references elements that are visible to screen readers",fail:"aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty",incomplete:"ensure aria-labelledby references an existing element"}},"avoid-inline-spacing":{impact:"serious",messages:{pass:"No inline styles with '!important' that affect text spacing has been specified",fail:{singular:"Remove '!important' from inline style ${data.values}, as overriding this is not supported by most browsers",plural:"Remove '!important' from inline styles ${data.values}, as overriding this is not supported by most browsers"}}},"button-has-visible-text":{impact:"critical",messages:{pass:"Element has inner text that is visible to screen readers",fail:"Element does not have inner text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"doc-has-title":{impact:"serious",messages:{pass:"Document has a non-empty <title> element",fail:"Document does not have a non-empty <title> element"}},exists:{impact:"minor",messages:{pass:"Element does not exist",incomplete:"Element exists"}},"has-alt":{impact:"critical",messages:{pass:"Element has an alt attribute",fail:"Element does not have an alt attribute"}},"has-visible-text":{impact:"minor",messages:{pass:"Element has text that is visible to screen readers",fail:"Element does not have text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"is-on-screen":{impact:"serious",messages:{pass:"Element is not visible",fail:"Element is visible"}},"non-empty-alt":{impact:"critical",messages:{pass:"Element has a non-empty alt attribute",fail:{noAttr:"Element has no alt attribute",emptyAttr:"Element has an empty alt attribute"}}},"non-empty-if-present":{impact:"critical",messages:{pass:{default:"Element does not have a value attribute","has-label":"Element has a non-empty value attribute"},fail:"Element has a value attribute and the value attribute is empty"}},"non-empty-placeholder":{impact:"serious",messages:{pass:"Element has a placeholder attribute",fail:{noAttr:"Element has no placeholder attribute",emptyAttr:"Element has an empty placeholder attribute"}}},"non-empty-title":{impact:"serious",messages:{pass:"Element has a title attribute",fail:{noAttr:"Element has no title attribute",emptyAttr:"Element has an empty title attribute"}}},"non-empty-value":{impact:"critical",messages:{pass:"Element has a non-empty value attribute",fail:{noAttr:"Element has no value attribute",emptyAttr:"Element has an empty value attribute"}}},"presentational-role":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="${data.role}"',fail:{default:'Element\'s default semantics were not overridden with role="none" or role="presentation"',globalAria:"Element's role is not presentational because it has a global ARIA attribute",focusable:"Element's role is not presentational because it is focusable",both:"Element's role is not presentational because it has a global ARIA attribute and is focusable"}}},"role-none":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="none"',fail:'Element\'s default semantics were not overridden with role="none"'}},"role-presentation":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="presentation"',fail:'Element\'s default semantics were not overridden with role="presentation"'}},"svg-non-empty-title":{impact:"serious",messages:{pass:"Element has a child that is a title",fail:{noTitle:"Element has no child that is a title",emptyTitle:"Element child title is empty"},incomplete:"Unable to determine element has a child that is a title"}},"caption-faked":{impact:"serious",messages:{pass:"The first row of a table is not used as a caption",fail:"The first child of the table should be a caption instead of a table cell"}},"html5-scope":{impact:"moderate",messages:{pass:"Scope attribute is only used on table header elements (<th>)",fail:"In HTML 5, scope attributes may only be used on table header elements (<th>)"}},"same-caption-summary":{impact:"minor",messages:{pass:"Content of summary attribute and <caption> are not duplicated",fail:"Content of summary attribute and <caption> element are identical"}},"scope-value":{impact:"critical",messages:{pass:"Scope attribute is used correctly",fail:"The value of the scope attribute may only be 'row' or 'col'"}},"td-has-header":{impact:"critical",messages:{pass:"All non-empty data cells have table headers",fail:"Some non-empty data cells do not have table headers"}},"td-headers-attr":{impact:"serious",messages:{pass:"The headers attribute is exclusively used to refer to other cells in the table",incomplete:"The headers attribute is empty",fail:"The headers attribute is not exclusively used to refer to other cells in the table"}},"th-has-data-cells":{impact:"serious",messages:{pass:"All table header cells refer to data cells",fail:"Not all table header cells refer to data cells",incomplete:"Table data cells are missing or empty"}},"hidden-content":{impact:"minor",messages:{pass:"All content on the page has been analyzed.",fail:"There were problems analyzing the content on this page.",incomplete:"There is hidden content on the page that was not analyzed. You will need to trigger the display of this content in order to analyze it."}}},failureSummaries:{any:{failureMessage:function(e){var t="Fix any of the following:",r=e;if(r)for(var a=-1,n=r.length-1;a<n;)t+="\n "+r[a+=1].split("\n").join("\n ");return t}},none:{failureMessage:function(e){var t="Fix all of the following:",r=e;if(r)for(var a=-1,n=r.length-1;a<n;)t+="\n "+r[a+=1].split("\n").join("\n ");return t}}},incompleteFallbackMessage:{}},rules:[{id:"accesskeys",selector:"[accesskey]",excludeHidden:!1,tags:["cat.keyboard","best-practice"],all:[],any:[],none:["accesskeys"]},{id:"area-alt",selector:"map area[href]",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag111","wcag244","wcag412","section508","section508.22.a","ACT"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-allowed-attr",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["aria-allowed-attr"],none:["aria-unsupported-attr",{options:{elementsAllowedAriaLabel:["audio","applet","canvas","dl","embed","iframe","input","label","meter","object","svg","video"]},id:"aria-prohibited-attr"}]},{id:"aria-allowed-role",excludeHidden:!1,selector:"[role]",matches:"aria-allowed-role-matches",tags:["cat.aria","best-practice"],all:[],any:[{options:{allowImplicit:!0,ignoredTags:[]},id:"aria-allowed-role"}],none:[]},{id:"aria-command-name",selector:'[role="link"], [role="button"], [role="menuitem"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-dialog-name",selector:'[role="dialog"], [role="alertdialog"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-hidden-body",selector:"body",excludeHidden:!1,matches:"is-initiator-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["aria-hidden-body"],none:[]},{id:"aria-hidden-focus",selector:'[aria-hidden="true"]',matches:"aria-hidden-focus-matches",excludeHidden:!1,tags:["cat.name-role-value","wcag2a","wcag412","wcag131"],all:["focusable-modal-open","focusable-disabled","focusable-not-tabbable"],any:[],none:[]},{id:"aria-input-field-name",selector:'[role="combobox"], [role="listbox"], [role="searchbox"], [role="slider"], [role="spinbutton"], [role="textbox"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","ACT"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-meter-name",selector:'[role="meter"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-progressbar-name",selector:'[role="progressbar"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-required-attr",selector:"[role]",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["aria-required-attr"],none:[]},{id:"aria-required-children",selector:"[role]",matches:"aria-required-children-matches",tags:["cat.aria","wcag2a","wcag131"],all:[],any:[{options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","table","tablist","tree","treegrid","rowgroup"]},id:"aria-required-children"}],none:[]},{id:"aria-required-parent",selector:"[role]",matches:"aria-required-parent-matches",tags:["cat.aria","wcag2a","wcag131"],all:[],any:[{options:{ownGroupRoles:["listitem","treeitem"]},id:"aria-required-parent"}],none:[]},{id:"aria-roledescription",selector:"[aria-roledescription]",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[{options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]},id:"aria-roledescription"}],none:[]},{id:"aria-roles",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[],none:["fallbackrole","invalidrole","abstractrole","unsupportedrole"]},{id:"aria-text",selector:"[role=text]",tags:["cat.aria","best-practice"],all:[],any:["no-focusable-content"],none:[]},{id:"aria-toggle-field-name",selector:'[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","ACT"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-tooltip-name",selector:'[role="tooltip"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-treeitem-name",selector:'[role="treeitem"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-valid-attr-value",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412"],all:[{options:[],id:"aria-valid-attr-value"},"aria-errormessage"],any:[],none:[]},{id:"aria-valid-attr",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[{options:[],id:"aria-valid-attr"}],none:[]},{id:"audio-caption",selector:"audio",enabled:!1,excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag121","section508","section508.22.a"],all:[],any:[],none:["caption"]},{id:"autocomplete-valid",matches:"autocomplete-matches",tags:["cat.forms","wcag21aa","wcag135"],all:["autocomplete-valid","autocomplete-appropriate"],any:[],none:[]},{id:"avoid-inline-spacing",selector:"[style]",tags:["cat.structure","wcag21aa","wcag1412"],all:[{options:{cssProperties:["line-height","letter-spacing","word-spacing"]},id:"avoid-inline-spacing"}],any:[],none:[]},{id:"blink",selector:"blink",excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag222","section508","section508.22.j"],all:[],any:[],none:["is-on-screen"]},{id:"button-name",selector:"button",matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","ACT"],all:[],any:["button-has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"bypass",selector:"html",pageLevel:!0,matches:"bypass-matches",reviewOnFail:!0,tags:["cat.keyboard","wcag2a","wcag241","section508","section508.22.o"],all:[],any:["internal-link-present",{options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"},id:"header-present"},{options:{selector:"main, [role=main]"},id:"landmark"}],none:[]},{id:"color-contrast",matches:"color-contrast-matches",excludeHidden:!1,tags:["cat.color","wcag2aa","wcag143"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},shadowOutlineEmMax:.1},id:"color-contrast"}],none:[]},{id:"css-orientation-lock",selector:"html",tags:["cat.structure","wcag134","wcag21aa","experimental"],all:[{options:{degreeThreshold:2},id:"css-orientation-lock"}],any:[],none:[],preload:!0},{id:"definition-list",selector:"dl",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:[],none:["structured-dlitems","only-dlitems"]},{id:"dlitem",selector:"dd, dt",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:["dlitem"],none:[]},{id:"document-title",selector:"html",matches:"is-initiator-matches",tags:["cat.text-alternatives","wcag2a","wcag242","ACT"],all:[],any:["doc-has-title"],none:[]},{id:"duplicate-id-active",selector:"[id]",matches:"duplicate-id-active-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],all:[],any:["duplicate-id-active"],none:[]},{id:"duplicate-id-aria",selector:"[id]",matches:"duplicate-id-aria-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],all:[],any:["duplicate-id-aria"],none:[]},{id:"duplicate-id",selector:"[id]",matches:"duplicate-id-misc-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],all:[],any:["duplicate-id"],none:[]},{id:"empty-heading",selector:'h1, h2, h3, h4, h5, h6, [role="heading"]',matches:"heading-matches",tags:["cat.name-role-value","best-practice"],impact:"minor",all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"empty-table-header",selector:'th, [role="rowheader"], [role="columnheader"]',tags:["wcag131","cat.aria"],reviewOnFail:!0,all:[],any:["has-visible-text"],none:[]},{id:"focus-order-semantics",selector:"div, h1, h2, h3, h4, h5, h6, [role=heading], p, span",matches:"inserted-into-focus-order-matches",tags:["cat.keyboard","best-practice","experimental"],all:[],any:[{options:[],id:"has-widget-role"},{options:{roles:["tooltip"]},id:"valid-scrollable-semantics"}],none:[]},{id:"form-field-multiple-labels",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag332"],all:[],any:[],none:["multiple-label"]},{id:"frame-focusable-content",selector:"html",matches:"frame-focusable-content-matches",tags:["cat.keyboard","wcag2a","wcag211"],all:[],any:["frame-focusable-content"],none:[]},{id:"frame-tested",selector:"frame, iframe",tags:["cat.structure","review-item","best-practice"],all:[{options:{isViolation:!1},id:"frame-tested"}],any:[],none:[]},{id:"frame-title-unique",selector:"frame[title], iframe[title]",matches:"frame-title-has-text-matches",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:["unique-frame-title"]},{id:"frame-title",selector:"frame, iframe",tags:["cat.text-alternatives","wcag2a","wcag241","wcag412","section508","section508.22.i"],all:[],any:[{options:{attribute:"title"},id:"non-empty-title"},"aria-label","aria-labelledby","presentational-role"],none:[]},{id:"heading-order",selector:"h1, h2, h3, h4, h5, h6, [role=heading]",matches:"heading-matches",tags:["cat.semantics","best-practice"],all:[],any:["heading-order"],none:[]},{id:"hidden-content",selector:"*",excludeHidden:!1,tags:["cat.structure","experimental","review-item","best-practice"],all:[],any:["hidden-content"],none:[]},{id:"html-has-lang",selector:"html",matches:"is-initiator-matches",tags:["cat.language","wcag2a","wcag311","ACT"],all:[],any:[{options:{attributes:["lang","xml:lang"]},id:"has-lang"}],none:[]},{id:"html-lang-valid",selector:"html[lang], html[xml\\:lang]",tags:["cat.language","wcag2a","wcag311","ACT"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"html-xml-lang-mismatch",selector:"html[lang][xml\\:lang]",matches:"xml-lang-mismatch-matches",tags:["cat.language","wcag2a","wcag311","ACT"],all:["xml-lang-mismatch"],any:[],none:[]},{id:"identical-links-same-purpose",selector:'a[href], area[href], [role="link"]',excludeHidden:!1,matches:"identical-links-same-purpose-matches",tags:["cat.semantics","wcag2aaa","wcag249","best-practice"],all:["identical-links-same-purpose"],any:[],none:[]},{id:"image-alt",selector:"img",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],all:[],any:["has-alt","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["alt-space-value"]},{id:"image-redundant-alt",selector:"img",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:[{options:{parentSelector:"button, [role=button], a[href], p, li, td, th"},id:"duplicate-img-label"}]},{id:"input-button-name",selector:'input[type="button"], input[type="submit"], input[type="reset"]',matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a"],all:[],any:["non-empty-if-present",{options:{attribute:"value"},id:"non-empty-value"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"input-image-alt",selector:'input[type="image"]',matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"label-content-name-mismatch",matches:"label-content-name-mismatch-matches",tags:["cat.semantics","wcag21a","wcag253","experimental"],all:[],any:[{options:{pixelThreshold:.1,occuranceThreshold:3},id:"label-content-name-mismatch"}],none:[]},{id:"label-title-only",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","best-practice"],all:[],any:[],none:["title-only"]},{id:"label",selector:"input, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag412","wcag131","section508","section508.22.n","ACT"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},{options:{attribute:"placeholder"},id:"non-empty-placeholder"},"presentational-role"],none:["help-same-as-label","hidden-explicit-label"]},{id:"landmark-banner-is-top-level",selector:"header:not([role]), [role=banner]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-complementary-is-top-level",selector:"aside:not([role]), [role=complementary]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-contentinfo-is-top-level",selector:"footer:not([role]), [role=contentinfo]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-main-is-top-level",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-no-duplicate-banner",selector:"header:not([role]), [role=banner]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"header:not([role]), [role=banner]",nativeScopeFilter:"article, aside, main, nav, section"},id:"page-no-duplicate-banner"}],none:[]},{id:"landmark-no-duplicate-contentinfo",selector:"footer:not([role]), [role=contentinfo]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"footer:not([role]), [role=contentinfo]",nativeScopeFilter:"article, aside, main, nav, section"},id:"page-no-duplicate-contentinfo"}],none:[]},{id:"landmark-no-duplicate-main",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"main:not([role]), [role='main']"},id:"page-no-duplicate-main"}],none:[]},{id:"landmark-one-main",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"main:not([role]), [role='main']"},id:"page-has-main"}],any:[],none:[]},{id:"landmark-unique",selector:"[role=banner], [role=complementary], [role=contentinfo], [role=main], [role=navigation], [role=region], [role=search], [role=form], form, footer, header, aside, main, nav, section",tags:["cat.semantics","best-practice"],matches:"landmark-unique-matches",all:[],any:["landmark-is-unique"],none:[]},{id:"link-in-text-block",selector:"a[href], [role=link]",matches:"link-in-text-block-matches",excludeHidden:!1,tags:["cat.color","experimental","wcag2a","wcag141"],all:["link-in-text-block"],any:[],none:[]},{id:"link-name",selector:"a[href]",tags:["cat.name-role-value","wcag2a","wcag412","wcag244","section508","section508.22.a","ACT"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["focusable-no-name"]},{id:"list",selector:"ul, ol",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:[],none:["only-listitems"]},{id:"listitem",selector:"li",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:["listitem"],none:[]},{id:"marquee",selector:"marquee",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag222"],all:[],any:[],none:["is-on-screen"]},{id:"meta-refresh",selector:'meta[http-equiv="refresh"]',excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag2aaa","wcag221","wcag224","wcag325"],all:[],any:["meta-refresh"],none:[]},{id:"meta-viewport-large",selector:'meta[name="viewport"]',excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice"],all:[],any:[{options:{scaleMinimum:5,lowerBound:2},id:"meta-viewport-large"}],none:[]},{id:"meta-viewport",selector:'meta[name="viewport"]',excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice","ACT"],all:[],any:[{options:{scaleMinimum:2},id:"meta-viewport"}],none:[]},{id:"nested-interactive",matches:"nested-interactive-matches",tags:["cat.keyboard","wcag2a","wcag412"],all:[],any:["no-focusable-content"],none:[]},{id:"no-autoplay-audio",excludeHidden:!1,selector:"audio[autoplay], video[autoplay]",matches:"no-autoplay-audio-matches",tags:["cat.time-and-media","wcag2a","wcag142","experimental"],preload:!0,all:[{options:{allowedDuration:3},id:"no-autoplay-audio"}],any:[],none:[]},{id:"object-alt",selector:"object",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"p-as-heading",selector:"p",matches:"p-as-heading-matches",tags:["cat.semantics","wcag2a","wcag131","experimental"],all:[{options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}]},id:"p-as-heading"}],any:[],none:[]},{id:"page-has-heading-one",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]"},id:"page-has-heading-one"}],any:[],none:[]},{id:"presentation-role-conflict",selector:'[role="none"], [role="presentation"]',tags:["cat.aria","best-practice"],all:[],any:[],none:["is-element-focusable","has-global-aria-attribute"]},{id:"region",selector:"body *",tags:["cat.keyboard","best-practice"],all:[],any:[{options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg, iframe"},id:"region"}],none:[]},{id:"role-img-alt",selector:"[role='img']:not(img, area, input, object)",matches:"html-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"scope-attr-valid",selector:"td[scope], th[scope]",tags:["cat.tables","best-practice"],all:["html5-scope",{options:{values:["row","col","rowgroup","colgroup"]},id:"scope-value"}],any:[],none:[]},{id:"scrollable-region-focusable",matches:"scrollable-region-focusable-matches",tags:["cat.keyboard","wcag2a","wcag211"],all:[],any:["focusable-content","focusable-element"],none:[]},{id:"select-name",selector:"select",tags:["cat.forms","wcag2a","wcag412","wcag131","section508","section508.22.n","ACT"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["help-same-as-label","hidden-explicit-label"]},{id:"server-side-image-map",selector:"img[ismap]",tags:["cat.text-alternatives","wcag2a","wcag211","section508","section508.22.f"],all:[],any:[],none:["exists"]},{id:"skip-link",selector:'a[href^="#"], a[href^="/#"]',matches:"skip-link-matches",tags:["cat.keyboard","best-practice"],all:[],any:["skip-link"],none:[]},{id:"svg-img-alt",selector:'[role="img"], [role="graphics-symbol"], svg[role="graphics-document"]',matches:"svg-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],all:[],any:["svg-non-empty-title","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"tabindex",selector:"[tabindex]",tags:["cat.keyboard","best-practice"],all:[],any:["tabindex"],none:[]},{id:"table-duplicate-name",selector:"table",tags:["cat.tables","best-practice"],all:[],any:[],none:["same-caption-summary"]},{id:"table-fake-caption",selector:"table",matches:"data-table-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g"],all:["caption-faked"],any:[],none:[]},{id:"td-has-header",selector:"table",matches:"data-table-large-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g"],all:["td-has-header"],any:[],none:[]},{id:"td-headers-attr",selector:"table",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g"],all:["td-headers-attr"],any:[],none:[]},{id:"th-has-data-cells",selector:"table",matches:"data-table-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g"],all:["th-has-data-cells"],any:[],none:[]},{id:"valid-lang",selector:"[lang], [xml\\:lang]",matches:"not-html-matches",tags:["cat.language","wcag2aa","wcag312"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"video-caption",selector:"video",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag122","section508","section508.22.a"],all:[],any:[],none:["caption"]}],checks:[{id:"abstractrole",evaluate:"abstractrole-evaluate"},{id:"aria-allowed-attr",evaluate:"aria-allowed-attr-evaluate"},{id:"aria-allowed-role",evaluate:"aria-allowed-role-evaluate",options:{allowImplicit:!0,ignoredTags:[]}},{id:"aria-errormessage",evaluate:"aria-errormessage-evaluate"},{id:"aria-hidden-body",evaluate:"aria-hidden-body-evaluate"},{id:"aria-prohibited-attr",evaluate:"aria-prohibited-attr-evaluate",options:{elementsAllowedAriaLabel:["audio","applet","canvas","dl","embed","iframe","input","label","meter","object","svg","video"]}},{id:"aria-required-attr",evaluate:"aria-required-attr-evaluate"},{id:"aria-required-children",evaluate:"aria-required-children-evaluate",options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","table","tablist","tree","treegrid","rowgroup"]}},{id:"aria-required-parent",evaluate:"aria-required-parent-evaluate",options:{ownGroupRoles:["listitem","treeitem"]}},{id:"aria-roledescription",evaluate:"aria-roledescription-evaluate",options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]}},{id:"aria-unsupported-attr",evaluate:"aria-unsupported-attr-evaluate"},{id:"aria-valid-attr-value",evaluate:"aria-valid-attr-value-evaluate",options:[]},{id:"aria-valid-attr",evaluate:"aria-valid-attr-evaluate",options:[]},{id:"fallbackrole",evaluate:"fallbackrole-evaluate"},{id:"has-global-aria-attribute",evaluate:"has-global-aria-attribute-evaluate"},{id:"has-widget-role",evaluate:"has-widget-role-evaluate",options:[]},{id:"invalidrole",evaluate:"invalidrole-evaluate"},{id:"is-element-focusable",evaluate:"is-element-focusable-evaluate"},{id:"no-implicit-explicit-label",evaluate:"no-implicit-explicit-label-evaluate"},{id:"unsupportedrole",evaluate:"unsupportedrole-evaluate"},{id:"valid-scrollable-semantics",evaluate:"valid-scrollable-semantics-evaluate",options:{roles:["tooltip"]}},{id:"color-contrast",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},shadowOutlineEmMax:.1}},{id:"link-in-text-block",evaluate:"link-in-text-block-evaluate"},{id:"autocomplete-appropriate",evaluate:"autocomplete-appropriate-evaluate"},{id:"autocomplete-valid",evaluate:"autocomplete-valid-evaluate"},{id:"accesskeys",evaluate:"accesskeys-evaluate",after:"accesskeys-after"},{id:"focusable-content",evaluate:"focusable-content-evaluate"},{id:"focusable-disabled",evaluate:"focusable-disabled-evaluate"},{id:"focusable-element",evaluate:"focusable-element-evaluate"},{id:"focusable-modal-open",evaluate:"focusable-modal-open-evaluate"},{id:"focusable-no-name",evaluate:"focusable-no-name-evaluate"},{id:"focusable-not-tabbable",evaluate:"focusable-not-tabbable-evaluate"},{id:"frame-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"landmark-is-top-level",evaluate:"landmark-is-top-level-evaluate"},{id:"no-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"page-has-heading-one",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]"}},{id:"page-has-main",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"main:not([role]), [role='main']"}},{id:"page-no-duplicate-banner",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"header:not([role]), [role=banner]",nativeScopeFilter:"article, aside, main, nav, section"}},{id:"page-no-duplicate-contentinfo",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"footer:not([role]), [role=contentinfo]",nativeScopeFilter:"article, aside, main, nav, section"}},{id:"page-no-duplicate-main",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"main:not([role]), [role='main']"}},{id:"tabindex",evaluate:"tabindex-evaluate"},{id:"alt-space-value",evaluate:"alt-space-value-evaluate"},{id:"duplicate-img-label",evaluate:"duplicate-img-label-evaluate",options:{parentSelector:"button, [role=button], a[href], p, li, td, th"}},{id:"explicit-label",evaluate:"explicit-evaluate"},{id:"help-same-as-label",evaluate:"help-same-as-label-evaluate",enabled:!1},{id:"hidden-explicit-label",evaluate:"hidden-explicit-label-evaluate"},{id:"implicit-label",evaluate:"implicit-evaluate"},{id:"label-content-name-mismatch",evaluate:"label-content-name-mismatch-evaluate",options:{pixelThreshold:.1,occuranceThreshold:3}},{id:"multiple-label",evaluate:"multiple-label-evaluate"},{id:"title-only",evaluate:"title-only-evaluate"},{id:"landmark-is-unique",evaluate:"landmark-is-unique-evaluate",after:"landmark-is-unique-after"},{id:"has-lang",evaluate:"has-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"valid-lang",evaluate:"valid-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"xml-lang-mismatch",evaluate:"xml-lang-mismatch-evaluate"},{id:"dlitem",evaluate:"dlitem-evaluate"},{id:"listitem",evaluate:"listitem-evaluate"},{id:"only-dlitems",evaluate:"only-dlitems-evaluate"},{id:"only-listitems",evaluate:"only-listitems-evaluate"},{id:"structured-dlitems",evaluate:"structured-dlitems-evaluate"},{id:"caption",evaluate:"caption-evaluate"},{id:"frame-tested",evaluate:"frame-tested-evaluate",options:{isViolation:!1}},{id:"no-autoplay-audio",evaluate:"no-autoplay-audio-evaluate",options:{allowedDuration:3}},{id:"css-orientation-lock",evaluate:"css-orientation-lock-evaluate",options:{degreeThreshold:2}},{id:"meta-viewport-large",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:5,lowerBound:2}},{id:"meta-viewport",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:2}},{id:"header-present",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"}},{id:"heading-order",evaluate:"heading-order-evaluate",after:"heading-order-after"},{id:"identical-links-same-purpose",evaluate:"identical-links-same-purpose-evaluate",after:"identical-links-same-purpose-after"},{id:"internal-link-present",evaluate:"internal-link-present-evaluate"},{id:"landmark",evaluate:"has-descendant-evaluate",options:{selector:"main, [role=main]"}},{id:"meta-refresh",evaluate:"meta-refresh-evaluate"},{id:"p-as-heading",evaluate:"p-as-heading-evaluate",options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}]}},{id:"region",evaluate:"region-evaluate",options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg, iframe"}},{id:"skip-link",evaluate:"skip-link-evaluate"},{id:"unique-frame-title",evaluate:"unique-frame-title-evaluate",after:"unique-frame-title-after"},{id:"duplicate-id-active",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id-aria",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"aria-label",evaluate:"aria-label-evaluate"},{id:"aria-labelledby",evaluate:"aria-labelledby-evaluate"},{id:"avoid-inline-spacing",evaluate:"avoid-inline-spacing-evaluate",options:{cssProperties:["line-height","letter-spacing","word-spacing"]}},{id:"button-has-visible-text",evaluate:"has-text-content-evaluate"},{id:"doc-has-title",evaluate:"doc-has-title-evaluate"},{id:"exists",evaluate:"exists-evaluate"},{id:"has-alt",evaluate:"has-alt-evaluate"},{id:"has-visible-text",evaluate:"has-text-content-evaluate"},{id:"is-on-screen",evaluate:"is-on-screen-evaluate"},{id:"non-empty-alt",evaluate:"attr-non-space-content-evaluate",options:{attribute:"alt"}},{id:"non-empty-if-present",evaluate:"non-empty-if-present-evaluate"},{id:"non-empty-placeholder",evaluate:"attr-non-space-content-evaluate",options:{attribute:"placeholder"}},{id:"non-empty-title",evaluate:"attr-non-space-content-evaluate",options:{attribute:"title"}},{id:"non-empty-value",evaluate:"attr-non-space-content-evaluate",options:{attribute:"value"}},{id:"presentational-role",evaluate:"presentational-role-evaluate"},{id:"role-none",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"none"}}}},{id:"role-presentation",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"presentation"}}}},{id:"svg-non-empty-title",evaluate:"svg-non-empty-title-evaluate"},{id:"caption-faked",evaluate:"caption-faked-evaluate"},{id:"html5-scope",evaluate:"html5-scope-evaluate"},{id:"same-caption-summary",evaluate:"same-caption-summary-evaluate"},{id:"scope-value",evaluate:"scope-value-evaluate",options:{values:["row","col","rowgroup","colgroup"]}},{id:"td-has-header",evaluate:"td-has-header-evaluate"},{id:"td-headers-attr",evaluate:"td-headers-attr-evaluate"},{id:"th-has-data-cells",evaluate:"th-has-data-cells-evaluate"},{id:"hidden-content",evaluate:"hidden-content-evaluate"}]})}("object"==typeof window?window:this);
12
+ !function e(window){var Wu=window,document=window.document;function Gu(e){return(Gu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var axe=axe||{};function Yu(e){this.name="SupportError",this.cause=e.cause,this.message="`".concat(e.cause,"` - feature unsupported in your environment."),e.ruleId&&(this.ruleId=e.ruleId,this.message+=" Skipping ".concat(this.ruleId," rule.")),this.stack=(new Error).stack}axe.version="4.3.3","function"==typeof define&&define.amd&&define("axe-core",[],function(){return axe}),"object"===("undefined"==typeof module?"undefined":Gu(module))&&module.exports&&"function"==typeof e.toString&&(axe.source="("+e.toString()+')(typeof window === "object" ? window : this);',module.exports=axe),"function"==typeof window.getComputedStyle&&(window.axe=axe),(Yu.prototype=Object.create(Error.prototype)).constructor=Yu;var Ku=["node"],Xu=["node"],Ju=["variant"],Qu=["matches"],Zu=["chromium"],e1=["noImplicit"],t1=["noPresentational"],r1=["nodes"],a1=["node"],n1=["relatedNodes"],o1=["environmentData"],i1=["environmentData"],l1=["node"],s1=["environmentData"],u1=["environmentData"],c1=["environmentData"];function d1(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}function r(e,t){return(r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function p1(r){var a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}();return function(){var e,t=n(r);return e=a?(e=n(this).constructor,Reflect.construct(t,arguments,e)):t.apply(this,arguments),t=this,!(e=e)||"object"!==Gu(e)&&"function"!=typeof e?f1(t):e}}function f1(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function n(e){return(n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function m1(e,t){if(null==e)return{};var r,a=function(e,t){if(null==e)return{};var r,a,n={},o=Object.keys(e);for(a=0;a<o.length;a++)r=o[a],0<=t.indexOf(r)||(n[r]=e[r]);return n}(e,t);if(Object.getOwnPropertySymbols)for(var n=Object.getOwnPropertySymbols(e),o=0;o<n.length;o++)r=n[o],0<=t.indexOf(r)||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r]);return a}function h1(e){return function(e){if(Array.isArray(e))return o(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||l(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g1(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var a,n,o=[],i=!0,l=!1;try{for(r=r.call(e);!(i=(a=r.next()).done)&&(o.push(a.value),!t||o.length!==t);i=!0);}catch(e){l=!0,n=e}finally{try{i||null==r.return||r.return()}finally{if(l)throw n}}return o}}(e,t)||l(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v1(){return(v1=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r,a=arguments[t];for(r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r])}return e}).apply(this,arguments)}function b1(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var r=0;r<t.length;r++){var a=t[r];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}function y1(e,t,r){return t&&a(e.prototype,t),r&&a(e,r),e}function D1(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=l(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var a=0,t=function(){};return{s:t,n:function(){return a>=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,o=!0,i=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return o=e.done,e},e:function(e){i=!0,n=e},f:function(){try{o||null==r.return||r.return()}finally{if(i)throw n}}}}function l(e,t){if(e){if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(r="Object"===r&&e.constructor?e.constructor.name:r)||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,a=new Array(t);r<t;r++)a[r]=e[r];return a}function Gu(e){return(Gu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(){function i(e){return l(e,"__esModule",{value:!0})}function t(t,r,a){if(i(t),"object"===Gu(r)||"function"==typeof r){var n,o=D1(e(r));try{for(o.s();!(n=o.n()).done;)!function(){var e=n.value;s.call(t,e)||"default"===e||l(t,e,{get:function(){return r[e]},enumerable:!(a=u(r,e))||a.enumerable})}()}catch(e){o.e(e)}finally{o.f()}}return t}var r=Object.create,l=Object.defineProperty,a=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,e=Object.getOwnPropertyNames,u=Object.getOwnPropertyDescriptor,n=function(e,t){return function(){return t||e((t={exports:{}}).exports,t),t.exports}},o=function(e,t){for(var r in i(e),t)l(e,r,{get:t[r],enumerable:!0})},c=function(e){return e&&e.__esModule?e:t(l(r(a(e)),"default",{value:e,enumerable:!0}),e)},d=n(function(i){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.isIdentStart=function(e){return"a"<=e&&e<="z"||"A"<=e&&e<="Z"||"-"===e||"_"===e},i.isIdent=function(e){return"a"<=e&&e<="z"||"A"<=e&&e<="Z"||"0"<=e&&e<="9"||"-"===e||"_"===e},i.isHex=function(e){return"a"<=e&&e<="f"||"A"<=e&&e<="F"||"0"<=e&&e<="9"},i.escapeIdentifier=function(e){for(var t=e.length,r="",a=0;a<t;){var n=e.charAt(a);if(i.identSpecialChars[n])r+="\\"+n;else if("_"===n||"-"===n||"A"<=n&&n<="Z"||"a"<=n&&n<="z"||0!==a&&"0"<=n&&n<="9")r+=n;else{var o=n.charCodeAt(0);if(55296==(63488&o)){n=e.charCodeAt(a++);if(55296!=(64512&o)||56320!=(64512&n))throw Error("UCS-2(decode): illegal sequence");o=((1023&o)<<10)+(1023&n)+65536}r+="\\"+o.toString(16)+" "}a++}return r},i.escapeStr=function(e){for(var t,r=e.length,a="",n=0;n<r;){var o=e.charAt(n);'"'===o?o='\\"':"\\"===o?o="\\\\":void 0!==(t=i.strReplacementsRev[o])&&(o=t),a+=o,n++}return'"'+a+'"'},i.identSpecialChars={"!":!0,'"':!0,"#":!0,$:!0,"%":!0,"&":!0,"'":!0,"(":!0,")":!0,"*":!0,"+":!0,",":!0,".":!0,"/":!0,";":!0,"<":!0,"=":!0,">":!0,"?":!0,"@":!0,"[":!0,"\\":!0,"]":!0,"^":!0,"`":!0,"{":!0,"|":!0,"}":!0,"~":!0},i.strReplacementsRev={"\n":"\\n","\r":"\\r","\t":"\\t","\f":"\\f","\v":"\\v"},i.singleQuoteEscapeChars={n:"\n",r:"\r",t:"\t",f:"\f","\\":"\\","'":"'"},i.doubleQuotesEscapeChars={n:"\n",r:"\r",t:"\t",f:"\f","\\":"\\",'"':'"'}}),p=n(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var v=d();e.parseCssSelector=function(o,i,l,s,n,u){var c=o.length,d="";function p(e,t){var r="";for(i++,d=o.charAt(i);i<c;){if(d===e)return i++,r;if("\\"===d){i++;var a;if((d=o.charAt(i))===e)r+=e;else if(void 0!==(a=t[d]))r+=a;else{if(v.isHex(d)){var n=d;for(i++,d=o.charAt(i);v.isHex(d);)n+=d,i++,d=o.charAt(i);" "===d&&(i++,d=o.charAt(i)),r+=String.fromCharCode(parseInt(n,16));continue}r+=d}}else r+=d;i++,d=o.charAt(i)}return r}function f(){var e="";for(d=o.charAt(i);i<c;){if(v.isIdent(d))e+=d;else{if("\\"!==d)return e;if(c<=++i)throw Error("Expected symbol but end of file reached.");if(d=o.charAt(i),v.identSpecialChars[d])e+=d;else{if(v.isHex(d)){var t=d;for(i++,d=o.charAt(i);v.isHex(d);)t+=d,i++,d=o.charAt(i);" "===d&&(i++,d=o.charAt(i)),e+=String.fromCharCode(parseInt(t,16));continue}e+=d}}i++,d=o.charAt(i)}return e}function m(){d=o.charAt(i);for(var e=!1;" "===d||"\t"===d||"\n"===d||"\r"===d||"\f"===d;)e=!0,i++,d=o.charAt(i);return e}function h(){var e=r();if(!e)return null;var t=e;for(d=o.charAt(i);","===d;){if(i++,m(),"selectors"!==t.type&&(t={type:"selectors",selectors:[e]}),!(e=r()))throw Error('Rule expected after ",".');t.selectors.push(e)}return t}function r(){m();var e={type:"ruleSet"},t=g();if(!t)return null;for(var r=e;t&&(t.type="rule",r.rule=t,r=t,m(),d=o.charAt(i),!(c<=i||","===d||")"===d));)if(n[d]){var a=d;if(i++,m(),!(t=g()))throw Error('Rule expected after "'+a+'".');t.nestingOperator=a}else(t=g())&&(t.nestingOperator=null);return e}function g(){for(var e=null;i<c;)if("*"===(d=o.charAt(i)))i++,(e=e||{}).tagName="*";else if(v.isIdentStart(d)||"\\"===d)(e=e||{}).tagName=f();else if("."===d)i++,((e=e||{}).classNames=e.classNames||[]).push(f());else if("#"===d)i++,(e=e||{}).id=f();else if("["===d){i++,m();var t={name:f()};if(m(),"]"===d)i++;else{var r="";if(s[d]&&(r=d,i++,d=o.charAt(i)),c<=i)throw Error('Expected "=" but end of file reached.');if("="!==d)throw Error('Expected "=" but "'+d+'" found.');t.operator=r+"=",i++,m();var a="";if(t.valueType="string",'"'===d)a=p('"',v.doubleQuotesEscapeChars);else if("'"===d)a=p("'",v.singleQuoteEscapeChars);else if(u&&"$"===d)i++,a=f(),t.valueType="substitute";else{for(;i<c&&"]"!==d;)a+=d,i++,d=o.charAt(i);a=a.trim()}if(m(),c<=i)throw Error('Expected "]" but end of file reached.');if("]"!==d)throw Error('Expected "]" but "'+d+'" found.');i++,t.value=a}((e=e||{}).attrs=e.attrs||[]).push(t)}else{if(":"!==d)break;i++;r=f(),t={name:r};if("("===d){i++;var n="";if(m(),"selector"===l[r])t.valueType="selector",n=h();else{if(t.valueType=l[r]||"string",'"'===d)n=p('"',v.doubleQuotesEscapeChars);else if("'"===d)n=p("'",v.singleQuoteEscapeChars);else if(u&&"$"===d)i++,n=f(),t.valueType="substitute";else{for(;i<c&&")"!==d;)n+=d,i++,d=o.charAt(i);n=n.trim()}m()}if(c<=i)throw Error('Expected ")" but end of file reached.');if(")"!==d)throw Error('Expected ")" but "'+d+'" found.');i++,t.value=n}((e=e||{}).pseudos=e.pseudos||[]).push(t)}return e}return function(){var e=h();if(i<c)throw Error('Rule expected but "'+o.charAt(i)+'" found.');return e}()}}),f=n(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=d();e.renderEntity=function t(e){var r="";switch(e.type){case"ruleSet":for(var a=e.rule,n=[];a;)a.nestingOperator&&n.push(a.nestingOperator),n.push(t(a)),a=a.rule;r=n.join(" ");break;case"selectors":r=e.selectors.map(t).join(", ");break;case"rule":e.tagName&&(r="*"===e.tagName?"*":o.escapeIdentifier(e.tagName)),e.id&&(r+="#"+o.escapeIdentifier(e.id)),e.classNames&&(r+=e.classNames.map(function(e){return"."+o.escapeIdentifier(e)}).join("")),e.attrs&&(r+=e.attrs.map(function(e){return"operator"in e?"substitute"===e.valueType?"["+o.escapeIdentifier(e.name)+e.operator+"$"+e.value+"]":"["+o.escapeIdentifier(e.name)+e.operator+o.escapeStr(e.value)+"]":"["+o.escapeIdentifier(e.name)+"]"}).join("")),e.pseudos&&(r+=e.pseudos.map(function(e){return e.valueType?"selector"===e.valueType?":"+o.escapeIdentifier(e.name)+"("+t(e.value)+")":"substitute"===e.valueType?":"+o.escapeIdentifier(e.name)+"($"+e.value+")":"numeric"===e.valueType?":"+o.escapeIdentifier(e.name)+"("+e.value+")":":"+o.escapeIdentifier(e.name)+"("+o.escapeIdentifier(e.value)+")":":"+o.escapeIdentifier(e.name)}).join(""));break;default:throw Error('Unknown entity type: "'+e.type+'".')}return r}}),m=n(function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=p(),r=f(),a=(n.prototype.registerSelectorPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.pseudos[n]="selector"}return this},n.prototype.unregisterSelectorPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.pseudos[n]}return this},n.prototype.registerNumericPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.pseudos[n]="numeric"}return this},n.prototype.unregisterNumericPseudos=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.pseudos[n]}return this},n.prototype.registerNestingOperators=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.ruleNestingOperators[n]=!0}return this},n.prototype.unregisterNestingOperators=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.ruleNestingOperators[n]}return this},n.prototype.registerAttrEqualityMods=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];this.attrEqualityMods[n]=!0}return this},n.prototype.unregisterAttrEqualityMods=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r=0,a=e;r<a.length;r++){var n=a[r];delete this.attrEqualityMods[n]}return this},n.prototype.enableSubstitutes=function(){return this.substitutesEnabled=!0,this},n.prototype.disableSubstitutes=function(){return this.substitutesEnabled=!1,this},n.prototype.parse=function(e){return t.parseCssSelector(e,0,this.pseudos,this.attrEqualityMods,this.ruleNestingOperators,this.substitutesEnabled)},n.prototype.render=function(e){return r.renderEntity(e).trim()},n);function n(){this.pseudos={},this.attrEqualityMods={},this.ruleNestingOperators={},this.substitutesEnabled=!1}e.CssSelectorParser=a}),h=n(function(e,t){"use strict";t.exports=function(){}}),C=n(function(e,t){"use strict";var r=h()();t.exports=function(e){return e!==r&&null!==e}}),g=n(function(e,t){"use strict";var r=C(),a=Array.prototype.forEach,n=Object.create;t.exports=function(e){var t=n(null);return a.call(arguments,function(e){r(e)&&function(e,t){for(var r in e)t[r]=e[r]}(Object(e),t)}),t}}),v=n(function(e,t){"use strict";t.exports=function(){var e=Math.sign;return"function"==typeof e&&(1===e(10)&&-1===e(-20))}}),b=n(function(e,t){"use strict";t.exports=function(e){return e=Number(e),isNaN(e)||0===e?e:0<e?1:-1}}),y=n(function(e,t){"use strict";t.exports=v()()?Math.sign:b()}),D=n(function(e,t){"use strict";var r=y(),a=Math.abs,n=Math.floor;t.exports=function(e){return isNaN(e)?0:0!==(e=Number(e))&&isFinite(e)?r(e)*n(a(e)):e}}),F=n(function(e,t){"use strict";var r=D(),a=Math.max;t.exports=function(e){return a(0,r(e))}}),w=n(function(e,t){"use strict";var a=F();t.exports=function(e,t,r){return isNaN(e)?0<=t?r&&t?t-1:t:1:!1!==e&&a(e)}}),k=n(function(e,t){"use strict";t.exports=function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function");return e}}),N=n(function(e,t){"use strict";var r=C();t.exports=function(e){if(!r(e))throw new TypeError("Cannot use null or undefined");return e}}),x=n(function(e,t){"use strict";var l=k(),s=N(),u=Function.prototype.bind,c=Function.prototype.call,d=Object.keys,p=Object.prototype.propertyIsEnumerable;t.exports=function(o,i){return function(r,a){var e,n=arguments[2],t=arguments[3];return r=Object(s(r)),l(a),e=d(r),t&&e.sort("function"==typeof t?u.call(t,r):void 0),"function"!=typeof o&&(o=e[o]),c.call(o,e,function(e,t){return p.call(r,e)?c.call(a,n,r[e],e,r,t):i})}}}),E=n(function(e,t){"use strict";t.exports=x()("forEach")}),A=n(function(){}),R=n(function(e,t){"use strict";t.exports=function(){var e=Object.assign;return"function"==typeof e&&(e(e={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}}),T=n(function(e,t){"use strict";t.exports=function(){try{return Object.keys("primitive"),!0}catch(e){return!1}}}),_=n(function(e,t){"use strict";var r=C(),a=Object.keys;t.exports=function(e){return a(r(e)?Object(e):e)}}),O=n(function(e,t){"use strict";t.exports=T()()?Object.keys:_()}),S=n(function(e,t){"use strict";var i=O(),l=N(),s=Math.max;t.exports=function(t,r){var a,e,n,o=s(arguments.length,2);for(t=Object(l(t)),n=function(e){try{t[e]=r[e]}catch(e){a=a||e}},e=1;e<o;++e)i(r=arguments[e]).forEach(n);if(void 0!==a)throw a;return t}}),I=n(function(e,t){"use strict";t.exports=R()()?Object.assign:S()}),P=n(function(e,t){"use strict";var r=C(),a={function:!0,object:!0};t.exports=function(e){return r(e)&&a[Gu(e)]||!1}}),B=n(function(e,a){"use strict";var n=I(),o=P(),i=C(),l=Error.captureStackTrace;a.exports=function(e){var t=new Error(e),r=arguments[1],e=arguments[2];return i(e)||o(r)&&(e=r,r=null),i(e)&&n(t,e),i(r)&&(t.code=r),l&&l(t,a.exports),t}}),L=n(function(e,t){"use strict";var n=N(),o=Object.defineProperty,i=Object.getOwnPropertyDescriptor,l=Object.getOwnPropertyNames,s=Object.getOwnPropertySymbols;t.exports=function(t,r){var a,e=Object(n(r));if(t=Object(n(t)),l(e).forEach(function(e){try{o(t,e,i(r,e))}catch(e){a=e}}),"function"==typeof s&&s(e).forEach(function(e){try{o(t,e,i(r,e))}catch(e){a=e}}),void 0!==a)throw a;return t}}),M=n(function(e,t){"use strict";function r(e,t){return t}var a,n,o,i,l,s=F();try{Object.defineProperty(r,"length",{configurable:!0,writable:!1,enumerable:!1,value:1})}catch(e){}1===r.length?(a={configurable:!0,writable:!1,enumerable:!1},n=Object.defineProperty,t.exports=function(e,t){return t=s(t),e.length===t?e:(a.value=t,n(e,"length",a))}):(i=L(),l=[],o=function(e){var t,r=0;if(l[e])return l[e];for(t=[];e--;)t.push("a"+(++r).toString(36));return new Function("fn","return function ("+t.join(", ")+") { return fn.apply(this, arguments); };")},t.exports=function(e,t){if(t=s(t),e.length===t)return e;t=o(t)(e);try{i(t,e)}catch(e){}return t})}),q=n(function(e,t){"use strict";t.exports=function(e){return null!=e}}),j=n(function(e,t){"use strict";var r=q(),a={object:!0,function:!0,undefined:!0};t.exports=function(e){return!!r(e)&&hasOwnProperty.call(a,Gu(e))}}),U=n(function(e,t){"use strict";var r=j();t.exports=function(e){if(!r(e))return!1;try{return e.constructor?e.constructor.prototype===e:!1}catch(e){return!1}}}),V=n(function(e,t){"use strict";var r=U();t.exports=function(e){if("function"!=typeof e)return!1;if(!hasOwnProperty.call(e,"length"))return!1;try{if("number"!=typeof e.length)return!1;if("function"!=typeof e.call)return!1;if("function"!=typeof e.apply)return!1}catch(e){return!1}return!r(e)}}),H=n(function(e,t){"use strict";var r=V(),a=/^\s*class[\s{/}]/,n=Function.prototype.toString;t.exports=function(e){return!!r(e)&&!a.test(n.call(e))}}),z=n(function(e,t){"use strict";var r="razdwatrzy";t.exports=function(){return"function"==typeof r.contains&&(!0===r.contains("dwa")&&!1===r.contains("foo"))}}),$=n(function(e,t){"use strict";var r=String.prototype.indexOf;t.exports=function(e){return-1<r.call(this,e,arguments[1])}}),W=n(function(e,t){"use strict";t.exports=z()()?String.prototype.contains:$()}),G=n(function(e,t){"use strict";var i=q(),o=H(),l=I(),s=g(),u=W();(t.exports=function(e,t){var r,a,n,o;return arguments.length<2||"string"!=typeof e?(n=t,t=e,e=null):n=arguments[2],i(e)?(r=u.call(e,"c"),a=u.call(e,"e"),o=u.call(e,"w")):a=!(r=o=!0),o={value:t,configurable:r,enumerable:a,writable:o},n?l(s(n),o):o}).gs=function(e,t,r){var a,n;return"string"!=typeof e?(n=r,r=t,t=e,e=null):n=arguments[3],i(t)?o(t)?i(r)?o(r)||(n=r,r=void 0):r=void 0:(n=t,t=r=void 0):t=void 0,e=i(e)?(a=u.call(e,"c"),u.call(e,"e")):!(a=!0),e={get:t,set:r,configurable:a,enumerable:e},n?l(s(n),e):e}}),Y=n(function(e,t){"use strict";var r=G(),i=k(),l=Function.prototype.apply,s=Function.prototype.call,a=Object.create,n=Object.defineProperty,o=Object.defineProperties,u=Object.prototype.hasOwnProperty,c={configurable:!0,enumerable:!1,writable:!0},d=function(e,t){var r;return i(t),u.call(this,"__ee__")?r=this.__ee__:(r=c.value=a(null),n(this,"__ee__",c),c.value=null),r[e]?"object"===Gu(r[e])?r[e].push(t):r[e]=[r[e],t]:r[e]=t,this},p=function(e,t){var r,a;return i(t),d.call(a=this,e,r=function(){f.call(a,e,r),l.call(t,this,arguments)}),r.__eeOnceListener__=t,this},f=function(e,t){var r,a,n,o;if(i(t),!u.call(this,"__ee__"))return this;if(!(r=this.__ee__)[e])return this;if(a=r[e],"object"===Gu(a))for(o=0;n=a[o];++o)n!==t&&n.__eeOnceListener__!==t||(2===a.length?r[e]=a[o?0:1]:a.splice(o,1));else a!==t&&a.__eeOnceListener__!==t||delete r[e];return this},m=function(e){var t,r,a,n,o;if(u.call(this,"__ee__")&&(n=this.__ee__[e]))if("object"===Gu(n)){for(r=arguments.length,o=new Array(r-1),t=1;t<r;++t)o[t-1]=arguments[t];for(n=n.slice(),t=0;a=n[t];++t)l.call(a,this,o)}else switch(arguments.length){case 1:s.call(n,this);break;case 2:s.call(n,this,arguments[1]);break;case 3:s.call(n,this,arguments[1],arguments[2]);break;default:for(r=arguments.length,o=new Array(r-1),t=1;t<r;++t)o[t-1]=arguments[t];l.call(n,this,o)}},h={on:d,once:p,off:f,emit:m},g={on:r(d),once:r(p),off:r(f),emit:r(m)},v=o({},g);t.exports=e=function(e){return null==e?a(v):o(Object(e),g)},e.methods=h}),K=n(function(e,t){"use strict";t.exports=function(){var e,t=Array.from;return"function"==typeof t&&(t=t(e=["raz","dwa"]),Boolean(t&&t!==e&&"dwa"===t[1]))}}),X=n(function(e,t){"use strict";t.exports=function(){return"object"===("undefined"==typeof globalThis?"undefined":Gu(globalThis))&&(!!globalThis&&globalThis.Array===Array)}}),J=n(function(e,t){function r(){if("object"===("undefined"==typeof self?"undefined":Gu(self))&&self)return self;if("object"===(void 0===window?"undefined":Gu(window))&&window)return window;throw new Error("Unable to resolve global `this`")}t.exports=function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch(e){return r()}try{return __global__?__global__:r()}finally{delete Object.prototype.__global__}}()}),Q=n(function(e,t){"use strict";t.exports=X()()?globalThis:J()}),Z=n(function(e,t){"use strict";var r=Q(),a={object:!0,symbol:!0};t.exports=function(){var e,t=r.Symbol;if("function"!=typeof t)return!1;e=t("test symbol");try{String(e)}catch(e){return!1}return!!a[Gu(t.iterator)]&&(!!a[Gu(t.toPrimitive)]&&!!a[Gu(t.toStringTag)])}}),ee=n(function(e,t){"use strict";t.exports=function(e){return!!e&&("symbol"===Gu(e)||!!e.constructor&&("Symbol"===e.constructor.name&&"Symbol"===e[e.constructor.toStringTag]))}}),te=n(function(e,t){"use strict";var r=ee();t.exports=function(e){if(!r(e))throw new TypeError(e+" is not a symbol");return e}}),re=n(function(e,t){"use strict";var n=G(),r=Object.create,o=Object.defineProperty,i=Object.prototype,l=r(null);t.exports=function(e){for(var t,r,a=0;l[e+(a||"")];)++a;return l[e+=a||""]=!0,o(i,t="@@"+e,n.gs(null,function(e){r||(r=!0,o(this,t,n(e)),r=!1)})),t}}),ae=n(function(e,t){"use strict";var r=G(),a=Q().Symbol;t.exports=function(e){return Object.defineProperties(e,{hasInstance:r("",a&&a.hasInstance||e("hasInstance")),isConcatSpreadable:r("",a&&a.isConcatSpreadable||e("isConcatSpreadable")),iterator:r("",a&&a.iterator||e("iterator")),match:r("",a&&a.match||e("match")),replace:r("",a&&a.replace||e("replace")),search:r("",a&&a.search||e("search")),species:r("",a&&a.species||e("species")),split:r("",a&&a.split||e("split")),toPrimitive:r("",a&&a.toPrimitive||e("toPrimitive")),toStringTag:r("",a&&a.toStringTag||e("toStringTag")),unscopables:r("",a&&a.unscopables||e("unscopables"))})}}),ne=n(function(e,t){"use strict";var r=G(),a=te(),n=Object.create(null);t.exports=function(t){return Object.defineProperties(t,{for:r(function(e){return n[e]||(n[e]=t(String(e)))}),keyFor:r(function(e){for(var t in a(e),n)if(n[t]===e)return t})})}}),oe=n(function(e,t){"use strict";var r,a,n,o=G(),i=te(),l=Q().Symbol,s=re(),u=ae(),c=ne(),d=Object.create,p=Object.defineProperties,f=Object.defineProperty;if("function"==typeof l)try{String(l()),n=!0}catch(e){}else l=null;a=function(e){if(this instanceof a)throw new TypeError("Symbol is not a constructor");return r(e)},t.exports=r=function e(t){var r;if(this instanceof e)throw new TypeError("Symbol is not a constructor");return n?l(t):(r=d(a.prototype),t=void 0===t?"":String(t),p(r,{__description__:o("",t),__name__:o("",s(t))}))},u(r),c(r),p(a.prototype,{constructor:o(r),toString:o("",function(){return this.__name__})}),p(r.prototype,{toString:o(function(){return"Symbol ("+i(this).__description__+")"}),valueOf:o(function(){return i(this)})}),f(r.prototype,r.toPrimitive,o("",function(){var e=i(this);return"symbol"===Gu(e)?e:e.toString()})),f(r.prototype,r.toStringTag,o("c","Symbol")),f(a.prototype,r.toStringTag,o("c",r.prototype[r.toStringTag])),f(a.prototype,r.toPrimitive,o("c",r.prototype[r.toPrimitive]))}),ie=n(function(e,t){"use strict";t.exports=Z()()?Q().Symbol:oe()}),le=n(function(e,t){"use strict";var r=Object.prototype.toString,a=r.call(function(){return arguments}());t.exports=function(e){return r.call(e)===a}}),se=n(function(e,t){"use strict";var r=Object.prototype.toString,a=RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);t.exports=function(e){return"function"==typeof e&&a(r.call(e))}}),ue=n(function(e,t){"use strict";var r=Object.prototype.toString,a=r.call("");t.exports=function(e){return"string"==typeof e||e&&"object"===Gu(e)&&(e instanceof String||r.call(e)===a)||!1}}),ce=n(function(e,t){"use strict";var f=ie().iterator,m=le(),h=se(),g=F(),v=k(),b=N(),y=C(),D=ue(),w=Array.isArray,x=Function.prototype.call,E={configurable:!0,enumerable:!0,writable:!0,value:null},A=Object.defineProperty;t.exports=function(e){var t,r,a,n,o,i,l,s,u,c,d=arguments[1],p=arguments[2];if(e=Object(b(e)),y(d)&&v(d),this&&this!==Array&&h(this))t=this;else{if(!d){if(m(e))return 1!==(o=e.length)?Array.apply(null,e):((n=new Array(1))[0]=e[0],n);if(w(e)){for(n=new Array(o=e.length),r=0;r<o;++r)n[r]=e[r];return n}}n=[]}if(!w(e))if(void 0!==(u=e[f])){for(l=v(u).call(e),t&&(n=new t),s=l.next(),r=0;!s.done;)c=d?x.call(d,p,s.value,r):s.value,t?(E.value=c,A(n,r,E)):n[r]=c,s=l.next(),++r;o=r}else if(D(e)){for(o=e.length,t&&(n=new t),a=r=0;r<o;++r)c=e[r],r+1<o&&55296<=(i=c.charCodeAt(0))&&i<=56319&&(c+=e[++r]),c=d?x.call(d,p,c,a):c,t?(E.value=c,A(n,a,E)):n[a]=c,++a;o=a}if(void 0===o)for(o=g(e.length),t&&(n=new t(o)),r=0;r<o;++r)c=d?x.call(d,p,e[r],r):e[r],t?(E.value=c,A(n,r,E)):n[r]=c;return t&&(E.value=null,n.length=o),n}}),de=n(function(e,t){"use strict";t.exports=K()()?Array.from:ce()}),pe=n(function(e,t){"use strict";var r=de(),a=Array.isArray;t.exports=function(e){return a(e)?e:r(e)}}),fe=n(function(e,t){"use strict";var r=pe(),a=C(),n=k(),o=Array.prototype.slice,i=function(r){return this.map(function(e,t){return e?e(r[t]):r[t]}).concat(o.call(r,this.length))};t.exports=function(e){return(e=r(e)).forEach(function(e){a(e)&&n(e)}),i.bind(e)}}),me=n(function(e,t){"use strict";var r=k();t.exports=function(e){var t;return"function"==typeof e?{set:e,get:e}:(t={get:r(e.get)},void 0!==e.set?(t.set=r(e.set),e.delete&&(t.delete=r(e.delete)),e.clear&&(t.clear=r(e.clear))):t.set=t.get,t)}}),he=n(function(e,t){"use strict";var g=B(),v=M(),b=G(),r=Y().methods,y=fe(),D=me(),w=Function.prototype.apply,x=Function.prototype.call,E=Object.create,A=Object.defineProperties,C=r.on,F=r.emit;t.exports=function(n,t,e){var o,i,l,r,a,s,u,c,d,p,f,m=E(null),h=!1!==t?t:isNaN(n.length)?1:n.length;return e.normalizer&&(s=D(e.normalizer),i=s.get,l=s.set,r=s.delete,a=s.clear),null!=e.resolvers&&(f=y(e.resolvers)),p=i?v(function(e){var t,r,a=arguments;if(f&&(a=f(a)),null!==(t=i(a))&&hasOwnProperty.call(m,t))return u&&o.emit("get",t,a,this),m[t];if(r=1===a.length?x.call(n,this,a[0]):w.call(n,this,a),null===t){if(null!==(t=i(a)))throw g("Circular invocation","CIRCULAR_INVOCATION");t=l(a)}else if(hasOwnProperty.call(m,t))throw g("Circular invocation","CIRCULAR_INVOCATION");return m[t]=r,c&&o.emit("set",t,null,r),r},h):0===t?function(){var e;if(hasOwnProperty.call(m,"data"))return u&&o.emit("get","data",arguments,this),m.data;if(e=arguments.length?w.call(n,this,arguments):x.call(n,this),hasOwnProperty.call(m,"data"))throw g("Circular invocation","CIRCULAR_INVOCATION");return m.data=e,c&&o.emit("set","data",null,e),e}:function(e){var t,r=arguments;if(f&&(r=f(arguments)),t=String(r[0]),hasOwnProperty.call(m,t))return u&&o.emit("get",t,r,this),m[t];if(r=1===r.length?x.call(n,this,r[0]):w.call(n,this,r),hasOwnProperty.call(m,t))throw g("Circular invocation","CIRCULAR_INVOCATION");return m[t]=r,c&&o.emit("set",t,null,r),r},o={original:n,memoized:p,profileName:e.profileName,get:function(e){return f&&(e=f(e)),i?i(e):String(e[0])},has:function(e){return hasOwnProperty.call(m,e)},delete:function(e){var t;hasOwnProperty.call(m,e)&&(r&&r(e),t=m[e],delete m[e],d&&o.emit("delete",e,t))},clear:function(){var e=m;a&&a(),m=E(null),o.emit("clear",e)},on:function(e,t){return"get"===e?u=!0:"set"===e?c=!0:"delete"===e&&(d=!0),C.call(this,e,t)},emit:F,updateEnv:function(){n=o.original}},s=i?v(function(e){var t=arguments;f&&(t=f(t)),null!==(t=i(t))&&o.delete(t)},h):0===t?function(){return o.delete("data")}:function(e){return f&&(e=f(arguments)[0]),o.delete(e)},e=v(function(){var e=arguments;return 0===t?m.data:(f&&(e=f(e)),e=i?i(e):String(e[0]),m[e])}),h=v(function(){var e=arguments;return 0===t?o.has("data"):(f&&(e=f(e)),null!==(e=i?i(e):String(e[0]))&&o.has(e))}),A(p,{__memoized__:b(!0),delete:b(s),clear:b(o.clear),_get:b(e),_has:b(h)}),o}}),ge=n(function(e,t){"use strict";var o=k(),i=E(),l=A(),s=he(),u=w();t.exports=function e(t){var r,a,n;if(o(t),(r=Object(arguments[1])).async&&r.promise)throw new Error("Options 'async' and 'promise' cannot be used together");return hasOwnProperty.call(t,"__memoized__")&&!r.force?t:(a=u(r.length,t.length,r.async&&l.async),n=s(t,a,r),i(l,function(e,t){r[t]&&e(r[t],n,r)}),e.__profiler__&&e.__profiler__(n),n.updateEnv(),n.memoized)}}),ve=n(function(e,t){"use strict";t.exports=function(e){var t,r,a=e.length;if(!a)return"";for(t=String(e[r=0]);--a;)t+=""+e[++r];return t}}),be=n(function(e,t){"use strict";t.exports=function(n){return n?function(e){for(var t=String(e[0]),r=0,a=n;--a;)t+=""+e[++r];return t}:function(){return""}}}),ye=n(function(e,t){"use strict";t.exports=function(){var e=Number.isNaN;return"function"==typeof e&&(!e({})&&e(NaN)&&!e(34))}}),De=n(function(e,t){"use strict";t.exports=function(e){return e!=e}}),we=n(function(e,t){"use strict";t.exports=ye()()?Number.isNaN:De()}),xe=n(function(e,t){"use strict";var n=we(),o=F(),i=N(),l=Array.prototype.indexOf,s=Object.prototype.hasOwnProperty,u=Math.abs,c=Math.floor;t.exports=function(e){var t,r,a;if(!n(e))return l.apply(this,arguments);for(r=o(i(this).length),e=arguments[1],t=e=isNaN(e)?0:0<=e?c(e):o(this.length)-c(u(e));t<r;++t)if(s.call(this,t)&&(a=this[t],n(a)))return t;return-1}}),Ee=n(function(e,t){"use strict";var u=xe(),r=Object.create;t.exports=function(){var o=0,l=[],s=r(null);return{get:function(e){var t,r=0,a=l,n=e.length;if(0===n)return a[n]||null;if(a=a[n]){for(;r<n-1;){if(-1===(t=u.call(a[0],e[r])))return null;a=a[1][t],++r}return-1===(t=u.call(a[0],e[r]))?null:a[1][t]||null}return null},set:function(e){var t,r=0,a=l,n=e.length;if(0===n)a[n]=++o;else{for(a[n]||(a[n]=[[],[]]),a=a[n];r<n-1;)-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1,a[1].push([[],[]])),a=a[1][t],++r;-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1),a[1][t]=++o}return s[o]=e,o},delete:function(e){var t,r=0,a=l,n=s[e],o=n.length,i=[];if(0===o)delete a[o];else if(a=a[o]){for(;r<o-1;){if(-1===(t=u.call(a[0],n[r])))return;i.push(a,t),a=a[1][t],++r}if(-1===(t=u.call(a[0],n[r])))return;for(e=a[1][t],a[0].splice(t,1),a[1].splice(t,1);!a[0].length&&i.length;)t=i.pop(),(a=i.pop())[0].splice(t,1),a[1].splice(t,1)}delete s[e]},clear:function(){l=[],s=r(null)}}}}),Ae=n(function(e,t){"use strict";var n=xe();t.exports=function(){var t=0,r=[],a=[];return{get:function(e){e=n.call(r,e[0]);return-1===e?null:a[e]},set:function(e){return r.push(e[0]),a.push(++t),t},delete:function(e){e=n.call(a,e);-1!==e&&(r.splice(e,1),a.splice(e,1))},clear:function(){r=[],a=[]}}}}),Ce=n(function(e,t){"use strict";var u=xe(),r=Object.create;t.exports=function(i){var n=0,l=[[],[]],s=r(null);return{get:function(e){for(var t,r=0,a=l;r<i-1;){if(-1===(t=u.call(a[0],e[r])))return null;a=a[1][t],++r}return-1!==(t=u.call(a[0],e[r]))&&a[1][t]||null},set:function(e){for(var t,r=0,a=l;r<i-1;)-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1,a[1].push([[],[]])),a=a[1][t],++r;return-1===(t=u.call(a[0],e[r]))&&(t=a[0].push(e[r])-1),a[1][t]=++n,s[n]=e,n},delete:function(e){for(var t,r=0,a=l,n=[],o=s[e];r<i-1;){if(-1===(t=u.call(a[0],o[r])))return;n.push(a,t),a=a[1][t],++r}if(-1!==(t=u.call(a[0],o[r]))){for(e=a[1][t],a[0].splice(t,1),a[1].splice(t,1);!a[0].length&&n.length;)t=n.pop(),(a=n.pop())[0].splice(t,1),a[1].splice(t,1);delete s[e]}},clear:function(){l=[[],[]],s=r(null)}}}}),Fe=n(function(e,t){"use strict";var r=k(),a=E(),l=Function.prototype.call;t.exports=function(e,n){var o={},i=arguments[2];return r(n),a(e,function(e,t,r,a){o[t]=l.call(n,i,e,t,r,a)}),o}}),ke=n(function(e,t){"use strict";function o(e){if("function"!=typeof e)throw new TypeError(e+" is not a function");return e}function r(e){var t,r,a=document.createTextNode(""),n=0;return new e(function(){var e;if(t)r&&(t=r.concat(t));else{if(!r)return;t=r}if(r=t,t=null,"function"==typeof r)return e=r,r=null,void e();for(a.data=n=++n%2;r;)e=r.shift(),r.length||(r=null),e()}).observe(a,{characterData:!0}),function(e){o(e),t?"function"==typeof t?t=[t,e]:t.push(e):(t=e,a.data=n=++n%2)}}t.exports=function(){if("object"===("undefined"==typeof process?"undefined":Gu(process))&&process&&"function"==typeof process.nextTick)return process.nextTick;if("function"==typeof queueMicrotask)return function(e){queueMicrotask(o(e))};if("object"===(void 0===document?"undefined":Gu(document))&&document){if("function"==typeof MutationObserver)return r(MutationObserver);if("function"==typeof WebKitMutationObserver)return r(WebKitMutationObserver)}return"function"==typeof setImmediate?function(e){setImmediate(o(e))}:"function"==typeof setTimeout||"object"===("undefined"==typeof setTimeout?"undefined":Gu(setTimeout))?function(e){setTimeout(o(e),0)}:null}()}),Ne=n(function(){"use strict";var p=de(),t=Fe(),r=L(),n=M(),f=ke(),m=Array.prototype.slice,h=Function.prototype.apply,g=Object.create;A().async=function(e,i){var l,s,u,c=g(null),d=g(null),o=i.memoized,a=i.original;i.memoized=n(function(e){var t=arguments,r=t[t.length-1];return"function"==typeof r&&(l=r,t=m.call(t,0,-1)),o.apply(s=this,u=t)},o);try{r(i.memoized,o)}catch(e){}i.on("get",function(t){var r,a,n;if(l){if(c[t])return"function"==typeof c[t]?c[t]=[c[t],l]:c[t].push(l),void(l=null);r=l,a=s,n=u,l=s=u=null,f(function(){var e;hasOwnProperty.call(d,t)?(e=d[t],i.emit("getasync",t,n,a),h.call(r,e.context,e.args)):(l=r,s=a,u=n,o.apply(a,n))})}}),i.original=function(){var e,t,r,o;return l?(e=p(arguments),t=function e(t){var r,a,n=e.id;if(null!=n){if(delete e.id,r=c[n],delete c[n],r)return a=p(arguments),i.has(n)&&(t?i.delete(n):(d[n]={context:this,args:a},i.emit("setasync",n,"function"==typeof r?1:r.length))),"function"==typeof r?o=h.call(r,this,a):r.forEach(function(e){o=h.call(e,this,a)},this),o}else f(h.bind(e,this,arguments))},r=l,l=s=u=null,e.push(t),o=h.call(a,this,e),t.cb=r,l=t,o):h.call(a,this,arguments)},i.on("set",function(e){l?(c[e]?"function"==typeof c[e]?c[e]=[c[e],l.cb]:c[e].push(l.cb):c[e]=l.cb,delete l.cb,l.id=e,l=null):i.delete(e)}),i.on("delete",function(e){var t;hasOwnProperty.call(c,e)||d[e]&&(t=d[e],delete d[e],i.emit("deleteasync",e,m.call(t.args,1)))}),i.on("clear",function(){var e=d;d=g(null),i.emit("clearasync",t(e,function(e){return m.call(e.args,1)}))})}}),Re=n(function(e,t){"use strict";var r=Array.prototype.forEach,a=Object.create;t.exports=function(e){var t=a(null);return r.call(arguments,function(e){t[e]=!0}),t}}),Te=n(function(e,t){"use strict";t.exports=function(e){return"function"==typeof e}}),_e=n(function(e,t){"use strict";var r=Te();t.exports=function(e){try{return e&&r(e.toString)?e.toString():String(e)}catch(e){throw new TypeError("Passed argument cannot be stringifed")}}}),Oe=n(function(e,t){"use strict";var r=N(),a=_e();t.exports=function(e){return a(r(e))}}),Se=n(function(e,t){"use strict";var r=Te();t.exports=function(e){try{return e&&r(e.toString)?e.toString():String(e)}catch(e){return"<Non-coercible to string value>"}}}),Ie=n(function(e,t){"use strict";var r=Se(),a=/[\n\r\u2028\u2029]/g;t.exports=function(e){e=r(e);return e=(e=100<e.length?e.slice(0,99)+"…":e).replace(a,function(e){return JSON.stringify(e).slice(1,-1)})}}),Pe=n(function(e,t){function r(e){return!!e&&("object"===Gu(e)||"function"==typeof e)&&"function"==typeof e.then}t.exports=r,t.exports.default=r}),Be=n(function(){"use strict";var t=Fe(),e=Re(),r=Oe(),a=Ie(),f=Pe(),m=ke(),n=Object.create,o=e("then","then:finally","done","done:finally");A().promise=function(s,u){var c=n(null),d=n(null),p=n(null);if(!0===s)s=null;else if(s=r(s),!o[s])throw new TypeError("'"+a(s)+"' is not valid promise mode");u.on("set",function(r,e,t){var a=!1;if(!f(t))return d[r]=t,void u.emit("setasync",r,1);c[r]=1,p[r]=t;function n(e){var t=c[r];if(a)throw new Error("Memoizee error: Detected unordered then|done & finally resolution, which in turn makes proper detection of success/failure impossible (when in 'done:finally' mode)\nConsider to rely on 'then' or 'done' mode instead.");t&&(delete c[r],d[r]=e,u.emit("setasync",r,t))}function o(){a=!0,c[r]&&(delete c[r],delete p[r],u.delete(r))}var i=s;if("then"===(i=i||"then")){var l=function(){m(o)};"function"==typeof(t=t.then(function(e){m(n.bind(this,e))},l)).finally&&t.finally(l)}else if("done"===i){if("function"!=typeof t.done)throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done' mode");t.done(n,o)}else if("done:finally"===i){if("function"!=typeof t.done)throw new Error("Memoizee error: Retrieved promise does not implement 'done' in 'done:finally' mode");if("function"!=typeof t.finally)throw new Error("Memoizee error: Retrieved promise does not implement 'finally' in 'done:finally' mode");t.done(n),t.finally(o)}}),u.on("get",function(e,t,r){var a,n;c[e]?++c[e]:(a=p[e],n=function(){u.emit("getasync",e,t,r)},f(a)?"function"==typeof a.done?a.done(n):a.then(function(){m(n)}):n())}),u.on("delete",function(e){var t;delete p[e],c[e]?delete c[e]:hasOwnProperty.call(d,e)&&(t=d[e],delete d[e],u.emit("deleteasync",e,[t]))}),u.on("clear",function(){var e=d;d=n(null),c=n(null),p=n(null),u.emit("clearasync",t(e,function(e){return[e]}))})}}),Le=n(function(){"use strict";var n=k(),o=E(),i=A(),l=Function.prototype.apply;i.dispose=function(r,e,t){var a;if(n(r),t.async&&i.async||t.promise&&i.promise)return e.on("deleteasync",a=function(e,t){l.call(r,null,t)}),void e.on("clearasync",function(e){o(e,function(e,t){a(t,e)})});e.on("delete",a=function(e,t){r(t)}),e.on("clear",function(e){o(e,function(e,t){a(t,e)})})}}),Me=n(function(e,t){"use strict";t.exports=2147483647}),qe=n(function(e,t){"use strict";var r=F(),a=Me();t.exports=function(e){if(e=r(e),a<e)throw new TypeError(e+" exceeds maximum possible timeout");return e}}),je=n(function(){"use strict";var l=de(),s=E(),u=ke(),c=Pe(),d=qe(),p=A(),f=Function.prototype,m=Math.max,h=Math.min,g=Object.create;p.maxAge=function(t,n,o){var r,e,a,i;(t=d(t))&&(r=g(null),e=o.async&&p.async||o.promise&&p.promise?"async":"",n.on("set"+e,function(e){r[e]=setTimeout(function(){n.delete(e)},t),"function"==typeof r[e].unref&&r[e].unref(),i&&(i[e]&&"nextTick"!==i[e]&&clearTimeout(i[e]),i[e]=setTimeout(function(){delete i[e]},a),"function"==typeof i[e].unref&&i[e].unref())}),n.on("delete"+e,function(e){clearTimeout(r[e]),delete r[e],i&&("nextTick"!==i[e]&&clearTimeout(i[e]),delete i[e])}),o.preFetch&&(a=!0===o.preFetch||isNaN(o.preFetch)?.333:m(h(Number(o.preFetch),1),0))&&(i={},a=(1-a)*t,n.on("get"+e,function(t,r,a){i[t]||(i[t]="nextTick",u(function(){var e;"nextTick"===i[t]&&(delete i[t],n.delete(t),o.async&&(r=l(r)).push(f),e=n.memoized.apply(a,r),o.promise&&c(e)&&("function"==typeof e.done?e.done(f,f):e.then(f,f)))}))})),n.on("clear"+e,function(){s(r,function(e){clearTimeout(e)}),r={},i&&(s(i,function(e){"nextTick"!==e&&clearTimeout(e)}),i={})}))}}),Ue=n(function(e,t){"use strict";var r=F(),c=Object.create,d=Object.prototype.hasOwnProperty;t.exports=function(a){var n,o=0,i=1,l=c(null),s=c(null),u=0;return a=r(a),{hit:function(e){var t=s[e],r=++u;if(l[r]=e,s[e]=r,!t)return++o<=a?void 0:(e=l[i],n(e),e);if(delete l[t],i===t)for(;!d.call(l,++i););},delete:n=function(e){var t=s[e];if(t&&(delete l[t],delete s[e],--o,i===t)){if(!o)return u=0,void(i=1);for(;!d.call(l,++i););}},clear:function(){o=0,i=1,l=c(null),s=c(null),u=0}}}}),Ve=n(function(){"use strict";var n=F(),o=Ue(),i=A();i.max=function(e,t,r){var a;(e=n(e))&&(a=o(e),e=r.async&&i.async||r.promise&&i.promise?"async":"",t.on("set"+e,r=function(e){void 0!==(e=a.hit(e))&&t.delete(e)}),t.on("get"+e,r),t.on("delete"+e,a.delete),t.on("clear"+e,a.clear))}}),He=n(function(){"use strict";var n=G(),o=A(),i=Object.create,l=Object.defineProperties;o.refCounter=function(e,t,r){var a=i(null),r=r.async&&o.async||r.promise&&o.promise?"async":"";t.on("set"+r,function(e,t){a[e]=t||1}),t.on("get"+r,function(e){++a[e]}),t.on("delete"+r,function(e){delete a[e]}),t.on("clear"+r,function(){a={}}),l(t.memoized,{deleteRef:n(function(){var e=t.get(arguments);return null!==e&&a[e]?!--a[e]&&(t.delete(e),!0):null}),getRefCount:n(function(){var e=t.get(arguments);return null!==e&&a[e]||0})})}}),ze=n(function(e,t){"use strict";var a=g(),n=w(),o=ge();t.exports=function(e){var t,r=a(arguments[1]);return r.normalizer||0!==(t=r.length=n(r.length,e.length,r.async))&&(r.primitive?!1===t?r.normalizer=ve():1<t&&(r.normalizer=be()(t)):r.normalizer=!1===t?Ee()():1===t?Ae()():Ce()(t)),r.async&&Ne(),r.promise&&Be(),r.dispose&&Le(),r.maxAge&&je(),r.max&&Ve(),r.refCounter&&He(),o(e,r)}}),$e=n(function(e,t){"use strict";t.exports=function(){return/\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g}}),We=n(function(e,t){!function(){"use strict";var l={name:"doT",version:"1.1.1",templateSettings:{evaluate:/\{\{([\s\S]+?(\}?)+)\}\}/g,interpolate:/\{\{=([\s\S]+?)\}\}/g,encode:/\{\{!([\s\S]+?)\}\}/g,use:/\{\{#([\s\S]+?)\}\}/g,useParams:/(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g,define:/\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g,defineParams:/^\s*([\w$]+):([\s\S]+)/,conditional:/\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g,iterate:/\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g,varname:"it",strip:!0,append:!0,selfcontained:!1,doNotSkipEncoded:!1},template:void 0,compile:void 0,log:!0};!function(){if("object"!==("undefined"==typeof globalThis?"undefined":Gu(globalThis)))try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),__magic__.globalThis=__magic__,delete Object.prototype.__magic__}catch(e){window.globalThis=function(){if("undefined"!=typeof self)return self;if(void 0!==window)return window;if(void 0!==Wu)return Wu;if(void 0!==this)return this;throw new Error("Unable to locate global `this`")}()}}(),l.encodeHTMLSource=function(e){var t={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},r=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(r,function(e){return t[e]||e}):""}},void 0!==t&&t.exports?t.exports=l:"function"==typeof define&&define.amd?define(function(){return l}):globalThis.doT=l;var s={append:{start:"'+(",end:")+'",startencode:"'+encodeHTML("},split:{start:"';out+=(",end:");out+='",startencode:"';out+=encodeHTML("}},u=/$^/;function c(e){return e.replace(/\\('|\\)/g,"$1").replace(/[\r\t\n]/g," ")}l.template=function(t,e,r){var a,n,o=(e=e||l.templateSettings).append?s.append:s.split,i=0,t=e.use||e.define?function r(n,e,o){return("string"==typeof e?e:e.toString()).replace(n.define||u,function(e,a,t,r){return(a=0===a.indexOf("def.")?a.substring(4):a)in o||(":"===t?(n.defineParams&&r.replace(n.defineParams,function(e,t,r){o[a]={arg:t,text:r}}),a in o||(o[a]=r)):new Function("def","def['"+a+"']="+r)(o)),""}).replace(n.use||u,function(e,t){return n.useParams&&(t=t.replace(n.useParams,function(e,t,r,a){if(o[r]&&o[r].arg&&a){var n=(r+":"+a).replace(/'|\\/g,"_");return o.__exp=o.__exp||{},o.__exp[n]=o[r].text.replace(new RegExp("(^|[^\\w$])"+o[r].arg+"([^\\w$])","g"),"$1"+a+"$2"),t+"def.__exp['"+n+"']"}})),(t=new Function("def","return "+t)(o))&&r(n,t,o)})}(e,t,r||{}):t,t=("var out='"+(e.strip?t.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ").replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""):t).replace(/'|\\/g,"\\$&").replace(e.interpolate||u,function(e,t){return o.start+c(t)+o.end}).replace(e.encode||u,function(e,t){return a=!0,o.startencode+c(t)+o.end}).replace(e.conditional||u,function(e,t,r){return t?r?"';}else if("+c(r)+"){out+='":"';}else{out+='":r?"';if("+c(r)+"){out+='":"';}out+='"}).replace(e.iterate||u,function(e,t,r,a){return t?(i+=1,n=a||"i"+i,t=c(t),"';var arr"+i+"="+t+";if(arr"+i+"){var "+r+","+n+"=-1,l"+i+"=arr"+i+".length-1;while("+n+"<l"+i+"){"+r+"=arr"+i+"["+n+"+=1];out+='"):"';} } out+='"}).replace(e.evaluate||u,function(e,t){return"';"+c(t)+"out+='"})+"';return out;").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r").replace(/(\s|;|\}|^|\{)out\+='';/g,"$1").replace(/\+''/g,"");a&&(e.selfcontained||!globalThis||globalThis._encodeHTML||(globalThis._encodeHTML=l.encodeHTMLSource(e.doNotSkipEncoded)),t="var encodeHTML = typeof _encodeHTML !== 'undefined' ? _encodeHTML : ("+l.encodeHTMLSource.toString()+"("+(e.doNotSkipEncoded||"")+"));"+t);try{return new Function(e.varname,t)}catch(e){throw"undefined"!=typeof console&&console.log("Could not create a template function: "+t),e}},l.compile=function(e,t){return l.template(e,null,t)}}()}),Ge=n(function(e,t){var r;r=function(){"use strict";function s(e){return"function"==typeof e}var r=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},a=0,t=void 0,n=void 0,i=function(e,t){d[a]=e,d[a+1]=t,2===(a+=2)&&(n?n(p):b())};var e=void 0!==window?window:void 0,o=e||{},l=o.MutationObserver||o.WebKitMutationObserver,u="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),o="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function c(){var e=setTimeout;return function(){return e(p,1)}}var d=new Array(1e3);function p(){for(var e=0;e<a;e+=2)(0,d[e])(d[e+1]),d[e]=void 0,d[e+1]=void 0;a=0}function f(){try{var e=Function("return this")().require("vertx");return void 0!==(t=e.runOnLoop||e.runOnContext)?function(){t(p)}:c()}catch(e){return c()}}var m,h,g,v,b=void 0;function y(e,t){var r=this,a=new this.constructor(x);void 0===a[w]&&B(a);var n,o=r._state;return o?(n=arguments[o-1],i(function(){return I(o,a,n,r._result)})):O(r,a,e,t),a}function D(e){if(e&&"object"===Gu(e)&&e.constructor===this)return e;var t=new this(x);return N(t,e),t}var b=u?function(){return process.nextTick(p)}:l?(h=0,g=new l(p),v=document.createTextNode(""),g.observe(v,{characterData:!0}),function(){v.data=h=++h%2}):o?((m=new MessageChannel).port1.onmessage=p,function(){return m.port2.postMessage(0)}):(void 0===e?f:c)(),w=Math.random().toString(36).substring(2);function x(){}var E=void 0,A=1,C=2;function F(e,a,n){i(function(t){var r=!1,e=function(e,t,r,a){try{e.call(t,r,a)}catch(e){return e}}(n,a,function(e){r||(r=!0,(a!==e?N:T)(t,e))},function(e){r||(r=!0,_(t,e))},t._label);!r&&e&&(r=!0,_(t,e))},e)}function k(e,t,r){var a,n;t.constructor===e.constructor&&r===y&&t.constructor.resolve===D?(a=e,(n=t)._state===A?T(a,n._result):n._state===C?_(a,n._result):O(n,void 0,function(e){return N(a,e)},function(e){return _(a,e)})):void 0!==r&&s(r)?F(e,t,r):T(e,t)}function N(t,e){if(t===e)_(t,new TypeError("You cannot resolve a promise with itself"));else if(a=Gu(r=e),null===r||"object"!==a&&"function"!==a)T(t,e);else{a=void 0;try{a=e.then}catch(e){return void _(t,e)}k(t,e,a)}var r,a}function R(e){e._onerror&&e._onerror(e._result),S(e)}function T(e,t){e._state===E&&(e._result=t,e._state=A,0!==e._subscribers.length&&i(S,e))}function _(e,t){e._state===E&&(e._state=C,e._result=t,i(R,e))}function O(e,t,r,a){var n=e._subscribers,o=n.length;e._onerror=null,n[o]=t,n[o+A]=r,n[o+C]=a,0===o&&e._state&&i(S,e)}function S(e){var t=e._subscribers,r=e._state;if(0!==t.length){for(var a,n=void 0,o=e._result,i=0;i<t.length;i+=3)a=t[i],n=t[i+r],a?I(r,a,n,o):n(o);e._subscribers.length=0}}function I(e,t,r,a){var n=s(r),o=void 0,i=void 0,l=!0;if(n){try{o=r(a)}catch(e){l=!1,i=e}if(t===o)return void _(t,new TypeError("A promises callback cannot return that same promise."))}else o=a;t._state!==E||(n&&l?N(t,o):!1===l?_(t,i):e===A?T(t,o):e===C&&_(t,o))}var P=0;function B(e){e[w]=P++,e._state=void 0,e._result=void 0,e._subscribers=[]}var L=(M.prototype._enumerate=function(e){for(var t=0;this._state===E&&t<e.length;t++)this._eachEntry(e[t],t)},M.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,a=r.resolve;if(a===D){var n,o=void 0,i=void 0,l=!1;try{o=t.then}catch(e){l=!0,i=e}o===y&&t._state!==E?this._settledAt(t._state,e,t._result):"function"!=typeof o?(this._remaining--,this._result[e]=t):r===q?(n=new r(x),l?_(n,i):k(n,t,o),this._willSettleAt(n,e)):this._willSettleAt(new r(function(e){return e(t)}),e)}else this._willSettleAt(a(t),e)},M.prototype._settledAt=function(e,t,r){var a=this.promise;a._state===E&&(this._remaining--,e===C?_(a,r):this._result[t]=r),0===this._remaining&&T(a,this._result)},M.prototype._willSettleAt=function(e,t){var r=this;O(e,void 0,function(e){return r._settledAt(A,t,e)},function(e){return r._settledAt(C,t,e)})},M);function M(e,t){this._instanceConstructor=e,this.promise=new e(x),this.promise[w]||B(this.promise),r(t)?(this.length=t.length,this._remaining=t.length,this._result=new Array(this.length),0===this.length?T(this.promise,this._result):(this.length=this.length||0,this._enumerate(t),0===this._remaining&&T(this.promise,this._result))):_(this.promise,new Error("Array Methods must be provided an Array"))}var q=(j.prototype.catch=function(e){return this.then(null,e)},j.prototype.finally=function(t){var r=this.constructor;return s(t)?this.then(function(e){return r.resolve(t()).then(function(){return e})},function(e){return r.resolve(t()).then(function(){throw e})}):this.then(t,t)},j);function j(e){this[w]=P++,this._result=this._state=void 0,this._subscribers=[],x!==e&&("function"!=typeof e&&function(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}(),this instanceof j?function(t,e){try{e(function(e){N(t,e)},function(e){_(t,e)})}catch(e){_(t,e)}}(this,e):function(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}())}return q.prototype.then=y,q.all=function(e){return new L(this,e).promise},q.race=function(n){var o=this;return r(n)?new o(function(e,t){for(var r=n.length,a=0;a<r;a++)o.resolve(n[a]).then(e,t)}):new o(function(e,t){return t(new TypeError("You must pass an array to race."))})},q.resolve=D,q.reject=function(e){var t=new this(x);return _(t,e),t},q._setScheduler=function(e){n=e},q._setAsap=function(e){i=e},q._asap=i,q.polyfill=function(){var e=void 0;if(void 0!==Wu)e=Wu;else if("undefined"!=typeof self)e=self;else try{e=Function("return this")()}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment")}var t=e.Promise;if(t){var r=null;try{r=Object.prototype.toString.call(t.resolve())}catch(e){}if("[object Promise]"===r&&!t.cast)return}e.Promise=q},q.Promise=q},"object"===Gu(e=e)&&void 0!==t?t.exports=r():"function"==typeof define&&define.amd?define(r):e.ES6Promise=r()}),Ye=n(function(p){var t,r,a=1e5,f=(t=Object.prototype.toString,r=Object.prototype.hasOwnProperty,{Class:function(e){return t.call(e).replace(/^\[object *|\]$/g,"")},HasProperty:function(e,t){return t in e},HasOwnProperty:function(e,t){return r.call(e,t)},IsCallable:function(e){return"function"==typeof e},ToInt32:function(e){return e>>0},ToUint32:function(e){return e>>>0}}),m=Math.LN2,h=Math.abs,g=Math.floor,v=Math.log,b=Math.min,y=Math.pow,n=Math.round;function D(e){if(i&&o)for(var t=i(e),r=0;r<t.length;r+=1)o(e,t[r],{value:e[t[r]],writable:!1,enumerable:!1,configurable:!1})}var l,e,o=Object.defineProperty&&function(){try{return Object.defineProperty({},"x",{}),1}catch(e){return}}()?Object.defineProperty:function(e,t,r){if(!e===Object(e))throw new TypeError("Object.defineProperty called on non-object");return f.HasProperty(r,"get")&&Object.prototype.__defineGetter__&&Object.prototype.__defineGetter__.call(e,t,r.get),f.HasProperty(r,"set")&&Object.prototype.__defineSetter__&&Object.prototype.__defineSetter__.call(e,t,r.set),f.HasProperty(r,"value")&&(e[t]=r.value),e},i=Object.getOwnPropertyNames||function(e){if(e!==Object(e))throw new TypeError("Object.getOwnPropertyNames called on non-object");var t,r=[];for(t in e)f.HasOwnProperty(e,t)&&r.push(t);return r};function w(r){if(o){if(r.length>a)throw new RangeError("Array too large for polyfill");for(var e=0;e<r.length;e+=1)!function(t){o(r,t,{get:function(){return r._getter(t)},set:function(e){r._setter(t,e)},enumerable:!0,configurable:!1})}(e)}}function s(e,t){t=32-t;return e<<t>>t}function u(e,t){t=32-t;return e<<t>>>t}function x(e){return[255&e]}function E(e){return s(e[0],8)}function A(e){return[255&e]}function C(e){return u(e[0],8)}function F(e){return[(e=n(Number(e)))<0?0:255<e?255:255&e]}function k(e){return[e>>8&255,255&e]}function N(e){return s(e[0]<<8|e[1],16)}function R(e){return[e>>8&255,255&e]}function T(e){return u(e[0]<<8|e[1],16)}function _(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}function O(e){return s(e[0]<<24|e[1]<<16|e[2]<<8|e[3],32)}function S(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}function I(e){return u(e[0]<<24|e[1]<<16|e[2]<<8|e[3],32)}function c(e,t,r){var a,n,o,i,l,s,u,c=(1<<t-1)-1;function d(e){var t=g(e),e=e-t;return!(e<.5)&&(.5<e||t%2)?t+1:t}for(e!=e?(n=(1<<t)-1,o=y(2,r-1),a=0):e===1/0||e===-1/0?(n=(1<<t)-1,a=e<(o=0)?1:0):0===e?a=1/e==-1/(o=n=0)?1:0:(a=e<0,(e=h(e))>=y(2,1-c)?(n=b(g(v(e)/m),1023),2<=(o=d(e/y(2,n)*y(2,r)))/y(2,r)&&(n+=1,o=1),c<n?(n=(1<<t)-1,o=0):(n+=c,o-=y(2,r))):(n=0,o=d(e/y(2,1-c-r)))),l=[],i=r;i;--i)l.push(o%2?1:0),o=g(o/2);for(i=t;i;--i)l.push(n%2?1:0),n=g(n/2);for(l.push(a?1:0),l.reverse(),s=l.join(""),u=[];s.length;)u.push(parseInt(s.substring(0,8),2)),s=s.substring(8);return u}function d(e,t,r){for(var a,n,o,i,l,s,u=[],c=e.length;c;--c)for(n=e[c-1],a=8;a;--a)u.push(n%2?1:0),n>>=1;return u.reverse(),s=u.join(""),o=(1<<t-1)-1,i=parseInt(s.substring(0,1),2)?-1:1,l=parseInt(s.substring(1,1+t),2),s=parseInt(s.substring(1+t),2),l===(1<<t)-1?0!==s?NaN:1/0*i:0<l?i*y(2,l-o)*(1+s/y(2,r)):0!==s?i*y(2,-(o-1))*(s/y(2,r)):i<0?-0:0}function P(e){return d(e,11,52)}function B(e){return c(e,11,52)}function L(e){return d(e,8,23)}function M(e){return c(e,8,23)}function q(e,t){return f.IsCallable(e.get)?e.get(t):e[t]}function j(o){return function(e,t){if((e=f.ToUint32(e))+o.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");e+=this.byteOffset;for(var r=new p.Uint8Array(this.buffer,e,o.BYTES_PER_ELEMENT),a=[],n=0;n<o.BYTES_PER_ELEMENT;n+=1)a.push(q(r,n));return Boolean(t)===Boolean(l)&&a.reverse(),q(new o(new p.Uint8Array(a).buffer),0)}}function U(i){return function(e,t,r){if((e=f.ToUint32(e))+i.BYTES_PER_ELEMENT>this.byteLength)throw new RangeError("Array index out of range");for(var t=new i([t]),a=new p.Uint8Array(t.buffer),n=[],o=0;o<i.BYTES_PER_ELEMENT;o+=1)n.push(q(a,o));Boolean(r)===Boolean(l)&&n.reverse(),new p.Uint8Array(this.buffer,e,i.BYTES_PER_ELEMENT).set(n)}}!function(){function s(e){if((e=f.ToInt32(e))<0)throw new RangeError("ArrayBuffer size is not a small enough positive integer");var t;for(this.byteLength=e,this._bytes=[],this._bytes.length=e,t=0;t<this.byteLength;t+=1)this._bytes[t]=0;D(this)}p.ArrayBuffer=p.ArrayBuffer||s;function a(){}function e(e,t,r){var l=function(e,t,r){var a,n,o,i;if(arguments.length&&"number"!=typeof e)if("object"===Gu(e)&&e.constructor===l)for(this.length=(a=e).length,this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),o=this.byteOffset=0;o<this.length;o+=1)this._setter(o,a._getter(o));else if("object"!==Gu(e)||(e instanceof s||"ArrayBuffer"===f.Class(e))){if("object"!==Gu(e)||!(e instanceof s||"ArrayBuffer"===f.Class(e)))throw new TypeError("Unexpected argument type(s)");if(this.buffer=e,this.byteOffset=f.ToUint32(t),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteOffset%this.BYTES_PER_ELEMENT)throw new RangeError("ArrayBuffer length minus the byteOffset is not a multiple of the element size.");if(arguments.length<3){if(this.byteLength=this.buffer.byteLength-this.byteOffset,this.byteLength%this.BYTES_PER_ELEMENT)throw new RangeError("length of buffer minus byteOffset not a multiple of the element size");this.length=this.byteLength/this.BYTES_PER_ELEMENT}else this.length=f.ToUint32(r),this.byteLength=this.length*this.BYTES_PER_ELEMENT;if(this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer")}else for(this.length=f.ToUint32((n=e).length),this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),o=this.byteOffset=0;o<this.length;o+=1)i=n[o],this._setter(o,Number(i));else{if(this.length=f.ToInt32(e),r<0)throw new RangeError("ArrayBufferView size is not a small enough positive integer");this.byteLength=this.length*this.BYTES_PER_ELEMENT,this.buffer=new s(this.byteLength),this.byteOffset=0}this.constructor=l,D(this),w(this)};return l.prototype=new a,l.prototype.BYTES_PER_ELEMENT=e,l.prototype._pack=t,l.prototype._unpack=r,l.BYTES_PER_ELEMENT=e,l.prototype._getter=function(e){if(arguments.length<1)throw new SyntaxError("Not enough arguments");if(!((e=f.ToUint32(e))>=this.length)){for(var t=[],r=0,a=this.byteOffset+e*this.BYTES_PER_ELEMENT;r<this.BYTES_PER_ELEMENT;r+=1,a+=1)t.push(this.buffer._bytes[a]);return this._unpack(t)}},l.prototype.get=l.prototype._getter,l.prototype._setter=function(e,t){if(arguments.length<2)throw new SyntaxError("Not enough arguments");if(!((e=f.ToUint32(e))>=this.length))for(var r=this._pack(t),a=0,n=this.byteOffset+e*this.BYTES_PER_ELEMENT;a<this.BYTES_PER_ELEMENT;a+=1,n+=1)this.buffer._bytes[n]=r[a]},l.prototype.set=function(e,t){if(arguments.length<1)throw new SyntaxError("Not enough arguments");var r,a,n,o,i,l,s,u,c,d;if("object"===Gu(e)&&e.constructor===this.constructor){if(r=e,(n=f.ToUint32(t))+r.length>this.length)throw new RangeError("Offset plus length of array is out of range");if(u=this.byteOffset+n*this.BYTES_PER_ELEMENT,c=r.length*this.BYTES_PER_ELEMENT,r.buffer===this.buffer){for(d=[],i=0,l=r.byteOffset;i<c;i+=1,l+=1)d[i]=r.buffer._bytes[l];for(i=0,s=u;i<c;i+=1,s+=1)this.buffer._bytes[s]=d[i]}else for(i=0,l=r.byteOffset,s=u;i<c;i+=1,l+=1,s+=1)this.buffer._bytes[s]=r.buffer._bytes[l]}else{if("object"!==Gu(e)||void 0===e.length)throw new TypeError("Unexpected argument type(s)");if(o=f.ToUint32((a=e).length),(n=f.ToUint32(t))+o>this.length)throw new RangeError("Offset plus length of array is out of range");for(i=0;i<o;i+=1)l=a[i],this._setter(n+i,Number(l))}},l.prototype.subarray=function(e,t){function r(e,t,r){return e<t?t:r<e?r:e}e=f.ToInt32(e),t=f.ToInt32(t),arguments.length<1&&(e=0),arguments.length<2&&(t=this.length),e<0&&(e=this.length+e),t<0&&(t=this.length+t),e=r(e,0,this.length);var a=(t=r(t,0,this.length))-e;return new this.constructor(this.buffer,this.byteOffset+e*this.BYTES_PER_ELEMENT,a=a<0?0:a)},l}var t=e(1,x,E),r=e(1,A,C),n=e(1,F,C),o=e(2,k,N),i=e(2,R,T),l=e(4,_,O),u=e(4,S,I),c=e(4,M,L),d=e(8,B,P);p.Int8Array=p.Int8Array||t,p.Uint8Array=p.Uint8Array||r,p.Uint8ClampedArray=p.Uint8ClampedArray||n,p.Int16Array=p.Int16Array||o,p.Uint16Array=p.Uint16Array||i,p.Int32Array=p.Int32Array||l,p.Uint32Array=p.Uint32Array||u,p.Float32Array=p.Float32Array||c,p.Float64Array=p.Float64Array||d}(),e=new p.Uint16Array([4660]),l=18===q(new p.Uint8Array(e.buffer),0),(e=function(e,t,r){if(0===arguments.length)e=new p.ArrayBuffer(0);else if(!(e instanceof p.ArrayBuffer||"ArrayBuffer"===f.Class(e)))throw new TypeError("TypeError");if(this.buffer=e||new p.ArrayBuffer(0),this.byteOffset=f.ToUint32(t),this.byteOffset>this.buffer.byteLength)throw new RangeError("byteOffset out of range");if(this.byteLength=arguments.length<3?this.buffer.byteLength-this.byteOffset:f.ToUint32(r),this.byteOffset+this.byteLength>this.buffer.byteLength)throw new RangeError("byteOffset and length reference an area beyond the end of the buffer");D(this)}).prototype.getUint8=j(p.Uint8Array),e.prototype.getInt8=j(p.Int8Array),e.prototype.getUint16=j(p.Uint16Array),e.prototype.getInt16=j(p.Int16Array),e.prototype.getUint32=j(p.Uint32Array),e.prototype.getInt32=j(p.Int32Array),e.prototype.getFloat32=j(p.Float32Array),e.prototype.getFloat64=j(p.Float64Array),e.prototype.setUint8=U(p.Uint8Array),e.prototype.setInt8=U(p.Int8Array),e.prototype.setUint16=U(p.Uint16Array),e.prototype.setInt16=U(p.Int16Array),e.prototype.setUint32=U(p.Uint32Array),e.prototype.setInt32=U(p.Int32Array),e.prototype.setFloat32=U(p.Float32Array),e.prototype.setFloat64=U(p.Float64Array),p.DataView=p.DataView||e}),Ke=n(function(e){!function(e){"use strict";var r,a,n;function t(){if(void 0===this)throw new TypeError("Constructor WeakMap requires 'new'");if(n(this,"_id","_WeakMap_"+i()+"."+i()),0<arguments.length)throw new TypeError("WeakMap iterable is not supported")}function o(e,t){if(!l(e)||!r.call(e,"_id"))throw new TypeError(t+" method called on incompatible receiver "+Gu(e))}function i(){return Math.random().toString().substring(2)}function l(e){return Object(e)===e}e.WeakMap||(r=Object.prototype.hasOwnProperty,a=Object.defineProperty&&function(){try{return 1===Object.defineProperty({},"x",{value:1}).x}catch(e){}}(),e.WeakMap=((n=function(e,t,r){a?Object.defineProperty(e,t,{configurable:!0,writable:!0,value:r}):e[t]=r})(t.prototype,"delete",function(e){if(o(this,"delete"),!l(e))return!1;var t=e[this._id];return!(!t||t[0]!==e)&&(delete e[this._id],!0)}),n(t.prototype,"get",function(e){if(o(this,"get"),l(e)){var t=e[this._id];return t&&t[0]===e?t[1]:void 0}}),n(t.prototype,"has",function(e){if(o(this,"has"),!l(e))return!1;var t=e[this._id];return!(!t||t[0]!==e)}),n(t.prototype,"set",function(e,t){if(o(this,"set"),!l(e))throw new TypeError("Invalid value used as weak map key");var r=e[this._id];return r&&r[0]===e?r[1]=t:n(e,this._id,[e,t]),this}),n(t,"_polyfill",!0),t))}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:void 0!==window?window:void 0!==Wu?Wu:e)}),Xe={helpUrlBase:"https://dequeuniversity.com/rules/",results:[],resultGroups:[],resultGroupMap:{},impact:Object.freeze(["minor","moderate","serious","critical"]),preload:Object.freeze({assets:["cssom","media"],timeout:1e4}),allOrigins:"<unsafe_all_origins>",sameOrigin:"<same_origin>"};[{name:"NA",value:"inapplicable",priority:0,group:"inapplicable"},{name:"PASS",value:"passed",priority:1,group:"passes"},{name:"CANTTELL",value:"cantTell",priority:2,group:"incomplete"},{name:"FAIL",value:"failed",priority:3,group:"violations"}].forEach(function(e){var t=e.name,r=e.value,a=e.priority,e=e.group;Xe[t]=r,Xe[t+"_PRIO"]=a,Xe[t+"_GROUP"]=e,Xe.results[a]=r,Xe.resultGroups[a]=e,Xe.resultGroupMap[r]=e}),Object.freeze(Xe.results),Object.freeze(Xe.resultGroups),Object.freeze(Xe.resultGroupMap),Object.freeze(Xe);var Je=Xe;var Qe=function(){"object"===("undefined"==typeof console?"undefined":Gu(console))&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},Ze=/[\t\r\n\f]/g;function et(){b1(this,et),this.parent=void 0}var tt=(y1(et,[{key:"props",get:function(){throw new Error('VirtualNode class must have a "props" object consisting of "nodeType" and "nodeName" properties')}},{key:"attrNames",get:function(){throw new Error('VirtualNode class must have an "attrNames" property')}},{key:"attr",value:function(){throw new Error('VirtualNode class must have an "attr" function')}},{key:"hasAttr",value:function(){throw new Error('VirtualNode class must have a "hasAttr" function')}},{key:"hasClass",value:function(e){var t=this.attr("class");if(!t)return!1;e=" "+e+" ";return 0<=(" "+t+" ").replace(Ze," ").indexOf(e)}}]),et),rt={};o(rt,{DqElement:function(){return xr},aggregate:function(){return Bt},aggregateChecks:function(){return Vt},aggregateNodeResults:function(){return zt},aggregateResult:function(){return Wt},areStylesSet:function(){return Gt},assert:function(){return it},checkHelper:function(){return Er},clone:function(){return Ar},closest:function(){return Pr},collectResultsFromFrames:function(){return Xr},contains:function(){return Jr},convertSelector:function(){return Or},cssParser:function(){return Fr},deepMerge:function(){return Qr},escapeSelector:function(){return Kt},extendMetaData:function(){return Zr},filterHtmlAttrs:function(){return No},finalizeRuleResult:function(){return Ht},findBy:function(){return Gr},getAllChecks:function(){return Wr},getAncestry:function(){return gr},getBaseLang:function(){return En},getCheckMessage:function(){return _n},getCheckOption:function(){return On},getEnvironmentData:function(){return Sn},getFlattenedTree:function(){return xn},getFrameContexts:function(){return Ln},getFriendlyUriEnd:function(){return Qt},getNodeAttributes:function(){return er},getNodeFromTree:function(){return Dr},getPreloadConfig:function(){return wo},getRootNode:function(){return aa},getRule:function(){return Mn},getScroll:function(){return qn},getScrollState:function(){return jn},getSelector:function(){return mr},getSelectorData:function(){return cr},getShadowSelector:function(){return nr},getStandards:function(){return Un},getStyleSheetFactory:function(){return Hn},getXpath:function(){return vr},injectStyle:function(){return zn},isHidden:function(){return $n},isHtmlElement:function(){return Wn},isNodeInContext:function(){return Yn},isShadowRoot:function(){return ta},isValidLang:function(){return Bo},isXHTML:function(){return rr},matchAncestry:function(){return Kn},matches:function(){return Ir},matchesExpression:function(){return Sr},matchesSelector:function(){return tr},memoize:function(){return Jn},mergeResults:function(){return Kr},nodeSorter:function(){return Qn},parseCrossOriginStylesheet:function(){return ao},parseSameOriginStylesheet:function(){return Zn},parseStylesheet:function(){return eo},performanceTimer:function(){return lo},pollyfillElementsFromPoint:function(){return so},preload:function(){return xo},preloadCssom:function(){return go},preloadMedia:function(){return yo},processMessage:function(){return Tn},publishMetaData:function(){return Ao},querySelectorAll:function(){return Co},querySelectorAllFilter:function(){return ho},queue:function(){return jr},respondable:function(){return Vr},ruleShouldRun:function(){return ko},select:function(){return Ro},sendCommandToFrame:function(){return $r},setScrollState:function(){return To},shadowSelect:function(){return _o},shouldPreload:function(){return Do},toArray:function(){return Yt},tokenList:function(){return Oo},uniqueArray:function(){return po},uuid:function(){return Nt},validInputTypes:function(){return So},validLangs:function(){return Po}});var at=Object.freeze(["EvalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function nt(e){var t;try{t=JSON.parse(e)}catch(e){return}if("object"===Gu(n=t)&&"string"==typeof n.channelId&&n.source===ot()){var r=t,a=r.topic,e=r.channelId,n=r.messageId,r=r.keepalive;return{topic:a,message:"object"===Gu(t.error)?function(e){var t=e.message||"Unknown error occurred",r=at.includes(e.name)?e.name:"Error",r=window[r]||Error;e.stack&&(t+="\n"+e.stack.replace(e.message,""));return new r(t)}(t.error):t.payload,messageId:n,channelId:e,keepalive:!!r}}}function ot(){var e="axeAPI",t="";return(e=void 0!==axe&&axe._audit&&axe._audit.application?axe._audit.application:e)+"."+(t=void 0!==axe?axe.version:t)}var it=function(e,t){if(!e)throw new Error(t)};function lt(e){ut(e),it(window.parent===e,"Source of the response must be the parent window.")}function st(e){ut(e),it(e.parent===window,"Respondable target must be a frame in the current window")}function ut(e){it(window!==e,"Messages can not be sent to the same window.")}var ct={};var dt,pt,ft,mt,ht=window.crypto||window.msCrypto;!pt&&ht&&ht.getRandomValues&&(dt=new Uint8Array(16),pt=function(){return ht.getRandomValues(dt),dt});try{pt||(ft=require("crypto"),pt=function(){return ft.randomBytes(16)})}catch(e){}pt||(mt=new Array(16),pt=function(){for(var e,t=0;t<16;t++)0==(3&t)&&(e=4294967296*Math.random()),mt[t]=e>>>((3&t)<<3)&255;return mt});for(var gt="function"==typeof window.Buffer?window.Buffer:Array,vt=[],bt={},yt=0;yt<256;yt++)vt[yt]=(yt+256).toString(16).substr(1),bt[vt[yt]]=yt;function Dt(e,t){t=t||0;return vt[e[t++]]+vt[e[t++]]+vt[e[t++]]+vt[e[t++]]+"-"+vt[e[t++]]+vt[e[t++]]+"-"+vt[e[t++]]+vt[e[t++]]+"-"+vt[e[t++]]+vt[e[t++]]+"-"+vt[e[t++]]+vt[e[t++]]+vt[e[t++]]+vt[e[t++]]+vt[e[t++]]+vt[e[t++]]}var wt=pt(),xt=[1|wt[0],wt[1],wt[2],wt[3],wt[4],wt[5]],Et=16383&(wt[6]<<8|wt[7]),At=0,Ct=0;function Ft(e,t,r){var a=t&&r||0,n=t||[],o=null!=(e=e||{}).clockseq?e.clockseq:Et,i=null!=e.msecs?e.msecs:(new Date).getTime(),l=null!=e.nsecs?e.nsecs:Ct+1,r=i-At+(l-Ct)/1e4;if(r<0&&null==e.clockseq&&(o=o+1&16383),1e4<=(l=(r<0||At<i)&&null==e.nsecs?0:l))throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");At=i,Et=o;l=(1e4*(268435455&(i+=122192928e5))+(Ct=l))%4294967296;n[a++]=l>>>24&255,n[a++]=l>>>16&255,n[a++]=l>>>8&255,n[a++]=255&l;i=i/4294967296*1e4&268435455;n[a++]=i>>>8&255,n[a++]=255&i,n[a++]=i>>>24&15|16,n[a++]=i>>>16&255,n[a++]=o>>>8|128,n[a++]=255&o;for(var s=e.node||xt,u=0;u<6;u++)n[a+u]=s[u];return t||Dt(n)}function kt(e,t,r){var a=t&&r||0;"string"==typeof e&&(t="binary"==e?new gt(16):null,e=null);var n=(e=e||{}).random||(e.rng||pt)();if(n[6]=15&n[6]|64,n[8]=63&n[8]|128,t)for(var o=0;o<16;o++)t[a+o]=n[o];return t||Dt(n)}(Gs=kt).v1=Ft,Gs.v4=kt,Gs.parse=function(e,t,r){var a=t&&r||0,n=0;for(t=t||[],e.toLowerCase().replace(/[0-9a-f]{2}/g,function(e){n<16&&(t[a+n++]=bt[e])});n<16;)t[a+n++]=0;return t},Gs.unparse=Dt,Gs.BufferClass=gt,axe._uuid=Ft();var Nt=kt,Rt=[];function Tt(){var e="".concat(kt(),":").concat(kt());return Rt.includes(e)?Tt():(Rt.push(e),e)}function _t(r,e,t,a){if("function"==typeof a&&function(e,t,r){var a=!(2<arguments.length&&void 0!==r)||r;it(!ct[e],"A replyHandler already exists for this message channel."),ct[e]={replyHandler:t,sendToParent:a}}(e.channelId,a,t),(t?lt:st)(r),e.message instanceof Error&&!t)return axe.log(e.message),!1;var n=(o=v1({messageId:Tt()},e),a=o.topic,t=o.channelId,e=o.message,o={channelId:t,topic:a,messageId:o.messageId,keepalive:!!o.keepalive,source:ot()},e instanceof Error?o.error={name:e.name,message:e.message,stack:e.stack}:o.payload=e,JSON.stringify(o)),o=axe._audit.allowedOrigins;return!(!o||!o.length)&&(o.forEach(function(t){try{r.postMessage(n,t)}catch(e){if(e instanceof r.DOMException)throw new Error('allowedOrigins value "'.concat(t,'" is not a valid origin'));throw e}}),!0)}function Ot(a,n,e){var o=!(2<arguments.length&&void 0!==e)||e;return function(e,t,r){_t(a,{channelId:n,message:e,keepalive:t},o,r)}}function St(e,t){var r,a=e.origin,n=e.data,o=e.source,i=nt(n)||{},l=i.channelId,s=i.message,e=i.messageId;if(n=a,((a=axe._audit.allowedOrigins)&&a.includes("*")||a.includes(n))&&(e=e,!Rt.includes(e)&&(Rt.push(e),1)))if(s instanceof Error&&o.parent!==window)axe.log(s);else try{i.topic?(r=Ot(o,l),lt(o),t(i,r)):function(e,t){var r=t.channelId,a=t.message,n=t.keepalive,o=function(e){return ct[e]}(r)||{},t=o.replyHandler,o=o.sendToParent;if(t){(o?lt:st)(e);o=Ot(e,r,o);!n&&r&&function(e){delete ct[e]}(r);try{t(a,n,o)}catch(e){axe.log(e),o(e,n)}}}(o,i)}catch(e){!function(e,t,r){if(!e.parent!==window)return axe.log(t);try{_t(e,{topic:null,channelId:r,message:t,messageId:Tt(),keepalive:!0},!0)}catch(e){return axe.log(e)}}(o,e,l)}}var It={open:function(t){if("function"==typeof window.addEventListener){function e(e){St(e,t)}return window.addEventListener("message",e,!1),function(){window.removeEventListener("message",e,!1)}}},post:function(e,t,r){return"function"==typeof window.addEventListener&&_t(e,t,!1,r)}};function Pt(e){e.updateMessenger(It)}var Bt=function(t,e,r){return e=e.slice(),r&&e.push(r),e=e.map(function(e){return t.indexOf(e)}).sort(),t[e.pop()]},Lt=Je.CANTTELL_PRIO,Mt=Je.FAIL_PRIO,qt=[];qt[Je.PASS_PRIO]=!0,qt[Je.CANTTELL_PRIO]=null,qt[Je.FAIL_PRIO]=!1;var jt=["any","all","none"];function Ut(r,a){return jt.reduce(function(e,t){return e[t]=(r[t]||[]).map(function(e){return a(e,t)}),e},{})}var Vt=function(e){var r=Object.assign({},e);Ut(r,function(e,t){var r=void 0===e.result?-1:qt.indexOf(e.result);e.priority=-1!==r?r:Je.CANTTELL_PRIO,"none"===t&&(e.priority===Je.PASS_PRIO?e.priority=Je.FAIL_PRIO:e.priority===Je.FAIL_PRIO&&(e.priority=Je.PASS_PRIO))});var a={all:r.all.reduce(function(e,t){return Math.max(e,t.priority)},0),none:r.none.reduce(function(e,t){return Math.max(e,t.priority)},0),any:r.any.reduce(function(e,t){return Math.min(e,t.priority)},4)%4};r.priority=Math.max(a.all,a.none,a.any);var n=[];return jt.forEach(function(t){r[t]=r[t].filter(function(e){return e.priority===r.priority&&e.priority===a[t]}),r[t].forEach(function(e){return n.push(e.impact)})}),[Lt,Mt].includes(r.priority)?r.impact=Bt(Je.impact,n):r.impact=null,Ut(r,function(e){delete e.result,delete e.priority}),r.result=Je.results[r.priority],delete r.priority,r};var Ht=function(t){var r=axe._audit.rules.find(function(e){return e.id===t.id});return r&&r.impact&&t.nodes.forEach(function(t){["any","all","none"].forEach(function(e){(t[e]||[]).forEach(function(e){e.impact=r.impact})})}),Object.assign(t,zt(t.nodes)),delete t.nodes,t};var zt=function(e){var t,r={};return(e=e.map(function(e){if(e.any&&e.all&&e.none)return Vt(e);if(Array.isArray(e.node))return Ht(e);throw new TypeError("Invalid Result type")}))&&e.length?(t=e.map(function(e){return e.result}),r.result=Bt(Je.results,t,r.result)):r.result="inapplicable",Je.resultGroups.forEach(function(e){return r[e]=[]}),e.forEach(function(e){var t=Je.resultGroupMap[e.result];r[t].push(e)}),e=Je.FAIL_GROUP,0===r[e].length&&(e=Je.CANTTELL_GROUP),0<r[e].length?(e=r[e].map(function(e){return e.impact}),r.impact=Bt(Je.impact,e)||null):r.impact=null,r};function $t(e,t,r){var a=Object.assign({},t);a.nodes=(a[r]||[]).concat(),Je.resultGroups.forEach(function(e){delete a[e]}),e[r].push(a)}var Wt=function(e){var r={};return Je.resultGroups.forEach(function(e){return r[e]=[]}),e.forEach(function(t){t.error?$t(r,t,Je.CANTTELL_GROUP):t.result===Je.NA?$t(r,t,Je.NA_GROUP):Je.resultGroups.forEach(function(e){Array.isArray(t[e])&&0<t[e].length&&$t(r,t,e)})}),r};var Gt=function e(t,r,a){var n=window.getComputedStyle(t,null);if(!n)return!1;for(var o=0;o<r.length;++o){var i=r[o];if(n.getPropertyValue(i.property)===i.value)return!0}return!(!t.parentNode||t.nodeName.toUpperCase()===a.toUpperCase())&&e(t.parentNode,r,a)};var Yt=function(e){return Array.prototype.slice.call(e)};var Kt=function(e){for(var t,r=String(e),a=r.length,n=-1,o="",i=r.charCodeAt(0);++n<a;)0!=(t=r.charCodeAt(n))?o+=1<=t&&t<=31||127==t||0==n&&48<=t&&t<=57||1==n&&48<=t&&t<=57&&45==i?"\\"+t.toString(16)+" ":(0!=n||1!=a||45!=t)&&(128<=t||45==t||95==t||48<=t&&t<=57||65<=t&&t<=90||97<=t&&t<=122)?r.charAt(n):"\\"+r.charAt(n):o+="�";return o};function Xt(e,t){return[e.substring(0,t),e.substring(t)]}function Jt(e){return e.replace(/\s+$/,"")}var Qt=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"",t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(e.length<=1||"data:"===e.substr(0,5)||"javascript:"===e.substr(0,11)||e.includes("?"))){var r,a,n,o,i=t.currentDomain,l=t.maxLength,s=void 0===l?25:l,u=(d=c=u=o=n="",(l=t=e).includes("#")&&(t=(e=g1(Xt(t,t.indexOf("#")),2))[0],d=e[1]),t.includes("?")&&(t=(r=g1(Xt(t,t.indexOf("?")),2))[0],c=r[1]),t.includes("://")?(n=(r=g1(t.split("://"),2))[0],o=(r=g1(Xt(t=r[1],t.indexOf("/")),2))[0],t=r[1]):"//"===t.substr(0,2)&&(o=(a=g1(Xt(t=t.substr(2),t.indexOf("/")),2))[0],t=a[1]),(o="www."===o.substr(0,4)?o.substr(4):o)&&o.includes(":")&&(o=(a=g1(Xt(o,o.indexOf(":")),2))[0],u=a[1]),{original:l,protocol:n,domain:o,port:u,path:t,query:c,hash:d}),t=u.path,c=u.domain,d=u.hash,u=t.substr(t.substr(0,t.length-2).lastIndexOf("/")+1);if(d)return u&&(u+d).length<=s?Jt(u+d):u.length<2&&2<d.length&&d.length<=s?Jt(d):void 0;if(c&&c.length<s&&t.length<=1)return Jt(c+t);if(t==="/"+u&&c&&i&&c!==i&&(c+t).length<=s)return Jt(c+t);t=u.lastIndexOf(".");return(-1===t||1<t)&&(-1!==t||2<u.length)&&u.length<=s&&!u.match(/index(\.[a-zA-Z]{2-4})?/)&&!function(e){var t=0<arguments.length&&void 0!==e?e:"";return 0!==t.length&&(t.match(/[0-9]/g)||"").length>=t.length/2}(u)?Jt(u):void 0}};var Zt,er=function(e){return(e.attributes instanceof window.NamedNodeMap?e:e.cloneNode(!1)).attributes},tr=function(e,t){return!!e[Zt=!Zt||!e[Zt]?function(e){for(var t,r=["matches","matchesSelector","mozMatchesSelector","webkitMatchesSelector","msMatchesSelector"],a=r.length,n=0;n<a;n++)if(e[t=r[n]])return t}(e):Zt]&&e[Zt](t)};var rr=function(e){return!!e.createElement&&"A"===e.createElement("A").localName};var ar,nr=function(r,e){var a=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};if(!e)return"";var t=e.getRootNode&&e.getRootNode()||document;if(11!==t.nodeType)return r(e,a,t);for(var n=[];11===t.nodeType;){if(!t.host)return"";n.unshift({elm:e,doc:t}),t=(e=t.host).getRootNode()}return n.unshift({elm:e,doc:t}),n.map(function(e){var t=e.elm,e=e.doc;return r(t,a,e)})},or=["class","style","id","selected","checked","disabled","tabindex","aria-checked","aria-selected","aria-invalid","aria-activedescendant","aria-busy","aria-disabled","aria-expanded","aria-grabbed","aria-pressed","aria-valuenow"],ir=31;function lr(e,t){var r=t.name;if(-1!==r.indexOf("href")||-1!==r.indexOf("src")){var a=Qt(e.getAttribute(r));if(a){var n=encodeURI(a);if(!n)return;n=Kt(t.name)+'$="'+Kt(n)+'"'}else n=Kt(t.name)+'="'+Kt(e.getAttribute(r))+'"'}else n=Kt(r)+'="'+Kt(t.value)+'"';return n}function sr(e,t){return e.count<t.count?-1:e.count===t.count?0:1}function ur(e){return!or.includes(e.name)&&-1===e.name.indexOf(":")&&(!e.value||e.value.length<ir)}function cr(e){for(var a={classes:{},tags:{},attributes:{}},n=(e=Array.isArray(e)?e:[e]).slice(),o=[];n.length;)!function(){var e,t=n.pop(),r=t.actualNode;for(r.querySelectorAll&&(e=r.nodeName,a.tags[e]?a.tags[e]++:a.tags[e]=1,r.classList&&Array.from(r.classList).forEach(function(e){e=Kt(e);a.classes[e]?a.classes[e]++:a.classes[e]=1}),r.hasAttributes()&&Array.from(er(r)).filter(ur).forEach(function(e){e=lr(r,e);e&&(a.attributes[e]?a.attributes[e]++:a.attributes[e]=1)})),t.children.length&&(o.push(n),n=t.children.slice());!n.length&&o.length;)n=o.pop()}();return a}function dr(e){return void 0===ar&&(ar=rr(document)),Kt(ar?e.localName:e.nodeName.toLowerCase())}function pr(e,t){var r,a,n,o,i,l,s,u,c,d="",p=(a=e,n=[],o=t.classes,i=t.tags,a.classList&&Array.from(a.classList).forEach(function(e){e=Kt(e);o[e]<i[a.nodeName]&&n.push({name:e,count:o[e],species:"class"})}),n.sort(sr)),t=(l=e,s=[],u=t.attributes,c=t.tags,l.hasAttributes()&&Array.from(er(l)).filter(ur).forEach(function(e){e=lr(l,e);e&&u[e]<c[l.nodeName]&&s.push({name:e,count:u[e],species:"attribute"})}),s.sort(sr));return p.length&&1===p[0].count?r=[p[0]]:t.length&&1===t[0].count?(r=[t[0]],d=dr(e)):((r=p.concat(t)).sort(sr),(r=r.slice(0,3)).some(function(e){return"class"===e.species})?r.sort(function(e,t){return e.species!==t.species&&"class"===e.species?-1:e.species===t.species?0:1}):d=dr(e)),d+r.reduce(function(e,t){switch(t.species){case"class":return e+"."+t.name;case"attribute":return e+"["+t.name+"]"}return e},"")}function fr(e,t,r){if(!axe._selectorData)throw new Error("Expect axe._selectorData to be set up");var a,n,t=t.toRoot,o=void 0!==t&&t;do{var i=function(e){if(e.getAttribute("id")){var t=e.getRootNode&&e.getRootNode()||document,e="#"+Kt(e.getAttribute("id")||"");return e.match(/player_uid_/)||1!==t.querySelectorAll(e).length?void 0:e}}(e);i||(i=pr(e,axe._selectorData),i+=function(t,r){var e=t.parentNode&&Array.from(t.parentNode.children||"")||[];return e.find(function(e){return e!==t&&tr(e,r)})?":nth-child("+(1+e.indexOf(t))+")":""}(e,i)),a=a?i+" > "+a:i,n=n?n.filter(function(e){return tr(e,a)}):Array.from(r.querySelectorAll(a)),e=e.parentElement}while((1<n.length||o)&&e&&11!==e.nodeType);return 1===n.length?a:-1!==a.indexOf(" > ")?":root"+a.substring(a.indexOf(" > ")):":root"}function mr(e,t){return nr(fr,e,t)}function hr(e){var t=e.nodeName.toLowerCase(),r=e.parentElement;if(!r)return t;var a="";return"head"!==t&&"body"!==t&&1<r.children.length&&(e=Array.prototype.indexOf.call(r.children,e)+1,a=":nth-child(".concat(e,")")),hr(r)+" > "+t+a}function gr(e,t){return nr(hr,e,t)}var vr=function(e){return function e(t,r){var a,n,o,i;if(!t)return[];if(!r&&9===t.nodeType)return r=[{str:"html"}];if(r=r||[],t.parentNode&&t.parentNode!==t&&(r=e(t.parentNode,r)),t.previousSibling){for(n=1,a=t.previousSibling;1===a.nodeType&&a.nodeName===t.nodeName&&n++,a=a.previousSibling;);1===n&&(n=null)}else if(t.nextSibling)for(a=t.nextSibling;a=1===a.nodeType&&a.nodeName===t.nodeName?(n=1,null):(n=null,a.previousSibling););return 1===t.nodeType&&((o={}).str=t.nodeName.toLowerCase(),(i=t.getAttribute&&Kt(t.getAttribute("id")))&&1===t.ownerDocument.querySelectorAll("#"+i).length&&(o.id=t.getAttribute("id")),1<n&&(o.count=n),r.push(o)),r}(e).reduce(function(e,t){return t.id?"/".concat(t.str,"[@id='").concat(t.id,"']"):e+"/".concat(t.str)+(0<t.count?"[".concat(t.count,"]"):"")},"")},br={},yr={set:function(e,t){br[e]=t},get:function(e){return br[e]},clear:function(){br={}}};var Dr=function(e,t){return e=t||e,yr.get("nodeMap")?yr.get("nodeMap").get(e):null};function wr(e){var t,r,a,n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};this.spec=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{},e instanceof tt?(this._virtualNode=e,this._element=e.actualNode):(this._element=e,this._virtualNode=Dr(e)),this.fromFrame=1<(null===(t=this.spec.selector)||void 0===t?void 0:t.length),n.absolutePaths&&(this._options={toRoot:!0}),this.nodeIndexes=[],Array.isArray(this.spec.nodeIndexes)?this.nodeIndexes=this.spec.nodeIndexes:"number"==typeof(null===(r=this._virtualNode)||void 0===r?void 0:r.nodeIndex)&&(this.nodeIndexes=[this._virtualNode.nodeIndex]),this.source=null,axe._audit.noHtml||(this.source=null!==(n=this.spec.source)&&void 0!==n?n:null!=(r=this._element)&&r.outerHTML?((n=(n=!(n=r.outerHTML)&&"function"==typeof XMLSerializer?(new XMLSerializer).serializeToString(r):n)||"").length>(a=a||300)&&(a=n.indexOf(">"),n=n.substring(0,a+1)),n):"")}wr.prototype={get selector(){return this.spec.selector||[mr(this.element,this._options)]},get ancestry(){return this.spec.ancestry||[gr(this.element)]},get xpath(){return this.spec.xpath||[vr(this.element)]},get element(){return this._element},toJSON:function(){return{selector:this.selector,source:this.source,xpath:this.xpath,ancestry:this.ancestry,nodeIndexes:this.nodeIndexes}}},wr.fromFrame=function(e,t,r){e=wr.mergeSpecs(e,r);return new wr(r.element,t,e)},wr.mergeSpecs=function(e,t){return v1({},e,{selector:[].concat(h1(t.selector),h1(e.selector)),ancestry:[].concat(h1(t.ancestry),h1(e.ancestry)),xpath:[].concat(h1(t.xpath),h1(e.xpath)),nodeIndexes:[].concat(h1(t.nodeIndexes),h1(e.nodeIndexes))})};var xr=wr;var Er=function(t,r,a,n){return{isAsync:!1,async:function(){return this.isAsync=!0,function(e){e instanceof Error==!1?(t.result=e,a(t)):n(e)}},data:function(e){t.data=e},relatedNodes:function(e){e=e instanceof window.Node?[e]:Yt(e),t.relatedNodes=e.map(function(e){return new xr(e,r)})}}};var Ar=function e(t){var r,a,n=t;if(null!=window&&window.Node&&t instanceof window.Node||null!=window&&window.HTMLCollection&&t instanceof window.HTMLCollection)return t;if(null!==t&&"object"===Gu(t))if(Array.isArray(t))for(n=[],r=0,a=t.length;r<a;r++)n[r]=e(t[r]);else for(r in n={},t)n[r]=e(t[r]);return n},Cr=new(c(m()).CssSelectorParser);Cr.registerSelectorPseudos("not"),Cr.registerSelectorPseudos("is"),Cr.registerNestingOperators(">"),Cr.registerAttrEqualityMods("^","$","*","~");var Fr=Cr;function kr(e,t){return s=t,1===(l=e).props.nodeType&&("*"===s.tag||l.props.nodeName===s.tag)&&(o=e,!(i=t).classes||i.classes.every(function(e){return o.hasClass(e.value)}))&&(a=e,!(n=t).attributes||n.attributes.every(function(e){var t=a.attr(e.key);return null!==t&&(!e.value||e.test(t))}))&&(i=e,!(n=t).id||i.props.id===n.id)&&(r=e,!((t=t).pseudos&&!t.pseudos.every(function(e){if("not"===e.name)return!e.expressions.some(function(e){return Sr(r,e)});if("is"===e.name)return e.expressions.some(function(e){return Sr(r,e)});throw new Error("the pseudo selector "+e.name+" has not yet been implemented")})));var r,a,n,o,i,l,s}var Nr,Rr=(Nr=/(?=[\-\[\]{}()*+?.\\\^$|,#\s])/g,function(e){return e.replace(Nr,"\\")}),Tr=/\\/g;function _r(e){return e.map(function(e){for(var t=[],r=e.rule;r;)t.push({tag:r.tagName?r.tagName.toLowerCase():"*",combinator:r.nestingOperator||" ",id:r.id,attributes:function(e){if(e)return e.map(function(e){var t,r,a=e.name.replace(Tr,""),n=(e.value||"").replace(Tr,"");switch(e.operator){case"^=":r=new RegExp("^"+Rr(n));break;case"$=":r=new RegExp(Rr(n)+"$");break;case"~=":r=new RegExp("(^|\\s)"+Rr(n)+"(\\s|$)");break;case"|=":r=new RegExp("^"+Rr(n)+"(-|$)");break;case"=":t=function(e){return n===e};break;case"*=":t=function(e){return e&&e.includes(n)};break;case"!=":t=function(e){return n!==e};break;default:t=function(e){return!!e}}return""===n&&/^[*$^]=$/.test(e.operator)&&(t=function(){return!1}),{key:a,value:n,test:t=t||function(e){return e&&r.test(e)}}})}(r.attrs),classes:function(e){if(e)return e.map(function(e){return{value:e=e.replace(Tr,""),regexp:new RegExp("(^|\\s)"+Rr(e)+"(\\s|$)")}})}(r.classNames),pseudos:function(e){if(e)return e.map(function(e){var t;return["is","not"].includes(e.name)&&(t=_r(t=(t=e.value).selectors||[t])),{name:e.name,expressions:t,value:e.value}})}(r.pseudos)}),r=r.rule;return t})}function Or(e){e=Fr.parse(e);return _r(e=e.selectors||[e])}function Sr(e,t,r){return function e(t,r,a,n){for(var o=Array.isArray(r)?r[a]:r,i=kr(t,o);!i&&n&&t.parent;)i=kr(t=t.parent,o);if(0<a){if(!1===[" ",">"].includes(o.combinator))throw new Error("axe.utils.matchesExpression does not support the combinator: "+o.combinator);i=i&&e(t.parent,r,a-1," "===o.combinator)}return i}(e,t,t.length-1,r)}var Ir=function(t,e){return Or(e).some(function(e){return Sr(t,e)})};var Pr=function(e,t){for(;e;){if(Ir(e,t))return e;if(void 0===e.parent)throw new TypeError("Cannot resolve parent for non-DOM nodes");e=e.parent}return null};function Br(){}function Lr(e){if("function"!=typeof e)throw new TypeError("Queue methods require functions as arguments")}var Mr,qr,jr=function(){function t(e){a=e,setTimeout(function(){null!=a&&Qe("Uncaught error (of queue)",a)},1)}var a,n=[],r=0,o=0,i=Br,l=!1,s=t;function u(e){return i=Br,s(e),n}function c(){for(var e=n.length;r<e;r++){var t=n[r];try{t.call(null,function(t){return function(e){n[t]=e,--o||i===Br||(l=!0,i(n))}}(r),u)}catch(e){u(e)}}}var d={defer:function(e){var r;if("object"===Gu(e)&&e.then&&e.catch&&(r=e,e=function(e,t){r.then(e).catch(t)}),Lr(e),void 0===a){if(l)throw new Error("Queue already completed");return n.push(e),++o,c(),d}},then:function(e){if(Lr(e),i!==Br)throw new Error("queue `then` already set");return a||(i=e,o||(l=!0,i(n))),d},catch:function(e){if(Lr(e),s!==t)throw new Error("queue `catch` already set");return a?(e(a),a=null):s=e,d},abort:u};return d},Ur={};function Vr(e,t,r,a,n){a={topic:t,message:r,channelId:"".concat(kt(),":").concat(kt()),keepalive:a};return qr(e,a,n)}function Hr(t,r){var e=t.topic,a=t.message,t=t.keepalive,e=Ur[e];if(e)try{e(a,t,r)}catch(e){axe.log(e),r(e,t)}}function zr(e,t){var r;return axe._tree&&(r=mr(t)),new Error(e+": "+(r||t))}Vr.updateMessenger=function(e){var t=e.open,e=e.post;it("function"==typeof t,"open callback must be a function"),it("function"==typeof e,"post callback must be a function"),Mr&&Mr();t=t(Hr);Mr=t?(it("function"==typeof t,"open callback must return a cleanup function"),t):null,qr=e},Vr.subscribe=function(e,t){it("function"==typeof t,"Subscriber callback must be a function"),it(!Ur[e],"Topic ".concat(e," is already registered to.")),Ur[e]=t},Vr.isInFrame=function(){return!!(0<arguments.length&&void 0!==arguments[0]?arguments[0]:window).frameElement},Pt(Vr);var $r=function(t,r,a,n){var o=t.contentWindow;if(!o)return Qe("Frame does not have a content window",t),void a(null);var i=setTimeout(function(){i=setTimeout(function(){r.debug?n(zr("No response from frame",t)):a(null)},0)},500);Vr(o,"axe.ping",null,void 0,function(){clearTimeout(i);var e=r.options&&r.options.frameWaitTime||6e4;i=setTimeout(function(){n(zr("Axe in frame timed out",t))},e),Vr(o,"axe.start",r,void 0,function(e){clearTimeout(i),(e instanceof Error==!1?a:n)(e)})})};var Wr=function(e){return[].concat(e.any||[]).concat(e.all||[]).concat(e.none||[])};var Gr=function(e,t,r){if(Array.isArray(e))return e.find(function(e){return"object"===Gu(e)&&e[t]===r})};function Yr(e,t){for(var r=0<arguments.length&&void 0!==e?e:[],a=1<arguments.length&&void 0!==t?t:[],n=Math.max(null==r?void 0:r.length,null==a?void 0:a.length),o=0;o<n;o++){var i=null==r?void 0:r[o],l=null==a?void 0:a[o];if("number"!=typeof i||isNaN(i))return 0===o?1:-1;if("number"!=typeof l||isNaN(l))return 0===o?-1:1;if(i!==l)return i-l}return 0}var Kr=function(e,o){var i=[];return e.forEach(function(e){var t,n,t=(t=e)&&t.results?Array.isArray(t.results)?t.results.length?t.results:null:[t.results]:null;t&&t.length&&(n=function(e,t){{if(e.frameElement)return new xr(e.frameElement,t);if(e.frameSpec)return e.frameSpec}return null}(e,o),t.forEach(function(e){var t,r;e.nodes&&n&&(a=e.nodes,t=o,r=n,a.forEach(function(e){e.node=xr.fromFrame(e.node,t,r),Wr(e).forEach(function(e){e.relatedNodes=e.relatedNodes.map(function(e){return xr.fromFrame(e,t,r)})})}));var a=Gr(i,"id",e.id);a?e.nodes.length&&function(e,t){for(var r=t[0].node,a=0;a<e.length;a++){var n=e[a].node,o=Yr(n.nodeIndexes,r.nodeIndexes);if(0<o||0===o&&r.selector.length<n.selector.length)return e.splice.apply(e,[a,0].concat(h1(t)))}e.push.apply(e,h1(t))}(a.nodes,e.nodes):i.push(e)}))}),i.forEach(function(e){e.nodes&&e.nodes.sort(function(e,t){return Yr(e.node.nodeIndexes,t.node.nodeIndexes)})}),i};function Xr(e,n,o,i,t,r){var l=jr();e.frames.forEach(function(e){var r=e.node,a=m1(e,Ku);l.defer(function(t,e){$r(r,{options:n,command:o,parameter:i,context:a},function(e){return t(e?{results:e,frameElement:r}:null)},e)})}),l.then(function(e){t(Kr(e,n))}).catch(r)}var Jr=function(e,t){if(e.shadowId||t.shadowId)return function t(e,r){return e.shadowId===r.shadowId||!!e.children.find(function(e){return t(e,r)})}(e,t);if(e.actualNode)return"function"==typeof e.actualNode.contains?e.actualNode.contains(t.actualNode):!!(16&e.actualNode.compareDocumentPosition(t.actualNode));do{if(t===e)return!0}while(t=t&&t.parent);return!1};var Qr=function n(){for(var o={},e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return t.forEach(function(e){if(e&&"object"===Gu(e)&&!Array.isArray(e))for(var t=0,r=Object.keys(e);t<r.length;t++){var a=r[t];!o.hasOwnProperty(a)||"object"!==Gu(e[a])||Array.isArray(o[a])?o[a]=e[a]:o[a]=n(o[a],e[a])}}),o};var Zr=function(t,r){Object.assign(t,r),Object.keys(r).filter(function(e){return"function"==typeof r[e]}).forEach(function(e){t[e]=null;try{t[e]=r[e](t)}catch(e){}})},ea=["article","aside","blockquote","body","div","footer","h1","h2","h3","h4","h5","h6","header","main","nav","p","section","span"];var ta=function(e){if(e.shadowRoot){e=e.nodeName.toLowerCase();if(ea.includes(e)||/^[a-z][a-z0-9_.-]*-[a-z0-9_.-]*$/.test(e))return!0}return!1},ra={};o(ra,{findElmsInContext:function(){return oa},findUp:function(){return la},findUpVirtual:function(){return ia},getComposedParent:function(){return sa},getElementByReference:function(){return ua},getElementCoordinates:function(){return da},getElementStack:function(){return Ca},getRootNode:function(){return na},getScrollOffset:function(){return ca},getTabbableElements:function(){return Fa},getTextElementStack:function(){return Na},getViewportSize:function(){return pa},hasContent:function(){return Ba},hasContentVirtual:function(){return Pa},idrefs:function(){return _a},insertedIntoFocusOrder:function(){return Ha},isFocusable:function(){return Va},isHTML5:function(){return za},isHiddenWithCSS:function(){return qa},isInTextBlock:function(){return Ga},isModalOpen:function(){return Ya},isNativelyFocusable:function(){return Ua},isNode:function(){return Ka},isOffscreen:function(){return fa},isOpaque:function(){return un},isSkipLink:function(){return dn},isVisible:function(){return va},isVisualContent:function(){return Ta},reduceToElementsBelowFloating:function(){return pn},shadowElementsFromPoint:function(){return hn},urlPropsFromAttribute:function(){return gn},visuallyContains:function(){return mn},visuallyOverlaps:function(){return bn}});var aa=function(e){var t=e.getRootNode&&e.getRootNode()||document;return t=t===e?document:t},na=aa;var oa=function(e){var t=e.context,r=e.value,a=e.attr,e=void 0===(e=e.elm)?"":e,r=Kt(r),t=9===t.nodeType||11===t.nodeType?t:na(t);return Array.from(t.querySelectorAll(e+"["+a+"="+r+"]"))};var ia=function(e,t){var r=e.actualNode;if(!e.shadowId&&"function"==typeof e.actualNode.closest){e=e.actualNode.closest(t);return e?e:null}for(;(r=(r=r.assignedSlot||r.parentNode)&&11===r.nodeType?r.host:r)&&!tr(r,t)&&r!==document.documentElement;);return r&&tr(r,t)?r:null};var la=function(e,t){return ia(Dr(e),t)};var sa=function e(t){if(t.assignedSlot)return e(t.assignedSlot);if(t.parentNode){if(1===(t=t.parentNode).nodeType)return t;if(t.host)return t.host}return null};var ua=function(e,t){return(e=e.getAttribute(t))?("#"===e.charAt(0)?e=decodeURIComponent(e.substring(1)):"/#"===e.substr(0,2)&&(e=decodeURIComponent(e.substring(2))),(t=document.getElementById(e))||((t=document.getElementsByName(e)).length?t[0]:null)):null};var ca=function(e){if(9!==(e=!e.nodeType&&e.document?e.document:e).nodeType)return{left:e.scrollLeft,top:e.scrollTop};var t=e.documentElement,e=e.body;return{left:t&&t.scrollLeft||e&&e.scrollLeft||0,top:t&&t.scrollTop||e&&e.scrollTop||0}};var da=function(e){var t=(r=ca(document)).left,r=r.top;return{top:(e=e.getBoundingClientRect()).top+r,right:e.right+t,bottom:e.bottom+r,left:e.left+t,width:e.right-e.left,height:e.bottom-e.top}};var pa=function(e){var t=e.document,r=t.documentElement;return e.innerWidth?{width:e.innerWidth,height:e.innerHeight}:r?{width:r.clientWidth,height:r.clientHeight}:{width:(t=t.body).clientWidth,height:t.clientHeight}};var fa=function(e){var t=document.documentElement,r=window.getComputedStyle(e),a=window.getComputedStyle(document.body||t).getPropertyValue("direction"),n=da(e);if(n.bottom<0&&(function(e,t){for(e=sa(e);e&&"html"!==e.nodeName.toLowerCase();){if(e.scrollTop&&0<=(t+=e.scrollTop))return;e=sa(e)}return 1}(e,n.bottom)||"absolute"===r.position))return!0;if(0===n.left&&0===n.right)return!1;if("ltr"===a){if(n.right<=0)return!0}else if(t=Math.max(t.scrollWidth,pa(window).width),n.left>=t)return!0;return!1},ma=/rect\s*\(([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px,?\s*([0-9]+)px\s*\)/,ha=/(\w+)\((\d+)/;function ga(e,t,r){if(!e)throw new TypeError("Cannot determine if element is visible for non-DOM nodes");var a=e instanceof tt?e:Dr(e);e=a?a.actualNode:e;var n="_isVisible"+(t?"ScreenReader":""),o=window.Node,i=o.DOCUMENT_NODE,l=o.DOCUMENT_FRAGMENT_NODE,s=(a?a.props:e).nodeType,o=a?a.props.nodeName:e.nodeName.toLowerCase();if(a&&void 0!==a[n])return a[n];if(s===i)return!0;if(["style","script","noscript","template"].includes(o))return!1;if((e&&s===l&&(e=e.host),t)&&"true"===(a?a.attr("aria-hidden"):e.getAttribute("aria-hidden")))return!1;if(!e){var l=a.parent,u=!0;return l&&(u=ga(l,t,!0)),a&&(a[n]=u),u}var c,d,u=window.getComputedStyle(e,null);if(null===u)return!1;if("area"===o)return c=t,d=r,!!(f=la(p=e,"map"))&&(!!(f=f.getAttribute("name"))&&(!(!(p=na(p))||9!==p.nodeType)&&(!(!(f=Co(axe._tree,'img[usemap="#'.concat(Kt(f),'"]')))||!f.length)&&f.some(function(e){return ga(e.actualNode,c,d)}))));if("none"===u.getPropertyValue("display"))return!1;var p=parseInt(u.getPropertyValue("height")),f=qn(e)&&0===p,p="absolute"===u.getPropertyValue("position")&&p<2&&"hidden"===u.getPropertyValue("overflow");if(!t&&(function(e){var t=e.getPropertyValue("clip").match(ma),r=e.getPropertyValue("clip-path").match(ha);if(t&&5===t.length){e=e.getPropertyValue("position");if(["fixed","absolute"].includes(e))return t[3]-t[1]<=0&&t[2]-t[4]<=0}if(r){var t=r[1],a=parseInt(r[2],10);switch(t){case"inset":return 50<=a;case"circle":return 0===a}}}(u)||"0"===u.getPropertyValue("opacity")||f||p))return!1;if(!r&&("hidden"===u.getPropertyValue("visibility")||!t&&fa(e)))return!1;u=e.assignedSlot||e.parentNode,e=!1;return u&&(e=ga(u,t,!0)),a&&(a[n]=e),e}var va=ga,ba=200;function ya(e){return"static"===e.getComputedStylePropertyValue("position")?-1!==e.getComputedStylePropertyValue("display").indexOf("inline")?2:function e(t){if(!t)return!1;if(void 0!==t._isFloated)return t._isFloated;if("none"!==t.getComputedStylePropertyValue("float"))return t._isFloated=!0;var r=e(t.parent);return t._isFloated=r}(e)?1:0:3}function Da(e,t){for(var r=0;r<e._stackingOrder.length;r++){if(void 0===t._stackingOrder[r])return-1;if(t._stackingOrder[r]>e._stackingOrder[r])return 1;if(t._stackingOrder[r]<e._stackingOrder[r])return-1}var a=e.actualNode,n=t.actualNode;if(a.getRootNode&&a.getRootNode()!==n.getRootNode()){for(var o=[];a;)o.push({root:a.getRootNode(),node:a}),a=a.getRootNode().host;for(;n&&!o.find(function(e){return e.root===n.getRootNode()});)n=n.getRootNode().host;if((a=o.find(function(e){return e.root===n.getRootNode()}).node)===n)return e.actualNode.getRootNode()!==a.getRootNode()?-1:1}var i=window.Node,l=i.DOCUMENT_POSITION_FOLLOWING,s=i.DOCUMENT_POSITION_CONTAINS,u=i.DOCUMENT_POSITION_CONTAINED_BY,i=a.compareDocumentPosition(n),l=i&l?1:-1,s=i&s||i&u,i=ya(e),u=ya(t);return i===u||s?l:u-i}function wa(e,t){var r=t._stackingOrder.slice(),a=e.getComputedStylePropertyValue("z-index");return"auto"!==a&&(r[r.length-1]=parseInt(a)),function(e,t){var r=e.getComputedStylePropertyValue("position"),a=e.getComputedStylePropertyValue("z-index");if("fixed"===r||"sticky"===r)return 1;if("auto"!==a&&"static"!==r)return 1;if("1"!==e.getComputedStylePropertyValue("opacity"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-transform")||e.getComputedStylePropertyValue("-ms-transform")||e.getComputedStylePropertyValue("transform")||"none"))return 1;if((r=e.getComputedStylePropertyValue("mix-blend-mode"))&&"normal"!==r)return 1;if((r=e.getComputedStylePropertyValue("filter"))&&"none"!==r)return 1;if((r=e.getComputedStylePropertyValue("perspective"))&&"none"!==r)return 1;if((r=e.getComputedStylePropertyValue("clip-path"))&&"none"!==r)return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask")||e.getComputedStylePropertyValue("mask")||"none"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask-image")||e.getComputedStylePropertyValue("mask-image")||"none"))return 1;if("none"!==(e.getComputedStylePropertyValue("-webkit-mask-border")||e.getComputedStylePropertyValue("mask-border")||"none"))return 1;if("isolate"===e.getComputedStylePropertyValue("isolation"))return 1;if("transform"===(r=e.getComputedStylePropertyValue("will-change"))||"opacity"===r)return 1;if("touch"===e.getComputedStylePropertyValue("-webkit-overflow-scrolling"))return 1;if(e=e.getComputedStylePropertyValue("contain"),["layout","paint","strict","content"].includes(e))return 1;if("auto"!==a&&t){t=t.getComputedStylePropertyValue("display");if(["flex","inline-flex","inline flex","grid","inline-grid","inline grid"].includes(t))return 1}}(e,t)&&r.push(0),r}function xa(s,u){u._grid=s,u.clientRects.forEach(function(e){for(var t=e.left,r=e.top,a=t/ba|0,n=(r+e.height)/ba|0,o=(t+e.width)/ba|0,i=r/ba|0;i<=n;i++){s.cells[i]=s.cells[i]||[];for(var l=a;l<=o;l++)s.cells[i][l]=s.cells[i][l]||[],s.cells[i][l].includes(u)||s.cells[i][l].push(u)}})}function Ea(e,t,r){var a,n=0<arguments.length&&void 0!==e?e:document.body,o=1<arguments.length&&void 0!==t?t:{container:null,cells:[]},i=2<arguments.length&&void 0!==r?r:null;i||((a=(a=Dr(document.documentElement))||new Dn(document.documentElement))._stackingOrder=[0],xa(o,a),qn(a.actualNode)&&(a._subGrid={container:a,cells:[]}));for(var l=document.createTreeWalker(n,window.NodeFilter.SHOW_ELEMENT,null,!1),s=i?l.nextNode():l.currentNode;s;){var u=Dr(s);s.parentElement?i=Dr(s.parentElement):s.parentNode&&Dr(s.parentNode)&&(i=Dr(s.parentNode)),(u=u||new axe.VirtualNode(s,i))._stackingOrder=wa(u,i);var c=function(e,t){for(var r=null,a=[e];t;){if(t._scrollRegionParent){r=t._scrollRegionParent;break}if(qn(t.actualNode)){r=t;break}a.push(t),t=Dr(t.actualNode.parentElement||t.actualNode.parentNode)}return a.forEach(function(e){return e._scrollRegionParent=r}),r}(u,i),d=c?c._subGrid:o;qn(u.actualNode)&&(u._subGrid={container:u,cells:[]});c=u.boundingClientRect;0!==c.width&&0!==c.height&&va(s)&&xa(d,u),ta(s)&&Ea(s.shadowRoot,d,u),s=l.nextNode()}}function Aa(e,t,r){var a=2<arguments.length&&void 0!==r&&r,n=t.left+t.width/2,o=t.top+t.height/2,i=e.cells[o/ba|0][n/ba|0].filter(function(e){return e.clientRects.find(function(e){var t=e.left,r=e.top;return n<=t+e.width&&t<=n&&o<=r+e.height&&r<=o})}),l=e.container;return l&&(i=Aa(l._grid,l.boundingClientRect,!0).concat(i)),i=!a?i.sort(Da).map(function(e){return e.actualNode}).concat(document.documentElement).filter(function(e,t,r){return r.indexOf(e)===t}):i}var Ca=function(e){yr.get("gridCreated")||(Ea(),yr.set("gridCreated",!0));var t=Dr(e);return(e=t._grid)?Aa(e,t.boundingClientRect):[]};var Fa=function(e){return Co(e,"*").filter(function(e){var t=e.isFocusable,e=e.actualNode.getAttribute("tabindex");return(e=e&&!isNaN(parseInt(e,10))?parseInt(e):null)?t&&0<=e:t})};var ka=function(e){return e?e.replace(/\r\n/g,"\n").replace(/\u00A0/g," ").replace(/[\s]{2,}/g," ").trim():""};var Na=function(e){yr.get("gridCreated")||(Ea(),yr.set("gridCreated",!0));var t=Dr(e),r=t._grid;if(!r)return[];var o=t.boundingClientRect,i=[];return Array.from(e.childNodes).forEach(function(e){if(3===e.nodeType&&""!==ka(e.textContent)){var t=document.createRange();t.selectNodeContents(e);var r=t.getClientRects();if(!Array.from(r).some(function(e){var t=e.left+e.width/2,e=e.top+e.height/2;return t<o.left||t>o.right||e<o.top||e>o.bottom}))for(var a=0;a<r.length;a++){var n=r[a];1<=n.width&&1<=n.height&&i.push(n)}}}),i.length?i.map(function(e){return Aa(r,e)}):[Ca(e)]},Ra=["checkbox","img","radio","range","slider","spinbutton","textbox"];var Ta=function(e){var t=e.getAttribute("role");if(t)return-1!==Ra.indexOf(t);switch(e.nodeName.toUpperCase()){case"IMG":case"IFRAME":case"OBJECT":case"VIDEO":case"AUDIO":case"CANVAS":case"SVG":case"MATH":case"BUTTON":case"SELECT":case"TEXTAREA":case"KEYGEN":case"PROGRESS":case"METER":return!0;case"INPUT":return"hidden"!==e.type;default:return!1}};var _a=function(e,t){e=e.actualNode||e;try{var r=na(e),a=[];if(n=e.getAttribute(t))for(var n=Oo(n),o=0;o<n.length;o++)a.push(r.getElementById(n[o]));return a}catch(e){throw new TypeError("Cannot resolve id references for non-DOM nodes")}};var Oa=function a(e,n,o){var t=e instanceof tt?e:Dr(e),i=!e.actualNode||e.actualNode&&va(e.actualNode,n),t=t.children.map(function(e){var t=(r=e.props).nodeType,r=r.nodeValue;if(3===t){if(r&&i)return r}else if(!o)return a(e,n)}).join("");return ka(t)};var Sa=function(e){var t;return e.attr("aria-labelledby")&&(t=_a(e.actualNode,"aria-labelledby").map(function(e){e=Dr(e);return e?Oa(e,!0):""}).join(" ").trim())||(t=(t=e.attr("aria-label"))&&ka(t))?t:null},Ia=["HEAD","TITLE","TEMPLATE","SCRIPT","STYLE","IFRAME","OBJECT","VIDEO","AUDIO","NOSCRIPT"];var Pa=function t(e,r,a){return function(e){if(!Ia.includes(e.actualNode.nodeName.toUpperCase()))return e.children.some(function(e){return 3===(e=e.actualNode).nodeType&&e.nodeValue.trim()})}(e)||Ta(e.actualNode)||!a&&!!Sa(e)||!r&&e.children.some(function(e){return 1===e.actualNode.nodeType&&t(e)})};var Ba=function(e,t,r){return e=Dr(e),Pa(e,t,r)};function La(e,t){var r=Dr(e);return r?(void 0===r._isHiddenWithCSS&&(r._isHiddenWithCSS=Ma(e,t)),r._isHiddenWithCSS):Ma(e,t)}function Ma(e,t){if(9===e.nodeType)return!1;if(11===e.nodeType&&(e=e.host),["STYLE","SCRIPT"].includes(e.nodeName.toUpperCase()))return!1;var r=window.getComputedStyle(e,null);if(!r)throw new Error("Style does not exist for the given element.");if("none"===r.getPropertyValue("display"))return!0;var a=["hidden","collapse"],r=r.getPropertyValue("visibility");if(a.includes(r)&&!t)return!0;if(a.includes(r)&&t&&a.includes(t))return!0;e=sa(e);return!(!e||a.includes(r))&&La(e,r)}var qa=La;var ja=function(e){var t=e instanceof tt?e:Dr(e);if(t.hasAttr("disabled"))return!0;for(var r=t.parent,a=[],n=!1;r&&r.shadowId===t.shadowId&&!n&&(a.push(r),"legend"!==r.props.nodeName);){if(void 0!==r._inDisabledFieldset){n=r._inDisabledFieldset;break}"fieldset"===r.props.nodeName&&r.hasAttr("disabled")&&(n=!0),r=r.parent}return a.forEach(function(e){return e._inDisabledFieldset=n}),!!n||"area"!==t.props.nodeName&&(!!t.actualNode&&qa(t.actualNode))};var Ua=function(e){var t=e instanceof tt?e:Dr(e);if(!t||ja(t))return!1;switch(t.props.nodeName){case"a":case"area":if(t.hasAttr("href"))return!0;break;case"input":return"hidden"!==t.props.type;case"textarea":case"select":case"summary":case"button":return!0;case"details":return!Co(t,"summary").length}return!1};var Va=function(e){return 1===(e=e instanceof tt?e:Dr(e)).props.nodeType&&(!ja(e)&&(!!Ua(e)||!(!(e=e.attr("tabindex"))||isNaN(parseInt(e,10)))))};var Ha=function(e){return-1<parseInt(e.getAttribute("tabindex"),10)&&Va(e)&&!Ua(e)};var za=function(e){return null!==(e=e.doctype)&&("html"===e.name&&!e.publicId&&!e.systemId)};var $a=["block","list-item","table","flex","grid","inline-block"];function Wa(e){e=window.getComputedStyle(e).getPropertyValue("display");return $a.includes(e)||"table-"===e.substr(0,6)}var Ga=function(r){if(Wa(r))return!1;var e=function(e){for(var t=sa(e);t&&!Wa(t);)t=sa(t);return Dr(t)}(r),a="",n="",o=0;return function t(e,r){!1!==r(e.actualNode)&&e.children.forEach(function(e){return t(e,r)})}(e,function(e){if(2===o)return!1;if(3===e.nodeType&&(a+=e.nodeValue),1===e.nodeType){var t=(e.nodeName||"").toUpperCase();if(!["BR","HR"].includes(t))return!("none"===e.style.display||"hidden"===e.style.overflow||!["",null,"none"].includes(e.style.float)||!["",null,"relative"].includes(e.style.position))&&("A"===t&&e.href||"link"===(e.getAttribute("role")||"").toLowerCase()?(e===r&&(o=1),n+=e.textContent,!1):void 0);0===o?n=a="":o=2}}),a=ka(a),n=ka(n),a.length>n.length};var Ya=function(e){var t=(e=e||{}).modalPercent||.75;if(yr.get("isModalOpen"))return yr.get("isModalOpen");if(ho(axe._tree[0],"dialog, [role=dialog], [aria-modal=true]",function(e){return va(e.actualNode)}).length)return yr.set("isModalOpen",!0),!0;for(var r=pa(window),a=r.width*t,n=r.height*t,e=(r.width-a)/2,t=(r.height-n)/2,o=[{x:e,y:t},{x:r.width-e,y:t},{x:r.width/2,y:r.height/2},{x:e,y:r.height-t},{x:r.width-e,y:r.height-t}].map(function(e){return Array.from(document.elementsFromPoint(e.x,e.y))}),i=0;i<o.length;i++){var l=function(e){var t=o[e].find(function(e){e=window.getComputedStyle(e);return parseInt(e.width,10)>=a&&parseInt(e.height,10)>=n&&"none"!==e.getPropertyValue("pointer-events")&&("absolute"===e.position||"fixed"===e.position)});if(t&&o.every(function(e){return e.includes(t)}))return yr.set("isModalOpen",!0),{v:!0}}(i);if("object"===Gu(l))return l.v}yr.set("isModalOpen",void 0)};var Ka=function(e){return e instanceof window.Node},Xa={},Ja={set:function(e,t){if("string"!=typeof e)throw new Error("Incomplete data: key must be a string");return t&&(Xa[e]=t),Xa[e]},get:function(e){return Xa[e]},clear:function(){Xa={}}};var Qa=function(e,t){var r=e.nodeName.toUpperCase();return["IMG","CANVAS","OBJECT","IFRAME","VIDEO","SVG"].includes(r)?(Ja.set("bgColor","imgNode"),!0):((t="none"!==(e=(t=t||window.getComputedStyle(e)).getPropertyValue("background-image")))&&(e=/gradient/.test(e),Ja.set("bgColor",e?"bgGradient":"bgImage")),t)},Za={"aria-activedescendant":{type:"idref",allowEmpty:!0},"aria-atomic":{type:"boolean",global:!0},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"]},"aria-busy":{type:"boolean",global:!0},"aria-checked":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-colcount":{type:"int",minValue:-1},"aria-colindex":{type:"int",minValue:1},"aria-colspan":{type:"int",minValue:1},"aria-controls":{type:"idrefs",allowEmpty:!0,global:!0},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],global:!0},"aria-describedby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-details":{type:"idref",allowEmpty:!0,global:!0},"aria-disabled":{type:"boolean",global:!0},"aria-dropeffect":{type:"nmtokens",values:["copy","execute","link","move","none","popup"],global:!0},"aria-errormessage":{type:"idref",allowEmpty:!0,global:!0},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"]},"aria-flowto":{type:"idrefs",allowEmpty:!0,global:!0},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],global:!0},"aria-hidden":{type:"nmtoken",values:["true","false","undefined"],global:!0},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["grammar","false","spelling","true"],global:!0},"aria-keyshortcuts":{type:"string",allowEmpty:!0,global:!0},"aria-label":{type:"string",allowEmpty:!0,global:!0},"aria-labelledby":{type:"idrefs",allowEmpty:!0,global:!0},"aria-level":{type:"int",minValue:1},"aria-live":{type:"nmtoken",values:["assertive","off","polite"],global:!0},"aria-modal":{type:"boolean"},"aria-multiline":{type:"boolean"},"aria-multiselectable":{type:"boolean"},"aria-orientation":{type:"nmtoken",values:["horizontal","undefined","vertical"]},"aria-owns":{type:"idrefs",allowEmpty:!0,global:!0},"aria-placeholder":{type:"string",allowEmpty:!0},"aria-posinset":{type:"int",minValue:1},"aria-pressed":{type:"nmtoken",values:["false","mixed","true","undefined"]},"aria-readonly":{type:"boolean"},"aria-relevant":{type:"nmtokens",values:["additions","all","removals","text"],global:!0},"aria-required":{type:"boolean"},"aria-roledescription":{type:"string",allowEmpty:!0,global:!0},"aria-rowcount":{type:"int",minValue:-1},"aria-rowindex":{type:"int",minValue:1},"aria-rowspan":{type:"int",minValue:0},"aria-selected":{type:"nmtoken",values:["false","true","undefined"]},"aria-setsize":{type:"int",minValue:-1},"aria-sort":{type:"nmtoken",values:["ascending","descending","none","other"]},"aria-valuemax":{type:"decimal"},"aria-valuemin":{type:"decimal"},"aria-valuenow":{type:"decimal"},"aria-valuetext":{type:"string"}},en={alert:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},alertdialog:{type:"widget",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["alert","dialog"],accessibleNameRequired:!0},application:{type:"landmark",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["structure"],accessibleNameRequired:!0},article:{type:"structure",allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["document"]},banner:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},blockquote:{type:"structure",superclassRole:["section"]},button:{type:"widget",allowedAttrs:["aria-expanded","aria-pressed"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},caption:{type:"structure",requiredContext:["figure","table","grid","treegrid"],superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},cell:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-expanded"],superclassRole:["section"],nameFromContent:!0},checkbox:{type:"widget",allowedAttrs:["aria-checked","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},code:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},columnheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},combobox:{type:"composite",requiredAttrs:["aria-expanded","aria-controls"],allowedAttrs:["aria-owns","aria-autocomplete","aria-readonly","aria-required","aria-activedescendant","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},command:{type:"abstract",superclassRole:["widget"]},complementary:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},composite:{type:"abstract",superclassRole:["widget"]},contentinfo:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},definition:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},deletion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},dialog:{type:"widget",allowedAttrs:["aria-expanded","aria-modal"],superclassRole:["window"],accessibleNameRequired:!0},directory:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["list"],nameFromContent:!0},document:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["structure"]},emphasis:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},feed:{type:"structure",requiredOwned:["article"],allowedAttrs:["aria-expanded"],superclassRole:["list"]},figure:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},form:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},grid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-level","aria-multiselectable","aria-readonly","aria-activedescendant","aria-colcount","aria-expanded","aria-rowcount"],superclassRole:["composite","table"],accessibleNameRequired:!1},gridcell:{type:"widget",requiredContext:["row"],allowedAttrs:["aria-readonly","aria-required","aria-selected","aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan"],superclassRole:["cell","widget"],nameFromContent:!0},group:{type:"structure",allowedAttrs:["aria-activedescendant","aria-expanded"],superclassRole:["section"]},heading:{type:"structure",requiredAttrs:["aria-level"],allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},img:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!0,childrenPresentational:!0},input:{type:"abstract",superclassRole:["widget"]},insertion:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},landmark:{type:"abstract",superclassRole:["section"]},link:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},list:{type:"structure",requiredOwned:["group","listitem"],allowedAttrs:["aria-expanded"],superclassRole:["section"]},listbox:{type:"composite",requiredOwned:["option"],allowedAttrs:["aria-multiselectable","aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!0},listitem:{type:"structure",requiredContext:["list","group"],allowedAttrs:["aria-level","aria-posinset","aria-setsize","aria-expanded"],superclassRole:["section"],nameFromContent:!0},log:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},main:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},marquee:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},math:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],childrenPresentational:!0},menu:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"]},menubar:{type:"composite",requiredOwned:["group","menuitemradio","menuitem","menuitemcheckbox"],allowedAttrs:["aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["menu"]},menuitem:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-posinset","aria-setsize","aria-expanded"],superclassRole:["command"],accessibleNameRequired:!0,nameFromContent:!0},menuitemcheckbox:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-checked","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["checkbox","menuitem"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},menuitemradio:{type:"widget",requiredContext:["menu","menubar","group"],allowedAttrs:["aria-checked","aria-posinset","aria-readonly","aria-setsize"],superclassRole:["menuitemcheckbox","radio"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},meter:{type:"structure",allowedAttrs:["aria-valuetext"],requiredAttrs:["aria-valuemax","aria-valuemin","aria-valuenow"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},navigation:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},none:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},note:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"]},option:{type:"widget",requiredContext:["listbox"],allowedAttrs:["aria-selected","aria-checked","aria-posinset","aria-setsize"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},paragraph:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},presentation:{type:"structure",superclassRole:["structure"],prohibitedAttrs:["aria-label","aria-labelledby"]},progressbar:{type:"widget",allowedAttrs:["aria-expanded","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext"],superclassRole:["range"],accessibleNameRequired:!0,childrenPresentational:!0},radio:{type:"widget",allowedAttrs:["aria-checked","aria-posinset","aria-setsize","aria-required"],superclassRole:["input"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},radiogroup:{type:"composite",requiredOwned:["radio"],allowedAttrs:["aria-readonly","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},range:{type:"abstract",superclassRole:["widget"]},region:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"],accessibleNameRequired:!1},roletype:{type:"abstract",superclassRole:[]},row:{type:"structure",requiredContext:["grid","rowgroup","table","treegrid"],requiredOwned:["cell","columnheader","gridcell","rowheader"],allowedAttrs:["aria-colindex","aria-level","aria-rowindex","aria-selected","aria-activedescendant","aria-expanded","aria-posinset","aria-setsize"],superclassRole:["group","widget"],nameFromContent:!0},rowgroup:{type:"structure",requiredContext:["grid","table","treegrid"],requiredOwned:["row"],superclassRole:["structure"],nameFromContent:!0},rowheader:{type:"structure",requiredContext:["row"],allowedAttrs:["aria-sort","aria-colindex","aria-colspan","aria-expanded","aria-readonly","aria-required","aria-rowindex","aria-rowspan","aria-selected"],superclassRole:["cell","gridcell","sectionhead"],accessibleNameRequired:!1,nameFromContent:!0},scrollbar:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-controls","aria-orientation","aria-valuemax","aria-valuemin","aria-valuetext"],superclassRole:["range"],childrenPresentational:!0},search:{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},searchbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["textbox"],accessibleNameRequired:!0},section:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},sectionhead:{type:"abstract",superclassRole:["structure"],nameFromContent:!0},select:{type:"abstract",superclassRole:["composite","group"]},separator:{type:"structure",allowedAttrs:["aria-valuemax","aria-valuemin","aria-valuenow","aria-orientation","aria-valuetext"],superclassRole:["structure","widget"],childrenPresentational:!0},slider:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-orientation","aria-readonly","aria-valuetext"],superclassRole:["input","range"],accessibleNameRequired:!0,childrenPresentational:!0},spinbutton:{type:"widget",requiredAttrs:["aria-valuenow"],allowedAttrs:["aria-valuemax","aria-valuemin","aria-readonly","aria-required","aria-activedescendant","aria-valuetext"],superclassRole:["composite","input","range"],accessibleNameRequired:!0},status:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"]},strong:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},structure:{type:"abstract",superclassRole:["roletype"]},subscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},superscript:{type:"structure",superclassRole:["section"],prohibitedAttrs:["aria-label","aria-labelledby"]},switch:{type:"widget",requiredAttrs:["aria-checked"],allowedAttrs:["aria-readonly"],superclassRole:["checkbox"],accessibleNameRequired:!0,nameFromContent:!0,childrenPresentational:!0},tab:{type:"widget",requiredContext:["tablist"],allowedAttrs:["aria-posinset","aria-selected","aria-setsize","aria-expanded"],superclassRole:["sectionhead","widget"],nameFromContent:!0,childrenPresentational:!0},table:{type:"structure",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-colcount","aria-rowcount","aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1,nameFromContent:!0},tablist:{type:"composite",requiredOwned:["tab"],allowedAttrs:["aria-level","aria-multiselectable","aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["composite"]},tabpanel:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["section"],accessibleNameRequired:!1},term:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},text:{type:"structure",superclassRole:["section"],nameFromContent:!0},textbox:{type:"widget",allowedAttrs:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-placeholder","aria-readonly","aria-required"],superclassRole:["input"],accessibleNameRequired:!0},time:{type:"structure",superclassRole:["section"]},timer:{type:"widget",allowedAttrs:["aria-expanded"],superclassRole:["status"]},toolbar:{type:"structure",allowedAttrs:["aria-orientation","aria-activedescendant","aria-expanded"],superclassRole:["group"],accessibleNameRequired:!0},tooltip:{type:"structure",allowedAttrs:["aria-expanded"],superclassRole:["section"],nameFromContent:!0},tree:{type:"composite",requiredOwned:["group","treeitem"],allowedAttrs:["aria-multiselectable","aria-required","aria-activedescendant","aria-expanded","aria-orientation"],superclassRole:["select"],accessibleNameRequired:!1},treegrid:{type:"composite",requiredOwned:["rowgroup","row"],allowedAttrs:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-readonly","aria-required","aria-rowcount"],superclassRole:["grid","tree"],accessibleNameRequired:!1},treeitem:{type:"widget",requiredContext:["group","tree"],allowedAttrs:["aria-checked","aria-expanded","aria-level","aria-posinset","aria-selected","aria-setsize"],superclassRole:["listitem","option"],accessibleNameRequired:!0,nameFromContent:!0},widget:{type:"abstract",superclassRole:["roletype"]},window:{type:"abstract",superclassRole:["roletype"]}},tn={a:{variant:{href:{matches:"[href]",contentTypes:["interactive","phrasing","flow"],allowedRoles:["button","checkbox","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab","treeitem","doc-backlink","doc-biblioref","doc-glossref","doc-noteref"],namingMethods:["subtreeText"]},default:{contentTypes:["phrasing","flow"],allowedRoles:!0}}},abbr:{contentTypes:["phrasing","flow"],allowedRoles:!0},addres:{contentTypes:["flow"],allowedRoles:!0},area:{contentTypes:["phrasing","flow"],allowedRoles:!1,namingMethods:["altText"]},article:{contentTypes:["sectioning","flow"],allowedRoles:["feed","presentation","none","document","application","main","region"],shadowRoot:!0},aside:{contentTypes:["sectioning","flow"],allowedRoles:["feed","note","presentation","none","region","search","doc-dedication","doc-example","doc-footnote","doc-pullquote","doc-tip"]},audio:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"Audio"},b:{contentTypes:["phrasing","flow"],allowedRoles:!0},base:{allowedRoles:!1,noAriaAttrs:!0},bdi:{contentTypes:["phrasing","flow"],allowedRoles:!0},bdo:{contentTypes:["phrasing","flow"],allowedRoles:!0},blockquote:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},body:{allowedRoles:!1,shadowRoot:!0},br:{contentTypes:["phrasing","flow"],allowedRoles:["presentation","none"],namingMethods:["titleText","singleSpace"]},button:{contentTypes:["interactive","phrasing","flow"],allowedRoles:["checkbox","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"],namingMethods:["subtreeText"]},canvas:{allowedRoles:!0,contentTypes:["embedded","phrasing","flow"],chromiumRole:"Canvas"},caption:{allowedRoles:!1},cite:{contentTypes:["phrasing","flow"],allowedRoles:!0},code:{contentTypes:["phrasing","flow"],allowedRoles:!0},col:{allowedRoles:!1,noAriaAttrs:!0},colgroup:{allowedRoles:!1,noAriaAttrs:!0},data:{contentTypes:["phrasing","flow"],allowedRoles:!0},datalist:{contentTypes:["phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-multiselectable":"false"}},dd:{allowedRoles:!1},del:{contentTypes:["phrasing","flow"],allowedRoles:!0},dfn:{contentTypes:["phrasing","flow"],allowedRoles:!0},details:{contentTypes:["interactive","flow"],allowedRoles:!1},dialog:{contentTypes:["flow"],allowedRoles:["alertdialog"]},div:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},dl:{contentTypes:["flow"],allowedRoles:["group","list","presentation","none"],chromiumRole:"DescriptionList"},dt:{allowedRoles:["listitem"]},em:{contentTypes:["phrasing","flow"],allowedRoles:!0},embed:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","presentation","none"],chromiumRole:"EmbeddedObject"},fieldset:{contentTypes:["flow"],allowedRoles:["none","presentation","radiogroup"],namingMethods:["fieldsetLegendText"]},figcaption:{allowedRoles:["group","none","presentation"]},figure:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["figureText","titleText"]},footer:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},form:{contentTypes:["flow"],allowedRoles:["search","none","presentation"]},h1:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"1"}},h2:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"2"}},h3:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"3"}},h4:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"4"}},h5:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"5"}},h6:{contentTypes:["heading","flow"],allowedRoles:["none","presentation","tab","doc-subtitle"],shadowRoot:!0,implicitAttrs:{"aria-level":"6"}},head:{allowedRoles:!1,noAriaAttrs:!0},header:{contentTypes:["flow"],allowedRoles:["group","none","presentation","doc-footnote"],shadowRoot:!0},hgroup:{contentTypes:["heading","flow"],allowedRoles:!0},hr:{contentTypes:["flow"],allowedRoles:["none","presentation","doc-pagebreak"],namingMethods:["titleText","singleSpace"]},html:{allowedRoles:!1,noAriaAttrs:!0},i:{contentTypes:["phrasing","flow"],allowedRoles:!0},iframe:{contentTypes:["interactive","embedded","phrasing","flow"],allowedRoles:["application","document","img","none","presentation"],chromiumRole:"Iframe"},img:{variant:{nonEmptyAlt:{matches:{attributes:{alt:"/.+/"}},allowedRoles:["button","checkbox","link","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","scrollbar","separator","slider","switch","tab","treeitem","doc-cover"]},usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","flow"]},default:{allowedRoles:["presentation","none"],contentTypes:["embedded","flow"]}},namingMethods:["altText"]},input:{variant:{button:{matches:{properties:{type:"button"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","option","radio","switch","tab"]},buttonType:{matches:{properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},checkboxPressed:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":"/.*/"}},allowedRoles:["button","menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},checkbox:{matches:{properties:{type:"checkbox"},attributes:{"aria-pressed":null}},allowedRoles:["menuitemcheckbox","option","switch"],implicitAttrs:{"aria-checked":"false"}},noRoles:{matches:{properties:{type:["color","date","datetime-local","file","month","number","password","range","reset","submit","time","week"]}},allowedRoles:!1},hidden:{matches:{properties:{type:"hidden"}},contentTypes:["flow"],allowedRoles:!1,noAriaAttrs:!0},image:{matches:{properties:{type:"image"}},allowedRoles:["link","menuitem","menuitemcheckbox","menuitemradio","radio","switch"],namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},radio:{matches:{properties:{type:"radio"}},allowedRoles:["menuitemradio"],implicitAttrs:{"aria-checked":"false"}},textWithList:{matches:{properties:{type:"text"},attributes:{list:"/.*/"}},allowedRoles:!1},default:{contentTypes:["interactive","flow"],allowedRoles:["combobox","searchbox","spinbutton"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText","placeholderText"]}}},ins:{contentTypes:["phrasing","flow"],allowedRoles:!0},kbd:{contentTypes:["phrasing","flow"],allowedRoles:!0},label:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,chromiumRole:"Label"},legend:{allowedRoles:!1},li:{allowedRoles:["menuitem","menuitemcheckbox","menuitemradio","option","none","presentation","radio","separator","tab","treeitem","doc-biblioentry","doc-endnote"],implicitAttrs:{"aria-setsize":"1","aria-posinset":"1"}},link:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},main:{contentTypes:["flow"],allowedRoles:!1,shadowRoot:!0},map:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},math:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!1},mark:{contentTypes:["phrasing","flow"],allowedRoles:!0},menu:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},meta:{variant:{itemprop:{matches:"[itemprop]",contentTypes:["phrasing","flow"]}},allowedRoles:!1,noAriaAttrs:!0},meter:{contentTypes:["phrasing","flow"],allowedRoles:!1,chromiumRole:"progressbar"},nav:{contentTypes:["sectioning","flow"],allowedRoles:["doc-index","doc-pagelist","doc-toc","menu","menubar","tablist"],shadowRoot:!0},noscript:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},object:{variant:{usemap:{matches:"[usemap]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application","document","img"],chromiumRole:"PluginObject"},ol:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},optgroup:{allowedRoles:!1},option:{allowedRoles:!1,implicitAttrs:{"aria-selected":"false"}},output:{contentTypes:["phrasing","flow"],allowedRoles:!0,namingMethods:["subtreeText"]},p:{contentTypes:["flow"],allowedRoles:!0,shadowRoot:!0},param:{allowedRoles:!1,noAriaAttrs:!0},picture:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},pre:{contentTypes:["flow"],allowedRoles:!0},progress:{contentTypes:["phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuemax":"100","aria-valuemin":"0","aria-valuenow":"0"}},q:{contentTypes:["phrasing","flow"],allowedRoles:!0},rp:{allowedRoles:!0},rt:{allowedRoles:!0},ruby:{contentTypes:["phrasing","flow"],allowedRoles:!0},s:{contentTypes:["phrasing","flow"],allowedRoles:!0},samp:{contentTypes:["phrasing","flow"],allowedRoles:!0},script:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},section:{contentTypes:["sectioning","flow"],allowedRoles:["alert","alertdialog","application","banner","complementary","contentinfo","dialog","document","feed","log","main","marquee","navigation","none","note","presentation","search","status","tabpanel","doc-abstract","doc-acknowledgments","doc-afterword","doc-appendix","doc-bibliography","doc-chapter","doc-colophon","doc-conclusion","doc-credit","doc-credits","doc-dedication","doc-endnotes","doc-epigraph","doc-epilogue","doc-errata","doc-example","doc-foreword","doc-glossary","doc-index","doc-introduction","doc-notice","doc-pagelist","doc-part","doc-preface","doc-prologue","doc-pullquote","doc-qna","doc-toc"],shadowRoot:!0},select:{variant:{combobox:{matches:{attributes:{multiple:null,size:[null,"1"]}},allowedRoles:["menu"]},default:{allowedRoles:!1}},contentTypes:["interactive","phrasing","flow"],implicitAttrs:{"aria-valuenow":""},namingMethods:["labelText"]},slot:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},small:{contentTypes:["phrasing","flow"],allowedRoles:!0},source:{allowedRoles:!1,noAriaAttrs:!0},span:{contentTypes:["phrasing","flow"],allowedRoles:!0,shadowRoot:!0},strong:{contentTypes:["phrasing","flow"],allowedRoles:!0},style:{allowedRoles:!1,noAriaAttrs:!0},svg:{contentTypes:["embedded","phrasing","flow"],allowedRoles:!0,chromiumRole:"SVGRoot",namingMethods:["svgTitleText"]},sub:{contentTypes:["phrasing","flow"],allowedRoles:!0},summary:{allowedRoles:!1,namingMethods:["subtreeText"]},sup:{contentTypes:["phrasing","flow"],allowedRoles:!0},table:{contentTypes:["flow"],allowedRoles:!0,namingMethods:["tableCaptionText","tableSummaryText"]},tbody:{allowedRoles:!0},template:{contentTypes:["phrasing","flow"],allowedRoles:!1,noAriaAttrs:!0},textarea:{contentTypes:["interactive","phrasing","flow"],allowedRoles:!1,implicitAttrs:{"aria-valuenow":"","aria-multiline":"true"},namingMethods:["labelText","placeholderText"]},tfoot:{allowedRoles:!0},thead:{allowedRoles:!0},time:{contentTypes:["phrasing","flow"],allowedRoles:!0},title:{allowedRoles:!1,noAriaAttrs:!0},td:{allowedRoles:!0},th:{allowedRoles:!0},tr:{allowedRoles:!0},track:{allowedRoles:!1,noAriaAttrs:!0},u:{contentTypes:["phrasing","flow"],allowedRoles:!0},ul:{contentTypes:["flow"],allowedRoles:["directory","group","listbox","menu","menubar","none","presentation","radiogroup","tablist","toolbar","tree"]},var:{contentTypes:["phrasing","flow"],allowedRoles:!0},video:{variant:{controls:{matches:"[controls]",contentTypes:["interactive","embedded","phrasing","flow"]},default:{contentTypes:["embedded","phrasing","flow"]}},allowedRoles:["application"],chromiumRole:"video"},wbr:{contentTypes:["phrasing","flow"],allowedRoles:!0}},rn={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},an={ariaAttrs:Za,ariaRoles:v1({},en,{"doc-abstract":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-acknowledgments":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-afterword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-appendix":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-backlink":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-biblioentry":{type:"listitem",requiredContext:["doc-bibliography"],allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"]},"doc-bibliography":{type:"landmark",requiredOwned:["doc-biblioentry"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-biblioref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-chapter":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-colophon":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-conclusion":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-cover":{type:"img",allowedAttrs:["aria-expanded"],superclassRole:["img"]},"doc-credit":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-credits":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-dedication":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-endnote":{type:"listitem",requiredContext:["doc-endnotes"],allowedAttrs:["aria-expanded","aria-level","aria-posinset","aria-setsize"],superclassRole:["listitem"]},"doc-endnotes":{type:"landmark",requiredOwned:["doc-endnote"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-epigraph":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-epilogue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-errata":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-example":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-footnote":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-foreword":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossary":{type:"landmark",requiredOwned:["definition","term"],allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-glossref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-index":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-introduction":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-noteref":{type:"link",allowedAttrs:["aria-expanded"],nameFromContent:!0,superclassRole:["link"]},"doc-notice":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-pagebreak":{type:"separator",allowedAttrs:["aria-expanded","aria-orientation"],superclassRole:["separator"],childrenPresentational:!0},"doc-pagelist":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]},"doc-part":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-preface":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-prologue":{type:"landmark",allowedAttrs:["aria-expanded"],superclassRole:["landmark"]},"doc-pullquote":{type:"none",superclassRole:["none"]},"doc-qna":{type:"section",allowedAttrs:["aria-expanded"],superclassRole:["section"]},"doc-subtitle":{type:"sectionhead",allowedAttrs:["aria-expanded"],superclassRole:["sectionhead"]},"doc-tip":{type:"note",allowedAttrs:["aria-expanded"],superclassRole:["note"]},"doc-toc":{type:"navigation",allowedAttrs:["aria-expanded"],superclassRole:["navigation"]}},{"graphics-document":{type:"structure",superclassRole:["document"],accessibleNameRequired:!0},"graphics-object":{type:"structure",superclassRole:["group"],nameFromContent:!0},"graphics-symbol":{type:"structure",superclassRole:["img"],accessibleNameRequired:!0,childrenPresentational:!0}}),htmlElms:tn,cssColors:rn},nn=v1({},an);var on=nn;var ln=function(e,t,r,a){this.red=e,this.green=t,this.blue=r,this.alpha=a,this.toHexString=function(){var e=Math.round(this.red).toString(16),t=Math.round(this.green).toString(16),r=Math.round(this.blue).toString(16);return"#"+(15.5<this.red?e:"0"+e)+(15.5<this.green?t:"0"+t)+(15.5<this.blue?r:"0"+r)};var n=/^#[0-9a-f]{3,8}$/i,o=/^((?:rgb|hsl)a?)\s*\(([^\)]*)\)/i;this.parseString=function(e){if(on.cssColors[e]||"transparent"===e){var t=g1(on.cssColors[e]||[0,0,0],3),r=t[0],a=t[1],t=t[2];return this.red=r,this.green=a,this.blue=t,void(this.alpha="transparent"===e?0:1)}if(e.match(o))this.parseColorFnString(e);else{if(!e.match(n))throw new Error('Unable to parse color "'.concat(e,'"'));this.parseHexString(e)}},this.parseRgbString=function(e){if("transparent"===e)return this.red=0,this.green=0,this.blue=0,void(this.alpha=0);this.parseColorFnString(e)},this.parseHexString=function(e){var t,r;e.match(n)&&![6,8].includes(e.length)&&((e=e.replace("#","")).length<6&&(e=(t=(r=g1(e,4))[0])+t+(t=r[1])+t+(t=r[2])+t,(r=r[3])&&(e+=r+r)),e=e.match(/.{1,2}/g),this.red=parseInt(e[0],16),this.green=parseInt(e[1],16),this.blue=parseInt(e[2],16),e[3]?this.alpha=parseInt(e[3],16)/255:this.alpha=1)},this.parseColorFnString=function(e){var e=g1(e.match(o)||[],3),r=e[1],e=e[2];r&&e&&(e=e.split(/\s*[,\/\s]\s*/).map(function(e){return e.replace(",","").trim()}).filter(function(e){return""!==e}).map(function(e,t){return function(e,t,r){if(/%$/.test(t))return 3===r?parseFloat(t)/100:255*parseFloat(t)/100;if("h"===e[r]){if(/turn$/.test(t))return 360*parseFloat(t);if(/rad$/.test(t))return 57.3*parseFloat(t)}return parseFloat(t)}(r,e,t)}),"hsl"===r.substr(0,3)&&(e=function(e){var t=g1(e,4),r=t[0],a=t[1],n=t[2],e=t[3];a/=255,n/=255;var a=(t=(1-Math.abs(2*n-1))*a)*(1-Math.abs(r/60%2-1)),o=n-t/2;return(a=r<60?[t,a,0]:r<120?[a,t,0]:r<180?[0,t,a]:r<240?[0,a,t]:r<300?[a,0,t]:[t,0,a]).map(function(e){return Math.round(255*(e+o))}).concat(e)}(e)),this.red=e[0],this.green=e[1],this.blue=e[2],this.alpha="number"==typeof e[3]?e[3]:1)},this.getRelativeLuminance=function(){var e=this.red/255,t=this.green/255,r=this.blue/255;return.2126*(e<=.03928?e/12.92:Math.pow((.055+e)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((.055+t)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((.055+r)/1.055,2.4))}};var sn=function(e){var t=new ln;return t.parseString(e.getPropertyValue("background-color")),0!==t.alpha&&(e=e.getPropertyValue("opacity"),t.alpha=t.alpha*e),t};var un=function(e){var t=window.getComputedStyle(e);return Qa(e,t)||1===sn(t).alpha},cn=/^\/?#[^/!]/;var dn=function(e){return!!cn.test(e.getAttribute("href"))&&(void 0!==yr.get("firstPageLink")?t=yr.get("firstPageLink"):(t=Co(axe._tree,'a:not([href^="#"]):not([href^="/#"]):not([href^="javascript"])')[0],yr.set("firstPageLink",t||null)),!t||e.compareDocumentPosition(t.actualNode)===e.DOCUMENT_POSITION_FOLLOWING);var t};var pn=function(e,t){for(var r=["fixed","sticky"],a=[],n=!1,o=0;o<e.length;++o){var i=e[o];i===t&&(n=!0);var l=window.getComputedStyle(i);n||-1===r.indexOf(l.position)?a.push(i):a=[]}return a};function fn(e){for(var t=Dr(e).parent;t;){if(qn(t.actualNode))return t.actualNode;t=t.parent}}var mn=function(e,t){var r,a,n,o,i,l,s,u,c,d,p,f=fn(t);do{var m=fn(e);if(m===f||m===t)return a=t,u=p=d=c=u=s=l=i=o=n=void 0,n=(p=(r=e).getBoundingClientRect()).top+.01,o=p.bottom-.01,i=p.left+.01,l=p.right-.01,s=a.getBoundingClientRect(),u=s.top,c=s.left,d=u-a.scrollTop,r=u-a.scrollTop+a.scrollHeight,p=c-a.scrollLeft,u=c-a.scrollLeft+a.scrollWidth,"inline"===(c=window.getComputedStyle(a)).getPropertyValue("display")||!(i<p&&i<s.left||n<d&&n<s.top||u<l&&l>s.right||r<o&&o>s.bottom)&&(!(l>s.right||o>s.bottom)||("scroll"===c.overflow||"auto"===c.overflow||"hidden"===c.overflow||a instanceof window.HTMLBodyElement||a instanceof window.HTMLHtmlElement))}while(e=m);return!1};var hn=function a(n,o){var t=2<arguments.length&&void 0!==arguments[2]?arguments[2]:document,i=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0;if(999<i)throw new Error("Infinite loop detected");return Array.from(t.elementsFromPoint(n,o)||[]).filter(function(e){return na(e)===t}).reduce(function(e,t){var r;return ta(t)?(r=a(n,o,t.shadowRoot,i+1),(e=e.concat(r)).length&&mn(e[0],t)&&e.push(t)):e.push(t),e},[])};var gn=function(e,t){if(e.hasAttribute(t)){var r=e.nodeName.toUpperCase(),a=e;["A","AREA"].includes(r)&&!e.ownerSVGElement||((a=document.createElement("a")).href=e.getAttribute(t));r=["https:","ftps:"].includes(a.protocol)?a.protocol.replace(/s:$/,":"):a.protocol,e=/^\//.test(a.pathname)?a.pathname:"/".concat(a.pathname),e=(e=(t=e).split("/").pop())&&-1!==e.indexOf(".")?{pathname:t.replace(e,""),filename:/index./.test(e)?"":e}:{pathname:t,filename:""},t=e.pathname,e=e.filename;return{protocol:r,hostname:a.hostname,port:(r=a.port,["443","80"].includes(r)?"":r),pathname:/\/$/.test(t)?t:"".concat(t,"/"),search:function(e){var t={};if(!e||!e.length)return t;var r=e.substring(1).split("&");if(!r||!r.length)return t;for(var a=0;a<r.length;a++){var n=g1(r[a].split("="),2),o=n[0],n=n[1],n=void 0===n?"":n;t[decodeURIComponent(o)]=decodeURIComponent(n)}return t}(a.search),hash:function(e){if(!e)return"";var t=e.match(/#!?\/?/g);return t&&"#"!==g1(t,1)[0]?e:""}(a.hash),filename:e}}};var vn,bn=function(e,t){var r=t.getBoundingClientRect(),a=r.top,n=r.left,o=a-t.scrollTop,i=a-t.scrollTop+t.scrollHeight,a=n-t.scrollLeft,n=n-t.scrollLeft+t.scrollWidth;return!(e.left>n&&e.left>r.right||e.top>i&&e.top>r.bottom||e.right<a&&e.right<r.left||e.bottom<o&&e.bottom<r.top)&&(o=window.getComputedStyle(t),!(e.left>r.right||e.top>r.bottom)||("scroll"===o.overflow||"auto"===o.overflow||t instanceof window.HTMLBodyElement||t instanceof window.HTMLHtmlElement))},yn=0,Dn=function(){d1(o,tt);var n=p1(o);function o(e,t,r){var a;return b1(this,o),(a=n.call(this)).shadowId=r,a.children=[],a.actualNode=e,(a.parent=t)||(yn=0),a.nodeIndex=yn++,a._isHidden=null,a._cache={},void 0===vn&&(vn=rr(e.ownerDocument)),a._isXHTML=vn,"input"===e.nodeName.toLowerCase()&&(t=e.getAttribute("type"),t=a._isXHTML?t:(t||"").toLowerCase(),So().includes(t)||(t="text"),a._type=t),yr.get("nodeMap")&&yr.get("nodeMap").set(e,f1(a)),a}return y1(o,[{key:"props",get:function(){var e,t,r,a,n,o;return this._cache.hasOwnProperty("props")||(e=(o=this.actualNode).nodeType,t=o.nodeName,r=o.id,a=o.multiple,n=o.nodeValue,o=o.value,this._cache.props={nodeType:e,nodeName:this._isXHTML?t:t.toLowerCase(),id:r,type:this._type,multiple:a,nodeValue:n,value:o}),this._cache.props}},{key:"attr",value:function(e){return"function"!=typeof this.actualNode.getAttribute?null:this.actualNode.getAttribute(e)}},{key:"hasAttr",value:function(e){return"function"==typeof this.actualNode.hasAttribute&&this.actualNode.hasAttribute(e)}},{key:"attrNames",get:function(){var e;return this._cache.hasOwnProperty("attrNames")||(e=(this.actualNode.attributes instanceof window.NamedNodeMap?this.actualNode:this.actualNode.cloneNode(!1)).attributes,this._cache.attrNames=Array.from(e).map(function(e){return e.name})),this._cache.attrNames}},{key:"getComputedStylePropertyValue",value:function(e){var t="computedStyle_"+e;return this._cache.hasOwnProperty(t)||(this._cache.hasOwnProperty("computedStyle")||(this._cache.computedStyle=window.getComputedStyle(this.actualNode)),this._cache[t]=this._cache.computedStyle.getPropertyValue(e)),this._cache[t]}},{key:"isFocusable",get:function(){return this._cache.hasOwnProperty("isFocusable")||(this._cache.isFocusable=Va(this.actualNode)),this._cache.isFocusable}},{key:"tabbableElements",get:function(){return this._cache.hasOwnProperty("tabbableElements")||(this._cache.tabbableElements=Fa(this)),this._cache.tabbableElements}},{key:"clientRects",get:function(){return this._cache.hasOwnProperty("clientRects")||(this._cache.clientRects=Array.from(this.actualNode.getClientRects()).filter(function(e){return 0<e.width})),this._cache.clientRects}},{key:"boundingClientRect",get:function(){return this._cache.hasOwnProperty("boundingClientRect")||(this._cache.boundingClientRect=this.actualNode.getBoundingClientRect()),this._cache.boundingClientRect}}]),o}();function wn(e,a,r){var n,t,o;function i(e,t,r){r=wn(t,a,r);return e=r?e.concat(r):e}if(o=(e=e.documentElement?e.documentElement:e).nodeName.toLowerCase(),ta(e))return n=new Dn(e,r,a),a="a"+Math.random().toString().substring(2),t=Array.from(e.shadowRoot.childNodes),n.children=t.reduce(function(e,t){return i(e,t,n)},[]),[n];if("content"===o&&"function"==typeof e.getDistributedNodes)return(t=Array.from(e.getDistributedNodes())).reduce(function(e,t){return i(e,t,r)},[]);if("slot"!==o||"function"!=typeof e.assignedNodes)return 1===e.nodeType?(n=new Dn(e,r,a),t=Array.from(e.childNodes),n.children=t.reduce(function(e,t){return i(e,t,n)},[]),[n]):3===e.nodeType?[new Dn(e,r)]:void 0;(t=Array.from(e.assignedNodes())).length||(t=function(e){var t=[];for(e=e.firstChild;e;)t.push(e),e=e.nextSibling;return t}(e));window.getComputedStyle(e);return t.reduce(function(e,t){return i(e,t,r)},[])}var xn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:document.documentElement,t=1<arguments.length?arguments[1]:void 0;return yr.set("nodeMap",new WeakMap),wn(e,t,null)};var En=function(e){return e?e.trim().split("-")[0].toLowerCase():""};var An=function(e){var r={};return r.none=e.none.concat(e.all),r.any=e.any,Object.keys(r).map(function(e){if(r[e].length){var t=axe._audit.data.failureSummaries[e];return t&&"function"==typeof t.failureMessage?t.failureMessage(r[e].map(function(e){return e.message||""})):void 0}}).filter(function(e){return void 0!==e}).join("\n\n")};var Cn=function(){return"function"==typeof axe._audit.data.incompleteFallbackMessage?axe._audit.data.incompleteFallbackMessage():axe._audit.data.incompleteFallbackMessage};var Fn=Je.resultGroups;var kn=function(e,a){var t=axe.utils.aggregateResult(e);return Fn.forEach(function(e){a.resultTypes&&!a.resultTypes.includes(e)&&(t[e]||[]).forEach(function(e){Array.isArray(e.nodes)&&0<e.nodes.length&&(e.nodes=[e.nodes[0]])}),t[e]=(t[e]||[]).map(function(t){return t=Object.assign({},t),Array.isArray(t.nodes)&&0<t.nodes.length&&(t.nodes=t.nodes.map(function(e){var t,r;return"object"===Gu(e.node)&&(e.html=e.node.source,a.elementRef&&!e.node.fromFrame&&(e.element=e.node.element),!1===a.selectors&&!e.node.fromFrame||(e.target=e.node.selector),a.ancestry&&(e.ancestry=e.node.ancestry),a.xpath&&(e.xpath=e.node.xpath)),delete e.result,delete e.node,t=e,r=a,["any","all","none"].forEach(function(e){Array.isArray(t[e])&&t[e].filter(function(e){return Array.isArray(e.relatedNodes)}).forEach(function(e){e.relatedNodes=e.relatedNodes.map(function(e){var t={html:e.source};return r.elementRef&&!e.fromFrame&&(t.element=e.element),!1===r.selectors&&!e.fromFrame||(t.target=e.selector),r.ancestry&&(t.ancestry=e.ancestry),r.xpath&&(t.xpath=e.xpath),t})})}),e})),Fn.forEach(function(e){return delete t[e]}),delete t.pageLevel,delete t.result,t})}),t};axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.helpers={failureSummary:An,incompleteFallbackMessage:Cn,processAggregate:kn};var Nn=/\$\{\s?data\s?\}/g;function Rn(e,t){if("string"==typeof t)return e.replace(Nn,t);for(var r in t){var a;t.hasOwnProperty(r)&&(a=new RegExp("\\${\\s?data\\."+r+"\\s?}","g"),r=void 0===t[r]?"":String(t[r]),e=e.replace(a,r))}return e}var Tn=function e(t,r){if(t){if(Array.isArray(r))return r.values=r.join(", "),"string"!=typeof t.singular||"string"!=typeof t.plural?Rn(t,r):Rn(1===r.length?t.singular:t.plural,r);if("string"==typeof t)return Rn(t,r);if("string"==typeof r)return Rn(t[r],r);var a=t.default||Cn();return e(a=r&&r.messageKey&&t[r.messageKey]?t[r.messageKey]:a,r)}};var _n=function(e,t,r){var a=axe._audit.data.checks[e];if(!a)throw new Error("Cannot get message for unknown check: ".concat(e,"."));if(!a.messages[t])throw new Error('Check "'.concat(e,'"" does not have a "').concat(t,'" message.'));return Tn(a.messages[t],r)};var On=function(e,t,r){var a=((r.rules&&r.rules[t]||{}).checks||{})[e.id],n=(r.checks||{})[e.id],t=e.enabled,e=e.options;return n&&(n.hasOwnProperty("enabled")&&(t=n.enabled),n.hasOwnProperty("options")&&(e=n.options)),a&&(a.hasOwnProperty("enabled")&&(t=a.enabled),a.hasOwnProperty("options")&&(e=a.options)),{enabled:t,options:e,absolutePaths:r.absolutePaths}};function Sn(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:null,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:window;return e&&"object"===Gu(e)?e:"object"!==Gu(t)?{}:{testEngine:{name:"axe-core",version:axe.version},testRunner:{name:axe._audit.brand},testEnvironment:function(e){if(!e.navigator||"object"!==Gu(e.navigator))return{};var t=e.navigator,r=e.innerHeight,a=e.innerWidth,n=function(e){e=e.screen;return e.orientation||e.msOrientation||e.mozOrientation}(e)||{},e=n.angle,n=n.type;return{userAgent:t.userAgent,windowWidth:a,windowHeight:r,orientationAngle:e,orientationType:n}}(t),timestamp:(new Date).toISOString(),url:null===(t=t.location)||void 0===t?void 0:t.href}}function In(e,t){var r=t.focusable,t=t.page;return{node:e,include:[],exclude:[],initiator:!1,focusable:r&&function(e){e=e.getAttribute("tabindex");if(!e)return!0;e=parseInt(e,10);return isNaN(e)||0<=e}(e),size:function(e){var t=parseInt(e.getAttribute("width"),10),r=parseInt(e.getAttribute("height"),10);(isNaN(t)||isNaN(r))&&(e=e.getBoundingClientRect(),t=isNaN(t)?e.width:t,r=isNaN(r)?e.height:r);return{width:t,height:r}}(e),page:t}}function Pn(e,t){for(var r,a,n=[],o=0,i=e[t].length;o<i;o++){if("string"==typeof(r=e[t][o])){a=Array.from(document.querySelectorAll(r)),n=n.concat(a.map(function(e){return Dr(e)}));break}!r||!r.length||r instanceof window.Node?r instanceof window.Node&&(r.documentElement instanceof window.Node?n.push(e.flatTree[0]):n.push(Dr(r))):1<r.length?function(r,a,n){r.frames=r.frames||[];var e=n.shift(),e=document.querySelectorAll(e);Array.from(e).forEach(function(t){var e;r.frames.forEach(function(e){e.node===t&&e[a].push(n)}),r.frames.find(function(e){return e.node===t})||(e=In(t,r),n&&e[a].push(n),r.frames.push(e))})}(e,t,r):(a=Array.from(document.querySelectorAll(r[0])),n=n.concat(a.map(function(e){return Dr(e)})))}return n.filter(function(e){return e})}function Bn(e,t){var r=this;e=Ar(e),this.frames=[],this.page="boolean"==typeof(null===e||void 0===e?void 0:e.page)?e.page:void 0,this.initiator="boolean"!=typeof(null===e||void 0===e?void 0:e.initiator)||e.initiator,this.focusable="boolean"!=typeof(null===e||void 0===e?void 0:e.focusable)||e.focusable,this.size="object"===Gu(null===e||void 0===e?void 0:e.size)?e.size:{},e=function(e){if(e&&"object"===Gu(e)||e instanceof window.NodeList){if(e instanceof window.Node)return{include:[e],exclude:[]};if(e.hasOwnProperty("include")||e.hasOwnProperty("exclude"))return{include:e.include&&+e.include.length?e.include:[document],exclude:e.exclude||[]};if(e.length===+e.length)return{include:e,exclude:[]}}return"string"==typeof e?{include:[e],exclude:[]}:{include:[document],exclude:[]}}(e),this.flatTree=null!=t?t:xn(function(e){for(var t=e.include,e=e.exclude,r=Array.from(t).concat(Array.from(e)),a=0;a<r.length;++a){var n=r[a];if(n instanceof window.Element)return n.ownerDocument.documentElement;if(n instanceof window.Document)return n.documentElement}return document.documentElement}(e)),this.exclude=e.exclude,this.include=e.include,this.include=Pn(this,"include"),this.exclude=Pn(this,"exclude"),Ro("frame, iframe",this).forEach(function(e){var t;Yn(e,r)&&(t=r,e=e.actualNode,$n(e)||Gr(t.frames,"node",e)||t.frames.push(In(e,t)))}),void 0===this.page&&(this.page=1===(a=(a=this).include).length&&a[0].actualNode===document.documentElement,this.frames.forEach(function(e){e.page=r.page}));var a=function(e){if(0===e.include.length){if(0===e.frames.length){var t=Vr.isInFrame()?"frame":"page";return new Error("No elements found for include in "+t+" Context")}e.frames.forEach(function(e,t){if(0===e.include.length)return new Error("No elements found for include in Context of frame "+t)})}}(this);if(a instanceof Error)throw a;Array.isArray(this.include)||(this.include=Array.from(this.include)),this.include.sort(Qn)}function Ln(e){return new Bn(e).frames.map(function(e){var t=e.node,e=m1(e,Xu);return e.initiator=!1,{frameSelector:gr(t),frameContext:e}})}var Mn=function(t){var e=axe._audit.rules.find(function(e){return e.id===t});if(!e)throw new Error("Cannot find rule by id: ".concat(t));return e};var qn=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,r=e.scrollWidth>e.clientWidth+t,a=e.scrollHeight>e.clientHeight+t;if(r||a){var n=window.getComputedStyle(e),t=n.getPropertyValue("overflow-x"),n=n.getPropertyValue("overflow-y");return r&&("visible"!==t&&"hidden"!==t)||a&&("visible"!==n&&"hidden"!==n)?{elm:e,top:e.scrollTop,left:e.scrollLeft}:void 0}};var jn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:window,t=e.document.documentElement;return[void 0!==e.pageXOffset?{elm:e,top:e.pageYOffset,left:e.pageXOffset}:{elm:t,top:t.scrollTop,left:t.scrollLeft}].concat(function a(e){return Array.from(e.children||e.childNodes||[]).reduce(function(e,t){var r=qn(t);return r&&e.push(r),e.concat(a(t))},[])}(document.body))};function Un(){return Ar(on)}var Vn,Hn=function(l){if(!l)throw new Error("axe.utils.getStyleSheetFactory should be invoked with an argument");return function(e){var t=e.data,r=e.isCrossOrigin,a=void 0!==r&&r,n=e.shadowId,o=e.root,i=e.priority,r=e.isLink,e=void 0!==r&&r,r=l.createElement("style");return e?(e=l.createTextNode('@import "'.concat(t.href,'"')),r.appendChild(e)):r.appendChild(l.createTextNode(t)),l.head.appendChild(r),{sheet:r.sheet,isCrossOrigin:a,shadowId:n,root:o,priority:i}}};var zn=function(e){if(Vn&&Vn.parentNode)return void 0===Vn.styleSheet?Vn.appendChild(document.createTextNode(e)):Vn.styleSheet.cssText+=e,Vn;if(e){var t=document.head||document.getElementsByTagName("head")[0];return(Vn=document.createElement("style")).type="text/css",void 0===Vn.styleSheet?Vn.appendChild(document.createTextNode(e)):Vn.styleSheet.cssText=e,t.appendChild(Vn),Vn}};var $n=function e(t,r){var a=Dr(t);if(9===t.nodeType)return!1;if(11===t.nodeType&&(t=t.host),a&&null!==a._isHidden)return a._isHidden;var n=window.getComputedStyle(t,null);if(!n||!t.parentNode||"none"===n.getPropertyValue("display")||!r&&"hidden"===n.getPropertyValue("visibility")||"true"===t.getAttribute("aria-hidden"))return!0;t=e(t.assignedSlot||t.parentNode,!0);return a&&(a._isHidden=t),t};var Wn=function(e){var t=null!==(t=null===(t=e.props)||void 0===t?void 0:t.nodeName)&&void 0!==t?t:e.nodeName.toLowerCase();return"http://www.w3.org/2000/svg"!==e.namespaceURI&&!!on.htmlElms[t]};function Gn(e){return e.sort(function(e,t){return Jr(e,t)?1:-1})[0]}var Yn=function(t,e){var r=e.include&&Gn(e.include.filter(function(e){return Jr(e,t)}));return!!(!(e=e.exclude&&Gn(e.exclude.filter(function(e){return Jr(e,t)})))&&r||e&&Jr(e,r))};var Kn=function(e,a){return e.length===a.length&&e.every(function(e,t){var r=a[t];return Array.isArray(e)?e.length===r.length&&e.every(function(e,t){return r[t]===e}):e===r})},Xn=c(ze());axe._memoizedFns=[];var Jn=function(e){return e=Xn.default(e),axe._memoizedFns.push(e),e};var Qn=function(e,t){return(e=e.actualNode||e)===(t=t.actualNode||t)?0:4&e.compareDocumentPosition(t)?-1:1};var Zn=function(e,a,n,o){var t=4<arguments.length&&void 0!==arguments[4]&&arguments[4],r=Array.from(e.cssRules);if(!r)return Promise.resolve();var i=r.filter(function(e){return 3===e.type});return i.length?(i=i.filter(function(e){return e.href}).map(function(e){return e.href}).filter(function(e){return!o.includes(e)}).map(function(e,t){var r=[].concat(h1(n),[t]),t=/^https?:\/\/|^\/\//i.test(e);return ao(e,a,r,o,t)}),(r=r.filter(function(e){return 3!==e.type})).length&&i.push(Promise.resolve(a.convertDataToStylesheet({data:r.map(function(e){return e.cssText}).join(),isCrossOrigin:t,priority:n,root:a.rootNode,shadowId:a.shadowId}))),Promise.all(i)):Promise.resolve({isCrossOrigin:t,priority:n,root:a.rootNode,shadowId:a.shadowId,sheet:e})};var eo=function(e,t,r,a){var n=4<arguments.length&&void 0!==arguments[4]&&arguments[4];return function(e){try{return!e.cssRules&&e.href?!1:!0}catch(e){return!1}}(e)?Zn(e,t,r,a,n):ao(e.href,t,r,a,!0)};var to,ro,ao=function(e,t,r,a,n){return a.push(e),new Promise(function(t,r){var a=new XMLHttpRequest;a.open("GET",e),a.timeout=Je.preload.timeout,a.addEventListener("error",r),a.addEventListener("timeout",r),a.addEventListener("loadend",function(e){return e.loaded&&a.responseText?t(a.responseText):void r(a.responseText)}),a.send()}).then(function(e){e=t.convertDataToStylesheet({data:e,isCrossOrigin:n,priority:r,root:t.rootNode,shadowId:t.shadowId});return eo(e.sheet,t,r,a,e.isCrossOrigin)})};function no(){if(window.performance&&window.performance)return window.performance.now()}var oo,io,lo=(to=null,ro=no(),{start:function(){this.mark("mark_axe_start")},end:function(){this.mark("mark_axe_end"),this.measure("axe","mark_axe_start","mark_axe_end"),this.logMeasures("axe")},auditStart:function(){this.mark("mark_audit_start")},auditEnd:function(){this.mark("mark_audit_end"),this.measure("audit_start_to_end","mark_audit_start","mark_audit_end"),this.logMeasures()},mark:function(e){window.performance&&void 0!==window.performance.mark&&window.performance.mark(e)},measure:function(e,t,r){window.performance&&void 0!==window.performance.measure&&window.performance.measure(e,t,r)},logMeasures:function(e){function t(e){Qe("Measure "+e.name+" took "+e.duration+"ms")}if(window.performance&&void 0!==window.performance.getEntriesByType)for(var r=window.performance.getEntriesByName("mark_axe_start")[0],a=window.performance.getEntriesByType("measure").filter(function(e){return e.startTime>=r.startTime}),n=0;n<a.length;++n){var o=a[n];if(o.name===e)return void t(o);t(o)}},timeElapsed:function(){return no()-ro},reset:function(){to=to||no(),ro=no()}});function so(){if(document.elementsFromPoint)return document.elementsFromPoint;if(document.msElementsFromPoint)return document.msElementsFromPoint;var e,e=((e=document.createElement("x")).style.cssText="pointer-events:auto","auto"===e.style.pointerEvents),l=e?"pointer-events":"visibility",s=e?"none":"hidden",u=document.createElement("style");return u.innerHTML=e?"* { pointer-events: all }":"* { visibility: visible }",function(e,t){var r,a,n,o=[],i=[];for(document.head.appendChild(u);(r=document.elementFromPoint(e,t))&&-1===o.indexOf(r);)o.push(r),i.push({value:r.style.getPropertyValue(l),priority:r.style.getPropertyPriority(l)}),r.style.setProperty(l,s,"important");for(o.indexOf(document.documentElement)<o.length-1&&(o.splice(o.indexOf(document.documentElement),1),o.push(document.documentElement)),a=i.length;n=i[--a];)o[a].style.setProperty(l,n.value||"",n.priority);return document.head.removeChild(u),o}}function uo(e){return"function"==typeof e||"[object Function]"===oo.call(e)}function co(e){return e=function(e){e=Number(e);return isNaN(e)?0:0!==e&&isFinite(e)?(0<e?1:-1)*Math.floor(Math.abs(e)):e}(e),Math.min(Math.max(e,0),io)}"function"!=typeof Object.assign&&(Object.assign=function(e){if(null==e)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),r=1;r<arguments.length;r++){var a=arguments[r];if(null!=a)for(var n in a)a.hasOwnProperty(n)&&(t[n]=a[n])}return t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var t,r=Object(this),a=r.length>>>0,n=arguments[1],o=0;o<a;o++)if(t=r[o],e.call(n,t,o,r))return t}}),Array.prototype.findIndex||Object.defineProperty(Array.prototype,"findIndex",{value:function(e,t){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var r,a=Object(this),n=a.length>>>0,o=0;o<n;o++)if(r=a[o],e.call(t,r,o,a))return o;return-1}}),"function"==typeof window.addEventListener&&(document.elementsFromPoint=so()),Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e){var t=Object(this),r=parseInt(t.length,10)||0;if(0===r)return!1;var a,n,o=parseInt(arguments[1],10)||0;for(0<=o?a=o:(a=r+o)<0&&(a=0);a<r;){if(e===(n=t[a])||e!=e&&n!=n)return!0;a++}return!1}}),Array.prototype.some||Object.defineProperty(Array.prototype,"some",{value:function(e){if(null==this)throw new TypeError("Array.prototype.some called on null or undefined");if("function"!=typeof e)throw new TypeError;for(var t=Object(this),r=t.length>>>0,a=2<=arguments.length?arguments[1]:void 0,n=0;n<r;n++)if(n in t&&e.call(a,t[n],n,t))return!0;return!1}}),Array.from||Object.defineProperty(Array,"from",{value:(oo=Object.prototype.toString,io=Math.pow(2,53)-1,function(e){var t=Object(e);if(null==e)throw new TypeError("Array.from requires an array-like object - not null or undefined");var r,a=1<arguments.length?arguments[1]:void 0;if(void 0!==a){if(!uo(a))throw new TypeError("Array.from: when provided, the second argument must be a function");2<arguments.length&&(r=arguments[2])}for(var n,o=co(t.length),i=uo(this)?Object(new this(o)):new Array(o),l=0;l<o;)n=t[l],i[l]=a?void 0===r?a(n,l):a.call(r,n,l):n,l+=1;return i.length=o,i})}),String.prototype.includes||(String.prototype.includes=function(e,t){return!((t="number"!=typeof t?0:t)+e.length>this.length)&&-1!==this.indexOf(e,t)}),Array.prototype.flat||Object.defineProperty(Array.prototype,"flat",{configurable:!0,value:function r(){var a=isNaN(arguments[0])?1:Number(arguments[0]);return a?Array.prototype.reduce.call(this,function(e,t){return Array.isArray(t)?e.push.apply(e,r.call(t,a-1)):e.push(t),e},[]):Array.prototype.slice.call(this)},writable:!0});var po=function(e,t){return e.concat(t).filter(function(e,t,r){return r.indexOf(e)===t})};function fo(e,t,r,a,n){n=n||{};return n.vNodes=e,n.vNodesIndex=0,n.anyLevel=t,n.thisLevel=r,n.parentShadowId=a,n}var mo=[];var ho=function(e,t,r){return function(e,t,r){for(var a=[],n=fo(Array.isArray(e)?e:[e],t,null,e[0].shadowId,mo.pop()),o=[];n.vNodesIndex<n.vNodes.length;){for(var i,l=n.vNodes[n.vNodesIndex++],s=null,u=null,c=((null===(i=n.anyLevel)||void 0===i?void 0:i.length)||0)+((null===(i=n.thisLevel)||void 0===i?void 0:i.length)||0),d=!1,p=0;p<c;p++){var f,m=p<((null===(m=n.anyLevel)||void 0===m?void 0:m.length)||0)?n.anyLevel[p]:n.thisLevel[p-((null===(h=n.anyLevel)||void 0===h?void 0:h.length)||0)];if((!m[0].id||l.shadowId===n.parentShadowId)&&Sr(l,m[0]))if(1===m.length)d||r&&!r(l)||(o.push(l),d=!0);else{var h=m.slice(1);if(!1===[" ",">"].includes(h[0].combinator))throw new Error("axe.utils.querySelectorAll does not support the combinator: "+m[1].combinator);(">"===h[0].combinator?s=s||[]:u=u||[]).push(h)}m[0].id&&l.shadowId!==n.parentShadowId||null===(f=n.anyLevel)||void 0===f||!f.includes(m)||(u=u||[]).push(m)}for(l.children&&l.children.length&&(a.push(n),n=fo(l.children,u,s,l.shadowId,mo.pop()));n.vNodesIndex===n.vNodes.length&&a.length;)mo.push(n),n=a.pop()}return o}(e=Array.isArray(e)?e:[e],Or(t),r)};var go=function(e){var t,e=void 0===(r=e.treeRoot)?axe._tree[0]:r;if(!(e=(t=[],r=ho(r=e,"*",function(e){return!t.includes(e.shadowId)&&(t.push(e.shadowId),!0)}).map(function(e){return{shadowId:e.shadowId,rootNode:aa(e.actualNode)}}),po(r,[]))).length)return Promise.resolve();var l,s,r=document.implementation.createHTMLDocument("Dynamic document for loading cssom"),r=Hn(r);return l=r,s=[],e.forEach(function(e,t){var r=e.rootNode,a=e.shadowId,e=function(e,t,r){e=11===e.nodeType&&t?function(a,n){return Array.from(a.children).filter(vo).reduce(function(e,t){var r=t.nodeName.toUpperCase(),t="STYLE"===r?t.textContent:t,r=n({data:t,isLink:"LINK"===r,root:a});return e.push(r.sheet),e},[])}(e,r):function(e){return Array.from(e.styleSheets).filter(function(e){return bo(e.media.mediaText)})}(e);return function(e){var t=[];return e.filter(function(e){return!e.href||!t.includes(e.href)&&(t.push(e.href),!0)})}(e)}(r,a,l);if(!e)return Promise.all(s);var n=t+1,o={rootNode:r,shadowId:a,convertDataToStylesheet:l,rootIndex:n},i=[],e=Promise.all(e.map(function(e,t){return eo(e,o,[n,t],i)}));s.push(e)}),Promise.all(s).then(function r(e){return e.reduce(function(e,t){return Array.isArray(t)?e.concat(r(t)):e.concat(t)},[])})};function vo(e){var t=e.nodeName.toUpperCase(),r=e.getAttribute("href"),a=e.getAttribute("rel"),a="LINK"===t&&r&&a&&e.rel.toUpperCase().includes("STYLESHEET");return"STYLE"===t||a&&bo(e.media)}function bo(e){return!e||!e.toUpperCase().includes("PRINT")}var yo=function(e){return e=void 0===(e=e.treeRoot)?axe._tree[0]:e,e=ho(e,"video, audio",function(e){e=e.actualNode;return e.hasAttribute("src")?!!e.getAttribute("src"):!(Array.from(e.getElementsByTagName("source")).filter(function(e){return!!e.getAttribute("src")}).length<=0)}),Promise.all(e.map(function(e){var r,e=e.actualNode;return r=e,new Promise(function(t){0<r.readyState&&t(r),r.addEventListener("loadedmetadata",function e(){r.removeEventListener("loadedmetadata",e),t(r)})})}))};function Do(e){return!e||void 0===e.preload||null===e.preload||("boolean"==typeof e.preload?e.preload:(e=e.preload,"object"===Gu(e)&&Array.isArray(e.assets)))}function wo(e){var t=Je.preload,r=t.assets,t=t.timeout,t={assets:r,timeout:t};if(!e.preload)return t;if("boolean"==typeof e.preload)return t;if(!e.preload.assets.every(function(e){return r.includes(e.toLowerCase())}))throw new Error("Requested assets, not supported. Supported assets are: ".concat(r.join(", "),"."));return t.assets=po(e.preload.assets.map(function(e){return e.toLowerCase()}),[]),e.preload.timeout&&"number"==typeof e.preload.timeout&&!isNaN(e.preload.timeout)&&(t.timeout=e.preload.timeout),t}var xo=function(o){var i={cssom:go,media:yo};return Do(o)?new Promise(function(t,r){var e=wo(o),a=e.assets,e=e.timeout,n=setTimeout(function(){return r(new Error("Preload assets timed out."))},e);Promise.all(a.map(function(a){return i[a](o).then(function(e){return r=e,(t=a)in(e={})?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e;var t,r})})).then(function(e){e=e.reduce(function(e,t){return v1({},e,t)},{});clearTimeout(n),t(e)}).catch(function(e){clearTimeout(n),r(e)})}):Promise.resolve()};function Eo(a,n,o){return function(e){var t=a[e.id]||{},r=t.messages||{},t=Object.assign({},t);delete t.messages,o.reviewOnFail||void 0!==e.result?t.message=e.result===n?r.pass:r.fail:("object"!==Gu(r.incomplete)||Array.isArray(e.data)||(t.message=function(t,r){function a(e){return e.incomplete&&e.incomplete.default?e.incomplete.default:Cn()}if(!t||!t.missingData)return t&&t.messageKey?r.incomplete[t.messageKey]:a(r);try{var e=r.incomplete[t.missingData[0].reason];if(!e)throw new Error;return e}catch(e){return"string"==typeof t.missingData?r.incomplete[t.missingData]:a(r)}}(e.data,r)),t.message||(t.message=r.incomplete)),"function"!=typeof t.message&&(t.message=Tn(t.message,e.data)),Zr(e,t)}}var Ao=function(e){var t=axe._audit.data.checks||{},r=axe._audit.data.rules||{},a=Gr(axe._audit.rules,"id",e.id)||{};e.tags=Ar(a.tags||[]);var n=Eo(t,!0,a),o=Eo(t,!1,a);e.nodes.forEach(function(e){e.any.forEach(n),e.all.forEach(n),e.none.forEach(o)}),Zr(e,Ar(r[e.id]||{}))};var Co=function(e,t){return ho(e,t)};function Fo(t,e){var r,a=axe._audit&&axe._audit.tagExclude?axe._audit.tagExclude:[],n=e.hasOwnProperty("include")||e.hasOwnProperty("exclude")?(r=e.include||[],r=Array.isArray(r)?r:[r],n=e.exclude||[],(n=Array.isArray(n)?n:[n]).concat(a.filter(function(e){return-1===r.indexOf(e)}))):(r=Array.isArray(e)?e:[e],a.filter(function(e){return-1===r.indexOf(e)}));return!!(r.some(function(e){return-1!==t.tags.indexOf(e)})||0===r.length&&!1!==t.enabled)&&n.every(function(e){return-1===t.tags.indexOf(e)})}var ko=function(e,t,r){var a=r.runOnly||{},r=(r.rules||{})[e.id];return!(e.pageLevel&&!t.page)&&("rule"===a.type?-1!==a.values.indexOf(e.id):r&&"boolean"==typeof r.enabled?r.enabled:"tag"===a.type&&a.values?Fo(e,a.values):Fo(e,[]))};var No=function t(n,o){if(!o)return n;var i=n.cloneNode(!1),e=i.outerHTML,r=er(i);return yr.get(e)?i=yr.get(e):r&&(i=document.createElement(i.nodeName),Array.from(r).forEach(function(e){var t,r,a;t=n,r=e.name,void 0!==(a=o)[r]&&(!0===a[r]||tr(t,a[r]))||i.setAttribute(e.name,e.value)}),yr.set(e,i)),Array.from(n.childNodes).forEach(function(e){i.appendChild(t(e,o))}),i};var Ro=function(e,t){var r,a=[];if(axe._selectCache)for(var n=0,o=axe._selectCache.length;n<o;n++){var i=axe._selectCache[n];if(i.selector===e)return i.result}function l(e){return Yn(e,s)}for(var s,u=(s=t).include.reduce(function(e,t){return e.length&&Jr(e[e.length-1],t)||e.push(t),e},[]),c=0;c<u.length;c++)r=u[c],a=function(e,t){var r;if(0===e.length)return t;e.length<t.length&&(r=e,e=t,t=r);for(var a=0,n=t.length;a<n;a++)e.includes(t[a])||e.push(t[a]);return e}(a,ho(r,e,l));return axe._selectCache&&axe._selectCache.push({selector:e,result:a}),a};var To=function(e){e.forEach(function(e){return function(e,t,r){if(e===window)return e.scroll(r,t);e.scrollTop=t,e.scrollLeft=r}(e.elm,e.top,e.left)})};function _o(e){return function e(t,r){var a=t.shift();a=a?r.querySelector(a):null;if(0===t.length)return a;if(null==a||!a.shadowRoot)return null;return e(t,a.shadowRoot)}(Array.isArray(e)?h1(e):[e],document)}var Oo=function(e){return(e||"").trim().replace(/\s{2,}/g," ").split(" ")};var So=function(){return["hidden","text","search","tel","url","email","password","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]},Io=[,[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,,,,,1,1,1,1,,,1,1,1,,1,,1,,1,1],[1,1,1,,1,1,,1,1,1,,1,,,1,1,1,,,1,1,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,,,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1],[,1,,,,,,1,,1,,,,,1,,1,,,,1,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,,,1,,,,,1,1,1,,1,,1,,1,,,,,,1],[1,,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,,1,,1,,,,,1,,1,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,,1,1,1,,1,,1,1,1,,,1,1,1,1,1,1,1,1],[,,1,,,1,,1,,,,1,1,1,,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1,1,1,1,1,,,1,1,1],[1,1,1,1,1,,,1,,,1,,,1,1,1,,,,,1,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1],[,1,,1,1,1,,1,1,,1,,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,,,1,1,1,,,1,1,,,,,,1,1],[1,1,1,,,,,1,,,,1,1,,1,,,,,,1,,,,,1],[,1,,,1,,,1,,,,,,1],[,1,,1,,,,1,,,,1],[1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,,1,,,1,1,1,1],[,1,1,1,1,1,,,1,,,1,,1,1,,1,,1,,,,,1,,1],[,1,,,,1,,,1,1,,1,,1,1,1,1,,1,1,,,1,,,1],[,1,1,,,,,,1,,,,1,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,,1,1,1,,,1,1,1,1,1,1,,1,,,,,1,1,,1,,1],[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,1,1],[,1,1,1,,,,1,1,1,,1,1,,,1,1,,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,,1,,,,,1,1,1,,,1,,1,,,1,1],[,,,,1,,,,,,,,,,,,,,,,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,,1,1,1,,1,1,,,,1,1,1,1,1,,,1,1,1,,,,,1],[1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,1,,,,,,,1],[,1,1,,1,1,,1,,,,,,,,,,,,,1],,[1,1,1,,,,,,,,,,,,,1],[,,,,,,,,1,,,1,,,1,1,,,,,1]],[,[1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,,1],[,,,1,,,,,,,,,,,,,,,1],[,1,,,1,1,,1,,1,1,,,,1,1,,,1,1,,,,1],[1,,,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,,,,1],,[,1,1,1,1,1,,1,1,1,,1,1,,1,1,,,1,1,1,1,,1,1,,1],[,1,,,1,,,1,,1,,,1,1,1,1,,,1,1,,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,,,1,1,1,1,1,1,1,,,1,,,1,,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,,,,1],[,,,,,,,1,,,,1,,1,1],[,1,1,1,1,1,1,1,,,,1,1,1,1,1,,,1,1,,1,1,1,1,1],[,1,,,1,1,,1,,1,1,1,,,1,1,,,1,,1,1,1,1,,1],[,1,1,1,,1,1,,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1],[,,,,,,,,,,,,,,,,1],,[,1,1,1,1,1,,1,1,1,,,1,,1,1,,1,1,1,1,1,,1,,1],[,,1,,,1,,,1,1,,,1,,1,1,,1],[,1,1,,1,,,,1,1,,1,,1,1,1,1,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,1,,1,,1,1],,[,1,1,,1,,,1,,1,,,,1,1,1,,,,,,1,,,,1],[1,1,,,1,1,,1,,,,,1,,1]],[,[,1],[,,,1,,,,1,,,,1,,,,1,,,1,,,1],[,,,,,,,,,,,,,,,,,,1,1,,,,,,1],,[1,,,,,1],[,1,,,,1,,,,1],[,1,,,,,,,,,,,1,,,1,,,,,,,,,1,1],[,,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,1,,1],[,1],[,1,,1,,1,,1,,1,,1,1,1,,1,1,,1,,,,,,,1],[1,,,,,1,,,1,1,,1,,1,,1,1,,,,,1,,,1],[,1,1,,,1,,1,,1,,1,,1,1,1,1,,,1,,1,,1,1,1],[1,1,1,1,1,,1,,1,,,,1,1,1,1,,1,1,,,1,1,1,1],[1,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],,[,1,,,,,,1,1,1,,1,,,,1,,,1,1,1,,,1],[1,,,,,1,,1,1,1,,1,1,1,1,1,,1,,1,,1,,,1,1],[1,,1,1,,,,,1,,,,,,1,1,,,1,1,1,1,,,1,,1],[1,,,,,,,,,,,,,,,,,1],[,,,,,1,,,1,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,,,1],[,1,,,,1]],[,[1,1,1,,1,,1,1,1,1,1,1,1,1,1,,1,,1,,1,1,,,1,1,1],[,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],,[,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1],,[1,1,,,,1,1,,,,,,1,,,,1,,1,,1,1,,1],[1],[,,,,,,,,,,,1,,,,,,,,,,,1],[,1,,,,,,,1,1,,,1,,1,,,,1,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,,1],[,,1,,,,,1,,1],[1,,,,1,,,,,1,,,,1,1,,,,1,1,,,,,1],[,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[1,,,1,1,,,,,,,1,,1,,1,1,1,1,1,1],[,,,,,1,,,,,,,1,,,,,,,1],,[,,1,1,1,1,1,,1,1,1,,,1,1,,,1,1,,1,1,1,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,,,,1],,[1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,,,1,1,1,1,,,,,,1,,1,,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,,,,1,,1,,,1,1,1,1,1],[,,,,,,,,,,,1,,,,,,,,,1,,,,1],[,1,1,,1,1,,1,,,,1,1,,1,1,,,1,,1,1,,1],[,1,,1,,1,,,1,,,1,1,,1,1,,,1,1,1],[,1,1,1,1,1,,1,1,,,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,,,,,,,,,1,,1,,1,1,,,,1,,,1],[,1,,,1,1,,,,,,,,,1,1,1,,,,,1],[1,,,1,1,,,,1,1,1,1,1,,,1,,,1,,,1,,1,,1],[,1,1,,1,1,,1,1,,,,1,1,1,,,1,1,,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,,,,1,,,,,,,,,1],[,1,,,,,,,,1,,,,,1,,,,1,,,1],[,1,1,1,1,,,1,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1],[,,,,,1,,1,,,,,1,1,1,1,1,,,1,,,,1],[,1,,,,,,,,1,,,,,,,,,,,,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,1,,,,1,,1,1,1,1,1,,1,1,,,,,,1],[,1,1,1,1,1,1,1,,1,1,,,1,1,,,,1,,1,1,,1,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,1,1,,1,,,1,1,1,1,,,1,,,,,,,1],[,1,,,,,,,,1,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1],[,1,1,,,,,,,,,,,,1,1,,,,,,1],[,1,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,,,,,1],[1,1,,,1,,,1,1,1,,,,1],,[,,,,,,,,,,,,,1,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,1,,,,,,,1],[1,1,1,,1,,1,1,1,1,1,1,1,1,,1,,,1,,1,,,1,1],[,,,,,,,,,1],[,1,,,,1,,,,,,1,,,1,,,,,1],[,1,1,,1,1,,,,,,,,,,,,,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,1,1,1,,,,1,1,,,,1,,1],[1,1,1,1,1,1,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,,1,1],[,,,,,,,,,,,,,,,1,,,,1],,[1,1,,1,,1,,,,,,1,,1,,1,1,,1,,1,1,,1,1,,1],[,,1,,,,,,1,,,,1,,1,,,,,1],[1,,,,,,,,,1,,,,,,1,,,,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,,1,,,,,,1,,,1,,,,,,,,1],[,1,,1,,,,,,,,,,,,1],,[1,1,,,,,,,,,,,,,,,,,,,,,,1,1],[1]],[,[1,,,,,,,,,1,,,,,1,,1,,1],[,1,1,,1,1,,1,1,1,,,1,1,1,,,,1,,,1,,,,1],[,1,,,,,,,1,,,,1,,,,,,1],[1,1,1,1,1,1,,,,1,,,,,,,,,1,1,1,1],[1],[,1,1,,,1,1,,,,,1,,1,,,,,,,,1,,,,1],[1,,1,,,1,,1,,,,,1,1,1,1,,,,1,,,,1],[,,1,,,,,,,1,,,,,,,1,,,,,,,1],[1,,,,,,,,,,,,,,1,,,,1],[,,,1,,1,,,,,1,,,,1,1,,,,1],[1,,,,,1,,,,1,,1,1,,,1,1,,1,1,1,,1,1,1,,1],[,1,1,,,,,1,,1,,1,1,1,,1,1,,,1,,1,1,1],[,1,,,,1,,,,1,,,1,,1,1,,,1,1,,,,,,1],[1,,1,1,,1,,1,1,,1,,1,1,1,1,1,,,1,1,,,,,,1],[1,,,,,,,,,,,,,,,,,,1,,,1,,1],[,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,,1,,1],[,1,,,,1,,,1,1,,1,,,1,1,,,1,,,1,,,1,1],[1,1,,1,1,1,,1,1,1,,1,,1,1,1,,,1,,1,1],[1,,1,1,1,1,,,,1,,1,1,1,,1,,,1,1,1,,1,1,1,1,1],[1,,,,,,,,,,,,,1],[,,1,,,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,,,1,,1,,1,,,,1],[,,,1,,,,,,,,,1],[,1,,,,,,,,,,,,,,1,,,,,,,,,1],[,,,,,,,,1,1,,,,,,,,,1,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,,,1,1,1],[,,,,,1,,,,1,1,1,,,1,1,,,1,,1,1,,1],[,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,1,,,,,,,,,,,,,1],[,,1,,,1,,1,1,1,,1,1,,1,,,,1,,1,1],,[,,1,,,1,,,,,,1,,,,1],[,,,,,,,,,1,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,,1,1,,1,,1,,,1,1,1,,,1],[,,,,,1,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,1,,1,1,,1,,,1],[,,,,,1,,,,,,,,,,,,,,1],[,1,1,1,1,,,,,1,,,1,,1,,,,1,1,,,,1,1],[,1,,,1,,,1,,1,1,,1,,,,,,,1],[,,1,,1,,,1,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,,,,,,,,,,1,,1,1],[,,,,,,,,,,,,1],,[,1,1,1,1,,,,1,1,,1,1,1,1,1,1,,1,1,1,1,,1,,1],[1,,,,1,,,,,,,,,,1],[1,,,,,,,,,1],,[,1,,,,1,,,,,,,,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,,1,,,,1,1,,,1,1,,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,1],[1,1,1,,,,,1,1,1,,1,1,1,1,,,1,1,,1,1,,,,,1],[,1,,,,,,,1,1,,,1,1,1,,1,,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,,,1,,,,1,,,1,,,,1,,,,,,,1,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1],[1,1,1,,1,,,1,1,1,1,,1,1,1,1,,,,1,,1,,1,,,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,,1,1,,,,,,,,,1],,[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,,1,,1,,,,1],[,1,,,1,1,,1,1,1,,,1,1,1,1,1,,1,1,1,,1,,,1],[1,,,1,,,,1,1,1,,,,,1,1,,,,1,,1],[1,1,,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,,1,,1,,,,,,,,1,,1],[,1,,,,1,,1,1,,,,1,1,,1,,,,1,1,1,,1],,[,1,,,,,,1,,,,,,,1],[,,,,,,,,1,,,,1,,1,,,,,,,,,,,,1]],[,[,1,1,,1,1,1,1,,1,1,1,,1,1,,1,1,,1,1,1,1,1,1,,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,,,1,,,,,,,,1,,,,,,1,,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,,1,,1,1,1,1,1,1,1,,1,1,,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1],[,1,1,,,,,1,1,1,,,1,,1,1,,,,1,,1,,,1,1],[,,,,,,,1,,,,1,1,1,1,1,,1,,,,,,,,1],[1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,,1,,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,1,1,,1,,1,1,1,,1,,1,1,,1,1,,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,,1,,,,,1,,1],[,1,1,1,,1,,1,,1,,,,1,,1,,,1,,,,,,1,1],[,1,,,1,1,,1,,1,,1,1,1,1,1,,1,1,,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,,1,,1,,1,,,,,,1,,1,,,,1,1]],[,[,1,,1,,,,,,,,,,,,,,,1,,,,1],[,,,,,,,,,1,,1,1,1,,1,,,1,,1,1],[1,1,,,,,,,1,,,,,,,1,,,,,,1],[,1,,,,,,,,,,1,,,,,,,,,1,1],,[,,,,,,,,,,,,,,,1,,,,1,,1],[,,1,1,,1,,1,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,,,,,,,,1],[1,,1,1,,,,1,,,,,,,,,1,,,1,,,1,1],[,1,1,,1,1,,1,1,1,1,1,1,1,1,1,,,1,1,,1,1,,1],[,1,,,1,1,,,,,,1,,1,,1,,,1,,1,1],[1,1,1,1,,1,,1,,1,,1,1,,1,1,1,1,1,,1,1,1,1,1],[,1,1,,,1,,1,,1,1,1,,,1,1,1,,1,1,1,1,,1,1],[,,,,1,,,1,,,,,,,1,,,,1,1],[,1,,,,,,,,,,1,,1,,1,,,,,1,,,,,1],,[1,1,,1,,1,,1,1,,,,,,1,1,,,1,1,1,1,1,1,1,1,1],[1,1,,1,,,,,,1,,,,,,1,1,,,,1,1,,,1],[,1,1,,1,1,,,,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,,,1,,,,1,,,,1,1],[,,,,1],[,,,,,,,,,1,,,1],,[,,1,,1,,,,,,,,,1,,,,,,,,,,,,1],[,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,,,1],[,1,,1,,,,,,1,,,,,1,1,,,,,1,1],[,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,,,1,,1,1,1],[,1,,,,1,,,,,,,1],[,1,,,1,,,1,,1,,1,1,,1,,,,,1,,1,,,,1,1],[,1,,,1,,,1,1,1,,1,1,1,1,1,,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,1,1,,,,1,1,,,,,,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,,1,1,,1,1,1,1,1],[,1,,,,1,,,,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,1,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,,1,1,1,,1,1,1,,,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,,,,,,,1,1,,,,,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,1,,1,1,1,1],,[,1,1,,,,,1,,1,,,,1,1,1,,,1,,,,,1],[,,,,,,,,,,,,,1],[,,,,,1,,,,,,,,1,1,,,,,1,,1,,,1,1],[,,,,,,,,,,,,,,1]],[,[,1],,,,,,,,,,,,,,,,,,,,[1,1,1,1,1,,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,1,1,1,1],[,1,,1,,1,,,1,1,1,,1,1,1,1,1,,,1,,,,1,,1,1],[,1,,1,,1,,,1,,,,,1,,,,,,1,1],[,1,,1,,,,,1,,,,1,,1,1,1,1,1,1,1,1,,1],[,1,,,,,,,,,,,,,,,1]],[,[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,,,,,,,,,1,1,,,,1],[,,,,,,1],[,,1],[,1,1,,,1,,1,,1,1,,1,1,1,,,,1,1,1,,,,,1],,[,1,,,,1,,,,,,1,,,1,,,,1,1,,1],[,,,,,,,1,,,,,,,,,1],[,1,,,,1,1,,,,,,1,1,1,,,,1,,1,1],[,,,,,,,1,,1,,,,,,,,,,1],[,1,1,,,,,,1,1,,,,1,,,,,,,1,,,1],,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,,1,,,1,,,,,1,,1,,1,,1,,,,,1],[1,1,1,1,1,1,1,1,,,,,1,1,,1,1,,1,,,1,,1],[,,,,,,,,,,,,,,1,,,,,,1],,[,,,,,,,,,1,,,,,,1,,,,,1],[,,1,,,,,,,1,,,1,1],[,,,1,,,,,1,,,,,1,,,,,,1,,,,1],[1,,1,1,,1,1,1,1,1,,1,,,,1,1,1,,,1,1,,,,1,1],,[1,1,,,,,,,,,,1,,1,,1,,,1],[,,,,1,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,1],[,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,,1,,,1,,,,,,,,1,,,,,,1,,,,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,1,,,,1,1,1,1,1,1,,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,1,,1,1,,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,,1,,1,,1,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,,,,,,1,,1,,,,,1,1,,,,,1],[1,,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,,1,,,,1,1,1,1,1,,,1,1,,1,,1],[,1,1,1,1,,,,,1,,1,1,1,1,1,,,1,1,,,,1,1,1],[,1,1,1,1,1,,1,,,,,1,,1,,1,,,1,,,1,1,,1]],[,[1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,,,,,1,,,,,1,1,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,,,,1,,1,1,,1,1,1,1,1,,,1,,1,,1],[1,1,1,,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,,1,,,,,,,,,,1,1,1,1,1,1,1,,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,1,1,,,,,,1,1,1,1,1,,,,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,,1,1,1],[,1,1,1,,1,,1,1,1,1,,,1,1,1,,1,1,1,1,1,,,1,1],[1,1,,,,1,,,1,1,1,,1,,1,,1,,1,1,1,1,1,,1,,1],[,1,,,,,,,1,,1,,1,1,1,1,,,,,,,,,1]],[,[,,,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,1,,,1,,,,,,1,,,1,,,,1],,[,1,,,,1,,1,,1,1,,1,1,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],[1,1,1,,,1,,,,,,,,,1,1,,,,,,,,,,1],[,1,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1,,,1],[,,,,,,,,,1],[1,1,,,,,,1,1,1,,1,1,,,,1,1,,1,,1,1,1,,1],[,1,1,1,,1,1,,,1,,1,1,1,1,,,,,,,1,,1],[,1,1,1,1,,,1,,1,,,,1,1,1,1,,1,1,,1],[,1,,,1,1,,1,,,,1,,1,1,,1,,1,,,1,,,1,,1],[,,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,,,,,1],,[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1],[,1,,,,,,,1,1,,1,,,,,1,,,1,,1],[,1,,,,1,,,1,,,,,,,,1,,1,,,1],[,,,,,,,,,,,,,1,1,,,,1,,,1],[,,,,,1,,,1,,,,1],[,1],,[,1],[1,,,,,,,,,,,,,,1,,,,,1]],[,[,1,,,,1,1,1,1,1,1,,1,1,1,1,1,,1,1,,1,1,,,1],[,,1,,,,,,,,,1],,,[1,,,1,1,,,,,,,,1,1,,1,1,,1],,[,,,,,,,,,,,,,,,,,,1,,1],,[1,,,1,1,,1,1,,,,,1,,1,,,,,1,1,,1],,[,1,,,,,,,,1,1,1,1,1,,1,1,,,,1,1],[,,,,,,,,,,,,,,,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,,1,1,1,1,1,1],[,,,,,,,,,,,1,,1,,,1],[1,,,,,,,,,,,,,,,,,,1,,1],,,[,1,,,,,,,,,,,,,,1,,,,1,1],[,,,,,,,,,1,,,1,,,,,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,1,1,,,,,,1],,[,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,1,1,,1,1,1,1,1,1,,,1,1,1,1,1,,1,1],[,1,,,,,,,,1],[,,,,1,,,1,,,1,1,,,,,,,,,,1,,,,1],[,1,,1,1,,,1,1,1,,,,1,1,1,1,,1,1,1,1,,1],[,,,,,,,1],[,1,1,,,,,1,,1,,,,,,1,,,,,,1,,1,,1],[,1,,,,,,1,,,,1,,,,,,,,,,1],[,,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1,1,1,1,,1],[,1,,,,,,,,1],[,1,1,,1,,,,,,,,1,,,,,,1,,,1,,1,,1],[,1,,1,,1,,1,1,1,,1,1,1,,1,,,1,1,,1,1,1,1,1],[,1,1,1,1,1,,,1,1,,,,1,1,1,,,,1,1,,,1,1],[,,1,1,1,1,,1,,1,,1,,1,1,1,1,,,,,1,,1,,1],[1,1,1,1,1,1,1,1,,1,,1,,1,1,1,,,1,1,,,,1,,1],[,,,1],,[,1,1,,1,,,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1],[,1,,,,,,1,,1,,1,,,,,,,1,1,,1,1],[,,,,,,1,,1,1,,1,,1,,,,,,,,,,1],[,1,1,,1,,,,1,,,,1,1,1,,,,1,,1,1,1,,1,1],,[,1,1,,,,,,,,,,,,,1,,,1,,,,,1],[,1,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,1,,,,1,,,,,1,,,,,,,1]],[,[,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[,1,1,1,1,1,,1,,1,1,,,1,1,1,1,,1,,,,,1,1,1],[,,1,1,,1,,1,1,,,,1,1,1,1,,,1,,1,1,1,1,,1],[,1,,1,,,,,,,,1,,1,,1,,,,,,,,,,1],[,,1,,1,,,1,,,,,1,1,,,1,,1,1,1,1],[,1],[,1,1,,1,,1,1,,1,,,1,1,1,,,,1,,,1,,1],[1,1,,1,1,1,,,,,,,,,,,,,1,,1,1,1],[,1,1,,,,,,,1,,,1,,1,,1,,1,1,,,1,,,1],[,,1,,,,,,,,,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,,1,,,,,1,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,,1,,1,1,1,,,1,1,1,1,,,,1,1],[,,,1,1,,,1,,1,,1,,1,1,1,1,,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,,1,,1,,,,1,1,,,1,1,,1,1,,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1,,1,1,,,1],[,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,,1,,,1,,,1,,1,1,1,1,1,,1,,1,1],[,,,,,1,,,,1,,,,,1,1,,,,1],[,1,,1,1,1,,1,,,1,1,1,,,1,,,1,,1,,,1],[,,1,,,,,,,,,1,,1,,,,,1,,1],[,1,1,,,,,,,,1,1,1,,,,,,,,1,,,,,1],[,,,,,,,,1,,,,,1,,,1]],[,[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,,1,1,1,1,1,1,1,1,,,,,,,,,1,1],[,,,,,,,,1,,,,1,,1,,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,1,,1,,1,,,,1,1,,1,,1,,,,1,1,1,1,1,,,1],,[,1,,,,,,,,1,,,1,1,,,1,,1,1,,1,,1],[,1,,,1,,,,,,,,1,,,,,,,1],[1,1,,,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1],,[,1,,,,,,1,,1,,1,1,1,1,1,,,1,,1,1,,,,1],[,1,1,,,1,,1,,1,,,1,1,1,1,,,1,,,1,,,,1],[,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1],[,1,,,1,1,,1,1,,,1,1,,1,1,,1,,1,,1],[1,,1,,,,,1,,1,,1,1,1,1,,,,,1,1,,,,1,1],[,1,1,,,,,1,1,,,1,,1,1,1,1,,,,,,,,,,1],,[,1,1,,,1,,,,1,,1,1,1,1,1,,,,1,,,,1,,1],[,,,1,1,,,1,,,,,1,,1,1,1,,1,1,,,,,,1],[,1,,,,,,,,,,,1,,,,1,,,,,,,1,,1],[,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,1,,,,,1,,1,,,1,1,,1,1,,1],[,1,,,,,,1,,,,,1,1,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1,,,1,,,,,1],[,,,,,,,1,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,,1,,,,,,,1,,,,,,,,1,,,1],[,1,,,,,,,1],[,,,,,,,,,,1],[,1,,,,,,1,1,,,,,,1],,[,1,1,,,,,,1,,,,,1,1,,,,1],[1,,1,,1,,,,,1,,,,,1,,,,,,,,,1,1],[,1,1,,,,,,,,,1,1,1,1,,,,1,,,,,1,,,1],,[,1,1,,1,,,1,1,,,1,,,1,1,1,,1,,1,1,1,,,,1],[,,,,,1,,,,,1,,,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,,,1,,,,,1,,,,,1,,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,1],[,1,,,,,,1,,,,,,,1,1,1,,,1],[,1,,,,,,,,,,1,1,1,,,,,1,,,1],[,,,,,1,,1,,,,,1,1,1,,1,1,,1,1,1,,,1,1],[1,1,,,,,,,1,,,,,1,1,,,,,,,,,,,1],,[,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,,1,,,,,1,,,1,,,,1,,1],[,1,,,,,,,,,1]]];function Po(e){e=Array.isArray(e)?e:Io;var a=[];return e.forEach(function(e,t){var r=String.fromCharCode(t+96).replace("`","");Array.isArray(e)?a=a.concat(Po(e).map(function(e){return r+e})):a.push(r)}),a}var Bo=function(e){for(var t=Io;e.length<3;)e+="`";for(var r=0;r<=e.length-1;r++)if(!(t=t[e.charCodeAt(r)-96]))return!1;return!0};axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.utils={setDefaultFrameMessenger:Pt};var Lo=function(){d1(o,tt);var r=p1(o);function o(e){var t,a,n;return b1(this,o),(t=r.call(this))._props=function(e){var t=null!==(a=e.nodeName)&&void 0!==a?a:qo[e.nodeType],r=null!==(a=null!==(r=e.nodeType)&&void 0!==r?r:Mo[e.nodeName])&&void 0!==a?a:1;it("number"==typeof r,"nodeType has to be a number, got '".concat(r,"'")),it("string"==typeof t,"nodeName has to be a string, got '".concat(t,"'")),t=t.toLowerCase();var a=null;"input"===t&&(a=(e.type||e.attributes&&e.attributes.type||"").toLowerCase(),So().includes(a)||(a="text"));t=v1({},e,{nodeType:r,nodeName:t});a&&(t.type=a);return delete t.attributes,Object.freeze(t)}(e),t._attrs=(e=(e=e).attributes,a=void 0===e?{}:e,n={htmlFor:"for",className:"class"},Object.keys(a).reduce(function(e,t){var r=a[t];return it("object"!==Gu(r)||null===r,"expects attributes not to be an object, '".concat(t,"' was")),void 0!==r&&(e[n[t]||t]=null!==r?String(r):null),e},{})),t}return y1(o,[{key:"props",get:function(){return this._props}},{key:"attr",value:function(e){return null!==(e=this._attrs[e])&&void 0!==e?e:null}},{key:"hasAttr",value:function(e){return void 0!==this._attrs[e]}},{key:"attrNames",get:function(){return Object.keys(this._attrs)}}]),o}(),Mo={"#cdata-section":2,"#text":3,"#comment":8,"#document":9,"#document-fragment":11},qo={};Object.keys(Mo).forEach(function(e){qo[Mo[e]]=e});var jo=Lo,Uo={};o(Uo,{allowedAttr:function(){return Ho},arialabelText:function(){return zo},arialabelledbyText:function(){return Ji},getAccessibleRefs:function(){return gl},getElementUnallowedRoles:function(){return Dl},getExplicitRole:function(){return Go},getImplicitRole:function(){return vi},getOwnedVirtual:function(){return Ci},getRole:function(){return wi},getRoleType:function(){return vl},getRolesByType:function(){return xl},getRolesWithNameFromContents:function(){return Al},implicitNodes:function(){return Rl},implicitRole:function(){return vi},isAccessibleRef:function(){return Tl},isAriaRoleAllowedOnElement:function(){return bl},isUnsupportedRole:function(){return $o},isValidRole:function(){return Wo},label:function(){return _l},labelVirtual:function(){return Sa},lookupTable:function(){return Nl},namedFromContents:function(){return Ai},requiredAttr:function(){return Ol},requiredContext:function(){return Sl},requiredOwned:function(){return Il},validateAttr:function(){return Bl},validateAttrValue:function(){return Pl}});var Vo=function(){if(yr.get("globalAriaAttrs"))return yr.get("globalAriaAttrs");var e=Object.keys(on.ariaAttrs).filter(function(e){return on.ariaAttrs[e].global});return yr.set("globalAriaAttrs",e),e};var Ho=function(e){var t=on.ariaRoles[e],e=h1(Vo());return t&&(t.allowedAttrs&&e.push.apply(e,h1(t.allowedAttrs)),t.requiredAttrs&&e.push.apply(e,h1(t.requiredAttrs))),e};var zo=function(e){if(!(e instanceof tt)){if(1!==e.nodeType)return"";e=Dr(e)}return e.attr("aria-label")||""};var $o=function(e){return!!(e=on.ariaRoles[e])&&!!e.unsupported};var Wo=function(e){var t=(a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).allowAbstract,r=void 0!==(n=a.flagUnsupported)&&n,a=on.ariaRoles[e],n=$o(e);return!(!a||r&&n)&&(!!t||"abstract"!==a.type)};var Go=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=t.fallback,a=t.abstracts,n=t.dpub;return 1!==(e=e instanceof tt?e:Dr(e)).props.nodeType?null:(t=(e.attr("role")||"").trim().toLowerCase(),(r?Oo(t):[t]).find(function(e){return!(!n&&"doc-"===e.substr(0,4))&&Wo(e,{allowAbstract:a})})||null)};var Yo=function(t){return Object.keys(on.htmlElms).filter(function(e){e=on.htmlElms[e];return e.contentTypes?e.contentTypes.includes(t):!!e.variant&&(!(!e.variant.default||!e.variant.default.contentTypes)&&e.variant.default.contentTypes.includes(t))})};var Ko=Jn(function(e){for(var t=[],r=e.rows,a=0,n=r.length;a<n;a++){var o=r[a].cells;t[a]=t[a]||[];for(var i=0,l=0,s=o.length;l<s;l++)for(var u=0;u<o[l].colSpan;u++){for(var c=o[l].getAttribute("rowspan"),d=0===parseInt(c)||0===o[l].rowspan?r.length:o[l].rowSpan,p=0;p<d;p++){for(t[a+p]=t[a+p]||[];t[a+p][i];)i++;t[a+p][i]=o[l]}i++}}return t});var Xo=Jn(function(e,t){var r,a;for(t=t||Ko(la(e,"table")),r=0;r<t.length;r++)if(t[r]&&-1!==(a=t[r].indexOf(e)))return{x:a,y:r}});var Jo=function(e){var t=e.getAttribute("scope"),r=e.getAttribute("role");if(e instanceof window.Element==!1||-1===["TD","TH"].indexOf(e.nodeName.toUpperCase()))throw new TypeError("Expected TD or TH element");if("columnheader"===r)return"col";if("rowheader"===r)return"row";if("col"===t||"row"===t)return t;if("TH"!==e.nodeName.toUpperCase())return!1;var t=Ko(la(e,"table")),a=Xo(e,t);return t[a.y].reduce(function(e,t){return e&&"TH"===t.nodeName.toUpperCase()},!0)?"col":t.map(function(e){return e[a.x]}).reduce(function(e,t){return e&&t&&"TH"===t.nodeName.toUpperCase()},!0)?"row":"auto"};var Qo=function(e){return-1!==["col","auto"].indexOf(Jo(e))};var Zo=function(e){return["row","auto"].includes(Jo(e))},ei=Yo("sectioning").map(function(e){return"".concat(e,":not([role])")}).join(", ")+" , main:not([role]), [role=article], [role=complementary], [role=main], [role=navigation], [role=region]";function ti(e){var t=ka(Ji(e)),e=ka(zo(e));return t||e}var ri={a:function(e){return e.hasAttr("href")?"link":null},area:function(e){return e.hasAttr("href")?"link":null},article:"article",aside:"complementary",body:"document",button:"button",datalist:"listbox",dd:"definition",dfn:"term",details:"group",dialog:"dialog",dt:"term",fieldset:"group",figure:"figure",footer:function(e){return Pr(e,ei)?null:"contentinfo"},form:function(e){return ti(e)?"form":null},h1:"heading",h2:"heading",h3:"heading",h4:"heading",h5:"heading",h6:"heading",header:function(e){return Pr(e,ei)?null:"banner"},hr:"separator",img:function(t){var e=t.hasAttr("alt")&&!t.attr("alt"),r=Vo().find(function(e){return t.hasAttr(e)});return!e||r||Va(t)?"img":"presentation"},input:function(e){var t,r;switch(e.hasAttr("list")&&(r=(t=_a(e.actualNode,"list").filter(function(e){return!!e})[0])&&"datalist"===t.nodeName.toLowerCase()),e.props.type){case"checkbox":return"checkbox";case"number":return"spinbutton";case"radio":return"radio";case"range":return"slider";case"search":return r?"combobox":"searchbox";case"button":case"image":case"reset":case"submit":return"button";case"text":case"tel":case"url":case"email":case"":return r?"combobox":"textbox";default:return"textbox"}},li:"listitem",main:"main",math:"math",menu:"list",nav:"navigation",ol:"list",optgroup:"group",option:"option",output:"status",progress:"progressbar",section:function(e){return ti(e)?"region":null},select:function(e){return e.hasAttr("multiple")||1<parseInt(e.attr("size"))?"listbox":"combobox"},summary:"button",table:"table",tbody:"rowgroup",td:function(e){e=Pr(e,"table"),e=Go(e);return["grid","treegrid"].includes(e)?"gridcell":"cell"},textarea:"textbox",tfoot:"rowgroup",th:function(e){return Qo(e.actualNode)?"columnheader":Zo(e.actualNode)?"rowheader":void 0},thead:"rowgroup",tr:"row",ul:"list"};var ai=function(e,t){var r=Gu(t);if(Array.isArray(t)&&void 0!==e)return t.includes(e);if("function"===r)return!!t(e);if(null!=e){if(t instanceof RegExp)return t.test(e);if(/^\/.*\/$/.test(t)){r=t.substring(1,t.length-1);return new RegExp(r).test(e)}}return t===e};var ni=function(t,r){if("object"!==Gu(r)||Array.isArray(r)||r instanceof RegExp)throw new Error("Expect matcher to be an object");return Object.keys(r).every(function(e){return ai(t(e),r[e])})};var oi=function(t,e){return t instanceof tt||(t=Dr(t)),ni(function(e){return t.attr(e)},e)};var ii=function(e,t){return!!t(e)};var li=function(e,t){return ai(Go(e),t)};var si=function(e,t){return ai(vi(e),t)};var ui=function(e,t){return e instanceof tt||(e=Dr(e)),ai(e.props.nodeName,t)};var ci=function(t,e){return t instanceof tt||(t=Dr(t)),ni(function(e){return t.props[e]},e)};var di=function(e,t){return ai(wi(e),t)},pi={attributes:oi,condition:ii,explicitRole:li,implicitRole:si,nodeName:ui,properties:ci,semanticRole:di};var fi=function t(r,a){return r instanceof tt||(r=Dr(r)),Array.isArray(a)?a.some(function(e){return t(r,e)}):"string"==typeof a?Ir(r,a):Object.keys(a).every(function(e){if(!pi[e])throw new Error('Unknown matcher type "'.concat(e,'"'));var t=pi[e],e=a[e];return t(r,e)})};var mi=function(e,t){return fi(e,t)};mi.attributes=oi,mi.condition=ii,mi.explicitRole=li,mi.fromDefinition=fi,mi.fromFunction=ni,mi.fromPrimative=ai,mi.implicitRole=si,mi.nodeName=ui,mi.properties=ci,mi.semanticRole=di;var hi=mi;var gi=function(e){var t=on.htmlElms[e.props.nodeName];if(!t)return{};if(!t.variant)return t;var r,a,n=t.variant,o=m1(t,Ju);for(r in n)if(n.hasOwnProperty(r)&&"default"!==r){var i=n[r],l=i.matches,s=m1(i,Qu);if(hi(e,l))for(var u in s)s.hasOwnProperty(u)&&(o[u]=s[u])}for(a in n.default)n.default.hasOwnProperty(a)&&void 0===o[a]&&(o[a]=n.default[a]);return o};var vi=function(e){var t=(1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).chromium,r=e instanceof tt?e:Dr(e);if(e=r.actualNode,!r)throw new ReferenceError("Cannot get implicit role of a node outside the current scope.");var a=r.props.nodeName;return(a=ri[a])||!t?"function"==typeof a?a(r):a||null:gi(r).chromiumRole||null},bi={td:["tr"],th:["tr"],tr:["thead","tbody","tfoot","table"],thead:["table"],tbody:["table"],tfoot:["table"],li:["ol","ul"],dt:["dl","div"],dd:["dl","div"],div:["dl"]};function yi(e,t){var r=t.chromium,t=m1(t,Zu),r=vi(e,{chromium:r});if(!r)return null;t=function e(t,r){var a=bi[t.props.nodeName];if(!a)return null;if(!t.parent)throw new ReferenceError("Cannot determine role presentational inheritance of a required parent outside the current scope.");if(!a.includes(t.parent.props.nodeName))return null;a=Go(t.parent,r);return["none","presentation"].includes(a)&&!Di(t.parent)?a:a?null:e(t.parent,r)}(e,t);return t||r}function Di(t){return Vo().some(function(e){return t.hasAttr(e)})||Va(t)}var wi=function(e){var t=(r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).noPresentational,r=function(e,t){var r=1<arguments.length&&void 0!==t?t:{},a=r.noImplicit,n=m1(r,e1),o=e instanceof tt?e:Dr(e);return 1!==o.props.nodeType?null:!(r=Go(o,n))||["presentation","none"].includes(r)&&Di(o)?a?null:yi(o,n):r}(e,m1(r,t1));return t&&["presentation","none"].includes(r)?null:r},xi=["iframe"];var Ei=function(e){var t=e instanceof tt?e:Dr(e);return 1!==t.props.nodeType||!e.hasAttr("title")||!mi(t,xi)&&["none","presentation"].includes(wi(t))?"":t.attr("title")};var Ai=function(e){var t=(1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).strict;if(1!==(e=e instanceof tt?e:Dr(e)).props.nodeType)return!1;var r=wi(e),a=on.ariaRoles[r];return!(!a||!a.nameFromContent)||!t&&(!a||["presentation","none"].includes(r))};var Ci=function(e){var t=e.actualNode,r=e.children;if(!r)throw new Error("getOwnedVirtual requires a virtual node");if(e.hasAttr("aria-owns")){t=_a(t,"aria-owns").filter(function(e){return!!e}).map(function(e){return axe.utils.getNodeFromTree(e)});return[].concat(h1(r),h1(t))}return h1(r)};var Fi=Yo("phrasing").concat(["#text"]);var ki=function(e){var r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},t=Ki.alreadyProcessed;r.startNode=r.startNode||e;var a=(i=r).strict,n=i.inControlContext,o=i.inLabelledByContext,i=gi(e).contentTypes;return!(t(e,r)||1!==e.props.nodeType||null!=i&&i.includes("embedded"))&&(Ai(e,{strict:a})||r.subtreeDescendant)?(a||(r=v1({subtreeDescendant:!n&&!o},r)),Ci(e).reduce(function(e,t){return function(e,t,r){var a=t.props.nodeName,r=Ki(t,r);if(!r)return e;Fi.includes(a)||(" "!==r[0]&&(r+=" "),e&&" "!==e[e.length-1]&&(r=" "+r));return e+r}(e,t,r)},"")):""};var Ni=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=Ki.alreadyProcessed;if(t.inControlContext||t.inLabelledByContext||r(e,t))return"";t.startNode||(t.startNode=e);var a,n=v1({inControlContext:!0},t),r=function(e){if(!e.attr("id"))return[];if(e.actualNode)return oa({elm:"label",attr:"for",value:e.attr("id"),context:e.actualNode});throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes")}(e);return(t=Pr(e,"label"))?(a=[].concat(h1(r),[t.actualNode])).sort(Qn):a=r,a.map(function(e){return Xi(e,n)}).filter(function(e){return""!==e}).join(" ")},Ri={submit:"Submit",image:"Submit",reset:"Reset",button:""};function Ti(e,t){return t.attr(e)||""}function _i(e,t,r){var a=t.actualNode,t=[e=e.toLowerCase(),a.nodeName.toLowerCase()].join(","),t=a.querySelector(t);return t&&t.nodeName.toLowerCase()===e?Xi(t,r):""}var Oi={valueText:function(e){return e.actualNode.value||""},buttonDefaultText:function(e){e=e.actualNode;return Ri[e.type]||""},tableCaptionText:_i.bind(null,"caption"),figureText:_i.bind(null,"figcaption"),svgTitleText:_i.bind(null,"title"),fieldsetLegendText:_i.bind(null,"legend"),altText:Ti.bind(null,"alt"),tableSummaryText:Ti.bind(null,"summary"),titleText:Ei,subtreeText:ki,labelText:Ni,singleSpace:function(){return" "},placeholderText:Ti.bind(null,"placeholder")};function Si(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode;if(1!==r.props.nodeType||["presentation","none"].includes(wi(r)))return"";var t=(gi(r).namingMethods||[]).map(function(e){return Oi[e]}).reduce(function(e,t){return e||t(r,a)},"");return a.debug&&axe.log(t||"{empty-value}",e,a),t}var Ii={accessibleNameFromFieldValue:["combobox","listbox","progressbar"]},Pi=["button","checkbox","color","file","hidden","image","password","radio","reset","submit"];var Bi=function(e){var t=(e=e instanceof tt?e:Dr(e)).props.nodeName;return"textarea"===t||"input"===t&&!Pi.includes((e.attr("type")||"").toLowerCase())};var Li=function(e){return"select"===(e=e instanceof tt?e:Dr(e)).props.nodeName};var Mi=function(e){return"textbox"===Go(e)};var qi=function(e){return"listbox"===Go(e)};var ji=function(e){return"combobox"===Go(e)},Ui=["progressbar","scrollbar","slider","spinbutton"];var Vi=function(e){return e=Go(e),Ui.includes(e)},Hi=["textbox","progressbar","scrollbar","slider","spinbutton","combobox","listbox"],zi={nativeTextboxValue:function(e){e=e instanceof tt?e:Dr(e);if(Bi(e))return e.props.value||"";return""},nativeSelectValue:function(e){var t=e instanceof tt?e:Dr(e);if(!Li(t))return"";e=Co(t,"option"),t=e.filter(function(e){return e.hasAttr("selected")});t.length||t.push(e[0]);return t.map(function(e){return Oa(e)}).join(" ")||""},ariaTextboxValue:function(e){var t=e instanceof tt?e:Dr(e),e=t.actualNode;if(!Mi(t))return"";return!e||e&&!qa(e)?Oa(t,!0):e.textContent},ariaListboxValue:$i,ariaComboboxValue:function(e,t){e=e instanceof tt?e:Dr(e);if(!ji(e))return"";e=Ci(e).filter(function(e){return"listbox"===wi(e)})[0];return e?$i(e,t):""},ariaRangeValue:function(e){e=e instanceof tt?e:Dr(e);if(!Vi(e)||!e.hasAttr("aria-valuenow"))return"";e=+e.attr("aria-valuenow");return isNaN(e)?"0":String(e)}};function $i(e,t){e=e instanceof tt?e:Dr(e);if(!qi(e))return"";e=Ci(e).filter(function(e){return"option"===wi(e)&&"true"===e.attr("aria-selected")});return 0===e.length?"":Ki(e[0],t)}function Wi(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode,t=Ii.accessibleNameFromFieldValue||[],n=wi(r);return a.startNode===r||!Hi.includes(n)||t.includes(n)?"":(n=Object.keys(zi).map(function(e){return zi[e]}).reduce(function(e,t){return e||t(r,a)},""),a.debug&&Qe(n||"{empty-value}",e,a),n)}function Gi(r){var e=r.actualNode,a=function(e,t){var r=e.actualNode;t.startNode||(t=v1({startNode:e},t));if(!r)return t;1===r.nodeType&&t.inLabelledByContext&&void 0===t.includeHidden&&(t=v1({includeHidden:!va(r,!0)},t));return t}(r,a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{});if(function(e,t){e=e.actualNode;if(!e)return!1;if(1!==e.nodeType||t.includeHidden)return!1;return!va(e,!0)}(r,a))return"";var t=[Ji,zo,Si,Wi,ki,Yi,Ei].reduce(function(e,t){return""!==(e=a.startNode===r?ka(e):e)?e:t(r,a)},"");return a.debug&&axe.log(t||"{empty-value}",e,a),t}function Yi(e){return 3!==e.props.nodeType?"":e.props.nodeValue}Gi.alreadyProcessed=function(e,t){return t.processed=t.processed||[],!!t.processed.includes(e)||(t.processed.push(e),!1)};var Ki=Gi;var Xi=function(e,t){return e=Dr(e),Ki(e,t)};var Ji=function(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!(r instanceof tt)){if(1!==r.nodeType)return"";r=Dr(r)}return 1!==r.props.nodeType||a.inLabelledByContext||a.inControlContext||!r.attr("aria-labelledby")?"":_a(r,"aria-labelledby").filter(function(e){return e}).reduce(function(e,t){t=Xi(t,v1({inLabelledByContext:!0,startNode:a.startNode||r},a));return e?"".concat(e," ").concat(t):t},"")},Qi={};function Zi(){return/[\u1D00-\u1D7F\u1D80-\u1DBF\u1DC0-\u1DFF\u20A0-\u20CF\u20D0-\u20FF\u2100-\u214F\u2150-\u218F\u2190-\u21FF\u2200-\u22FF\u2300-\u23FF\u2400-\u243F\u2440-\u245F\u2460-\u24FF\u2500-\u257F\u2580-\u259F\u25A0-\u25FF\u2600-\u26FF\u2700-\u27BF\uE000-\uF8FF]/g}function el(){return/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\xa3\xa2\xa5\xa7\u20ac()*+,\-.\/:;<=>?@\[\]^_`{|}~\xb1]/g}function tl(){return/[\uDB80-\uDBBF][\uDC00-\uDFFF]/g}o(Qi,{accessibleText:function(){return Xi},accessibleTextVirtual:function(){return Ki},autocomplete:function(){return sl},formControlValue:function(){return Wi},formControlValueMethods:function(){return zi},hasUnicode:function(){return al},isHumanInterpretable:function(){return il},isIconLigature:function(){return ll},isValidAutocomplete:function(){return ul},label:function(){return pl},labelText:function(){return Ni},labelVirtual:function(){return dl},nativeElementType:function(){return fl},nativeTextAlternative:function(){return Si},nativeTextMethods:function(){return Oi},removeUnicode:function(){return ol},sanitize:function(){return ka},subtreeText:function(){return ki},titleText:function(){return Ei},unsupported:function(){return Ii},visible:function(){return cl},visibleTextNodes:function(){return ml},visibleVirtual:function(){return Oa}});var rl=c($e());var al=function(e,t){var r=t.emoji,a=t.nonBmp,t=t.punctuations;return r?rl.default().test(e):a?Zi().test(e)||tl().test(e):!!t&&el().test(e)},nl=c($e());var ol=function(e,t){var r=t.emoji,a=t.nonBmp,t=t.punctuations;return r&&(e=e.replace(nl.default(),"")),a&&(e=(e=e.replace(Zi(),"")).replace(tl(),"")),e=t?e.replace(el(),""):e};var il=function(e){return!e.length||["x","i"].includes(e)?0:(e=ol(e,{emoji:!0,nonBmp:!0,punctuations:!0}),ka(e)?1:0)};var ll=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:.15,r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:3,a=e.actualNode.nodeValue.trim();if(!ka(a)||al(a,{emoji:!0,nonBmp:!0}))return!1;yr.get("canvasContext")||yr.set("canvasContext",document.createElement("canvas").getContext("2d"));var n=yr.get("canvasContext"),o=n.canvas;yr.get("fonts")||yr.set("fonts",{});var i=yr.get("fonts"),l=window.getComputedStyle(e.parent.actualNode).getPropertyValue("font-family");i[l]||(i[l]={occurances:0,numLigatures:0});var s=i[l];if(s.occurances>=r){if(s.numLigatures/s.occurances==1)return!0;if(0===s.numLigatures)return!1}s.occurances++;var u=30,c="".concat(u,"px ").concat(l);n.font=c;var d=a.charAt(0);if((i=n.measureText(d).width)<30&&(i*=r=30/i,c="".concat(u*=r,"px ").concat(l)),o.width=i,o.height=u,n.font=c,n.textAlign="left",n.textBaseline="top",n.fillText(d,0,0),!(d=new Uint32Array(n.getImageData(0,0,i,u).data.buffer)).some(function(e){return e}))return s.numLigatures++,!0;n.clearRect(0,0,i,u),n.fillText(a,0,0);var p=new Uint32Array(n.getImageData(0,0,i,u).data.buffer),i=d.reduce(function(e,t,r){return 0===t&&0===p[r]||0!==t&&0!==p[r]?e:++e},0),u=a.split("").reduce(function(e,t){return e+n.measureText(t).width},0),a=n.measureText(a).width;return t<=i/d.length&&t<=1-a/u&&(s.numLigatures++,!0)},sl={stateTerms:["on","off"],standaloneTerms:["name","honorific-prefix","given-name","additional-name","family-name","honorific-suffix","nickname","username","new-password","current-password","organization-title","organization","street-address","address-line1","address-line2","address-line3","address-level4","address-level3","address-level2","address-level1","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","transaction-currency","transaction-amount","language","bday","bday-day","bday-month","bday-year","sex","url","photo","one-time-code"],qualifiers:["home","work","mobile","fax","pager"],qualifiedTerms:["tel","tel-country-code","tel-national","tel-area-code","tel-local","tel-local-prefix","tel-local-suffix","tel-extension","email","impp"],locations:["billing","shipping"]};var ul=function(e){var t=void 0!==(a=(i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).looseTyped)&&a,r=void 0===(o=i.stateTerms)?[]:o,a=void 0===(n=i.locations)?[]:n,n=void 0===(o=i.qualifiers)?[]:o,o=void 0===(o=i.standaloneTerms)?[]:o,i=void 0===(i=i.qualifiedTerms)?[]:i;return e=e.toLowerCase().trim(),!(!(r=r.concat(sl.stateTerms)).includes(e)&&""!==e)||(n=n.concat(sl.qualifiers),a=a.concat(sl.locations),o=o.concat(sl.standaloneTerms),i=i.concat(sl.qualifiedTerms),r=e.split(/\s+/g),!(!t&&(8<r[0].length&&"section-"===r[0].substr(0,8)&&r.shift(),a.includes(r[0])&&r.shift(),n.includes(r[0])&&(r.shift(),o=[]),1!==r.length))&&(r=r[r.length-1],o.includes(r)||i.includes(r)))};var cl=function(e,t,r){return e=Dr(e),Oa(e,t,r)};var dl=function(e){if(t=Sa(e))return t;if(e.attr("id")){if(!e.actualNode)throw new TypeError("Cannot resolve explicit label reference for non-DOM nodes");var t,r=Kt(e.attr("id"));if(t=(r=na(e.actualNode).querySelector('label[for="'+r+'"]'))&&cl(r,!0))return t}return(t=(r=Pr(e,"label"))&&Oa(r,!0))?t:null};var pl=function(e){return e=Dr(e),dl(e)},fl=[{matches:[{nodeName:"textarea"},{nodeName:"input",properties:{type:["text","password","search","tel","email","url"]}}],namingMethods:"labelText"},{matches:{nodeName:"input",properties:{type:["button","submit","reset"]}},namingMethods:["valueText","titleText","buttonDefaultText"]},{matches:{nodeName:"input",properties:{type:"image"}},namingMethods:["altText","valueText","labelText","titleText","buttonDefaultText"]},{matches:"button",namingMethods:"subtreeText"},{matches:"fieldset",namingMethods:"fieldsetLegendText"},{matches:"OUTPUT",namingMethods:"subtreeText"},{matches:[{nodeName:"select"},{nodeName:"input",properties:{type:/^(?!text|password|search|tel|email|url|button|submit|reset)/}}],namingMethods:"labelText"},{matches:"summary",namingMethods:"subtreeText"},{matches:"figure",namingMethods:["figureText","titleText"]},{matches:"img",namingMethods:"altText"},{matches:"table",namingMethods:["tableCaptionText","tableSummaryText"]},{matches:["hr","br"],namingMethods:["titleText","singleSpace"]}];var ml=function t(e){var r=va(e.actualNode),a=[];return e.children.forEach(function(e){3===e.actualNode.nodeType?r&&a.push(e):a=a.concat(t(e))}),a},hl=/^idrefs?$/;var gl=function(e){e=e.actualNode||e;var t=(t=na(e)).documentElement||t,r=yr.get("idRefsByRoot");r||(r=new WeakMap,yr.set("idRefsByRoot",r));var a=r.get(t);return a||(r.set(t,a={}),function e(t,r,a){if(t.hasAttribute){var n;"LABEL"===t.nodeName.toUpperCase()&&t.hasAttribute("for")&&(r[n=t.getAttribute("for")]=r[n]||[],r[n].push(t));for(var o=0;o<a.length;++o){var i=a[o];if(i=ka(t.getAttribute(i)||""))for(var l=Oo(i),s=0;s<l.length;++s)r[l[s]]=r[l[s]]||[],r[l[s]].push(t)}}for(var u=0;u<t.children.length;u++)e(t.children[u],r,a)}(t,a,Object.keys(on.ariaAttrs).filter(function(e){e=on.ariaAttrs[e].type;return hl.test(e)}))),a[e.id]||[]};var vl=function(e){return(e=on.ariaRoles[e])?e.type:null};var bl=function(e,t){return e=e instanceof tt?e:Dr(e),t===vi(e)||(e=gi(e),Array.isArray(e.allowedRoles)?e.allowedRoles.includes(t):!!e.allowedRoles)},yl=["doc-backlink","doc-biblioentry","doc-biblioref","doc-cover","doc-endnote","doc-glossref","doc-noteref"];var Dl=function(e){var r=!(1<arguments.length&&void 0!==arguments[1])||arguments[1],a=e instanceof tt?e:Dr(e),n=a.props.nodeName;if(!Wn(a))return[];var t,o=(o=[],(t=a)?(t.hasAttr("role")&&(t=Oo(t.attr("role").toLowerCase()),o=o.concat(t)),o=o.filter(function(e){return Wo(e)})):o),i=vi(a);return o.filter(function(e){if(r&&e===i)return!1;if(r&&yl.includes(e)){var t=vl(e);if(i!==t)return!0}return!(r||"row"===e&&"tr"===n&&tr(a,'table[role="grid"] > tr'))||!bl(a,e)})};var wl=function(t){return Object.keys(on.ariaRoles).filter(function(e){return on.ariaRoles[e].type===t})};var xl=function(e){return wl(e)};var El=function(){if(yr.get("ariaRolesNameFromContent"))return yr.get("ariaRolesNameFromContent");var e=Object.keys(on.ariaRoles).filter(function(e){return on.ariaRoles[e].nameFromContent});return yr.set("ariaRolesNameFromContent",e),e};var Al=function(){return El()},Cl=function(e){return null===e},Fl=function(e){return null!==e},kl={attributes:{"aria-activedescendant":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-atomic":{type:"boolean",values:["true","false"],unsupported:!1},"aria-autocomplete":{type:"nmtoken",values:["inline","list","both","none"],unsupported:!1},"aria-busy":{type:"boolean",values:["true","false"],unsupported:!1},"aria-checked":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-colcount":{type:"int",unsupported:!1},"aria-colindex":{type:"int",unsupported:!1},"aria-colspan":{type:"int",unsupported:!1},"aria-controls":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-current":{type:"nmtoken",allowEmpty:!0,values:["page","step","location","date","time","true","false"],unsupported:!1},"aria-describedby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-describedat":{unsupported:!0,unstandardized:!0},"aria-details":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-disabled":{type:"boolean",values:["true","false"],unsupported:!1},"aria-dropeffect":{type:"nmtokens",values:["copy","move","reference","execute","popup","none"],unsupported:!1},"aria-errormessage":{type:"idref",allowEmpty:!0,unsupported:!1},"aria-expanded":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-flowto":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-grabbed":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-haspopup":{type:"nmtoken",allowEmpty:!0,values:["true","false","menu","listbox","tree","grid","dialog"],unsupported:!1},"aria-hidden":{type:"boolean",values:["true","false"],unsupported:!1},"aria-invalid":{type:"nmtoken",allowEmpty:!0,values:["true","false","spelling","grammar"],unsupported:!1},"aria-keyshortcuts":{type:"string",allowEmpty:!0,unsupported:!1},"aria-label":{type:"string",allowEmpty:!0,unsupported:!1},"aria-labelledby":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-level":{type:"int",unsupported:!1},"aria-live":{type:"nmtoken",values:["off","polite","assertive"],unsupported:!1},"aria-modal":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiline":{type:"boolean",values:["true","false"],unsupported:!1},"aria-multiselectable":{type:"boolean",values:["true","false"],unsupported:!1},"aria-orientation":{type:"nmtoken",values:["horizontal","vertical"],unsupported:!1},"aria-owns":{type:"idrefs",allowEmpty:!0,unsupported:!1},"aria-placeholder":{type:"string",allowEmpty:!0,unsupported:!1},"aria-posinset":{type:"int",unsupported:!1},"aria-pressed":{type:"nmtoken",values:["true","false","mixed","undefined"],unsupported:!1},"aria-readonly":{type:"boolean",values:["true","false"],unsupported:!1},"aria-relevant":{type:"nmtokens",values:["additions","removals","text","all"],unsupported:!1},"aria-required":{type:"boolean",values:["true","false"],unsupported:!1},"aria-roledescription":{type:"string",allowEmpty:!0,unsupported:!1},"aria-rowcount":{type:"int",unsupported:!1},"aria-rowindex":{type:"int",unsupported:!1},"aria-rowspan":{type:"int",unsupported:!1},"aria-selected":{type:"nmtoken",values:["true","false","undefined"],unsupported:!1},"aria-setsize":{type:"int",unsupported:!1},"aria-sort":{type:"nmtoken",values:["ascending","descending","other","none"],unsupported:!1},"aria-valuemax":{type:"decimal",unsupported:!1},"aria-valuemin":{type:"decimal",unsupported:!1},"aria-valuenow":{type:"decimal",unsupported:!1},"aria-valuetext":{type:"string",unsupported:!1}},globalAttributes:["aria-atomic","aria-busy","aria-controls","aria-current","aria-describedby","aria-details","aria-disabled","aria-dropeffect","aria-flowto","aria-grabbed","aria-haspopup","aria-hidden","aria-invalid","aria-keyshortcuts","aria-label","aria-labelledby","aria-live","aria-owns","aria-relevant","aria-roledescription"]};kl.role={alert:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},alertdialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["dialog","section"]},application:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage","aria-activedescendant"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","audio","embed","iframe","object","section","svg","video"]},article:{type:"structure",attributes:{allowed:["aria-expanded","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["article"],unsupported:!1},banner:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["header"],unsupported:!1,allowedElements:["section"]},button:{type:"widget",attributes:{allowed:["aria-expanded","aria-pressed","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["button",'input[type="button"]','input[type="image"]','input[type="reset"]','input[type="submit"]',"summary"],unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Fl}}]},cell:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-rowindex","aria-rowspan","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},checkbox:{type:"widget",attributes:{allowed:["aria-checked","aria-required","aria-readonly","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="checkbox"]'],unsupported:!1,allowedElements:["button"]},columnheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},combobox:{type:"composite",attributes:{allowed:["aria-autocomplete","aria-required","aria-activedescendant","aria-orientation","aria-errormessage"],required:["aria-expanded"]},owned:{all:["listbox","tree","grid","dialog","textbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:"input",properties:{type:["text","search","tel","url","email"]}}]},command:{nameFrom:["author"],type:"abstract",unsupported:!1},complementary:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["aside"],unsupported:!1,allowedElements:["section"]},composite:{nameFrom:["author"],type:"abstract",unsupported:!1},contentinfo:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["footer"],unsupported:!1,allowedElements:["section"]},definition:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dd","dfn"],unsupported:!1},dialog:{type:"widget",attributes:{allowed:["aria-expanded","aria-modal","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["dialog"],unsupported:!1,allowedElements:["section"]},directory:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["ol","ul"]},document:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["body"],unsupported:!1,allowedElements:["article","embed","iframe","object","section","svg"]},"doc-abstract":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-acknowledgments":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-afterword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-appendix":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-backlink":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Fl}}]},"doc-biblioentry":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author"],context:["doc-bibliography"],unsupported:!1,allowedElements:["li"]},"doc-bibliography":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-biblioentry"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-biblioref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Fl}}]},"doc-chapter":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-colophon":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-conclusion":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-cover":{type:"img",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-credit":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-credits":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-dedication":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-endnote":{type:"listitem",attributes:{allowed:["aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,namefrom:["author"],context:["doc-endnotes"],unsupported:!1,allowedElements:["li"]},"doc-endnotes":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["doc-endnote"]},namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-epigraph":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1},"doc-epilogue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-errata":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-example":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-footnote":{type:"section",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","footer","header"]},"doc-foreword":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-glossary":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:["term","definition"],namefrom:["author"],context:null,unsupported:!1,allowedElements:["dl"]},"doc-glossref":{type:"link",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Fl}}]},"doc-index":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-introduction":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-noteref":{type:"link",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author","contents"],context:null,unsupported:!1,allowedElements:[{nodeName:"a",attributes:{href:Fl}}]},"doc-notice":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pagebreak":{type:"separator",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["hr"]},"doc-pagelist":{type:"navigation",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},"doc-part":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-preface":{type:"landmark",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-prologue":{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-pullquote":{type:"none",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside","section"]},"doc-qna":{type:"section",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},"doc-subtitle":{type:"sectionhead",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["h1","h2","h3","h4","h5","h6"]}},"doc-tip":{type:"note",attributes:{allowed:["aria-expanded"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},"doc-toc":{type:"navigation",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,namefrom:["author"],context:null,unsupported:!1,allowedElements:["nav","section"]},feed:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{one:["article"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["article","aside","section"]},figure:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["figure"],unsupported:!1},form:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["form"],unsupported:!1},grid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-colcount","aria-level","aria-multiselectable","aria-readonly","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,implicit:["table"],unsupported:!1},gridcell:{type:"widget",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-selected","aria-readonly","aria-required","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["td","th"],unsupported:!1},group:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["details","optgroup"],unsupported:!1,allowedElements:["dl","figcaption","fieldset","figure","footer","header","ol","ul"]},heading:{type:"structure",attributes:{required:["aria-level"],allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["h1","h2","h3","h4","h5","h6"],unsupported:!1},img:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["img"],unsupported:!1,allowedElements:["embed","iframe","object","svg"]},input:{nameFrom:["author"],type:"abstract",unsupported:!1},landmark:{nameFrom:["author"],type:"abstract",unsupported:!1},link:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["a[href]","area[href]"],unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["image","button"]}}]},list:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:{all:["listitem"]},nameFrom:["author"],context:null,implicit:["ol","ul","dl"],unsupported:!1},listbox:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-readonly","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["option"]},nameFrom:["author"],context:null,implicit:["select"],unsupported:!1,allowedElements:["ol","ul"]},listitem:{type:"structure",attributes:{allowed:["aria-level","aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["list"],implicit:["li","dt"],unsupported:!1},log:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},main:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["main"],unsupported:!1,allowedElements:["article","section"]},marquee:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},math:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["math"],unsupported:!1},menu:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,implicit:['menu[type="context"]'],unsupported:!1,allowedElements:["ol","ul"]},menubar:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:{one:["menuitem","menuitemradio","menuitemcheckbox"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},menuitem:{type:"widget",attributes:{allowed:["aria-posinset","aria-setsize","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="command"]'],unsupported:!1,allowedElements:["button","li",{nodeName:"iput",properties:{type:["image","button"]}},{nodeName:"a",attributes:{href:Fl}}]},menuitemcheckbox:{type:"widget",attributes:{allowed:["aria-checked","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="checkbox"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Fl}}]},menuitemradio:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["menu","menubar"],implicit:['menuitem[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button","radio"]}},{nodeName:"a",attributes:{href:Fl}}]},navigation:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["nav"],unsupported:!1,allowedElements:["section"]},none:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Fl}}]},note:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["aside"]},option:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-checked","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["listbox"],implicit:["option"],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["checkbox","button"]}},{nodeName:"a",attributes:{href:Fl}}]},presentation:{type:"structure",attributes:null,owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:[{nodeName:["article","aside","dl","embed","figcaption","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","iframe","li","ol","section","ul"]},{nodeName:"img",attributes:{alt:Fl}}]},progressbar:{type:"widget",attributes:{allowed:["aria-valuetext","aria-valuenow","aria-valuemax","aria-valuemin","aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["progress"],unsupported:!1},radio:{type:"widget",attributes:{allowed:["aria-selected","aria-posinset","aria-setsize","aria-required","aria-errormessage","aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,implicit:['input[type="radio"]'],unsupported:!1,allowedElements:[{nodeName:["button","li"]},{nodeName:"input",properties:{type:["image","button"]}}]},radiogroup:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-required","aria-expanded","aria-readonly","aria-errormessage","aria-orientation"]},owned:{all:["radio"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["ol","ul","fieldset"]}},range:{nameFrom:["author"],type:"abstract",unsupported:!1},region:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["section[aria-label]","section[aria-labelledby]","section[title]"],unsupported:!1,allowedElements:{nodeName:["article","aside"]}},roletype:{type:"abstract",unsupported:!1},row:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-colindex","aria-expanded","aria-level","aria-selected","aria-rowindex","aria-errormessage"]},owned:{one:["cell","columnheader","rowheader","gridcell"]},nameFrom:["author","contents"],context:["rowgroup","grid","treegrid","table"],implicit:["tr"],unsupported:!1},rowgroup:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-errormessage"]},owned:{all:["row"]},nameFrom:["author","contents"],context:["grid","table","treegrid"],implicit:["tbody","thead","tfoot"],unsupported:!1},rowheader:{type:"structure",attributes:{allowed:["aria-colindex","aria-colspan","aria-expanded","aria-rowindex","aria-rowspan","aria-required","aria-readonly","aria-selected","aria-sort","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["row"],implicit:["th"],unsupported:!1},scrollbar:{type:"widget",attributes:{required:["aria-controls","aria-valuenow"],allowed:["aria-valuetext","aria-orientation","aria-errormessage","aria-valuemax","aria-valuemin"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},search:{type:"landmark",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:{nodeName:["aside","form","section"]}},searchbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="search"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:"text"}}},section:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},sectionhead:{nameFrom:["author","contents"],type:"abstract",unsupported:!1},select:{nameFrom:["author"],type:"abstract",unsupported:!1},separator:{type:"structure",attributes:{allowed:["aria-expanded","aria-orientation","aria-valuenow","aria-valuemax","aria-valuemin","aria-valuetext","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["hr"],unsupported:!1,allowedElements:["li"]},slider:{type:"widget",attributes:{allowed:["aria-valuetext","aria-orientation","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="range"]'],unsupported:!1},spinbutton:{type:"widget",attributes:{allowed:["aria-valuetext","aria-required","aria-readonly","aria-errormessage","aria-valuemax","aria-valuemin"],required:["aria-valuenow"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="number"]'],unsupported:!1,allowedElements:{nodeName:"input",properties:{type:["text","tel"]}}},status:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:["output"],unsupported:!1,allowedElements:["section"]},structure:{type:"abstract",unsupported:!1},switch:{type:"widget",attributes:{allowed:["aria-errormessage"],required:["aria-checked"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1,allowedElements:["button",{nodeName:"input",properties:{type:["checkbox","image","button"]}},{nodeName:"a",attributes:{href:Fl}}]},tab:{type:"widget",attributes:{allowed:["aria-selected","aria-expanded","aria-setsize","aria-posinset","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["tablist"],unsupported:!1,allowedElements:[{nodeName:["button","h1","h2","h3","h4","h5","h6","li"]},{nodeName:"input",properties:{type:"button"}},{nodeName:"a",attributes:{href:Fl}}]},table:{type:"structure",attributes:{allowed:["aria-colcount","aria-rowcount","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author","contents"],context:null,implicit:["table"],unsupported:!1},tablist:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-level","aria-multiselectable","aria-orientation","aria-errormessage"]},owned:{all:["tab"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},tabpanel:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1,allowedElements:["section"]},term:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,implicit:["dt"],unsupported:!1},textbox:{type:"widget",attributes:{allowed:["aria-activedescendant","aria-autocomplete","aria-multiline","aria-readonly","aria-required","aria-placeholder","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['input[type="text"]','input[type="email"]','input[type="password"]','input[type="tel"]','input[type="url"]',"input:not([type])","textarea"],unsupported:!1},timer:{type:"widget",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,unsupported:!1},toolbar:{type:"structure",attributes:{allowed:["aria-activedescendant","aria-expanded","aria-orientation","aria-errormessage"]},owned:null,nameFrom:["author"],context:null,implicit:['menu[type="toolbar"]'],unsupported:!1,allowedElements:["ol","ul"]},tooltip:{type:"structure",attributes:{allowed:["aria-expanded","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:null,unsupported:!1},tree:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-multiselectable","aria-required","aria-expanded","aria-orientation","aria-errormessage"]},owned:{all:["treeitem"]},nameFrom:["author"],context:null,unsupported:!1,allowedElements:["ol","ul"]},treegrid:{type:"composite",attributes:{allowed:["aria-activedescendant","aria-colcount","aria-expanded","aria-level","aria-multiselectable","aria-readonly","aria-required","aria-rowcount","aria-orientation","aria-errormessage"]},owned:{one:["rowgroup","row"]},nameFrom:["author"],context:null,unsupported:!1},treeitem:{type:"widget",attributes:{allowed:["aria-checked","aria-selected","aria-expanded","aria-level","aria-posinset","aria-setsize","aria-errormessage"]},owned:null,nameFrom:["author","contents"],context:["group","tree"],unsupported:!1,allowedElements:["li",{nodeName:"a",attributes:{href:Fl}}]},widget:{type:"abstract",unsupported:!1},window:{nameFrom:["author"],type:"abstract",unsupported:!1}},kl.implicitHtmlRole=ri,kl.elementsAllowedNoRole=[{nodeName:["base","body","caption","col","colgroup","datalist","dd","details","dt","head","html","keygen","label","legend","main","map","math","meta","meter","noscript","optgroup","param","picture","progress","script","source","style","template","textarea","title","track"]},{nodeName:"area",attributes:{href:Fl}},{nodeName:"input",properties:{type:["color","data","datatime","file","hidden","month","number","password","range","reset","submit","time","week"]}},{nodeName:"link",attributes:{href:Fl}},{nodeName:"menu",attributes:{type:"context"}},{nodeName:"menuitem",attributes:{type:["command","checkbox","radio"]}},{nodeName:"select",condition:function(e){return e instanceof axe.AbstractVirtualNode||(e=axe.utils.getNodeFromTree(e)),1<Number(e.attr("size"))},properties:{multiple:!0}},{nodeName:["clippath","cursor","defs","desc","feblend","fecolormatrix","fecomponenttransfer","fecomposite","feconvolvematrix","fediffuselighting","fedisplacementmap","fedistantlight","fedropshadow","feflood","fefunca","fefuncb","fefuncg","fefuncr","fegaussianblur","feimage","femerge","femergenode","femorphology","feoffset","fepointlight","fespecularlighting","fespotlight","fetile","feturbulence","filter","hatch","hatchpath","lineargradient","marker","mask","meshgradient","meshpatch","meshrow","metadata","mpath","pattern","radialgradient","solidcolor","stop","switch","view"]}],kl.elementsAllowedAnyRole=[{nodeName:"a",attributes:{href:Cl}},{nodeName:"img",attributes:{alt:Cl}},{nodeName:["abbr","address","canvas","div","p","pre","blockquote","ins","del","output","span","table","tbody","thead","tfoot","td","em","strong","small","s","cite","q","dfn","abbr","time","code","var","samp","kbd","sub","sup","i","b","u","mark","ruby","rt","rp","bdi","bdo","br","wbr","th","tr"]}],kl.evaluateRoleForElement={A:function(e){var t=e.node,e=e.out;return"http://www.w3.org/2000/svg"===t.namespaceURI||(!t.href.length||e)},AREA:function(e){return!e.node.href},BUTTON:function(e){var t=e.node,r=e.role,e=e.out;return"menu"===t.getAttribute("type")?"menuitem"===r:e},IMG:function(e){var t=e.node,r=e.role,a=e.out;switch(t.alt){case null:return a;case"":return"presentation"===r||"none"===r;default:return"presentation"!==r&&"none"!==r}},INPUT:function(e){var t=e.node,r=e.role,a=e.out;switch(t.type){case"button":case"image":return a;case"checkbox":return"button"===r&&t.hasAttribute("aria-pressed")?!0:a;case"radio":return"menuitemradio"===r;case"text":return"combobox"===r||"searchbox"===r||"spinbutton"===r;case"tel":return"combobox"===r||"spinbutton"===r;case"url":case"search":case"email":return"combobox"===r;default:return!1}},LI:function(e){var t=e.node,e=e.out;return!axe.utils.matchesSelector(t,"ol li, ul li")||e},MENU:function(e){return"context"!==e.node.getAttribute("type")},OPTION:function(e){e=e.node;return!axe.utils.matchesSelector(e,"select > option, datalist > option, optgroup > option")},SELECT:function(e){var t=e.node,e=e.role;return!t.multiple&&t.size<=1&&"menu"===e},SVG:function(e){var t=e.node,e=e.out;return!(!t.parentNode||"http://www.w3.org/2000/svg"!==t.parentNode.namespaceURI)||e}},kl.rolesOfType={widget:["button","checkbox","dialog","gridcell","link","log","marquee","menuitem","menuitemcheckbox","menuitemradio","option","progressbar","radio","scrollbar","searchbox","slider","spinbutton","status","switch","tab","tabpanel","textbox","timer","tooltip","tree","treeitem"]};var Nl=kl;var Rl=function(e){var t=null,e=Nl.role[e];return t=e&&e.implicit?Ar(e.implicit):t};var Tl=function(e){return!!gl(e).length};var _l=function(e){return e=Dr(e),Sa(e)};var Ol=function(e){return(e=on.ariaRoles[e])&&Array.isArray(e.requiredAttrs)?h1(e.requiredAttrs):[]};var Sl=function(e){return(e=on.ariaRoles[e])&&Array.isArray(e.requiredContext)?h1(e.requiredContext):null};var Il=function(e){return(e=on.ariaRoles[e])&&Array.isArray(e.requiredOwned)?h1(e.requiredOwned):null};var Pl=function(e,t){var r,a=(e=e instanceof tt?e:Dr(e)).attr(t),n=on.ariaAttrs[t];if(!n)return!0;if(n.allowEmpty&&(!a||""===a.trim()))return!0;switch(n.type){case"boolean":return["true","false"].includes(a.toLowerCase());case"nmtoken":return"string"==typeof a&&n.values.includes(a.toLowerCase());case"nmtokens":return(r=Oo(a)).reduce(function(e,t){return e&&n.values.includes(t)},0!==r.length);case"idref":try{var o=na(e.actualNode);return!(!a||!o.getElementById(a))}catch(e){throw new TypeError("Cannot resolve id references for partial DOM")}case"idrefs":return _a(e,t).some(function(e){return!!e});case"string":return""!==a.trim();case"decimal":return!(!(i=a.match(/^[-+]?([0-9]*)\.?([0-9]*)$/))||!i[1]&&!i[2]);case"int":var i=void 0!==n.minValue?n.minValue:-1/0;return/^[-+]?[0-9]+$/.test(a)&&parseInt(a)>=i}};var Bl=function(e){return!!on.ariaAttrs[e]};function Ll(e,t,r){return 0<(r=Oo(r.attr("role")).filter(function(e){return"abstract"===vl(e)})).length&&(this.data(r),!0)}function Ml(e,t,r){var a=[],n=wi(r),o=r.attrNames,i=Ho(n);if(Array.isArray(t[n])&&(i=po(t[n].concat(i))),n&&i)for(var l=0;l<o.length;l++){var s=o[l];Bl(s)&&!i.includes(s)&&a.push(s+'="'+r.attr(s)+'"')}return!a.length||(this.data(a),!1)}function ql(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0,a=void 0===(n=t.allowImplicit)||n,t=void 0===(n=t.ignoredTags)?[]:n,n=r.props.nodeName;return!!t.map(function(e){return e.toLowerCase()}).includes(n)||(!(a=Dl(r,a)).length||(this.data(a),!va(r,!0)&&void 0))}function jl(e,t,r){t=Array.isArray(t)?t:[];var a=r.attr("aria-errormessage"),n=r.hasAttr("aria-errormessage"),o=r.attr("aria-invalid");return!r.hasAttr("aria-invalid")||"false"===o||(-1!==t.indexOf(a)||!n||(this.data(Oo(a)),function(t){if(""===t.trim())return on.ariaAttrs["aria-errormessage"].allowEmpty;var e;try{e=t&&_a(r,"aria-errormessage")[0]}catch(e){return void this.data({messageKey:"idrefs",values:Oo(t)})}return e?"alert"===e.getAttribute("role")||"assertive"===e.getAttribute("aria-live")||"polite"===e.getAttribute("aria-live")||-1<Oo(r.attr("aria-describedby")).indexOf(t):void 0}.call(this,a)))}function Ul(e,t,r){return"true"!==r.attr("aria-hidden")}function Vl(e,t,r){if(r=r.attr("aria-level"),!(6<parseInt(r,10)))return!0}function Hl(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0,t=t.elementsAllowedAriaLabel||[];return 0!==(t=function(e,t){var r=wi(e,{chromium:!0}),a=on.ariaRoles[r];if(a)return a.prohibitedAttrs||[];e=e.props.nodeName;return r||t.includes(e)?[]:["aria-label","aria-labelledby"]}(r,t).filter(function(e){return!!r.attrNames.includes(e)&&""!==ka(r.attr(e))})).length&&(this.data(t),!(""!==ka(ki(r)))||void 0)}var zl={};o(zl,{getAriaRolesByType:function(){return wl},getAriaRolesSupportingNameFromContent:function(){return El},getElementSpec:function(){return gi},getElementsByContentType:function(){return Yo},getGlobalAriaAttrs:function(){return Vo},implicitHtmlRoles:function(){return ri}});function $l(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0,a=[],n=r.attrNames,o=Go(r);if(n.length){var i=Ol(o),l=gi(r);if(Array.isArray(t[o])&&(i=po(t[o],i)),o&&i)for(var s=0,u=i.length;s<u;s++){var c=i[s];r.attr(c)||l.implicitAttrs&&void 0!==l.implicitAttrs[c]||a.push(c)}}return"combobox"===o&&a.includes("aria-controls")&&(r.hasAttr("aria-owns")||"true"!==r.attr("aria-expanded"))&&a.splice(a.indexOf("aria-controls",1)),!a.length||(this.data(a),!1)}function Wl(e,r){for(var a=[],n=Ci(e),t=0;t<n.length;t++)!function(e){var e=n[e],t=wi(e,{noPresentational:!0});!t||["group","rowgroup"].includes(t)&&r.some(function(e){return e===t})?n.push.apply(n,h1(e.children)):t&&a.push(t)}(t);return a}function Gl(e,t,r){var a=t&&Array.isArray(t.reviewEmpty)?t.reviewEmpty:[],n=Go(r,{dpub:!0}),o=Il(n);return null===o||(t=Wl(r,o),!(o=function(e,t){for(var r=0;r<t.length;r++){var a=t[r];if(e.includes(a))return e=e.filter(function(e){return e!==a}),null}return e.length?e:null}(o,t))||(this.data(o),!(!a.includes(n)||Pa(r,!1,!0)||t.length||r.hasAttr("aria-owns")&&_a(e,"aria-owns").length)&&void 0))}function Yl(e,t,r,a){var n=Go(e);if(!(r=r||Sl(n)))return null;for(var o=a?e:e.parent;o;){var i=wi(o);if(r.includes("group")&&"group"===i)t.includes(n)&&r.push(n),r=r.filter(function(e){return"group"!==e}),o=o.parent;else{if(r.includes(i))return null;if(i&&!["presentation","none"].includes(i))return r;o=o.parent}}return r}function Kl(e,t,r){var a=t&&Array.isArray(t.ownGroupRoles)?t.ownGroupRoles:[],n=Yl(r,a);if(!n)return!0;var o=function(e){for(var t,r=[],a=null;e;)e.getAttribute("id")&&(t=Kt(e.getAttribute("id")),(a=na(e).querySelector("[aria-owns~=".concat(t,"]")))&&r.push(a)),e=e.parentElement;return r.length?r:null}(e);if(o)for(var i=0,l=o.length;i<l;i++)if(!(n=Yl(Dr(o[i]),a,n,!0)))return!0;return this.data(n),!1}function Xl(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=wi(e);return!!(t.supportedRoles||[]).includes(r)||!(!r||"presentation"===r||"none"===r)&&void 0}function Jl(r,e,t){return!!(t=t.attrNames.filter(function(e){var t=on.ariaAttrs[e];if(!Bl(e))return!1;t=t.unsupported;return"object"!==Gu(t)?!!t:!hi(r,t.exceptions)})).length&&(this.data(t),!0)}function Ql(e,t,r){t=Array.isArray(t.value)?t.value:[];var a=[],n=/^aria-/;return r.attrNames.forEach(function(e){-1===t.indexOf(e)&&n.test(e)&&!Bl(e)&&a.push(e)}),!a.length||(this.data(a),!1)}function Zl(e,a,n){a=Array.isArray(a.value)?a.value:[];var o="",i="",l=[],s=/^aria-/,u=["aria-errormessage"],c={"aria-controls":function(){return"false"!==n.attr("aria-expanded")&&"false"!==n.attr("aria-selected")},"aria-current":function(e){e||(o='aria-current="'.concat(n.attr("aria-current"),'"'),i="ariaCurrent")},"aria-owns":function(){return"false"!==n.attr("aria-expanded")},"aria-describedby":function(e){e||(o='aria-describedby="'.concat(n.attr("aria-describedby"),'"'),i="noId")},"aria-labelledby":function(e){e||(o='aria-labelledby="'.concat(n.attr("aria-labelledby"),'"'),i="noId")}};if(n.attrNames.forEach(function(t){if(!u.includes(t)&&!a.includes(t)&&s.test(t)){var e,r=n.attr(t);try{e=Pl(n,t)}catch(e){o="".concat(t,'="').concat(r,'"'),i="idrefs"}c[t]&&!c[t](e)||e||l.push("".concat(t,'="').concat(r,'"'))}}),!o)return!l.length||(this.data(l),!1);this.data({messageKey:i,needsReview:o})}function es(e,t,r){var a;return!((a=Oo(r.attr("role"))).length<=1)&&(a=a,!(!vi(r)&&2===a.length&&a.includes("none")&&a.includes("presentation"))||void 0)}function ts(e,t,r){var a=Vo().filter(function(e){return r.hasAttr(e)});return this.data(a),0<a.length}function rs(e,t){return null!==vi(t,{chromium:!0})}function as(e){return null!==(e=e.getAttribute("role"))&&("widget"===(e=vl(e))||"composite"===e)}function ns(e,t,r){return!!(r=Oo(r.attr("role"))).every(function(e){return!Wo(e,{allowAbstract:!0})})&&(this.data(r),!0)}function os(e,t,r){return Va(r)}function is(e,t,r){var a,n,o=wi(r,{noImplicit:!0});this.data(o);try{a=ka(Ni(r)).toLowerCase(),n=ka(Ki(r)).toLowerCase()}catch(e){return}return!(!n&&!a)&&(!((n||!a)&&n.includes(a))&&void 0)}function ls(e,t,r){return $o(wi(r))}var ss={ARTICLE:!0,ASIDE:!0,NAV:!0,SECTION:!0},us={application:!0,banner:!1,complementary:!0,contentinfo:!0,form:!0,main:!0,navigation:!0,region:!0,search:!1};function cs(e,t){return r=t,(t=Go(t=e))&&(us[t]||r.roles.includes(t))||!1||(t=(t=e).nodeName.toUpperCase(),ss[t]||!1);var r}var ds={};o(ds,{getAllCells:function(){return ps},getCellPosition:function(){return Xo},getHeaders:function(){return ms},getScope:function(){return Jo},isColumnHeader:function(){return Qo},isDataCell:function(){return hs},isDataTable:function(){return gs},isHeader:function(){return vs},isRowHeader:function(){return Zo},toArray:function(){return Ko},toGrid:function(){return Ko},traverse:function(){return bs}});var ps=function(e){for(var t,r,a=[],n=0,o=e.rows.length;n<o;n++)for(t=0,r=e.rows[n].cells.length;t<r;t++)a.push(e.rows[n].cells[t]);return a};function fs(e,t,r){for(var a,n="row"===e?"_rowHeaders":"_colHeaders",o="row"===e?Zo:Qo,i=r[t.y][t.x],l=i.colSpan-1,s=i.getAttribute("rowspan"),i=0===parseInt(s)||0===i.rowspan?r.length:i.rowSpan,i=t.y+(i-1),u=t.x+l,c="row"===e?t.y:0,d="row"===e?0:t.x,p=[],f=i;c<=f&&!a;f--)for(var m=u;d<=m;m--){var h=r[f]?r[f][m]:void 0;if(h){var g=axe.utils.getNodeFromTree(h);if(g[n]){a=g[n];break}p.push(h)}}return a=(a||[]).concat(p.filter(o)),p.forEach(function(e){axe.utils.getNodeFromTree(e)[n]=a}),a}var ms=function(e,t){if(e.getAttribute("headers")){var r=_a(e,"headers");if(r.filter(function(e){return e}).length)return r}return t=t||Ko(la(e,"table")),r=Xo(e,t),e=fs("row",r,t),t=fs("col",r,t),[].concat(e,t).reverse()};var hs=function(e){if(!e.children.length&&!e.textContent.trim())return!1;var t=e.getAttribute("role");return Wo(t)?["cell","gridcell"].includes(t):"TD"===e.nodeName.toUpperCase()};var gs=function(e){var t=(e.getAttribute("role")||"").toLowerCase();if(("presentation"===t||"none"===t)&&!Va(e))return!1;if("true"===e.getAttribute("contenteditable")||la(e,'[contenteditable="true"]'))return!0;if("grid"===t||"treegrid"===t||"table"===t)return!0;if("landmark"===vl(t))return!0;if("0"===e.getAttribute("datatable"))return!1;if(e.getAttribute("summary"))return!0;if(e.tHead||e.tFoot||e.caption)return!0;for(var r=0,a=e.children.length;r<a;r++)if("COLGROUP"===e.children[r].nodeName.toUpperCase())return!0;for(var n,o,i,l=0,s=e.rows.length,u=!1,c=0;c<s;c++)for(var d,p=0,f=(d=e.rows[c]).cells.length;p<f;p++){if("TH"===(n=d.cells[p]).nodeName.toUpperCase())return!0;if(u||n.offsetWidth===n.clientWidth&&n.offsetHeight===n.clientHeight||(u=!0),n.getAttribute("scope")||n.getAttribute("headers")||n.getAttribute("abbr"))return!0;if(["columnheader","rowheader"].includes((n.getAttribute("role")||"").toLowerCase()))return!0;if(1===n.children.length&&"ABBR"===n.children[0].nodeName.toUpperCase())return!0;l++}if(e.getElementsByTagName("table").length)return!1;if(s<2)return!1;if(1===(t=e.rows[Math.ceil(s/2)]).cells.length&&1===t.cells[0].colSpan)return!1;if(5<=t.cells.length)return!0;if(u)return!0;for(c=0;c<s;c++){if(d=e.rows[c],o&&o!==window.getComputedStyle(d).getPropertyValue("background-color"))return!0;if(o=window.getComputedStyle(d).getPropertyValue("background-color"),i&&i!==window.getComputedStyle(d).getPropertyValue("background-image"))return!0;i=window.getComputedStyle(d).getPropertyValue("background-image")}return 20<=s||!(da(e).width>.95*pa(window).width)&&(!(l<10)&&!e.querySelector("object, embed, iframe, applet"))};var vs=function(e){if(Qo(e)||Zo(e))return!0;if(e.getAttribute("id")){e=Kt(e.getAttribute("id"));return!!document.querySelector('[headers~="'.concat(e,'"]'))}return!1};var bs=function(e,t,r,a){if(Array.isArray(t)&&(a=r,r=t,t={x:0,y:0}),"string"==typeof e)switch(e){case"left":e={x:-1,y:0};break;case"up":e={x:0,y:-1};break;case"right":e={x:1,y:0};break;case"down":e={x:0,y:1}}return function e(t,r,a,n){var o,i=a[r.y]?a[r.y][r.x]:void 0;return i?"function"==typeof n&&!0===(o=n(i,r,a))?[i]:((o=e(t,{x:r.x+t.x,y:r.y+t.y},a,n)).unshift(i),o):[]}(e,{x:t.x+e.x,y:t.y+e.y},r,a)};function ys(e){var t=Ko(e),a=t[0];return t.length<=1||a.length<=1||e.rows.length<=1||a.reduce(function(e,t,r){return e||t!==a[r+1]&&void 0!==a[r+1]},!1)}function Ds(e){return!za(document)||"TH"===e.nodeName.toUpperCase()}function ws(e){return!(!e.summary||!e.caption)&&e.summary.toLowerCase()===Xi(e.caption).toLowerCase()}function xs(e,t){return e=e.getAttribute("scope").toLowerCase(),-1!==t.values.indexOf(e)}function Es(e){var t=[],r=ps(e),a=Ko(e);return r.forEach(function(e){Ba(e)&&hs(e)&&!_l(e)&&(ms(e,a).some(function(e){return null!==e&&!!Ba(e)})||t.push(e))}),!t.length||(this.relatedNodes(t),!1)}function As(e){for(var t=[],n=[],o=[],r=0;r<e.rows.length;r++)for(var a=e.rows[r],i=0;i<a.cells.length;i++)t.push(a.cells[i]);var l=t.reduce(function(e,t){return t.getAttribute("id")&&e.push(t.getAttribute("id")),e},[]);return t.forEach(function(e){var t,r=!1;if(e.hasAttribute("headers")){var a=e.getAttribute("headers").trim();if(!a)return n.push(e);a=Oo(a);0!==a.length&&(e.getAttribute("id")&&(r=-1!==a.indexOf(e.getAttribute("id").trim())),t=a.some(function(e){return!l.includes(e)}),(r||t)&&o.push(e))}}),0<o.length?(this.relatedNodes(o),!1):!n.length||void this.relatedNodes(n)}function Cs(e){var t=ps(e),a=this,n=[];t.forEach(function(e){var t=e.getAttribute("headers");t&&(n=n.concat(t.split(/\s+/)));e=e.getAttribute("aria-labelledby");e&&(n=n.concat(e.split(/\s+/)))});var t=t.filter(function(e){return""!==ka(e.textContent)&&("TH"===e.nodeName.toUpperCase()||-1!==["rowheader","columnheader"].indexOf(e.getAttribute("role")))}),o=Ko(e),i=!0;return t.forEach(function(t){var e,r;t.getAttribute("id")&&n.includes(t.getAttribute("id"))||(e=Xo(t,o),r=!1,(r=!(r=Qo(t)?bs("down",e,o).find(function(e){return!Qo(e)&&ms(e,o).includes(t)}):r)&&Zo(t)?bs("right",e,o).find(function(e){return!Zo(e)&&ms(e,o).includes(t)}):r)||a.relatedNodes(t),i=i&&r)}),!!i||void 0}function Fs(e,t,r){if(!["SCRIPT","HEAD","TITLE","NOSCRIPT","STYLE","TEMPLATE"].includes(e.nodeName.toUpperCase())&&Pa(r)){r=window.getComputedStyle(e);if("none"===r.getPropertyValue("display"))return;if("hidden"===r.getPropertyValue("visibility")){e=sa(e),e=e&&window.getComputedStyle(e);if(!e||"hidden"!==e.getPropertyValue("visibility"))return}}return!0}var ks={};o(ks,{Color:function(){return ln},centerPointOfRect:function(){return Ns},elementHasImage:function(){return Qa},elementIsDistinct:function(){return Ts},filteredRectStack:function(){return Os},flattenColors:function(){return Ss},getBackgroundColor:function(){return Ls},getBackgroundStack:function(){return Ps},getContrast:function(){return Ms},getForegroundColor:function(){return qs},getOwnBackgroundColor:function(){return sn},getRectStack:function(){return _s},getTextShadowColors:function(){return Bs},hasValidContrastRatio:function(){return js},incompleteData:function(){return Ja}});var Ns=function(e){if(!(e.left>window.innerWidth||e.top>window.innerHeight))return{x:Math.min(Math.ceil(e.left+e.width/2),window.innerWidth-1),y:Math.min(Math.ceil(e.top+e.height/2),window.innerHeight-1)}};function Rs(e){return e.getPropertyValue("font-family").split(/[,;]/g).map(function(e){return e.trim().toLowerCase()})}var Ts=function(e,t){var a=window.getComputedStyle(e);if("none"!==a.getPropertyValue("background-image"))return!0;if(["border-bottom","border-top","outline"].reduce(function(e,t){var r=new ln;return r.parseString(a.getPropertyValue(t+"-color")),e||"none"!==a.getPropertyValue(t+"-style")&&0<parseFloat(a.getPropertyValue(t+"-width"))&&0!==r.alpha},!1))return!0;var r=window.getComputedStyle(t);return Rs(a)[0]!==Rs(r)[0]||(e=["text-decoration-line","text-decoration-style","font-weight","font-style","font-size"].reduce(function(e,t){return e||a.getPropertyValue(t)!==r.getPropertyValue(t)},!1),t=a.getPropertyValue("text-decoration"),e=t.split(" ").length<3?e||t!==r.getPropertyValue("text-decoration"):e)};var _s=function(e){var t=Ca(e);return!(e=Na(e))||e.length<=1?[t]:e.some(function(e){return void 0===e})?null:(e.splice(0,0,t),e)};var Os=function(n){var o=_s(n);if(o&&1===o.length)return o[0];if(o&&1<o.length){var i,l=o.shift();return o.forEach(function(e,t){var r,a;0!==t&&(r=o[t-1],a=o[t],i=r.every(function(e,t){return e===a[t]})||l.includes(n))}),i?o[0]:(Ja.set("bgColor","elmPartiallyObscuring"),null)}return Ja.set("bgColor","outsideViewport"),null};var Ss=function(e,t){var r=(1-(n=e.alpha))*t.red+n*e.red,a=(1-n)*t.green+n*e.green,n=(1-n)*t.blue+n*e.blue,e=e.alpha+t.alpha*(1-e.alpha);return new ln(r,a,n,e)};function Is(e,t,r){if(0<e)for(var a=e-1;0<=a;a--){if(function(e,t){var r=e.getClientRects()[0],a=hn(r.left,r.top);if(a)for(var n=0;n<a.length;n++)if(a[n]!==e&&a[n]===t)return 1}(r,t[a]))return 1;t.splice(a,1)}}var Ps=function(e){var t,r,a=Os(e);if(null===a)return null;a=pn(a,e),r=(t=a).indexOf(document.body),n=t,(1<r||-1===r)&&!Qa(document.documentElement)&&0===sn(window.getComputedStyle(document.documentElement)).alpha&&(1<r&&n.splice(r,1),n.splice(t.indexOf(document.documentElement),1),n.push(document.body));var n=(a=n).indexOf(e);return Is(n,a,e)?(Ja.set("bgColor","bgOverlap"),null):-1!==n?a:null};var Bs=function(e){var n=(r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).minRatio,o=r.maxRatio,i=window.getComputedStyle(e),t=i.getPropertyValue("text-shadow");if("none"===t)return[];var r=i.getPropertyValue("font-size"),l=parseInt(r);it(!1===isNaN(l),"Unable to determine font-size value ".concat(r));var s=[];return function(e){var t={pixels:[]},r=e.trim(),a=[t];if(!r)return[];for(;r;){var n=r.match(/^rgba?\([0-9,.\s]+\)/i)||r.match(/^[a-z]+/i)||r.match(/^#[0-9a-f]+/i),o=r.match(/^([0-9.-]+)px/i)||r.match(/^(0)/);if(n)it(!t.colorStr,"Multiple colors identified in text-shadow: ".concat(e)),r=r.replace(n[0],"").trim(),t.colorStr=n[0];else if(o){it(t.pixels.length<3,"Too many pixel units in text-shadow: ".concat(e)),r=r.replace(o[0],"").trim();o=parseFloat(("."===o[1][0]?"0":"")+o[1]);t.pixels.push(o)}else{if(","!==r[0])throw new Error("Unable to process text-shadows: ".concat(e));it(2<=t.pixels.length,"Missing pixel value in text-shadow: ".concat(e)),t={pixels:[]},a.push(t),r=r.substr(1).trim()}}return a}(t).forEach(function(e){var t=e.colorStr,r=e.pixels,t=t||i.getPropertyValue("color"),a=g1(r,3),e=a[0],r=a[1],a=a[2],a=void 0===a?0:a;(!n||l*n<=a)&&(!o||a<l*o)&&(a=function(e){var t=e.colorStr,r=e.offsetX,a=e.offsetY,n=e.blurRadius,e=e.fontSize;if(n<r||n<a)return new ln(0,0,0,0);a=new ln;return a.parseString(t),a.alpha*=function(e,t){return 0!==e?.185/(e/t+.4):1}(n,e),a}({colorStr:t,offsetY:e,offsetX:r,blurRadius:a,fontSize:l}),s.push(a))}),s};var Ls=function(i){var l=1<arguments.length&&void 0!==arguments[1]?arguments[1]:[],s=Bs(i,{minRatio:2<arguments.length&&void 0!==arguments[2]?arguments[2]:.1}),e=Ps(i);return(e||[]).some(function(e){var t,r,a,n=window.getComputedStyle(e),o=sn(n);return a=o,(a=(t=i)!==(r=e)&&!mn(t,r)&&0!==a.alpha)&&Ja.set("bgColor","elmPartiallyObscured"),a||Qa(e,n)?(s=null,l.push(e),!0):0!==o.alpha&&(l.push(e),s.push(o),1===o.alpha)}),null===s||null===e?null:(s.push(new ln(255,255,255,1)),s.reduce(Ss))};var Ms=function(e,t){return t&&e?(t.alpha<1&&(t=Ss(t,e)),e=e.getRelativeLuminance(),t=t.getRelativeLuminance(),(Math.max(t,e)+.05)/(Math.min(t,e)+.05)):null};var qs=function(e,t,r){var a=window.getComputedStyle(e),n=new ln;if(n.parseString(a.getPropertyValue("color")),a=function e(t){if(!t)return 1;var r=Dr(t);if(r&&void 0!==r._opacity&&null!==r._opacity)return r._opacity;t=window.getComputedStyle(t).getPropertyValue("opacity")*e(t.parentElement);return r&&(r._opacity=t),t}(e),n.alpha=n.alpha*a,1===n.alpha)return n;if(null===(r=r||Ls(e,[]))){a=Ja.get("bgColor");return Ja.set("fgColor",a),null}if(n.alpha<1){e=Bs(e,{minRatio:0});return[n].concat(h1(e),[r]).reduce(Ss)}return Ss(n,r)};var js=function(e,t,r,a){return t=Ms(e,t),{isValid:(r=a&&Math.ceil(72*r)/96<14||!a&&Math.ceil(72*r)/96<18?4.5:3)<t,contrastRatio:t,expectedContrastRatio:r}};var Us=Jn(function(e,t){var r=window.getComputedStyle(e,t),e=function(e,t){return r.getPropertyValue(e)===t};if(e("content","none")||e("display","none")||e("visibility","hidden")||!1===e("position","absolute"))return 0;if(0===sn(r).alpha&&e("background-image","none"))return 0;t=Vs(r.getPropertyValue("width")),e=Vs(r.getPropertyValue("height"));return"px"!==t.unit||"px"!==e.unit?0===t.value||0===e.value?0:1/0:t.value*e.value});function Vs(e){var t=g1(e.match(/^([0-9.]+)([a-z]+)$/i)||[],3),e=t[1],t=t[2],t=void 0===t?"":t;return{value:parseFloat(void 0===e?"":e),unit:t.toLowerCase()}}function Hs(e,t){e=e.getRelativeLuminance(),t=t.getRelativeLuminance();return(Math.max(e,t)+.05)/(Math.min(e,t)+.05)}var zs=["block","list-item","table","flex","grid","inline-block"];function $s(e){e=window.getComputedStyle(e).getPropertyValue("display");return-1!==zs.indexOf(e)||"table-"===e.substr(0,6)}function Ws(e){if($s(e))return!1;for(var t=sa(e);1===t.nodeType&&!$s(t);)t=sa(t);if(this.relatedNodes([t]),Ts(e,t))return!0;var r=qs(e),a=qs(t);if(r&&a){var n=Hs(r,a);if(1===n)return!0;if(3<=n)return Ja.set("fgColor","bgContrast"),this.data({messageKey:Ja.get("fgColor")}),void Ja.clear();if(r=Ls(e),a=Ls(t),!r||!a||3<=Hs(r,a)){a=r&&a?"bgContrast":Ja.get("bgColor");return Ja.set("fgColor",a),this.data({messageKey:Ja.get("fgColor")}),void Ja.clear()}return!1}}n=function(e,t,r){if("input"!==r.props.nodeName)return!0;var a=["text","search","number","tel"],n=["text","search","url"],o={bday:["text","search","date"],email:["text","search","email"],username:["text","search","email"],"street-address":["text"],tel:["text","search","tel"],"tel-country-code":["text","search","tel"],"tel-national":["text","search","tel"],"tel-area-code":["text","search","tel"],"tel-local":["text","search","tel"],"tel-local-prefix":["text","search","tel"],"tel-local-suffix":["text","search","tel"],"tel-extension":["text","search","tel"],"cc-number":a,"cc-exp":["text","search","month","tel"],"cc-exp-month":a,"cc-exp-year":a,"cc-csc":a,"transaction-amount":a,"bday-day":a,"bday-month":a,"bday-year":a,"new-password":["text","search","password"],"current-password":["text","search","password"],url:n,photo:n,impp:n};return"object"===Gu(t)&&Object.keys(t).forEach(function(e){o[e]||(o[e]=[]),o[e]=o[e].concat(t[e])}),n=(n=r.attr("autocomplete").split(/\s+/g).map(function(e){return e.toLowerCase()}))[n.length-1],!!sl.stateTerms.includes(n)||(n=o[n],r=r.hasAttr("type")?ka(r.attr("type")).toLowerCase():"text",r=So().includes(r)?r:"text",void 0===n?"text"===r:n.includes(r))};wt=function(e,t,r){return r=r.attr("autocomplete")||"",ul(r,t)};var Gs=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=2<arguments.length?arguments[2]:void 0;if(!t.attribute||"string"!=typeof t.attribute)throw new TypeError("attr-non-space-content requires options.attribute to be a string");return r.hasAttr(t.attribute)?(t=r.attr(t.attribute),!!ka(t)||(this.data({messageKey:"emptyAttr"}),!1)):(this.data({messageKey:"noAttr"}),!1)};Cr=function(e){return e.some(function(e){return!0===e.result})&&e.forEach(function(e){e.result=!0}),e};tn=function(e,t,r){if(!t||!t.selector||"string"!=typeof t.selector)throw new TypeError("has-descendant requires options.selector to be a string");return t=ho(r,t.selector,function(e){return va(e.actualNode,!0)}),this.relatedNodes(t.map(function(e){return e.actualNode})),0<t.length};rn=function(e,t,r){try{return""!==ka(ki(r))}catch(e){return}};Lo=function(e,t,r){return hi(r,t.matcher)};oi=function(e){return e.filter(function(e){return"ignored"!==e.data})};ii=function(e,t,r){if(!t||!t.selector||"string"!=typeof t.selector)throw new TypeError("page-no-duplicate requires options.selector to be a string");var a="page-no-duplicate;"+t.selector;if(!yr.get(a)){yr.set(a,!0);a=ho(axe._tree[0],t.selector,function(e){return va(e.actualNode,!0)});return"string"==typeof t.nativeScopeFilter&&(a=a.filter(function(e){return e.actualNode.hasAttribute("role")||!ia(e,t.nativeScopeFilter)})),this.relatedNodes(a.filter(function(e){return e!==r}).map(function(e){return e.actualNode})),a.length<=1}this.data("ignored")};function Ys(e,t){var r=null===(r=t.data)||void 0===r?void 0:r.headingOrder,a=Xs(t.node.ancestry,1);if(!r)return e;t=r.map(function(e){return function(e,t){t=t.concat(e.ancestry);return v1({},e,{ancestry:t})}(e,a)}),r=function(e,t){for(;t.length;){var r=Ks(e,t);if(-1!==r)return r;t=Xs(t,1)}return-1}(e,a);return-1===r?e.push.apply(e,h1(t)):e.splice.apply(e,[r,0].concat(h1(t))),e}function Ks(e,t){return e.findIndex(function(e){return Kn(e.ancestry,t)})}function Xs(e,t){return e.slice(0,e.length-t)}li=function(){if(t=yr.get("headingOrder"))return!0;var e=ho(axe._tree[0],"h1, h2, h3, h4, h5, h6, [role=heading], iframe, frame",function(e){return va(e.actualNode,!0)}),t=e.map(function(e){return{ancestry:[gr(e.actualNode)],level:(r=(a=wi(t=e))&&a.includes("heading"),e=t.attr("aria-level"),a=parseInt(e,10),t=g1(t.props.nodeName.match(/h(\d)/)||[],2)[1],r?t&&!e?parseInt(t,10):isNaN(a)||a<1?t?parseInt(t,10):2:a||-1:-1)};var t,r,a});return this.data({headingOrder:t}),yr.set("headingOrder",e),!0};si=function(e){if(e.length<2)return e;function t(r){var e=i[r],a=(o=e.data).name,t=o.urlProps;if(s[a])return"continue";var n=i.filter(function(e,t){return e.data.name===a&&t!==r}),o=n.every(function(e){return function r(a,n){if(!a||!n)return!1;var e=Object.getOwnPropertyNames(a),t=Object.getOwnPropertyNames(n);return e.length===t.length&&e.every(function(e){var t=a[e],e=n[e];return Gu(t)===Gu(e)&&("object"==typeof t||"object"==typeof e?r(t,e):t===e)})}(e.data.urlProps,t)});n.length&&!o&&(e.result=void 0),e.relatedNodes=[],(o=e.relatedNodes).push.apply(o,h1(n.map(function(e){return e.relatedNodes[0]}))),s[a]=n,l.push(e)}for(var i=e.filter(function(e){return void 0!==e.result}),l=[],s={},r=0;r<i.length;r++)t(r);return l},ui={};o(ui,{aria:function(){return Uo},color:function(){return ks},dom:function(){return ra},forms:function(){return Js},matches:function(){return hi},standards:function(){return zl},table:function(){return ds},text:function(){return Qi},utils:function(){return rt}});var Js={};o(Js,{isAriaCombobox:function(){return ji},isAriaListbox:function(){return qi},isAriaRange:function(){return Vi},isAriaTextbox:function(){return Mi},isDisabled:function(){return Zs},isNativeSelect:function(){return Li},isNativeTextbox:function(){return Bi}});var Qs=["fieldset","button","select","input","textarea"];var Zs=function e(t){if("boolean"==typeof(n=t._isDisabled))return n;var r=t.props.nodeName,a=t.attr("aria-disabled"),n=!(!Qs.includes(r)||!t.hasAttr("disabled"))||(a?"true"===a.toLowerCase():!!t.parent&&e(t.parent));return t._isDisabled=n};ci=function(e,t,r){if(r=Qi.accessibleTextVirtual(r),r=Qi.sanitize(Qi.removeUnicode(r,{emoji:!0,nonBmp:!0,punctuations:!0})).toLowerCase()){r={name:r,urlProps:ra.urlPropsFromAttribute(e,"href")};return this.data(r),this.relatedNodes([e]),!0}};di=function(e,t,r){return Co(r,"a[href]").some(function(e){return/^#[^/!]/.test(e.actualNode.getAttribute("href"))})};Fl=function(e,t,r){var a=r.attr("content")||"",r=a.split(/[;,]/);return""===a||"0"===r[0]};function eu(e){e=window.getComputedStyle(function(e){for(var t=e,r=e.textContent.trim(),a=r;a===r&&void 0!==t;){var n=-1;if(0===(e=t).children.length)return e;for(;n++,""===(a=e.children[n].textContent.trim())&&n+1<e.children.length;);t=e.children[n]}return e}(e));return{fontWeight:function(e){switch(e){case"lighter":return 100;case"normal":return 400;case"bold":return 700;case"bolder":return 900}return e=parseInt(e),isNaN(e)?400:e}(e.getPropertyValue("font-weight")),fontSize:parseInt(e.getPropertyValue("font-size")),isItalic:"italic"===e.getPropertyValue("font-style")}}function tu(r,a,e){return e.reduce(function(e,t){return e||(!t.size||r.fontSize/t.size>a.fontSize)&&(!t.weight||r.fontWeight-t.weight>a.fontWeight)&&(!t.italic||r.isItalic&&!a.isItalic)},!1)}var Cl=function(e,t,r){var a=Array.from(e.parentNode.children),n=a.indexOf(e),o=(t=t||{}).margins||[],t=a.slice(n+1).find(function(e){return"P"===e.nodeName.toUpperCase()}),n=a.slice(0,n).reverse().find(function(e){return"P"===e.nodeName.toUpperCase()}),e=eu(e),t=t?eu(t):null,n=n?eu(n):null;return!t||!tu(e,t,o)||!!((r=ia(r,"blockquote"))&&"BLOCKQUOTE"===r.nodeName.toUpperCase()||n&&!tu(e,n,o))&&void 0},ru=wl("landmark"),au=["alert","log","status"];function nu(e,t){var r,a,n,o,i=e.actualNode;if(a=t,n=(r=e).actualNode,o=wi(r),n=(n.getAttribute("aria-live")||"").toLowerCase().trim(),["assertive","polite"].includes(n)||au.includes(o)||(ru.includes(o)||!(!a.regionMatcher||!hi(r,a.regionMatcher)))||["iframe","frame"].includes(e.props.nodeName)||dn(e.actualNode)&&ua(e.actualNode,"href")||!va(i,!0)){for(var l=e;l;)l._hasRegionDescendant=!0,l=l.parent;return["iframe","frame"].includes(e.props.nodeName)?[e]:[]}return i!==document.body&&Ba(i,!0)?[e]:e.children.filter(function(e){return 1===e.actualNode.nodeType}).map(function(e){return nu(e,t)}).reduce(function(e,t){return e.concat(t)},[])}function ou(e,t){t=iu(t),e=iu(e);return!(!t||!e)&&t.includes(e)}function iu(e){e=ol(e,{emoji:!0,nonBmp:!0,punctuations:!0});return ka(e)}function lu(e){return""!==(e||"").trim()}var su=function(e,t,r){return r.initiator};var uu=function(e,t){try{return"svg"===t.props.nodeName?!0:!!Pr(t,"svg")}catch(e){return!1}};kl=function(e,t){var r=gi(t).namingMethods;return(!r||0===r.length)&&("combobox"!==Go(t)||!Co(t,'input:not([type="hidden"])').length)};var cu={"abstractrole-evaluate":Ll,"aria-allowed-attr-evaluate":Ml,"aria-allowed-role-evaluate":ql,"aria-errormessage-evaluate":jl,"aria-hidden-body-evaluate":Ul,"aria-level-evaluate":Vl,"aria-prohibited-attr-evaluate":Hl,"aria-required-attr-evaluate":$l,"aria-required-children-evaluate":Gl,"aria-required-parent-evaluate":Kl,"aria-roledescription-evaluate":Xl,"aria-unsupported-attr-evaluate":Jl,"aria-valid-attr-evaluate":Ql,"aria-valid-attr-value-evaluate":Zl,"fallbackrole-evaluate":es,"has-global-aria-attribute-evaluate":ts,"has-implicit-chromium-role-matches":rs,"has-widget-role-evaluate":as,"invalidrole-evaluate":ns,"is-element-focusable-evaluate":os,"no-implicit-explicit-label-evaluate":is,"unsupportedrole-evaluate":ls,"valid-scrollable-semantics-evaluate":cs,"caption-faked-evaluate":ys,"html5-scope-evaluate":Ds,"same-caption-summary-evaluate":ws,"scope-value-evaluate":xs,"td-has-header-evaluate":Es,"td-headers-attr-evaluate":As,"th-has-data-cells-evaluate":Cs,"hidden-content-evaluate":Fs,"color-contrast-evaluate":function(e,t,r){var a=t.ignoreUnicode,n=t.ignoreLength,o=t.ignorePseudo,i=t.boldValue,l=t.boldTextPt,s=t.largeTextPt,u=t.contrastRatio,c=t.shadowOutlineEmMax,d=t.pseudoSizeThreshold;if(!va(e,!1))return!0;if(t=Oa(r,!1,!0),!(a&&(f=al(p=t,m={nonBmp:!0}),m=""===ka(ol(p,m)),f&&m))){var p=function(e,t){var r=t.pseudoSizeThreshold,r=void 0===r?.25:r,t=t.ignorePseudo;if(!(t===void 0?false:t)){var t=e.boundingClientRect,a=t.width*t.height*r;do{var n=Us(e.actualNode,":before"),o=Us(e.actualNode,":after");if(a<n+o)return e}while(e=e.parent)}}(r,{ignorePseudo:o,pseudoSizeThreshold:d});if(p)return this.data({messageKey:"pseudoContent"}),void this.relatedNodes(p.actualNode);var f=[],m=Ls(e,f,c),r=qs(e,!1,m),o=Bs(e,{minRatio:.001,maxRatio:c}),d=window.getComputedStyle(e),p=parseFloat(d.getPropertyValue("font-size")),c=d.getPropertyValue("font-weight"),e=parseFloat(c)>=i||"bold"===c,d=null,i=null,c=null;0===o.length?d=Ms(m,r):r&&m&&(c=[].concat(h1(o),[m]).reduce(Ss),h=Ms(m,c),o=Ms(c,r),d=Math.max(h,o),i=o<h?"shadowOnBgColor":"fgOnShadowColor");var h=Math.ceil(72*p)/96,l=e&&h<l||!e&&h<s?u.normal:u.large,h=l.expected,s=l.minThreshold,u=l.maxThreshold,l=h<d;if("number"==typeof s&&d<s||"number"==typeof u&&u<d)return!0;u=Math.floor(100*d)/100,d=null===m?Ja.get("bgColor"):i,i=1==u,t=1===t.length;return(i?d=Ja.set("bgColor","equalRatio"):t&&!n&&(d="shortTextContent"),this.data({fgColor:r?r.toHexString():void 0,bgColor:m?m.toHexString():void 0,contrastRatio:u,fontSize:"".concat((72*p/96).toFixed(1),"pt (").concat(p,"px)"),fontWeight:e?"bold":"normal",messageKey:d,expectedContrastRatio:h+":1",shadowColor:c?c.toHexString():void 0}),null===r||null===m||i||t&&!n&&!l)?(d=null,Ja.clear(),void this.relatedNodes(f)):(l||this.relatedNodes(f),l)}this.data({messageKey:"nonBmp"})},"link-in-text-block-evaluate":Ws,"autocomplete-appropriate-evaluate":n,"autocomplete-valid-evaluate":wt,"attr-non-space-content-evaluate":Gs,"has-descendant-after":Cr,"has-descendant-evaluate":tn,"has-text-content-evaluate":rn,"matches-definition-evaluate":Lo,"page-no-duplicate-after":oi,"page-no-duplicate-evaluate":ii,"heading-order-after":function(e){var t,r=((t=h1(t=e)).sort(function(e,t){e=e.node,t=t.node;return e.ancestry.length-t.ancestry.length}),t.reduce(Ys,[]).filter(function(e){return-1!==e.level}));return e.forEach(function(e){e.result=function(e,t){var r=Ks(t,e.node.ancestry),e=null!==(e=null===(e=t[r])||void 0===e?void 0:e.level)&&void 0!==e?e:-1,t=null!==(t=null===(t=t[r-1])||void 0===t?void 0:t.level)&&void 0!==t?t:-1;if(0===r)return!0;if(-1!==e)return e-t<=1}(e,r)}),e},"heading-order-evaluate":li,"identical-links-same-purpose-after":si,"identical-links-same-purpose-evaluate":ci,"internal-link-present-evaluate":di,"meta-refresh-evaluate":Fl,"p-as-heading-evaluate":Cl,"region-evaluate":function(e,t,r){var a=yr.get("regionlessNodes");return this.data({isIframe:["iframe","frame"].includes(r.props.nodeName)}),a||(a=nu(axe._tree[0],t).map(function(e){for(;e.parent&&!e.parent._hasRegionDescendant&&e.parent.actualNode!==document.body;)e=e.parent;return e}).filter(function(e,t,r){return r.indexOf(e)===t}),yr.set("regionlessNodes",a)),!a.includes(r)},"region-after":function(e){var o=e.filter(function(e){return e.data.isIframe});return e.forEach(function(e){if(!e.result&&1!==e.node.ancestry.length){var t,r=e.node.ancestry.slice(0,-1),a=D1(o);try{for(a.s();!(t=a.n()).done;){var n=t.value;if(Kn(r,n.node.ancestry)){e.result=n.result;break}}}catch(e){a.e(e)}finally{a.f()}}}),o.forEach(function(e){e.result||(e.result=!0)}),e},"skip-link-evaluate":function(e){return!!(e=ua(e,"href"))&&(va(e,!0)||void 0)},"unique-frame-title-after":function(e){var t={};return e.forEach(function(e){t[e.data]=void 0!==t[e.data]?++t[e.data]:0}),e.forEach(function(e){e.result=!!t[e.data]}),e},"unique-frame-title-evaluate":function(e,t,r){return r=ka(r.attr("title")).toLowerCase(),this.data(r),!0},"aria-label-evaluate":function(e,t,r){return!!ka(zo(r))},"aria-labelledby-evaluate":function(e,t,r){try{return!!ka(Ji(r))}catch(e){return}},"avoid-inline-spacing-evaluate":function(t,e){return!(0<(e=e.cssProperties.filter(function(e){if("important"===t.style.getPropertyPriority(e))return e})).length)||(this.data(e),!1)},"doc-has-title-evaluate":function(){var e=document.title;return!!ka(e)},"exists-evaluate":function(){},"has-alt-evaluate":function(e,t,r){var a=r.props.nodeName;return!!["img","input","area"].includes(a)&&r.hasAttr("alt")},"is-on-screen-evaluate":function(e){return va(e,!1)&&!fa(e)},"non-empty-if-present-evaluate":function(e,t,r){var a=r.props.nodeName,n=(r.attr("type")||"").toLowerCase();return(r=r.attr("value"))&&this.data({messageKey:"has-label"}),!("input"!==a||!["submit","reset"].includes(n))&&null===r},"presentational-role-evaluate":function(e,t,r){var a=wi(r),n=Go(r);if(["presentation","none"].includes(a))return this.data({role:a}),!0;if(!["presentation","none"].includes(n))return!1;var o=Vo().some(function(e){return r.hasAttr(e)}),n=Va(r),n=o&&!n?"globalAria":!o&&n?"focusable":"both";return this.data({messageKey:n,role:a}),!1},"svg-non-empty-title-evaluate":function(e,t,r){if(r.children){r=r.children.find(function(e){return"title"===e.props.nodeName});if(!r)return this.data({messageKey:"noTitle"}),!1;try{if(""===Oa(r))return this.data({messageKey:"emptyTitle"}),!1}catch(e){return}return!0}},"css-orientation-lock-evaluate":function(e,t,r,a){var a=void 0===(a=(a||{}).cssom)?void 0:a,n=void 0===(t=(t||{}).degreeThreshold)?0:t;if(a&&a.length){function o(){var e=c[u],e=s[e],r=e.root,e=e.rules.filter(d);if(!e.length)return"continue";e.forEach(function(e){e=e.cssRules;Array.from(e).forEach(function(e){var t=function(e){var t=e.selectorText,e=e.style;if(!t||e.length<=0)return!1;t=e.transform||e.webkitTransform||e.msTransform||!1;if(!t)return!1;e=t.match(/(rotate|rotateZ|rotate3d|matrix|matrix3d)\(([^)]+)\)(?!.*(rotate|rotateZ|rotate3d|matrix|matrix3d))/);if(!e)return!1;t=g1(e,3),e=t[1],t=t[2],t=function(e,t){switch(e){case"rotate":case"rotateZ":return p(t);case"rotate3d":var r=g1(t.split(",").map(function(e){return e.trim()}),4),a=r[2],r=r[3];return 0===parseInt(a)?void 0:p(r);case"matrix":case"matrix3d":return function(e){var t=e.split(",");if(t.length<=6){var e=g1(t,2),r=e[0],e=e[1];return f(Math.atan2(parseFloat(e),parseFloat(r)))}r=parseFloat(t[8]),r=Math.asin(r),r=Math.cos(r);return f(Math.acos(parseFloat(t[0])/r))}(t);default:return}}(e,t);if(!t)return!1;if(t=Math.abs(t),Math.abs(t-180)%180<=n)return!1;return Math.abs(t-90)%90<=n}(e);t&&"HTML"!==e.selectorText.toUpperCase()&&(e=Array.from(r.querySelectorAll(e.selectorText))||[],l=l.concat(e)),i=i||t})})}for(var i=!1,l=[],s=a.reduce(function(e,t){var r=t.sheet,a=t.root,t=t.shadowId,t=t||"topDocument";if(e[t]||(e[t]={root:a,rules:[]}),!r||!r.cssRules)return e;r=Array.from(r.cssRules);return e[t].rules=e[t].rules.concat(r),e},{}),u=0,c=Object.keys(s);u<c.length;u++)o();return i?(l.length&&this.relatedNodes(l),!1):!0}function d(e){var t=e.type,e=e.cssText;return 4===t&&(/orientation:\s*landscape/i.test(e)||/orientation:\s*portrait/i.test(e))}function p(e){var t=g1(e.match(/(deg|grad|rad|turn)/)||[],1)[0];if(t){var r=parseFloat(e.replace(t,""));switch(t){case"rad":return f(r);case"grad":return function(e){(e%=400)<0&&(e+=400);return Math.round(e/400*360)}(r);case"turn":return Math.round(360/(1/r));case"deg":default:return parseInt(r)}}}function f(e){return Math.round(e*(180/Math.PI))}},"meta-viewport-scale-evaluate":function(e,t,r){var a=(n=t||{}).scaleMinimum,t=void 0===a?2:a,n=void 0!==(a=n.lowerBound)&&a;return!(a=r.attr("content")||"")||(r=a.split(/[;,]/).reduce(function(e,t){var r=t.trim();if(!r)return e;t=g1(r.split("="),2),r=t[0],t=t[1];if(!r||!t)return e;r=r.toLowerCase().trim(),t=t.toLowerCase().trim();return"maximum-scale"===r&&"yes"===t&&(t=1),"maximum-scale"===r&&parseFloat(t)<0||(e[r]=t),e},{}),!!(n&&r["maximum-scale"]&&parseFloat(r["maximum-scale"])<n)||(n||"no"!==r["user-scalable"]?(a=parseFloat(r["user-scalable"]),!n&&r["user-scalable"]&&(a||0===a)&&-1<a&&a<1?(this.data("user-scalable"),!1):!(r["maximum-scale"]&&parseFloat(r["maximum-scale"])<t)||(this.data("maximum-scale"),!1)):(this.data("user-scalable=no"),!1)))},"duplicate-id-after":function(e){var t=[];return e.filter(function(e){return-1===t.indexOf(e.data)&&(t.push(e.data),!0)})},"duplicate-id-evaluate":function(t){var e=t.getAttribute("id").trim();if(!e)return!0;var r=na(t);return(r=Array.from(r.querySelectorAll('[id="'.concat(Kt(e),'"]'))).filter(function(e){return e!==t})).length&&this.relatedNodes(r),this.data(e),0===r.length},"accesskeys-after":function(e){var r={};return e.filter(function(e){if(!e.data)return!1;var t=e.data.toUpperCase();return r[t]?(r[t].relatedNodes.push(e.relatedNodes[0]),!1):((r[t]=e).relatedNodes=[],!0)}).map(function(e){return e.result=!!e.relatedNodes.length,e})},"accesskeys-evaluate":function(e){return va(e,!1)&&(this.data(e.getAttribute("accesskey")),this.relatedNodes([e])),!0},"focusable-content-evaluate":function(e,t,r){var a=r.tabbableElements;return!!a&&0<a.filter(function(e){return e!==r}).length},"focusable-disabled-evaluate":function(e,t,r){var a=["BUTTON","FIELDSET","INPUT","SELECT","TEXTAREA"];return!(r=r.tabbableElements)||!r.length||(r=r.reduce(function(e,t){var r=t.actualNode,t=r.nodeName.toUpperCase();return a.includes(t)&&e.push(r),e},[]),this.relatedNodes(r),!(!r.length||!Ya())||0===r.length)},"focusable-element-evaluate":function(e,t,r){if(r.hasAttr("contenteditable")&&function e(t){var t=t.attr("contenteditable");if("true"===t||""===t)return!0;if("false"===t)return!1;t=Pr(r.parent,"[contenteditable]");if(!t)return!1;return e(t)}(r))return!0;var a=r.isFocusable,n=parseInt(r.attr("tabindex"),10);return(n=isNaN(n)?null:n)?a&&0<=n:a},"focusable-modal-open-evaluate":function(e,t,r){return!(r=r.tabbableElements.map(function(e){return e.actualNode}))||!r.length||(!Ya()||void this.relatedNodes(r))},"focusable-no-name-evaluate":function(e,t,r){var a=r.attr("tabindex");if(!(Va(r)&&-1<a))return!1;try{return!Ki(r)}catch(e){return}},"focusable-not-tabbable-evaluate":function(e,t,r){var a=["BUTTON","FIELDSET","INPUT","SELECT","TEXTAREA"];return!(r=r.tabbableElements)||!r.length||(r=r.reduce(function(e,t){var r=t.actualNode,t=r.nodeName.toUpperCase();return a.includes(t)||e.push(r),e},[]),this.relatedNodes(r),!!(0<r.length&&Ya())||0===r.length)},"landmark-is-top-level-evaluate":function(e){var t=wl("landmark"),r=sa(e),a=wi(e);for(this.data({role:a});r;){var n=r.getAttribute("role");if((n=!n&&"FORM"!==r.nodeName.toUpperCase()?vi(r):n)&&t.includes(n)&&("main"!==n||"complementary"!==a))return!1;r=sa(r)}return!0},"no-focusable-content-evaluate":function(e,t,r){if(r.children)try{return!r.children.some(function e(t){if(Va(t))return!0;if(t.children)return t.children.some(e);if(1===t.props.nodeType)throw new Error("Cannot determine children");return!1})}catch(e){return}},"tabindex-evaluate":function(e,t,r){return r=parseInt(r.attr("tabindex"),10),!!isNaN(r)||r<=0},"alt-space-value-evaluate":function(e,t,r){return"string"==typeof(r=r.attr("alt"))&&/^\s+$/.test(r)},"duplicate-img-label-evaluate":function(e,t,r){return!["none","presentation"].includes(wi(r))&&(!!(t=Pr(r,t.parentSelector))&&(""!==(t=Oa(t,!0).toLowerCase())&&t===Ki(r).toLowerCase()))},"explicit-evaluate":function(e,t,r){if(r.attr("id")){if(!r.actualNode)return;var a=na(r.actualNode),r=Kt(r.attr("id")),r=Array.from(a.querySelectorAll('label[for="'.concat(r,'"]')));if(r.length)try{return r.some(function(e){return!va(e)||!!Xi(e)})}catch(e){return}}return!1},"help-same-as-label-evaluate":function(e,t,r){var a=dl(r),r=e.getAttribute("title");return!!a&&(r||(r="",e.getAttribute("aria-describedby")&&(r=_a(e,"aria-describedby").map(function(e){return e?Xi(e):""}).join(""))),ka(r)===ka(a))},"hidden-explicit-label-evaluate":function(e,t,r){if(r.hasAttr("id")){if(!r.actualNode)return;var a,n=na(e),e=Kt(e.getAttribute("id")),e=n.querySelector('label[for="'.concat(e,'"]'));if(e&&!va(e,!0)){try{a=Ki(r).trim()}catch(e){return}return""===a}}return!1},"implicit-evaluate":function(e,t,r){try{var a=Pr(r,"label");return a?!!Ki(a,{inControlContext:!0}):!1}catch(e){return}},"label-content-name-mismatch-evaluate":function(e,t,r){var a=(t=t||{}).pixelThreshold,n=t.occuranceThreshold,e=Xi(e).toLowerCase();if(!(il(e)<1)){r=ml(r).filter(function(e){return!ll(e,a,n)}).map(function(e){return e.actualNode.nodeValue}).join(""),r=ka(r).toLowerCase();return!r||(il(r)<1?!!ou(r,e)||void 0:ou(r,e))}},"multiple-label-evaluate":function(e){var t=Kt(e.getAttribute("id")),r=e.parentNode,a=(a=na(e)).documentElement||a,n=Array.from(a.querySelectorAll('label[for="'.concat(t,'"]')));for(n.length&&(n=n.filter(function(e){return va(e)}));r;)"LABEL"===r.nodeName.toUpperCase()&&-1===n.indexOf(r)&&n.push(r),r=r.parentNode;if(this.relatedNodes(n),1<n.length){t=n.filter(function(e){return va(e,!0)});return 1<t.length?void 0:!_a(e,"aria-labelledby").includes(t[0])&&void 0}return!1},"title-only-evaluate":function(e,t,r){var a=dl(r),n=Ei(r),r=r.attr("aria-describedby");return!(a||!n&&!r)},"landmark-is-unique-after":function(e){var r=[];return e.filter(function(t){var e=r.find(function(e){return t.data.role===e.data.role&&t.data.accessibleText===e.data.accessibleText});return e?(e.result=!1,e.relatedNodes.push(t.relatedNodes[0]),!1):(r.push(t),t.relatedNodes=[],!0)})},"landmark-is-unique-evaluate":function(e,t,r){var a=wi(e),r=(r=Ki(r))?r.toLowerCase():null;return this.data({role:a,accessibleText:r}),this.relatedNodes([e]),!0},"has-lang-evaluate":function(e,t,r){var a=void 0!==document&&rr(document);return t.attributes.includes("xml:lang")&&t.attributes.includes("lang")&&lu(r.attr("xml:lang"))&&!lu(r.attr("lang"))&&!a?(this.data({messageKey:"noXHTML"}),!1):!!t.attributes.some(function(e){return lu(r.attr(e))})||(this.data({messageKey:"noLang"}),!1)},"valid-lang-evaluate":function(e,n,o){var i=[];return n.attributes.forEach(function(e){var t,r,a=o.attr(e);"string"==typeof a&&(t=En(a),r=n.value?!n.value.map(En).includes(t):!Bo(t),(""!==t&&r||""!==a&&!ka(a))&&i.push(e+'="'+o.attr(e)+'"'))}),!!i.length&&(this.data(i),!0)},"xml-lang-mismatch-evaluate":function(e,t,r){return En(r.attr("lang"))===En(r.attr("xml:lang"))},"dlitem-evaluate":function(e){var t=sa(e),r=t.nodeName.toUpperCase(),e=Go(t);return"DIV"===r&&["presentation","none",null].includes(e)&&(r=(t=sa(t)).nodeName.toUpperCase(),e=Go(t)),"DL"===r&&!(e&&!["presentation","none","list"].includes(e))},"listitem-evaluate":function(e){var t=sa(e);if(t){e=t.nodeName.toUpperCase(),t=(t.getAttribute("role")||"").toLowerCase();return!!["presentation","none","list"].includes(t)||(t&&Wo(t)?(this.data({messageKey:"roleNotValid"}),!1):["UL","OL"].includes(e))}},"only-dlitems-evaluate":function(e,t,r){var n=["definition","term","list"];return(r=r.children.reduce(function(e,t){var r=t.actualNode;return"DIV"===r.nodeName.toUpperCase()&&null===wi(r)?e.concat(t.children):e.concat(t)},[]).reduce(function(e,t){var r=t.actualNode,a=r.nodeName.toUpperCase();return 1===r.nodeType&&va(r,!0,!1)?(t=Go(r),("DT"!==a&&"DD"!==a||t)&&(n.includes(t)||e.badNodes.push(r))):3===r.nodeType&&""!==r.nodeValue.trim()&&(e.hasNonEmptyTextNode=!0),e},{badNodes:[],hasNonEmptyTextNode:!1})).badNodes.length&&this.relatedNodes(r.badNodes),!!r.badNodes.length||r.hasNonEmptyTextNode},"only-listitems-evaluate":function(e,t,r){var n=!1,o=!1,i=!0,l=[],s=[],u=[];return r.children.forEach(function(e){var t,r,a=e.actualNode;3!==a.nodeType||""===a.nodeValue.trim()?1===a.nodeType&&va(a,!0,!1)&&(i=!1,t="LI"===a.nodeName.toUpperCase(),e="listitem"===(r=wi(e)),t||e||l.push(a),t&&!e&&(s.push(a),u.includes(r)||u.push(r)),e&&(o=!0)):n=!0}),n||l.length?(this.relatedNodes(l),!0):!i&&!o&&(this.relatedNodes(s),this.data({messageKey:"roleNotValid",roles:u.join(", ")}),!0)},"structured-dlitems-evaluate":function(e,t,r){var a=r.children;if(!a||!a.length)return!1;for(var n,o=!1,i=!1,l=0;l<a.length;l++){if((o="DT"===(n=a[l].props.nodeName.toUpperCase())?!0:o)&&"DD"===n)return!1;"DD"===n&&(i=!0)}return o||i},"caption-evaluate":function(e,t,r){return!Co(r,"track").some(function(e){return"captions"===(e.attr("kind")||"").toLowerCase()})&&void 0},"frame-tested-evaluate":function(e,t){return!t.isViolation&&void 0},"frame-tested-after":function(e){var r={};return e.filter(function(e){if("html"!==e.node.ancestry[e.node.ancestry.length-1]){var t=e.node.ancestry.flat(1/0).join(" > ");return r[t]=e,!0}e=e.node.ancestry.slice(0,e.node.ancestry.length-1).flat(1/0).join(" > ");return r[e]&&(r[e].result=!0),!1})},"no-autoplay-audio-evaluate":function(e,t){if(e.duration){t=t.allowedDuration,t=void 0===t?3:t;return function(e){if(!e.currentSrc)return 0;var t=function(e){e=e.match(/#t=(.*)/);if(e)return g1(e,2)[1].split(",").map(function(e){return(/:/.test(e)?function(e){var t=e.split(":"),r=0,a=1;for(;0<t.length;)r+=a*parseInt(t.pop(),10),a*=60;return parseFloat(r)}:parseFloat)(e)})}(e.currentSrc);return t?1!==t.length?Math.abs(t[1]-t[0]):Math.abs(e.duration-t[0]):Math.abs(e.duration-(e.currentTime||0))}(e)<=t&&!e.hasAttribute("loop")||!!e.hasAttribute("controls")}console.warn("axe.utils.preloadMedia did not load metadata")},"aria-allowed-attr-matches":function(e,t){var r=/^aria-/,a=t.attrNames;if(a.length)for(var n=0,o=a.length;n<o;n++)if(r.test(a[n]))return!0;return!1},"aria-allowed-role-matches":function(e,t){return null!==Go(t,{dpub:!0,fallback:!0})},"aria-form-field-name-matches":kl,"aria-has-attr-matches":function(e,t){var r=/^aria-/;return t.attrNames.some(function(e){return r.test(e)})},"aria-hidden-focus-matches":function(e){return function e(t){return!t||"true"!==t.getAttribute("aria-hidden")&&e(sa(t))}(sa(e))},"aria-required-children-matches":function(e,t){return t=Go(t,{dpub:!0}),!!Il(t)},"aria-required-parent-matches":function(e,t){return t=Go(t),!!Sl(t)},"autocomplete-matches":function(e,t){var r=t.attr("autocomplete");if(!r||""===ka(r))return!1;var a=t.props.nodeName;if(!1===["textarea","input","select"].includes(a))return!1;if("input"===a&&["submit","reset","button","hidden"].includes(t.props.type))return!1;if(r=t.attr("aria-disabled")||"false",t.hasAttr("disabled")||"true"===r.toLowerCase())return!1;if(a=t.attr("role"),"-1"===(r=t.attr("tabindex"))&&a){a=on.ariaRoles[a];if(void 0===a||"widget"!==a.type)return!1}return!("-1"===r&&t.actualNode&&!va(t.actualNode,!1)&&!va(t.actualNode,!0))},"bypass-matches":function(e,t,r){return!su(e,t,r)||!!e.querySelector("a[href]")},"color-contrast-matches":function(e,t){var r=(a=t.props).nodeName,a=a.type;if("option"===r)return!1;if("select"===r&&!e.options.length)return!1;if("input"===r&&["hidden","range","color","checkbox","radio","image"].includes(a))return!1;if(Zs(t))return!1;if(["input","select","textarea"].includes(r)){a=window.getComputedStyle(e),a=parseInt(a.getPropertyValue("text-indent"),10);if(a){var n={top:(n=e.getBoundingClientRect()).top,bottom:n.bottom,left:n.left+a,right:n.right+a};if(!bn(n,e))return!1}return!0}if(n=ia(t,"label"),"label"===r||n){var r=n||e,o=n?Dr(n):t;if(r.htmlFor){r=na(r).getElementById(r.htmlFor),r=r&&Dr(r);if(r&&Zs(r))return!1}o=Co(o,'input:not([type="hidden"],[type="image"],[type="button"],[type="submit"],[type="reset"]), select, textarea')[0];if(o&&Zs(o))return!1}for(var i,l=[],s=t;s;)s.props.id&&(i=gl(s).filter(function(e){return Oo(e.getAttribute("aria-labelledby")||"").includes(s.props.id)}).map(function(e){return Dr(e)}),l.push.apply(l,h1(i))),s=s.parent;if(0<l.length&&l.every(Zs))return!1;if(!(o=Oa(t,!1,!0))||!ol(o,{emoji:!0,nonBmp:!1,punctuations:!0}))return!1;for(var u=document.createRange(),c=t.children,d=0;d<c.length;d++){var p=c[d];3===p.actualNode.nodeType&&""!==ka(p.actualNode.nodeValue)&&u.selectNodeContents(p.actualNode)}for(var f=u.getClientRects(),m=0;m<f.length;m++)if(bn(f[m],e))return!0;return!1},"data-table-large-matches":function(e){if(gs(e)){e=Ko(e);return 3<=e.length&&3<=e[0].length&&3<=e[1].length&&3<=e[2].length}return!1},"data-table-matches":function(e){return gs(e)},"duplicate-id-active-matches":function(e){var t=e.getAttribute("id").trim(),t='*[id="'.concat(Kt(t),'"]'),t=Array.from(na(e).querySelectorAll(t));return!Tl(e)&&t.some(Va)},"duplicate-id-aria-matches":function(e){return Tl(e)},"duplicate-id-misc-matches":function(e){var t=e.getAttribute("id").trim(),t='*[id="'.concat(Kt(t),'"]'),t=Array.from(na(e).querySelectorAll(t));return!Tl(e)&&t.every(function(e){return!Va(e)})},"frame-focusable-content-matches":function(e,t,r){var a;return!r.initiator&&!r.focusable&&1<(null===(a=r.size)||void 0===a?void 0:a.width)*(null===(r=r.size)||void 0===r?void 0:r.height)},"frame-title-has-text-matches":function(e){return e=e.getAttribute("title"),!!ka(e)},"heading-matches":function(e){var t;return(t=e.hasAttribute("role")?e.getAttribute("role").split(/\s+/i).filter(axe.commons.aria.isValidRole):t)&&0<t.length?t.includes("heading"):"heading"===axe.commons.aria.implicitRole(e)},"html-namespace-matches":function(e,t){return!uu(e,t)},"identical-links-same-purpose-matches":function(e,t){return!!Ki(t)&&(!(e=wi(e))||"link"===e)},"inserted-into-focus-order-matches":function(e){return Ha(e)},"is-initiator-matches":su,"label-content-name-mismatch-matches":function(e,t){var r=wi(e);return!!r&&(!!wl("widget").includes(r)&&(!!El().includes(r)&&(!(!ka(zo(t))&&!ka(Ji(e)))&&!!ka(Oa(t)))))},"label-matches":function(e,t){return"input"!==t.props.nodeName||!1===t.hasAttr("type")||(t=t.attr("type").toLowerCase(),!1===["hidden","image","button","submit","reset"].includes(t))},"landmark-has-body-context-matches":function(e,t){return e.hasAttribute("role")||!ia(t,"article, aside, main, nav, section")},"landmark-unique-matches":function(e,t){var r,a,n,o=["article","aside","main","nav","section"].join(",");return a=(r=t).actualNode,n=wl("landmark"),!!(t=wi(a))&&("HEADER"===(a=a.nodeName.toUpperCase())||"FOOTER"===a?!ia(r,o):"SECTION"!==a&&"FORM"!==a?0<=n.indexOf(t)||"region"===t:!!Ki(r))&&va(e,!0)},"layout-table-matches":function(e){return!gs(e)&&!Va(e)},"link-in-text-block-matches":function(e){var t=ka(e.textContent),r=e.getAttribute("role");return(!r||"link"===r)&&(!!t&&(!!va(e,!1)&&Ga(e)))},"nested-interactive-matches":function(e,t){return!!(t=wi(t))&&!!on.ariaRoles[t].childrenPresentational},"no-autoplay-audio-matches":function(e){return!!e.currentSrc&&(!e.hasAttribute("paused")&&!e.hasAttribute("muted"))},"no-empty-role-matches":function(e,t){return!!t.hasAttr("role")&&!!t.attr("role").trim()},"no-explicit-name-required-matches":function(e,t){var r=Go(t);return!(r&&!["none","presentation"].includes(r))||!(!(en[r]||{}).accessibleNameRequired&&!Va(t))},"no-naming-method-matches":kl,"no-role-matches":function(e){return!e.getAttribute("role")},"not-html-matches":function(e,t){return"html"!==t.props.nodeName},"p-as-heading-matches":function(e){var t=Array.from(e.parentNode.childNodes),r=e.textContent.trim();return!(0===r.length||2<=(r.match(/[.!?:;](?![.!?:;])/g)||[]).length)&&0!==t.slice(t.indexOf(e)+1).filter(function(e){return"P"===e.nodeName.toUpperCase()&&""!==e.textContent.trim()}).length},"scrollable-region-focusable-matches":function(e,t){if(!1==!!qn(e,13))return!1;var r=Go(t);if(Za["aria-haspopup"].values.includes(r)){if(Pr(t,'[role~="combobox"]'))return!1;r=t.attr("id");if(r){e=aa(e);if(Array.from(e.querySelectorAll('[aria-owns~="'.concat(r,'"], [aria-controls~="').concat(r,'"]'))).some(function(e){return Oo(e.getAttribute("role")).includes("combobox")}))return!1}}return!!Co(t,"*").some(function(e){return Pa(e,!0,!0)})},"skip-link-matches":function(e){return dn(e)&&fa(e)},"svg-namespace-matches":uu,"window-is-top-matches":function(e){return e.ownerDocument.defaultView.self===e.ownerDocument.defaultView.top},"xml-lang-mismatch-matches":function(e){var t=En(e.getAttribute("lang")),e=En(e.getAttribute("xml:lang"));return Bo(t)&&Bo(e)}};var du=function(e){this.id=e.id,this.data=null,this.relatedNodes=[],this.result=null};function pu(e){if("string"!=typeof e)return e;if(cu[e])return cu[e];if(/^\s*function[\s\w]*\(/.test(e))return new Function("return "+e+";")();throw new ReferenceError("Function ID does not exist in the metadata-function-map: ".concat(e))}function fu(e){var t=0<arguments.length&&void 0!==e?e:{};return t=Array.isArray(t)||"object"!==Gu(t)?{value:t}:t}function mu(e){e&&(this.id=e.id,this.configure(e))}mu.prototype.enabled=!0,mu.prototype.run=function(t,e,r,a,n){var o=((e=e||{}).hasOwnProperty("enabled")?e:this).enabled,i=this.getOptions(e.options);if(o){var l,o=new du(this),e=Er(o,e,a,n);try{l=this.evaluate.call(e,t.actualNode,i,t,r)}catch(e){return t&&t.actualNode&&(e.errorNode=new xr(t).toJSON()),void n(e)}e.isAsync||(o.result=l,a(o))}else a(null)},mu.prototype.runSync=function(t,e,r){var a=(e=e||{}).enabled;if(!(void 0===a?this.enabled:a))return null;var n,o=this.getOptions(e.options),a=new du(this),e=Er(a,e);e.async=function(){throw new Error("Cannot run async check while in a synchronous run")};try{n=this.evaluate.call(e,t.actualNode,o,t,r)}catch(e){throw t&&t.actualNode&&(e.errorNode=new xr(t).toJSON()),e}return a.result=n,a},mu.prototype.configure=function(t){var r=this;t.evaluate&&!cu[t.evaluate]||(this._internalCheck=!0),t.hasOwnProperty("enabled")&&(this.enabled=t.enabled),t.hasOwnProperty("options")&&(this._internalCheck?this.options=fu(t.options):this.options=t.options),["evaluate","after"].filter(function(e){return t.hasOwnProperty(e)}).forEach(function(e){return r[e]=pu(t[e])})},mu.prototype.getOptions=function(e){return this._internalCheck?Qr(this.options,fu(e||{})):e||this.options};var hu=mu;var gu=function(e){this.id=e.id,this.result=Je.NA,this.pageLevel=e.pageLevel,this.impact=null,this.nodes=[]};function vu(e,t){this._audit=t,this.id=e.id,this.selector=e.selector||"*",e.impact&&(it(Je.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact),this.excludeHidden="boolean"!=typeof e.excludeHidden||e.excludeHidden,this.enabled="boolean"!=typeof e.enabled||e.enabled,this.pageLevel="boolean"==typeof e.pageLevel&&e.pageLevel,this.reviewOnFail="boolean"==typeof e.reviewOnFail&&e.reviewOnFail,this.any=e.any||[],this.all=e.all||[],this.none=e.none||[],this.tags=e.tags||[],this.preload=!!e.preload,e.matches&&(this.matches=pu(e.matches))}function bu(e){if(e.length){var r=!1,a={};return e.forEach(function(e){var t=e.results.filter(function(e){return e});(a[e.type]=t).length&&(r=!0)}),r?a:null}}vu.prototype.matches=function(){return!0},vu.prototype.gather=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r="mark_gather_start_"+this.id,a="mark_gather_end_"+this.id,n="mark_isHidden_start_"+this.id,o="mark_isHidden_end_"+this.id;t.performanceTimer&&lo.mark(r);var i=Ro(this.selector,e);return this.excludeHidden&&(t.performanceTimer&&lo.mark(n),i=i.filter(function(e){return!$n(e.actualNode)}),t.performanceTimer&&(lo.mark(o),lo.measure("rule_"+this.id+"#gather_axe.utils.isHidden",n,o))),t.performanceTimer&&(lo.mark(a),lo.measure("rule_"+this.id+"#gather",r,a)),i},vu.prototype.runChecks=function(t,n,o,i,r,e){var l=this,s=jr();this[t].forEach(function(e){var r=l._audit.checks[e.id||e],a=On(r,l.id,o);s.defer(function(e,t){r.run(n,a,i,e,t)})}),s.then(function(e){e=e.filter(function(e){return e}),r({type:t,results:e})}).catch(e)},vu.prototype.runChecksSync=function(e,r,a,n){var o=this,i=[];return this[e].forEach(function(e){var t=o._audit.checks[e.id||e],e=On(t,o.id,a);i.push(t.runSync(r,e,n))}),{type:e,results:i=i.filter(function(e){return e})}},vu.prototype.run=function(n){var o=this,i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=2<arguments.length?arguments[2]:void 0,t=3<arguments.length?arguments[3]:void 0;i.performanceTimer&&this._trackPerformance();var r,l=jr(),s=new gu(this);try{r=this.gatherAndMatchNodes(n,i)}catch(e){return void t(new Yu({cause:e,ruleId:this.id}))}i.performanceTimer&&this._logGatherPerformance(r),r.forEach(function(a){l.defer(function(r,t){var e=jr();["any","all","none"].forEach(function(r){e.defer(function(e,t){o.runChecks(r,a,i,n,e,t)})}),e.then(function(e){var t=bu(e);t&&(t.node=new xr(a,i),s.nodes.push(t),o.reviewOnFail&&(["any","all"].forEach(function(e){t[e].forEach(function(e){!1===e.result&&(e.result=void 0)})}),t.none.forEach(function(e){!0===e.result&&(e.result=void 0)}))),r()}).catch(function(e){return t(e)})})}),l.defer(function(e){return setTimeout(e,0)}),i.performanceTimer&&this._logRulePerformance(),l.then(function(){return e(s)}).catch(function(e){return t(e)})},vu.prototype.runSync=function(n){var o=this,i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};i.performanceTimer&&this._trackPerformance();var e,l=new gu(this);try{e=this.gatherAndMatchNodes(n,i)}catch(e){throw new Yu({cause:e,ruleId:this.id})}return i.performanceTimer&&this._logGatherPerformance(e),e.forEach(function(t){var r=[];["any","all","none"].forEach(function(e){r.push(o.runChecksSync(e,t,i,n))});var a=bu(r);a&&(a.node=t.actualNode?new xr(t,i):null,l.nodes.push(a),o.reviewOnFail&&(["any","all"].forEach(function(e){a[e].forEach(function(e){!1===e.result&&(e.result=void 0)})}),a.none.forEach(function(e){!0===e.result&&(e.result=void 0)})))}),i.performanceTimer&&this._logRulePerformance(),l},vu.prototype._trackPerformance=function(){this._markStart="mark_rule_start_"+this.id,this._markEnd="mark_rule_end_"+this.id,this._markChecksStart="mark_runchecks_start_"+this.id,this._markChecksEnd="mark_runchecks_end_"+this.id},vu.prototype._logGatherPerformance=function(e){Qe("gather (",e.length,"):",lo.timeElapsed()+"ms"),lo.mark(this._markChecksStart)},vu.prototype._logRulePerformance=function(){lo.mark(this._markChecksEnd),lo.mark(this._markEnd),lo.measure("runchecks_"+this.id,this._markChecksStart,this._markChecksEnd),lo.measure("rule_"+this.id,this._markStart,this._markEnd)},vu.prototype.gatherAndMatchNodes=function(t,e){var r=this,a="mark_matches_start_"+this.id,n="mark_matches_end_"+this.id,o=this.gather(t,e);return e.performanceTimer&&lo.mark(a),o=o.filter(function(e){return r.matches(e.actualNode,e,t)}),e.performanceTimer&&(lo.mark(n),lo.measure("rule_"+this.id+"#matches",a,n)),o},vu.prototype.after=function(i,l){var t,e,a,r=Wr(t=this).map(function(e){e=t._audit.checks[e.id||e];return e&&"function"==typeof e.after?e:null}).filter(Boolean),s=this.id;return r.forEach(function(e){var r,a,t=(n=i.nodes,r=e.id,a=[],n.forEach(function(t){Wr(t).forEach(function(e){e.id===r&&(e.node=t.node,a.push(e))})}),a),n=On(e,s,l),o=e.after(t,n);t.forEach(function(e){delete e.node,-1===o.indexOf(e)&&(e.filtered=!0)})}),i.nodes=(a=["any","all","none"],r=(e=i).nodes.filter(function(t){var r=0;return a.forEach(function(e){t[e]=t[e].filter(function(e){return!0!==e.filtered}),r+=t[e].length}),0<r}),r=e.pageLevel&&r.length?[r.reduce(function(t,r){if(t)return a.forEach(function(e){t[e].push.apply(t[e],r[e])}),t})]:r),i},vu.prototype.configure=function(e){e.hasOwnProperty("selector")&&(this.selector=e.selector),e.hasOwnProperty("excludeHidden")&&(this.excludeHidden="boolean"!=typeof e.excludeHidden||e.excludeHidden),e.hasOwnProperty("enabled")&&(this.enabled="boolean"!=typeof e.enabled||e.enabled),e.hasOwnProperty("pageLevel")&&(this.pageLevel="boolean"==typeof e.pageLevel&&e.pageLevel),e.hasOwnProperty("reviewOnFail")&&(this.reviewOnFail="boolean"==typeof e.reviewOnFail&&e.reviewOnFail),e.hasOwnProperty("any")&&(this.any=e.any),e.hasOwnProperty("all")&&(this.all=e.all),e.hasOwnProperty("none")&&(this.none=e.none),e.hasOwnProperty("tags")&&(this.tags=e.tags),e.hasOwnProperty("matches")&&(this.matches=pu(e.matches)),e.impact&&(it(Je.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact)};var yu=vu,Du=c(We()),wu=/\{\{.+?\}\}/g;function xu(){return window.origin||(window.location&&window.location.origin?window.location.origin:void 0)}function Eu(e,t,r){for(var a=0,n=e.length;a<n;a++)t[r](e[a])}function Au(e){b1(this,Au),this.lang="en",this.defaultConfig=e,this.standards=on,this._init(),this._defaultLocale=null}function Cu(a,e,n){return n.performanceTimer&&lo.mark("mark_rule_start_"+a.id),function(t,r){a.run(e,n,function(e){t(e)},function(e){n.debug?r(e):(e=Object.assign(new gu(a),{result:Je.CANTTELL,description:"An error occured while running this rule",message:e.message,stack:e.stack,error:e,errorNode:e.errorNode}),t(e))})}}function Fu(e,t,r){var a=e.brand,n=e.application,e=e.lang;return Je.helpUrlBase+a+"/"+(r||axe.version.substring(0,axe.version.lastIndexOf(".")))+"/"+t+"?application="+encodeURIComponent(n)+(e&&"en"!==e?"&lang="+encodeURIComponent(e):"")}var ku=(y1(Au,[{key:"_setDefaultLocale",value:function(){if(!this._defaultLocale){for(var e={checks:{},rules:{},failureSummaries:{},incompleteFallbackMessage:"",lang:this.lang},t=Object.keys(this.data.checks),r=0;r<t.length;r++){var a=t[r],n=this.data.checks[a].messages,o=n.pass,i=n.fail,n=n.incomplete;e.checks[a]={pass:o,fail:i,incomplete:n}}for(var l=Object.keys(this.data.rules),s=0;s<l.length;s++){var u=l[s],c=this.data.rules[u],d=c.description,c=c.help;e.rules[u]={description:d,help:c}}for(var p=Object.keys(this.data.failureSummaries),f=0;f<p.length;f++){var m=p[f],h=this.data.failureSummaries[m].failureMessage;e.failureSummaries[m]={failureMessage:h}}e.incompleteFallbackMessage=this.data.incompleteFallbackMessage,this._defaultLocale=e}}},{key:"_resetLocale",value:function(){var e=this._defaultLocale;e&&this.applyLocale(e)}},{key:"_applyCheckLocale",value:function(e){for(var t,r,a,n=Object.keys(e),o=0;o<n.length;o++){var i=n[o];if(!this.data.checks[i])throw new Error('Locale provided for unknown check: "'.concat(i,'"'));this.data.checks[i]=(t=this.data.checks[i],r=e[i],i=a=void 0,a=r.pass,i=r.fail,"string"==typeof a&&wu.test(a)&&(a=Du.default.compile(a)),"string"==typeof i&&wu.test(i)&&(i=Du.default.compile(i)),v1({},t,{messages:{pass:a||t.messages.pass,fail:i||t.messages.fail,incomplete:"object"===Gu(t.messages.incomplete)?v1({},t.messages.incomplete,r.incomplete):r.incomplete}}))}}},{key:"_applyRuleLocale",value:function(e){for(var t,r,a=Object.keys(e),n=0;n<a.length;n++){var o=a[n];if(!this.data.rules[o])throw new Error('Locale provided for unknown rule: "'.concat(o,'"'));this.data.rules[o]=(t=this.data.rules[o],r=e[o],o=void 0,o=r.help,r=r.description,"string"==typeof o&&wu.test(o)&&(o=Du.default.compile(o)),"string"==typeof r&&wu.test(r)&&(r=Du.default.compile(r)),v1({},t,{help:o||t.help,description:r||t.description}))}}},{key:"_applyFailureSummaries",value:function(e){for(var t=Object.keys(e),r=0;r<t.length;r++){var a=t[r];if(!this.data.failureSummaries[a])throw new Error('Locale provided for unknown failureMessage: "'.concat(a,'"'));this.data.failureSummaries[a]=function(e,t){t=t.failureMessage;return v1({},e,{failureMessage:(t="string"==typeof t&&wu.test(t)?Du.default.compile(t):t)||e.failureMessage})}(this.data.failureSummaries[a],e[a])}}},{key:"applyLocale",value:function(e){var t,r;this._setDefaultLocale(),e.checks&&this._applyCheckLocale(e.checks),e.rules&&this._applyRuleLocale(e.rules),e.failureSummaries&&this._applyFailureSummaries(e.failureSummaries,"failureSummaries"),e.incompleteFallbackMessage&&(this.data.incompleteFallbackMessage=(t=this.data.incompleteFallbackMessage,(r="string"==typeof(r=e.incompleteFallbackMessage)&&wu.test(r)?Du.default.compile(r):r)||t)),e.lang&&(this.lang=e.lang)}},{key:"setAllowedOrigins",value:function(e){var t=xu();this.allowedOrigins=[];var r,a=D1(e);try{for(a.s();!(r=a.n()).done;){var n=r.value;if(n===Je.allOrigins)return void(this.allowedOrigins=["*"]);n!==Je.sameOrigin?this.allowedOrigins.push(n):t&&this.allowedOrigins.push(t)}}catch(e){a.e(e)}finally{a.f()}}},{key:"_init",value:function(){var e,t,t=((e=this.defaultConfig)?(t=Ar(e)).commons=e.commons:t={},t.reporter=t.reporter||null,t.noHtml=t.noHtml||!1,t.allowedOrigins||(e=xu(),t.allowedOrigins=e?[e]:[]),t.rules=t.rules||[],t.checks=t.checks||[],t.data=v1({checks:{},rules:{}},t.data),t);this.lang=t.lang||"en",this.reporter=t.reporter,this.commands={},this.rules=[],this.checks={},this.brand="axe",this.application="axeAPI",this.tagExclude=["experimental"],this.noHtml=t.noHtml,this.allowedOrigins=t.allowedOrigins,Eu(t.rules,this,"addRule"),Eu(t.checks,this,"addCheck"),this.data={},this.data.checks=t.data&&t.data.checks||{},this.data.rules=t.data&&t.data.rules||{},this.data.failureSummaries=t.data&&t.data.failureSummaries||{},this.data.incompleteFallbackMessage=t.data&&t.data.incompleteFallbackMessage||"",this._constructHelpUrls()}},{key:"registerCommand",value:function(e){this.commands[e.id]=e.callback}},{key:"addRule",value:function(e){e.metadata&&(this.data.rules[e.id]=e.metadata);var t=this.getRule(e.id);t?t.configure(e):this.rules.push(new yu(e,this))}},{key:"addCheck",value:function(e){var t=e.metadata;"object"===Gu(t)&&(this.data.checks[e.id]=t,"object"===Gu(t.messages)&&Object.keys(t.messages).filter(function(e){return t.messages.hasOwnProperty(e)&&"string"==typeof t.messages[e]}).forEach(function(e){0===t.messages[e].indexOf("function")&&(t.messages[e]=new Function("return "+t.messages[e]+";")())})),this.checks[e.id]?this.checks[e.id].configure(e):this.checks[e.id]=new hu(e)}},{key:"run",value:function(n,o,i,l){this.normalizeOptions(o),axe._selectCache=[];var r,a,e=(t=this.rules,r=n,a=o,t.reduce(function(e,t){return ko(t,r,a)&&(t.preload?e.later:e.now).push(t),e},{now:[],later:[]})),t=e.now,s=e.later,u=jr();t.forEach(function(e){u.defer(Cu(e,n,o))});e=jr();s.length&&e.defer(function(t){xo(o).then(function(e){return t(e)}).catch(function(e){console.warn("Couldn't load preload assets: ",e),t(void 0)})});t=jr();t.defer(u),t.defer(e),t.then(function(e){var t=e.pop();t&&t.length&&((t=t[0])&&(n=v1({},n,t)));var r=e[0];if(!s.length)return axe._selectCache=void 0,void i(r.filter(function(e){return!!e}));var a=jr();s.forEach(function(e){e=Cu(e,n,o);a.defer(e)}),a.then(function(e){axe._selectCache=void 0,i(r.concat(e).filter(function(e){return!!e}))}).catch(l)}).catch(l)}},{key:"after",value:function(e,r){var a=this.rules;return e.map(function(e){var t=Gr(a,"id",e.id);if(!t)throw new Error("Result for unknown rule. You may be running mismatch axe-core versions");return t.after(e,r)})}},{key:"getRule",value:function(t){return this.rules.find(function(e){return e.id===t})}},{key:"normalizeOptions",value:function(e){var t=[],r=[];if(this.rules.forEach(function(e){r.push(e.id),e.tags.forEach(function(e){t.includes(e)||t.push(e)})}),["object","string"].includes(Gu(e.runOnly))){if("string"==typeof e.runOnly&&(e.runOnly=[e.runOnly]),Array.isArray(e.runOnly)){var a=e.runOnly.find(function(e){return t.includes(e)}),n=e.runOnly.find(function(e){return r.includes(e)});if(a&&n)throw new Error("runOnly cannot be both rules and tags");e.runOnly=n?{type:"rule",values:e.runOnly}:{type:"tag",values:e.runOnly}}n=e.runOnly;if(n.value&&!n.values&&(n.values=n.value,delete n.value),!Array.isArray(n.values)||0===n.values.length)throw new Error("runOnly.values must be a non-empty array");if(["rule","rules"].includes(n.type))n.type="rule",n.values.forEach(function(e){if(!r.includes(e))throw new Error("unknown rule `"+e+"` in options.runOnly")});else{if(!["tag","tags",void 0].includes(n.type))throw new Error("Unknown runOnly type '".concat(n.type,"'"));n.type="tag";n=n.values.filter(function(e){return!t.includes(e)});0!==n.length&&Qe("Could not find tags `"+n.join("`, `")+"`")}}return"object"===Gu(e.rules)&&Object.keys(e.rules).forEach(function(e){if(!r.includes(e))throw new Error("unknown rule `"+e+"` in options.rules")}),e}},{key:"setBranding",value:function(e){var t={brand:this.brand,application:this.application};e&&e.hasOwnProperty("brand")&&e.brand&&"string"==typeof e.brand&&(this.brand=e.brand),e&&e.hasOwnProperty("application")&&e.application&&"string"==typeof e.application&&(this.application=e.application),this._constructHelpUrls(t)}},{key:"_constructHelpUrls",value:function(){var r=this,a=0<arguments.length&&void 0!==arguments[0]?arguments[0]:null,n=(axe.version.match(/^[1-9][0-9]*\.[0-9]+/)||["x.y"])[0];this.rules.forEach(function(e){r.data.rules[e.id]||(r.data.rules[e.id]={});var t=r.data.rules[e.id];("string"!=typeof t.helpUrl||a&&t.helpUrl===Fu(a,e.id,n))&&(t.helpUrl=Fu(r,e.id,n))})}},{key:"resetRulesAndChecks",value:function(){this._init(),this._resetLocale()}}]),Au),di={};o(di,{CssSelectorParser:function(){return Nu.CssSelectorParser},doT:function(){return Ru.default},emojiRegexText:function(){return Tu.default},memoize:function(){return _u.default}});var Nu=c(m()),Ru=c(We()),Tu=c($e()),_u=c(ze()),Fl=c(Ge()),Cl=c(Ye());c(Ke());"Promise"in window||Fl.default.polyfill(),"Uint32Array"in window||(window.Uint32Array=Cl.Uint32Array),window.Uint32Array&&("some"in window.Uint32Array.prototype||Object.defineProperty(window.Uint32Array.prototype,"some",{value:Array.prototype.some}),"reduce"in window.Uint32Array.prototype||Object.defineProperty(window.Uint32Array.prototype,"reduce",{value:Array.prototype.reduce}));var Ou,Su=function(t,r){if(t=t||function(){},r=r||axe.log,!axe._audit)throw new Error("No audit configured");var a=axe.utils.queue(),n=[];Object.keys(axe.plugins).forEach(function(e){a.defer(function(t){function r(e){n.push(e),t()}try{axe.plugins[e].cleanup(t,r)}catch(e){r(e)}})});var e=axe.utils.getFlattenedTree(document.body);axe.utils.querySelectorAll(e,"iframe, frame").forEach(function(r){a.defer(function(e,t){return axe.utils.sendCommandToFrame(r.actualNode,{command:"cleanup-plugin"},e,t)})}),a.then(function(e){0===n.length?t(e):r(n)}).catch(r)},Iu={};function Pu(e){return Iu.hasOwnProperty(e)}function Bu(e){return"string"==typeof e&&Iu[e]?Iu[e]:"function"==typeof e?e:Ou}kl=function(e){var t=axe._audit;if(!t)throw new Error("No audit configured");if(e.axeVersion||e.ver){var r=e.axeVersion||e.ver;if(!/^\d+\.\d+\.\d+(-canary)?/.test(r))throw new Error("Invalid configured version ".concat(r));var a=g1(r.split("-"),2),n=a[0],o=a[1],i=g1(n.split(".").map(Number),3),l=i[0],s=i[1],u=i[2],c=g1(axe.version.split("-"),2),a=c[0],n=c[1],i=g1(a.split(".").map(Number),3),c=i[0],a=i[1],i=i[2];if(l!==c||a<s||a===s&&i<u||l===c&&s===a&&u===i&&o&&o!==n)throw new Error("Configured version ".concat(r," is not compatible with current axe version ").concat(axe.version))}if(e.reporter&&("function"==typeof e.reporter||Pu(e.reporter))&&(t.reporter=e.reporter),e.checks){if(!Array.isArray(e.checks))throw new TypeError("Checks property must be an array");e.checks.forEach(function(e){if(!e.id)throw new TypeError("Configured check ".concat(JSON.stringify(e)," is invalid. Checks must be an object with at least an id property"));t.addCheck(e)})}var d,p=[];if(e.rules){if(!Array.isArray(e.rules))throw new TypeError("Rules property must be an array");e.rules.forEach(function(e){if(!e.id)throw new TypeError("Configured rule ".concat(JSON.stringify(e)," is invalid. Rules must be an object with at least an id property"));p.push(e.id),t.addRule(e)})}if(e.disableOtherRules&&t.rules.forEach(function(e){!1===p.includes(e.id)&&(e.enabled=!1)}),void 0!==e.branding?t.setBranding(e.branding):t._constructHelpUrls(),e.tagExclude&&(t.tagExclude=e.tagExclude),e.locale&&t.applyLocale(e.locale),e.standards&&(d=e.standards,Object.keys(nn).forEach(function(e){d[e]&&(nn[e]=Qr(nn[e],d[e]))})),e.noHtml&&(t.noHtml=!0),e.allowedOrigins){if(!Array.isArray(e.allowedOrigins))throw new TypeError("Allowed origins property must be an array");if(e.allowedOrigins.includes("*"))throw new Error('"*" is not allowed. Use "'.concat(Je.allOrigins,'" instead'));t.setAllowedOrigins(e.allowedOrigins)}};o=function(e){var t=(e=e||[]).length?axe._audit.rules.filter(function(t){return!!e.filter(function(e){return-1!==t.tags.indexOf(e)}).length}):axe._audit.rules,r=axe._audit.data.rules||{};return t.map(function(e){var t=r[e.id]||{};return{ruleId:e.id,description:t.description,help:t.help,helpUrl:t.helpUrl,tags:e.tags}})};function Lu(){yr.get("globalDocumentSet")&&(yr.set("globalDocumentSet",!1),document=null),yr.get("globalWindowSet")&&(yr.set("globalWindowSet",!1),window=null)}var Mu=function(){Lu(),axe._memoizedFns.forEach(function(e){return e.clear()}),yr.clear(),axe._tree=void 0,axe._selectorData=void 0,axe._selectCache=void 0};var qu=function(r,a,n,o){try{r=new Bn(r),axe._tree=r.flatTree,axe._selectorData=cr(r.flatTree)}catch(e){return Mu(),o(e)}var e=jr(),i=axe._audit;a.performanceTimer&&lo.auditStart(),r.frames.length&&!1!==a.iframes&&e.defer(function(e,t){Xr(r,a,"rules",null,e,t)}),e.defer(function(e,t){i.run(r,a,e,t)}),e.then(function(e){try{a.performanceTimer&&lo.auditEnd();var t=Kr(e.map(function(e){return{results:e}}));r.initiator&&((t=i.after(t,a)).forEach(Ao),t=t.map(Ht));try{n(t,Mu)}catch(e){Mu(),Qe(e)}}catch(e){Mu(),o(e)}}).catch(function(e){Mu(),o(e)})};function ju(e,t,r){function a(e){e instanceof Error==!1&&(e=new Error(e)),r(e)}var n=r,o=e&&e.context||{};o.hasOwnProperty("include")&&!o.include.length&&(o.include=[document]);var i=e&&e.options||{};switch(e.command){case"rules":return qu(o,i,function(e,t){n(e),t()},a);case"cleanup-plugin":return Su(n,a);default:if(axe._audit&&axe._audit.commands&&axe._audit.commands[e.command])return axe._audit.commands[e.command](e,r)}}window.top!==window&&(Vr.subscribe("axe.start",ju),Vr.subscribe("axe.ping",function(e,t,r){r({axe:!0})}));m=function(e){axe._audit=new ku(e)};function Uu(e){this._run=e.run,this._collect=e.collect,this._registry={},e.commands.forEach(function(e){axe._audit.registerCommand(e)})}Uu.prototype.run=function(){return this._run.apply(this,arguments)},Uu.prototype.collect=function(){return this._collect.apply(this,arguments)},Uu.prototype.cleanup=function(e){var r=axe.utils.queue(),a=this;Object.keys(this._registry).forEach(function(t){r.defer(function(e){a._registry[t].cleanup(e)})}),r.then(e)},Uu.prototype.add=function(e){this._registry[e.id]=e};We=function(e){axe.plugins[e.id]=new Uu(e)};$e=function(){var e=axe._audit;if(!e)throw new Error("No audit configured");e.resetRulesAndChecks(),Object.keys(nn).forEach(function(e){nn[e]=an[e]})};ze=function(e,t){var r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};r.reporter=r.reporter||axe._audit.reporter||"v1",axe._selectorData={},t instanceof tt||(t=new jo(t));var a=Mn(e);if(!a)throw new Error("unknown rule `"+e+"`");return a=(a=Object.create(a,{excludeHidden:{value:!1}})).runSync({initiator:!0,include:[t]},r),Ao(a),Ht(a),(a=Wt([a])).violations.forEach(function(e){return e.nodes.forEach(function(e){e.failureSummary=An(e)})}),v1({},Sn(),a,{toolOptions:r})};function Vu(e){var t,r=g1(e,3),a=r[0],n=r[1],e=r[2],r=new TypeError("axe.run arguments are invalid");if(!function(e){switch(!0){case"string"==typeof e:case Array.isArray(e):case window.Node&&e instanceof window.Node:case window.NodeList&&e instanceof window.NodeList:return!0;case"object"!==Gu(e):return!1;case void 0!==e.include:case void 0!==e.exclude:case"number"==typeof e.length:return!0;default:return!1}}(a)){if(void 0!==e)throw r;e=n,n=a,a=document}if("object"!==Gu(n)){if(void 0!==e)throw r;e=n,n={}}if("function"!=typeof e&&void 0!==e)throw r;return(n=Ar(n)).reporter=null!==(t=null!==(r=n.reporter)&&void 0!==r?r:null===(t=axe._audit)||void 0===t?void 0:t.reporter)&&void 0!==t?t:"v1",{context:a,options:n,callback:e}}var Hu=function(){};function zu(e){var t=e.node,r=m1(e,a1);r.node=t.toJSON();for(var a=0,n=["any","all","none"];a<n.length;a++){var o=n[a];r[o]=r[o].map(function(e){var t=e.relatedNodes;return v1({},m1(e,n1),{relatedNodes:t.map(function(e){return e.toJSON()})})})}return r}var Ge=function(e){if(axe._tree)throw new Error("Axe is already setup. Call `axe.teardown()` before calling `axe.setup` again.");return axe._tree=xn(e),axe._selectorData=cr(axe._tree),axe._tree[0]},Ye=function(e,t,r){console.warn('"na" reporter will be deprecated in axe v4.0. Use the "v2" reporter instead.'),"function"==typeof t&&(r=t,t={});var a=t,n=a.environmentData,a=m1(a,o1);r(v1({},Sn(n),{toolOptions:a},kn(e,t)))},c=function(e,t,r){"function"==typeof t&&(r=t,t={});var a=t,n=a.environmentData,a=m1(a,i1);t.resultTypes=["violations"];t=kn(e,t).violations;r(v1({},Sn(n),{toolOptions:a,violations:t}))},$u=function(e,t,r){if("function"==typeof t&&(r=t,t={}),!e||!Array.isArray(e))return r(e);r(e.map(function(e){for(var t=v1({},e),r=0,a=["passes","violations","incomplete","inapplicable"];r<a.length;r++){var n=a[r];t[n]&&Array.isArray(t[n])&&(t[n]=t[n].map(function(e){var t=e.node,e=m1(e,l1);return v1({node:t="function"==typeof(null===t||void 0===t?void 0:t.toJSON)?t.toJSON():t},e)}))}return t}))},Ke=function(e,t,r){"function"==typeof t&&(r=t,t={});var t=t,a=t.environmentData,t=m1(t,s1);$u(e,t,function(e){var t=Sn(a);r({raw:e,env:t})})},Fl=function(e,t,r){"function"==typeof t&&(r=t,t={});var a=t,n=a.environmentData,a=m1(a,u1),e=kn(e,t),t=function(e){e.nodes.forEach(function(e){e.failureSummary=An(e)})};e.incomplete.forEach(t),e.violations.forEach(t),r(v1({},Sn(n),{toolOptions:a},e))},Cl=function(e,t,r){"function"==typeof t&&(r=t,t={});var a=t,n=a.environmentData,a=m1(a,c1),t=kn(e,t);r(v1({},Sn(n),{toolOptions:a},t))};axe.constants=Je,axe.log=Qe,axe.AbstractVirtualNode=tt,axe.SerialVirtualNode=jo,axe.VirtualNode=Dn,axe._cache=yr,axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.base={Audit:ku,CheckResult:du,Check:hu,Context:Bn,RuleResult:gu,Rule:yu,metadataFunctionMap:cu},axe.imports=di,axe.cleanup=Su,axe.configure=kl,axe.frameMessenger=function(e){Vr.updateMessenger(e)},axe.getRules=o,axe._load=m,axe.plugins={},axe.registerPlugin=We,axe.hasReporter=Pu,axe.getReporter=Bu,axe.addReporter=function(e,t,r){Iu[e]=t,r&&(Ou=t)},axe.reset=$e,axe._runRules=qu,axe.runVirtualRule=ze,axe.run=function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];!function(e){var t=window&&"Node"in window&&"NodeList"in window,r=!!document;if(!t||!r){if(!e||!e.ownerDocument)throw new Error('Required "window" or "document" globals not defined and cannot be deduced from the context. Either set the globals before running or pass in a valid Element.');r||(yr.set("globalDocumentSet",!0),document=e.ownerDocument),t||(yr.set("globalWindowSet",!0),window=document.defaultView)}}(t[0]);var a=Vu(t),n=a.context,o=a.options,i=void 0===(l=a.callback)?Hu:l,l=(a=function(e){var t,r,a;"function"==typeof Promise&&e===Hu?t=new Promise(function(e,t){r=t,a=e}):a=r=Hu;return{thenable:t,reject:r,resolve:a}}(i)).thenable,s=a.resolve,u=a.reject;try{it(axe._audit,"No audit configured"),it(!axe._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.")}catch(e){return function(e,t){if(Lu(),"function"!=typeof t||t===Hu)throw e;t(e.message)}(e,i)}return axe._running=!0,o.performanceTimer&&axe.utils.performanceTimer.start(),axe._runRules(n,o,function(e,t){o.performanceTimer&&axe.utils.performanceTimer.end();try{!function(e,t,r){t=Bu(t.reporter)(e,t,r);void 0!==t&&r(t)}(e,o,function(e){axe._running=!1,t();try{i(null,e)}catch(e){axe.log(e)}s(e)})}catch(e){axe._running=!1,t(),i(e),u(e)}},function(e){o.performanceTimer&&axe.utils.performanceTimer.end(),axe._running=!1,Lu(),i(e),u(e)}),l},axe.setup=Ge,axe.teardown=Mu,axe.runPartial=function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var a=(n=Vu(t)).options,n=n.context;it(axe._audit,"Axe is not configured. Audit is missing."),it(!axe._running,"Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.");var o=new Bn(n,axe._tree);return axe._tree=o.flatTree,axe._selectorData=cr(o.flatTree),axe._running=!0,new Promise(function(e,t){axe._audit.run(o,a,e,t)}).then(function(e){var t;return{results:e=e.map(function(e){var t=e.nodes,e=m1(e,r1);return v1({nodes:t.map(zu)},e)}),frames:o.frames.map(function(e){e=e.node;return new xr(e,a).toJSON()}),environmentData:t=o.initiator?Sn():t}}).finally(function(){axe._running=!1,Mu()})},axe.finishRun=function(e){var t,r=Ar(r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}),a=(e.find(function(e){return e.environmentData})||{}).environmentData;axe._audit.normalizeOptions(r),r.reporter=null!==(i=null!==(t=r.reporter)&&void 0!==t?t:null===(i=axe._audit)||void 0===i?void 0:i.reporter)&&void 0!==i?i:"v1",function(e){var t,r=[],a=D1(e);try{for(a.s();!(t=a.n()).done;){var n,o=t.value,i=r.shift();o&&(o.frameSpec=null!=i?i:null,n=function(e){var t=e.frames,r=e.frameSpec;return r?t.map(function(e){return xr.mergeSpecs(e,r)}):t}(o),r.unshift.apply(r,h1(n)))}}catch(e){a.e(e)}finally{a.f()}}(e);var n,o,i=Kr(e);return(i=axe._audit.after(i,r)).forEach(Ao),i=i.map(Ht),n=i,o=v1({environmentData:a},r),new Promise(function(e){Bu(o.reporter)(n,o,e)})},axe.commons=ui,axe.utils=rt,axe.addReporter("na",Ye),axe.addReporter("no-passes",c),axe.addReporter("rawEnv",Ke),axe.addReporter("raw",$u),axe.addReporter("v1",Fl),axe.addReporter("v2",Cl,!0)}(),axe._load({lang:"en",data:{rules:{accesskeys:{description:"Ensures every accesskey attribute value is unique",help:"accesskey attribute value should be unique"},"area-alt":{description:"Ensures <area> elements of image maps have alternate text",help:"Active <area> elements must have alternate text"},"aria-allowed-attr":{description:"Ensures ARIA attributes are allowed for an element's role",help:"Elements must only use allowed ARIA attributes"},"aria-allowed-role":{description:"Ensures role attribute has an appropriate value for the element",help:"ARIA role should be appropriate for the element"},"aria-command-name":{description:"Ensures every ARIA button, link and menuitem has an accessible name",help:"ARIA commands must have an accessible name"},"aria-dialog-name":{description:"Ensures every ARIA dialog and alertdialog node has an accessible name",help:"ARIA dialog and alertdialog nodes should have an accessible name"},"aria-hidden-body":{description:"Ensures aria-hidden='true' is not present on the document body.",help:"aria-hidden='true' must not be present on the document body"},"aria-hidden-focus":{description:"Ensures aria-hidden elements do not contain focusable elements",help:"ARIA hidden element must not contain focusable elements"},"aria-input-field-name":{description:"Ensures every ARIA input field has an accessible name",help:"ARIA input fields must have an accessible name"},"aria-meter-name":{description:"Ensures every ARIA meter node has an accessible name",help:"ARIA meter nodes must have an accessible name"},"aria-progressbar-name":{description:"Ensures every ARIA progressbar node has an accessible name",help:"ARIA progressbar nodes must have an accessible name"},"aria-required-attr":{description:"Ensures elements with ARIA roles have all required ARIA attributes",help:"Required ARIA attributes must be provided"},"aria-required-children":{description:"Ensures elements with an ARIA role that require child roles contain them",help:"Certain ARIA roles must contain particular children"},"aria-required-parent":{description:"Ensures elements with an ARIA role that require parent roles are contained by them",help:"Certain ARIA roles must be contained by particular parents"},"aria-roledescription":{description:"Ensure aria-roledescription is only used on elements with an implicit or explicit role",help:"Use aria-roledescription on elements with a semantic role"},"aria-roles":{description:"Ensures all elements with a role attribute use a valid value",help:"ARIA roles used must conform to valid values"},"aria-text":{description:'Ensures "role=text" is used on elements with no focusable descendants',help:'"role=text" should have no focusable descendants'},"aria-toggle-field-name":{description:"Ensures every ARIA toggle field has an accessible name",help:"ARIA toggle fields have an accessible name"},"aria-tooltip-name":{description:"Ensures every ARIA tooltip node has an accessible name",help:"ARIA tooltip nodes must have an accessible name"},"aria-treeitem-name":{description:"Ensures every ARIA treeitem node has an accessible name",help:"ARIA treeitem nodes should have an accessible name"},"aria-valid-attr-value":{description:"Ensures all ARIA attributes have valid values",help:"ARIA attributes must conform to valid values"},"aria-valid-attr":{description:"Ensures attributes that begin with aria- are valid ARIA attributes",help:"ARIA attributes must conform to valid names"},"audio-caption":{description:"Ensures <audio> elements have captions",help:"<audio> elements must have a captions track"},"autocomplete-valid":{description:"Ensure the autocomplete attribute is correct and suitable for the form field",help:"autocomplete attribute must be used correctly"},"avoid-inline-spacing":{description:"Ensure that text spacing set through style attributes can be adjusted with custom stylesheets",help:"Inline text spacing must be adjustable with custom stylesheets"},blink:{description:"Ensures <blink> elements are not used",help:"<blink> elements are deprecated and must not be used"},"button-name":{description:"Ensures buttons have discernible text",help:"Buttons must have discernible text"},bypass:{description:"Ensures each page has at least one mechanism for a user to bypass navigation and jump straight to the content",help:"Page must have means to bypass repeated blocks"},"color-contrast":{description:"Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds",help:"Elements must have sufficient color contrast"},"css-orientation-lock":{description:"Ensures content is not locked to any specific display orientation, and the content is operable in all display orientations",help:"CSS Media queries are not used to lock display orientation"},"definition-list":{description:"Ensures <dl> elements are structured correctly",help:"<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script>, <template> or <div> elements"},dlitem:{description:"Ensures <dt> and <dd> elements are contained by a <dl>",help:"<dt> and <dd> elements must be contained by a <dl>"},"document-title":{description:"Ensures each HTML document contains a non-empty <title> element",help:"Documents must have <title> element to aid in navigation"},"duplicate-id-active":{description:"Ensures every id attribute value of active elements is unique",help:"IDs of active elements must be unique"},"duplicate-id-aria":{description:"Ensures every id attribute value used in ARIA and in labels is unique",help:"IDs used in ARIA and labels must be unique"},"duplicate-id":{description:"Ensures every id attribute value is unique",help:"id attribute value must be unique"},"empty-heading":{description:"Ensures headings have discernible text",help:"Headings should not be empty"},"empty-table-header":{description:"Ensures table headers have discernible text",help:"Table header text must not be empty"},"focus-order-semantics":{description:"Ensures elements in the focus order have an appropriate role",help:"Elements in the focus order need a role appropriate for interactive content"},"form-field-multiple-labels":{description:"Ensures form field does not have multiple label elements",help:"Form field must not have multiple label elements"},"frame-focusable-content":{description:"Ensures <frame> and <iframe> elements with focusable content do not have tabindex=-1",help:"Frames with focusable content must not have tabindex=-1"},"frame-tested":{description:"Ensures <iframe> and <frame> elements contain the axe-core script",help:"Frames should be tested with axe-core"},"frame-title-unique":{description:"Ensures <iframe> and <frame> elements contain a unique title attribute",help:"Frames should have a unique title attribute"},"frame-title":{description:"Ensures <iframe> and <frame> elements have an accessible name",help:"Frames must have an accessible name"},"heading-order":{description:"Ensures the order of headings is semantically correct",help:"Heading levels should only increase by one"},"hidden-content":{description:"Informs users about hidden content.",help:"Hidden content on the page cannot be analyzed"},"html-has-lang":{description:"Ensures every HTML document has a lang attribute",help:"<html> element must have a lang attribute"},"html-lang-valid":{description:"Ensures the lang attribute of the <html> element has a valid value",help:"<html> element must have a valid value for the lang attribute"},"html-xml-lang-mismatch":{description:"Ensure that HTML elements with both valid lang and xml:lang attributes agree on the base language of the page",help:"HTML elements with lang and xml:lang must have the same base language"},"identical-links-same-purpose":{description:"Ensure that links with the same accessible name serve a similar purpose",help:"Links with the same name have a similar purpose"},"image-alt":{description:"Ensures <img> elements have alternate text or a role of none or presentation",help:"Images must have alternate text"},"image-redundant-alt":{description:"Ensure image alternative is not repeated as text",help:"Alternative text of images should not be repeated as text"},"input-button-name":{description:"Ensures input buttons have discernible text",help:"Input buttons must have discernible text"},"input-image-alt":{description:'Ensures <input type="image"> elements have alternate text',help:"Image buttons must have alternate text"},"label-content-name-mismatch":{description:"Ensures that elements labelled through their content must have their visible text as part of their accessible name",help:"Elements must have their visible text as part of their accessible name"},"label-title-only":{description:"Ensures that every form element is not solely labeled using the title or aria-describedby attributes",help:"Form elements should have a visible label"},label:{description:"Ensures every form element has a label",help:"Form elements must have labels"},"landmark-banner-is-top-level":{description:"Ensures the banner landmark is at top level",help:"Banner landmark should not be contained in another landmark"},"landmark-complementary-is-top-level":{description:"Ensures the complementary landmark or aside is at top level",help:"Aside should not be contained in another landmark"},"landmark-contentinfo-is-top-level":{description:"Ensures the contentinfo landmark is at top level",help:"Contentinfo landmark should not be contained in another landmark"},"landmark-main-is-top-level":{description:"Ensures the main landmark is at top level",help:"Main landmark should not be contained in another landmark"},"landmark-no-duplicate-banner":{description:"Ensures the document has at most one banner landmark",help:"Document should not have more than one banner landmark"},"landmark-no-duplicate-contentinfo":{description:"Ensures the document has at most one contentinfo landmark",help:"Document should not have more than one contentinfo landmark"},"landmark-no-duplicate-main":{description:"Ensures the document has at most one main landmark",help:"Document should not have more than one main landmark"},"landmark-one-main":{description:"Ensures the document has a main landmark",help:"Document should have one main landmark"},"landmark-unique":{help:"Ensures landmarks are unique",description:"Landmarks should have a unique role or role/label/title (i.e. accessible name) combination"},"link-in-text-block":{description:"Links can be distinguished without relying on color",help:"Links must be distinguished from surrounding text in a way that does not rely on color"},"link-name":{description:"Ensures links have discernible text",help:"Links must have discernible text"},list:{description:"Ensures that lists are structured correctly",help:"<ul> and <ol> must only directly contain <li>, <script> or <template> elements"},listitem:{description:"Ensures <li> elements are used semantically",help:"<li> elements must be contained in a <ul> or <ol>"},marquee:{description:"Ensures <marquee> elements are not used",help:"<marquee> elements are deprecated and must not be used"},"meta-refresh":{description:'Ensures <meta http-equiv="refresh"> is not used',help:"Timed refresh must not exist"},"meta-viewport-large":{description:'Ensures <meta name="viewport"> can scale a significant amount',help:"Users should be able to zoom and scale the text up to 500%"},"meta-viewport":{description:'Ensures <meta name="viewport"> does not disable text scaling and zooming',help:"Zooming and scaling should not be disabled"},"nested-interactive":{description:"Nested interactive controls are not announced by screen readers",help:"Ensure interactive controls are not nested"},"no-autoplay-audio":{description:"Ensures <video> or <audio> elements do not autoplay audio for more than 3 seconds without a control mechanism to stop or mute the audio",help:"<video> or <audio> elements do not autoplay audio"},"object-alt":{description:"Ensures <object> elements have alternate text",help:"<object> elements must have alternate text"},"p-as-heading":{description:"Ensure p elements are not used to style headings",help:"Bold, italic text and font-size are not used to style p elements as a heading"},"page-has-heading-one":{description:"Ensure that the page, or at least one of its frames contains a level-one heading",help:"Page should contain a level-one heading"},"presentation-role-conflict":{description:"Flags elements whose role is none or presentation and which cause the role conflict resolution to trigger.",help:"Elements of role none or presentation should be flagged"},region:{description:"Ensures all page content is contained by landmarks",help:"All page content should be contained by landmarks"},"role-img-alt":{description:"Ensures [role='img'] elements have alternate text",help:"[role='img'] elements have an alternative text"},"scope-attr-valid":{description:"Ensures the scope attribute is used correctly on tables",help:"scope attribute should be used correctly"},"scrollable-region-focusable":{description:"Elements that have scrollable content must be accessible by keyboard",help:"Ensure that scrollable region has keyboard access"},"select-name":{description:"Ensures select element has an accessible name",help:"Select element must have an accessible name"},"server-side-image-map":{description:"Ensures that server-side image maps are not used",help:"Server-side image maps must not be used"},"skip-link":{description:"Ensure all skip links have a focusable target",help:"The skip-link target should exist and be focusable"},"svg-img-alt":{description:"Ensures svg elements with an img, graphics-document or graphics-symbol role have an accessible text",help:"svg elements with an img role have an alternative text"},tabindex:{description:"Ensures tabindex attribute values are not greater than 0",help:"Elements should not have tabindex greater than zero"},"table-duplicate-name":{description:"Ensure that tables do not have the same summary and caption",help:"The <caption> element should not contain the same text as the summary attribute"},"table-fake-caption":{description:"Ensure that tables with a caption use the <caption> element.",help:"Data or header cells must not be used to give caption to a data table."},"td-has-header":{description:"Ensure that each non-empty data cell in a large table has one or more table headers",help:"All non-empty td element in table larger than 3 by 3 must have an associated table header"},"td-headers-attr":{description:"Ensure that each cell in a table using the headers refers to another cell in that table",help:"All cells in a table element that use the headers attribute must only refer to other cells of that same table"},"th-has-data-cells":{description:"Ensure that each table header in a data table refers to data cells",help:"All th elements and elements with role=columnheader/rowheader must have data cells they describe"},"valid-lang":{description:"Ensures lang attributes have valid values",help:"lang attribute must have a valid value"},"video-caption":{description:"Ensures <video> elements have captions",help:"<video> elements must have captions"}},checks:{abstractrole:{impact:"serious",messages:{pass:"Abstract roles are not used",fail:{singular:"Abstract role cannot be directly used: ${data.values}",plural:"Abstract roles cannot be directly used: ${data.values}"}}},"aria-allowed-attr":{impact:"critical",messages:{pass:"ARIA attributes are used correctly for the defined role",fail:{singular:"ARIA attribute is not allowed: ${data.values}",plural:"ARIA attributes are not allowed: ${data.values}"}}},"aria-allowed-role":{impact:"minor",messages:{pass:"ARIA role is allowed for given element",fail:{singular:"ARIA role ${data.values} is not allowed for given element",plural:"ARIA roles ${data.values} are not allowed for given element"},incomplete:{singular:"ARIA role ${data.values} must be removed when the element is made visible, as it is not allowed for the element",plural:"ARIA roles ${data.values} must be removed when the element is made visible, as they are not allowed for the element"}}},"aria-errormessage":{impact:"critical",messages:{pass:"aria-errormessage exists and references elements visible to screen readers that use a supported aria-errormessage technique",fail:{singular:"aria-errormessage value `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",plural:"aria-errormessage values `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)"},incomplete:{singular:"ensure aria-errormessage value `${data.values}` references an existing element",plural:"ensure aria-errormessage values `${data.values}` reference existing elements",idrefs:"unable to determine if aria-errormessage element exists on the page: ${data.values}"}}},"aria-hidden-body":{impact:"critical",messages:{pass:"No aria-hidden attribute is present on document body",fail:"aria-hidden=true should not be present on the document body"}},"aria-level":{impact:"serious",messages:{pass:"aria-level values are valid",incomplete:"aria-level values greater than 6 are not supported in all screenreader and browser combinations"}},"aria-prohibited-attr":{impact:"serious",messages:{pass:"ARIA attribute is allowed",fail:"ARIA attribute cannot be used, add a role attribute or use a different element: ${data.values}",incomplete:"ARIA attribute is not well supported on the element and the text content will be used instead: ${data.values}"}},"aria-required-attr":{impact:"critical",messages:{pass:"All required ARIA attributes are present",fail:{singular:"Required ARIA attribute not present: ${data.values}",plural:"Required ARIA attributes not present: ${data.values}"}}},"aria-required-children":{impact:"critical",messages:{pass:"Required ARIA children are present",fail:{singular:"Required ARIA child role not present: ${data.values}",plural:"Required ARIA children role not present: ${data.values}"},incomplete:{singular:"Expecting ARIA child role to be added: ${data.values}",plural:"Expecting ARIA children role to be added: ${data.values}"}}},"aria-required-parent":{impact:"critical",messages:{pass:"Required ARIA parent role present",fail:{singular:"Required ARIA parent role not present: ${data.values}",plural:"Required ARIA parents role not present: ${data.values}"}}},"aria-roledescription":{impact:"serious",messages:{pass:"aria-roledescription used on a supported semantic role",incomplete:"Check that the aria-roledescription is announced by supported screen readers",fail:"Give the element a role that supports aria-roledescription"}},"aria-unsupported-attr":{impact:"critical",messages:{pass:"ARIA attribute is supported",fail:"ARIA attribute is not widely supported in screen readers and assistive technologies: ${data.values}"}},"aria-valid-attr-value":{impact:"critical",messages:{pass:"ARIA attribute values are valid",fail:{singular:"Invalid ARIA attribute value: ${data.values}",plural:"Invalid ARIA attribute values: ${data.values}"},incomplete:{noId:"ARIA attribute element ID does not exist on the page: ${data.needsReview}",ariaCurrent:'ARIA attribute value is invalid and will be treated as "aria-current=true": ${data.needsReview}',idrefs:"Unable to determine if ARIA attribute element ID exists on the page: ${data.needsReview}"}}},"aria-valid-attr":{impact:"critical",messages:{pass:"ARIA attribute name is valid",fail:{singular:"Invalid ARIA attribute name: ${data.values}",plural:"Invalid ARIA attribute names: ${data.values}"}}},fallbackrole:{impact:"serious",messages:{pass:"Only one role value used",fail:"Use only one role value, since fallback roles are not supported in older browsers",incomplete:"Use only role 'presentation' or 'none' since they are synonymous."}},"has-global-aria-attribute":{impact:"minor",messages:{pass:{singular:"Element has global ARIA attribute: ${data.values}",plural:"Element has global ARIA attributes: ${data.values}"},fail:"Element does not have global ARIA attribute"}},"has-widget-role":{impact:"minor",messages:{pass:"Element has a widget role.",fail:"Element does not have a widget role."}},invalidrole:{impact:"critical",messages:{pass:"ARIA role is valid",fail:{singular:"Role must be one of the valid ARIA roles: ${data.values}",plural:"Roles must be one of the valid ARIA roles: ${data.values}"}}},"is-element-focusable":{impact:"minor",messages:{pass:"Element is focusable.",fail:"Element is not focusable."}},"no-implicit-explicit-label":{impact:"moderate",messages:{pass:"There is no mismatch between a <label> and accessible name",incomplete:"Check that the <label> does not need be part of the ARIA ${data} field's name"}},unsupportedrole:{impact:"critical",messages:{pass:"ARIA role is supported",fail:"The role used is not widely supported in screen readers and assistive technologies: ${data.values}"}},"valid-scrollable-semantics":{impact:"minor",messages:{pass:"Element has valid semantics for an element in the focus order.",fail:"Element has invalid semantics for an element in the focus order."}},"color-contrast":{impact:"serious",messages:{pass:"Element has sufficient color contrast of ${data.contrastRatio}",fail:{default:"Element has insufficient color contrast of ${data.contrastRatio} (foreground color: ${data.fgColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",fgOnShadowColor:"Element has insufficient color contrast of ${data.contrastRatio} between the foreground and shadow color (foreground color: ${data.fgColor}, text-shadow color: ${data.shadowColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}",shadowOnBgColor:"Element has insufficient color contrast of ${data.contrastRatio} between the shadow color and background color (text-shadow color: ${data.shadowColor}, background color: ${data.bgColor}, font size: ${data.fontSize}, font weight: ${data.fontWeight}). Expected contrast ratio of ${data.expectedContrastRatio}"},incomplete:{default:"Unable to determine contrast ratio",bgImage:"Element's background color could not be determined due to a background image",bgGradient:"Element's background color could not be determined due to a background gradient",imgNode:"Element's background color could not be determined because element contains an image node",bgOverlap:"Element's background color could not be determined because it is overlapped by another element",fgAlpha:"Element's foreground color could not be determined because of alpha transparency",elmPartiallyObscured:"Element's background color could not be determined because it's partially obscured by another element",elmPartiallyObscuring:"Element's background color could not be determined because it partially overlaps other elements",outsideViewport:"Element's background color could not be determined because it's outside the viewport",equalRatio:"Element has a 1:1 contrast ratio with the background",shortTextContent:"Element content is too short to determine if it is actual text content",nonBmp:"Element content contains only non-text characters",pseudoContent:"Element's background color could not be determined due to a pseudo element"}}},"link-in-text-block":{impact:"serious",messages:{pass:"Links can be distinguished from surrounding text in some way other than by color",fail:"Links need to be distinguished from surrounding text in some way other than by color",incomplete:{default:"Unable to determine contrast ratio",bgContrast:"Element's contrast ratio could not be determined. Check for a distinct hover/focus style",bgImage:"Element's contrast ratio could not be determined due to a background image",bgGradient:"Element's contrast ratio could not be determined due to a background gradient",imgNode:"Element's contrast ratio could not be determined because element contains an image node",bgOverlap:"Element's contrast ratio could not be determined because of element overlap"}}},"autocomplete-appropriate":{impact:"serious",messages:{pass:"the autocomplete value is on an appropriate element",fail:"the autocomplete value is inappropriate for this type of input"}},"autocomplete-valid":{impact:"serious",messages:{pass:"the autocomplete attribute is correctly formatted",fail:"the autocomplete attribute is incorrectly formatted"}},accesskeys:{impact:"serious",messages:{pass:"Accesskey attribute value is unique",fail:"Document has multiple elements with the same accesskey"}},"focusable-content":{impact:"moderate",messages:{pass:"Element contains focusable elements",fail:"Element should have focusable content"}},"focusable-disabled":{impact:"serious",messages:{pass:"No focusable elements contained within element",fail:"Focusable content should be disabled or be removed from the DOM"}},"focusable-element":{impact:"moderate",messages:{pass:"Element is focusable",fail:"Element should be focusable"}},"focusable-modal-open":{impact:"serious",messages:{pass:"No focusable elements while a modal is open",incomplete:"Check that focusable elements are not tabbable in the current state"}},"focusable-no-name":{impact:"serious",messages:{pass:"Element is not in tab order or has accessible text",fail:"Element is in tab order and does not have accessible text",incomplete:"Unable to determine if element has an accessible name"}},"focusable-not-tabbable":{impact:"serious",messages:{pass:"No focusable elements contained within element",fail:"Focusable content should have tabindex='-1' or be removed from the DOM"}},"frame-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"landmark-is-top-level":{impact:"moderate",messages:{pass:"The ${data.role} landmark is at the top level.",fail:"The ${data.role} landmark is contained in another landmark."}},"no-focusable-content":{impact:"serious",messages:{pass:"Element does not have focusable descendants",fail:"Element has focusable descendants",incomplete:"Could not determine if element has descendants"}},"page-has-heading-one":{impact:"moderate",messages:{pass:"Page has at least one level-one heading",fail:"Page must have a level-one heading"}},"page-has-main":{impact:"moderate",messages:{pass:"Document has at least one main landmark",fail:"Document does not have a main landmark"}},"page-no-duplicate-banner":{impact:"moderate",messages:{pass:"Document does not have more than one banner landmark",fail:"Document has more than one banner landmark"}},"page-no-duplicate-contentinfo":{impact:"moderate",messages:{pass:"Document does not have more than one contentinfo landmark",fail:"Document has more than one contentinfo landmark"}},"page-no-duplicate-main":{impact:"moderate",messages:{pass:"Document does not have more than one main landmark",fail:"Document has more than one main landmark"}},tabindex:{impact:"serious",messages:{pass:"Element does not have a tabindex greater than 0",fail:"Element has a tabindex greater than 0"}},"alt-space-value":{impact:"critical",messages:{pass:"Element has a valid alt attribute value",fail:"Element has an alt attribute containing only a space character, which is not ignored by all screen readers"}},"duplicate-img-label":{impact:"minor",messages:{pass:"Element does not duplicate existing text in <img> alt text",fail:"Element contains <img> element with alt text that duplicates existing text"}},"explicit-label":{impact:"critical",messages:{pass:"Form element has an explicit <label>",fail:"Form element does not have an explicit <label>",incomplete:"Unable to determine if form element has an explicit <label>"}},"help-same-as-label":{impact:"minor",messages:{pass:"Help text (title or aria-describedby) does not duplicate label text",fail:"Help text (title or aria-describedby) text is the same as the label text"}},"hidden-explicit-label":{impact:"critical",messages:{pass:"Form element has a visible explicit <label>",fail:"Form element has explicit <label> that is hidden",incomplete:"Unable to determine if form element has explicit <label> that is hidden"}},"implicit-label":{impact:"critical",messages:{pass:"Form element has an implicit (wrapped) <label>",fail:"Form element does not have an implicit (wrapped) <label>",incomplete:"Unable to determine if form element has an implicit (wrapped} <label>"}},"label-content-name-mismatch":{impact:"serious",messages:{pass:"Element contains visible text as part of it's accessible name",fail:"Text inside the element is not included in the accessible name"}},"multiple-label":{impact:"moderate",messages:{pass:"Form field does not have multiple label elements",incomplete:"Multiple label elements is not widely supported in assistive technologies. Ensure the first label contains all necessary information."}},"title-only":{impact:"serious",messages:{pass:"Form element does not solely use title attribute for its label",fail:"Only title used to generate label for form element"}},"landmark-is-unique":{impact:"moderate",messages:{pass:"Landmarks must have a unique role or role/label/title (i.e. accessible name) combination",fail:"The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable"}},"has-lang":{impact:"serious",messages:{pass:"The <html> element has a lang attribute",fail:{noXHTML:"The xml:lang attribute is not valid on HTML pages, use the lang attribute.",noLang:"The <html> element does not have a lang attribute"}}},"valid-lang":{impact:"serious",messages:{pass:"Value of lang attribute is included in the list of valid languages",fail:"Value of lang attribute not included in the list of valid languages"}},"xml-lang-mismatch":{impact:"moderate",messages:{pass:"Lang and xml:lang attributes have the same base language",fail:"Lang and xml:lang attributes do not have the same base language"}},dlitem:{impact:"serious",messages:{pass:"Description list item has a <dl> parent element",fail:"Description list item does not have a <dl> parent element"}},listitem:{impact:"serious",messages:{pass:'List item has a <ul>, <ol> or role="list" parent element',fail:{default:"List item does not have a <ul>, <ol> parent element",roleNotValid:'List item does not have a <ul>, <ol> parent element without a role, or a role="list"'}}},"only-dlitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <dt> or <dd> elements",fail:"List element has direct children that are not allowed inside <dt> or <dd> elements"}},"only-listitems":{impact:"serious",messages:{pass:"List element only has direct children that are allowed inside <li> elements",fail:{default:"List element has direct children that are not allowed inside <li> elements",roleNotValid:"List element has direct children with a role that is not allowed: ${data.roles}"}}},"structured-dlitems":{impact:"serious",messages:{pass:"When not empty, element has both <dt> and <dd> elements",fail:"When not empty, element does not have at least one <dt> element followed by at least one <dd> element"}},caption:{impact:"critical",messages:{pass:"The multimedia element has a captions track",incomplete:"Check that captions is available for the element"}},"frame-tested":{impact:"critical",messages:{pass:"The iframe was tested with axe-core",fail:"The iframe could not be tested with axe-core",incomplete:"The iframe still has to be tested with axe-core"}},"no-autoplay-audio":{impact:"moderate",messages:{pass:"<video> or <audio> does not output audio for more than allowed duration or has controls mechanism",fail:"<video> or <audio> outputs audio for more than allowed duration and does not have a controls mechanism",incomplete:"Check that the <video> or <audio> does not output audio for more than allowed duration or provides a controls mechanism"}},"css-orientation-lock":{impact:"serious",messages:{pass:"Display is operable, and orientation lock does not exist",fail:"CSS Orientation lock is applied, and makes display inoperable",incomplete:"CSS Orientation lock cannot be determined"}},"meta-viewport-large":{impact:"minor",messages:{pass:"<meta> tag does not prevent significant zooming on mobile devices",fail:"<meta> tag limits zooming on mobile devices"}},"meta-viewport":{impact:"critical",messages:{pass:"<meta> tag does not disable zooming on mobile devices",fail:"${data} on <meta> tag disables zooming on mobile devices"}},"header-present":{impact:"serious",messages:{pass:"Page has a heading",fail:"Page does not have a heading"}},"heading-order":{impact:"moderate",messages:{pass:"Heading order valid",fail:"Heading order invalid",incomplete:"Unable to determine previous heading"}},"identical-links-same-purpose":{impact:"minor",messages:{pass:"There are no other links with the same name, that go to a different URL",incomplete:"Check that links have the same purpose, or are intentionally ambiguous."}},"internal-link-present":{impact:"serious",messages:{pass:"Valid skip link found",fail:"No valid skip link found"}},landmark:{impact:"serious",messages:{pass:"Page has a landmark region",fail:"Page does not have a landmark region"}},"meta-refresh":{impact:"critical",messages:{pass:"<meta> tag does not immediately refresh the page",fail:"<meta> tag forces timed refresh of page"}},"p-as-heading":{impact:"serious",messages:{pass:"<p> elements are not styled as headings",fail:"Heading elements should be used instead of styled p elements"}},region:{impact:"moderate",messages:{pass:"All page content is contained by landmarks",fail:"Some page content is not contained by landmarks"}},"skip-link":{impact:"moderate",messages:{pass:"Skip link target exists",incomplete:"Skip link target should become visible on activation",fail:"No skip link target"}},"unique-frame-title":{impact:"serious",messages:{pass:"Element's title attribute is unique",fail:"Element's title attribute is not unique"}},"duplicate-id-active":{impact:"serious",messages:{pass:"Document has no active elements that share the same id attribute",fail:"Document has active elements with the same id attribute: ${data}"}},"duplicate-id-aria":{impact:"critical",messages:{pass:"Document has no elements referenced with ARIA or labels that share the same id attribute",fail:"Document has multiple elements referenced with ARIA with the same id attribute: ${data}"}},"duplicate-id":{impact:"minor",messages:{pass:"Document has no static elements that share the same id attribute",fail:"Document has multiple static elements with the same id attribute: ${data}"}},"aria-label":{impact:"serious",messages:{pass:"aria-label attribute exists and is not empty",fail:"aria-label attribute does not exist or is empty"}},"aria-labelledby":{impact:"serious",messages:{pass:"aria-labelledby attribute exists and references elements that are visible to screen readers",fail:"aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty",incomplete:"ensure aria-labelledby references an existing element"}},"avoid-inline-spacing":{impact:"serious",messages:{pass:"No inline styles with '!important' that affect text spacing has been specified",fail:{singular:"Remove '!important' from inline style ${data.values}, as overriding this is not supported by most browsers",plural:"Remove '!important' from inline styles ${data.values}, as overriding this is not supported by most browsers"}}},"button-has-visible-text":{impact:"critical",messages:{pass:"Element has inner text that is visible to screen readers",fail:"Element does not have inner text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"doc-has-title":{impact:"serious",messages:{pass:"Document has a non-empty <title> element",fail:"Document does not have a non-empty <title> element"}},exists:{impact:"minor",messages:{pass:"Element does not exist",incomplete:"Element exists"}},"has-alt":{impact:"critical",messages:{pass:"Element has an alt attribute",fail:"Element does not have an alt attribute"}},"has-visible-text":{impact:"minor",messages:{pass:"Element has text that is visible to screen readers",fail:"Element does not have text that is visible to screen readers",incomplete:"Unable to determine if element has children"}},"is-on-screen":{impact:"serious",messages:{pass:"Element is not visible",fail:"Element is visible"}},"non-empty-alt":{impact:"critical",messages:{pass:"Element has a non-empty alt attribute",fail:{noAttr:"Element has no alt attribute",emptyAttr:"Element has an empty alt attribute"}}},"non-empty-if-present":{impact:"critical",messages:{pass:{default:"Element does not have a value attribute","has-label":"Element has a non-empty value attribute"},fail:"Element has a value attribute and the value attribute is empty"}},"non-empty-placeholder":{impact:"serious",messages:{pass:"Element has a placeholder attribute",fail:{noAttr:"Element has no placeholder attribute",emptyAttr:"Element has an empty placeholder attribute"}}},"non-empty-title":{impact:"serious",messages:{pass:"Element has a title attribute",fail:{noAttr:"Element has no title attribute",emptyAttr:"Element has an empty title attribute"}}},"non-empty-value":{impact:"critical",messages:{pass:"Element has a non-empty value attribute",fail:{noAttr:"Element has no value attribute",emptyAttr:"Element has an empty value attribute"}}},"presentational-role":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="${data.role}"',fail:{default:'Element\'s default semantics were not overridden with role="none" or role="presentation"',globalAria:"Element's role is not presentational because it has a global ARIA attribute",focusable:"Element's role is not presentational because it is focusable",both:"Element's role is not presentational because it has a global ARIA attribute and is focusable"}}},"role-none":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="none"',fail:'Element\'s default semantics were not overridden with role="none"'}},"role-presentation":{impact:"minor",messages:{pass:'Element\'s default semantics were overriden with role="presentation"',fail:'Element\'s default semantics were not overridden with role="presentation"'}},"svg-non-empty-title":{impact:"serious",messages:{pass:"Element has a child that is a title",fail:{noTitle:"Element has no child that is a title",emptyTitle:"Element child title is empty"},incomplete:"Unable to determine element has a child that is a title"}},"caption-faked":{impact:"serious",messages:{pass:"The first row of a table is not used as a caption",fail:"The first child of the table should be a caption instead of a table cell"}},"html5-scope":{impact:"moderate",messages:{pass:"Scope attribute is only used on table header elements (<th>)",fail:"In HTML 5, scope attributes may only be used on table header elements (<th>)"}},"same-caption-summary":{impact:"minor",messages:{pass:"Content of summary attribute and <caption> are not duplicated",fail:"Content of summary attribute and <caption> element are identical"}},"scope-value":{impact:"critical",messages:{pass:"Scope attribute is used correctly",fail:"The value of the scope attribute may only be 'row' or 'col'"}},"td-has-header":{impact:"critical",messages:{pass:"All non-empty data cells have table headers",fail:"Some non-empty data cells do not have table headers"}},"td-headers-attr":{impact:"serious",messages:{pass:"The headers attribute is exclusively used to refer to other cells in the table",incomplete:"The headers attribute is empty",fail:"The headers attribute is not exclusively used to refer to other cells in the table"}},"th-has-data-cells":{impact:"serious",messages:{pass:"All table header cells refer to data cells",fail:"Not all table header cells refer to data cells",incomplete:"Table data cells are missing or empty"}},"hidden-content":{impact:"minor",messages:{pass:"All content on the page has been analyzed.",fail:"There were problems analyzing the content on this page.",incomplete:"There is hidden content on the page that was not analyzed. You will need to trigger the display of this content in order to analyze it."}}},failureSummaries:{any:{failureMessage:function(e){var t="Fix any of the following:",r=e;if(r)for(var a=-1,n=r.length-1;a<n;)t+="\n "+r[a+=1].split("\n").join("\n ");return t}},none:{failureMessage:function(e){var t="Fix all of the following:",r=e;if(r)for(var a=-1,n=r.length-1;a<n;)t+="\n "+r[a+=1].split("\n").join("\n ");return t}}},incompleteFallbackMessage:{}},rules:[{id:"accesskeys",selector:"[accesskey]",excludeHidden:!1,tags:["cat.keyboard","best-practice"],all:[],any:[],none:["accesskeys"]},{id:"area-alt",selector:"map area[href]",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag111","wcag244","wcag412","section508","section508.22.a","ACT"],actIds:["c487ae"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-allowed-attr",matches:"aria-allowed-attr-matches",tags:["cat.aria","wcag2a","wcag412"],actIds:["5c01ea"],all:[],any:["aria-allowed-attr"],none:["aria-unsupported-attr",{options:{elementsAllowedAriaLabel:["applet","input"]},id:"aria-prohibited-attr"}]},{id:"aria-allowed-role",excludeHidden:!1,selector:"[role]",matches:"aria-allowed-role-matches",tags:["cat.aria","best-practice"],all:[],any:[{options:{allowImplicit:!0,ignoredTags:[]},id:"aria-allowed-role"}],none:[]},{id:"aria-command-name",selector:'[role="link"], [role="button"], [role="menuitem"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412"],actIds:["97a4e1"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-dialog-name",selector:'[role="dialog"], [role="alertdialog"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-hidden-body",selector:"body",excludeHidden:!1,matches:"is-initiator-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["aria-hidden-body"],none:[]},{id:"aria-hidden-focus",selector:'[aria-hidden="true"]',matches:"aria-hidden-focus-matches",excludeHidden:!1,tags:["cat.name-role-value","wcag2a","wcag412","wcag131"],actIds:["6cfa84"],all:["focusable-modal-open","focusable-disabled","focusable-not-tabbable"],any:[],none:[]},{id:"aria-input-field-name",selector:'[role="combobox"], [role="listbox"], [role="searchbox"], [role="slider"], [role="spinbutton"], [role="textbox"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","ACT"],actIds:["e086e5"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-meter-name",selector:'[role="meter"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-progressbar-name",selector:'[role="progressbar"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag111"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-required-attr",selector:"[role]",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["aria-required-attr"],none:[]},{id:"aria-required-children",selector:"[role]",matches:"aria-required-children-matches",tags:["cat.aria","wcag2a","wcag131"],actIds:["ff89c9"],all:[],any:[{options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","table","tablist","tree","treegrid","rowgroup"]},id:"aria-required-children"}],none:[]},{id:"aria-required-parent",selector:"[role]",matches:"aria-required-parent-matches",tags:["cat.aria","wcag2a","wcag131"],actIds:["bc4a75","ff89c9"],all:[],any:[{options:{ownGroupRoles:["listitem","treeitem"]},id:"aria-required-parent"}],none:[]},{id:"aria-roledescription",selector:"[aria-roledescription]",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[{options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]},id:"aria-roledescription"}],none:[]},{id:"aria-roles",selector:"[role]",matches:"no-empty-role-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[],none:["fallbackrole","invalidrole","abstractrole","unsupportedrole"]},{id:"aria-text",selector:"[role=text]",tags:["cat.aria","best-practice"],all:[],any:["no-focusable-content"],none:[]},{id:"aria-toggle-field-name",selector:'[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412","ACT"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["no-implicit-explicit-label"]},{id:"aria-tooltip-name",selector:'[role="tooltip"]',matches:"no-naming-method-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-treeitem-name",selector:'[role="treeitem"]',matches:"no-naming-method-matches",tags:["cat.aria","best-practice"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"aria-valid-attr-value",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412"],actIds:["5c01ea","c487ae"],all:[{options:[],id:"aria-valid-attr-value"},"aria-errormessage","aria-level"],any:[],none:[]},{id:"aria-valid-attr",matches:"aria-has-attr-matches",tags:["cat.aria","wcag2a","wcag412"],all:[],any:[{options:[],id:"aria-valid-attr"}],none:[]},{id:"audio-caption",selector:"audio",enabled:!1,excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag121","section508","section508.22.a"],actIds:["c3232f","e7aa44"],all:[],any:[],none:["caption"]},{id:"autocomplete-valid",matches:"autocomplete-matches",tags:["cat.forms","wcag21aa","wcag135"],actIds:["73f2c2"],all:["autocomplete-valid"],any:[],none:[]},{id:"avoid-inline-spacing",selector:"[style]",tags:["cat.structure","wcag21aa","wcag1412"],all:[{options:{cssProperties:["line-height","letter-spacing","word-spacing"]},id:"avoid-inline-spacing"}],any:[],none:[]},{id:"blink",selector:"blink",excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag222","section508","section508.22.j"],all:[],any:[],none:["is-on-screen"]},{id:"button-name",selector:"button",matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a","ACT"],actIds:["97a4e1","m6b1q3"],all:[],any:["button-has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"bypass",selector:"html",pageLevel:!0,matches:"bypass-matches",reviewOnFail:!0,tags:["cat.keyboard","wcag2a","wcag241","section508","section508.22.o"],all:[],any:["internal-link-present",{options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"},id:"header-present"},{options:{selector:"main, [role=main]"},id:"landmark"}],none:[]},{id:"color-contrast",matches:"color-contrast-matches",excludeHidden:!1,tags:["cat.color","wcag2aa","wcag143"],all:[],any:[{options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1},id:"color-contrast"}],none:[]},{id:"css-orientation-lock",selector:"html",tags:["cat.structure","wcag134","wcag21aa","experimental"],actIds:["b33eff"],all:[{options:{degreeThreshold:2},id:"css-orientation-lock"}],any:[],none:[],preload:!0},{id:"definition-list",selector:"dl",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:[],none:["structured-dlitems","only-dlitems"]},{id:"dlitem",selector:"dd, dt",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:["dlitem"],none:[]},{id:"document-title",selector:"html",matches:"is-initiator-matches",tags:["cat.text-alternatives","wcag2a","wcag242","ACT"],actIds:["2779a5"],all:[],any:["doc-has-title"],none:[]},{id:"duplicate-id-active",selector:"[id]",matches:"duplicate-id-active-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],all:[],any:["duplicate-id-active"],none:[]},{id:"duplicate-id-aria",selector:"[id]",matches:"duplicate-id-aria-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],actIds:["3ea0c8"],all:[],any:["duplicate-id-aria"],none:[]},{id:"duplicate-id",selector:"[id]",matches:"duplicate-id-misc-matches",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag411"],all:[],any:["duplicate-id"],none:[]},{id:"empty-heading",selector:'h1, h2, h3, h4, h5, h6, [role="heading"]',matches:"heading-matches",tags:["cat.name-role-value","best-practice"],impact:"minor",all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"empty-table-header",selector:'th, [role="rowheader"], [role="columnheader"]',tags:["wcag131","cat.aria"],reviewOnFail:!0,all:[],any:["has-visible-text"],none:[]},{id:"focus-order-semantics",selector:"div, h1, h2, h3, h4, h5, h6, [role=heading], p, span",matches:"inserted-into-focus-order-matches",tags:["cat.keyboard","best-practice","experimental"],all:[],any:[{options:[],id:"has-widget-role"},{options:{roles:["tooltip"]},id:"valid-scrollable-semantics"}],none:[]},{id:"form-field-multiple-labels",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag332"],all:[],any:[],none:["multiple-label"]},{id:"frame-focusable-content",selector:"html",matches:"frame-focusable-content-matches",tags:["cat.keyboard","wcag2a","wcag211"],all:[],any:["frame-focusable-content"],none:[]},{id:"frame-tested",selector:"html, frame, iframe",tags:["cat.structure","review-item","best-practice"],all:[{options:{isViolation:!1},id:"frame-tested"}],any:[],none:[]},{id:"frame-title-unique",selector:"frame[title], iframe[title]",matches:"frame-title-has-text-matches",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:["unique-frame-title"]},{id:"frame-title",selector:"frame, iframe",tags:["cat.text-alternatives","wcag2a","wcag241","wcag412","section508","section508.22.i"],all:[],any:[{options:{attribute:"title"},id:"non-empty-title"},"aria-label","aria-labelledby","presentational-role"],none:[]},{id:"heading-order",selector:"h1, h2, h3, h4, h5, h6, [role=heading]",matches:"heading-matches",tags:["cat.semantics","best-practice"],all:[],any:["heading-order"],none:[]},{id:"hidden-content",selector:"*",excludeHidden:!1,tags:["cat.structure","experimental","review-item","best-practice"],all:[],any:["hidden-content"],none:[]},{id:"html-has-lang",selector:"html",matches:"is-initiator-matches",tags:["cat.language","wcag2a","wcag311","ACT"],actIds:["b5c3f8"],all:[],any:[{options:{attributes:["lang","xml:lang"]},id:"has-lang"}],none:[]},{id:"html-lang-valid",selector:"html[lang], html[xml\\:lang]",tags:["cat.language","wcag2a","wcag311","ACT"],actIds:["bf051a"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"html-xml-lang-mismatch",selector:"html[lang][xml\\:lang]",matches:"xml-lang-mismatch-matches",tags:["cat.language","wcag2a","wcag311","ACT"],actIds:["5b7ae0"],all:["xml-lang-mismatch"],any:[],none:[]},{id:"identical-links-same-purpose",selector:'a[href], area[href], [role="link"]',excludeHidden:!1,matches:"identical-links-same-purpose-matches",tags:["cat.semantics","wcag2aaa","wcag249","best-practice"],actIds:["b20e66","fd3a94"],all:["identical-links-same-purpose"],any:[],none:[]},{id:"image-alt",selector:"img",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],actIds:["23a2a8"],all:[],any:["has-alt","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["alt-space-value"]},{id:"image-redundant-alt",selector:"img",tags:["cat.text-alternatives","best-practice"],all:[],any:[],none:[{options:{parentSelector:"button, [role=button], a[href], p, li, td, th"},id:"duplicate-img-label"}]},{id:"input-button-name",selector:'input[type="button"], input[type="submit"], input[type="reset"]',matches:"no-explicit-name-required-matches",tags:["cat.name-role-value","wcag2a","wcag412","section508","section508.22.a"],all:[],any:["non-empty-if-present",{options:{attribute:"value"},id:"non-empty-value"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"input-image-alt",selector:'input[type="image"]',matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],actIds:["59796f"],all:[],any:[{options:{attribute:"alt"},id:"non-empty-alt"},"aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"label-content-name-mismatch",matches:"label-content-name-mismatch-matches",tags:["cat.semantics","wcag21a","wcag253","experimental"],actIds:["2ee8b8"],all:[],any:[{options:{pixelThreshold:.1,occuranceThreshold:3},id:"label-content-name-mismatch"}],none:[]},{id:"label-title-only",selector:"input, select, textarea",matches:"label-matches",tags:["cat.forms","best-practice"],all:[],any:[],none:["title-only"]},{id:"label",selector:"input, textarea",matches:"label-matches",tags:["cat.forms","wcag2a","wcag412","wcag131","section508","section508.22.n","ACT"],actIds:["e086e5","307n5z"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},{options:{attribute:"placeholder"},id:"non-empty-placeholder"},"presentational-role"],none:["help-same-as-label","hidden-explicit-label"]},{id:"landmark-banner-is-top-level",selector:"header:not([role]), [role=banner]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-complementary-is-top-level",selector:"aside:not([role]), [role=complementary]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-contentinfo-is-top-level",selector:"footer:not([role]), [role=contentinfo]",matches:"landmark-has-body-context-matches",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-main-is-top-level",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:["landmark-is-top-level"],none:[]},{id:"landmark-no-duplicate-banner",selector:"header:not([role]), [role=banner]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"header:not([role]), [role=banner]",nativeScopeFilter:"article, aside, main, nav, section"},id:"page-no-duplicate-banner"}],none:[]},{id:"landmark-no-duplicate-contentinfo",selector:"footer:not([role]), [role=contentinfo]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"footer:not([role]), [role=contentinfo]",nativeScopeFilter:"article, aside, main, nav, section"},id:"page-no-duplicate-contentinfo"}],none:[]},{id:"landmark-no-duplicate-main",selector:"main:not([role]), [role=main]",tags:["cat.semantics","best-practice"],all:[],any:[{options:{selector:"main:not([role]), [role='main']"},id:"page-no-duplicate-main"}],none:[]},{id:"landmark-one-main",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"main:not([role]), [role='main']"},id:"page-has-main"}],any:[],none:[]},{id:"landmark-unique",selector:"[role=banner], [role=complementary], [role=contentinfo], [role=main], [role=navigation], [role=region], [role=search], [role=form], form, footer, header, aside, main, nav, section",tags:["cat.semantics","best-practice"],matches:"landmark-unique-matches",all:[],any:["landmark-is-unique"],none:[]},{id:"link-in-text-block",selector:"a[href], [role=link]",matches:"link-in-text-block-matches",excludeHidden:!1,tags:["cat.color","experimental","wcag2a","wcag141"],all:["link-in-text-block"],any:[],none:[]},{id:"link-name",selector:"a[href]",tags:["cat.name-role-value","wcag2a","wcag412","wcag244","section508","section508.22.a","ACT"],actIds:["c487ae"],all:[],any:["has-visible-text","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:["focusable-no-name"]},{id:"list",selector:"ul, ol",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:[],none:["only-listitems"]},{id:"listitem",selector:"li",matches:"no-role-matches",tags:["cat.structure","wcag2a","wcag131"],all:[],any:["listitem"],none:[]},{id:"marquee",selector:"marquee",excludeHidden:!1,tags:["cat.parsing","wcag2a","wcag222"],all:[],any:[],none:["is-on-screen"]},{id:"meta-refresh",selector:'meta[http-equiv="refresh"]',excludeHidden:!1,tags:["cat.time-and-media","wcag2a","wcag2aaa","wcag221","wcag224","wcag325"],all:[],any:["meta-refresh"],none:[]},{id:"meta-viewport-large",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice"],all:[],any:[{options:{scaleMinimum:5,lowerBound:2},id:"meta-viewport-large"}],none:[]},{id:"meta-viewport",selector:'meta[name="viewport"]',matches:"is-initiator-matches",excludeHidden:!1,tags:["cat.sensory-and-visual-cues","best-practice","ACT"],actIds:["b4f0c3"],all:[],any:[{options:{scaleMinimum:2},id:"meta-viewport"}],none:[]},{id:"nested-interactive",matches:"nested-interactive-matches",tags:["cat.keyboard","wcag2a","wcag412"],actIds:["307n5z"],all:[],any:["no-focusable-content"],none:[]},{id:"no-autoplay-audio",excludeHidden:!1,selector:"audio[autoplay], video[autoplay]",matches:"no-autoplay-audio-matches",tags:["cat.time-and-media","wcag2a","wcag142","experimental"],actIds:["80f0bf"],preload:!0,all:[{options:{allowedDuration:3},id:"no-autoplay-audio"}],any:[],none:[]},{id:"object-alt",selector:"object",matches:"no-explicit-name-required-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a"],actIds:["8fc3b6"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:[]},{id:"p-as-heading",selector:"p",matches:"p-as-heading-matches",tags:["cat.semantics","wcag2a","wcag131","experimental"],all:[{options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}]},id:"p-as-heading"}],any:[],none:[]},{id:"page-has-heading-one",selector:"html",tags:["cat.semantics","best-practice"],all:[{options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]"},id:"page-has-heading-one"}],any:[],none:[]},{id:"presentation-role-conflict",matches:"has-implicit-chromium-role-matches",selector:'[role="none"], [role="presentation"]',tags:["cat.aria","best-practice"],all:[],any:[],none:["is-element-focusable","has-global-aria-attribute"]},{id:"region",selector:"body *",tags:["cat.keyboard","best-practice"],all:[],any:[{options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"},id:"region"}],none:[]},{id:"role-img-alt",selector:"[role='img']:not(img, area, input, object)",matches:"html-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],actIds:["23a2a8"],all:[],any:["aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"scope-attr-valid",selector:"td[scope], th[scope]",tags:["cat.tables","best-practice"],all:["html5-scope",{options:{values:["row","col","rowgroup","colgroup"]},id:"scope-value"}],any:[],none:[]},{id:"scrollable-region-focusable",matches:"scrollable-region-focusable-matches",tags:["cat.keyboard","wcag2a","wcag211"],actIds:["0ssw9k"],all:[],any:["focusable-content","focusable-element"],none:[]},{id:"select-name",selector:"select",tags:["cat.forms","wcag2a","wcag412","wcag131","section508","section508.22.n","ACT"],actIds:["e086e5"],all:[],any:["implicit-label","explicit-label","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"},"presentational-role"],none:["help-same-as-label","hidden-explicit-label"]},{id:"server-side-image-map",selector:"img[ismap]",tags:["cat.text-alternatives","wcag2a","wcag211","section508","section508.22.f"],all:[],any:[],none:["exists"]},{id:"skip-link",selector:'a[href^="#"], a[href^="/#"]',matches:"skip-link-matches",tags:["cat.keyboard","best-practice"],all:[],any:["skip-link"],none:[]},{id:"svg-img-alt",selector:'[role="img"], [role="graphics-symbol"], svg[role="graphics-document"]',matches:"svg-namespace-matches",tags:["cat.text-alternatives","wcag2a","wcag111","section508","section508.22.a","ACT"],actIds:["7d6734"],all:[],any:["svg-non-empty-title","aria-label","aria-labelledby",{options:{attribute:"title"},id:"non-empty-title"}],none:[]},{id:"tabindex",selector:"[tabindex]",tags:["cat.keyboard","best-practice"],all:[],any:["tabindex"],none:[]},{id:"table-duplicate-name",selector:"table",tags:["cat.tables","best-practice"],all:[],any:[],none:["same-caption-summary"]},{id:"table-fake-caption",selector:"table",matches:"data-table-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g"],all:["caption-faked"],any:[],none:[]},{id:"td-has-header",selector:"table",matches:"data-table-large-matches",tags:["cat.tables","experimental","wcag2a","wcag131","section508","section508.22.g"],all:["td-has-header"],any:[],none:[]},{id:"td-headers-attr",selector:"table",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g"],actIds:["a25f45"],all:["td-headers-attr"],any:[],none:[]},{id:"th-has-data-cells",selector:"table",matches:"data-table-matches",tags:["cat.tables","wcag2a","wcag131","section508","section508.22.g"],actIds:["d0f69e"],all:["th-has-data-cells"],any:[],none:[]},{id:"valid-lang",selector:"[lang], [xml\\:lang]",matches:"not-html-matches",tags:["cat.language","wcag2aa","wcag312"],all:[],any:[],none:[{options:{attributes:["lang","xml:lang"]},id:"valid-lang"}]},{id:"video-caption",selector:"video",excludeHidden:!1,tags:["cat.text-alternatives","wcag2a","wcag122","section508","section508.22.a"],actIds:["eac66b"],all:[],any:[],none:["caption"]}],checks:[{id:"abstractrole",evaluate:"abstractrole-evaluate"},{id:"aria-allowed-attr",evaluate:"aria-allowed-attr-evaluate"},{id:"aria-allowed-role",evaluate:"aria-allowed-role-evaluate",options:{allowImplicit:!0,ignoredTags:[]}},{id:"aria-errormessage",evaluate:"aria-errormessage-evaluate"},{id:"aria-hidden-body",evaluate:"aria-hidden-body-evaluate"},{id:"aria-level",evaluate:"aria-level-evaluate"},{id:"aria-prohibited-attr",evaluate:"aria-prohibited-attr-evaluate",options:{elementsAllowedAriaLabel:["applet","input"]}},{id:"aria-required-attr",evaluate:"aria-required-attr-evaluate"},{id:"aria-required-children",evaluate:"aria-required-children-evaluate",options:{reviewEmpty:["doc-bibliography","doc-endnotes","grid","list","listbox","table","tablist","tree","treegrid","rowgroup"]}},{id:"aria-required-parent",evaluate:"aria-required-parent-evaluate",options:{ownGroupRoles:["listitem","treeitem"]}},{id:"aria-roledescription",evaluate:"aria-roledescription-evaluate",options:{supportedRoles:["button","img","checkbox","radio","combobox","menuitemcheckbox","menuitemradio"]}},{id:"aria-unsupported-attr",evaluate:"aria-unsupported-attr-evaluate"},{id:"aria-valid-attr-value",evaluate:"aria-valid-attr-value-evaluate",options:[]},{id:"aria-valid-attr",evaluate:"aria-valid-attr-evaluate",options:[]},{id:"fallbackrole",evaluate:"fallbackrole-evaluate"},{id:"has-global-aria-attribute",evaluate:"has-global-aria-attribute-evaluate"},{id:"has-widget-role",evaluate:"has-widget-role-evaluate",options:[]},{id:"invalidrole",evaluate:"invalidrole-evaluate"},{id:"is-element-focusable",evaluate:"is-element-focusable-evaluate"},{id:"no-implicit-explicit-label",evaluate:"no-implicit-explicit-label-evaluate"},{id:"unsupportedrole",evaluate:"unsupportedrole-evaluate"},{id:"valid-scrollable-semantics",evaluate:"valid-scrollable-semantics-evaluate",options:{roles:["tooltip"]}},{id:"color-contrast",evaluate:"color-contrast-evaluate",options:{ignoreUnicode:!0,ignoreLength:!1,ignorePseudo:!1,boldValue:700,boldTextPt:14,largeTextPt:18,contrastRatio:{normal:{expected:4.5},large:{expected:3}},pseudoSizeThreshold:.25,shadowOutlineEmMax:.1}},{id:"link-in-text-block",evaluate:"link-in-text-block-evaluate"},{id:"autocomplete-appropriate",evaluate:"autocomplete-appropriate-evaluate",deprecated:!0},{id:"autocomplete-valid",evaluate:"autocomplete-valid-evaluate"},{id:"accesskeys",evaluate:"accesskeys-evaluate",after:"accesskeys-after"},{id:"focusable-content",evaluate:"focusable-content-evaluate"},{id:"focusable-disabled",evaluate:"focusable-disabled-evaluate"},{id:"focusable-element",evaluate:"focusable-element-evaluate"},{id:"focusable-modal-open",evaluate:"focusable-modal-open-evaluate"},{id:"focusable-no-name",evaluate:"focusable-no-name-evaluate"},{id:"focusable-not-tabbable",evaluate:"focusable-not-tabbable-evaluate"},{id:"frame-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"landmark-is-top-level",evaluate:"landmark-is-top-level-evaluate"},{id:"no-focusable-content",evaluate:"no-focusable-content-evaluate"},{id:"page-has-heading-one",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"h1:not([role], [aria-level]), :is(h1, h2, h3, h4, h5, h6):not([role])[aria-level=1], [role=heading][aria-level=1]"}},{id:"page-has-main",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:"main:not([role]), [role='main']"}},{id:"page-no-duplicate-banner",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"header:not([role]), [role=banner]",nativeScopeFilter:"article, aside, main, nav, section"}},{id:"page-no-duplicate-contentinfo",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"footer:not([role]), [role=contentinfo]",nativeScopeFilter:"article, aside, main, nav, section"}},{id:"page-no-duplicate-main",evaluate:"page-no-duplicate-evaluate",after:"page-no-duplicate-after",options:{selector:"main:not([role]), [role='main']"}},{id:"tabindex",evaluate:"tabindex-evaluate"},{id:"alt-space-value",evaluate:"alt-space-value-evaluate"},{id:"duplicate-img-label",evaluate:"duplicate-img-label-evaluate",options:{parentSelector:"button, [role=button], a[href], p, li, td, th"}},{id:"explicit-label",evaluate:"explicit-evaluate"},{id:"help-same-as-label",evaluate:"help-same-as-label-evaluate",enabled:!1},{id:"hidden-explicit-label",evaluate:"hidden-explicit-label-evaluate"},{id:"implicit-label",evaluate:"implicit-evaluate"},{id:"label-content-name-mismatch",evaluate:"label-content-name-mismatch-evaluate",options:{pixelThreshold:.1,occuranceThreshold:3}},{id:"multiple-label",evaluate:"multiple-label-evaluate"},{id:"title-only",evaluate:"title-only-evaluate"},{id:"landmark-is-unique",evaluate:"landmark-is-unique-evaluate",after:"landmark-is-unique-after"},{id:"has-lang",evaluate:"has-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"valid-lang",evaluate:"valid-lang-evaluate",options:{attributes:["lang","xml:lang"]}},{id:"xml-lang-mismatch",evaluate:"xml-lang-mismatch-evaluate"},{id:"dlitem",evaluate:"dlitem-evaluate"},{id:"listitem",evaluate:"listitem-evaluate"},{id:"only-dlitems",evaluate:"only-dlitems-evaluate"},{id:"only-listitems",evaluate:"only-listitems-evaluate"},{id:"structured-dlitems",evaluate:"structured-dlitems-evaluate"},{id:"caption",evaluate:"caption-evaluate"},{id:"frame-tested",evaluate:"frame-tested-evaluate",after:"frame-tested-after",options:{isViolation:!1}},{id:"no-autoplay-audio",evaluate:"no-autoplay-audio-evaluate",options:{allowedDuration:3}},{id:"css-orientation-lock",evaluate:"css-orientation-lock-evaluate",options:{degreeThreshold:2}},{id:"meta-viewport-large",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:5,lowerBound:2}},{id:"meta-viewport",evaluate:"meta-viewport-scale-evaluate",options:{scaleMinimum:2}},{id:"header-present",evaluate:"has-descendant-evaluate",after:"has-descendant-after",options:{selector:":is(h1, h2, h3, h4, h5, h6):not([role]), [role=heading]"}},{id:"heading-order",evaluate:"heading-order-evaluate",after:"heading-order-after"},{id:"identical-links-same-purpose",evaluate:"identical-links-same-purpose-evaluate",after:"identical-links-same-purpose-after"},{id:"internal-link-present",evaluate:"internal-link-present-evaluate"},{id:"landmark",evaluate:"has-descendant-evaluate",options:{selector:"main, [role=main]"}},{id:"meta-refresh",evaluate:"meta-refresh-evaluate"},{id:"p-as-heading",evaluate:"p-as-heading-evaluate",options:{margins:[{weight:150,italic:!0},{weight:150,size:1.15},{italic:!0,size:1.15},{size:1.4}]}},{id:"region",evaluate:"region-evaluate",after:"region-after",options:{regionMatcher:"dialog, [role=dialog], [role=alertdialog], svg"}},{id:"skip-link",evaluate:"skip-link-evaluate"},{id:"unique-frame-title",evaluate:"unique-frame-title-evaluate",after:"unique-frame-title-after"},{id:"duplicate-id-active",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id-aria",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"duplicate-id",evaluate:"duplicate-id-evaluate",after:"duplicate-id-after"},{id:"aria-label",evaluate:"aria-label-evaluate"},{id:"aria-labelledby",evaluate:"aria-labelledby-evaluate"},{id:"avoid-inline-spacing",evaluate:"avoid-inline-spacing-evaluate",options:{cssProperties:["line-height","letter-spacing","word-spacing"]}},{id:"button-has-visible-text",evaluate:"has-text-content-evaluate"},{id:"doc-has-title",evaluate:"doc-has-title-evaluate"},{id:"exists",evaluate:"exists-evaluate"},{id:"has-alt",evaluate:"has-alt-evaluate"},{id:"has-visible-text",evaluate:"has-text-content-evaluate"},{id:"is-on-screen",evaluate:"is-on-screen-evaluate"},{id:"non-empty-alt",evaluate:"attr-non-space-content-evaluate",options:{attribute:"alt"}},{id:"non-empty-if-present",evaluate:"non-empty-if-present-evaluate"},{id:"non-empty-placeholder",evaluate:"attr-non-space-content-evaluate",options:{attribute:"placeholder"}},{id:"non-empty-title",evaluate:"attr-non-space-content-evaluate",options:{attribute:"title"}},{id:"non-empty-value",evaluate:"attr-non-space-content-evaluate",options:{attribute:"value"}},{id:"presentational-role",evaluate:"presentational-role-evaluate"},{id:"role-none",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"none"}}}},{id:"role-presentation",evaluate:"matches-definition-evaluate",deprecated:!0,options:{matcher:{attributes:{role:"presentation"}}}},{id:"svg-non-empty-title",evaluate:"svg-non-empty-title-evaluate"},{id:"caption-faked",evaluate:"caption-faked-evaluate"},{id:"html5-scope",evaluate:"html5-scope-evaluate"},{id:"same-caption-summary",evaluate:"same-caption-summary-evaluate"},{id:"scope-value",evaluate:"scope-value-evaluate",options:{values:["row","col","rowgroup","colgroup"]}},{id:"td-has-header",evaluate:"td-has-header-evaluate"},{id:"td-headers-attr",evaluate:"td-headers-attr-evaluate"},{id:"th-has-data-cells",evaluate:"th-has-data-cells-evaluate"},{id:"hidden-content",evaluate:"hidden-content-evaluate"}]})}("object"==typeof window?window:this);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: axe-core-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0.pre.d50cf94
4
+ version: 4.2.1.pre.d87a85a
5
5
  platform: ruby
6
6
  authors:
7
7
  - Deque Systems
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-24 00:00:00.000000000 Z
11
+ date: 2021-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dumb_delegator
@@ -25,7 +25,7 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: capybara
28
+ name: virtus
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,27 +39,27 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: selenium-webdriver
42
+ name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :runtime
47
+ version: '2.1'
48
+ type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '2.1'
55
55
  - !ruby/object:Gem::Dependency
56
- name: watir
56
+ name: capybara
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :runtime
62
+ type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -67,13 +67,13 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: virtus
70
+ name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
- type: :runtime
76
+ type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
@@ -81,21 +81,21 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: bundler
84
+ name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '2.1'
89
+ version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - "~>"
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
- version: '2.1'
96
+ version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: rake
98
+ name: rspec-its
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
@@ -109,7 +109,7 @@ dependencies:
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
- name: rspec
112
+ name: selenium-webdriver
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
@@ -123,7 +123,7 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
- name: rspec-its
126
+ name: watir
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="