axe-core-api 4.2.0.pre.5a82425 → 4.2.0.pre.6beb600

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b750f965cfbe613784bf583a2450d6ebcfdbaa1ff41ddfe59d7ce42c3d46b0e
4
- data.tar.gz: 85e442a8d394e03df886e310216176ceae55411b21851137ec09b347de0feb6e
3
+ metadata.gz: 93fdbc2f4d06b670e6a36caa7489196b44f3b2a09e939ec16b541ae7c45c47d9
4
+ data.tar.gz: 7dcc16ad9bd768830d7a5a227ba72af18e7ec67d0612397cd8cd391547049c0d
5
5
  SHA512:
6
- metadata.gz: 14e860fe1b2ed2c7dabe452c88d6efc1c0c79f8c287a111abec82e00092e5c3e3aaa7b834c7ec7168c5c0f9d0e741ce0f0e574a20a2e5754d6d9f30af3fb3fd8
7
- data.tar.gz: 54b6cb57599d801983aa41ca5cbb05d653ee881e6b62e7ed88bec45a1ac7d6aeedf7d9363c2ec4f7ae7166d4564a5266947a7a57361ee2102410a65d657ff45e
6
+ metadata.gz: e359e128c431a0345906f64bdf29444f35f5128cb67c728cf4af58bbbe55e88b6d600b4766800e886e16d225f6746f3e0c31f911e9fd21e895f9de740356e13b
7
+ data.tar.gz: daa3fcd4f2c12b81e560e19771151ae3010977153f74423b31b16e5567dac224ce89825ed53da5556ea56bf5991a8db4120f144a333e983b29870ba6ea4fd6d9
@@ -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,170 @@ 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
+ axe_finish_run page, partial_results
41
+ }
42
+ Audit.new to_js, Results.new(results)
33
43
  end
34
44
 
35
45
  private
36
46
 
37
47
  def audit(page)
38
- yield page.execute_async_script "#{METHOD_NAME}.apply(#{Core::JS_NAME}, arguments)", *js_args
48
+ script = <<-JS
49
+ var callback = arguments[arguments.length - 1];
50
+ var context = arguments[0] || document;
51
+ var options = arguments[1] || {};
52
+ #{METHOD_NAME}(context, options).then(callback);
53
+ JS
54
+ page.execute_async_script_fixed script, *js_args
55
+ end
56
+
57
+ def switch_to_frame_by_handle(page, handle)
58
+ page = get_selenium page
59
+ page.switch_to.frame handle
60
+ end
61
+
62
+ def switch_to_parent_frame(page)
63
+ page = get_selenium page
64
+ page.switch_to.parent_frame
65
+ end
66
+
67
+ def within_about_blank_context(page)
68
+ driver = get_selenium page
69
+
70
+ driver.execute_script("window.open('about:blank'), '_blank'")
71
+ driver.switch_to.window page.window_handles[-1]
72
+ driver.get "about:blank"
73
+
74
+ ret = yield page
75
+
76
+ driver.switch_to.window page.window_handles[-1]
77
+ driver.close
78
+ driver.switch_to.window @original_window
79
+
80
+ ret
81
+ end
82
+ def window_handle(page)
83
+ page = get_selenium page
84
+
85
+ return page.window_handle if page.respond_to?("window_handle")
86
+ page.current_window_handle
87
+ end
88
+
89
+ def run_partial_recursive(page, context, lib, top_level = false)
90
+ begin
91
+ if not top_level
92
+ begin
93
+ Common::Loader.new(page, lib).load_top_level Axe::Configuration.instance.jslib
94
+ rescue
95
+ return [nil]
96
+ end
97
+
98
+ end
99
+
100
+ frame_contexts = get_frame_context_script page
101
+ if frame_contexts.respond_to?("key?") and frame_contexts.key?("errorMessage")
102
+ throw frame_contexts if top_level
103
+ return [nil]
104
+ end
105
+
106
+ res = axe_run_partial page, context
107
+ if res.key?("errorMessage")
108
+ throw res if top_level
109
+ return [nil]
110
+ else
111
+ results = [res]
112
+ end
113
+
114
+ for frame_context in frame_contexts
115
+ frame_selector = frame_context["frameSelector"]
116
+ frame_context = frame_context["frameContext"]
117
+ frame = axe_shadow_select page, frame_selector
118
+ switch_to_frame_by_handle page, frame
119
+ res = run_partial_recursive page, frame_context, lib
120
+ results += res
121
+ end
122
+
123
+ ensure
124
+ switch_to_parent_frame page if not top_level
125
+ end
126
+ return results
127
+ end
128
+
129
+ def axe_finish_run(page, partial_results)
130
+ script = <<-JS
131
+ const partialResults = arguments[0];
132
+ return axe.finishRun(partialResults);
133
+ JS
134
+ page.execute_script_fixed script, partial_results
135
+ end
136
+
137
+ def axe_shadow_select(page, frame_selector)
138
+ script = <<-JS
139
+ const frameSelector = arguments[0];
140
+ return axe.utils.shadowSelect(frameSelector);
141
+ JS
142
+ page.execute_script_fixed script, frame_selector
143
+ end
144
+
145
+ def axe_run_partial(page, context)
146
+ script = <<-JS
147
+ const context = arguments[0];
148
+ const options = arguments[1];
149
+ const cb = arguments[arguments.length - 1];
150
+ try {
151
+ const ret = window.axe.runPartial(context, options);
152
+ cb(ret);
153
+ } catch (err) {
154
+ const ret = {
155
+ violations: [],
156
+ passes: [],
157
+ url: '',
158
+ timestamp: new Date().toString(),
159
+ errorMessage: err.message
160
+ };
161
+ cb(ret);
162
+ }
163
+ JS
164
+ page.execute_async_script_fixed script, context, @options
165
+ end
166
+
167
+ def get_frame_context_script(page)
168
+ script = <<-JS
169
+ const context = arguments[0];
170
+ try {
171
+ return window.axe.utils.getFrameContexts(context);
172
+ } catch (err) {
173
+ return {
174
+ violations: [],
175
+ passes: [],
176
+ url: '',
177
+ timestamp: new Date().toString(),
178
+ errorMessage: err.message
179
+ };
180
+ }
181
+ JS
182
+ page.execute_script_fixed script, @context
183
+ end
184
+
185
+ def get_selenium(page)
186
+ page = page.driver if page.respond_to?("driver")
187
+ page = page.browser if page.respond_to?("browser") and not page.browser.is_a?(::Symbol)
188
+ page
39
189
  end
40
190
 
41
191
  def js_args
42
192
  [@context, @options]
43
- .reject(&:empty?)
44
- .map(&:to_json)
193
+ .map(&:to_h)
45
194
  end
46
195
 
47
196
  def to_js
data/lib/axe/core.rb CHANGED
@@ -14,13 +14,32 @@ module Axe
14
14
  end
15
15
 
16
16
  def call(callable)
17
- callable.call(@page)
17
+ if has_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
 
22
30
  def load_axe_core(source)
23
- Common::Loader.new(@page, self).call(source) unless already_loaded?
31
+ return if already_loaded?
32
+ loader = Common::Loader.new(@page, self)
33
+ loader.load_top_level source
34
+ return if has_run_partial?
35
+
36
+ loader.call source
37
+ end
38
+
39
+ def has_run_partial?
40
+ @page.evaluate_script <<-JS
41
+ typeof window.axe.runPartial === 'function'
42
+ JS
24
43
  end
25
44
 
26
45
  def already_loaded?
data/lib/loader.rb CHANGED
@@ -6,10 +6,17 @@ 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
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)
13
20
  @page.execute_script "axe.configure({ allowedOrigins: ['<unsafe_all_origins>'] });"
14
21
  Common::Hooks.run_after_load @lib
15
22
  load_into_iframes(source) unless Axe::Configuration.instance.skip_iframes
@@ -19,7 +26,7 @@ module Common
19
26
 
20
27
  def load_into_iframes(source)
21
28
  @page.find_frames.each do |iframe|
22
- @page.within_frame(iframe) { call source }
29
+ @page.within_frame(iframe) { call source, false }
23
30
  end
24
31
  end
25
32
  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.3
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 Bu=window,document=window.document;function Lu(e){return(Lu="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 qu(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.2.3","function"==typeof define&&define.amd&&define("axe-core",[],function(){return axe}),"object"===("undefined"==typeof module?"undefined":Lu(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),(qu.prototype=Object.create(Error.prototype)).constructor=qu;var Mu=["variant"],ju=["matches"],Uu=["chromium"],Vu=["noImplicit"],Hu=["noPresentational"];function zu(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 $u(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 Wu(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"!==Lu(e)&&"function"!=typeof e?Gu(t):e}}function Gu(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 Yu(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 Ku(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 Xu(){return(Xu=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 Ju(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 Qu(e,t,r){return t&&a(e.prototype,t),r&&a(e,r),e}function Zu(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 Lu(e){return(Lu="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"===Lu(r)||"function"==typeof r){var n,o=Zu(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 b=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(b.isHex(d)){var n=d;for(i++,d=o.charAt(i);b.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(b.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),b.identSpecialChars[d])e+=d;else{if(b.isHex(d)){var t=d;for(i++,d=o.charAt(i);b.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(b.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('"',b.doubleQuotesEscapeChars);else if("'"===d)a=p("'",b.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('"',b.doubleQuotesEscapeChars);else if("'"===d)n=p("'",b.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}}),b=n(function(e,t){"use strict";t.exports=function(){var e=Math.sign;return"function"==typeof e&&(1===e(10)&&-1===e(-20))}}),y=n(function(e,t){"use strict";t.exports=function(e){return e=Number(e),isNaN(e)||0===e?e:0<e?1:-1}}),v=n(function(e,t){"use strict";t.exports=b()()?Math.sign:y()}),D=n(function(e,t){"use strict";var r=v(),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}}),R=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=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})}}}),E=n(function(e,t){"use strict";t.exports=x()("forEach")}),A=n(function(){}),T=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")}}),N=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=N()()?Object.keys:_()}),S=n(function(e,t){"use strict";var i=O(),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}}),P=n(function(e,t){"use strict";t.exports=T()()?Object.assign:S()}),I=n(function(e,t){"use strict";var r=C(),a={function:!0,object:!0};t.exports=function(e){return r(e)&&a[Lu(e)]||!1}}),B=n(function(e,a){"use strict";var n=P(),o=I(),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=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}}),q=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})}),M=n(function(e,t){"use strict";t.exports=function(e){return null!=e}}),j=n(function(e,t){"use strict";var r=M(),a={object:!0,function:!0,undefined:!0};t.exports=function(e){return!!r(e)&&hasOwnProperty.call(a,Lu(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=M(),o=H(),l=P(),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"===Lu(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"===Lu(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"===Lu(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)},b=o({},g);t.exports=e=function(e){return null==e?a(b):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":Lu(globalThis))&&(!!globalThis&&globalThis.Array===Array)}}),J=n(function(e,t){function r(){if("object"===("undefined"==typeof self?"undefined":Lu(self))&&self)return self;if("object"===(void 0===window?"undefined":Lu(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[Lu(t.iterator)]&&(!!a[Lu(t.toPrimitive)]&&!!a[Lu(t.toStringTag)])}}),ee=n(function(e,t){"use strict";t.exports=function(e){return!!e&&("symbol"===Lu(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"===Lu(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"===Lu(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(),b=k(),y=R(),v=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(y(e)),v(d)&&b(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=b(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(),b=q(),y=G(),r=Y().methods,v=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=v(e.resolvers)),p=i?b(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?b(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=b(function(){var e=arguments;return 0===t?m.data:(f&&(e=f(e)),e=i?i(e):String(e[0]),m[e])}),h=b(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__:y(!0),delete:y(s),clear:y(o.clear),_get:y(e),_has:y(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)}}),be=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}}),ye=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""}}}),ve=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=ve()()?Number.isNaN:De()}),xe=n(function(e,t){"use strict";var n=we(),o=F(),i=R(),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":Lu(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":Lu(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":Lu(setTimeout))?function(e){setTimeout(o(e),0)}:null}()}),Re=n(function(){"use strict";var p=de(),t=Fe(),r=L(),n=q(),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)}))})}}),Te=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}}),Ne=n(function(e,t){"use strict";t.exports=function(e){return"function"==typeof e}}),_e=n(function(e,t){"use strict";var r=Ne();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=R(),a=_e();t.exports=function(e){return a(r(e))}}),Se=n(function(e,t){"use strict";var r=Ne();t.exports=function(e){try{return e&&r(e.toString)?e.toString():String(e)}catch(e){return"<Non-coercible to string value>"}}}),Pe=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)})}}),Ie=n(function(e,t){function r(e){return!!e&&("object"===Lu(e)||"function"==typeof e)&&"function"==typeof e.then}t.exports=r,t.exports.default=r}),Be=n(function(){"use strict";var t=Fe(),e=Te(),r=Oe(),a=Pe(),f=Ie(),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)})})}}),qe=n(function(e,t){"use strict";t.exports=2147483647}),Me=n(function(e,t){"use strict";var r=F(),a=qe();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=Ie(),d=Me(),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=be():1<t&&(r.normalizer=ye()(t)):r.normalizer=!1===t?Ee()():1===t?Ae()():Ce()(t)),r.async&&Re(),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":Lu(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!==Bu)return Bu;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):y())};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,b,y=void 0;function v(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"===Lu(e)&&e.constructor===this)return e;var t=new this(x);return R(t,e),t}var y=u?function(){return process.nextTick(p)}:l?(h=0,g=new l(p),b=document.createTextNode(""),g.observe(b,{characterData:!0}),function(){b.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?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===v&&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(a=Lu(r=e),null===r||"object"!==a&&"function"!==a)N(t,e);else{a=void 0;try{a=e.then}catch(e){return void _(t,e)}k(t,e,a)}var r,a}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===v&&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=v,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!==Bu)e=Bu;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"===Lu(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,b=Math.log,y=Math.min,v=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 R(e){return s(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 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 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),e=e-t;return!(e<.5)&&(.5<e||t%2)?t+1:t}for(e!=e?(n=(1<<t)-1,o=v(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))>=v(2,1-c)?(n=y(g(b(e)/m),1023),2<=(o=d(e/v(2,n)*v(2,r)))/v(2,r)&&(n+=1,o=1),c<n?(n=(1<<t)-1,o=0):(n+=c,o-=v(2,r))):(n=0,o=d(e/v(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*v(2,l-o)*(1+s/v(2,r)):0!==s?i*v(2,-(o-1))*(s/v(2,r)):i<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(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(l)&&a.reverse(),M(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(M(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"===Lu(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"!==Lu(e)||(e instanceof s||"ArrayBuffer"===f.Class(e))){if("object"!==Lu(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"===Lu(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"!==Lu(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,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]),l=18===M(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 "+Lu(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!==Bu?Bu: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":Lu(console))&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},Ze=/[\t\r\n\f]/g;function et(){Ju(this,et),this.parent=void 0}var tt=(Qu(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 Ir},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 xo},finalizeRuleResult:function(){return Ht},findBy:function(){return Gr},getAllChecks:function(){return Wr},getAncestry:function(){return gr},getBaseLang:function(){return xn},getCheckMessage:function(){return _n},getCheckOption:function(){return On},getFlattenedTree:function(){return wn},getFriendlyUriEnd:function(){return Qt},getNodeAttributes:function(){return er},getNodeFromTree:function(){return Dr},getPreloadConfig:function(){return ho},getRootNode:function(){return aa},getRule:function(){return Sn},getScroll:function(){return Pn},getScrollState:function(){return In},getSelector:function(){return mr},getSelectorData:function(){return cr},getShadowSelector:function(){return nr},getStandards:function(){return Bn},getStyleSheetFactory:function(){return qn},getXpath:function(){return br},injectStyle:function(){return Mn},isHidden:function(){return jn},isHtmlElement:function(){return Vn},isNodeInContext:function(){return zn},isShadowRoot:function(){return ta},isValidLang:function(){return To},isXHTML:function(){return rr},matches:function(){return Pr},matchesExpression:function(){return Sr},matchesSelector:function(){return tr},memoize:function(){return Wn},mergeResults:function(){return Kr},nodeSorter:function(){return Gn},parseCrossOriginStylesheet:function(){return Qn},parseSameOriginStylesheet:function(){return Yn},parseStylesheet:function(){return Kn},performanceTimer:function(){return ro},pollyfillElementsFromPoint:function(){return ao},preload:function(){return go},preloadCssom:function(){return uo},preloadMedia:function(){return fo},processMessage:function(){return Nn},publishMetaData:function(){return yo},querySelectorAll:function(){return vo},querySelectorAllFilter:function(){return so},queue:function(){return jr},respondable:function(){return Vr},ruleShouldRun:function(){return wo},select:function(){return Eo},sendCommandToFrame:function(){return $r},setScrollState:function(){return Ao},shouldPreload:function(){return mo},toArray:function(){return Yt},tokenList:function(){return Co},uniqueArray:function(){return io},uuid:function(){return Rt},validInputTypes:function(){return Fo},validLangs:function(){return Ro}});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"===Lu(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"===Lu(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,bt=[],yt={},vt=0;vt<256;vt++)bt[vt]=(vt+256).toString(16).substr(1),yt[bt[vt]]=vt;function Dt(e,t){t=t||0;return bt[e[t++]]+bt[e[t++]]+bt[e[t++]]+bt[e[t++]]+"-"+bt[e[t++]]+bt[e[t++]]+"-"+bt[e[t++]]+bt[e[t++]]+"-"+bt[e[t++]]+bt[e[t++]]+"-"+bt[e[t++]]+bt[e[t++]]+bt[e[t++]]+bt[e[t++]]+bt[e[t++]]+bt[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)}(Ls=kt).v1=Ft,Ls.v4=kt,Ls.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++]=yt[e])});n<16;)t[a+n++]=0;return t},Ls.unparse=Dt,Ls.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;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=Xu({messageId:Nt()},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,!Tt.includes(e)&&(Tt.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:Nt(),keepalive:!0},!0)}catch(e){return axe.log(e)}}(o,e,l)}}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){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,qt=Je.FAIL_PRIO,Mt=[];Mt[Je.PASS_PRIO]=!0,Mt[Je.CANTTELL_PRIO]=null,Mt[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:Mt.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,qt].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=Ku(Xt(t,t.indexOf("#")),2))[0],d=e[1]),t.includes("?")&&(t=(r=Ku(Xt(t,t.indexOf("?")),2))[0],c=r[1]),t.includes("://")?(n=(r=Ku(t.split("://"),2))[0],o=(r=Ku(Xt(t=r[1],t.indexOf("/")),2))[0],t=r[1]):"//"===t.substr(0,2)&&(o=(a=Ku(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=Ku(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 br=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,"]"):"")},"")},yr={},vr={set:function(e,t){yr[e]=t},get:function(e){return yr[e]},clear:function(){yr={}}};var Dr=function(e,t){return e=t||e,vr.get("nodeMap")?vr.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||[br(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=Xu({},e,{selector:[].concat(Yu(r.selector),Yu(e.selector)),ancestry:[].concat(Yu(r.ancestry),Yu(e.ancestry)),xpath:[].concat(Yu(r.xpath),Yu(e.xpath)),nodeIndexes:[].concat(Yu(r.nodeIndexes),Yu(e.nodeIndexes))});return new wr(r.element,t,e)};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!==t&&"object"===Lu(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 Rr,Tr=(Rr=/(?=[\-\[\]{}()*+?.\\\^$|,#\s])/g,function(e){return e.replace(Rr,"\\")}),Nr=/\\/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(Nr,""),n=(e.value||"").replace(Nr,"");switch(e.operator){case"^=":r=new RegExp("^"+Tr(n));break;case"$=":r=new RegExp(Tr(n)+"$");break;case"~=":r=new RegExp("(^|\\s)"+Tr(n)+"(\\s|$)");break;case"|=":r=new RegExp("^"+Tr(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(Nr,""),regexp:new RegExp("(^|\\s)"+Tr(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){for(var t=[].concat(t),a=t.pop(),n=kr(e,a);!n&&r&&e.parent;)n=kr(e=e.parent,a);if(t.length){if(!1===[" ",">"].includes(a.combinator))throw new Error("axe.utils.matchesExpression does not support the combinator: "+a.combinator);n=n&&Sr(e.parent,t," "===a.combinator)}return n}var Pr=function(t,e){return Or(e).some(function(e){return Sr(t,e)})};var Ir=function(e,t){for(;e;){if(Pr(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 qr,Mr,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"===Lu(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 Mr(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"),qr&&qr();t=t(Hr);qr=t?(it("function"==typeof t,"open callback must return a cleanup function"),t):null,Mr=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},It(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"===Lu(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,r=(t=e)&&t.results?Array.isArray(t.results)?t.results.length?t.results:null:[t.results]:null;r&&r.length&&(e.frameElement&&(t={selector:[e.frame]},n=new xr(e.frameElement,o,t)),r.forEach(function(e){var t,r;e.nodes&&n&&(a=e.nodes,t=n,r=o,a.forEach(function(e){e.node=xr.fromFrame(e.node,r,t),Wr(e).forEach(function(e){e.relatedNodes=e.relatedNodes.map(function(e){return xr.fromFrame(e,r,t)})})}));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(Yu(t)))}e.push.apply(e,Yu(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};var Xr=function(i,l,s,u,t,e){var c=jr();i.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),e=parseInt(a.node.getAttribute("height"),10),n=isNaN(n)?r.width:n,e=isNaN(e)?r.height:e,o={options:l,command:s,parameter:u,context:{initiator:!1,focusable:!1!==i.focusable&&t,boundingClientRect:{width:n,height:e},page:i.page,include:a.include||[],exclude:a.exclude||[]}};c.defer(function(t,e){var r=a.node;$r(r,o,function(e){return e?t({results:e,frameElement:r,frame:mr(r)}):void t(null)},e)})}),c.then(function(e){t(Kr(e,l))}).catch(e)};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"===Lu(e)&&!Array.isArray(e))for(var t=0,r=Object.keys(e);t<r.length;t++){var a=r[t];!o.hasOwnProperty(a)||"object"!==Lu(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 Ra},getViewportSize:function(){return pa},hasContent:function(){return Ba},hasContentVirtual:function(){return Ia},idrefs:function(){return _a},insertedIntoFocusOrder:function(){return Ha},isFocusable:function(){return Va},isHTML5:function(){return za},isHiddenWithCSS:function(){return Ma},isInTextBlock:function(){return Ga},isModalOpen:function(){return Ya},isNativelyFocusable:function(){return Ua},isNode:function(){return Ka},isOffscreen:function(){return fa},isOpaque:function(){return sn},isSkipLink:function(){return cn},isVisible:function(){return ba},isVisualContent:function(){return Na},reduceToElementsBelowFloating:function(){return dn},shadowElementsFromPoint:function(){return mn},urlPropsFromAttribute:function(){return hn},visuallyContains:function(){return fn},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=Dr(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,l,s,u=e.nodeName.toUpperCase();if("AREA"===u)return l=t,s=r,!!(c=la(i=e,"map"))&&(!!(c=c.getAttribute("name"))&&(!(!(i=na(i))||9!==i.nodeType)&&(!(!(c=vo(axe._tree,'img[usemap="#'.concat(Kt(c),'"]')))||!c.length)&&c.some(function(e){return ga(e.actualNode,l,s)}))));if("none"===o.getPropertyValue("display")||["STYLE","SCRIPT","NOSCRIPT","TEMPLATE"].includes(u))return!1;if(t&&"true"===e.getAttribute("aria-hidden"))return!1;var c=parseInt(o.getPropertyValue("height")),u=Pn(e)&&0===c,c="absolute"===o.getPropertyValue("position")&&c<2&&"hidden"===o.getPropertyValue("overflow");if(!t&&(function(e){var t=e.getPropertyValue("clip").match(ma),e=e.getPropertyValue("clip-path").match(ha);if(t&&5===t.length)return t[3]-t[1]<=0&&t[2]-t[4]<=0;if(e){var t=e[1],r=parseInt(e[2],10);switch(t){case"inset":return 50<=r;case"circle":return 0===r}}}(o)||"0"===o.getPropertyValue("opacity")||u||c))return!1;if(!r&&("hidden"===o.getPropertyValue("visibility")||!t&&fa(e)))return!1;o=e.assignedSlot||e.parentNode,e=!1;return o&&(e=ga(o,t,!0)),a&&(a[n]=e),e}var ba=ga,ya=200;function va(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=va(e),u=va(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/ya|0,n=(r+e.height)/ya|0,o=(t+e.width)/ya|0,i=r/ya|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 vn(document.documentElement))._stackingOrder=[0],xa(o,a),Pn(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(Pn(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;Pn(u.actualNode)&&(u._subGrid={container:u,cells:[]});c=u.boundingClientRect;0!==c.width&&0!==c.height&&ba(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/ya|0][n/ya|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){vr.get("gridCreated")||(Ea(),vr.set("gridCreated",!0));var t=Dr(e);return(e=t._grid)?Aa(e,t.boundingClientRect):[]};var Fa=function(e){return vo(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 Ra=function(e){vr.get("gridCreated")||(Ea(),vr.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)]},Ta=["checkbox","img","radio","range","slider","spinbutton","textbox"];var Na=function(e){var t=e.getAttribute("role");if(t)return-1!==Ta.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=Co(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&&ba(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},Pa=["HEAD","TITLE","TEMPLATE","SCRIPT","STYLE","IFRAME","OBJECT","VIDEO","AUDIO","NOSCRIPT"];var Ia=function t(e,r,a){return function(e){if(!Pa.includes(e.actualNode.nodeName.toUpperCase()))return e.children.some(function(e){return 3===(e=e.actualNode).nodeType&&e.nodeValue.trim()})}(e)||Na(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),Ia(e,t,r)};function La(e,t){var r=Dr(e);return r?(void 0===r._isHiddenWithCSS&&(r._isHiddenWithCSS=qa(e,t)),r._isHiddenWithCSS):qa(e,t)}function qa(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 Ma=La;var ja=function(e){return!!(e=e instanceof tt?e:Dr(e)).hasAttr("disabled")||"area"!==e.props.nodeName&&(!!e.actualNode&&Ma(e.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!vo(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(vr.get("isModalOpen"))return vr.get("isModalOpen");if(so(axe._tree[0],"dialog, [role=dialog], [aria-modal=true]",function(e){return ba(e.actualNode)}).length)return vr.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 vr.set("isModalOpen",!0),{v:!0}}(i);if("object"===Lu(l))return l.v}vr.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={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","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"]}},en={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:!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"],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","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,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"],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:!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"],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}},tn={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]},rn={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:Xu({},Za,{"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:en,cssColors:tn},an=Xu({},rn);var nn=an;var on=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(nn.cssColors[e]||"transparent"===e){var t=Ku(nn.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=Ku(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=Ku(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=Ku(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 ln=function(e){var t=new on;return t.parseString(e.getPropertyValue("background-color")),0!==t.alpha&&(e=e.getPropertyValue("opacity"),t.alpha=t.alpha*e),t};var sn=function(e){var t=window.getComputedStyle(e);return Qa(e,t)||1===ln(t).alpha},un=/^\/?#[^/!]/;var cn=function(e){return!!un.test(e.getAttribute("href"))&&(void 0!==vr.get("firstPageLink")?t=vr.get("firstPageLink"):(t=vo(axe._tree,'a:not([href^="#"]):not([href^="/#"]):not([href^="javascript"])')[0],vr.set("firstPageLink",t||null)),!t||e.compareDocumentPosition(t.actualNode)===e.DOCUMENT_POSITION_FOLLOWING);var t};var dn=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 pn(e){for(var t=Dr(e).parent;t;){if(Pn(t.actualNode))return t.actualNode;t=t.parent}}var fn=function(e,t){var r,a,n,o,i,l,s,u,c,d,p,f=pn(t);do{var m=pn(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 mn=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&&fn(e[0],t)&&e.push(t)):e.push(t),e},[])};var hn=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=Ku(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&&"#"!==Ku(t,1)[0]?e:""}(a.hash),filename:e}}};var gn,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,vn=function(){$u(o,tt);var n=Wu(o);function o(e,t,r){var a;return Ju(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===gn&&(gn=rr(e.ownerDocument)),a._isXHTML=gn,"input"===e.nodeName.toLowerCase()&&(t=e.getAttribute("type"),t=a._isXHTML?t:(t||"").toLowerCase(),Fo().includes(t)||(t="text"),a._type=t),vr.get("nodeMap")&&vr.get("nodeMap").set(e,Gu(a)),a}return Qu(o,[{key:"props",get:function(){var e=this.actualNode,t=e.nodeType,r=e.nodeName,a=e.id,n=e.multiple,o=e.nodeValue,e=e.value;return{nodeType:t,nodeName:this._isXHTML?r:r.toLowerCase(),id:a,type:this._type,multiple:n,nodeValue:o,value:e}}},{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 Dn(e,a,r){var n,t,o;function i(e,t,r){r=Dn(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 vn(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 vn(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 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 wn=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:document.documentElement,t=1<arguments.length?arguments[1]:void 0;return vr.set("nodeMap",new WeakMap),Dn(e,t,null)};var xn=function(e){return e?e.trim().split("-")[0].toLowerCase():""};var En=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 An=function(){var e=void 0===(r=(n=0<arguments.length&&void 0!==arguments[0]?arguments[0]:window).screen)?{}:r,t=n.navigator,r=void 0===(a=n.location)?{}:a,a=n.innerHeight,n=n.innerWidth,e=e.msOrientation||e.orientation||e.mozOrientation||{};return{testEngine:{name:"axe-core",version:axe.version},testRunner:{name:axe._audit.brand},testEnvironment:{userAgent:(void 0===t?{}:t).userAgent,windowWidth:n,windowHeight:a,orientationAngle:e.angle,orientationType:e.type},timestamp:(new Date).toISOString(),url:r.href}};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"===Lu(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:En,getEnvironmentData:An,incompleteFallbackMessage:Cn,processAggregate:kn};var Rn=/\$\{\s?data\s?\}/g;function Tn(e,t){if("string"==typeof t)return e.replace(Rn,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 Nn=function e(t,r){if(t){if(Array.isArray(r))return r.values=r.join(", "),"string"!=typeof t.singular||"string"!=typeof t.plural?Tn(t,r):Tn(1===r.length?t.singular:t.plural,r);if("string"==typeof t)return Tn(t,r);if("string"==typeof r)return Tn(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 Nn(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}};var Sn=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 Pn=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 In=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=Pn(t);return r&&e.push(r),e.concat(a(t))},[])}(document.body))};function Bn(){return Ar(nn)}var Ln,qn=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 Mn=function(e){if(Ln&&Ln.parentNode)return void 0===Ln.styleSheet?Ln.appendChild(document.createTextNode(e)):Ln.styleSheet.cssText+=e,Ln;if(e){var t=document.head||document.getElementsByTagName("head")[0];return(Ln=document.createElement("style")).type="text/css",void 0===Ln.styleSheet?Ln.appendChild(document.createTextNode(e)):Ln.styleSheet.cssText=e,t.appendChild(Ln),Ln}};var jn=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},Un=["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 Vn=function(e){return"http://www.w3.org/2000/svg"!==e.namespaceURI&&Un.includes(e.nodeName.toLowerCase())};function Hn(e){return e.sort(function(e,t){return Jr(e,t)?1:-1})[0]}var zn=function(t,e){var r=e.include&&Hn(e.include.filter(function(e){return Jr(e,t)}));return!!(!(e=e.exclude&&Hn(e.exclude.filter(function(e){return Jr(e,t)})))&&r||e&&Jr(e,r))},$n=c(ze());axe._memoizedFns=[];var Wn=function(e){return e=$n.default(e),axe._memoizedFns.push(e),e};var Gn=function(e,t){return(e=e.actualNode||e)===(t=t.actualNode||t)?0:4&e.compareDocumentPosition(t)?-1:1};var Yn=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(Yu(n),[t]),t=/^https?:\/\/|^\/\//i.test(e);return Qn(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 Kn=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)?Yn(e,t,r,a,n):Qn(e.href,t,r,a,!0)};var Xn,Jn,Qn=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 Kn(e.sheet,t,r,a,e.isCrossOrigin)})};function Zn(){if(window.performance&&window.performance)return window.performance.now()}var eo,to,ro=(Xn=null,Jn=Zn(),{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 Zn()-Jn},reset:function(){Xn=Xn||Zn(),Jn=Zn()}});function ao(){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 no(e){return"function"==typeof e||"[object Function]"===eo.call(e)}function oo(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),to)}"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=ao()),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:(eo=Object.prototype.toString,to=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(!no(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=oo(t.length),i=no(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 io=function(e,t){return e.concat(t).filter(function(e,t,r){return r.indexOf(e)===t})};function lo(e,t,r,a){a={vNodes:e.slice(),anyLevel:t,thisLevel:r,parentShadowId:a};return a.vNodes.reverse(),a}var so=function(e,t,r){return function(e,t,r){for(var a=[],n=lo(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)&&Sr(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: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=lo(i.children,s,l,i.shadowId));!n.vNodes.length&&a.length;)n=a.pop()}return o}(e=Array.isArray(e)?e:[e],Or(t),r)};var uo=function(e){var t,e=void 0===(r=e.treeRoot)?axe._tree[0]:r;if(!(e=(t=[],r=so(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)}}),io(r,[]))).length)return Promise.resolve();var l,s,r=document.implementation.createHTMLDocument("Dynamic document for loading cssom"),r=qn(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(co).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 po(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 Kn(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 co(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&&po(e.media)}function po(e){return!e||!e.toUpperCase().includes("PRINT")}var fo=function(e){return e=void 0===(e=e.treeRoot)?axe._tree[0]:e,e=so(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 mo(e){return!e||void 0===e.preload||null===e.preload||("boolean"==typeof e.preload?e.preload:(e=e.preload,"object"===Lu(e)&&Array.isArray(e.assets)))}function ho(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=io(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 go=function(o){var i={cssom:uo,media:fo};return mo(o)?new Promise(function(t,r){var e=ho(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 Xu({},e,t)},{});clearTimeout(n),t(e)}).catch(function(e){clearTimeout(n),r(e)})}):Promise.resolve()};function bo(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"!==Lu(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=Nn(t.message,e.data)),Zr(e,t)}}var yo=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=bo(t,!0,a),o=bo(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 vo=function(e,t){return so(e,t)};function Do(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 wo=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?Do(e,a.values):Do(e,[]))};var xo=function t(n,o){if(!o)return n;var i=n.cloneNode(!1),e=i.outerHTML,r=er(i);return vr.get(e)?i=vr.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)}),vr.set(e,i)),Array.from(n.childNodes).forEach(function(e){i.appendChild(t(e,o))}),i};var Eo=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 zn(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,so(r,e,l));return axe._selectCache&&axe._selectCache.push({selector:e,result:a}),a};var Ao=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 Co=function(e){return(e||"").trim().replace(/\s{2,}/g," ").split(" ")};var Fo=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"]},ko=[,[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,,,,,1,1,1,1,,,1,1,1,,1,,1,,1,1],[1,1,1,,1,1,,1,1,1,,1,,,1,1,1,,,1,1,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,,,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1],[,1,,,,,,1,,1,,,,,1,,1,,,,1,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,,,1,,,,,1,1,1,,1,,1,,1,,,,,,1],[1,,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,,1,,1,,,,,1,,1,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,,1,1,1,,1,,1,1,1,,,1,1,1,1,1,1,1,1],[,,1,,,1,,1,,,,1,1,1,,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1,1,1,1,1,,,1,1,1],[1,1,1,1,1,,,1,,,1,,,1,1,1,,,,,1,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1],[,1,,1,1,1,,1,1,,1,,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,,,1,1,1,,,1,1,,,,,,1,1],[1,1,1,,,,,1,,,,1,1,,1,,,,,,1,,,,,1],[,1,,,1,,,1,,,,,,1],[,1,,1,,,,1,,,,1],[1,,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,,1,,,1,1,1,1],[,1,1,1,1,1,,,1,,,1,,1,1,,1,,1,,,,,1,,1],[,1,,,,1,,,1,1,,1,,1,1,1,1,,1,1,,,1,,,1],[,1,1,,,,,,1,,,,1,1,1,1,,1,1,1,1,1,1,,1,1,1],[,1,,1,1,1,,,1,1,1,1,1,1,,1,,,,,1,1,,1,,1],[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,1,1],[,1,1,1,,,,1,1,1,,1,1,,,1,1,,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,,1,,,,,1,1,1,,,1,,1,,,1,1],[,,,,1,,,,,,,,,,,,,,,,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,,1,1,1,,1,1,,,,1,1,1,1,1,,,1,1,1,,,,,1],[1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,1,,,,,,,1],[,1,1,,1,1,,1,,,,,,,,,,,,,1],,[1,1,1,,,,,,,,,,,,,1],[,,,,,,,,1,,,1,,,1,1,,,,,1]],[,[1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,,1,1,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,,1],[,,,1,,,,,,,,,,,,,,,1],[,1,,,1,1,,1,,1,1,,,,1,1,,,1,1,,,,1],[1,,,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,,,,1],,[,1,1,1,1,1,,1,1,1,,1,1,,1,1,,,1,1,1,1,,1,1,,1],[,1,,,1,,,1,,1,,,1,1,1,1,,,1,1,,1,1,1,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,,,1,1,1,1,1,1,1,,,1,,,1,,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,,,,1],[,,,,,,,1,,,,1,,1,1],[,1,1,1,1,1,1,1,,,,1,1,1,1,1,,,1,1,,1,1,1,1,1],[,1,,,1,1,,1,,1,1,1,,,1,1,,,1,,1,1,1,1,,1],[,1,1,1,,1,1,,1,1,,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1],[,,,,,,,,,,,,,,,,1],,[,1,1,1,1,1,,1,1,1,,,1,,1,1,,1,1,1,1,1,,1,,1],[,,1,,,1,,,1,1,,,1,,1,1,,1],[,1,1,,1,,,,1,1,,1,,1,1,1,1,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1],[,1,,,,,,,,,,1,1,,,,,,1,1,,1,,1,,1,1],,[,1,1,,1,,,1,,1,,,,1,1,1,,,,,,1,,,,1],[1,1,,,1,1,,1,,,,,1,,1]],[,[,1],[,,,1,,,,1,,,,1,,,,1,,,1,,,1],[,,,,,,,,,,,,,,,,,,1,1,,,,,,1],,[1,,,,,1],[,1,,,,1,,,,1],[,1,,,,,,,,,,,1,,,1,,,,,,,,,1,1],[,,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,1,,1],[,1],[,1,,1,,1,,1,,1,,1,1,1,,1,1,,1,,,,,,,1],[1,,,,,1,,,1,1,,1,,1,,1,1,,,,,1,,,1],[,1,1,,,1,,1,,1,,1,,1,1,1,1,,,1,,1,,1,1,1],[1,1,1,1,1,,1,,1,,,,1,1,1,1,,1,1,,,1,1,1,1],[1,,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],,[,1,,,,,,1,1,1,,1,,,,1,,,1,1,1,,,1],[1,,,,,1,,1,1,1,,1,1,1,1,1,,1,,1,,1,,,1,1],[1,,1,1,,,,,1,,,,,,1,1,,,1,1,1,1,,,1,,1],[1,,,,,,,,,,,,,,,,,1],[,,,,,1,,,1,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,,,1],[,1,,,,1]],[,[1,1,1,,1,,1,1,1,1,1,1,1,1,1,,1,,1,,1,1,,,1,1,1],[,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],,[,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1],,[1,1,,,,1,1,,,,,,1,,,,1,,1,,1,1,,1],[1],[,,,,,,,,,,,1,,,,,,,,,,,1],[,1,,,,,,,1,1,,,1,,1,,,,1,,,,,,,1],[,,,,,,,,,,,,,,,,1,,,,,1],[,,1,,,,,1,,1],[1,,,,1,,,,,1,,,,1,1,,,,1,1,,,,,1],[,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[1,,,1,1,,,,,,,1,,1,,1,1,1,1,1,1],[,,,,,1,,,,,,,1,,,,,,,1],,[,,1,1,1,1,1,,1,1,1,,,1,1,,,1,1,,1,1,1,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,,,,1],,[1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[,,,1,1,1,1,,,,,,1,,1,,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,,1],[,1,1,1,1,,1,1,1,1,1,1,1,1,,,,1,,1,,,1,1,1,1,1],[,,,,,,,,,,,1,,,,,,,,,1,,,,1],[,1,1,,1,1,,1,,,,1,1,,1,1,,,1,,1,1,,1],[,1,,1,,1,,,1,,,1,1,,1,1,,,1,1,1],[,1,1,1,1,1,,1,1,,,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,,,,,,,,,1,,1,,1,1,,,,1,,,1],[,1,,,1,1,,,,,,,,,1,1,1,,,,,1],[1,,,1,1,,,,1,1,1,1,1,,,1,,,1,,,1,,1,,1],[,1,1,,1,1,,1,1,,,,1,1,1,,,1,1,,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,,,,1,,,,,,,,,1],[,1,,,,,,,,1,,,,,1,,,,1,,,1],[,1,1,1,1,,,1,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1],[,,,,,1,,1,,,,,1,1,1,1,1,,,1,,,,1],[,1,,,,,,,,1,,,,,,,,,,,,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,1,,,,1,,1,1,1,1,1,,1,1,,,,,,1],[,1,1,1,1,1,1,1,,1,1,,,1,1,,,,1,,1,1,,1,1],[,,,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,1,1,,1,,,1,1,1,1,,,1,,,,,,,1],[,1,,,,,,,,1,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1],[,1,1,,,,,,,,,,,,1,1,,,,,,1],[,1,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,,,,,1],[1,1,,,1,,,1,1,1,,,,1],,[,,,,,,,,,,,,,1,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,1,,,,,,,1],[1,1,1,,1,,1,1,1,1,1,1,1,1,,1,,,1,,1,,,1,1],[,,,,,,,,,1],[,1,,,,1,,,,,,1,,,1,,,,,1],[,1,1,,1,1,,,,,,,,,,,,,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,1,1,1,,,,1,1,,,,1,,1],[1,1,1,1,1,1,,,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,,1,1],[,,,,,,,,,,,,,,,1,,,,1],,[1,1,,1,,1,,,,,,1,,1,,1,1,,1,,1,1,,1,1,,1],[,,1,,,,,,1,,,,1,,1,,,,,1],[1,,,,,,,,,1,,,,,,1,,,,1,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,,1,,,,,,1,,,1,,,,,,,,1],[,1,,1,,,,,,,,,,,,1],,[1,1,,,,,,,,,,,,,,,,,,,,,,1,1],[1]],[,[1,,,,,,,,,1,,,,,1,,1,,1],[,1,1,,1,1,,1,1,1,,,1,1,1,,,,1,,,1,,,,1],[,1,,,,,,,1,,,,1,,,,,,1],[1,1,1,1,1,1,,,,1,,,,,,,,,1,1,1,1],[1],[,1,1,,,1,1,,,,,1,,1,,,,,,,,1,,,,1],[1,,1,,,1,,1,,,,,1,1,1,1,,,,1,,,,1],[,,1,,,,,,,1,,,,,,,1,,,,,,,1],[1,,,,,,,,,,,,,,1,,,,1],[,,,1,,1,,,,,1,,,,1,1,,,,1],[1,,,,,1,,,,1,,1,1,,,1,1,,1,1,1,,1,1,1,,1],[,1,1,,,,,1,,1,,1,1,1,,1,1,,,1,,1,1,1],[,1,,,,1,,,,1,,,1,,1,1,,,1,1,,,,,,1],[1,,1,1,,1,,1,1,,1,,1,1,1,1,1,,,1,1,,,,,,1],[1,,,,,,,,,,,,,,,,,,1,,,1,,1],[,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,,1,,1],[,1,,,,1,,,1,1,,1,,,1,1,,,1,,,1,,,1,1],[1,1,,1,1,1,,1,1,1,,1,,1,1,1,,,1,,1,1],[1,,1,1,1,1,,,,1,,1,1,1,,1,,,1,1,1,,1,1,1,1,1],[1,,,,,,,,,,,,,1],[,,1,,,,,,,,,,,,,,,,,,,,1],[1,,,,,,,,,,,1,,1,,1,,,,1],[,,,1,,,,,,,,,1],[,1,,,,,,,,,,,,,,1,,,,,,,,,1],[,,,,,,,,1,1,,,,,,,,,1,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,,,1,1,1],[,,,,,1,,,,1,1,1,,,1,1,,,1,,1,1,,1],[,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,1,,,,,,,,,,,,,1],[,,1,,,1,,1,1,1,,1,1,,1,,,,1,,1,1],,[,,1,,,1,,,,,,1,,,,1],[,,,,,,,,,1,,,,,,,,,,1],[1,1,1,1,1,1,,1,1,1,,,1,1,,1,,1,,,1,1,1,,,1],[,,,,,1,,,,,,,,,,,,,1],[,1,,,,,,,,,,,,1,,1,1,,1,,,1],[,,,,,1,,,,,,,,,,,,,,1],[,1,1,1,1,,,,,1,,,1,,1,,,,1,1,,,,1,1],[,1,,,1,,,1,,1,1,,1,,,,,,,1],[,,1,,1,,,1,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,,,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,,,,,,,,,,1,,1,1],[,,,,,,,,,,,,1],,[,1,1,1,1,,,,1,1,,1,1,1,1,1,1,,1,1,1,1,,1,,1],[1,,,,1,,,,,,,,,,1],[1,,,,,,,,,1],,[,1,,,,1,,,,,,,,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,,,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,,1,1,1,1],[1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,,1,,,,1,1,,,1,1,,1],[,1,1,,1,,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,1],[1,1,1,,,,,1,1,1,,1,1,1,1,,,1,1,,1,1,,,,,1],[,1,,,,,,,1,1,,,1,1,1,,1,,,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,,,1,,,,1,,,1,,,,1,,,,,,,1,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1],[1,1,1,,1,,,1,1,1,1,,1,1,1,1,,,,1,,1,,1,,,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,,1,1,,,,,,,,,1],,[,1,,1,,1,,1,,1,,1,1,1,1,1,,,1,,1,,1,,,,1],[,1,,,1,1,,1,1,1,,,1,1,1,1,1,,1,1,1,,1,,,1],[1,,,1,,,,1,1,1,,,,,1,1,,,,1,,1],[1,1,,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,,1,,1,,,,,,,,1,,1],[,1,,,,1,,1,1,,,,1,1,,1,,,,1,1,1,,1],,[,1,,,,,,1,,,,,,,1],[,,,,,,,,1,,,,1,,1,,,,,,,,,,,,1]],[,[,1,1,,1,1,1,1,,1,1,1,,1,1,,1,1,,1,1,1,1,1,1,,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,,,1,,,,,,,,1,,,,,,1,,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,1,1,1,,1,1,1,1,,,1,1,1,1,,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,,1,,1,,1,,1,1,1,1,1,1,1,,1,1,,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1],[,1,1,,,,,1,1,1,,,1,,1,1,,,,1,,1,,,1,1],[,,,,,,,1,,,,1,1,1,1,1,,1,,,,,,,,1],[1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,,1,,1,1,,,1,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,1,1,,1,,1,1,1,,1,,1,1,,1,1,,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,,,,,,1,,,,,1,,1],[,1,1,1,,1,,1,,1,,,,1,,1,,,1,,,,,,1,1],[,1,,,1,1,,1,,1,,1,1,1,1,1,,1,1,,,1,,,1],[1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,,,1,,1,,1,,,,,,1,,1,,,,1,1]],[,[,1,,1,,,,,,,,,,,,,,,1,,,,1],[,,,,,,,,,1,,1,1,1,,1,,,1,,1,1],[1,1,,,,,,,1,,,,,,,1,,,,,,1],[,1,,,,,,,,,,1,,,,,,,,,1,1],,[,,,,,,,,,,,,,,,1,,,,1,,1],[,,1,1,,1,,1,,,,,,,,1,,,,,,1],[,,,,,,,,,,,,,,,,,,,,1,1],[,1,,,,,,,,,,,,,1],[1,,1,1,,,,1,,,,,,,,,1,,,1,,,1,1],[,1,1,,1,1,,1,1,1,1,1,1,1,1,1,,,1,1,,1,1,,1],[,1,,,1,1,,,,,,1,,1,,1,,,1,,1,1],[1,1,1,1,,1,,1,,1,,1,1,,1,1,1,1,1,,1,1,1,1,1],[,1,1,,,1,,1,,1,1,1,,,1,1,1,,1,1,1,1,,1,1],[,,,,1,,,1,,,,,,,1,,,,1,1],[,1,,,,,,,,,,1,,1,,1,,,,,1,,,,,1],,[1,1,,1,,1,,1,1,,,,,,1,1,,,1,1,1,1,1,1,1,1,1],[1,1,,1,,,,,,1,,,,,,1,1,,,,1,1,,,1],[,1,1,,1,1,,,,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,,,1,,,,1,,,,1,1],[,,,,1],[,,,,,,,,,1,,,1],,[,,1,,1,,,,,,,,,1,,,,,,,,,,,,1],[,,,,,,,,,,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,1,1,1,1,,,1,1,1,1,1,,1,1,1,1,1,,,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,,,,,1],[,1,,1,,,,,,1,,,,,1,1,,,,,1,1],[,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,,1,,,1,,1,1,1],[,1,,,,1,,,,,,,1],[,1,,,1,,,1,,1,,1,1,,1,,,,,1,,1,,,,1,1],[,1,,,1,,,1,1,1,,1,1,1,1,1,,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1],[,,,,,,,,,,,,,,,,,,,,1],[,1,1,1,,,,1,1,,,,,,1,1,1,,1,1,1,1],[1,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1],[,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,1,1,1,1,1,1,1,,1,,1,1,1,1,1,,1,1,,1,1,1,1,1],[,1,,,,1,,,,1,,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,1,,,,,,,,1,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1],[1,1,,1,1,1,,1,1,1,,,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,,,,,,,1,1,,,,,1,1,1,1,1,,1,1,1,1,,1],[,1,1,1,1,1,1,1,,1,1,1,,1,,1,1,1,1,,1,1,,1,1,1,1],,[,1,1,,,,,1,,1,,,,1,1,1,,,1,,,,,1],[,,,,,,,,,,,,,1],[,,,,,1,,,,,,,,1,1,,,,,1,,1,,,1,1],[,,,,,,,,,,,,,,1]],[,[,1],,,,,,,,,,,,,,,,,,,,[1,1,1,1,1,,1,1,1,1,,1,1,1,1,,1,1,1,1,,,1,1,1,1,1],[,1,,1,,1,,,1,1,1,,1,1,1,1,1,,,1,,,,1,,1,1],[,1,,1,,1,,,1,,,,,1,,,,,,1,1],[,1,,1,,,,,1,,,,1,,1,1,1,1,1,1,1,1,,1],[,1,,,,,,,,,,,,,,,1]],[,[,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,,,,,,,,,1,1,,,,1],[,,,,,,1],[,,1],[,1,1,,,1,,1,,1,1,,1,1,1,,,,1,1,1,,,,,1],,[,1,,,,1,,,,,,1,,,1,,,,1,1,,1],[,,,,,,,1,,,,,,,,,1],[,1,,,,1,1,,,,,,1,1,1,,,,1,,1,1],[,,,,,,,1,,1,,,,,,,,,,1],[,1,1,,,,,,1,1,,,,1,,,,,,,1,,,1],,[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,,1,,,1,,,,,1,,1,,1,,1,,,,,1],[1,1,1,1,1,1,1,1,,,,,1,1,,1,1,,1,,,1,,1],[,,,,,,,,,,,,,,1,,,,,,1],,[,,,,,,,,,1,,,,,,1,,,,,1],[,,1,,,,,,,1,,,1,1],[,,,1,,,,,1,,,,,1,,,,,,1,,,,1],[1,,1,1,,1,1,1,1,1,,1,,,,1,1,1,,,1,1,,,,1,1],,[1,1,,,,,,,,,,1,,1,,1,,,1],[,,,,1,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,1,,,,,1,,1],[,,,,,,,,1]],[,[1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,,1,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,,1,,,1,,,,,,,,1,,,,,,1,,,,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,1,,,,1,1,1,1,1,1,,1,1,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,,1,1,1,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1],[1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,,1,1,1,1,,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,,,,,,,1,,1,1,,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1],[1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,,1,,1,,1,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1],[1,1,1,1,,1,,,,,,1,,1,,,,,1,1,,,,,1],[1,,1,1,,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,1,1,,1,,1,,,,1,1,1,1,1,,,1,1,,1,,1],[,1,1,1,1,,,,,1,,1,1,1,1,1,,,1,1,,,,1,1,1],[,1,1,1,1,1,,1,,,,,1,,1,,1,,,1,,,1,1,,1]],[,[1,1,1,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1,,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,,,,,1,,,,,1,1,,,1,,1],[1,1,1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,,1,1,1,1,,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1],[1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,,,,1,,1,1,,1,1,1,1,1,,,1,,1,,1],[1,1,1,,1,1,1,1,,,,1,1,1,1,,1,1,1,1,1,1,1,1,1,,1],[1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,,1,1,1,1,1,1,1,1,1,,1,1,,1,1,1,1,1,,1,1,1,1,1,1],[,1,,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1],[,,1,,,,,,,,,,1,1,1,1,1,1,1,,1,1,,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,1,1,1,1,1],[,1,,,1,1,,,,,,1,1,1,1,1,,,,1,1,1,,1,1,1],[1,1,1,1,1,1,1,1,1,,,,1,1,1,1,1,1,1,,1,1,,1,1,1],[,1,1,1,,1,,1,1,1,1,,,1,1,1,,1,1,1,1,1,,,1,1],[1,1,,,,1,,,1,1,1,,1,,1,,1,,1,1,1,1,1,,1,,1],[,1,,,,,,,1,,1,,1,1,1,1,,,,,,,,,1]],[,[,,,,,,,,,,,,,1,1,,,,1],[,1,,,,,,,,1,,,1,,,,,,1,,,1,,,,1],,[,1,,,,1,,1,,1,1,,1,1,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1],[,,,,,,,,,1],[1,1,1,,,1,,,,,,,,,1,1,,,,,,,,,,1],[,1,,,,,,,,,,,,,1],[,,,,,,,,,,,,,,,,,,,1,,,1],[,,,,,,,,,1],[1,1,,,,,,1,1,1,,1,1,,,,1,1,,1,,1,1,1,,1],[,1,1,1,,1,1,,,1,,1,1,1,1,,,,,,,1,,1],[,1,1,1,1,,,1,,1,,,,1,1,1,1,,1,1,,1],[,1,,,1,1,,1,,,,1,,1,1,,1,,1,,,1,,,1,,1],[,,,,,,,,,,,1],[,,,,,,,,,1,,,,,,,,,,,,,1],,[1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,,1,1,1,1,1,1,1],[,1,,,,,,,1,1,,1,,,,,1,,,1,,1],[,1,,,,1,,,1,,,,,,,,1,,1,,,1],[,,,,,,,,,,,,,1,1,,,,1,,,1],[,,,,,1,,,1,,,,1],[,1],,[,1],[1,,,,,,,,,,,,,,1,,,,,1]],[,[,1,,,,1,1,1,1,1,1,,1,1,1,1,1,,1,1,,1,1,,,1],[,,1,,,,,,,,,1],,,[1,,,1,1,,,,,,,,1,1,,1,1,,1],,[,,,,,,,,,,,,,,,,,,1,,1],,[1,,,1,1,,1,1,,,,,1,,1,,,,,1,1,,1],,[,1,,,,,,,,1,1,1,1,1,,1,1,,,,1,1],[,,,,,,,,,,,,,,,,1,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,,,1,1,1,1,,1,1,1,1,1,1],[,,,,,,,,,,,1,,1,,,1],[1,,,,,,,,,,,,,,,,,,1,,1],,,[,1,,,,,,,,,,,,,,1,,,,1,1],[,,,,,,,,,1,,,1,,,,,,,,,,1],[,,,,,,,,,,,,,,,1],[,,,,,,,,,,,,,1,1,,,,,,1],,[,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,,1,1,,1,1,1,1,1,1,,,1,1,1,1,1,,1,1],[,1,,,,,,,,1],[,,,,1,,,1,,,1,1,,,,,,,,,,1,,,,1],[,1,,1,1,,,1,1,1,,,,1,1,1,1,,1,1,1,1,,1],[,,,,,,,1],[,1,1,,,,,1,,1,,,,,,1,,,,,,1,,1,,1],[,1,,,,,,1,,,,1,,,,,,,,,,1],[,,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1,1,1,1,,1],[,1,,,,,,,,1],[,1,1,,1,,,,,,,,1,,,,,,1,,,1,,1,,1],[,1,,1,,1,,1,1,1,,1,1,1,,1,,,1,1,,1,1,1,1,1],[,1,1,1,1,1,,,1,1,,,,1,1,1,,,,1,1,,,1,1],[,,1,1,1,1,,1,,1,,1,,1,1,1,1,,,,,1,,1,,1],[1,1,1,1,1,1,1,1,,1,,1,,1,1,1,,,1,1,,,,1,,1],[,,,1],,[,1,1,,1,,,1,1,1,,1,1,1,1,1,1,,1,1,,1,1,1,1,1,1],[,1,,,,,,1,,1,,1,,,,,,,1,1,,1,1],[,,,,,,1,,1,1,,1,,1,,,,,,,,,,1],[,1,1,,1,,,,1,,,,1,1,1,,,,1,,1,1,1,,1,1],,[,1,1,,,,,,,,,,,,,1,,,1,,,,,1],[,1,,,,,,,,,,,,,,,,,,,,,,1],[,1,1,,,,,,,1,,,,1,,,,,1,,,,,,,1]],[,[,1,1,1,1,1,,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1],[,1,1,1,1,1,,1,,1,1,,,1,1,1,1,,1,,,,,1,1,1],[,,1,1,,1,,1,1,,,,1,1,1,1,,,1,,1,1,1,1,,1],[,1,,1,,,,,,,,1,,1,,1,,,,,,,,,,1],[,,1,,1,,,1,,,,,1,1,,,1,,1,1,1,1],[,1],[,1,1,,1,,1,1,,1,,,1,1,1,,,,1,,,1,,1],[1,1,,1,1,1,,,,,,,,,,,,,1,,1,1,1],[,1,1,,,,,,,1,,,1,,1,,1,,1,1,,,1,,,1],[,,1,,,,,,,,,,,,,,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,1,1,1,,1,,1,,,,,1,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,,,1,1,1,,1,,1,1,1,,,1,1,1,1,,,,1,1],[,,,1,1,,,1,,1,,1,,1,1,1,1,,1,,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,1,,1,1,,1,,1,,,,1,1,,,1,1,,1,1,,1],[,1,1,1,1,1,,,1,1,1,,1,1,1,1,1,1,1,1,,1,1,,,1],[,1,1,1,1,1,,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1,,1,1],[,1,1,,1,,,1,,,1,,1,1,1,1,1,,1,,1,1],[,,,,,1,,,,1,,,,,1,1,,,,1],[,1,,1,1,1,,1,,,1,1,1,,,1,,,1,,1,,,1],[,,1,,,,,,,,,1,,1,,,,,1,,1],[,1,1,,,,,,,,1,1,1,,,,,,,,1,,,,,1],[,,,,,,,,1,,,,,1,,,1]],[,[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,1,,1,1,,,1,1,1,1,1,1,1,1,,,,,,,,,1,1],[,,,,,,,,1,,,,1,,1,,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,1,,1,,1,,,,1,1,,1,,1,,,,1,1,1,1,1,,,1],,[,1,,,,,,,,1,,,1,1,,,1,,1,1,,1,,1],[,1,,,1,,,,,,,,1,,,,,,,1],[1,1,,,,,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,,1,1,1],,[,1,,,,,,1,,1,,1,1,1,1,1,,,1,,1,1,,,,1],[,1,1,,,1,,1,,1,,,1,1,1,1,,,1,,,1,,,,1],[,1,1,1,1,1,,1,1,1,,1,1,1,1,1,1,1,1,1,1,,,,1,,1],[,1,,,1,1,,1,1,,,1,1,,1,1,,1,,1,,1],[1,,1,,,,,1,,1,,1,1,1,1,,,,,1,1,,,,1,1],[,1,1,,,,,1,1,,,1,,1,1,1,1,,,,,,,,,,1],,[,1,1,,,1,,,,1,,1,1,1,1,1,,,,1,,,,1,,1],[,,,1,1,,,1,,,,,1,,1,1,1,,1,1,,,,,,1],[,1,,,,,,,,,,,1,,,,1,,,,,,,1,,1],[,1,1,1,1,1,1,1,,1,1,1,1,1,1,,1,1,1,,1,1,,1,1,1,1],[,1,,,,,,,,,,,,,,,,,,,1],[,1,,,,,,1,,,,,1,,1,,,1,1,,1,1,,1],[,1,,,,,,1,,,,,1,1,,,,,,,,1,,,,1],[,,,,,,,,,,,,,,,,,,1,,,1,,,,,1],[,,,,,,,1,,,,1]],[,[1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,1,,1,,,,,,,1,,,,,,,,1,,,1],[,1,,,,,,,1],[,,,,,,,,,,1],[,1,,,,,,1,1,,,,,,1],,[,1,1,,,,,,1,,,,,1,1,,,,1],[1,,1,,1,,,,,1,,,,,1,,,,,,,,,1,1],[,1,1,,,,,,,,,1,1,1,1,,,,1,,,,,1,,,1],,[,1,1,,1,,,1,1,,,1,,,1,1,1,,1,,1,1,1,,,,1],[,,,,,1,,,,,1,,,1,1,,,1,,1,,,,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,1,,,1,1,,1,,,,1,,,,,,,,1],[,,,1,,,,,1,,,,,1,,1,,1,1,1],[,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[,,,,,1],[,1,,,,,,1,,,,,,,1,1,1,,,1],[,1,,,,,,,,,,1,1,1,,,,,1,,,1],[,,,,,1,,1,,,,,1,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 Ro(e){e=Array.isArray(e)?e:ko;var a=[];return e.forEach(function(e,t){var r=String.fromCharCode(t+96).replace("`","");Array.isArray(e)?a=a.concat(Ro(e).map(function(e){return r+e})):a.push(r)}),a}var To=function(e){for(var t=ko;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 No=function(){$u(o,tt);var r=Wu(o);function o(e){var t,a,n;return Ju(this,o),(t=r.call(this))._props=function(e){var t=e.nodeName,r=e.nodeType,a=void 0===r?1:r;it("number"==typeof a,"nodeType has to be a number, got '".concat(a,"'")),it("string"==typeof t,"nodeName has to be a string, got '".concat(t,"'")),t=t.toLowerCase();r=null;"input"===t&&(r=(e.type||e.attributes&&e.attributes.type||"").toLowerCase(),Fo().includes(r)||(r="text"));t=Xu({},e,{nodeType:a,nodeName:t});r&&(t.type=r);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"!==Lu(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 Qu(o,[{key:"props",get:function(){return this._props}},{key:"attr",value:function(e){return this._attrs[e]||null}},{key:"hasAttr",value:function(e){return void 0!==this._attrs[e]}},{key:"attrNames",get:function(){return Object.keys(this._attrs)}}]),o}(),_o={};o(_o,{allowedAttr:function(){return So},arialabelText:function(){return Po},arialabelledbyText:function(){return Ui},getAccessibleRefs:function(){return il},getElementUnallowedRoles:function(){return cl},getExplicitRole:function(){return Lo},getImplicitRole:function(){return li},getOwnedVirtual:function(){return hi},getRole:function(){return di},getRoleType:function(){return ll},getRolesByType:function(){return pl},getRolesWithNameFromContents:function(){return ml},implicitNodes:function(){return vl},implicitRole:function(){return li},isAccessibleRef:function(){return Dl},isAriaRoleAllowedOnElement:function(){return sl},isUnsupportedRole:function(){return Io},isValidRole:function(){return Bo},label:function(){return wl},labelVirtual:function(){return Sa},lookupTable:function(){return yl},namedFromContents:function(){return mi},requiredAttr:function(){return xl},requiredContext:function(){return El},requiredOwned:function(){return Al},validateAttr:function(){return Fl},validateAttrValue:function(){return Cl}});var Oo=function(){if(vr.get("globalAriaAttrs"))return vr.get("globalAriaAttrs");var e=Object.keys(nn.ariaAttrs).filter(function(e){return nn.ariaAttrs[e].global});return vr.set("globalAriaAttrs",e),e};var So=function(e){var t=nn.ariaRoles[e],e=Yu(Oo());return t&&(t.allowedAttrs&&e.push.apply(e,Yu(t.allowedAttrs)),t.requiredAttrs&&e.push.apply(e,Yu(t.requiredAttrs))),e};var Po=function(e){if(!(e instanceof tt)){if(1!==e.nodeType)return"";e=Dr(e)}return e.attr("aria-label")||""};var Io=function(e){return!!(e=nn.ariaRoles[e])&&!!e.unsupported};var Bo=function(e){var t=(a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).allowAbstract,r=void 0!==(n=a.flagUnsupported)&&n,a=nn.ariaRoles[e],n=Io(e);return!(!a||r&&n)&&(!!t||"abstract"!==a.type)};var Lo=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?Co(t):[t]).find(function(e){return!(!n&&"doc-"===e.substr(0,4))&&Bo(e,{allowAbstract:a})})||null)};var qo=function(t){return Object.keys(nn.htmlElms).filter(function(e){e=nn.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 Mo=Wn(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 jo=Wn(function(e,t){var r,a;for(t=t||Mo(la(e,"table")),r=0;r<t.length;r++)if(t[r]&&-1!==(a=t[r].indexOf(e)))return{x:a,y:r}});var Uo=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=Mo(la(e,"table")),a=jo(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 Vo=function(e){return-1!==["col","auto"].indexOf(Uo(e))};var Ho=function(e){return["row","auto"].includes(Uo(e))},zo=qo("sectioning").map(function(e){return"".concat(e,":not([role])")}).join(", ")+" , main:not([role]), [role=article], [role=complementary], [role=main], [role=navigation], [role=region]";function $o(e){var t=ka(Ui(e)),e=ka(Po(e));return t||e}var Wo={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 Ir(e,zo)?null:"contentinfo"},form:function(e){return $o(e)?"form":null},h1:"heading",h2:"heading",h3:"heading",h4:"heading",h5:"heading",h6:"heading",header:function(e){return Ir(e,zo)?null:"banner"},hr:"separator",img:function(t){var e=t.hasAttr("alt")&&!t.attr("alt"),r=Oo().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 $o(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=Ir(e,"table"),e=Lo(e);return["grid","treegrid"].includes(e)?"gridcell":"cell"},textarea:"textbox",tfoot:"rowgroup",th:function(e){return Vo(e.actualNode)?"columnheader":Ho(e.actualNode)?"rowheader":void 0},thead:"rowgroup",tr:"row",ul:"list"};var Go=function(e,t){var r=Lu(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 Yo=function(t,r){if("object"!==Lu(r)||Array.isArray(r)||r instanceof RegExp)throw new Error("Expect matcher to be an object");return Object.keys(r).every(function(e){return Go(t(e),r[e])})};var Ko=function(t,e){return t instanceof tt||(t=Dr(t)),Yo(function(e){return t.attr(e)},e)};var Xo=function(e,t){return!!t(e)};var Jo=function(e,t){return Go(Lo(e),t)};var Qo=function(e,t){return Go(li(e),t)};var Zo=function(e,t){return e instanceof tt||(e=Dr(e)),Go(e.props.nodeName,t)};var ei=function(t,e){return t instanceof tt||(t=Dr(t)),Yo(function(e){return t.props[e]},e)};var ti=function(e,t){return Go(di(e),t)},ri={attributes:Ko,condition:Xo,explicitRole:Jo,implicitRole:Qo,nodeName:Zo,properties:ei,semanticRole:ti};var ai=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?Pr(r,a):Object.keys(a).every(function(e){if(!ri[e])throw new Error('Unknown matcher type "'.concat(e,'"'));var t=ri[e],e=a[e];return t(r,e)})};var ni=function(e,t){return ai(e,t)};ni.attributes=Ko,ni.condition=Xo,ni.explicitRole=Jo,ni.fromDefinition=ai,ni.fromFunction=Yo,ni.fromPrimative=Go,ni.implicitRole=Qo,ni.nodeName=Zo,ni.properties=ei,ni.semanticRole=ti;var oi=ni;var ii=function(e){var t=nn.htmlElms[e.props.nodeName];if(!t)return{};if(!t.variant)return t;var r,a,n=t.variant,o=zu(t,Mu);for(r in n)if(n.hasOwnProperty(r)&&"default"!==r){var i=n[r],l=i.matches,s=zu(i,ju);if(oi(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 li=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=Wo[a])||!t?"function"==typeof a?a(r):a||null:ii(r).chromiumRole||null},si={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 ui(e,t){var r=t.chromium,t=zu(t,Uu),r=li(e,{chromium:r});if(!r)return null;t=function e(t,r){var a=si[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=Lo(t.parent,r);return["none","presentation"].includes(a)&&!ci(t.parent)?a:a?null:e(t.parent,r)}(e,t);return t||r}function ci(t){return Oo().some(function(e){return t.hasAttr(e)})||Va(t)}var di=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=zu(r,Vu),o=e instanceof tt?e:Dr(e);return 1!==o.props.nodeType?null:!(r=Lo(o,n))||["presentation","none"].includes(r)&&ci(o)?a?null:ui(o,n):r}(e,zu(r,Hu));return t&&["presentation","none"].includes(r)?null:r},pi=["iframe"];var fi=function(e){var t=e instanceof tt?e:Dr(e);return 1!==t.props.nodeType||!e.hasAttr("title")||!ni(t,pi)&&["none","presentation"].includes(di(t))?"":t.attr("title")};var mi=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=di(e),a=nn.ariaRoles[r];return!(!a||!a.nameFromContent)||!t&&(!a||["presentation","none"].includes(r))};var hi=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(Yu(r),Yu(t))}return Yu(r)};var gi=qo("phrasing").concat(["#text"]);var bi=function(e){var r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},t=Mi.alreadyProcessed;r.startNode=r.startNode||e;var a=(i=r).strict,n=i.inControlContext,o=i.inLabelledByContext,i=ii(e).contentTypes;return!(t(e,r)||1!==e.props.nodeType||null!=i&&i.includes("embedded"))&&(mi(e,{strict:a})||r.subtreeDescendant)?(a||(r=Xu({subtreeDescendant:!n&&!o},r)),hi(e).reduce(function(e,t){return function(e,t,r){var a=t.props.nodeName,r=Mi(t,r);if(!r)return e;gi.includes(a)||(" "!==r[0]&&(r+=" "),e&&" "!==e[e.length-1]&&(r=" "+r));return e+r}(e,t,r)},"")):""};var yi=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=Mi.alreadyProcessed;if(t.inControlContext||t.inLabelledByContext||r(e,t))return"";t.startNode||(t.startNode=e);var a,n=Xu({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=Ir(e,"label"))?(a=[].concat(Yu(r),[t.actualNode])).sort(Gn):a=r,a.map(function(e){return ji(e,n)}).filter(function(e){return""!==e}).join(" ")},vi={submit:"Submit",image:"Submit",reset:"Reset",button:""};function Di(e,t){return t.attr(e)||""}function wi(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?ji(t,r):""}var xi={valueText:function(e){return e.actualNode.value||""},buttonDefaultText:function(e){e=e.actualNode;return vi[e.type]||""},tableCaptionText:wi.bind(null,"caption"),figureText:wi.bind(null,"figcaption"),svgTitleText:wi.bind(null,"title"),fieldsetLegendText:wi.bind(null,"legend"),altText:Di.bind(null,"alt"),tableSummaryText:Di.bind(null,"summary"),titleText:fi,subtreeText:bi,labelText:yi,singleSpace:function(){return" "},placeholderText:Di.bind(null,"placeholder")};function Ei(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode;if(1!==r.props.nodeType||["presentation","none"].includes(di(r)))return"";var t=(ii(r).namingMethods||[]).map(function(e){return xi[e]}).reduce(function(e,t){return e||t(r,a)},"");return a.debug&&axe.log(t||"{empty-value}",e,a),t}var Ai={accessibleNameFromFieldValue:["combobox","listbox","progressbar"]},Ci=["button","checkbox","color","file","hidden","image","password","radio","reset","submit"];var Fi=function(e){var t=(e=e instanceof tt?e:Dr(e)).props.nodeName;return"textarea"===t||"input"===t&&!Ci.includes((e.attr("type")||"").toLowerCase())};var ki=function(e){return"select"===(e=e instanceof tt?e:Dr(e)).props.nodeName};var Ri=function(e){return"textbox"===Lo(e)};var Ti=function(e){return"listbox"===Lo(e)};var Ni=function(e){return"combobox"===Lo(e)},_i=["progressbar","scrollbar","slider","spinbutton"];var Oi=function(e){return e=Lo(e),_i.includes(e)},Si=["textbox","progressbar","scrollbar","slider","spinbutton","combobox","listbox"],Pi={nativeTextboxValue:function(e){e=e instanceof tt?e:Dr(e);if(Fi(e))return e.props.value||"";return""},nativeSelectValue:function(e){var t=e instanceof tt?e:Dr(e);if(!ki(t))return"";e=vo(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(!Ri(t))return"";return!e||e&&!Ma(e)?Oa(t,!0):e.textContent},ariaListboxValue:Ii,ariaComboboxValue:function(e,t){e=e instanceof tt?e:Dr(e);if(!Ni(e))return"";e=hi(e).filter(function(e){return"listbox"===di(e)})[0];return e?Ii(e,t):""},ariaRangeValue:function(e){e=e instanceof tt?e:Dr(e);if(!Oi(e)||!e.hasAttr("aria-valuenow"))return"";e=+e.attr("aria-valuenow");return isNaN(e)?"0":String(e)}};function Ii(e,t){e=e instanceof tt?e:Dr(e);if(!Ti(e))return"";e=hi(e).filter(function(e){return"option"===di(e)&&"true"===e.attr("aria-selected")});return 0===e.length?"":Mi(e[0],t)}function Bi(r){var a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},e=r.actualNode,t=Ai.accessibleNameFromFieldValue||[],n=di(r);return a.startNode===r||!Si.includes(n)||t.includes(n)?"":(n=Object.keys(Pi).map(function(e){return Pi[e]}).reduce(function(e,t){return e||t(r,a)},""),a.debug&&Qe(n||"{empty-value}",e,a),n)}function Li(r){var e=r.actualNode,a=function(e,t){var r=e.actualNode;t.startNode||(t=Xu({startNode:e},t));if(!r)return t;1===r.nodeType&&t.inLabelledByContext&&void 0===t.includeHidden&&(t=Xu({includeHidden:!ba(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!ba(e,!0)}(r,a))return"";var t=[Ui,Po,Ei,Bi,bi,qi,fi].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 qi(e){return 3!==e.props.nodeType?"":e.props.nodeValue}Li.alreadyProcessed=function(e,t){return t.processed=t.processed||[],!!t.processed.includes(e)||(t.processed.push(e),!1)};var Mi=Li;var ji=function(e,t){return e=Dr(e),Mi(e,t)};var Ui=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=ji(t,Xu({inLabelledByContext:!0,startNode:a.startNode||r},a));return e?"".concat(e," ").concat(t):t},"")},Vi={};function Hi(){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 zi(){return/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\xa3\xa2\xa5\xa7\u20ac()*+,\-.\/:;<=>?@\[\]^_`{|}~\xb1]/g}function $i(){return/[\uDB80-\uDBBF][\uDC00-\uDFFF]/g}o(Vi,{accessibleText:function(){return ji},accessibleTextVirtual:function(){return Mi},autocomplete:function(){return Qi},formControlValue:function(){return Bi},formControlValueMethods:function(){return Pi},hasUnicode:function(){return Gi},isHumanInterpretable:function(){return Xi},isIconLigature:function(){return Ji},isValidAutocomplete:function(){return Zi},label:function(){return rl},labelText:function(){return yi},labelVirtual:function(){return tl},nativeElementType:function(){return al},nativeTextAlternative:function(){return Ei},nativeTextMethods:function(){return xi},removeUnicode:function(){return Ki},sanitize:function(){return ka},subtreeText:function(){return bi},titleText:function(){return fi},unsupported:function(){return Ai},visible:function(){return el},visibleTextNodes:function(){return nl},visibleVirtual:function(){return Oa}});var Wi=c($e());var Gi=function(e,t){var r=t.emoji,a=t.nonBmp,t=t.punctuations;return r?Wi.default().test(e):a?Hi().test(e)||$i().test(e):!!t&&zi().test(e)},Yi=c($e());var Ki=function(e,t){var r=t.emoji,a=t.nonBmp,t=t.punctuations;return r&&(e=e.replace(Yi.default(),"")),a&&(e=(e=e.replace(Hi(),"")).replace($i(),"")),e=t?e.replace(zi(),""):e};var Xi=function(e){return!e.length||["x","i"].includes(e)?0:(e=Ki(e,{emoji:!0,nonBmp:!0,punctuations:!0}),ka(e)?1:0)};var Ji=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)||Gi(a,{emoji:!0,nonBmp:!0}))return!1;vr.get("canvasContext")||vr.set("canvasContext",document.createElement("canvas").getContext("2d"));var n=vr.get("canvasContext"),o=n.canvas;vr.get("fonts")||vr.set("fonts",{});var i=vr.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)},Qi={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 Zi=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(Qi.stateTerms)).includes(e)&&""!==e)||(n=n.concat(Qi.qualifiers),a=a.concat(Qi.locations),o=o.concat(Qi.standaloneTerms),i=i.concat(Qi.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 el=function(e,t,r){return e=Dr(e),Oa(e,t,r)};var tl=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+'"]'))&&el(r,!0))return t}return(t=(r=Ir(e,"label"))&&Oa(r,!0))?t:null};var rl=function(e){return e=Dr(e),tl(e)},al=[{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 nl=function t(e){var r=ba(e.actualNode),a=[];return e.children.forEach(function(e){3===e.actualNode.nodeType?r&&a.push(e):a=a.concat(t(e))}),a},ol=/^idrefs?$/;var il=function(e){e=e.actualNode||e;var t=(t=na(e)).documentElement||t,r=vr.get("idRefsByRoot");r||(r=new WeakMap,vr.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=Co(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(nn.ariaAttrs).filter(function(e){e=nn.ariaAttrs[e].type;return ol.test(e)}))),a[e.id]||[]};var ll=function(e){return(e=nn.ariaRoles[e])?e.type:null};var sl=function(e,t){return e=e instanceof tt?e:Dr(e),t===li(e)||(e=ii(e),Array.isArray(e.allowedRoles)?e.allowedRoles.includes(t):!!e.allowedRoles)},ul=["doc-backlink","doc-biblioentry","doc-biblioref","doc-cover","doc-endnote","doc-glossref","doc-noteref"];var cl=function(r){var a=!(1<arguments.length&&void 0!==arguments[1])||arguments[1],n=r.nodeName.toUpperCase();if(!Vn(r))return[];var e,t,o=(o=[],(e=r)?(e.hasAttribute("role")&&(t=Co(e.getAttribute("role").toLowerCase()),o=o.concat(t)),e.hasAttributeNS("http://www.idpf.org/2007/ops","type")&&(e=Co(e.getAttributeNS("http://www.idpf.org/2007/ops","type").toLowerCase()).map(function(e){return"doc-".concat(e)}),o=o.concat(e)),o=o.filter(function(e){return Bo(e)})):o),i=li(r);return o.filter(function(e){if(a&&e===i)return!1;if(a&&ul.includes(e)){var t=ll(e);if(i!==t)return!0}return!(a||"row"===e&&"TR"===n&&tr(r,'table[role="grid"] > tr'))||!sl(r,e)})};var dl=function(t){return Object.keys(nn.ariaRoles).filter(function(e){return nn.ariaRoles[e].type===t})};var pl=function(e){return dl(e)};var fl=function(){if(vr.get("ariaRolesNameFromContent"))return vr.get("ariaRolesNameFromContent");var e=Object.keys(nn.ariaRoles).filter(function(e){return nn.ariaRoles[e].nameFromContent});return vr.set("ariaRolesNameFromContent",e),e};var ml=function(){return fl()},hl=function(e){return null===e},gl=function(e){return null!==e},bl={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"]};bl.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:gl}}]},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:gl}}]},"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:gl}}]},"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:gl}}]},"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:gl}}]},"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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},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:gl}}]},widget:{type:"abstract",unsupported:!1},window:{nameFrom:["author"],type:"abstract",unsupported:!1}},bl.implicitHtmlRole=Wo,bl.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:gl}},{nodeName:"input",properties:{type:["color","data","datatime","file","hidden","month","number","password","range","reset","submit","time","week"]}},{nodeName:"link",attributes:{href:gl}},{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"]}],bl.elementsAllowedAnyRole=[{nodeName:"a",attributes:{href:hl}},{nodeName:"img",attributes:{alt:hl}},{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"]}],bl.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}},bl.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 yl=bl;var vl=function(e){var t=null,e=yl.role[e];return t=e&&e.implicit?Ar(e.implicit):t};var Dl=function(e){return!!il(e).length};var wl=function(e){return e=Dr(e),Sa(e)};var xl=function(e){return(e=nn.ariaRoles[e])&&Array.isArray(e.requiredAttrs)?Yu(e.requiredAttrs):[]};var El=function(e){return(e=nn.ariaRoles[e])&&Array.isArray(e.requiredContext)?Yu(e.requiredContext):null};var Al=function(e){return(e=nn.ariaRoles[e])&&Array.isArray(e.requiredOwned)?Yu(e.requiredOwned):null};var Cl=function(e,t){var r,a=e.getAttribute(t),n=nn.ariaAttrs[t],o=na(e);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=Co(a)).reduce(function(e,t){return e&&n.values.includes(t)},0!==r.length);case"idref":return!(!a||!o.getElementById(a));case"idrefs":return(r=Co(a)).some(function(e){return o.getElementById(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 Fl=function(e){return!!nn.ariaAttrs[e]};function kl(e,t,r){return 0<(r=Co(r.attr("role")).filter(function(e){return"abstract"===ll(e)})).length&&(this.data(r),!0)}function Rl(e,t,r){var a=[],n=di(r),o=r.attrNames,i=So(n);if(Array.isArray(t[n])&&(i=io(t[n].concat(i))),n&&i)for(var l=0;l<o.length;l++){var s=o[l];Fl(s)&&!i.includes(s)&&a.push(s+'="'+r.attr(s)+'"')}return!a.length||(this.data(a),!1)}function Tl(e){var t=void 0===(a=(r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}).allowImplicit)||a,r=void 0===(a=r.ignoredTags)?[]:a,a=e.nodeName.toUpperCase();return!!r.map(function(e){return e.toUpperCase()}).includes(a)||(!(t=cl(e,t)).length||(this.data(t),!ba(e,!0)&&void 0))}function Nl(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=na(r);return-1!==e.indexOf(t)||!a||(this.data(Co(t)),function(e){if(""===e.trim())return nn.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<Co(r.getAttribute("aria-describedby")).indexOf(e):void 0}(t))}function _l(e,t,r){return"true"!==r.attr("aria-hidden")}function Ol(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=di(e,{chromium:!0}),a=nn.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(bi(r)))||void 0)}var Sl={};o(Sl,{getAriaRolesByType:function(){return dl},getAriaRolesSupportingNameFromContent:function(){return fl},getElementSpec:function(){return ii},getElementsByContentType:function(){return qo},getGlobalAriaAttrs:function(){return Oo},implicitHtmlRoles:function(){return Wo}});function Pl(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=Lo(r),o=xl(n),i=ii(r);if(Array.isArray(t[n])&&(o=io(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 Il(e,r){for(var a=[],n=hi(e),t=0;t<n.length;t++)!function(e){var e=n[e],t=di(e,{noPresentational:!0});!t||["group","rowgroup"].includes(t)&&r.some(function(e){return e===t})?n.push.apply(n,Yu(e.children)):t&&a.push(t)}(t);return a}function Bl(e,t,r){var a=t&&Array.isArray(t.reviewEmpty)?t.reviewEmpty:[],n=Lo(r,{dpub:!0}),o=Al(n);return null===o||(t=Il(r,o),!(o=function(e,t,r,a){var n,o,i,l="combobox"===t;l&&(("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"],t=e.attr("aria-expanded"),o=t&&"false"!==t.toLowerCase(),i=(e.attr("aria-haspopup")||"listbox").toLowerCase(),r=r.filter(function(e){return!n.includes(e)||o&&e===i}));for(var s=0;s<a.length;s++){var u=a[s];if(r.includes(u)&&(r=r.filter(function(e){return e!==u}),!l))return null}return r.length?r:null}(r,n,o,t))||(this.data(o),!(!a.includes(n)||Ia(r,!1,!0)||t.length||r.hasAttr("aria-owns")&&_a(e,"aria-owns").length)&&void 0))}function Ll(e,t,r,a){var n=Lo(e);if(!(r=r||El(n)))return null;for(var o=a?e:e.parent;o;){var i=di(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 ql(e,t,r){var a=t&&Array.isArray(t.ownGroupRoles)?t.ownGroupRoles:[],n=Ll(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=Ll(Dr(o[i]),a,n,!0)))return!0;return this.data(n),!1}function Ml(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=di(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=nn.ariaAttrs[e];if(!Fl(e))return!1;t=t.unsupported;return"object"!==Lu(t)?!!t:!oi(r,t.exceptions)})).length&&(this.data(t),!0)}function Ul(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)&&!Fl(e)&&a.push(e)}),!a.length||(this.data(a),!1)}function Vl(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(){Cl(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(){Cl(e,"aria-describedby")||(r='aria-describedby="'.concat(e.getAttribute("aria-describedby"),'"'),a="noId")},"aria-labelledby":function(){Cl(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]()||Cl(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 Hl(e,t,r){return 1<Co(r.attr("role")).length}function zl(e,t,r){var a=Oo().filter(function(e){return r.hasAttr(e)});return this.data(a),0<a.length}function $l(e,t){return null!==li(t,{chromium:!0})}function Wl(e){return null!==(e=e.getAttribute("role"))&&("widget"===(e=ll(e))||"composite"===e)}function Gl(e,t,r){return!!(r=Co(r.attr("role"))).every(function(e){return!Bo(e,{allowAbstract:!0})})&&(this.data(r),!0)}function Yl(e,t,r){return Va(r)}function Kl(e,t,r){var a,n,o=di(r,{noImplicit:!0});this.data(o);try{a=ka(yi(r)).toLowerCase(),n=ka(Mi(r)).toLowerCase()}catch(e){return}return!(!n&&!a)&&(!((n||!a)&&n.includes(a))&&void 0)}function Xl(e,t,r){return Io(di(r))}var Jl={ARTICLE:!0,ASIDE:!0,NAV:!0,SECTION:!0},Ql={application:!0,banner:!1,complementary:!0,contentinfo:!0,form:!0,main:!0,navigation:!0,region:!0,search:!1};function Zl(e,t){return r=t,(t=Lo(t=e))&&(Ql[t]||r.roles.includes(t))||!1||(t=(t=e).nodeName.toUpperCase(),Jl[t]||!1);var r}var es={};o(es,{getAllCells:function(){return ts},getCellPosition:function(){return jo},getHeaders:function(){return as},getScope:function(){return Uo},isColumnHeader:function(){return Vo},isDataCell:function(){return ns},isDataTable:function(){return os},isHeader:function(){return is},isRowHeader:function(){return Ho},toArray:function(){return Mo},toGrid:function(){return Mo},traverse:function(){return ls}});var ts=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 rs(e,t,r){for(var a,n="row"===e?"_rowHeaders":"_colHeaders",o="row"===e?Ho:Vo,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 as=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||Mo(la(e,"table")),r=jo(e,t),e=rs("row",r,t),t=rs("col",r,t),[].concat(e,t).reverse()};var ns=function(e){if(!e.children.length&&!e.textContent.trim())return!1;var t=e.getAttribute("role");return Bo(t)?["cell","gridcell"].includes(t):"TD"===e.nodeName.toUpperCase()};var os=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"===ll(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 is=function(e){if(Vo(e)||Ho(e))return!0;if(e.getAttribute("id")){e=Kt(e.getAttribute("id"));return!!document.querySelector('[headers~="'.concat(e,'"]'))}return!1};var ls=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 ss(e){var t=Mo(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 us(e){return!za(document)||"TH"===e.nodeName.toUpperCase()}function cs(e){return!(!e.summary||!e.caption)&&e.summary.toLowerCase()===ji(e.caption).toLowerCase()}function ds(e,t){return e=e.getAttribute("scope").toLowerCase(),-1!==t.values.indexOf(e)}function ps(e){var t=[],r=ts(e),a=Mo(e);return r.forEach(function(e){Ba(e)&&ns(e)&&!wl(e)&&(as(e,a).some(function(e){return null!==e&&!!Ba(e)})||t.push(e))}),!t.length||(this.relatedNodes(t),!1)}function fs(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=Co(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 ms(e){var t=ts(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=Mo(e),i=!0;return t.forEach(function(t){var e,r;t.getAttribute("id")&&n.includes(t.getAttribute("id"))||(e=jo(t,o),r=!1,(r=!(r=Vo(t)?ls("down",e,o).find(function(e){return!Vo(e)&&as(e,o).includes(t)}):r)&&Ho(t)?ls("right",e,o).find(function(e){return!Ho(e)&&as(e,o).includes(t)}):r)||a.relatedNodes(t),i=i&&r)}),!!i||void 0}function hs(e,t,r){if(!["SCRIPT","HEAD","TITLE","NOSCRIPT","STYLE","TEMPLATE"].includes(e.nodeName.toUpperCase())&&Ia(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 gs={};o(gs,{Color:function(){return on},centerPointOfRect:function(){return bs},elementHasImage:function(){return Qa},elementIsDistinct:function(){return vs},filteredRectStack:function(){return ws},flattenColors:function(){return xs},getBackgroundColor:function(){return Fs},getBackgroundStack:function(){return As},getContrast:function(){return ks},getForegroundColor:function(){return Rs},getOwnBackgroundColor:function(){return ln},getRectStack:function(){return Ds},getTextShadowColors:function(){return Cs},hasValidContrastRatio:function(){return Ts},incompleteData:function(){return Ja}});var bs=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 ys(e){return e.getPropertyValue("font-family").split(/[,;]/g).map(function(e){return e.trim().toLowerCase()})}var vs=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 on;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 ys(a)[0]!==ys(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 Ds=function(e){var t=Ca(e);return!(e=Ra(e))||e.length<=1?[t]:e.some(function(e){return void 0===e})?null:(e.splice(0,0,t),e)};var ws=function(n){var o=Ds(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 xs=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 on(r,a,n,e)};function Es(e,t,r){if(0<e)for(var a=e-1;0<=a;a--){if(function(e,t){var r=e.getClientRects()[0],a=mn(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 As=function(e){var t,r,a=ws(e);if(null===a)return null;a=dn(a,e),r=(t=a).indexOf(document.body),n=t,(1<r||-1===r)&&!Qa(document.documentElement)&&0===ln(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 Es(n,a,e)?(Ja.set("bgColor","bgOverlap"),null):-1!==n?a:null};var Cs=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=Ku(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 on(0,0,0,0);a=new on;return a.parseString(t),a.alpha*=function(e,t){return.185/(e/t+.4)}(n,e),a}({colorStr:t,offsetY:e,offsetX:r,blurRadius:a,fontSize:l}),s.push(a))}),s};var Fs=function(i){var l=1<arguments.length&&void 0!==arguments[1]?arguments[1]:[],s=Cs(i,{minRatio:2<arguments.length&&void 0!==arguments[2]?arguments[2]:.1}),e=As(i);return(e||[]).some(function(e){var t,r,a,n=window.getComputedStyle(e),o=ln(n);return a=o,(a=(t=i)!==(r=e)&&!fn(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 on(255,255,255,1)),s.reduce(xs))};var ks=function(e,t){return t&&e?(t.alpha<1&&(t=xs(t,e)),e=e.getRelativeLuminance(),t=t.getRelativeLuminance(),(Math.max(t,e)+.05)/(Math.min(t,e)+.05)):null};var Rs=function(e,t,r){var a=window.getComputedStyle(e),n=new on;return 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?n:null!==(r=r||Fs(e,[]))?xs(n,r):(r=Ja.get("bgColor"),Ja.set("fgColor",r),null)};var Ts=function(e,t,r,a){return t=ks(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}},Ns=Wn(function(e,t){e=window.getComputedStyle(e,t),t=ln(e);return"none"!==e.getPropertyValue("content")&&"absolute"===e.getPropertyValue("position")&&0!==parseInt(e.getPropertyValue("width"))&&0!==parseInt(e.getPropertyValue("height"))&&(0!==t.alpha||"none"!==e.getPropertyValue("background-image"))});function _s(e,t,r){if(!ba(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=Oa(r,!1,!0);if(!Gi(c,{nonBmp:!0})||""!==ka(Ki(c,{nonBmp:!0}))||!a){var d=[],p=Fs(e,d,u),t=Rs(e,!1,p),r=Cs(e,{maxRatio:u}),a=window.getComputedStyle(e),u=parseFloat(a.getPropertyValue("font-size")),a=a.getPropertyValue("font-weight"),o=parseFloat(a)>=o||"bold"===a,a=null;0===r.length?a=ks(p,t):t&&p&&(f=[].concat(Yu(r),[p]).reduce(xs),r=ks(p,f),f=ks(f,t),a=Math.max(r,f));for(var f=Math.ceil(72*u)/96,i=o&&f<i||!o&&f<l?s.normal:s.large,f=i.expected,l=i.minThreshold,s=i.maxThreshold,i=f<a,m=e;m;){if(Ns(m,":before")||Ns(m,":after"))return this.data({messageKey:"pseudoContent"}),void this.relatedNodes(m);m=m.parentElement}if("number"==typeof l&&a<l||"number"==typeof s&&s<a)return!0;var h,s=Math.floor(100*a)/100;null===p&&(h=Ja.get("bgColor"));a=1==s,c=1===c.length;a?h=Ja.set("bgColor","equalRatio"):c&&!n&&(h="shortTextContent");f={fgColor:t?t.toHexString():void 0,bgColor:p?p.toHexString():void 0,contrastRatio:s,fontSize:"".concat((72*u/96).toFixed(1),"pt (").concat(u,"px)"),fontWeight:o?"bold":"normal",messageKey:h,expectedContrastRatio:f+":1"};return(this.data(f),null===t||null===p||a||c&&!n&&!i)?(h=null,Ja.clear(),void this.relatedNodes(d)):(i||this.relatedNodes(d),i)}this.data({messageKey:"nonBmp"})}function Os(e,t){e=e.getRelativeLuminance(),t=t.getRelativeLuminance();return(Math.max(e,t)+.05)/(Math.min(e,t)+.05)}var Ss=["block","list-item","table","flex","grid","inline-block"];function Ps(e){e=window.getComputedStyle(e).getPropertyValue("display");return-1!==Ss.indexOf(e)||"table-"===e.substr(0,6)}function Is(e){if(Ps(e))return!1;for(var t=sa(e);1===t.nodeType&&!Ps(t);)t=sa(t);if(this.relatedNodes([t]),vs(e,t))return!0;var r=Rs(e),a=Rs(t);if(r&&a){var n=Os(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=Fs(e),a=Fs(t),!r||!a||3<=Os(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}}function Bs(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"===Lu(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],!!Qi.stateTerms.includes(n)||(n=o[n],r=r.hasAttr("type")?ka(r.attr("type")).toLowerCase():"text",r=Fo().includes(r)?r:"text",void 0===n?"text"===r:n.includes(r))}n=function(e,t,r){return r=r.attr("autocomplete")||"",Zi(r,t)};wt=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)};var Ls=function(e){return e.some(function(e){return!0===e.result})&&e.forEach(function(e){e.result=!0}),e};Cr=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=so(r,t.selector,function(e){return ba(e.actualNode,!0)}),this.relatedNodes(t.map(function(e){return e.actualNode})),0<t.length};en=function(e,t,r){try{return""!==ka(bi(r))}catch(e){return}};tn=function(e,t,r){return oi(r,t.matcher)};Ko=function(e){return e.filter(function(e){return"ignored"!==e.data})};Xo=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(!vr.get(a)){vr.set(a,!0);a=so(axe._tree[0],t.selector,function(e){return ba(e.actualNode)});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 qs(e,t){var r=null===(r=t.data)||void 0===r?void 0:r.headingOrder,a=js(t.node.ancestry,1);if(!r)return e;t=r.map(function(e){return function(e,t){t=t.concat(e.ancestry);return Xu({},e,{ancestry:t})}(e,a)}),r=function(e,t){for(;t.length;){var r=Ms(e,t);if(-1!==r)return r;t=js(t,1)}return-1}(e,a);return-1===r?e.push.apply(e,Yu(t)):e.splice.apply(e,[r,0].concat(Yu(t))),e}function Ms(e,t){return e.findIndex(function(e){return e=e.ancestry,a=t,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});var a})}function js(e,t){return e.slice(0,e.length-t)}Jo=function(){if(t=vr.get("headingOrder"))return!0;var e=so(axe._tree[0],"h1, h2, h3, h4, h5, h6, [role=heading], iframe, frame",function(e){return ba(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")){t=e.attr("aria-level"),t=parseInt(t,10);return isNaN(t)||t<1||6<t?2:t}return(e=e.props.nodeName.match(/h(\d)/))?parseInt(e[1],10):-1}(e)}});return this.data({headingOrder:t}),vr.set("headingOrder",e),!0};Qo=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 Lu(t)===Lu(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,Yu(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},Zo={};o(Zo,{aria:function(){return _o},color:function(){return gs},dom:function(){return ra},forms:function(){return Us},matches:function(){return oi},standards:function(){return Sl},table:function(){return es},text:function(){return Vi},utils:function(){return rt}});var Us={};o(Us,{isAriaCombobox:function(){return Ni},isAriaListbox:function(){return Ti},isAriaRange:function(){return Oi},isAriaTextbox:function(){return Ri},isDisabled:function(){return Hs},isNativeSelect:function(){return ki},isNativeTextbox:function(){return Fi}});var Vs=["fieldset","button","select","input","textarea"];var Hs=function e(t){if("boolean"==typeof(n=t._isDisabled))return n;var r=t.props.nodeName,a=t.attr("aria-disabled"),n=!(!Vs.includes(r)||!t.hasAttr("disabled"))||(a?"true"===a.toLowerCase():!!t.parent&&e(t.parent));return t._isDisabled=n};ei=function(e,t,r){if(r=Vi.accessibleTextVirtual(r),r=Vi.sanitize(Vi.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}};ti=function(e,t,r){return vo(r,"a[href]").some(function(e){return/^#[^/!]/.test(e.actualNode.getAttribute("href"))})};gl=function(e,t,r){var a=r.attr("content")||"",r=a.split(/[;,]/);return""===a||"0"===r[0]};function zs(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 $s(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 hl=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=zs(e),t=t?zs(t):null,n=n?zs(n):null;return!t||!$s(e,t,o)||!!((r=ia(r,"blockquote"))&&"BLOCKQUOTE"===r.nodeName.toUpperCase()||n&&!$s(e,n,o))&&void 0},Ws=dl("landmark"),Gs=["alert","log","status"];function Ys(e,t){var r,a,n,o,i=e.actualNode;if(a=t,n=(r=e).actualNode,o=di(r),n=(n.getAttribute("aria-live")||"").toLowerCase().trim(),["assertive","polite"].includes(n)||Gs.includes(o)||(Ws.includes(o)||!(!a.regionMatcher||!oi(r,a.regionMatcher)))||cn(e.actualNode)&&ua(e.actualNode,"href")||!ba(i,!0)){for(var l=e;l;)l._hasRegionDescendant=!0,l=l.parent;return[]}return i!==document.body&&Ba(i,!0)?[e]:e.children.filter(function(e){return 1===e.actualNode.nodeType}).map(function(e){return Ys(e,t)}).reduce(function(e,t){return e.concat(t)},[])}function Ks(e,t){t=Xs(t),e=Xs(e);return!(!t||!e)&&t.includes(e)}function Xs(e){e=Ki(e,{emoji:!0,nonBmp:!0,punctuations:!0});return ka(e)}function Js(e){return""!==(e||"").trim()}var Qs=function(e,t,r){return r.initiator};var Zs=function(e,t){try{return"svg"===t.props.nodeName?!0:!!Ir(t,"svg")}catch(e){return!1}};bl=function(e,t){var r=ii(t).namingMethods;return(!r||0===r.length)&&("combobox"!==Lo(t)||!vo(t,'input:not([type="hidden"])').length)};var eu={"abstractrole-evaluate":kl,"aria-allowed-attr-evaluate":Rl,"aria-allowed-role-evaluate":Tl,"aria-errormessage-evaluate":Nl,"aria-hidden-body-evaluate":_l,"aria-prohibited-attr-evaluate":Ol,"aria-required-attr-evaluate":Pl,"aria-required-children-evaluate":Bl,"aria-required-parent-evaluate":ql,"aria-roledescription-evaluate":Ml,"aria-unsupported-attr-evaluate":jl,"aria-valid-attr-evaluate":Ul,"aria-valid-attr-value-evaluate":Vl,"fallbackrole-evaluate":Hl,"has-global-aria-attribute-evaluate":zl,"has-implicit-chromium-role-matches":$l,"has-widget-role-evaluate":Wl,"invalidrole-evaluate":Gl,"is-element-focusable-evaluate":Yl,"no-implicit-explicit-label-evaluate":Kl,"unsupportedrole-evaluate":Xl,"valid-scrollable-semantics-evaluate":Zl,"caption-faked-evaluate":ss,"html5-scope-evaluate":us,"same-caption-summary-evaluate":cs,"scope-value-evaluate":ds,"td-has-header-evaluate":ps,"td-headers-attr-evaluate":fs,"th-has-data-cells-evaluate":ms,"hidden-content-evaluate":hs,"color-contrast-evaluate":_s,"link-in-text-block-evaluate":Is,"autocomplete-appropriate-evaluate":Bs,"autocomplete-valid-evaluate":n,"attr-non-space-content-evaluate":wt,"has-descendant-after":Ls,"has-descendant-evaluate":Cr,"has-text-content-evaluate":en,"matches-definition-evaluate":tn,"page-no-duplicate-after":Ko,"page-no-duplicate-evaluate":Xo,"heading-order-after":function(e){var t,r=((t=Yu(t=e)).sort(function(e,t){e=e.node,t=t.node;return e.ancestry.length-t.ancestry.length}),t.reduce(qs,[]).filter(function(e){return-1!==e.level}));return e.forEach(function(e){e.result=function(e,t){var r=Ms(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":Jo,"identical-links-same-purpose-after":Qo,"identical-links-same-purpose-evaluate":ei,"internal-link-present-evaluate":ti,"meta-refresh-evaluate":gl,"p-as-heading-evaluate":hl,"region-evaluate":function(e,t,r){if(a=vr.get("regionlessNodes"))return!a.includes(r);var a=Ys(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 vr.set("regionlessNodes",a),!a.includes(r)},"skip-link-evaluate":function(e){return!!(e=ua(e,"href"))&&(ba(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(Po(r))},"aria-labelledby-evaluate":function(e,t,r){try{return!!ka(Ui(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 ba(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=di(r),n=Lo(r);if(["presentation","none"].includes(a))return this.data({role:a}),!0;if(!["presentation","none"].includes(n))return!1;var o=Oo().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=Ku(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=Ku(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=Ku(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=Ku(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=Ku(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 ba(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=Ir(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!Mi(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=dl("landmark"),r=sa(e),a=di(e);for(this.data({role:a});r;){var n=r.getAttribute("role");if((n=!n&&"FORM"!==r.nodeName.toUpperCase()?li(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(di(r))&&(!!(t=Ir(r,t.parentSelector))&&(""!==(t=Oa(t,!0).toLowerCase())&&t===Mi(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!ba(e)||!!ji(e)})}catch(e){return}}return!1},"help-same-as-label-evaluate":function(e,t,r){var a=tl(r),r=e.getAttribute("title");return!!a&&(r||(r="",e.getAttribute("aria-describedby")&&(r=_a(e,"aria-describedby").map(function(e){return e?ji(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&&!ba(e,!0)){try{a=Mi(r).trim()}catch(e){return}return""===a}}return!1},"implicit-evaluate":function(e,t,r){try{var a=Ir(r,"label");return a?!!Mi(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=ji(e).toLowerCase();if(!(Xi(e)<1)){r=nl(r).filter(function(e){return!Ji(e,a,n)}).map(function(e){return e.actualNode.nodeValue}).join(""),r=ka(r).toLowerCase();return!r||(Xi(r)<1?!!Ks(r,e)||void 0:Ks(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 ba(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 ba(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=tl(r),n=fi(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=di(e),r=(r=Mi(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")&&Js(r.attr("xml:lang"))&&!Js(r.attr("lang"))&&!a?(this.data({messageKey:"noXHTML"}),!1):!!t.attributes.some(function(e){return Js(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=xn(a),r=n.value?!n.value.map(xn).includes(t):!To(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 xn(r.attr("lang"))===xn(r.attr("xml:lang"))},"dlitem-evaluate":function(e){var t=sa(e),r=t.nodeName.toUpperCase(),e=Lo(t);return"DIV"===r&&["presentation","none",null].includes(e)&&(r=(t=sa(t)).nodeName.toUpperCase(),e=Lo(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&&Bo(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===di(r)?e.concat(t.children):e.concat(t)},[]).reduce(function(e,t){var r=t.actualNode,a=r.nodeName.toUpperCase();return 1===r.nodeType&&ba(r,!0,!1)?(t=Lo(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&&ba(a,!0,!1)&&(i=!1,t="LI"===a.nodeName.toUpperCase(),e="listitem"===(r=di(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!vo(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 Ku(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){return null!==Lo(e,{dpub:!0,fallback:!0})},"aria-form-field-name-matches":bl,"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=Lo(t,{dpub:!0}),!!Al(t)},"aria-required-parent-matches":function(e,t){return t=Lo(t),!!El(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=nn.ariaRoles[a];if(void 0===a||"widget"!==a.type)return!1}return!("-1"===r&&t.actualNode&&!ba(t.actualNode,!1)&&!ba(t.actualNode,!0))},"bypass-matches":function(e,t,r){return!Qs(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(Hs(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&&Hs(r))return!1}o=vo(o,'input:not([type="hidden"],[type="image"],[type="button"],[type="submit"],[type="reset"]), select, textarea')[0];if(o&&Hs(o))return!1}for(var i,l=[],s=t;s;)s.props.id&&(i=il(s).filter(function(e){return Co(e.getAttribute("aria-labelledby")||"").includes(s.props.id)}).map(function(e){return Dr(e)}),l.push.apply(l,Yu(i))),s=s.parent;if(0<l.length&&l.every(Hs))return!1;if(!(o=Oa(t,!1,!0))||!Ki(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(os(e)){e=Mo(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 os(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!Dl(e)&&t.some(Va)},"duplicate-id-aria-matches":function(e){return Dl(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!Dl(e)&&t.every(function(e){return!Va(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){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!Zs(e,t)},"identical-links-same-purpose-matches":function(e,t){return!!Mi(t)&&(!(e=di(e))||"link"===e)},"inserted-into-focus-order-matches":function(e){return Ha(e)},"is-initiator-matches":Qs,"label-content-name-mismatch-matches":function(e,t){var r=di(e);return!!r&&(!!dl("widget").includes(r)&&(!!fl().includes(r)&&(!(!ka(Po(t))&&!ka(Ui(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=dl("landmark"),!!(t=di(a))&&("HEADER"===(a=a.nodeName.toUpperCase())||"FOOTER"===a?!ia(r,o):"SECTION"!==a&&"FORM"!==a?0<=n.indexOf(t)||"region"===t:!!Mi(r))&&ba(e,!0)},"layout-table-matches":function(e){return!os(e)&&!Va(e)},"link-in-text-block-matches":function(e){var t=ka(e.textContent),r=e.getAttribute("role");return(!r||"link"===r)&&(!!t&&(!!ba(e,!1)&&Ga(e)))},"nested-interactive-matches":function(e,t){return!!(t=di(t))&&!!nn.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=Lo(t);return!(r&&!["none","presentation"].includes(r))||!(!(Za[r]||{}).accessibleNameRequired&&!Va(t))},"no-naming-method-matches":bl,"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==!!Pn(e,13))return!1;var r=Lo(t);if(nn.ariaRoles.combobox.requiredOwned.includes(r)){if(Ir(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 Co(e.getAttribute("role")).includes("combobox")}))return!1}}return!!vo(t,"*").some(function(e){return Ia(e,!0,!0)})},"skip-link-matches":function(e){return cn(e)&&fa(e)},"svg-namespace-matches":Zs,"window-is-top-matches":function(e){return e.ownerDocument.defaultView.self===e.ownerDocument.defaultView.top},"xml-lang-mismatch-matches":function(e){var t=xn(e.getAttribute("lang")),e=xn(e.getAttribute("xml:lang"));return To(t)&&To(e)}};var tu=function(e){this.id=e.id,this.data=null,this.relatedNodes=[],this.result=null};function ru(e){if("string"!=typeof e)return e;if(eu[e])return eu[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 au(e){var t=0<arguments.length&&void 0!==e?e:{};return t=Array.isArray(t)||"object"!==Lu(t)?{value:t}:t}function nu(e){e&&(this.id=e.id,this.configure(e))}nu.prototype.enabled=!0,nu.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 tu(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)},nu.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 tu(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},nu.prototype.configure=function(t){var r=this;t.evaluate&&!eu[t.evaluate]||(this._internalCheck=!0),t.hasOwnProperty("enabled")&&(this.enabled=t.enabled),t.hasOwnProperty("options")&&(this._internalCheck?this.options=au(t.options):this.options=t.options),["evaluate","after"].filter(function(e){return t.hasOwnProperty(e)}).forEach(function(e){return r[e]=ru(t[e])})},nu.prototype.getOptions=function(e){return this._internalCheck?Qr(this.options,au(e||{})):e||this.options};var ou=nu;var iu=function(e){this.id=e.id,this.result=Je.NA,this.pageLevel=e.pageLevel,this.impact=null,this.nodes=[]};function lu(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=ru(e.matches))}function su(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}}lu.prototype.matches=function(){return!0},lu.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&&ro.mark(r);var i=Eo(this.selector,e);return this.excludeHidden&&(t.performanceTimer&&ro.mark(n),i=i.filter(function(e){return!jn(e.actualNode)}),t.performanceTimer&&(ro.mark(o),ro.measure("rule_"+this.id+"#gather_axe.utils.isHidden",n,o))),t.performanceTimer&&(ro.mark(a),ro.measure("rule_"+this.id+"#gather",r,a)),i},lu.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)},lu.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})}},lu.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 iu(this);try{r=this.gatherAndMatchNodes(n,i)}catch(e){return void t(new qu({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=su(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)})},lu.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 iu(this);try{e=this.gatherAndMatchNodes(n,i)}catch(e){throw new qu({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=su(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},lu.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},lu.prototype._logGatherPerformance=function(e){Qe("gather (",e.length,"):",ro.timeElapsed()+"ms"),ro.mark(this._markChecksStart)},lu.prototype._logRulePerformance=function(){ro.mark(this._markChecksEnd),ro.mark(this._markEnd),ro.measure("runchecks_"+this.id,this._markChecksStart,this._markChecksEnd),ro.measure("rule_"+this.id,this._markStart,this._markEnd)},lu.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&&ro.mark(a),o=o.filter(function(e){return r.matches(e.actualNode,e,t)}),e.performanceTimer&&(ro.mark(n),ro.measure("rule_"+this.id+"#matches",a,n)),o},lu.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},lu.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=ru(e.matches)),e.impact&&(it(Je.impact.includes(e.impact),"Impact ".concat(e.impact," is not a valid impact")),this.impact=e.impact)};var uu=lu,cu=c(We()),du=/\{\{.+?\}\}/g;function pu(){return window.origin||(window.location&&window.location.origin?window.location.origin:void 0)}function fu(e,t,r){for(var a=0,n=e.length;a<n;a++)t[r](e[a])}function mu(e){Ju(this,mu),this.lang="en",this.defaultConfig=e,this.standards=nn,this._init(),this._defaultLocale=null}function hu(a,e,n){return n.performanceTimer&&ro.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 iu(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 gu(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 bu=(Qu(mu,[{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&&du.test(a)&&(a=cu.default.compile(a)),"string"==typeof i&&du.test(i)&&(i=cu.default.compile(i)),Xu({},t,{messages:{pass:a||t.messages.pass,fail:i||t.messages.fail,incomplete:"object"===Lu(t.messages.incomplete)?Xu({},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&&du.test(o)&&(o=cu.default.compile(o)),"string"==typeof r&&du.test(r)&&(r=cu.default.compile(r)),Xu({},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 Xu({},e,{failureMessage:(t="string"==typeof t&&du.test(t)?cu.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)&&du.test(r)?cu.default.compile(r):r)||t)),e.lang&&(this.lang=e.lang)}},{key:"setAllowedOrigins",value:function(e){var t=pu();this.allowedOrigins=[];var r,a=Zu(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=pu(),t.allowedOrigins=e?[e]:[]),t.rules=t.rules||[],t.checks=t.checks||[],t.data=Xu({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,fu(t.rules,this,"addRule"),fu(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 uu(e,this))}},{key:"addCheck",value:function(e){var t=e.metadata;"object"===Lu(t)&&(this.data.checks[e.id]=t,"object"===Lu(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 ou(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 wo(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(hu(e,n,o))});e=jr();s.length&&e.defer(function(t){go(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=Xu({},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=hu(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"===Lu(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}}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"===Lu(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===gu(a,e.id,n))&&(t.helpUrl=gu(r,e.id,n))})}},{key:"resetRulesAndChecks",value:function(){this._init(),this._resetLocale()}}]),mu);function yu(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(e,t,r){var a;e.frames=e.frames||[];var n=document.querySelectorAll(r.shift());e:for(var o=0,i=n.length;o<i;o++){for(var l=n[o],s=0,u=e.frames.length;s<u;s++)if(e.frames[s].node===l){e.frames[s][t].push(r);break e}a={node:l,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 Dr(e)})))}return n.filter(function(e){return e})}var vu=function(e){var r=this;if(this.frames=[],this.initiator=!e||"boolean"!=typeof e.initiator||e.initiator,this.focusable=!e||"boolean"!=typeof e.focusable||e.focusable,this.boundingClientRect=e&&"object"===Lu(e.boundingClientRect)?e.boundingClientRect:{},this.page=!1,e=function(e){if(e&&"object"===Lu(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=wn(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=yu(this,"include"),this.exclude=yu(this,"exclude"),Eo("frame, iframe",this).forEach(function(e){var t;zn(e,r)&&(t=r.frames,e=e.actualNode,jn(e)||Gr(t,"node",e)||t.push({node:e,include:[],exclude:[]}))}),1===this.include.length&&this.include[0].actualNode===document.documentElement&&(this.page=!0),(e=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))instanceof Error)throw e;Array.isArray(this.include)||(this.include=Array.from(this.include)),this.include.sort(Gn)},ei={};o(ei,{CssSelectorParser:function(){return Du.CssSelectorParser},doT:function(){return wu.default},emojiRegexText:function(){return xu.default},memoize:function(){return Eu.default}});var Du=c(m()),wu=c(We()),xu=c($e()),Eu=c(ze()),ti=c(Ge()),gl=c(Ye());c(Ke());"Promise"in window||ti.default.polyfill(),"Uint32Array"in window||(window.Uint32Array=gl.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 Au,Cu=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)},Fu={};function ku(e){return Fu.hasOwnProperty(e)}function Ru(e){return"string"==typeof e&&Fu[e]?Fu[e]:"function"==typeof e?e:Au}hl=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=Ku(r.split("-"),2),n=a[0],o=a[1],i=Ku(n.split(".").map(Number),3),l=i[0],s=i[1],u=i[2],c=Ku(axe.version.split("-"),2),a=c[0],n=c[1],i=Ku(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||ku(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(an).forEach(function(e){d[e]&&(an[e]=Qr(an[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)}};bl=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}})};var Tu=function(){vr.get("globalDocumentSet")&&(document=null),vr.get("globalWindowSet")&&(window=null),axe._memoizedFns.forEach(function(e){return e.clear()}),vr.clear(),axe._tree=void 0,axe._selectorData=void 0,axe._selectCache=void 0};var Nu=function(r,a,n,o){try{r=new vu(r),axe._tree=r.flatTree,axe._selectorData=cr(r.flatTree)}catch(e){return Tu(),o(e)}var e=jr(),i=axe._audit;a.performanceTimer&&ro.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&&ro.auditEnd();var t=Kr(e.map(function(e){return{results:e}}));r.initiator&&((t=i.after(t,a)).forEach(yo),t=t.map(Ht));try{n(t,Tu)}catch(e){Tu(),Qe(e)}}catch(e){Tu(),o(e)}}).catch(function(e){Tu(),o(e)})};function _u(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 Nu(o,i,function(e,t){n(e),t()},a);case"cleanup-plugin":return Cu(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",_u),Vr.subscribe("axe.ping",function(e,t,r){r({axe:!0})}));o=function(e){axe._audit=new bu(e)};function Ou(e){this._run=e.run,this._collect=e.collect,this._registry={},e.commands.forEach(function(e){axe._audit.registerCommand(e)})}Ou.prototype.run=function(){return this._run.apply(this,arguments)},Ou.prototype.collect=function(){return this._collect.apply(this,arguments)},Ou.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)},Ou.prototype.add=function(e){this._registry[e.id]=e};m=function(e){axe.plugins[e.id]=new Ou(e)};We=function(){var e=axe._audit;if(!e)throw new Error("No audit configured");e.resetRulesAndChecks(),Object.keys(an).forEach(function(e){an[e]=rn[e]})};$e=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 No(t));var a=Sn(e);if(!a)throw new Error("unknown rule `"+e+"`");return a=(a=Object.create(a,{excludeHidden:{value:!1}})).runSync({initiator:!0,include:[t]},r),yo(a),Ht(a),(a=Wt([a])).violations.forEach(function(e){return e.nodes.forEach(function(e){e.failureSummary=En(e)})}),Xu({},An(),a,{toolOptions:r})};var Su=function(){};function Pu(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"!==Lu(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"!==Lu(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||Su}}ze=function(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||(vr.set("globalDocumentSet",!0),document=e.ownerDocument),t||(vr.set("globalWindowSet",!0),window=document.defaultView)}var a,t=Pu(e,n,o);e=t.context,n=t.options,o=t.callback,n.reporter=n.reporter||axe._audit.reporter||"v1",n.performanceTimer&&axe.utils.performanceTimer.start();var i=Su,l=Su;if("function"==typeof Promise&&o===Su&&(a=new Promise(function(e,t){i=t,l=e})),axe._running){t="Axe is already running. Use `await axe.run()` to wait for the previous run to finish before starting a new run.";return o(t),i(t),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)}l(e)}n.performanceTimer&&axe.utils.performanceTimer.end();try{var a=Ru(n.reporter)(e,n,r);void 0!==a&&r(a)}catch(e){axe._running=!1,t(),o(e),i(e)}},function(e){axe._running=!1,o(e),i(e)}),a};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=wn(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={});e=kn(e,t);r(Xu({},An(),{toolOptions:t,violations:e.violations,passes:e.passes,incomplete:e.incomplete,inapplicable:e.inapplicable}))},c=function(e,t,r){"function"==typeof t&&(r=t,t={}),t.resultTypes=["violations"];e=kn(e,t);r(Xu({},An(),{toolOptions:t,violations:e.violations}))},Iu=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=Xu({},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 Xu({},e,{node:e.node.toJSON()})}))}return t}))},Ke=function(e,t,r){"function"==typeof t&&(r=t,t={}),Iu(e,t,function(e){var t=An();r({raw:e,env:t})})},ti=function(e,t,r){"function"==typeof t&&(r=t,t={});var a=kn(e,t),e=function(e){e.nodes.forEach(function(e){e.failureSummary=En(e)})};a.incomplete.forEach(e),a.violations.forEach(e),r(Xu({},An(),{toolOptions:t,violations:a.violations,passes:a.passes,incomplete:a.incomplete,inapplicable:a.inapplicable}))},gl=function(e,t,r){"function"==typeof t&&(r=t,t={});e=kn(e,t);r(Xu({},An(),{toolOptions:t,violations:e.violations,passes:e.passes,incomplete:e.incomplete,inapplicable:e.inapplicable}))};axe.constants=Je,axe.log=Qe,axe.AbstractVirtualNode=tt,axe.SerialVirtualNode=No,axe.VirtualNode=vn,axe._cache=vr,axe._thisWillBeDeletedDoNotUse=axe._thisWillBeDeletedDoNotUse||{},axe._thisWillBeDeletedDoNotUse.base={Audit:bu,CheckResult:tu,Check:ou,Context:vu,RuleResult:iu,Rule:uu,metadataFunctionMap:eu},axe.imports=ei,axe.cleanup=Cu,axe.configure=hl,axe.frameMessenger=function(e){Vr.updateMessenger(e)},axe.getRules=bl,axe._load=o,axe.plugins={},axe.registerPlugin=m,axe.hasReporter=ku,axe.getReporter=Ru,axe.addReporter=function(e,t,r){Fu[e]=t,r&&(Au=t)},axe.reset=We,axe._runRules=Nu,axe.runVirtualRule=$e,axe.run=ze,axe.setup=Ge,axe.teardown=Tu,axe.commons=Zo,axe.utils=rt,axe.addReporter("na",Ye),axe.addReporter("no-passes",c),axe.addReporter("rawEnv",Ke),axe.addReporter("raw",Iu),axe.addReporter("v1",ti),axe.addReporter("v2",gl,!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",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"],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:["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"],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:"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"],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"]',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"],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",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, 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:["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,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",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",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.5a82425
4
+ version: 4.2.0.pre.6beb600
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-06-22 00:00:00.000000000 Z
11
+ date: 2021-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dumb_delegator