Yasr – Yet Another Stars Rating - Version 2.5.7

Version Description

  • TWEAK: Rankings have been rewritten: now are build in REACT, this will allow much more flexibility
Download this release

Release Info

Developer Dudo
Plugin Icon 128x128 Yasr – Yet Another Stars Rating
Version 2.5.7
Comparing to
See all releases

Code changes from version 2.5.6 to 2.5.7

admin/editor/yasr-editor-functions.php CHANGED
@@ -402,11 +402,9 @@ function wp_ajax_yasr_create_shortcode_callback() {
402
  <script type="text/javascript">
403
 
404
  jQuery(document).ready(function () {
405
-
406
  var nMultiSet = <?php echo(json_encode("$n_multi_set")); ?>
407
 
408
- yasrShortcodeCreator(nMultiSet);
409
-
410
 
411
  });
412
 
402
  <script type="text/javascript">
403
 
404
  jQuery(document).ready(function () {
 
405
  var nMultiSet = <?php echo(json_encode("$n_multi_set")); ?>
406
 
407
+ yasrShortcodeCreator(nMultiSet);
 
408
 
409
  });
410
 
admin/settings/aspect_style/yasr-settings-functions-style.php CHANGED
@@ -73,8 +73,10 @@ function yasr_style_options_init() {
73
 
74
  }
75
 
 
 
 
76
  function yasr_style_section_callback() {
77
- return;
78
  }
79
 
80
 
73
 
74
  }
75
 
76
+ /**
77
+ * @return void
78
+ */
79
  function yasr_style_section_callback() {
 
80
  }
81
 
82
 
admin/settings/classes/YasrImportRatingPlugins.php CHANGED
@@ -58,7 +58,7 @@ class YasrImportRatingPlugins {
58
  }
59
 
60
  //Search for Multi Rating
61
- function yasr_search_mr() {
62
  //only check for active plugin, since import from table will be not used
63
  if (is_plugin_active('multi-rating/multi-rating.php')) {
64
  return true;
@@ -200,7 +200,7 @@ class YasrImportRatingPlugins {
200
  }
201
 
202
  //Import KK Star Rating Data
203
- function yasr_return_kksr_data() {
204
  global $wpdb;
205
 
206
  $logs = $wpdb->get_results(
58
  }
59
 
60
  //Search for Multi Rating
61
+ public function yasr_search_mr() {
62
  //only check for active plugin, since import from table will be not used
63
  if (is_plugin_active('multi-rating/multi-rating.php')) {
64
  return true;
200
  }
201
 
202
  //Import KK Star Rating Data
203
+ public function yasr_return_kksr_data() {
204
  global $wpdb;
205
 
206
  $logs = $wpdb->get_results(
admin/settings/classes/YasrSettings.php CHANGED
@@ -215,7 +215,6 @@ class YasrSettings {
215
  * @return void
216
  */
217
  public function sectionCallback() {
218
- return;
219
  }
220
 
221
  /**
215
  * @return void
216
  */
217
  public function sectionCallback() {
 
218
  }
219
 
220
  /**
admin/settings/classes/YasrStats.php CHANGED
@@ -29,7 +29,7 @@ class YasrStats extends YASR_WP_List_Table {
29
 
30
  private $active_tab;
31
 
32
- function __construct($active_tab) {
33
  parent::__construct();
34
  $this->active_tab = $active_tab;
35
  }
@@ -219,7 +219,7 @@ class YasrStats extends YASR_WP_List_Table {
219
  case 'ip':
220
  return $item[$column_name];
221
  }
222
- return;
223
  }
224
 
225
  /**
29
 
30
  private $active_tab;
31
 
32
+ public function __construct($active_tab) {
33
  parent::__construct();
34
  $this->active_tab = $active_tab;
35
  }
219
  case 'ip':
220
  return $item[$column_name];
221
  }
222
+
223
  }
224
 
225
  /**
includes/classes/YasrRankingData.php CHANGED
@@ -42,9 +42,9 @@ class YasrRankingData {
42
 
43
  //do a custom query here
44
  //must returns rating and post_id
45
- $query = apply_filters('yasr_rankings_query_ov', $sql_params);
46
 
47
- //if query === $sql_params means that filters doesn't exists
48
  if($query === $sql_params) {
49
  //default query
50
  $query = "SELECT pm.meta_value AS rating,
@@ -91,14 +91,14 @@ class YasrRankingData {
91
  $sql_params = apply_filters('yasr_set_query_attributes', $attributes);
92
 
93
  //This filter is used to filter the query
94
- $query = apply_filters('yasr_rankings_query_vv', $sql_params, $ranking);
95
 
96
  //if no custom query is hooked
97
  if($query === $sql_params) {
98
 
99
  $common_query = "SELECT post_id,
100
  COUNT(post_id) AS number_of_votes,
101
- (SUM(vote) / COUNT(post_id)) AS rating
102
  FROM " . YASR_LOG_TABLE . ",
103
  $wpdb->posts AS p
104
  WHERE post_id = p.ID
42
 
43
  //do a custom query here
44
  //must returns rating and post_id
45
+ $query = apply_filters('yasr_rankings_query_ov', $sql_params);
46
 
47
+ //if query === $sql_params (both are falses) means that filters doesn't exists
48
  if($query === $sql_params) {
49
  //default query
50
  $query = "SELECT pm.meta_value AS rating,
91
  $sql_params = apply_filters('yasr_set_query_attributes', $attributes);
92
 
93
  //This filter is used to filter the query
94
+ $query = apply_filters('yasr_rankings_query_vv', $sql_params, $ranking);
95
 
96
  //if no custom query is hooked
97
  if($query === $sql_params) {
98
 
99
  $common_query = "SELECT post_id,
100
  COUNT(post_id) AS number_of_votes,
101
+ ROUND(SUM(vote) / COUNT(post_id),1) AS rating
102
  FROM " . YASR_LOG_TABLE . ",
103
  $wpdb->posts AS p
104
  WHERE post_id = p.ID
includes/css/yasr-table-dark.css CHANGED
@@ -25,7 +25,7 @@
25
  }
26
 
27
  /*** Chart ***/
28
- .yasr-table-chart {
29
  color: white;
30
  border-spacing: 1px;
31
  margin-top: 10px;
@@ -33,16 +33,16 @@
33
  width: 100%;
34
  }
35
 
36
- .yasr-table-chart td {
37
  padding: 8px;
38
  width: 50%;
39
  vertical-align: middle;
40
  }
41
 
42
- .yasr-table-chart tr:nth-child(odd) {
43
  background: #292929;
44
  }
45
- /* Define the background color for all the EVEN background rows */
46
- .yasr-table-chart tr:nth-child(even) {
47
  background: #161616;
48
  }
25
  }
26
 
27
  /*** Chart ***/
28
+ .yasr-rankings {
29
  color: white;
30
  border-spacing: 1px;
31
  margin-top: 10px;
33
  width: 100%;
34
  }
35
 
36
+ .yasr-rankings td {
37
  padding: 8px;
38
  width: 50%;
39
  vertical-align: middle;
40
  }
41
 
42
+ .yasr-rankings-td-colored {
43
  background: #292929;
44
  }
45
+ /* Define the background color for all the EVEN background rows */
46
+ .yasr-rankings-td-white {
47
  background: #161616;
48
  }
includes/css/yasr-table-light.css CHANGED
@@ -25,27 +25,28 @@
25
  }
26
 
27
  /*** Charts ***/
28
- .yasr-table-chart {
29
  border-spacing: 1px;
30
  margin-top: 10px;
31
  margin-bottom: 24px;
32
  width: 100%;
33
  }
34
 
35
- .yasr-table-chart td {
36
  padding: 8px;
37
  width: 50%;
38
  vertical-align: middle;
39
  }
40
 
41
- .yasr-table-chart tr:nth-child(odd) {
42
- background: #FFFFec;
43
  }
44
- /* Define the background color for all the EVEN background rows */
45
- .yasr-table-chart tr:nth-child(even) {
46
- background: #FFFFFF;
47
  }
48
 
 
49
  /* Pro rules */
50
 
51
  .yasr-pro-overall-rating-chart-text {
25
  }
26
 
27
  /*** Charts ***/
28
+ .yasr-rankings {
29
  border-spacing: 1px;
30
  margin-top: 10px;
31
  margin-bottom: 24px;
32
  width: 100%;
33
  }
34
 
35
+ .yasr-rankings td {
36
  padding: 8px;
37
  width: 50%;
38
  vertical-align: middle;
39
  }
40
 
41
+ .yasr-rankings-td-colored {
42
+ background: #ffffec;
43
  }
44
+
45
+ .yasr-rankings-td-white {
46
+ background: #ffffff;
47
  }
48
 
49
+
50
  /* Pro rules */
51
 
52
  .yasr-pro-overall-rating-chart-text {
includes/css/yasr.css CHANGED
@@ -5,7 +5,6 @@
5
  background-position: 0 0;
6
  background-repeat: repeat-x;
7
  vertical-align: bottom;
8
- cursor: pointer;
9
  }
10
 
11
  .yasr-star-rating[data-title]:hover:after {
@@ -99,6 +98,9 @@
99
  .yasr-highest-rated-text{
100
  display: block;
101
  }
 
 
 
102
 
103
  .yasr-loader-multiset-visitor {
104
  display: none;
5
  background-position: 0 0;
6
  background-repeat: repeat-x;
7
  vertical-align: bottom;
 
8
  }
9
 
10
  .yasr-star-rating[data-title]:hover:after {
98
  .yasr-highest-rated-text{
99
  display: block;
100
  }
101
+ .yasr-most-rated-text{
102
+ display: block;
103
+ }
104
 
105
  .yasr-loader-multiset-visitor {
106
  display: none;
includes/js/rater-js.js CHANGED
@@ -52,6 +52,11 @@
52
  disableText = "{rating}/{maxRating}";
53
  }
54
 
 
 
 
 
 
55
  if (typeof options.ratingText !== "undefined") {
56
  ratingText = options.ratingText;
57
  } else {
52
  disableText = "{rating}/{maxRating}";
53
  }
54
 
55
+ //if stars are not read only, add css cursors property to "pointer"
56
+ if(!disabled) {
57
+ elem.style.cursor = 'pointer';
58
+ }
59
+
60
  if (typeof options.ratingText !== "undefined") {
61
  ratingText = options.ratingText;
62
  } else {
includes/js/src/ranking.js ADDED
@@ -0,0 +1,550 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import React from "react";
2
+ import ReactDOM from "react-dom";
3
+ import {decodeEntities} from "@wordpress/html-entities";
4
+ import {v4 as uuidv4} from 'uuid';
5
+
6
+
7
+ const { __ } = wp.i18n; // Import __() from wp.i18n
8
+
9
+ /*
10
+ * Print the stars using RaterJs
11
+ */
12
+
13
+ function YasrCallRaterJs (props) {
14
+ const id = 'yasr-ranking-element-' + uuidv4();
15
+ const size = window[props.tableId].size;
16
+
17
+ return (
18
+ <div id={id} ref={() =>
19
+ raterJs({
20
+ starSize: size,
21
+ step: 0.1,
22
+ showToolTip: false,
23
+ rating: props.rating,
24
+ readOnly: true,
25
+ element: document.getElementById(id),
26
+ })
27
+ }>
28
+ </div>
29
+ );
30
+ }
31
+
32
+ /*
33
+ *
34
+ * Print text after the stars
35
+ * if number of votes is defined, means that is the
36
+ * [yasr_most_or_highest_rated_posts] shortcode
37
+ *
38
+ * @author Dario Curvino <@dudo>
39
+ * @since 2.5.7
40
+ *
41
+ * @param props
42
+ * @param {Object} props.rating - Object with post attributes
43
+ *
44
+ */
45
+
46
+ function YasrTextAfterStars (props) {
47
+ //If number_of_votes exists
48
+ if(typeof props.post.number_of_votes !== "undefined") {
49
+ return (
50
+ <span className='yasr-most-rated-text'>
51
+ [{__('Total:', 'yet-another-stars-rating')} {props.post.number_of_votes}
52
+ &nbsp;&nbsp;
53
+ {__('Average:', 'yet-another-stars-rating')} {props.post.rating}]
54
+ </span>
55
+ )
56
+ }
57
+
58
+ const text = window[props.tableId].custom_text;
59
+
60
+ return (
61
+ <span className='yasr-highest-rated-text'>
62
+ {text} {props.post.rating}
63
+ </span>
64
+ );
65
+ }
66
+
67
+ /**
68
+ * Left column for rankings table
69
+ *
70
+ * @author Dario Curvino <@dudo>
71
+ * @since 2.5.7
72
+ *
73
+ * @param props
74
+ * @param {string} props.colClass - Column class name
75
+ * @param {Object} props.post - Object with post attributes
76
+ *
77
+ * @return {JSX.Element} - html <td> element
78
+ */
79
+ function YasrRankingTableLeftColumn (props) {
80
+ return (
81
+ <td className={props.colClass}>
82
+ <a href={props.post.link}>{decodeEntities(props.post.title)}</a>
83
+ </td>
84
+ )
85
+ }
86
+
87
+ /**
88
+ * Right column for rankings table
89
+ *
90
+ * @author Dario Curvino <@dudo>
91
+ * @since 2.5.7
92
+ *
93
+ * @param props
94
+ * @param {string} props.colClass - Column class name
95
+ * @param {Object} props.post - Object with post attributes
96
+ *
97
+ * @return {JSX.Element} - html <td> element
98
+ */
99
+ function YasrRankingTableRightColumn (props) {
100
+
101
+ const txtPosition = window[props.tableId].text_position;
102
+
103
+ if (txtPosition === 'before') {
104
+ return (
105
+ <td className={props.colClass}>
106
+ <YasrTextAfterStars post={props.post} tableId={props.tableId}/>
107
+ <YasrCallRaterJs rating={props.post.rating} tableId={props.tableId}/>
108
+ </td>
109
+ )
110
+ }
111
+
112
+ return (
113
+ <td className={props.colClass}>
114
+ <YasrCallRaterJs rating={props.post.rating} tableId={props.tableId}/>
115
+ <YasrTextAfterStars post={props.post} tableId={props.tableId}/>
116
+ </td>
117
+ )
118
+ }
119
+
120
+ /**
121
+ * Print row for Ranking Table
122
+ *
123
+ * @author Dario Curvino <@dudo>
124
+ * @since 2.5.7
125
+ *
126
+ * @param props
127
+ * @param {string} props.source - Source of data
128
+ * @param {Object} props.post - Object with post attributes
129
+ *
130
+ * @return {JSX.Element} - html <tr> element
131
+ */
132
+ function YasrRankingTableRow(props) {
133
+ let leftClass = '';
134
+ let rightClass = '';
135
+
136
+ if (props.source === 'overall_rating') {
137
+ leftClass = 'yasr-top-10-overall-left';
138
+ rightClass = 'yasr-top-10-overall-right'
139
+ }
140
+ else if (props.source === 'visitor_votes') {
141
+ leftClass = 'yasr-top-10-most-highest-left';
142
+ rightClass = 'yasr-top-10-most-highest-right'
143
+ }
144
+
145
+ return (
146
+ <tr className={props.trClass}>
147
+ <YasrRankingTableLeftColumn colClass={leftClass} post={props.post} />
148
+ <YasrRankingTableRightColumn colClass={rightClass} post={props.post} tableId={props.tableId}/>
149
+ </tr>
150
+ )
151
+ }
152
+
153
+ /**
154
+ * Loop the data array and return the Tbody
155
+ *
156
+ * @author Dario Curvino <@dudo>
157
+ * @since 2.5.7
158
+ *
159
+ * @param props
160
+ * @return {JSX.Element}
161
+ */
162
+ function YasrRankingTableRowMap(props) {
163
+ return (
164
+ <tbody id={props.tBodyId} style={{display: props.show}}>
165
+ {
166
+ /*Loop the array, and set the style*/
167
+ }
168
+ {props.data.map(function (post, i) {
169
+ let trClass = 'yasr-rankings-td-colored';
170
+ if(props.source === 'overall_rating') {
171
+ trClass = 'yasr-rankings-td-white';
172
+ }
173
+ if (i % 2 === 0) {
174
+ trClass = 'yasr-rankings-td-white';
175
+ if(props.source === 'overall_rating') {
176
+ trClass = 'yasr-rankings-td-colored';
177
+ }
178
+ }
179
+
180
+ return(
181
+ <YasrRankingTableRow
182
+ key={post.post_id}
183
+ source={props.source}
184
+ tableId={props.tableId}
185
+ post={post}
186
+ trClass={trClass}
187
+ />
188
+ )
189
+ })
190
+ }
191
+ </tbody>
192
+ )
193
+ }
194
+
195
+ /**
196
+ * @author Dario Curvino <@dudo>
197
+ * @since 2.5.6
198
+ */
199
+ class YasrRanking extends React.Component {
200
+
201
+ constructor(props) {
202
+ super(props);
203
+ this.state = {
204
+ error: null,
205
+ isLoaded: false,
206
+ data: [],
207
+ tableId: props.tableId,
208
+ source: props.source,
209
+ queryParams: window[props.tableId].params
210
+ };
211
+ }
212
+
213
+ /**
214
+ * Get data here.
215
+ * Data can come from:
216
+ * rest API if ajax is enabled and no errors are found
217
+ * from a global variable (created with wp_localize_script) retrived from the window object
218
+ * if ajax is disabled or error with rest response are found
219
+ */
220
+ componentDidMount() {
221
+ let data = {};
222
+
223
+ //If ajax is disabled, use global value
224
+ if(yasrCommonData.ajaxEnabled !== 'yes') {
225
+ console.info(__('Ajax Disabled, getting data from source', 'yet-another-stars-rating'));
226
+ this.setState({
227
+ isLoaded: true,
228
+ data: window[this.state.tableId]
229
+ });
230
+ }
231
+ else {
232
+ if (this.state.source !== false) {
233
+ const urlYasrRankingApi = this.returnRestUrl();
234
+ Promise.all(urlYasrRankingApi.map((url) =>
235
+ fetch(url)
236
+ .then(response => {
237
+ if (response.ok === true) {
238
+ return response.json();
239
+ } else {
240
+ console.info(__('Ajax Call Failed. Getting data from source'))
241
+ return 'KO';
242
+ }
243
+ })
244
+ /**
245
+ * If response is not ok, get data from global var
246
+ */
247
+ .then(response => {
248
+ if (response === 'KO') {
249
+ data = window[this.state.tableId];
250
+ } else {
251
+ if(response.source === 'overall_rating') {
252
+ data = response;
253
+ }
254
+ //if data is from visitor votes, create an array like this
255
+ //data[most]
256
+ //data[highest]
257
+ if(response.source === 'visitor_votes') {
258
+ data[response.show] = response.data_vv
259
+ }
260
+ }
261
+ })
262
+ .catch((error) => {
263
+ data = window[this.state.tableId];
264
+ console.info(__(error));
265
+ })
266
+ ))
267
+ //At the end of promise all, data can be from rest api or global var
268
+ .then(r => {
269
+ this.setState({
270
+ isLoaded: true,
271
+ data: data
272
+ });
273
+ })
274
+ .catch((error) => {
275
+ console.info(__(error));
276
+ this.setState({
277
+ isLoaded: true,
278
+ data: data
279
+ });
280
+ });
281
+
282
+ } else {
283
+ this.setState({
284
+ error: __('Invalid Data Source', 'yet-another-stars-rating')
285
+ });
286
+ }
287
+ }
288
+ }
289
+
290
+ /*
291
+ * Returns an array with the REST API urls
292
+ *
293
+ * @author Dario Curvino <@dudo>
294
+ * @since 2.5.7
295
+ *
296
+ * @return array of urls
297
+ */
298
+ returnRestUrl(){
299
+ let queryParams = ((this.state.queryParams !== '') ? this.state.queryParams : '');
300
+ let dataSource = this.state.source;
301
+ let urlYasrRankingApi = false;
302
+ const yasrRankingsApiPath = 'yet-another-stars-rating/v1/yasr-rankings/';
303
+
304
+ if (queryParams !== '') {
305
+ queryParams = '&' + queryParams;
306
+ }
307
+
308
+ if(dataSource === 'overall_rating') {
309
+ urlYasrRankingApi = [yasrCommonData.restEndpoint + yasrRankingsApiPath + '?source=' + dataSource + queryParams];
310
+ }
311
+ if(dataSource === 'visitor_votes') {
312
+ let requiredMost = '';
313
+ let requiredHighest = '';
314
+ if(window[this.state.tableId].required_votes !== '') {
315
+ requiredMost = '&required_votes=' + window[this.state.tableId].required_votes.most;
316
+ requiredHighest = '&required_votes=' + window[this.state.tableId].required_votes.highest;
317
+ }
318
+ urlYasrRankingApi = [
319
+ yasrCommonData.restEndpoint + yasrRankingsApiPath + '?show=most&source=' + dataSource + queryParams + requiredMost,
320
+ yasrCommonData.restEndpoint + yasrRankingsApiPath + '?show=highest&source=' + dataSource + queryParams + requiredHighest
321
+ ];
322
+
323
+ }
324
+
325
+ return urlYasrRankingApi;
326
+ }
327
+
328
+ /**
329
+ * Print Thead Ranking Table Head
330
+ *
331
+ * @author Dario Curvino <@dudo>
332
+ * @since 2.5.7
333
+ *
334
+ * @return {JSX.Element} - html <thead> element
335
+ */
336
+ rankingTableHead(source) {
337
+ const tableId = this.state.tableId;
338
+ const idLinkMost = 'link-most-rated-posts-'+tableId;
339
+ const idLinkHighest = 'link-highest-rated-posts-'+tableId;
340
+
341
+ if(source === 'visitor_votes') {
342
+ const defaultView = window[this.state.tableId].view;
343
+ let containerLink = <span>
344
+ <span id={idLinkMost}>
345
+ {__('Most Rated', 'yet-another-stars-rating')}
346
+ </span>&nbsp;|&nbsp;
347
+ <a href='#' id={idLinkHighest} onClick={this.switchTBody.bind(this)}>
348
+ {__('Highest Rated', 'yet-another-stars-rating')}
349
+ </a>
350
+ </span>
351
+
352
+ if(defaultView === 'highest') {
353
+ containerLink = <span>
354
+ <span id={idLinkHighest} >
355
+ {__('Highest Rated', 'yet-another-stars-rating')}
356
+ </span>&nbsp;|&nbsp;
357
+ <a href='#' id={idLinkMost} onClick={this.switchTBody.bind(this)}>
358
+ {__('Most Rated', 'yet-another-stars-rating')}
359
+ </a>
360
+ </span>
361
+ }
362
+
363
+ return (
364
+ <thead>
365
+ <tr className='yasr-rankings-td-colored yasr-rankings-heading'>
366
+ <th>Post</th>
367
+ <th>
368
+ {__('Order By', 'yet-another-stars-rating-pro')}:&nbsp;&nbsp;
369
+ {containerLink}
370
+ </th>
371
+ </tr>
372
+ </thead>
373
+ )
374
+ }
375
+
376
+ return (<></>)
377
+ }
378
+
379
+ /**
380
+ * Change style attribute for assigned tbody
381
+ *
382
+ * @author Dario Curvino <@dudo>
383
+ * @since 2.5.7
384
+ *
385
+ */
386
+ switchTBody(event) {
387
+ event.preventDefault();
388
+ const linkId = event.target.id;
389
+
390
+ const tableId = this.state.tableId;
391
+ const idLinkMost = 'link-most-rated-posts-'+tableId;
392
+ const idLinkHighest = 'link-highest-rated-posts-'+tableId;
393
+ const bodyIdMost = 'most-rated-posts-'+tableId;
394
+ const bodyIdHighest = 'highest-rated-posts-'+tableId;
395
+
396
+ //change html from a to span and vice versa
397
+ //https://stackoverflow.com/a/13071899/3472877
398
+ let anchor = document.getElementById(linkId);
399
+ let span = document.createElement("span");
400
+
401
+ //Copy innerhtml and id into span element
402
+ span.innerHTML = anchor.innerHTML;
403
+ span.id = anchor.id;
404
+
405
+ //replace <a> with <span>
406
+ anchor.parentNode.replaceChild(span,anchor);
407
+
408
+ if(linkId === idLinkMost) {
409
+ //Dispaly body for Most
410
+ document.getElementById(bodyIdHighest).style.display = 'none';
411
+ document.getElementById(bodyIdMost).style.display = '';
412
+
413
+ //Here I've to replace <span> with <a>
414
+ span = document.getElementById(idLinkHighest);
415
+ anchor.innerHTML = span.innerHTML;
416
+ anchor.id = span.id;
417
+ span.parentNode.replaceChild(anchor,span);
418
+ }
419
+ if(linkId === idLinkHighest) {
420
+ //Dispaly body for Highest
421
+ document.getElementById(bodyIdMost).style.display = 'none';
422
+ document.getElementById(bodyIdHighest).style.display = '';
423
+
424
+ //Here I've to replace <span> with <a>
425
+ span = document.getElementById(idLinkMost);
426
+ anchor.innerHTML = span.innerHTML;
427
+ anchor.id = span.id;
428
+ span.parentNode.replaceChild(anchor,span);
429
+ }
430
+ }
431
+
432
+ /**
433
+ * Print Tbody Ranking Table
434
+ *
435
+ * @author Dario Curvino <@dudo>
436
+ * @since 2.5.6
437
+ *
438
+ * @return {JSX.Element} - html <tbody> element
439
+ */
440
+ rankingTableBody() {
441
+ const {data, source} = this.state;
442
+
443
+ if(source === 'overall_rating') {
444
+ return (
445
+ <YasrRankingTableRowMap
446
+ data={data.data_overall}
447
+ tableId={this.state.tableId}
448
+ tBodyId={'overall_'+this.state.tableId}
449
+ show={'table-row-group'}
450
+ source={source}
451
+ />
452
+ )
453
+ }
454
+
455
+ if(source === 'visitor_votes') {
456
+ const vvMost = data.most;
457
+ const vvHighest = data.highest;
458
+ const defaultView = window[this.state.tableId].view
459
+ const display = 'table-row-group';
460
+ const hide = 'none';
461
+
462
+ let styleMost = display;
463
+ let styleHighest = hide;
464
+
465
+ if(defaultView === 'highest') {
466
+ styleMost = hide;
467
+ styleHighest = display;
468
+ }
469
+
470
+ return (
471
+ <>
472
+ {this.rankingTableHead(source)}
473
+ <YasrRankingTableRowMap
474
+ data={vvMost}
475
+ tableId={this.state.tableId}
476
+ tBodyId={'most-rated-posts-'+this.state.tableId}
477
+ show={styleMost}
478
+ source={source}
479
+ />
480
+ <YasrRankingTableRowMap
481
+ data={vvHighest}
482
+ tableId={this.state.tableId}
483
+ tBodyId={'highest-rated-posts-'+this.state.tableId}
484
+ show={styleHighest}
485
+ source={source}
486
+ />
487
+ </>
488
+ )
489
+ }
490
+ }
491
+
492
+ /**
493
+ * Render rankings, error should never occour here
494
+ */
495
+ render() {
496
+ const {error, isLoaded} = this.state;
497
+ if(error) {
498
+ return (
499
+ <tbody>
500
+ <tr>
501
+ <td>
502
+ {console.log(error)}
503
+ Error
504
+ </td>
505
+ </tr>
506
+ </tbody>
507
+ )
508
+ } else {
509
+ if (isLoaded === false) {
510
+ return (
511
+ <tbody>
512
+ <tr>
513
+ <td>
514
+ {__('Loading Charts', 'yet-another-stars-rating')}
515
+ </td>
516
+ </tr>
517
+ </tbody>
518
+ )
519
+ } else {
520
+ return (
521
+ <>
522
+ {this.rankingTableBody()}
523
+ </>
524
+ )
525
+ }
526
+ }
527
+ }
528
+ }
529
+
530
+ export function yasrDrawRankings () {
531
+
532
+ //check if there is some shortcode with class yasr-table-chart
533
+ const yasrRankingsInDom = document.getElementsByClassName('yasr-rankings');
534
+
535
+ if (yasrRankingsInDom.length > 0) {
536
+ for (let i = 0; i < yasrRankingsInDom.length; i++) {
537
+ const tableId = yasrRankingsInDom.item(i).id;
538
+ const source = window[tableId].source;
539
+ const rankingTable = document.getElementById(tableId);
540
+
541
+ let dataSource = false
542
+ if(source === 'overall_rating' || source === 'visitor_votes') {
543
+ dataSource = source;
544
+ }
545
+
546
+ ReactDOM.render(<YasrRanking source={dataSource} tableId={tableId}/>, rankingTable);
547
+ }
548
+ }
549
+
550
+ }
includes/js/src/yasr-front.js CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  const { __ } = wp.i18n; // Import __() from wp.i18n
2
 
3
  /*** Constant used by yasr
@@ -6,80 +9,52 @@ yasrCommonData (postid, ajaxurl, loggedUser, visitorStatsEnabled, loaderHtml, to
6
 
7
  ***/
8
 
9
- /****** Do this actions on document load ******/
10
  document.addEventListener('DOMContentLoaded', function(event) {
11
 
12
- //At pageload, check if there is some shortcode with class yasr-rater-stars
13
- var yasrRaterInDom = document.getElementsByClassName('yasr-rater-stars');
14
- //If so, call the function to set the rating
15
- if (yasrRaterInDom.length > 0) {
16
-
17
- //load this on everypageload
18
- yasrSetRatingOnLoad(yasrRaterInDom);
19
 
20
- }
 
21
 
22
- //check if shortcode yasr_visitor_votes is used
23
- var yasrRaterVVInDom = document.getElementsByClassName('yasr-rater-stars-visitor-votes');
24
 
25
- if (yasrRaterVVInDom.length > 0) {
26
- yasrVisitorVotesFront(yasrRaterVVInDom);
27
- }
28
 
29
- var yasrMultiSetVisitorInDom = document.getElementsByClassName('yasr-multiset-visitors-rater');
30
 
31
- if (yasrMultiSetVisitorInDom.length > 0) {
32
- yasrRaterVisitorsMultiSet(yasrMultiSetVisitorInDom)
33
- }
 
 
 
 
 
34
 
 
 
 
 
35
 
36
- //Check to draw tooltips
37
- if (yasrRaterVVInDom) {
38
- if (yasrCommonData.visitorStatsEnabled === 'yes') {
39
- var yasrStatsInDom = document.getElementsByClassName('yasr-dashicons-visitor-stats');
40
- if (yasrStatsInDom) {
41
- yasrDrawTipsProgress (yasrStatsInDom);
 
42
  }
43
  }
44
- }
45
-
46
-
47
- //check if yasr-highest-rated-posts exists (from yasr_most_or_highest_rated_posts shortcode)
48
- if (document.getElementById('yasr-highest-rated-posts') !== null) {
49
-
50
- //By default, hide the highest rated chart
51
- document.getElementById('yasr-highest-rated-posts').style.display = 'none';
52
-
53
- //This work on top10 ranking chart, show the highest rated and hide most rated
54
- document.getElementById("link-yasr-highest-rated-posts").addEventListener("click",
55
- function (e) {
56
- document.getElementById('yasr-most-rated-posts').style.display = 'none';
57
- document.getElementById('yasr-highest-rated-posts').style.display = '';
58
-
59
- e.preventDefault();
60
- },
61
- false
62
- );
63
-
64
-
65
- //Vice versa
66
- document.getElementById("link-yasr-most-rated-posts").addEventListener("click",
67
- function (e) {
68
- document.getElementById('yasr-highest-rated-posts').style.display = 'none';
69
- document.getElementById('yasr-most-rated-posts').style.display = '';
70
-
71
- e.preventDefault();
72
- },
73
- false
74
- );
75
 
 
 
 
76
  }
77
-
78
- });
79
-
80
-
81
- /****** End Yasr shortcode page ******/
82
-
83
 
84
  /****** Tooltip function ******/
85
 
@@ -154,13 +129,12 @@ function yasrSetRaterValue (starSize, htmlId) {
154
 
155
  }
156
 
157
- function yasrSetRatingOnLoad (yasrRatingsInDom) {
158
 
159
  //Check in the object
160
- for (var i = 0; i < yasrRatingsInDom.length; i++) {
161
- var htmlId = yasrRatingsInDom.item(i).id;
162
- var starSize = yasrRatingsInDom.item(i).getAttribute('data-rater-starsize');
163
-
164
  yasrSetRaterValue(starSize, htmlId);
165
  }
166
 
@@ -387,7 +361,6 @@ function yasrRaterVisitorsMultiSet (yasrMultiSetVisitorInDom) {
387
 
388
  } //End function
389
 
390
-
391
  function yasrTrueFalseStringConvertion(string) {
392
 
393
  if (typeof string === 'undefined' || string === null || string === '') {
1
+ import React from "react";
2
+ import {yasrDrawRankings} from "./ranking";
3
+
4
  const { __ } = wp.i18n; // Import __() from wp.i18n
5
 
6
  /*** Constant used by yasr
9
 
10
  ***/
11
 
12
+ /****** Do these actions on document load ******/
13
  document.addEventListener('DOMContentLoaded', function(event) {
14
 
15
+ //Search and set all div with class yasr-rater-stars
16
+ yasrSearchStarsDom('yasr-rater-stars');
 
 
 
 
 
17
 
18
+ //Search and set all div with class yasr-rater-stars-vv
19
+ yasrSearchStarsDom('yasr-rater-stars-vv');
20
 
21
+ //Search and set all div with class yasr-multiset-visitors-rater
22
+ yasrSearchStarsDom('yasr-multiset-visitors-rater');
23
 
24
+ //Drow Rankings
25
+ yasrDrawRankings();
 
26
 
27
+ });
28
 
29
+ /**
30
+ * Search for divs with defined classname
31
+ */
32
+ export function yasrSearchStarsDom (starsClass) {
33
+ //At pageload, check if there is some shortcode with class yasr-rater-stars
34
+ const yasrRaterInDom = document.getElementsByClassName(starsClass);
35
+ //If so, call the function to set the rating
36
+ if (yasrRaterInDom.length > 0) {
37
 
38
+ //stars class for most shortcodes
39
+ if(starsClass === 'yasr-rater-stars' || starsClass === 'yasr-ranking-stars') {
40
+ yasrSetRating(yasrRaterInDom);
41
+ }
42
 
43
+ if(starsClass === 'yasr-rater-stars-vv') {
44
+ yasrVisitorVotesFront(yasrRaterInDom);
45
+ if (yasrCommonData.visitorStatsEnabled === 'yes') {
46
+ let yasrStatsInDom = document.getElementsByClassName('yasr-dashicons-visitor-stats');
47
+ if (yasrStatsInDom) {
48
+ yasrDrawTipsProgress (yasrStatsInDom);
49
+ }
50
  }
51
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ if (starsClass === 'yasr-multiset-visitors-rater') {
54
+ yasrRaterVisitorsMultiSet(yasrRaterInDom)
55
+ }
56
  }
57
+ }
 
 
 
 
 
58
 
59
  /****** Tooltip function ******/
60
 
129
 
130
  }
131
 
132
+ function yasrSetRating (yasrRatingsInDom) {
133
 
134
  //Check in the object
135
+ for (let i = 0; i < yasrRatingsInDom.length; i++) {
136
+ const htmlId = yasrRatingsInDom.item(i).id;
137
+ const starSize = yasrRatingsInDom.item(i).getAttribute('data-rater-starsize');
 
138
  yasrSetRaterValue(starSize, htmlId);
139
  }
140
 
361
 
362
  } //End function
363
 
 
364
  function yasrTrueFalseStringConvertion(string) {
365
 
366
  if (typeof string === 'undefined' || string === null || string === '') {
includes/js/yasr-front.js CHANGED
@@ -1 +1,30 @@
1
- !function(t){var e={};function r(a){if(e[a])return e[a].exports;var n=e[a]={i:a,l:!1,exports:{}};return t[a].call(n.exports,n,n.exports,r),n.l=!0,n.exports}r.m=t,r.c=e,r.d=function(t,e,a){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(r.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)r.d(a,n,function(e){return t[e]}.bind(null,n));return a},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=0)}([function(t,e,r){t.exports=r(1)},function(t,e){var r=wp.i18n.__;function a(t,e){t=parseInt(t),raterJs({starSize:t,step:.1,showToolTip:!1,readOnly:!0,element:document.getElementById(e)})}function n(t,e,r,a,n,o,i,d,u){e=parseFloat(e),a=s(a),raterJs({starSize:t,rating:e,step:1,showToolTip:!1,readOnly:a,element:document.getElementById(n),rateCallback:function(t,e){document.getElementById(u).innerHTML=yasrCommonData.loaderHtml;var a={action:"yasr_send_visitor_rating",rating:t,post_id:r,nonce_visitor:i,is_singular:d};this.setRating(t),this.disable(),jQuery.post(yasrCommonData.ajaxurl,a,(function(t){t=JSON.parse(t),document.getElementById(u).innerHTML=t})),e()}})}function s(t){return null!=t&&""!==t||(t=!0),"true"!==t&&"1"!==t||(t=!0),"false"!==t&&"0"!==t||(t=!1),t}document.addEventListener("DOMContentLoaded",(function(t){var e=document.getElementsByClassName("yasr-rater-stars");e.length>0&&function(t){for(var e=0;e<t.length;e++){var r=t.item(e).id;a(t.item(e).getAttribute("data-rater-starsize"),r)}}(e);var o=document.getElementsByClassName("yasr-rater-stars-visitor-votes");o.length>0&&function(t){for(var e=0;e<t.length;e++)!function(e){var a=t.item(e).getAttribute("data-rating"),o=t.item(e).getAttribute("data-readonly-attribute"),i=t.item(e).getAttribute("data-rater-readonly");null===o&&(o=!1),o=s(o),i=s(i),!0===o&&(i=!0);var d=t.item(e).getAttribute("data-rater-postid"),u=t.item(e).id,l=u.replace("yasr-visitor-votes-rater-",""),m=parseInt(t.item(e).getAttribute("data-rater-starsize")),y=t.item(e).getAttribute("data-rater-nonce"),c=t.item(e).getAttribute("data-issingular"),v="yasr-vv-votes-number-container-"+l,f="yasr-vv-average-container-"+l,p="yasr-visitor-votes-container-after-stars-"+l,g=!1;if("yes"===yasrCommonData.ajaxEnabled){var _=t.item(e).getAttribute("data-cpt");""===_&&(_="posts");var b="wp/v2/"+_+"/"+d+"?_fields=yasr_visitor_votes&_wpnonce="+yasrCommonData.nonce;jQuery.get(yasrCommonData.restEndpoint+b).done((function(t){var e;(e=!0===o||t.yasr_visitor_votes.stars_attributes.read_only,a=(a=t.yasr_visitor_votes.number_of_votes>0?t.yasr_visitor_votes.sum_votes/t.yasr_visitor_votes.number_of_votes:0).toFixed(1),a=parseFloat(a),n(m,a,d,e,u,l,y,c,p),!0!==o)&&(document.getElementById(v).innerHTML=t.yasr_visitor_votes.number_of_votes,document.getElementById(f).innerHTML=a,!1!==t.yasr_visitor_votes.stars_attributes.span_bottom&&(g=t.yasr_visitor_votes.stars_attributes.span_bottom,document.getElementById(p).insertAdjacentHTML("beforeend",g)))})).fail((function(t,e,s,o){console.info(r("YASR ajax call failed. Showing ratings from html","yet-another-stars-rating")),n(m,a,d,i,u,l,y,c,p)}))}else n(m,a,d,i,u,l,y,c,p)}(e)}(o);var i=document.getElementsByClassName("yasr-multiset-visitors-rater");if(i.length>0&&function(t){for(var e="",r=[],a=0;a<t.length;a++)!function(a){var n=t.item(a).id,o=t.item(a).getAttribute("data-rater-readonly");o=s(o);var i=document.querySelector("#"+n);raterJs({starSize:16,step:1,showToolTip:!1,readOnly:o,element:i,rateCallback:function(t,a){var n=i.getAttribute("data-rater-postid"),s=i.getAttribute("data-rater-setid"),o=i.getAttribute("data-rater-set-field-id");t=t.toFixed(1);var d=parseInt(t);this.setRating(d),e={postid:n,setid:s,field:o,rating:d},r.push(e),a()}})}(a);jQuery(".yasr-send-visitor-multiset").on("click",(function(){var t=this.getAttribute("data-postid"),e=this.getAttribute("data-setid"),a=this.getAttribute("data-nonce");jQuery("#yasr-send-visitor-multiset-"+t+"-"+e).hide(),jQuery("#yasr-loader-multiset-visitor-"+t+"-"+e).show();var n={action:"yasr_visitor_multiset_field_vote",nonce:a,post_id:t,rating:r,set_type:e};jQuery.post(yasrCommonData.ajaxurl,n,(function(r){jQuery("#yasr-loader-multiset-visitor-"+t+"-"+e).text(r)}))}))}(i),o&&"yes"===yasrCommonData.visitorStatsEnabled){var d=document.getElementsByClassName("yasr-dashicons-visitor-stats");d&&function(t){for(var e=!1,r=0;r<t.length;r++)!function(r){var a="#"+t.item(r).id,n={action:"yasr_stats_visitors_votes",post_id:t.item(r).getAttribute("data-postid")};tippy(a,{content:'<span style="color: #0a0a0a">Loading...</span>',theme:"yasr",arrow:"true",arrowType:"round",onShow:function(t){a!==e&&jQuery.post(yasrCommonData.ajaxurl,n,(function(e){e=JSON.parse(e),t.setContent(e)}))},onHidden:function(){e=a}})}(r)}(d)}null!==document.getElementById("yasr-highest-rated-posts")&&(document.getElementById("yasr-highest-rated-posts").style.display="none",document.getElementById("link-yasr-highest-rated-posts").addEventListener("click",(function(t){document.getElementById("yasr-most-rated-posts").style.display="none",document.getElementById("yasr-highest-rated-posts").style.display="",t.preventDefault()}),!1),document.getElementById("link-yasr-most-rated-posts").addEventListener("click",(function(t){document.getElementById("yasr-highest-rated-posts").style.display="none",document.getElementById("yasr-most-rated-posts").style.display="",t.preventDefault()}),!1))}))}]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=3)}([function(e,t,n){"use strict";e.exports=n(4)},function(e,t,n){"use strict";
2
+ /*
3
+ object-assign
4
+ (c) Sindre Sorhus
5
+ @license MIT
6
+ */var r=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,i,u=o(e),s=1;s<arguments.length;s++){for(var c in n=Object(arguments[s]))a.call(n,c)&&(u[c]=n[c]);if(r){i=r(n);for(var f=0;f<i.length;f++)l.call(n,i[f])&&(u[i[f]]=n[i[f]])}}return u}},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n(5)},function(e,t,n){e.exports=n(8)},function(e,t,n){"use strict";
7
+ /** @license React v17.0.1
8
+ * react.production.min.js
9
+ *
10
+ * Copyright (c) Facebook, Inc. and its affiliates.
11
+ *
12
+ * This source code is licensed under the MIT license found in the
13
+ * LICENSE file in the root directory of this source tree.
14
+ */var r=n(1),a=60103,l=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var o=60109,i=60110,u=60112;t.Suspense=60113;var s=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var f=Symbol.for;a=f("react.element"),l=f("react.portal"),t.Fragment=f("react.fragment"),t.StrictMode=f("react.strict_mode"),t.Profiler=f("react.profiler"),o=f("react.provider"),i=f("react.context"),u=f("react.forward_ref"),t.Suspense=f("react.suspense"),s=f("react.memo"),c=f("react.lazy")}var d="function"==typeof Symbol&&Symbol.iterator;function p(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function y(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}function v(){}function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}y.prototype.isReactComponent={},y.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(p(85));this.updater.enqueueSetState(this,e,t,"setState")},y.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},v.prototype=y.prototype;var b=g.prototype=new v;b.constructor=g,r(b,y.prototype),b.isPureReactComponent=!0;var w={current:null},k=Object.prototype.hasOwnProperty,E={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var r,l={},o=null,i=null;if(null!=t)for(r in void 0!==t.ref&&(i=t.ref),void 0!==t.key&&(o=""+t.key),t)k.call(t,r)&&!E.hasOwnProperty(r)&&(l[r]=t[r]);var u=arguments.length-2;if(1===u)l.children=n;else if(1<u){for(var s=Array(u),c=0;c<u;c++)s[c]=arguments[c+2];l.children=s}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===l[r]&&(l[r]=u[r]);return{$$typeof:a,type:e,key:o,ref:i,props:l,_owner:w.current}}function _(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var x=/\/+/g;function C(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function P(e,t,n,r,o){var i=typeof e;"undefined"!==i&&"boolean"!==i||(e=null);var u=!1;if(null===e)u=!0;else switch(i){case"string":case"number":u=!0;break;case"object":switch(e.$$typeof){case a:case l:u=!0}}if(u)return o=o(u=e),e=""===r?"."+C(u,0):r,Array.isArray(o)?(n="",null!=e&&(n=e.replace(x,"$&/")+"/"),P(o,t,n,"",(function(e){return e}))):null!=o&&(_(o)&&(o=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(o,n+(!o.key||u&&u.key===o.key?"":(""+o.key).replace(x,"$&/")+"/")+e)),t.push(o)),1;if(u=0,r=""===r?".":r+":",Array.isArray(e))for(var s=0;s<e.length;s++){var c=r+C(i=e[s],s);u+=P(i,t,n,c,o)}else if("function"==typeof(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e)))for(e=c.call(e),s=0;!(i=e.next()).done;)u+=P(i=i.value,t,n,c=r+C(i,s++),o);else if("object"===i)throw t=""+e,Error(p(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return u}function T(e,t,n){if(null==e)return e;var r=[],a=0;return P(e,r,"","",(function(e){return t.call(n,e,a++)})),r}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var L={current:null};function z(){var e=L.current;if(null===e)throw Error(p(321));return e}var O={ReactCurrentDispatcher:L,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:w,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:T,forEach:function(e,t,n){T(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return T(e,(function(){t++})),t},toArray:function(e){return T(e,(function(e){return e}))||[]},only:function(e){if(!_(e))throw Error(p(143));return e}},t.Component=y,t.PureComponent=g,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=O,t.cloneElement=function(e,t,n){if(null==e)throw Error(p(267,e));var l=r({},e.props),o=e.key,i=e.ref,u=e._owner;if(null!=t){if(void 0!==t.ref&&(i=t.ref,u=w.current),void 0!==t.key&&(o=""+t.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(c in t)k.call(t,c)&&!E.hasOwnProperty(c)&&(l[c]=void 0===t[c]&&void 0!==s?s[c]:t[c])}var c=arguments.length-2;if(1===c)l.children=n;else if(1<c){s=Array(c);for(var f=0;f<c;f++)s[f]=arguments[f+2];l.children=s}return{$$typeof:a,type:e.type,key:o,ref:i,props:l,_owner:u}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:i,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:o,_context:e},e.Consumer=e},t.createElement=S,t.createFactory=function(e){var t=S.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:u,render:e}},t.isValidElement=_,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:s,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return z().useCallback(e,t)},t.useContext=function(e,t){return z().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return z().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return z().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return z().useLayoutEffect(e,t)},t.useMemo=function(e,t){return z().useMemo(e,t)},t.useReducer=function(e,t,n){return z().useReducer(e,t,n)},t.useRef=function(e){return z().useRef(e)},t.useState=function(e){return z().useState(e)},t.version="17.0.1"},function(e,t,n){"use strict";
15
+ /** @license React v17.0.1
16
+ * react-dom.production.min.js
17
+ *
18
+ * Copyright (c) Facebook, Inc. and its affiliates.
19
+ *
20
+ * This source code is licensed under the MIT license found in the
21
+ * LICENSE file in the root directory of this source tree.
22
+ */var r=n(0),a=n(1),l=n(6);function o(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!r)throw Error(o(227));var i=new Set,u={};function s(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(u[e]=t,e=0;e<t.length;e++)i.add(t[e])}var f=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),d=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p=Object.prototype.hasOwnProperty,m={},h={};function y(e,t,n,r,a,l,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=l,this.removeEmptyString=o}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new y(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new y(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new y(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new y(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new y(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new y(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new y(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new y(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new y(e,5,!1,e.toLowerCase(),null,!1,!1)}));var g=/[\-:]([a-z])/g;function b(e){return e[1].toUpperCase()}function w(e,t,n,r){var a=v.hasOwnProperty(t)?v[t]:null;(null!==a?0===a.type:!r&&(2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1])))||(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,a,r)&&(n=null),r||null===a?function(e){return!!p.call(h,e)||!p.call(m,e)&&(d.test(e)?h[e]=!0:(m[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):a.mustUseProperty?e[a.propertyName]=null===n?3!==a.type&&"":n:(t=a.attributeName,r=a.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(a=a.type)||4===a&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(g,b);v[t]=new y(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(g,b);v[t]=new y(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(g,b);v[t]=new y(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new y(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new y("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new y(e,1,!1,e.toLowerCase(),null,!0,!0)}));var k=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,E=60103,S=60106,_=60107,x=60108,C=60114,P=60109,T=60110,N=60112,L=60113,z=60120,O=60115,I=60116,M=60121,R=60128,D=60129,F=60130,j=60131;if("function"==typeof Symbol&&Symbol.for){var U=Symbol.for;E=U("react.element"),S=U("react.portal"),_=U("react.fragment"),x=U("react.strict_mode"),C=U("react.profiler"),P=U("react.provider"),T=U("react.context"),N=U("react.forward_ref"),L=U("react.suspense"),z=U("react.suspense_list"),O=U("react.memo"),I=U("react.lazy"),M=U("react.block"),U("react.scope"),R=U("react.opaque.id"),D=U("react.debug_trace_mode"),F=U("react.offscreen"),j=U("react.legacy_hidden")}var A,B="function"==typeof Symbol&&Symbol.iterator;function V(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=B&&e[B]||e["@@iterator"])?e:null}function H(e){if(void 0===A)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);A=t&&t[1]||""}return"\n"+A+e}var Q=!1;function $(e,t){if(!e||Q)return"";Q=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var r=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){r=e}e.call(t.prototype)}else{try{throw Error()}catch(e){r=e}e()}}catch(e){if(e&&r&&"string"==typeof e.stack){for(var a=e.stack.split("\n"),l=r.stack.split("\n"),o=a.length-1,i=l.length-1;1<=o&&0<=i&&a[o]!==l[i];)i--;for(;1<=o&&0<=i;o--,i--)if(a[o]!==l[i]){if(1!==o||1!==i)do{if(o--,0>--i||a[o]!==l[i])return"\n"+a[o].replace(" at new "," at ")}while(1<=o&&0<=i);break}}}finally{Q=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?H(e):""}function W(e){switch(e.tag){case 5:return H(e.type);case 16:return H("Lazy");case 13:return H("Suspense");case 19:return H("SuspenseList");case 0:case 2:case 15:return e=$(e.type,!1);case 11:return e=$(e.type.render,!1);case 22:return e=$(e.type._render,!1);case 1:return e=$(e.type,!0);default:return""}}function q(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case _:return"Fragment";case S:return"Portal";case C:return"Profiler";case x:return"StrictMode";case L:return"Suspense";case z:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case T:return(e.displayName||"Context")+".Consumer";case P:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case O:return q(e.type);case M:return q(e._render);case I:t=e._payload,e=e._init;try{return q(e(t))}catch(e){}}return null}function K(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function Y(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=Y(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var a=n.get,l=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return a.call(this)},set:function(e){r=""+e,l.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function G(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Y(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Z(e,t){var n=t.checked;return a({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=K(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&w(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=K(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ae(e,t.type,n):t.hasOwnProperty("defaultValue")&&ae(e,t.type,K(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function re(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ae(e,t,n){"number"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function le(e,t){return e=a({children:void 0},t),(t=function(e){var t="";return r.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function oe(e,t,n,r){if(e=e.options,t){t={};for(var a=0;a<n.length;a++)t["$"+n[a]]=!0;for(n=0;n<e.length;n++)a=t.hasOwnProperty("$"+e[n].value),e[n].selected!==a&&(e[n].selected=a),a&&r&&(e[n].defaultSelected=!0)}else{for(n=""+K(n),t=null,a=0;a<e.length;a++){if(e[a].value===n)return e[a].selected=!0,void(r&&(e[a].defaultSelected=!0));null!==t||e[a].disabled||(t=e[a])}null!==t&&(t.selected=!0)}}function ie(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(o(91));return a({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function ue(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(o(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(o(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:K(n)}}function se(e,t){var n=K(t.value),r=K(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var fe="http://www.w3.org/1999/xhtml",de="http://www.w3.org/2000/svg";function pe(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function me(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?pe(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var he,ye=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,a){MSApp.execUnsafeLocalFunction((function(){return e(t,n)}))}:e}((function(e,t){if(e.namespaceURI!==de||"innerHTML"in e)e.innerHTML=t;else{for((he=he||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=he.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}}));function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var ge={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},be=["Webkit","ms","Moz","O"];function we(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||ge.hasOwnProperty(e)&&ge[e]?(""+t).trim():t+"px"}function ke(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),a=we(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,a):e[n]=a}}Object.keys(ge).forEach((function(e){be.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),ge[t]=ge[e]}))}));var Ee=a({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Se(e,t){if(t){if(Ee[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(o(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(o(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(o(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(o(62))}}function _e(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function xe(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Ce=null,Pe=null,Te=null;function Ne(e){if(e=Jr(e)){if("function"!=typeof Ce)throw Error(o(280));var t=e.stateNode;t&&(t=ea(t),Ce(e.stateNode,e.type,t))}}function Le(e){Pe?Te?Te.push(e):Te=[e]:Pe=e}function ze(){if(Pe){var e=Pe,t=Te;if(Te=Pe=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function Oe(e,t){return e(t)}function Ie(e,t,n,r,a){return e(t,n,r,a)}function Me(){}var Re=Oe,De=!1,Fe=!1;function je(){null===Pe&&null===Te||(Me(),ze())}function Ue(e,t){var n=e.stateNode;if(null===n)return null;var r=ea(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(o(231,t,typeof n));return n}var Ae=!1;if(f)try{var Be={};Object.defineProperty(Be,"passive",{get:function(){Ae=!0}}),window.addEventListener("test",Be,Be),window.removeEventListener("test",Be,Be)}catch(e){Ae=!1}function Ve(e,t,n,r,a,l,o,i,u){var s=Array.prototype.slice.call(arguments,3);try{t.apply(n,s)}catch(e){this.onError(e)}}var He=!1,Qe=null,$e=!1,We=null,qe={onError:function(e){He=!0,Qe=e}};function Ke(e,t,n,r,a,l,o,i,u){He=!1,Qe=null,Ve.apply(qe,arguments)}function Ye(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Ge(e){if(Ye(e)!==e)throw Error(o(188))}function Je(e){if(!(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ye(e)))throw Error(o(188));return t!==e?null:e}for(var n=e,r=t;;){var a=n.return;if(null===a)break;var l=a.alternate;if(null===l){if(null!==(r=a.return)){n=r;continue}break}if(a.child===l.child){for(l=a.child;l;){if(l===n)return Ge(a),e;if(l===r)return Ge(a),t;l=l.sibling}throw Error(o(188))}if(n.return!==r.return)n=a,r=l;else{for(var i=!1,u=a.child;u;){if(u===n){i=!0,n=a,r=l;break}if(u===r){i=!0,r=a,n=l;break}u=u.sibling}if(!i){for(u=l.child;u;){if(u===n){i=!0,n=l,r=a;break}if(u===r){i=!0,r=l,n=a;break}u=u.sibling}if(!i)throw Error(o(189))}}if(n.alternate!==r)throw Error(o(190))}if(3!==n.tag)throw Error(o(188));return n.stateNode.current===n?e:t}(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ze(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,rt,at=!1,lt=[],ot=null,it=null,ut=null,st=new Map,ct=new Map,ft=[],dt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function pt(e,t,n,r,a){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:a,targetContainers:[r]}}function mt(e,t){switch(e){case"focusin":case"focusout":ot=null;break;case"dragenter":case"dragleave":it=null;break;case"mouseover":case"mouseout":ut=null;break;case"pointerover":case"pointerout":st.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,r,a,l){return null===e||e.nativeEvent!==l?(e=pt(t,n,r,a,l),null!==t&&(null!==(t=Jr(t))&&tt(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==a&&-1===t.indexOf(a)&&t.push(a),e)}function yt(e){var t=Gr(e.target);if(null!==t){var n=Ye(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void rt(e.lanePriority,(function(){l.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=Jr(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function gt(e,t,n){vt(e)&&n.delete(t)}function bt(){for(at=!1;0<lt.length;){var e=lt[0];if(null!==e.blockedOn){null!==(e=Jr(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&lt.shift()}null!==ot&&vt(ot)&&(ot=null),null!==it&&vt(it)&&(it=null),null!==ut&&vt(ut)&&(ut=null),st.forEach(gt),ct.forEach(gt)}function wt(e,t){e.blockedOn===t&&(e.blockedOn=null,at||(at=!0,l.unstable_scheduleCallback(l.unstable_NormalPriority,bt)))}function kt(e){function t(t){return wt(t,e)}if(0<lt.length){wt(lt[0],e);for(var n=1;n<lt.length;n++){var r=lt[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==ot&&wt(ot,e),null!==it&&wt(it,e),null!==ut&&wt(ut,e),st.forEach(t),ct.forEach(t),n=0;n<ft.length;n++)(r=ft[n]).blockedOn===e&&(r.blockedOn=null);for(;0<ft.length&&null===(n=ft[0]).blockedOn;)yt(n),null===n.blockedOn&&ft.shift()}function Et(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var St={animationend:Et("Animation","AnimationEnd"),animationiteration:Et("Animation","AnimationIteration"),animationstart:Et("Animation","AnimationStart"),transitionend:Et("Transition","TransitionEnd")},_t={},xt={};function Ct(e){if(_t[e])return _t[e];if(!St[e])return e;var t,n=St[e];for(t in n)if(n.hasOwnProperty(t)&&t in xt)return _t[e]=n[t];return e}f&&(xt=document.createElement("div").style,"AnimationEvent"in window||(delete St.animationend.animation,delete St.animationiteration.animation,delete St.animationstart.animation),"TransitionEvent"in window||delete St.transitionend.transition);var Pt=Ct("animationend"),Tt=Ct("animationiteration"),Nt=Ct("animationstart"),Lt=Ct("transitionend"),zt=new Map,Ot=new Map,It=["abort","abort",Pt,"animationEnd",Tt,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Lt,"transitionEnd","waiting","waiting"];function Mt(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],a=e[n+1];a="on"+(a[0].toUpperCase()+a.slice(1)),Ot.set(r,t),zt.set(r,a),s(a,[r])}}(0,l.unstable_now)();var Rt=8;function Dt(e){if(0!=(1&e))return Rt=15,1;if(0!=(2&e))return Rt=14,2;if(0!=(4&e))return Rt=13,4;var t=24&e;return 0!==t?(Rt=12,t):0!=(32&e)?(Rt=11,32):0!==(t=192&e)?(Rt=10,t):0!=(256&e)?(Rt=9,256):0!==(t=3584&e)?(Rt=8,t):0!=(4096&e)?(Rt=7,4096):0!==(t=4186112&e)?(Rt=6,t):0!==(t=62914560&e)?(Rt=5,t):67108864&e?(Rt=4,67108864):0!=(134217728&e)?(Rt=3,134217728):0!==(t=805306368&e)?(Rt=2,t):0!=(1073741824&e)?(Rt=1,1073741824):(Rt=8,e)}function Ft(e,t){var n=e.pendingLanes;if(0===n)return Rt=0;var r=0,a=0,l=e.expiredLanes,o=e.suspendedLanes,i=e.pingedLanes;if(0!==l)r=l,a=Rt=15;else if(0!==(l=134217727&n)){var u=l&~o;0!==u?(r=Dt(u),a=Rt):0!==(i&=l)&&(r=Dt(i),a=Rt)}else 0!==(l=n&~o)?(r=Dt(l),a=Rt):0!==i&&(r=Dt(i),a=Rt);if(0===r)return 0;if(r=n&((0>(r=31-Ht(r))?0:1<<r)<<1)-1,0!==t&&t!==r&&0==(t&o)){if(Dt(t),a<=Rt)return t;Rt=a}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)a=1<<(n=31-Ht(t)),r|=e[n],t&=~a;return r}function jt(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Ut(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=At(24&~t))?Ut(10,t):e;case 10:return 0===(e=At(192&~t))?Ut(8,t):e;case 8:return 0===(e=At(3584&~t))&&(0===(e=At(4186112&~t))&&(e=512)),e;case 2:return 0===(t=At(805306368&~t))&&(t=268435456),t}throw Error(o(358,e))}function At(e){return e&-e}function Bt(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Vt(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes&=r,e.pingedLanes&=r,(e=e.eventTimes)[t=31-Ht(t)]=n}var Ht=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Qt(e)/$t|0)|0},Qt=Math.log,$t=Math.LN2;var Wt=l.unstable_UserBlockingPriority,qt=l.unstable_runWithPriority,Kt=!0;function Yt(e,t,n,r){De||Me();var a=Gt,l=De;De=!0;try{Ie(a,e,t,n,r)}finally{(De=l)||je()}}function Xt(e,t,n,r){qt(Wt,Gt.bind(null,e,t,n,r))}function Gt(e,t,n,r){var a;if(Kt)if((a=0==(4&t))&&0<lt.length&&-1<dt.indexOf(e))e=pt(null,e,t,n,r),lt.push(e);else{var l=Jt(e,t,n,r);if(null===l)a&&mt(e,r);else{if(a){if(-1<dt.indexOf(e))return e=pt(l,e,t,n,r),void lt.push(e);if(function(e,t,n,r,a){switch(t){case"focusin":return ot=ht(ot,e,t,n,r,a),!0;case"dragenter":return it=ht(it,e,t,n,r,a),!0;case"mouseover":return ut=ht(ut,e,t,n,r,a),!0;case"pointerover":var l=a.pointerId;return st.set(l,ht(st.get(l)||null,e,t,n,r,a)),!0;case"gotpointercapture":return l=a.pointerId,ct.set(l,ht(ct.get(l)||null,e,t,n,r,a)),!0}return!1}(l,e,t,n,r))return;mt(e,r)}Lr(e,t,r,null,n)}}}function Jt(e,t,n,r){var a=xe(r);if(null!==(a=Gr(a))){var l=Ye(a);if(null===l)a=null;else{var o=l.tag;if(13===o){if(null!==(a=Xe(l)))return a;a=null}else if(3===o){if(l.stateNode.hydrate)return 3===l.tag?l.stateNode.containerInfo:null;a=null}else l!==a&&(a=null)}}return Lr(e,t,r,a,n),null}var Zt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,r=n.length,a="value"in Zt?Zt.value:Zt.textContent,l=a.length;for(e=0;e<r&&n[e]===a[e];e++);var o=r-e;for(t=1;t<=o&&n[r-t]===a[l-t];t++);return tn=a.slice(e,1<t?1-t:void 0)}function rn(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function an(){return!0}function ln(){return!1}function on(e){function t(t,n,r,a,l){for(var o in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=l,this.currentTarget=null,e)e.hasOwnProperty(o)&&(t=e[o],this[o]=t?t(a):a[o]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?an:ln,this.isPropagationStopped=ln,this}return a(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=an)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=an)},persist:function(){},isPersistent:an}),t}var un,sn,cn,fn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},dn=on(fn),pn=a({},fn,{view:0,detail:0}),mn=on(pn),hn=a({},pn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Cn,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(un=e.screenX-cn.screenX,sn=e.screenY-cn.screenY):sn=un=0,cn=e),un)},movementY:function(e){return"movementY"in e?e.movementY:sn}}),yn=on(hn),vn=on(a({},hn,{dataTransfer:0})),gn=on(a({},pn,{relatedTarget:0})),bn=on(a({},fn,{animationName:0,elapsedTime:0,pseudoElement:0})),wn=on(a({},fn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}})),kn=on(a({},fn,{data:0})),En={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Sn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},_n={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function xn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=_n[e])&&!!t[e]}function Cn(){return xn}var Pn=on(a({},pn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=rn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Sn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Cn,charCode:function(e){return"keypress"===e.type?rn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?rn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}})),Tn=on(a({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Nn=on(a({},pn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Cn})),Ln=on(a({},fn,{propertyName:0,elapsedTime:0,pseudoElement:0})),zn=on(a({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),On=[9,13,27,32],In=f&&"CompositionEvent"in window,Mn=null;f&&"documentMode"in document&&(Mn=document.documentMode);var Rn=f&&"TextEvent"in window&&!Mn,Dn=f&&(!In||Mn&&8<Mn&&11>=Mn),Fn=String.fromCharCode(32),jn=!1;function Un(e,t){switch(e){case"keyup":return-1!==On.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function An(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Bn=!1;var Vn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Hn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Vn[e.type]:"textarea"===t}function Qn(e,t,n,r){Le(r),0<(t=Or(t,"onChange")).length&&(n=new dn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var $n=null,Wn=null;function qn(e){_r(e,0)}function Kn(e){if(G(Zr(e)))return e}function Yn(e,t){if("change"===e)return t}var Xn=!1;if(f){var Gn;if(f){var Jn="oninput"in document;if(!Jn){var Zn=document.createElement("div");Zn.setAttribute("oninput","return;"),Jn="function"==typeof Zn.oninput}Gn=Jn}else Gn=!1;Xn=Gn&&(!document.documentMode||9<document.documentMode)}function er(){$n&&($n.detachEvent("onpropertychange",tr),Wn=$n=null)}function tr(e){if("value"===e.propertyName&&Kn(Wn)){var t=[];if(Qn(t,Wn,e,xe(e)),e=qn,De)e(t);else{De=!0;try{Oe(e,t)}finally{De=!1,je()}}}}function nr(e,t,n){"focusin"===e?(er(),Wn=n,($n=t).attachEvent("onpropertychange",tr)):"focusout"===e&&er()}function rr(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Kn(Wn)}function ar(e,t){if("click"===e)return Kn(t)}function lr(e,t){if("input"===e||"change"===e)return Kn(t)}var or="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},ir=Object.prototype.hasOwnProperty;function ur(e,t){if(or(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++)if(!ir.call(t,n[r])||!or(e[n[r]],t[n[r]]))return!1;return!0}function sr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function cr(e,t){var n,r=sr(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=sr(r)}}function fr(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function dr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var pr=f&&"documentMode"in document&&11>=document.documentMode,mr=null,hr=null,yr=null,vr=!1;function gr(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;vr||null==mr||mr!==J(r)||("selectionStart"in(r=mr)&&dr(r)?r={start:r.selectionStart,end:r.selectionEnd}:r={anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},yr&&ur(yr,r)||(yr=r,0<(r=Or(hr,"onSelect")).length&&(t=new dn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=mr)))}Mt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Mt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Mt(It,2);for(var br="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),wr=0;wr<br.length;wr++)Ot.set(br[wr],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),s("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),s("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),s("onBeforeInput",["compositionend","keypress","textInput","paste"]),s("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var kr="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Er=new Set("cancel close invalid load scroll toggle".split(" ").concat(kr));function Sr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,a,l,i,u,s){if(Ke.apply(this,arguments),He){if(!He)throw Error(o(198));var c=Qe;He=!1,Qe=null,$e||($e=!0,We=c)}}(r,t,void 0,e),e.currentTarget=null}function _r(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],a=r.event;r=r.listeners;e:{var l=void 0;if(t)for(var o=r.length-1;0<=o;o--){var i=r[o],u=i.instance,s=i.currentTarget;if(i=i.listener,u!==l&&a.isPropagationStopped())break e;Sr(a,i,s),l=u}else for(o=0;o<r.length;o++){if(u=(i=r[o]).instance,s=i.currentTarget,i=i.listener,u!==l&&a.isPropagationStopped())break e;Sr(a,i,s),l=u}}}if($e)throw e=We,$e=!1,We=null,e}function xr(e,t){var n=ta(t),r=e+"__bubble";n.has(r)||(Nr(t,e,2,!1),n.add(r))}var Cr="_reactListening"+Math.random().toString(36).slice(2);function Pr(e){e[Cr]||(e[Cr]=!0,i.forEach((function(t){Er.has(t)||Tr(t,!1,e,null),Tr(t,!0,e,null)})))}function Tr(e,t,n,r){var a=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,l=n;if("selectionchange"===e&&9!==n.nodeType&&(l=n.ownerDocument),null!==r&&!t&&Er.has(e)){if("scroll"!==e)return;a|=2,l=r}var o=ta(l),i=e+"__"+(t?"capture":"bubble");o.has(i)||(t&&(a|=4),Nr(l,e,a,t),o.add(i))}function Nr(e,t,n,r){var a=Ot.get(t);switch(void 0===a?2:a){case 0:a=Yt;break;case 1:a=Xt;break;default:a=Gt}n=a.bind(null,t,n,e),a=void 0,!Ae||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(a=!0),r?void 0!==a?e.addEventListener(t,n,{capture:!0,passive:a}):e.addEventListener(t,n,!0):void 0!==a?e.addEventListener(t,n,{passive:a}):e.addEventListener(t,n,!1)}function Lr(e,t,n,r,a){var l=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var o=r.tag;if(3===o||4===o){var i=r.stateNode.containerInfo;if(i===a||8===i.nodeType&&i.parentNode===a)break;if(4===o)for(o=r.return;null!==o;){var u=o.tag;if((3===u||4===u)&&((u=o.stateNode.containerInfo)===a||8===u.nodeType&&u.parentNode===a))return;o=o.return}for(;null!==i;){if(null===(o=Gr(i)))return;if(5===(u=o.tag)||6===u){r=l=o;continue e}i=i.parentNode}}r=r.return}!function(e,t,n){if(Fe)return e(t,n);Fe=!0;try{Re(e,t,n)}finally{Fe=!1,je()}}((function(){var r=l,a=xe(n),o=[];e:{var i=zt.get(e);if(void 0!==i){var u=dn,s=e;switch(e){case"keypress":if(0===rn(n))break e;case"keydown":case"keyup":u=Pn;break;case"focusin":s="focus",u=gn;break;case"focusout":s="blur",u=gn;break;case"beforeblur":case"afterblur":u=gn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":u=yn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":u=vn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":u=Nn;break;case Pt:case Tt:case Nt:u=bn;break;case Lt:u=Ln;break;case"scroll":u=mn;break;case"wheel":u=zn;break;case"copy":case"cut":case"paste":u=wn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":u=Tn}var c=0!=(4&t),f=!c&&"scroll"===e,d=c?null!==i?i+"Capture":null:i;c=[];for(var p,m=r;null!==m;){var h=(p=m).stateNode;if(5===p.tag&&null!==h&&(p=h,null!==d&&(null!=(h=Ue(m,d))&&c.push(zr(m,h,p)))),f)break;m=m.return}0<c.length&&(i=new u(i,s,null,n,a),o.push({event:i,listeners:c}))}}if(0==(7&t)){if(u="mouseout"===e||"pointerout"===e,(!(i="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(s=n.relatedTarget||n.fromElement)||!Gr(s)&&!s[Yr])&&(u||i)&&(i=a.window===a?a:(i=a.ownerDocument)?i.defaultView||i.parentWindow:window,u?(u=r,null!==(s=(s=n.relatedTarget||n.toElement)?Gr(s):null)&&(s!==(f=Ye(s))||5!==s.tag&&6!==s.tag)&&(s=null)):(u=null,s=r),u!==s)){if(c=yn,h="onMouseLeave",d="onMouseEnter",m="mouse","pointerout"!==e&&"pointerover"!==e||(c=Tn,h="onPointerLeave",d="onPointerEnter",m="pointer"),f=null==u?i:Zr(u),p=null==s?i:Zr(s),(i=new c(h,m+"leave",u,n,a)).target=f,i.relatedTarget=p,h=null,Gr(a)===r&&((c=new c(d,m+"enter",s,n,a)).target=p,c.relatedTarget=f,h=c),f=h,u&&s)e:{for(d=s,m=0,p=c=u;p;p=Ir(p))m++;for(p=0,h=d;h;h=Ir(h))p++;for(;0<m-p;)c=Ir(c),m--;for(;0<p-m;)d=Ir(d),p--;for(;m--;){if(c===d||null!==d&&c===d.alternate)break e;c=Ir(c),d=Ir(d)}c=null}else c=null;null!==u&&Mr(o,i,u,c,!1),null!==s&&null!==f&&Mr(o,f,s,c,!0)}if("select"===(u=(i=r?Zr(r):window).nodeName&&i.nodeName.toLowerCase())||"input"===u&&"file"===i.type)var y=Yn;else if(Hn(i))if(Xn)y=lr;else{y=rr;var v=nr}else(u=i.nodeName)&&"input"===u.toLowerCase()&&("checkbox"===i.type||"radio"===i.type)&&(y=ar);switch(y&&(y=y(e,r))?Qn(o,y,n,a):(v&&v(e,i,r),"focusout"===e&&(v=i._wrapperState)&&v.controlled&&"number"===i.type&&ae(i,"number",i.value)),v=r?Zr(r):window,e){case"focusin":(Hn(v)||"true"===v.contentEditable)&&(mr=v,hr=r,yr=null);break;case"focusout":yr=hr=mr=null;break;case"mousedown":vr=!0;break;case"contextmenu":case"mouseup":case"dragend":vr=!1,gr(o,n,a);break;case"selectionchange":if(pr)break;case"keydown":case"keyup":gr(o,n,a)}var g;if(In)e:{switch(e){case"compositionstart":var b="onCompositionStart";break e;case"compositionend":b="onCompositionEnd";break e;case"compositionupdate":b="onCompositionUpdate";break e}b=void 0}else Bn?Un(e,n)&&(b="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(b="onCompositionStart");b&&(Dn&&"ko"!==n.locale&&(Bn||"onCompositionStart"!==b?"onCompositionEnd"===b&&Bn&&(g=nn()):(en="value"in(Zt=a)?Zt.value:Zt.textContent,Bn=!0)),0<(v=Or(r,b)).length&&(b=new kn(b,e,null,n,a),o.push({event:b,listeners:v}),g?b.data=g:null!==(g=An(n))&&(b.data=g))),(g=Rn?function(e,t){switch(e){case"compositionend":return An(t);case"keypress":return 32!==t.which?null:(jn=!0,Fn);case"textInput":return(e=t.data)===Fn&&jn?null:e;default:return null}}(e,n):function(e,t){if(Bn)return"compositionend"===e||!In&&Un(e,t)?(e=nn(),tn=en=Zt=null,Bn=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Dn&&"ko"!==t.locale?null:t.data;default:return null}}(e,n))&&(0<(r=Or(r,"onBeforeInput")).length&&(a=new kn("onBeforeInput","beforeinput",null,n,a),o.push({event:a,listeners:r}),a.data=g))}_r(o,t)}))}function zr(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Or(e,t){for(var n=t+"Capture",r=[];null!==e;){var a=e,l=a.stateNode;5===a.tag&&null!==l&&(a=l,null!=(l=Ue(e,n))&&r.unshift(zr(e,l,a)),null!=(l=Ue(e,t))&&r.push(zr(e,l,a))),e=e.return}return r}function Ir(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function Mr(e,t,n,r,a){for(var l=t._reactName,o=[];null!==n&&n!==r;){var i=n,u=i.alternate,s=i.stateNode;if(null!==u&&u===r)break;5===i.tag&&null!==s&&(i=s,a?null!=(u=Ue(n,l))&&o.unshift(zr(n,u,i)):a||null!=(u=Ue(n,l))&&o.push(zr(n,u,i))),n=n.return}0!==o.length&&e.push({event:t,listeners:o})}function Rr(){}var Dr=null,Fr=null;function jr(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Ur(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ar="function"==typeof setTimeout?setTimeout:void 0,Br="function"==typeof clearTimeout?clearTimeout:void 0;function Vr(e){1===e.nodeType?e.textContent="":9===e.nodeType&&(null!=(e=e.body)&&(e.textContent=""))}function Hr(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Qr(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var $r=0;var Wr=Math.random().toString(36).slice(2),qr="__reactFiber$"+Wr,Kr="__reactProps$"+Wr,Yr="__reactContainer$"+Wr,Xr="__reactEvents$"+Wr;function Gr(e){var t=e[qr];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Yr]||n[qr]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Qr(e);null!==e;){if(n=e[qr])return n;e=Qr(e)}return t}n=(e=n).parentNode}return null}function Jr(e){return!(e=e[qr]||e[Yr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function Zr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(o(33))}function ea(e){return e[Kr]||null}function ta(e){var t=e[Xr];return void 0===t&&(t=e[Xr]=new Set),t}var na=[],ra=-1;function aa(e){return{current:e}}function la(e){0>ra||(e.current=na[ra],na[ra]=null,ra--)}function oa(e,t){ra++,na[ra]=e.current,e.current=t}var ia={},ua=aa(ia),sa=aa(!1),ca=ia;function fa(e,t){var n=e.type.contextTypes;if(!n)return ia;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var a,l={};for(a in n)l[a]=t[a];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function da(e){return null!=(e=e.childContextTypes)}function pa(){la(sa),la(ua)}function ma(e,t,n){if(ua.current!==ia)throw Error(o(168));oa(ua,t),oa(sa,n)}function ha(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var l in r=r.getChildContext())if(!(l in e))throw Error(o(108,q(t)||"Unknown",l));return a({},n,r)}function ya(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ia,ca=ua.current,oa(ua,e),oa(sa,sa.current),!0}function va(e,t,n){var r=e.stateNode;if(!r)throw Error(o(169));n?(e=ha(e,t,ca),r.__reactInternalMemoizedMergedChildContext=e,la(sa),la(ua),oa(ua,e)):la(sa),oa(sa,n)}var ga=null,ba=null,wa=l.unstable_runWithPriority,ka=l.unstable_scheduleCallback,Ea=l.unstable_cancelCallback,Sa=l.unstable_shouldYield,_a=l.unstable_requestPaint,xa=l.unstable_now,Ca=l.unstable_getCurrentPriorityLevel,Pa=l.unstable_ImmediatePriority,Ta=l.unstable_UserBlockingPriority,Na=l.unstable_NormalPriority,La=l.unstable_LowPriority,za=l.unstable_IdlePriority,Oa={},Ia=void 0!==_a?_a:function(){},Ma=null,Ra=null,Da=!1,Fa=xa(),ja=1e4>Fa?xa:function(){return xa()-Fa};function Ua(){switch(Ca()){case Pa:return 99;case Ta:return 98;case Na:return 97;case La:return 96;case za:return 95;default:throw Error(o(332))}}function Aa(e){switch(e){case 99:return Pa;case 98:return Ta;case 97:return Na;case 96:return La;case 95:return za;default:throw Error(o(332))}}function Ba(e,t){return e=Aa(e),wa(e,t)}function Va(e,t,n){return e=Aa(e),ka(e,t,n)}function Ha(){if(null!==Ra){var e=Ra;Ra=null,Ea(e)}Qa()}function Qa(){if(!Da&&null!==Ma){Da=!0;var e=0;try{var t=Ma;Ba(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),Ma=null}catch(t){throw null!==Ma&&(Ma=Ma.slice(e+1)),ka(Pa,Ha),t}finally{Da=!1}}}var $a=k.ReactCurrentBatchConfig;function Wa(e,t){if(e&&e.defaultProps){for(var n in t=a({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var qa=aa(null),Ka=null,Ya=null,Xa=null;function Ga(){Xa=Ya=Ka=null}function Ja(e){var t=qa.current;la(qa),e.type._context._currentValue=t}function Za(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function el(e,t){Ka=e,Xa=Ya=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Oo=!0),e.firstContext=null)}function tl(e,t){if(Xa!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(Xa=e,t=1073741823),t={context:e,observedBits:t,next:null},null===Ya){if(null===Ka)throw Error(o(308));Ya=t,Ka.dependencies={lanes:0,firstContext:t,responders:null}}else Ya=Ya.next=t;return e._currentValue}var nl=!1;function rl(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function al(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function ll(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function ol(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function il(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var a=null,l=null;if(null!==(n=n.firstBaseUpdate)){do{var o={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===l?a=l=o:l=l.next=o,n=n.next}while(null!==n);null===l?a=l=t:l=l.next=t}else a=l=t;return n={baseState:r.baseState,firstBaseUpdate:a,lastBaseUpdate:l,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function ul(e,t,n,r){var l=e.updateQueue;nl=!1;var o=l.firstBaseUpdate,i=l.lastBaseUpdate,u=l.shared.pending;if(null!==u){l.shared.pending=null;var s=u,c=s.next;s.next=null,null===i?o=c:i.next=c,i=s;var f=e.alternate;if(null!==f){var d=(f=f.updateQueue).lastBaseUpdate;d!==i&&(null===d?f.firstBaseUpdate=c:d.next=c,f.lastBaseUpdate=s)}}if(null!==o){for(d=l.baseState,i=0,f=c=s=null;;){u=o.lane;var p=o.eventTime;if((r&u)===u){null!==f&&(f=f.next={eventTime:p,lane:0,tag:o.tag,payload:o.payload,callback:o.callback,next:null});e:{var m=e,h=o;switch(u=t,p=n,h.tag){case 1:if("function"==typeof(m=h.payload)){d=m.call(p,d,u);break e}d=m;break e;case 3:m.flags=-4097&m.flags|64;case 0:if(null==(u="function"==typeof(m=h.payload)?m.call(p,d,u):m))break e;d=a({},d,u);break e;case 2:nl=!0}}null!==o.callback&&(e.flags|=32,null===(u=l.effects)?l.effects=[o]:u.push(o))}else p={eventTime:p,lane:u,tag:o.tag,payload:o.payload,callback:o.callback,next:null},null===f?(c=f=p,s=d):f=f.next=p,i|=u;if(null===(o=o.next)){if(null===(u=l.shared.pending))break;o=u.next,u.next=null,l.lastBaseUpdate=u,l.shared.pending=null}}null===f&&(s=d),l.baseState=s,l.firstBaseUpdate=c,l.lastBaseUpdate=f,Mi|=i,e.lanes=i,e.memoizedState=d}}function sl(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],a=r.callback;if(null!==a){if(r.callback=null,r=n,"function"!=typeof a)throw Error(o(191,a));a.call(r)}}}var cl=(new r.Component).refs;function fl(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:a({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var dl={isMounted:function(e){return!!(e=e._reactInternals)&&Ye(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=lu(),a=ou(e),l=ll(r,a);l.payload=t,null!=n&&(l.callback=n),ol(e,l),iu(e,a,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=lu(),a=ou(e),l=ll(r,a);l.tag=1,l.payload=t,null!=n&&(l.callback=n),ol(e,l),iu(e,a,r)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=lu(),r=ou(e),a=ll(n,r);a.tag=2,null!=t&&(a.callback=t),ol(e,a),iu(e,r,n)}};function pl(e,t,n,r,a,l,o){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,l,o):!t.prototype||!t.prototype.isPureReactComponent||(!ur(n,r)||!ur(a,l))}function ml(e,t,n){var r=!1,a=ia,l=t.contextType;return"object"==typeof l&&null!==l?l=tl(l):(a=da(t)?ca:ua.current,l=(r=null!=(r=t.contextTypes))?fa(e,a):ia),t=new t(n,l),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=dl,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=a,e.__reactInternalMemoizedMaskedChildContext=l),t}function hl(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&dl.enqueueReplaceState(t,t.state,null)}function yl(e,t,n,r){var a=e.stateNode;a.props=n,a.state=e.memoizedState,a.refs=cl,rl(e);var l=t.contextType;"object"==typeof l&&null!==l?a.context=tl(l):(l=da(t)?ca:ua.current,a.context=fa(e,l)),ul(e,n,a,r),a.state=e.memoizedState,"function"==typeof(l=t.getDerivedStateFromProps)&&(fl(e,t,l,n),a.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof a.getSnapshotBeforeUpdate||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||(t=a.state,"function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount(),t!==a.state&&dl.enqueueReplaceState(a,a.state,null),ul(e,n,a,r),a.state=e.memoizedState),"function"==typeof a.componentDidMount&&(e.flags|=4)}var vl=Array.isArray;function gl(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(o(309));var r=n.stateNode}if(!r)throw Error(o(147,e));var a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:((t=function(e){var t=r.refs;t===cl&&(t=r.refs={}),null===e?delete t[a]:t[a]=e})._stringRef=a,t)}if("string"!=typeof e)throw Error(o(284));if(!n._owner)throw Error(o(290,e))}return e}function bl(e,t){if("textarea"!==e.type)throw Error(o(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function wl(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function a(e,t){return(e=Uu(e,t)).index=0,e.sibling=null,e}function l(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.flags=2,n):r:(t.flags=2,n):n}function i(t){return e&&null===t.alternate&&(t.flags=2),t}function u(e,t,n,r){return null===t||6!==t.tag?((t=Hu(n,e.mode,r)).return=e,t):((t=a(t,n)).return=e,t)}function s(e,t,n,r){return null!==t&&t.elementType===n.type?((r=a(t,n.props)).ref=gl(e,t,n),r.return=e,r):((r=Au(n.type,n.key,n.props,null,e.mode,r)).ref=gl(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Qu(n,e.mode,r)).return=e,t):((t=a(t,n.children||[])).return=e,t)}function f(e,t,n,r,l){return null===t||7!==t.tag?((t=Bu(n,e.mode,r,l)).return=e,t):((t=a(t,n)).return=e,t)}function d(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Hu(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case E:return(n=Au(t.type,t.key,t.props,null,e.mode,n)).ref=gl(e,null,t),n.return=e,n;case S:return(t=Qu(t,e.mode,n)).return=e,t}if(vl(t)||V(t))return(t=Bu(t,e.mode,n,null)).return=e,t;bl(e,t)}return null}function p(e,t,n,r){var a=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==a?null:u(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case E:return n.key===a?n.type===_?f(e,t,n.props.children,r,a):s(e,t,n,r):null;case S:return n.key===a?c(e,t,n,r):null}if(vl(n)||V(n))return null!==a?null:f(e,t,n,r,null);bl(e,n)}return null}function m(e,t,n,r,a){if("string"==typeof r||"number"==typeof r)return u(t,e=e.get(n)||null,""+r,a);if("object"==typeof r&&null!==r){switch(r.$$typeof){case E:return e=e.get(null===r.key?n:r.key)||null,r.type===_?f(t,e,r.props.children,a,r.key):s(t,e,r,a);case S:return c(t,e=e.get(null===r.key?n:r.key)||null,r,a)}if(vl(r)||V(r))return f(t,e=e.get(n)||null,r,a,null);bl(t,r)}return null}function h(a,o,i,u){for(var s=null,c=null,f=o,h=o=0,y=null;null!==f&&h<i.length;h++){f.index>h?(y=f,f=null):y=f.sibling;var v=p(a,f,i[h],u);if(null===v){null===f&&(f=y);break}e&&f&&null===v.alternate&&t(a,f),o=l(v,o,h),null===c?s=v:c.sibling=v,c=v,f=y}if(h===i.length)return n(a,f),s;if(null===f){for(;h<i.length;h++)null!==(f=d(a,i[h],u))&&(o=l(f,o,h),null===c?s=f:c.sibling=f,c=f);return s}for(f=r(a,f);h<i.length;h++)null!==(y=m(f,a,h,i[h],u))&&(e&&null!==y.alternate&&f.delete(null===y.key?h:y.key),o=l(y,o,h),null===c?s=y:c.sibling=y,c=y);return e&&f.forEach((function(e){return t(a,e)})),s}function y(a,i,u,s){var c=V(u);if("function"!=typeof c)throw Error(o(150));if(null==(u=c.call(u)))throw Error(o(151));for(var f=c=null,h=i,y=i=0,v=null,g=u.next();null!==h&&!g.done;y++,g=u.next()){h.index>y?(v=h,h=null):v=h.sibling;var b=p(a,h,g.value,s);if(null===b){null===h&&(h=v);break}e&&h&&null===b.alternate&&t(a,h),i=l(b,i,y),null===f?c=b:f.sibling=b,f=b,h=v}if(g.done)return n(a,h),c;if(null===h){for(;!g.done;y++,g=u.next())null!==(g=d(a,g.value,s))&&(i=l(g,i,y),null===f?c=g:f.sibling=g,f=g);return c}for(h=r(a,h);!g.done;y++,g=u.next())null!==(g=m(h,a,y,g.value,s))&&(e&&null!==g.alternate&&h.delete(null===g.key?y:g.key),i=l(g,i,y),null===f?c=g:f.sibling=g,f=g);return e&&h.forEach((function(e){return t(a,e)})),c}return function(e,r,l,u){var s="object"==typeof l&&null!==l&&l.type===_&&null===l.key;s&&(l=l.props.children);var c="object"==typeof l&&null!==l;if(c)switch(l.$$typeof){case E:e:{for(c=l.key,s=r;null!==s;){if(s.key===c){switch(s.tag){case 7:if(l.type===_){n(e,s.sibling),(r=a(s,l.props.children)).return=e,e=r;break e}break;default:if(s.elementType===l.type){n(e,s.sibling),(r=a(s,l.props)).ref=gl(e,s,l),r.return=e,e=r;break e}}n(e,s);break}t(e,s),s=s.sibling}l.type===_?((r=Bu(l.props.children,e.mode,u,l.key)).return=e,e=r):((u=Au(l.type,l.key,l.props,null,e.mode,u)).ref=gl(e,r,l),u.return=e,e=u)}return i(e);case S:e:{for(s=l.key;null!==r;){if(r.key===s){if(4===r.tag&&r.stateNode.containerInfo===l.containerInfo&&r.stateNode.implementation===l.implementation){n(e,r.sibling),(r=a(r,l.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Qu(l,e.mode,u)).return=e,e=r}return i(e)}if("string"==typeof l||"number"==typeof l)return l=""+l,null!==r&&6===r.tag?(n(e,r.sibling),(r=a(r,l)).return=e,e=r):(n(e,r),(r=Hu(l,e.mode,u)).return=e,e=r),i(e);if(vl(l))return h(e,r,l,u);if(V(l))return y(e,r,l,u);if(c&&bl(e,l),void 0===l&&!s)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(o(152,q(e.type)||"Component"))}return n(e,r)}}var kl=wl(!0),El=wl(!1),Sl={},_l=aa(Sl),xl=aa(Sl),Cl=aa(Sl);function Pl(e){if(e===Sl)throw Error(o(174));return e}function Tl(e,t){switch(oa(Cl,t),oa(xl,e),oa(_l,Sl),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,"");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}la(_l),oa(_l,t)}function Nl(){la(_l),la(xl),la(Cl)}function Ll(e){Pl(Cl.current);var t=Pl(_l.current),n=me(t,e.type);t!==n&&(oa(xl,e),oa(_l,n))}function zl(e){xl.current===e&&(la(_l),la(xl))}var Ol=aa(0);function Il(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Ml=null,Rl=null,Dl=!1;function Fl(e,t){var n=Fu(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function jl(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);case 13:default:return!1}}function Ul(e){if(Dl){var t=Rl;if(t){var n=t;if(!jl(e,t)){if(!(t=Hr(n.nextSibling))||!jl(e,t))return e.flags=-1025&e.flags|2,Dl=!1,void(Ml=e);Fl(Ml,n)}Ml=e,Rl=Hr(t.firstChild)}else e.flags=-1025&e.flags|2,Dl=!1,Ml=e}}function Al(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Ml=e}function Bl(e){if(e!==Ml)return!1;if(!Dl)return Al(e),Dl=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Ur(t,e.memoizedProps))for(t=Rl;t;)Fl(e,t),t=Hr(t.nextSibling);if(Al(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(o(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Rl=Hr(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Rl=null}}else Rl=Ml?Hr(e.stateNode.nextSibling):null;return!0}function Vl(){Rl=Ml=null,Dl=!1}var Hl=[];function Ql(){for(var e=0;e<Hl.length;e++)Hl[e]._workInProgressVersionPrimary=null;Hl.length=0}var $l=k.ReactCurrentDispatcher,Wl=k.ReactCurrentBatchConfig,ql=0,Kl=null,Yl=null,Xl=null,Gl=!1,Jl=!1;function Zl(){throw Error(o(321))}function eo(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!or(e[n],t[n]))return!1;return!0}function to(e,t,n,r,a,l){if(ql=l,Kl=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,$l.current=null===e||null===e.memoizedState?To:No,e=n(r,a),Jl){l=0;do{if(Jl=!1,!(25>l))throw Error(o(301));l+=1,Xl=Yl=null,t.updateQueue=null,$l.current=Lo,e=n(r,a)}while(Jl)}if($l.current=Po,t=null!==Yl&&null!==Yl.next,ql=0,Xl=Yl=Kl=null,Gl=!1,t)throw Error(o(300));return e}function no(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Xl?Kl.memoizedState=Xl=e:Xl=Xl.next=e,Xl}function ro(){if(null===Yl){var e=Kl.alternate;e=null!==e?e.memoizedState:null}else e=Yl.next;var t=null===Xl?Kl.memoizedState:Xl.next;if(null!==t)Xl=t,Yl=e;else{if(null===e)throw Error(o(310));e={memoizedState:(Yl=e).memoizedState,baseState:Yl.baseState,baseQueue:Yl.baseQueue,queue:Yl.queue,next:null},null===Xl?Kl.memoizedState=Xl=e:Xl=Xl.next=e}return Xl}function ao(e,t){return"function"==typeof t?t(e):t}function lo(e){var t=ro(),n=t.queue;if(null===n)throw Error(o(311));n.lastRenderedReducer=e;var r=Yl,a=r.baseQueue,l=n.pending;if(null!==l){if(null!==a){var i=a.next;a.next=l.next,l.next=i}r.baseQueue=a=l,n.pending=null}if(null!==a){a=a.next,r=r.baseState;var u=i=l=null,s=a;do{var c=s.lane;if((ql&c)===c)null!==u&&(u=u.next={lane:0,action:s.action,eagerReducer:s.eagerReducer,eagerState:s.eagerState,next:null}),r=s.eagerReducer===e?s.eagerState:e(r,s.action);else{var f={lane:c,action:s.action,eagerReducer:s.eagerReducer,eagerState:s.eagerState,next:null};null===u?(i=u=f,l=r):u=u.next=f,Kl.lanes|=c,Mi|=c}s=s.next}while(null!==s&&s!==a);null===u?l=r:u.next=i,or(r,t.memoizedState)||(Oo=!0),t.memoizedState=r,t.baseState=l,t.baseQueue=u,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function oo(e){var t=ro(),n=t.queue;if(null===n)throw Error(o(311));n.lastRenderedReducer=e;var r=n.dispatch,a=n.pending,l=t.memoizedState;if(null!==a){n.pending=null;var i=a=a.next;do{l=e(l,i.action),i=i.next}while(i!==a);or(l,t.memoizedState)||(Oo=!0),t.memoizedState=l,null===t.baseQueue&&(t.baseState=l),n.lastRenderedState=l}return[l,r]}function io(e,t,n){var r=t._getVersion;r=r(t._source);var a=t._workInProgressVersionPrimary;if(null!==a?e=a===r:(e=e.mutableReadLanes,(e=(ql&e)===e)&&(t._workInProgressVersionPrimary=r,Hl.push(t))),e)return n(t._source);throw Hl.push(t),Error(o(350))}function uo(e,t,n,r){var a=Ci;if(null===a)throw Error(o(349));var l=t._getVersion,i=l(t._source),u=$l.current,s=u.useState((function(){return io(a,t,n)})),c=s[1],f=s[0];s=Xl;var d=e.memoizedState,p=d.refs,m=p.getSnapshot,h=d.source;d=d.subscribe;var y=Kl;return e.memoizedState={refs:p,source:t,subscribe:r},u.useEffect((function(){p.getSnapshot=n,p.setSnapshot=c;var e=l(t._source);if(!or(i,e)){e=n(t._source),or(f,e)||(c(e),e=ou(y),a.mutableReadLanes|=e&a.pendingLanes),e=a.mutableReadLanes,a.entangledLanes|=e;for(var r=a.entanglements,o=e;0<o;){var u=31-Ht(o),s=1<<u;r[u]|=e,o&=~s}}}),[n,t,r]),u.useEffect((function(){return r(t._source,(function(){var e=p.getSnapshot,n=p.setSnapshot;try{n(e(t._source));var r=ou(y);a.mutableReadLanes|=r&a.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,r]),or(m,n)&&or(h,t)&&or(d,r)||((e={pending:null,dispatch:null,lastRenderedReducer:ao,lastRenderedState:f}).dispatch=c=Co.bind(null,Kl,e),s.queue=e,s.baseQueue=null,f=io(a,t,n),s.memoizedState=s.baseState=f),f}function so(e,t,n){return uo(ro(),e,t,n)}function co(e){var t=no();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ao,lastRenderedState:e}).dispatch=Co.bind(null,Kl,e),[t.memoizedState,e]}function fo(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=Kl.updateQueue)?(t={lastEffect:null},Kl.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function po(e){return e={current:e},no().memoizedState=e}function mo(){return ro().memoizedState}function ho(e,t,n,r){var a=no();Kl.flags|=e,a.memoizedState=fo(1|t,n,void 0,void 0===r?null:r)}function yo(e,t,n,r){var a=ro();r=void 0===r?null:r;var l=void 0;if(null!==Yl){var o=Yl.memoizedState;if(l=o.destroy,null!==r&&eo(r,o.deps))return void fo(t,n,l,r)}Kl.flags|=e,a.memoizedState=fo(1|t,n,l,r)}function vo(e,t){return ho(516,4,e,t)}function go(e,t){return yo(516,4,e,t)}function bo(e,t){return yo(4,2,e,t)}function wo(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function ko(e,t,n){return n=null!=n?n.concat([e]):null,yo(4,2,wo.bind(null,t,e),n)}function Eo(){}function So(e,t){var n=ro();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&eo(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function _o(e,t){var n=ro();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&eo(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function xo(e,t){var n=Ua();Ba(98>n?98:n,(function(){e(!0)})),Ba(97<n?97:n,(function(){var n=Wl.transition;Wl.transition=1;try{e(!1),t()}finally{Wl.transition=n}}))}function Co(e,t,n){var r=lu(),a=ou(e),l={lane:a,action:n,eagerReducer:null,eagerState:null,next:null},o=t.pending;if(null===o?l.next=l:(l.next=o.next,o.next=l),t.pending=l,o=e.alternate,e===Kl||null!==o&&o===Kl)Jl=Gl=!0;else{if(0===e.lanes&&(null===o||0===o.lanes)&&null!==(o=t.lastRenderedReducer))try{var i=t.lastRenderedState,u=o(i,n);if(l.eagerReducer=o,l.eagerState=u,or(u,i))return}catch(e){}iu(e,a,r)}}var Po={readContext:tl,useCallback:Zl,useContext:Zl,useEffect:Zl,useImperativeHandle:Zl,useLayoutEffect:Zl,useMemo:Zl,useReducer:Zl,useRef:Zl,useState:Zl,useDebugValue:Zl,useDeferredValue:Zl,useTransition:Zl,useMutableSource:Zl,useOpaqueIdentifier:Zl,unstable_isNewReconciler:!1},To={readContext:tl,useCallback:function(e,t){return no().memoizedState=[e,void 0===t?null:t],e},useContext:tl,useEffect:vo,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,ho(4,2,wo.bind(null,t,e),n)},useLayoutEffect:function(e,t){return ho(4,2,e,t)},useMemo:function(e,t){var n=no();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=no();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Co.bind(null,Kl,e),[r.memoizedState,e]},useRef:po,useState:co,useDebugValue:Eo,useDeferredValue:function(e){var t=co(e),n=t[0],r=t[1];return vo((function(){var t=Wl.transition;Wl.transition=1;try{r(e)}finally{Wl.transition=t}}),[e]),n},useTransition:function(){var e=co(!1),t=e[0];return po(e=xo.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var r=no();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},uo(r,e,t,n)},useOpaqueIdentifier:function(){if(Dl){var e=!1,t=function(e){return{$$typeof:R,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+($r++).toString(36))),Error(o(355))})),n=co(t)[1];return 0==(2&Kl.mode)&&(Kl.flags|=516,fo(5,(function(){n("r:"+($r++).toString(36))}),void 0,null)),t}return co(t="r:"+($r++).toString(36)),t},unstable_isNewReconciler:!1},No={readContext:tl,useCallback:So,useContext:tl,useEffect:go,useImperativeHandle:ko,useLayoutEffect:bo,useMemo:_o,useReducer:lo,useRef:mo,useState:function(){return lo(ao)},useDebugValue:Eo,useDeferredValue:function(e){var t=lo(ao),n=t[0],r=t[1];return go((function(){var t=Wl.transition;Wl.transition=1;try{r(e)}finally{Wl.transition=t}}),[e]),n},useTransition:function(){var e=lo(ao)[0];return[mo().current,e]},useMutableSource:so,useOpaqueIdentifier:function(){return lo(ao)[0]},unstable_isNewReconciler:!1},Lo={readContext:tl,useCallback:So,useContext:tl,useEffect:go,useImperativeHandle:ko,useLayoutEffect:bo,useMemo:_o,useReducer:oo,useRef:mo,useState:function(){return oo(ao)},useDebugValue:Eo,useDeferredValue:function(e){var t=oo(ao),n=t[0],r=t[1];return go((function(){var t=Wl.transition;Wl.transition=1;try{r(e)}finally{Wl.transition=t}}),[e]),n},useTransition:function(){var e=oo(ao)[0];return[mo().current,e]},useMutableSource:so,useOpaqueIdentifier:function(){return oo(ao)[0]},unstable_isNewReconciler:!1},zo=k.ReactCurrentOwner,Oo=!1;function Io(e,t,n,r){t.child=null===e?El(t,null,n,r):kl(t,e.child,n,r)}function Mo(e,t,n,r,a){n=n.render;var l=t.ref;return el(t,a),r=to(e,t,n,r,l,a),null===e||Oo?(t.flags|=1,Io(e,t,r,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ei(e,t,a))}function Ro(e,t,n,r,a,l){if(null===e){var o=n.type;return"function"!=typeof o||ju(o)||void 0!==o.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Au(n.type,null,r,t,t.mode,l)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=o,Do(e,t,o,r,a,l))}return o=e.child,0==(a&l)&&(a=o.memoizedProps,(n=null!==(n=n.compare)?n:ur)(a,r)&&e.ref===t.ref)?ei(e,t,l):(t.flags|=1,(e=Uu(o,r)).ref=t.ref,e.return=t,t.child=e)}function Do(e,t,n,r,a,l){if(null!==e&&ur(e.memoizedProps,r)&&e.ref===t.ref){if(Oo=!1,0==(l&a))return t.lanes=e.lanes,ei(e,t,l);0!=(16384&e.flags)&&(Oo=!0)}return Uo(e,t,n,r,l)}function Fo(e,t,n){var r=t.pendingProps,a=r.children,l=null!==e?e.memoizedState:null;if("hidden"===r.mode||"unstable-defer-without-hiding"===r.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},hu(t,n);else{if(0==(1073741824&n))return e=null!==l?l.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},hu(t,e),null;t.memoizedState={baseLanes:0},hu(t,null!==l?l.baseLanes:n)}else null!==l?(r=l.baseLanes|n,t.memoizedState=null):r=n,hu(t,r);return Io(e,t,a,n),t.child}function jo(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Uo(e,t,n,r,a){var l=da(n)?ca:ua.current;return l=fa(t,l),el(t,a),n=to(e,t,n,r,l,a),null===e||Oo?(t.flags|=1,Io(e,t,n,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ei(e,t,a))}function Ao(e,t,n,r,a){if(da(n)){var l=!0;ya(t)}else l=!1;if(el(t,a),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),ml(t,n,r),yl(t,n,r,a),r=!0;else if(null===e){var o=t.stateNode,i=t.memoizedProps;o.props=i;var u=o.context,s=n.contextType;"object"==typeof s&&null!==s?s=tl(s):s=fa(t,s=da(n)?ca:ua.current);var c=n.getDerivedStateFromProps,f="function"==typeof c||"function"==typeof o.getSnapshotBeforeUpdate;f||"function"!=typeof o.UNSAFE_componentWillReceiveProps&&"function"!=typeof o.componentWillReceiveProps||(i!==r||u!==s)&&hl(t,o,r,s),nl=!1;var d=t.memoizedState;o.state=d,ul(t,r,o,a),u=t.memoizedState,i!==r||d!==u||sa.current||nl?("function"==typeof c&&(fl(t,n,c,r),u=t.memoizedState),(i=nl||pl(t,n,i,r,d,u,s))?(f||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||("function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount()),"function"==typeof o.componentDidMount&&(t.flags|=4)):("function"==typeof o.componentDidMount&&(t.flags|=4),t.memoizedProps=r,t.memoizedState=u),o.props=r,o.state=u,o.context=s,r=i):("function"==typeof o.componentDidMount&&(t.flags|=4),r=!1)}else{o=t.stateNode,al(e,t),i=t.memoizedProps,s=t.type===t.elementType?i:Wa(t.type,i),o.props=s,f=t.pendingProps,d=o.context,"object"==typeof(u=n.contextType)&&null!==u?u=tl(u):u=fa(t,u=da(n)?ca:ua.current);var p=n.getDerivedStateFromProps;(c="function"==typeof p||"function"==typeof o.getSnapshotBeforeUpdate)||"function"!=typeof o.UNSAFE_componentWillReceiveProps&&"function"!=typeof o.componentWillReceiveProps||(i!==f||d!==u)&&hl(t,o,r,u),nl=!1,d=t.memoizedState,o.state=d,ul(t,r,o,a);var m=t.memoizedState;i!==f||d!==m||sa.current||nl?("function"==typeof p&&(fl(t,n,p,r),m=t.memoizedState),(s=nl||pl(t,n,s,r,d,m,u))?(c||"function"!=typeof o.UNSAFE_componentWillUpdate&&"function"!=typeof o.componentWillUpdate||("function"==typeof o.componentWillUpdate&&o.componentWillUpdate(r,m,u),"function"==typeof o.UNSAFE_componentWillUpdate&&o.UNSAFE_componentWillUpdate(r,m,u)),"function"==typeof o.componentDidUpdate&&(t.flags|=4),"function"==typeof o.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof o.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof o.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=256),t.memoizedProps=r,t.memoizedState=m),o.props=r,o.state=m,o.context=u,r=s):("function"!=typeof o.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof o.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=256),r=!1)}return Bo(e,t,n,r,l,a)}function Bo(e,t,n,r,a,l){jo(e,t);var o=0!=(64&t.flags);if(!r&&!o)return a&&va(t,n,!1),ei(e,t,l);r=t.stateNode,zo.current=t;var i=o&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&o?(t.child=kl(t,e.child,null,l),t.child=kl(t,null,i,l)):Io(e,t,i,l),t.memoizedState=r.state,a&&va(t,n,!0),t.child}function Vo(e){var t=e.stateNode;t.pendingContext?ma(0,t.pendingContext,t.pendingContext!==t.context):t.context&&ma(0,t.context,!1),Tl(e,t.containerInfo)}var Ho,Qo,$o,Wo={dehydrated:null,retryLane:0};function qo(e,t,n){var r,a=t.pendingProps,l=Ol.current,o=!1;return(r=0!=(64&t.flags))||(r=(null===e||null!==e.memoizedState)&&0!=(2&l)),r?(o=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===a.fallback||!0===a.unstable_avoidThisFallback||(l|=1),oa(Ol,1&l),null===e?(void 0!==a.fallback&&Ul(t),e=a.children,l=a.fallback,o?(e=Ko(t,e,l,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Wo,e):"number"==typeof a.unstable_expectedLoadTime?(e=Ko(t,e,l,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Wo,t.lanes=33554432,e):((n=Vu({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,o?(a=Xo(e,t,a.children,a.fallback,n),o=t.child,l=e.child.memoizedState,o.memoizedState=null===l?{baseLanes:n}:{baseLanes:l.baseLanes|n},o.childLanes=e.childLanes&~n,t.memoizedState=Wo,a):(n=Yo(e,t,a.children,n),t.memoizedState=null,n))}function Ko(e,t,n,r){var a=e.mode,l=e.child;return t={mode:"hidden",children:t},0==(2&a)&&null!==l?(l.childLanes=0,l.pendingProps=t):l=Vu(t,a,0,null),n=Bu(n,a,r,null),l.return=e,n.return=e,l.sibling=n,e.child=l,n}function Yo(e,t,n,r){var a=e.child;return e=a.sibling,n=Uu(a,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}function Xo(e,t,n,r,a){var l=t.mode,o=e.child;e=o.sibling;var i={mode:"hidden",children:n};return 0==(2&l)&&t.child!==o?((n=t.child).childLanes=0,n.pendingProps=i,null!==(o=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=o,o.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Uu(o,i),null!==e?r=Uu(e,r):(r=Bu(r,l,a,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}function Go(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),Za(e.return,t)}function Jo(e,t,n,r,a,l){var o=e.memoizedState;null===o?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:a,lastEffect:l}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=a,o.lastEffect=l)}function Zo(e,t,n){var r=t.pendingProps,a=r.revealOrder,l=r.tail;if(Io(e,t,r.children,n),0!=(2&(r=Ol.current)))r=1&r|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Go(e,n);else if(19===e.tag)Go(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(oa(Ol,r),0==(2&t.mode))t.memoizedState=null;else switch(a){case"forwards":for(n=t.child,a=null;null!==n;)null!==(e=n.alternate)&&null===Il(e)&&(a=n),n=n.sibling;null===(n=a)?(a=t.child,t.child=null):(a=n.sibling,n.sibling=null),Jo(t,!1,a,n,l,t.lastEffect);break;case"backwards":for(n=null,a=t.child,t.child=null;null!==a;){if(null!==(e=a.alternate)&&null===Il(e)){t.child=a;break}e=a.sibling,a.sibling=n,n=a,a=e}Jo(t,!0,n,null,l,t.lastEffect);break;case"together":Jo(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function ei(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Mi|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(o(153));if(null!==t.child){for(n=Uu(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Uu(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ti(e,t){if(!Dl)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ni(e,t,n){var r=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:return da(t.type)&&pa(),null;case 3:return Nl(),la(sa),la(ua),Ql(),(r=t.stateNode).pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Bl(t)?t.flags|=4:r.hydrate||(t.flags|=256)),null;case 5:zl(t);var l=Pl(Cl.current);if(n=t.type,null!==e&&null!=t.stateNode)Qo(e,t,n,r),e.ref!==t.ref&&(t.flags|=128);else{if(!r){if(null===t.stateNode)throw Error(o(166));return null}if(e=Pl(_l.current),Bl(t)){r=t.stateNode,n=t.type;var i=t.memoizedProps;switch(r[qr]=t,r[Kr]=i,n){case"dialog":xr("cancel",r),xr("close",r);break;case"iframe":case"object":case"embed":xr("load",r);break;case"video":case"audio":for(e=0;e<kr.length;e++)xr(kr[e],r);break;case"source":xr("error",r);break;case"img":case"image":case"link":xr("error",r),xr("load",r);break;case"details":xr("toggle",r);break;case"input":ee(r,i),xr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!i.multiple},xr("invalid",r);break;case"textarea":ue(r,i),xr("invalid",r)}for(var s in Se(n,i),e=null,i)i.hasOwnProperty(s)&&(l=i[s],"children"===s?"string"==typeof l?r.textContent!==l&&(e=["children",l]):"number"==typeof l&&r.textContent!==""+l&&(e=["children",""+l]):u.hasOwnProperty(s)&&null!=l&&"onScroll"===s&&xr("scroll",r));switch(n){case"input":X(r),re(r,i,!0);break;case"textarea":X(r),ce(r);break;case"select":case"option":break;default:"function"==typeof i.onClick&&(r.onclick=Rr)}r=e,t.updateQueue=r,null!==r&&(t.flags|=4)}else{switch(s=9===l.nodeType?l:l.ownerDocument,e===fe&&(e=pe(n)),e===fe?"script"===n?((e=s.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),"select"===n&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[qr]=t,e[Kr]=r,Ho(e,t),t.stateNode=e,s=_e(n,r),n){case"dialog":xr("cancel",e),xr("close",e),l=r;break;case"iframe":case"object":case"embed":xr("load",e),l=r;break;case"video":case"audio":for(l=0;l<kr.length;l++)xr(kr[l],e);l=r;break;case"source":xr("error",e),l=r;break;case"img":case"image":case"link":xr("error",e),xr("load",e),l=r;break;case"details":xr("toggle",e),l=r;break;case"input":ee(e,r),l=Z(e,r),xr("invalid",e);break;case"option":l=le(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},l=a({},r,{value:void 0}),xr("invalid",e);break;case"textarea":ue(e,r),l=ie(e,r),xr("invalid",e);break;default:l=r}Se(n,l);var c=l;for(i in c)if(c.hasOwnProperty(i)){var f=c[i];"style"===i?ke(e,f):"dangerouslySetInnerHTML"===i?null!=(f=f?f.__html:void 0)&&ye(e,f):"children"===i?"string"==typeof f?("textarea"!==n||""!==f)&&ve(e,f):"number"==typeof f&&ve(e,""+f):"suppressContentEditableWarning"!==i&&"suppressHydrationWarning"!==i&&"autoFocus"!==i&&(u.hasOwnProperty(i)?null!=f&&"onScroll"===i&&xr("scroll",e):null!=f&&w(e,i,f,s))}switch(n){case"input":X(e),re(e,r,!1);break;case"textarea":X(e),ce(e);break;case"option":null!=r.value&&e.setAttribute("value",""+K(r.value));break;case"select":e.multiple=!!r.multiple,null!=(i=r.value)?oe(e,!!r.multiple,i,!1):null!=r.defaultValue&&oe(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof l.onClick&&(e.onclick=Rr)}jr(n,r)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)$o(0,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(o(166));n=Pl(Cl.current),Pl(_l.current),Bl(t)?(r=t.stateNode,n=t.memoizedProps,r[qr]=t,r.nodeValue!==n&&(t.flags|=4)):((r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[qr]=t,t.stateNode=r)}return null;case 13:return la(Ol),r=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Bl(t):n=null!==e.memoizedState,r&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Ol.current)?0===zi&&(zi=3):(0!==zi&&3!==zi||(zi=4),null===Ci||0==(134217727&Mi)&&0==(134217727&Ri)||fu(Ci,Ti))),(r||n)&&(t.flags|=4),null);case 4:return Nl(),null===e&&Pr(t.stateNode.containerInfo),null;case 10:return Ja(t),null;case 17:return da(t.type)&&pa(),null;case 19:if(la(Ol),null===(r=t.memoizedState))return null;if(i=0!=(64&t.flags),null===(s=r.rendering))if(i)ti(r,!1);else{if(0!==zi||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(s=Il(e))){for(t.flags|=64,ti(r,!1),null!==(i=s.updateQueue)&&(t.updateQueue=i,t.flags|=4),null===r.lastEffect&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=n,n=t.child;null!==n;)e=r,(i=n).flags&=2,i.nextEffect=null,i.firstEffect=null,i.lastEffect=null,null===(s=i.alternate)?(i.childLanes=0,i.lanes=e,i.child=null,i.memoizedProps=null,i.memoizedState=null,i.updateQueue=null,i.dependencies=null,i.stateNode=null):(i.childLanes=s.childLanes,i.lanes=s.lanes,i.child=s.child,i.memoizedProps=s.memoizedProps,i.memoizedState=s.memoizedState,i.updateQueue=s.updateQueue,i.type=s.type,e=s.dependencies,i.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return oa(Ol,1&Ol.current|2),t.child}e=e.sibling}null!==r.tail&&ja()>Ui&&(t.flags|=64,i=!0,ti(r,!1),t.lanes=33554432)}else{if(!i)if(null!==(e=Il(s))){if(t.flags|=64,i=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ti(r,!0),null===r.tail&&"hidden"===r.tailMode&&!s.alternate&&!Dl)return null!==(t=t.lastEffect=r.lastEffect)&&(t.nextEffect=null),null}else 2*ja()-r.renderingStartTime>Ui&&1073741824!==n&&(t.flags|=64,i=!0,ti(r,!1),t.lanes=33554432);r.isBackwards?(s.sibling=t.child,t.child=s):(null!==(n=r.last)?n.sibling=s:t.child=s,r.last=s)}return null!==r.tail?(n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=ja(),n.sibling=null,t=Ol.current,oa(Ol,i?1&t|2:1&t),n):null;case 23:case 24:return yu(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==r.mode&&(t.flags|=4),null}throw Error(o(156,t.tag))}function ri(e){switch(e.tag){case 1:da(e.type)&&pa();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Nl(),la(sa),la(ua),Ql(),0!=(64&(t=e.flags)))throw Error(o(285));return e.flags=-4097&t|64,e;case 5:return zl(e),null;case 13:return la(Ol),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return la(Ol),null;case 4:return Nl(),null;case 10:return Ja(e),null;case 23:case 24:return yu(),null;default:return null}}function ai(e,t){try{var n="",r=t;do{n+=W(r),r=r.return}while(r);var a=n}catch(e){a="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:a}}function li(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}Ho=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Qo=function(e,t,n,r){var l=e.memoizedProps;if(l!==r){e=t.stateNode,Pl(_l.current);var o,i=null;switch(n){case"input":l=Z(e,l),r=Z(e,r),i=[];break;case"option":l=le(e,l),r=le(e,r),i=[];break;case"select":l=a({},l,{value:void 0}),r=a({},r,{value:void 0}),i=[];break;case"textarea":l=ie(e,l),r=ie(e,r),i=[];break;default:"function"!=typeof l.onClick&&"function"==typeof r.onClick&&(e.onclick=Rr)}for(f in Se(n,r),n=null,l)if(!r.hasOwnProperty(f)&&l.hasOwnProperty(f)&&null!=l[f])if("style"===f){var s=l[f];for(o in s)s.hasOwnProperty(o)&&(n||(n={}),n[o]="")}else"dangerouslySetInnerHTML"!==f&&"children"!==f&&"suppressContentEditableWarning"!==f&&"suppressHydrationWarning"!==f&&"autoFocus"!==f&&(u.hasOwnProperty(f)?i||(i=[]):(i=i||[]).push(f,null));for(f in r){var c=r[f];if(s=null!=l?l[f]:void 0,r.hasOwnProperty(f)&&c!==s&&(null!=c||null!=s))if("style"===f)if(s){for(o in s)!s.hasOwnProperty(o)||c&&c.hasOwnProperty(o)||(n||(n={}),n[o]="");for(o in c)c.hasOwnProperty(o)&&s[o]!==c[o]&&(n||(n={}),n[o]=c[o])}else n||(i||(i=[]),i.push(f,n)),n=c;else"dangerouslySetInnerHTML"===f?(c=c?c.__html:void 0,s=s?s.__html:void 0,null!=c&&s!==c&&(i=i||[]).push(f,c)):"children"===f?"string"!=typeof c&&"number"!=typeof c||(i=i||[]).push(f,""+c):"suppressContentEditableWarning"!==f&&"suppressHydrationWarning"!==f&&(u.hasOwnProperty(f)?(null!=c&&"onScroll"===f&&xr("scroll",e),i||s===c||(i=[])):"object"==typeof c&&null!==c&&c.$$typeof===R?c.toString():(i=i||[]).push(f,c))}n&&(i=i||[]).push("style",n);var f=i;(t.updateQueue=f)&&(t.flags|=4)}},$o=function(e,t,n,r){n!==r&&(t.flags|=4)};var oi="function"==typeof WeakMap?WeakMap:Map;function ii(e,t,n){(n=ll(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Hi||(Hi=!0,Qi=r),li(0,t)},n}function ui(e,t,n){(n=ll(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var a=t.value;n.payload=function(){return li(0,t),r(a)}}var l=e.stateNode;return null!==l&&"function"==typeof l.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===$i?$i=new Set([this]):$i.add(this),li(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var si="function"==typeof WeakSet?WeakSet:Set;function ci(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){Iu(e,t)}else t.current=null}function fi(e,t){switch(t.tag){case 0:case 11:case 15:case 22:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Wa(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Vr(t.stateNode.containerInfo));case 5:case 6:case 4:case 17:return}throw Error(o(163))}function di(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var r=e.create;e.destroy=r()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var a=e;r=a.next,0!=(4&(a=a.tag))&&0!=(1&a)&&(Lu(n,e),Nu(n,e)),e=r}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(r=n.elementType===n.type?t.memoizedProps:Wa(n.type,t.memoizedProps),e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&sl(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:e=n.child.stateNode;break;case 1:e=n.child.stateNode}sl(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&jr(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&kt(n)))));case 19:case 17:case 20:case 21:case 23:case 24:return}throw Error(o(163))}function pi(e,t){for(var n=e;;){if(5===n.tag){var r=n.stateNode;if(t)"function"==typeof(r=r.style).setProperty?r.setProperty("display","none","important"):r.display="none";else{r=n.stateNode;var a=n.memoizedProps.style;a=null!=a&&a.hasOwnProperty("display")?a.display:null,r.style.display=we("display",a)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function mi(e,t){if(ba&&"function"==typeof ba.onCommitFiberUnmount)try{ba.onCommitFiberUnmount(ga,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var r=n,a=r.destroy;if(r=r.tag,void 0!==a)if(0!=(4&r))Lu(t,n);else{r=t;try{a()}catch(e){Iu(r,e)}}n=n.next}while(n!==e)}break;case 1:if(ci(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){Iu(t,e)}break;case 5:ci(t);break;case 4:gi(e,t)}}function hi(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function yi(e){return 5===e.tag||3===e.tag||4===e.tag}function vi(e){e:{for(var t=e.return;null!==t;){if(yi(t))break e;t=t.return}throw Error(o(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(o(161))}16&n.flags&&(ve(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||yi(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}r?function e(t,n,r){var a=t.tag,l=5===a||6===a;if(l)t=l?t.stateNode:t.stateNode.instance,n?8===r.nodeType?r.parentNode.insertBefore(t,n):r.insertBefore(t,n):(8===r.nodeType?(n=r.parentNode).insertBefore(t,r):(n=r).appendChild(t),null!==(r=r._reactRootContainer)&&void 0!==r||null!==n.onclick||(n.onclick=Rr));else if(4!==a&&null!==(t=t.child))for(e(t,n,r),t=t.sibling;null!==t;)e(t,n,r),t=t.sibling}(e,n,t):function e(t,n,r){var a=t.tag,l=5===a||6===a;if(l)t=l?t.stateNode:t.stateNode.instance,n?r.insertBefore(t,n):r.appendChild(t);else if(4!==a&&null!==(t=t.child))for(e(t,n,r),t=t.sibling;null!==t;)e(t,n,r),t=t.sibling}(e,n,t)}function gi(e,t){for(var n,r,a=t,l=!1;;){if(!l){l=a.return;e:for(;;){if(null===l)throw Error(o(160));switch(n=l.stateNode,l.tag){case 5:r=!1;break e;case 3:case 4:n=n.containerInfo,r=!0;break e}l=l.return}l=!0}if(5===a.tag||6===a.tag){e:for(var i=e,u=a,s=u;;)if(mi(i,s),null!==s.child&&4!==s.tag)s.child.return=s,s=s.child;else{if(s===u)break e;for(;null===s.sibling;){if(null===s.return||s.return===u)break e;s=s.return}s.sibling.return=s.return,s=s.sibling}r?(i=n,u=a.stateNode,8===i.nodeType?i.parentNode.removeChild(u):i.removeChild(u)):n.removeChild(a.stateNode)}else if(4===a.tag){if(null!==a.child){n=a.stateNode.containerInfo,r=!0,a.child.return=a,a=a.child;continue}}else if(mi(e,a),null!==a.child){a.child.return=a,a=a.child;continue}if(a===t)break;for(;null===a.sibling;){if(null===a.return||a.return===t)return;4===(a=a.return).tag&&(l=!1)}a.sibling.return=a.return,a=a.sibling}}function bi(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var r=n=n.next;do{3==(3&r.tag)&&(e=r.destroy,r.destroy=void 0,void 0!==e&&e()),r=r.next}while(r!==n)}return;case 1:return;case 5:if(null!=(n=t.stateNode)){r=t.memoizedProps;var a=null!==e?e.memoizedProps:r;e=t.type;var l=t.updateQueue;if(t.updateQueue=null,null!==l){for(n[Kr]=r,"input"===e&&"radio"===r.type&&null!=r.name&&te(n,r),_e(e,a),t=_e(e,r),a=0;a<l.length;a+=2){var i=l[a],u=l[a+1];"style"===i?ke(n,u):"dangerouslySetInnerHTML"===i?ye(n,u):"children"===i?ve(n,u):w(n,i,u,t)}switch(e){case"input":ne(n,r);break;case"textarea":se(n,r);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(l=r.value)?oe(n,!!r.multiple,l,!1):e!==!!r.multiple&&(null!=r.defaultValue?oe(n,!!r.multiple,r.defaultValue,!0):oe(n,!!r.multiple,r.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(o(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,kt(n.containerInfo)));case 12:return;case 13:return null!==t.memoizedState&&(ji=ja(),pi(t.child,!0)),void wi(t);case 19:return void wi(t);case 17:return;case 23:case 24:return void pi(t,null!==t.memoizedState)}throw Error(o(163))}function wi(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new si),t.forEach((function(t){var r=Ru.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function ki(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&(null!==(t=t.memoizedState)&&null===t.dehydrated)}var Ei=Math.ceil,Si=k.ReactCurrentDispatcher,_i=k.ReactCurrentOwner,xi=0,Ci=null,Pi=null,Ti=0,Ni=0,Li=aa(0),zi=0,Oi=null,Ii=0,Mi=0,Ri=0,Di=0,Fi=null,ji=0,Ui=1/0;function Ai(){Ui=ja()+500}var Bi,Vi=null,Hi=!1,Qi=null,$i=null,Wi=!1,qi=null,Ki=90,Yi=[],Xi=[],Gi=null,Ji=0,Zi=null,eu=-1,tu=0,nu=0,ru=null,au=!1;function lu(){return 0!=(48&xi)?ja():-1!==eu?eu:eu=ja()}function ou(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ua()?1:2;if(0===tu&&(tu=Ii),0!==$a.transition){0!==nu&&(nu=null!==Fi?Fi.pendingLanes:0),e=tu;var t=4186112&~nu;return 0===(t&=-t)&&(0===(t=(e=4186112&~e)&-e)&&(t=8192)),t}return e=Ua(),0!=(4&xi)&&98===e?e=Ut(12,tu):e=Ut(e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),tu),e}function iu(e,t,n){if(50<Ji)throw Ji=0,Zi=null,Error(o(185));if(null===(e=uu(e,t)))return null;Vt(e,t,n),e===Ci&&(Ri|=t,4===zi&&fu(e,Ti));var r=Ua();1===t?0!=(8&xi)&&0==(48&xi)?du(e):(su(e,n),0===xi&&(Ai(),Ha())):(0==(4&xi)||98!==r&&99!==r||(null===Gi?Gi=new Set([e]):Gi.add(e)),su(e,n)),Fi=e}function uu(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function su(e,t){for(var n=e.callbackNode,r=e.suspendedLanes,a=e.pingedLanes,l=e.expirationTimes,i=e.pendingLanes;0<i;){var u=31-Ht(i),s=1<<u,c=l[u];if(-1===c){if(0==(s&r)||0!=(s&a)){c=t,Dt(s);var f=Rt;l[u]=10<=f?c+250:6<=f?c+5e3:-1}}else c<=t&&(e.expiredLanes|=s);i&=~s}if(r=Ft(e,e===Ci?Ti:0),t=Rt,0===r)null!==n&&(n!==Oa&&Ea(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Oa&&Ea(n)}15===t?(n=du.bind(null,e),null===Ma?(Ma=[n],Ra=ka(Pa,Qa)):Ma.push(n),n=Oa):14===t?n=Va(99,du.bind(null,e)):n=Va(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(o(358,e))}}(t),cu.bind(null,e)),e.callbackPriority=t,e.callbackNode=n}}function cu(e){if(eu=-1,nu=tu=0,0!=(48&xi))throw Error(o(327));var t=e.callbackNode;if(Tu()&&e.callbackNode!==t)return null;var n=Ft(e,e===Ci?Ti:0);if(0===n)return null;var r=n,a=xi;xi|=16;var l=bu();for(Ci===e&&Ti===r||(Ai(),vu(e,r));;)try{Eu();break}catch(t){gu(e,t)}if(Ga(),Si.current=l,xi=a,null!==Pi?r=0:(Ci=null,Ti=0,r=zi),0!=(Ii&Ri))vu(e,0);else if(0!==r){if(2===r&&(xi|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(n=jt(e))&&(r=wu(e,n))),1===r)throw t=Oi,vu(e,0),fu(e,n),su(e,ja()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,r){case 0:case 1:throw Error(o(345));case 2:xu(e);break;case 3:if(fu(e,n),(62914560&n)===n&&10<(r=ji+500-ja())){if(0!==Ft(e,0))break;if(((a=e.suspendedLanes)&n)!==n){lu(),e.pingedLanes|=e.suspendedLanes&a;break}e.timeoutHandle=Ar(xu.bind(null,e),r);break}xu(e);break;case 4:if(fu(e,n),(4186112&n)===n)break;for(r=e.eventTimes,a=-1;0<n;){var i=31-Ht(n);l=1<<i,(i=r[i])>a&&(a=i),n&=~l}if(n=a,10<(n=(120>(n=ja()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ei(n/1960))-n)){e.timeoutHandle=Ar(xu.bind(null,e),n);break}xu(e);break;case 5:xu(e);break;default:throw Error(o(329))}}return su(e,ja()),e.callbackNode===t?cu.bind(null,e):null}function fu(e,t){for(t&=~Di,t&=~Ri,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Ht(t),r=1<<n;e[n]=-1,t&=~r}}function du(e){if(0!=(48&xi))throw Error(o(327));if(Tu(),e===Ci&&0!=(e.expiredLanes&Ti)){var t=Ti,n=wu(e,t);0!=(Ii&Ri)&&(n=wu(e,t=Ft(e,t)))}else n=wu(e,t=Ft(e,0));if(0!==e.tag&&2===n&&(xi|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(t=jt(e))&&(n=wu(e,t))),1===n)throw n=Oi,vu(e,0),fu(e,t),su(e,ja()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,xu(e),su(e,ja()),null}function pu(e,t){var n=xi;xi|=1;try{return e(t)}finally{0===(xi=n)&&(Ai(),Ha())}}function mu(e,t){var n=xi;xi&=-2,xi|=8;try{return e(t)}finally{0===(xi=n)&&(Ai(),Ha())}}function hu(e,t){oa(Li,Ni),Ni|=t,Ii|=t}function yu(){Ni=Li.current,la(Li)}function vu(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Br(n)),null!==Pi)for(n=Pi.return;null!==n;){var r=n;switch(r.tag){case 1:null!=(r=r.type.childContextTypes)&&pa();break;case 3:Nl(),la(sa),la(ua),Ql();break;case 5:zl(r);break;case 4:Nl();break;case 13:case 19:la(Ol);break;case 10:Ja(r);break;case 23:case 24:yu()}n=n.return}Ci=e,Pi=Uu(e.current,null),Ti=Ni=Ii=t,zi=0,Oi=null,Di=Ri=Mi=0}function gu(e,t){for(;;){var n=Pi;try{if(Ga(),$l.current=Po,Gl){for(var r=Kl.memoizedState;null!==r;){var a=r.queue;null!==a&&(a.pending=null),r=r.next}Gl=!1}if(ql=0,Xl=Yl=Kl=null,Jl=!1,_i.current=null,null===n||null===n.return){zi=1,Oi=t,Pi=null;break}e:{var l=e,o=n.return,i=n,u=t;if(t=Ti,i.flags|=2048,i.firstEffect=i.lastEffect=null,null!==u&&"object"==typeof u&&"function"==typeof u.then){var s=u;if(0==(2&i.mode)){var c=i.alternate;c?(i.updateQueue=c.updateQueue,i.memoizedState=c.memoizedState,i.lanes=c.lanes):(i.updateQueue=null,i.memoizedState=null)}var f=0!=(1&Ol.current),d=o;do{var p;if(p=13===d.tag){var m=d.memoizedState;if(null!==m)p=null!==m.dehydrated;else{var h=d.memoizedProps;p=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!f)}}if(p){var y=d.updateQueue;if(null===y){var v=new Set;v.add(s),d.updateQueue=v}else y.add(s);if(0==(2&d.mode)){if(d.flags|=64,i.flags|=16384,i.flags&=-2981,1===i.tag)if(null===i.alternate)i.tag=17;else{var g=ll(-1,1);g.tag=2,ol(i,g)}i.lanes|=1;break e}u=void 0,i=t;var b=l.pingCache;if(null===b?(b=l.pingCache=new oi,u=new Set,b.set(s,u)):void 0===(u=b.get(s))&&(u=new Set,b.set(s,u)),!u.has(i)){u.add(i);var w=Mu.bind(null,l,s,i);s.then(w,w)}d.flags|=4096,d.lanes=t;break e}d=d.return}while(null!==d);u=Error((q(i.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==zi&&(zi=2),u=ai(u,i),d=o;do{switch(d.tag){case 3:l=u,d.flags|=4096,t&=-t,d.lanes|=t,il(d,ii(0,l,t));break e;case 1:l=u;var k=d.type,E=d.stateNode;if(0==(64&d.flags)&&("function"==typeof k.getDerivedStateFromError||null!==E&&"function"==typeof E.componentDidCatch&&(null===$i||!$i.has(E)))){d.flags|=4096,t&=-t,d.lanes|=t,il(d,ui(d,l,t));break e}}d=d.return}while(null!==d)}_u(n)}catch(e){t=e,Pi===n&&null!==n&&(Pi=n=n.return);continue}break}}function bu(){var e=Si.current;return Si.current=Po,null===e?Po:e}function wu(e,t){var n=xi;xi|=16;var r=bu();for(Ci===e&&Ti===t||vu(e,t);;)try{ku();break}catch(t){gu(e,t)}if(Ga(),xi=n,Si.current=r,null!==Pi)throw Error(o(261));return Ci=null,Ti=0,zi}function ku(){for(;null!==Pi;)Su(Pi)}function Eu(){for(;null!==Pi&&!Sa();)Su(Pi)}function Su(e){var t=Bi(e.alternate,e,Ni);e.memoizedProps=e.pendingProps,null===t?_u(e):Pi=t,_i.current=null}function _u(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=ni(n,t,Ni)))return void(Pi=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Ni)||0==(4&n.mode)){for(var r=0,a=n.child;null!==a;)r|=a.lanes|a.childLanes,a=a.sibling;n.childLanes=r}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ri(t)))return n.flags&=2047,void(Pi=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Pi=t);Pi=t=e}while(null!==t);0===zi&&(zi=5)}function xu(e){var t=Ua();return Ba(99,Cu.bind(null,e,t)),null}function Cu(e,t){do{Tu()}while(null!==qi);if(0!=(48&xi))throw Error(o(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(o(177));e.callbackNode=null;var r=n.lanes|n.childLanes,a=r,l=e.pendingLanes&~a;e.pendingLanes=a,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=a,e.mutableReadLanes&=a,e.entangledLanes&=a,a=e.entanglements;for(var i=e.eventTimes,u=e.expirationTimes;0<l;){var s=31-Ht(l),c=1<<s;a[s]=0,i[s]=-1,u[s]=-1,l&=~c}if(null!==Gi&&0==(24&r)&&Gi.has(e)&&Gi.delete(e),e===Ci&&(Pi=Ci=null,Ti=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,r=n.firstEffect):r=n:r=n.firstEffect,null!==r){if(a=xi,xi|=32,_i.current=null,Dr=Kt,dr(i=fr())){if("selectionStart"in i)u={start:i.selectionStart,end:i.selectionEnd};else e:if(u=(u=i.ownerDocument)&&u.defaultView||window,(c=u.getSelection&&u.getSelection())&&0!==c.rangeCount){u=c.anchorNode,l=c.anchorOffset,s=c.focusNode,c=c.focusOffset;try{u.nodeType,s.nodeType}catch(e){u=null;break e}var f=0,d=-1,p=-1,m=0,h=0,y=i,v=null;t:for(;;){for(var g;y!==u||0!==l&&3!==y.nodeType||(d=f+l),y!==s||0!==c&&3!==y.nodeType||(p=f+c),3===y.nodeType&&(f+=y.nodeValue.length),null!==(g=y.firstChild);)v=y,y=g;for(;;){if(y===i)break t;if(v===u&&++m===l&&(d=f),v===s&&++h===c&&(p=f),null!==(g=y.nextSibling))break;v=(y=v).parentNode}y=g}u=-1===d||-1===p?null:{start:d,end:p}}else u=null;u=u||{start:0,end:0}}else u=null;Fr={focusedElem:i,selectionRange:u},Kt=!1,ru=null,au=!1,Vi=r;do{try{Pu()}catch(e){if(null===Vi)throw Error(o(330));Iu(Vi,e),Vi=Vi.nextEffect}}while(null!==Vi);ru=null,Vi=r;do{try{for(i=e;null!==Vi;){var b=Vi.flags;if(16&b&&ve(Vi.stateNode,""),128&b){var w=Vi.alternate;if(null!==w){var k=w.ref;null!==k&&("function"==typeof k?k(null):k.current=null)}}switch(1038&b){case 2:vi(Vi),Vi.flags&=-3;break;case 6:vi(Vi),Vi.flags&=-3,bi(Vi.alternate,Vi);break;case 1024:Vi.flags&=-1025;break;case 1028:Vi.flags&=-1025,bi(Vi.alternate,Vi);break;case 4:bi(Vi.alternate,Vi);break;case 8:gi(i,u=Vi);var E=u.alternate;hi(u),null!==E&&hi(E)}Vi=Vi.nextEffect}}catch(e){if(null===Vi)throw Error(o(330));Iu(Vi,e),Vi=Vi.nextEffect}}while(null!==Vi);if(k=Fr,w=fr(),b=k.focusedElem,i=k.selectionRange,w!==b&&b&&b.ownerDocument&&function e(t,n){return!(!t||!n)&&(t===n||(!t||3!==t.nodeType)&&(n&&3===n.nodeType?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}(b.ownerDocument.documentElement,b)){null!==i&&dr(b)&&(w=i.start,void 0===(k=i.end)&&(k=w),"selectionStart"in b?(b.selectionStart=w,b.selectionEnd=Math.min(k,b.value.length)):(k=(w=b.ownerDocument||document)&&w.defaultView||window).getSelection&&(k=k.getSelection(),u=b.textContent.length,E=Math.min(i.start,u),i=void 0===i.end?E:Math.min(i.end,u),!k.extend&&E>i&&(u=i,i=E,E=u),u=cr(b,E),l=cr(b,i),u&&l&&(1!==k.rangeCount||k.anchorNode!==u.node||k.anchorOffset!==u.offset||k.focusNode!==l.node||k.focusOffset!==l.offset)&&((w=w.createRange()).setStart(u.node,u.offset),k.removeAllRanges(),E>i?(k.addRange(w),k.extend(l.node,l.offset)):(w.setEnd(l.node,l.offset),k.addRange(w))))),w=[];for(k=b;k=k.parentNode;)1===k.nodeType&&w.push({element:k,left:k.scrollLeft,top:k.scrollTop});for("function"==typeof b.focus&&b.focus(),b=0;b<w.length;b++)(k=w[b]).element.scrollLeft=k.left,k.element.scrollTop=k.top}Kt=!!Dr,Fr=Dr=null,e.current=n,Vi=r;do{try{for(b=e;null!==Vi;){var S=Vi.flags;if(36&S&&di(b,Vi.alternate,Vi),128&S){w=void 0;var _=Vi.ref;if(null!==_){var x=Vi.stateNode;switch(Vi.tag){case 5:w=x;break;default:w=x}"function"==typeof _?_(w):_.current=w}}Vi=Vi.nextEffect}}catch(e){if(null===Vi)throw Error(o(330));Iu(Vi,e),Vi=Vi.nextEffect}}while(null!==Vi);Vi=null,Ia(),xi=a}else e.current=n;if(Wi)Wi=!1,qi=e,Ki=t;else for(Vi=r;null!==Vi;)t=Vi.nextEffect,Vi.nextEffect=null,8&Vi.flags&&((S=Vi).sibling=null,S.stateNode=null),Vi=t;if(0===(r=e.pendingLanes)&&($i=null),1===r?e===Zi?Ji++:(Ji=0,Zi=e):Ji=0,n=n.stateNode,ba&&"function"==typeof ba.onCommitFiberRoot)try{ba.onCommitFiberRoot(ga,n,void 0,64==(64&n.current.flags))}catch(e){}if(su(e,ja()),Hi)throw Hi=!1,e=Qi,Qi=null,e;return 0!=(8&xi)||Ha(),null}function Pu(){for(;null!==Vi;){var e=Vi.alternate;au||null===ru||(0!=(8&Vi.flags)?Ze(Vi,ru)&&(au=!0):13===Vi.tag&&ki(e,Vi)&&Ze(Vi,ru)&&(au=!0));var t=Vi.flags;0!=(256&t)&&fi(e,Vi),0==(512&t)||Wi||(Wi=!0,Va(97,(function(){return Tu(),null}))),Vi=Vi.nextEffect}}function Tu(){if(90!==Ki){var e=97<Ki?97:Ki;return Ki=90,Ba(e,zu)}return!1}function Nu(e,t){Yi.push(t,e),Wi||(Wi=!0,Va(97,(function(){return Tu(),null})))}function Lu(e,t){Xi.push(t,e),Wi||(Wi=!0,Va(97,(function(){return Tu(),null})))}function zu(){if(null===qi)return!1;var e=qi;if(qi=null,0!=(48&xi))throw Error(o(331));var t=xi;xi|=32;var n=Xi;Xi=[];for(var r=0;r<n.length;r+=2){var a=n[r],l=n[r+1],i=a.destroy;if(a.destroy=void 0,"function"==typeof i)try{i()}catch(e){if(null===l)throw Error(o(330));Iu(l,e)}}for(n=Yi,Yi=[],r=0;r<n.length;r+=2){a=n[r],l=n[r+1];try{var u=a.create;a.destroy=u()}catch(e){if(null===l)throw Error(o(330));Iu(l,e)}}for(u=e.current.firstEffect;null!==u;)e=u.nextEffect,u.nextEffect=null,8&u.flags&&(u.sibling=null,u.stateNode=null),u=e;return xi=t,Ha(),!0}function Ou(e,t,n){ol(e,t=ii(0,t=ai(n,t),1)),t=lu(),null!==(e=uu(e,1))&&(Vt(e,1,t),su(e,t))}function Iu(e,t){if(3===e.tag)Ou(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Ou(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===$i||!$i.has(r))){var a=ui(n,e=ai(t,e),1);if(ol(n,a),a=lu(),null!==(n=uu(n,1)))Vt(n,1,a),su(n,a);else if("function"==typeof r.componentDidCatch&&(null===$i||!$i.has(r)))try{r.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Mu(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=lu(),e.pingedLanes|=e.suspendedLanes&n,Ci===e&&(Ti&n)===n&&(4===zi||3===zi&&(62914560&Ti)===Ti&&500>ja()-ji?vu(e,0):Di|=n),su(e,t)}function Ru(e,t){var n=e.stateNode;null!==n&&n.delete(t),0===(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ua()?1:2:(0===tu&&(tu=Ii),0===(t=At(62914560&~tu))&&(t=4194304))),n=lu(),null!==(e=uu(e,t))&&(Vt(e,t,n),su(e,n))}function Du(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Fu(e,t,n,r){return new Du(e,t,n,r)}function ju(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Uu(e,t){var n=e.alternate;return null===n?((n=Fu(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Au(e,t,n,r,a,l){var i=2;if(r=e,"function"==typeof e)ju(e)&&(i=1);else if("string"==typeof e)i=5;else e:switch(e){case _:return Bu(n.children,a,l,t);case D:i=8,a|=16;break;case x:i=8,a|=1;break;case C:return(e=Fu(12,n,t,8|a)).elementType=C,e.type=C,e.lanes=l,e;case L:return(e=Fu(13,n,t,a)).type=L,e.elementType=L,e.lanes=l,e;case z:return(e=Fu(19,n,t,a)).elementType=z,e.lanes=l,e;case F:return Vu(n,a,l,t);case j:return(e=Fu(24,n,t,a)).elementType=j,e.lanes=l,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case P:i=10;break e;case T:i=9;break e;case N:i=11;break e;case O:i=14;break e;case I:i=16,r=null;break e;case M:i=22;break e}throw Error(o(130,null==e?e:typeof e,""))}return(t=Fu(i,n,t,a)).elementType=e,t.type=r,t.lanes=l,t}function Bu(e,t,n,r){return(e=Fu(7,e,r,t)).lanes=n,e}function Vu(e,t,n,r){return(e=Fu(23,e,r,t)).elementType=F,e.lanes=n,e}function Hu(e,t,n){return(e=Fu(6,e,null,t)).lanes=n,e}function Qu(e,t,n){return(t=Fu(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function $u(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Bt(0),this.expirationTimes=Bt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Bt(0),this.mutableSourceEagerHydrationData=null}function Wu(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:S,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function qu(e,t,n,r){var a=t.current,l=lu(),i=ou(a);e:if(n){t:{if(Ye(n=n._reactInternals)!==n||1!==n.tag)throw Error(o(170));var u=n;do{switch(u.tag){case 3:u=u.stateNode.context;break t;case 1:if(da(u.type)){u=u.stateNode.__reactInternalMemoizedMergedChildContext;break t}}u=u.return}while(null!==u);throw Error(o(171))}if(1===n.tag){var s=n.type;if(da(s)){n=ha(n,s,u);break e}}n=u}else n=ia;return null===t.context?t.context=n:t.pendingContext=n,(t=ll(l,i)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),ol(a,t),iu(a,i,l),i}function Ku(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 5:default:return e.child.stateNode}}function Yu(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function Xu(e,t){Yu(e,t),(e=e.alternate)&&Yu(e,t)}function Gu(e,t,n){var r=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new $u(e,t,null!=n&&!0===n.hydrate),t=Fu(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,rl(t),e[Yr]=n.current,Pr(8===e.nodeType?e.parentNode:e),r)for(e=0;e<r.length;e++){var a=(t=r[e])._getVersion;a=a(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,a]:n.mutableSourceEagerHydrationData.push(t,a)}this._internalRoot=n}function Ju(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function Zu(e,t,n,r,a){var l=n._reactRootContainer;if(l){var o=l._internalRoot;if("function"==typeof a){var i=a;a=function(){var e=Ku(o);i.call(e)}}qu(t,o,e,a)}else{if(l=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new Gu(e,0,t?{hydrate:!0}:void 0)}(n,r),o=l._internalRoot,"function"==typeof a){var u=a;a=function(){var e=Ku(o);u.call(e)}}mu((function(){qu(t,o,e,a)}))}return Ku(o)}function es(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Ju(t))throw Error(o(200));return Wu(e,t,null,n)}Bi=function(e,t,n){var r=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||sa.current)Oo=!0;else{if(0==(n&r)){switch(Oo=!1,t.tag){case 3:Vo(t),Vl();break;case 5:Ll(t);break;case 1:da(t.type)&&ya(t);break;case 4:Tl(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value;var a=t.type._context;oa(qa,a._currentValue),a._currentValue=r;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?qo(e,t,n):(oa(Ol,1&Ol.current),null!==(t=ei(e,t,n))?t.sibling:null);oa(Ol,1&Ol.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(64&e.flags)){if(r)return Zo(e,t,n);t.flags|=64}if(null!==(a=t.memoizedState)&&(a.rendering=null,a.tail=null,a.lastEffect=null),oa(Ol,Ol.current),r)break;return null;case 23:case 24:return t.lanes=0,Fo(e,t,n)}return ei(e,t,n)}Oo=0!=(16384&e.flags)}else Oo=!1;switch(t.lanes=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=fa(t,ua.current),el(t,n),a=to(null,t,r,e,a,n),t.flags|=1,"object"==typeof a&&null!==a&&"function"==typeof a.render&&void 0===a.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,da(r)){var l=!0;ya(t)}else l=!1;t.memoizedState=null!==a.state&&void 0!==a.state?a.state:null,rl(t);var i=r.getDerivedStateFromProps;"function"==typeof i&&fl(t,r,i,e),a.updater=dl,t.stateNode=a,a._reactInternals=t,yl(t,r,e,n),t=Bo(null,t,r,!0,l,n)}else t.tag=0,Io(null,t,a,n),t=t.child;return t;case 16:a=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=(l=a._init)(a._payload),t.type=a,l=t.tag=function(e){if("function"==typeof e)return ju(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===O)return 14}return 2}(a),e=Wa(a,e),l){case 0:t=Uo(null,t,a,e,n);break e;case 1:t=Ao(null,t,a,e,n);break e;case 11:t=Mo(null,t,a,e,n);break e;case 14:t=Ro(null,t,a,Wa(a.type,e),r,n);break e}throw Error(o(306,a,""))}return t;case 0:return r=t.type,a=t.pendingProps,Uo(e,t,r,a=t.elementType===r?a:Wa(r,a),n);case 1:return r=t.type,a=t.pendingProps,Ao(e,t,r,a=t.elementType===r?a:Wa(r,a),n);case 3:if(Vo(t),r=t.updateQueue,null===e||null===r)throw Error(o(282));if(r=t.pendingProps,a=null!==(a=t.memoizedState)?a.element:null,al(e,t),ul(t,r,null,n),(r=t.memoizedState.element)===a)Vl(),t=ei(e,t,n);else{if((l=(a=t.stateNode).hydrate)&&(Rl=Hr(t.stateNode.containerInfo.firstChild),Ml=t,l=Dl=!0),l){if(null!=(e=a.mutableSourceEagerHydrationData))for(a=0;a<e.length;a+=2)(l=e[a])._workInProgressVersionPrimary=e[a+1],Hl.push(l);for(n=El(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Io(e,t,r,n),Vl();t=t.child}return t;case 5:return Ll(t),null===e&&Ul(t),r=t.type,a=t.pendingProps,l=null!==e?e.memoizedProps:null,i=a.children,Ur(r,a)?i=null:null!==l&&Ur(r,l)&&(t.flags|=16),jo(e,t),Io(e,t,i,n),t.child;case 6:return null===e&&Ul(t),null;case 13:return qo(e,t,n);case 4:return Tl(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=kl(t,null,r,n):Io(e,t,r,n),t.child;case 11:return r=t.type,a=t.pendingProps,Mo(e,t,r,a=t.elementType===r?a:Wa(r,a),n);case 7:return Io(e,t,t.pendingProps,n),t.child;case 8:case 12:return Io(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,a=t.pendingProps,i=t.memoizedProps,l=a.value;var u=t.type._context;if(oa(qa,u._currentValue),u._currentValue=l,null!==i)if(u=i.value,0===(l=or(u,l)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(u,l):1073741823))){if(i.children===a.children&&!sa.current){t=ei(e,t,n);break e}}else for(null!==(u=t.child)&&(u.return=t);null!==u;){var s=u.dependencies;if(null!==s){i=u.child;for(var c=s.firstContext;null!==c;){if(c.context===r&&0!=(c.observedBits&l)){1===u.tag&&((c=ll(-1,n&-n)).tag=2,ol(u,c)),u.lanes|=n,null!==(c=u.alternate)&&(c.lanes|=n),Za(u.return,n),s.lanes|=n;break}c=c.next}}else i=10===u.tag&&u.type===t.type?null:u.child;if(null!==i)i.return=u;else for(i=u;null!==i;){if(i===t){i=null;break}if(null!==(u=i.sibling)){u.return=i.return,i=u;break}i=i.return}u=i}Io(e,t,a.children,n),t=t.child}return t;case 9:return a=t.type,r=(l=t.pendingProps).children,el(t,n),r=r(a=tl(a,l.unstable_observedBits)),t.flags|=1,Io(e,t,r,n),t.child;case 14:return l=Wa(a=t.type,t.pendingProps),Ro(e,t,a,l=Wa(a.type,l),r,n);case 15:return Do(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,a=t.pendingProps,a=t.elementType===r?a:Wa(r,a),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,da(r)?(e=!0,ya(t)):e=!1,el(t,n),ml(t,r,a),yl(t,r,a,n),Bo(null,t,r,!0,e,n);case 19:return Zo(e,t,n);case 23:case 24:return Fo(e,t,n)}throw Error(o(156,t.tag))},Gu.prototype.render=function(e){qu(e,this._internalRoot,null,null)},Gu.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;qu(null,e,null,(function(){t[Yr]=null}))},et=function(e){13===e.tag&&(iu(e,4,lu()),Xu(e,4))},tt=function(e){13===e.tag&&(iu(e,67108864,lu()),Xu(e,67108864))},nt=function(e){if(13===e.tag){var t=lu(),n=ou(e);iu(e,n,t),Xu(e,n)}},rt=function(e,t){return t()},Ce=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var a=ea(r);if(!a)throw Error(o(90));G(r),ne(r,a)}}}break;case"textarea":se(e,n);break;case"select":null!=(t=n.value)&&oe(e,!!n.multiple,t,!1)}},Oe=pu,Ie=function(e,t,n,r,a){var l=xi;xi|=4;try{return Ba(98,e.bind(null,t,n,r,a))}finally{0===(xi=l)&&(Ai(),Ha())}},Me=function(){0==(49&xi)&&(function(){if(null!==Gi){var e=Gi;Gi=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,su(e,ja())}))}Ha()}(),Tu())},Re=function(e,t){var n=xi;xi|=2;try{return e(t)}finally{0===(xi=n)&&(Ai(),Ha())}};var ts={Events:[Jr,Zr,ea,Le,ze,Tu,{current:!1}]},ns={findFiberByHostInstance:Gr,bundleType:0,version:"17.0.1",rendererPackageName:"react-dom"},rs={bundleType:ns.bundleType,version:ns.version,rendererPackageName:ns.rendererPackageName,rendererConfig:ns.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:k.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:ns.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var as=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!as.isDisabled&&as.supportsFiber)try{ga=as.inject(rs),ba=as}catch(e){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ts,t.createPortal=es,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(o(188));throw Error(o(268,Object.keys(e)))}return e=null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=xi;if(0!=(48&n))return e(t);xi|=1;try{if(e)return Ba(99,e.bind(null,t))}finally{xi=n,Ha()}},t.hydrate=function(e,t,n){if(!Ju(t))throw Error(o(200));return Zu(null,e,t,!0,n)},t.render=function(e,t,n){if(!Ju(t))throw Error(o(200));return Zu(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Ju(e))throw Error(o(40));return!!e._reactRootContainer&&(mu((function(){Zu(null,null,e,!1,(function(){e._reactRootContainer=null,e[Yr]=null}))})),!0)},t.unstable_batchedUpdates=pu,t.unstable_createPortal=function(e,t){return es(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Ju(n))throw Error(o(200));if(null==e||void 0===e._reactInternals)throw Error(o(38));return Zu(e,t,n,!1,r)},t.version="17.0.1"},function(e,t,n){"use strict";e.exports=n(7)},function(e,t,n){"use strict";
23
+ /** @license React v0.20.1
24
+ * scheduler.production.min.js
25
+ *
26
+ * Copyright (c) Facebook, Inc. and its affiliates.
27
+ *
28
+ * This source code is licensed under the MIT license found in the
29
+ * LICENSE file in the root directory of this source tree.
30
+ */var r,a,l,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var u=Date,s=u.now();t.unstable_now=function(){return u.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var c=null,f=null,d=function(){if(null!==c)try{var e=t.unstable_now();c(!0,e),c=null}catch(e){throw setTimeout(d,0),e}};r=function(e){null!==c?setTimeout(r,0,e):(c=e,setTimeout(d,0))},a=function(e,t){f=setTimeout(e,t)},l=function(){clearTimeout(f)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var p=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var h=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof h&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var y=!1,v=null,g=-1,b=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):b=0<e?Math.floor(1e3/e):5};var k=new MessageChannel,E=k.port2;k.port1.onmessage=function(){if(null!==v){var e=t.unstable_now();w=e+b;try{v(!0,e)?E.postMessage(null):(y=!1,v=null)}catch(e){throw E.postMessage(null),e}}else y=!1},r=function(e){v=e,y||(y=!0,E.postMessage(null))},a=function(e,n){g=p((function(){e(t.unstable_now())}),n)},l=function(){m(g),g=-1}}function S(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,a=e[r];if(!(void 0!==a&&0<C(a,t)))break e;e[r]=t,e[n]=a,n=r}}function _(e){return void 0===(e=e[0])?null:e}function x(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,a=e.length;r<a;){var l=2*(r+1)-1,o=e[l],i=l+1,u=e[i];if(void 0!==o&&0>C(o,n))void 0!==u&&0>C(u,o)?(e[r]=u,e[i]=n,r=i):(e[r]=o,e[l]=n,r=l);else{if(!(void 0!==u&&0>C(u,n)))break e;e[r]=u,e[i]=n,r=i}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var P=[],T=[],N=1,L=null,z=3,O=!1,I=!1,M=!1;function R(e){for(var t=_(T);null!==t;){if(null===t.callback)x(T);else{if(!(t.startTime<=e))break;x(T),t.sortIndex=t.expirationTime,S(P,t)}t=_(T)}}function D(e){if(M=!1,R(e),!I)if(null!==_(P))I=!0,r(F);else{var t=_(T);null!==t&&a(D,t.startTime-e)}}function F(e,n){I=!1,M&&(M=!1,l()),O=!0;var r=z;try{for(R(n),L=_(P);null!==L&&(!(L.expirationTime>n)||e&&!t.unstable_shouldYield());){var o=L.callback;if("function"==typeof o){L.callback=null,z=L.priorityLevel;var i=o(L.expirationTime<=n);n=t.unstable_now(),"function"==typeof i?L.callback=i:L===_(P)&&x(P),R(n)}else x(P);L=_(P)}if(null!==L)var u=!0;else{var s=_(T);null!==s&&a(D,s.startTime-n),u=!1}return u}finally{L=null,z=r,O=!1}}var j=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){I||O||(I=!0,r(F))},t.unstable_getCurrentPriorityLevel=function(){return z},t.unstable_getFirstCallbackNode=function(){return _(P)},t.unstable_next=function(e){switch(z){case 1:case 2:case 3:var t=3;break;default:t=z}var n=z;z=t;try{return e()}finally{z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=j,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=z;z=e;try{return t()}finally{z=n}},t.unstable_scheduleCallback=function(e,n,o){var i=t.unstable_now();switch("object"==typeof o&&null!==o?o="number"==typeof(o=o.delay)&&0<o?i+o:i:o=i,e){case 1:var u=-1;break;case 2:u=250;break;case 5:u=1073741823;break;case 4:u=1e4;break;default:u=5e3}return e={id:N++,callback:n,priorityLevel:e,startTime:o,expirationTime:u=o+u,sortIndex:-1},o>i?(e.sortIndex=o,S(T,e),null===_(P)&&e===_(T)&&(M?l():M=!0,a(D,o-i))):(e.sortIndex=u,S(P,e),I||O||(I=!0,r(F))),e},t.unstable_wrapCallback=function(e){var t=z;return function(){var n=z;z=t;try{return e.apply(this,arguments)}finally{z=n}}}},function(e,t,n){"use strict";n.r(t),n.d(t,"yasrSearchStarsDom",(function(){return O}));var r,a=n(0),l=n.n(a),o=n(2),i=n.n(o);var u="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),s=new Uint8Array(16);function c(){if(!u)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return u(s)}var f=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;for(var d=function(e){return"string"==typeof e&&f.test(e)},p=[],m=0;m<256;++m)p.push((m+256).toString(16).substr(1));var h=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=(p[e[t+0]]+p[e[t+1]]+p[e[t+2]]+p[e[t+3]]+"-"+p[e[t+4]]+p[e[t+5]]+"-"+p[e[t+6]]+p[e[t+7]]+"-"+p[e[t+8]]+p[e[t+9]]+"-"+p[e[t+10]]+p[e[t+11]]+p[e[t+12]]+p[e[t+13]]+p[e[t+14]]+p[e[t+15]]).toLowerCase();if(!d(n))throw TypeError("Stringified UUID is invalid");return n};var y=function(e,t,n){var r=(e=e||{}).random||(e.rng||c)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(var a=0;a<16;++a)t[n+a]=r[a];return t}return h(r)};function v(e){return(v="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 g(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function b(e,t){return(b=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=E(e);if(t){var a=E(this).constructor;n=Reflect.construct(r,arguments,a)}else n=r.apply(this,arguments);return k(this,n)}}function k(e,t){return!t||"object"!==v(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function E(e){return(E=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var S=wp.i18n.__;function _(e){var t="yasr-ranking-element-"+y(),n=window[e.tableId].size;return l.a.createElement("div",{id:t,ref:function(){return raterJs({starSize:n,step:.1,showToolTip:!1,rating:e.rating,readOnly:!0,element:document.getElementById(t)})}})}function x(e){if(void 0!==e.post.number_of_votes)return l.a.createElement("span",{className:"yasr-most-rated-text"},"[",S("Total:","yet-another-stars-rating")," ",e.post.number_of_votes,"  ",S("Average:","yet-another-stars-rating")," ",e.post.rating,"]");var t=window[e.tableId].custom_text;return l.a.createElement("span",{className:"yasr-highest-rated-text"},t," ",e.post.rating)}function C(e){return l.a.createElement("td",{className:e.colClass},l.a.createElement("a",{href:e.post.link},function(e){if("string"!=typeof e||-1===e.indexOf("&"))return e;void 0===r&&(r=document.implementation&&document.implementation.createHTMLDocument?document.implementation.createHTMLDocument("").createElement("textarea"):document.createElement("textarea")),r.innerHTML=e;var t=r.textContent;return r.innerHTML="",t}(e.post.title)))}function P(e){return"before"===window[e.tableId].text_position?l.a.createElement("td",{className:e.colClass},l.a.createElement(x,{post:e.post,tableId:e.tableId}),l.a.createElement(_,{rating:e.post.rating,tableId:e.tableId})):l.a.createElement("td",{className:e.colClass},l.a.createElement(_,{rating:e.post.rating,tableId:e.tableId}),l.a.createElement(x,{post:e.post,tableId:e.tableId}))}function T(e){var t="",n="";return"overall_rating"===e.source?(t="yasr-top-10-overall-left",n="yasr-top-10-overall-right"):"visitor_votes"===e.source&&(t="yasr-top-10-most-highest-left",n="yasr-top-10-most-highest-right"),l.a.createElement("tr",{className:e.trClass},l.a.createElement(C,{colClass:t,post:e.post}),l.a.createElement(P,{colClass:n,post:e.post,tableId:e.tableId}))}function N(e){return l.a.createElement("tbody",{id:e.tBodyId,style:{display:e.show}},e.data.map((function(t,n){var r="yasr-rankings-td-colored";return"overall_rating"===e.source&&(r="yasr-rankings-td-white"),n%2==0&&(r="yasr-rankings-td-white","overall_rating"===e.source&&(r="yasr-rankings-td-colored")),l.a.createElement(T,{key:t.post_id,source:e.source,tableId:e.tableId,post:t,trClass:r})})))}var L=function(e){!function(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&&b(e,t)}(o,e);var t,n,r,a=w(o);function o(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,o),(t=a.call(this,e)).state={error:null,isLoaded:!1,data:[],tableId:e.tableId,source:e.source,queryParams:window[e.tableId].params},t}return t=o,(n=[{key:"componentDidMount",value:function(){var e=this,t={};if("yes"!==yasrCommonData.ajaxEnabled)console.info(S("Ajax Disabled, getting data from source","yet-another-stars-rating")),this.setState({isLoaded:!0,data:window[this.state.tableId]});else if(!1!==this.state.source){var n=this.returnRestUrl();Promise.all(n.map((function(n){return fetch(n).then((function(e){return!0===e.ok?e.json():(console.info(S("Ajax Call Failed. Getting data from source")),"KO")})).then((function(n){"KO"===n?t=window[e.state.tableId]:("overall_rating"===n.source&&(t=n),"visitor_votes"===n.source&&(t[n.show]=n.data_vv))})).catch((function(n){t=window[e.state.tableId],console.info(S(n))}))}))).then((function(n){e.setState({isLoaded:!0,data:t})})).catch((function(n){console.info(S(n)),e.setState({isLoaded:!0,data:t})}))}else this.setState({error:S("Invalid Data Source","yet-another-stars-rating")})}},{key:"returnRestUrl",value:function(){var e=""!==this.state.queryParams?this.state.queryParams:"",t=this.state.source,n=!1,r="yet-another-stars-rating/v1/yasr-rankings/";if(""!==e&&(e="&"+e),"overall_rating"===t&&(n=[yasrCommonData.restEndpoint+r+"?source="+t+e]),"visitor_votes"===t){var a="",l="";""!==window[this.state.tableId].required_votes&&(a="&required_votes="+window[this.state.tableId].required_votes.most,l="&required_votes="+window[this.state.tableId].required_votes.highest),n=[yasrCommonData.restEndpoint+r+"?show=most&source="+t+e+a,yasrCommonData.restEndpoint+r+"?show=highest&source="+t+e+l]}return n}},{key:"rankingTableHead",value:function(e){var t=this.state.tableId,n="link-most-rated-posts-"+t,r="link-highest-rated-posts-"+t;if("visitor_votes"===e){var a=window[this.state.tableId].view,o=l.a.createElement("span",null,l.a.createElement("span",{id:n},S("Most Rated","yet-another-stars-rating"))," | ",l.a.createElement("a",{href:"#",id:r,onClick:this.switchTBody.bind(this)},S("Highest Rated","yet-another-stars-rating")));return"highest"===a&&(o=l.a.createElement("span",null,l.a.createElement("span",{id:r},S("Highest Rated","yet-another-stars-rating"))," | ",l.a.createElement("a",{href:"#",id:n,onClick:this.switchTBody.bind(this)},S("Most Rated","yet-another-stars-rating")))),l.a.createElement("thead",null,l.a.createElement("tr",{className:"yasr-rankings-td-colored yasr-rankings-heading"},l.a.createElement("th",null,"Post"),l.a.createElement("th",null,S("Order By","yet-another-stars-rating-pro"),":  ",o)))}return l.a.createElement(l.a.Fragment,null)}},{key:"switchTBody",value:function(e){e.preventDefault();var t=e.target.id,n=this.state.tableId,r="link-most-rated-posts-"+n,a="link-highest-rated-posts-"+n,l="most-rated-posts-"+n,o="highest-rated-posts-"+n,i=document.getElementById(t),u=document.createElement("span");u.innerHTML=i.innerHTML,u.id=i.id,i.parentNode.replaceChild(u,i),t===r&&(document.getElementById(o).style.display="none",document.getElementById(l).style.display="",u=document.getElementById(a),i.innerHTML=u.innerHTML,i.id=u.id,u.parentNode.replaceChild(i,u)),t===a&&(document.getElementById(l).style.display="none",document.getElementById(o).style.display="",u=document.getElementById(r),i.innerHTML=u.innerHTML,i.id=u.id,u.parentNode.replaceChild(i,u))}},{key:"rankingTableBody",value:function(){var e=this.state,t=e.data,n=e.source;if("overall_rating"===n)return l.a.createElement(N,{data:t.data_overall,tableId:this.state.tableId,tBodyId:"overall_"+this.state.tableId,show:"table-row-group",source:n});if("visitor_votes"===n){var r=t.most,a=t.highest,o="table-row-group",i="none";return"highest"===window[this.state.tableId].view&&(o="none",i="table-row-group"),l.a.createElement(l.a.Fragment,null,this.rankingTableHead(n),l.a.createElement(N,{data:r,tableId:this.state.tableId,tBodyId:"most-rated-posts-"+this.state.tableId,show:o,source:n}),l.a.createElement(N,{data:a,tableId:this.state.tableId,tBodyId:"highest-rated-posts-"+this.state.tableId,show:i,source:n}))}}},{key:"render",value:function(){var e=this.state,t=e.error,n=e.isLoaded;return t?l.a.createElement("tbody",null,l.a.createElement("tr",null,l.a.createElement("td",null,console.log(t),"Error"))):!1===n?l.a.createElement("tbody",null,l.a.createElement("tr",null,l.a.createElement("td",null,S("Loading Charts","yet-another-stars-rating")))):l.a.createElement(l.a.Fragment,null,this.rankingTableBody())}}])&&g(t.prototype,n),r&&g(t,r),o}(l.a.Component);var z=wp.i18n.__;function O(e){var t=document.getElementsByClassName(e);if(t.length>0){if("yasr-rater-stars"!==e&&"yasr-ranking-stars"!==e||function(e){for(var t=0;t<e.length;t++){var n=e.item(t).id;I(e.item(t).getAttribute("data-rater-starsize"),n)}}(t),"yasr-rater-stars-vv"===e&&(function(e){for(var t=0;t<e.length;t++)!function(t){var n=e.item(t).getAttribute("data-rating"),r=e.item(t).getAttribute("data-readonly-attribute"),a=e.item(t).getAttribute("data-rater-readonly");null===r&&(r=!1),r=R(r),a=R(a),!0===r&&(a=!0);var l=e.item(t).getAttribute("data-rater-postid"),o=e.item(t).id,i=o.replace("yasr-visitor-votes-rater-",""),u=parseInt(e.item(t).getAttribute("data-rater-starsize")),s=e.item(t).getAttribute("data-rater-nonce"),c=e.item(t).getAttribute("data-issingular"),f="yasr-vv-votes-number-container-"+i,d="yasr-vv-average-container-"+i,p="yasr-visitor-votes-container-after-stars-"+i,m=!1;if("yes"===yasrCommonData.ajaxEnabled){var h=e.item(t).getAttribute("data-cpt");""===h&&(h="posts");var y="wp/v2/"+h+"/"+l+"?_fields=yasr_visitor_votes&_wpnonce="+yasrCommonData.nonce;jQuery.get(yasrCommonData.restEndpoint+y).done((function(e){var t;(t=!0===r||e.yasr_visitor_votes.stars_attributes.read_only,n=(n=e.yasr_visitor_votes.number_of_votes>0?e.yasr_visitor_votes.sum_votes/e.yasr_visitor_votes.number_of_votes:0).toFixed(1),n=parseFloat(n),M(u,n,l,t,o,i,s,c,p),!0!==r)&&(document.getElementById(f).innerHTML=e.yasr_visitor_votes.number_of_votes,document.getElementById(d).innerHTML=n,!1!==e.yasr_visitor_votes.stars_attributes.span_bottom&&(m=e.yasr_visitor_votes.stars_attributes.span_bottom,document.getElementById(p).insertAdjacentHTML("beforeend",m)))})).fail((function(e,t,r,f){console.info(z("YASR ajax call failed. Showing ratings from html","yet-another-stars-rating")),M(u,n,l,a,o,i,s,c,p)}))}else M(u,n,l,a,o,i,s,c,p)}(t)}(t),"yes"===yasrCommonData.visitorStatsEnabled)){var n=document.getElementsByClassName("yasr-dashicons-visitor-stats");n&&function(e){for(var t=!1,n=0;n<e.length;n++)!function(n){var r="#"+e.item(n).id,a={action:"yasr_stats_visitors_votes",post_id:e.item(n).getAttribute("data-postid")};tippy(r,{content:'<span style="color: #0a0a0a">Loading...</span>',theme:"yasr",arrow:"true",arrowType:"round",onShow:function(e){r!==t&&jQuery.post(yasrCommonData.ajaxurl,a,(function(t){t=JSON.parse(t),e.setContent(t)}))},onHidden:function(){t=r}})}(n)}(n)}"yasr-multiset-visitors-rater"===e&&function(e){for(var t="",n=[],r=0;r<e.length;r++)!function(r){var a=e.item(r).id,l=e.item(r).getAttribute("data-rater-readonly");l=R(l);var o=document.querySelector("#"+a);raterJs({starSize:16,step:1,showToolTip:!1,readOnly:l,element:o,rateCallback:function(e,r){var a=o.getAttribute("data-rater-postid"),l=o.getAttribute("data-rater-setid"),i=o.getAttribute("data-rater-set-field-id");e=e.toFixed(1);var u=parseInt(e);this.setRating(u),t={postid:a,setid:l,field:i,rating:u},n.push(t),r()}})}(r);jQuery(".yasr-send-visitor-multiset").on("click",(function(){var e=this.getAttribute("data-postid"),t=this.getAttribute("data-setid"),r=this.getAttribute("data-nonce");jQuery("#yasr-send-visitor-multiset-"+e+"-"+t).hide(),jQuery("#yasr-loader-multiset-visitor-"+e+"-"+t).show();var a={action:"yasr_visitor_multiset_field_vote",nonce:r,post_id:e,rating:n,set_type:t};jQuery.post(yasrCommonData.ajaxurl,a,(function(n){jQuery("#yasr-loader-multiset-visitor-"+e+"-"+t).text(n)}))}))}(t)}}function I(e,t){e=parseInt(e),raterJs({starSize:e,step:.1,showToolTip:!1,readOnly:!0,element:document.getElementById(t)})}function M(e,t,n,r,a,l,o,i,u){t=parseFloat(t),r=R(r),raterJs({starSize:e,rating:t,step:1,showToolTip:!1,readOnly:r,element:document.getElementById(a),rateCallback:function(e,t){document.getElementById(u).innerHTML=yasrCommonData.loaderHtml;var r={action:"yasr_send_visitor_rating",rating:e,post_id:n,nonce_visitor:o,is_singular:i};this.setRating(e),this.disable(),jQuery.post(yasrCommonData.ajaxurl,r,(function(e){e=JSON.parse(e),document.getElementById(u).innerHTML=e})),t()}})}function R(e){return null!=e&&""!==e||(e=!0),"true"!==e&&"1"!==e||(e=!0),"false"!==e&&"0"!==e||(e=!1),e}document.addEventListener("DOMContentLoaded",(function(e){O("yasr-rater-stars"),O("yasr-rater-stars-vv"),O("yasr-multiset-visitors-rater"),function(){var e=document.getElementsByClassName("yasr-rankings");if(e.length>0)for(var t=0;t<e.length;t++){var n=e.item(t).id,r=window[n].source,a=document.getElementById(n),o=!1;"overall_rating"!==r&&"visitor_votes"!==r||(o=r),i.a.render(l.a.createElement(L,{source:o,tableId:n}),a)}}()}))}]);
includes/rest/classes/YasrCustomEndpoint.php CHANGED
@@ -208,6 +208,7 @@ class YasrCustomEndpoint extends WP_REST_Controller {
208
  }
209
 
210
  if($source === 'visitor_votes') {
 
211
  $ranking = ($request['show'] === 'highest') ? $request['show'] : 'most';
212
  $data_to_return['show'] = $ranking;
213
 
@@ -223,8 +224,8 @@ class YasrCustomEndpoint extends WP_REST_Controller {
223
 
224
  if ($no_data === true) {
225
  return new WP_Error(
226
- 'no_overall_data',
227
- __('No posts with overall ratings found.', 'yet-another-stars-rating'),
228
  400
229
  );
230
  }
208
  }
209
 
210
  if($source === 'visitor_votes') {
211
+ //outside 'most', only 'highest' is allowed
212
  $ranking = ($request['show'] === 'highest') ? $request['show'] : 'most';
213
  $data_to_return['show'] = $ranking;
214
 
224
 
225
  if ($no_data === true) {
226
  return new WP_Error(
227
+ 'no_data',
228
+ __('No posts found. Try remove some filters', 'yet-another-stars-rating'),
229
  400
230
  );
231
  }
includes/shortcodes/classes/YasrNoStarsRankings.php CHANGED
@@ -46,9 +46,9 @@ class YasrNoStarsRankings extends YasrShortcode {
46
  if ($query_result) {
47
  $this->shortcode_html = '<!-- Yasr Top 5 Reviewers Shortcode-->';
48
 
49
- $this->shortcode_html .= '<table class="yasr-table-chart">
50
  <tr>
51
- <th>'. __('Author', 'yet-another-stars-rating') .'</th>
52
  <th>'. __('Reviews', 'yet-another-stars-rating') .'</th>
53
  </tr>';
54
 
@@ -104,7 +104,7 @@ class YasrNoStarsRankings extends YasrShortcode {
104
  if ($query_result) {
105
  $shortcode_html = '<!-- Yasr Top 10 Active Users Shortcode-->';
106
 
107
- $shortcode_html .= '<table class="yasr-table-chart">
108
  <tr>
109
  <th>' . __('UserName', 'yet-another-stars-rating') . '</th>
110
  <th>' . __('Number of votes', 'yet-another-stars-rating') . '</th>
46
  if ($query_result) {
47
  $this->shortcode_html = '<!-- Yasr Top 5 Reviewers Shortcode-->';
48
 
49
+ $this->shortcode_html .= '<table class="yasr-rankings">
50
  <tr>
51
+ <th>' . __('Author', 'yet-another-stars-rating') .'</th>
52
  <th>'. __('Reviews', 'yet-another-stars-rating') .'</th>
53
  </tr>';
54
 
104
  if ($query_result) {
105
  $shortcode_html = '<!-- Yasr Top 10 Active Users Shortcode-->';
106
 
107
+ $shortcode_html .= '<table class="yasr-rankings">
108
  <tr>
109
  <th>' . __('UserName', 'yet-another-stars-rating') . '</th>
110
  <th>' . __('Number of votes', 'yet-another-stars-rating') . '</th>
includes/shortcodes/classes/YasrRankings.php CHANGED
@@ -36,7 +36,7 @@ class YasrRankings extends YasrShortcode {
36
  * Returns the shortcode for yasr_top_ten_highest_rated
37
  * */
38
  public function returnHighestRatedOverall () {
39
- $this->shortcode_html = '<!-- Yasr Most Or Highest Rated Shortcode-->';
40
  $this->query_highest_rated_overall = YasrRankingData::rankingOverallGetResults();
41
  $this->returnTableOverall();
42
  $this->shortcode_html .= '<!--End Yasr Top 10 highest Rated Shortcode-->';
@@ -45,31 +45,37 @@ class YasrRankings extends YasrShortcode {
45
  }
46
 
47
  /**
 
 
 
48
  * @author Dario Curvino <@dudo>
 
 
 
49
  *
50
- * @param false $text_position
51
- * @param false $text
52
  */
53
- protected function returnTableOverall() {
54
  if ($this->query_highest_rated_overall) {
55
 
56
- $this->shortcode_html .= "<table class='yasr-table-chart'>";
57
 
58
- $array_with_title = self::rankingData($this->query_highest_rated_overall);
59
 
60
- foreach ($array_with_title as $result) {
61
- $yasr_top_ten_html_id = 'yasr-highest_rated-' . str_shuffle(uniqid());
62
 
63
- $this->returnTableRows(
64
- $result['post_id'],
65
- $result['rating'],
66
- null,
67
- $result['post_title'],
68
- $result['link'],
69
- $yasr_top_ten_html_id
70
- );
 
 
 
 
71
 
72
- } //End foreach
73
  $this->shortcode_html .= "</table>";
74
  }
75
  else {
@@ -79,178 +85,56 @@ class YasrRankings extends YasrShortcode {
79
  }
80
 
81
  /**
82
- * Create the queries for the rankings
83
- *
84
- * Return the full html for the shortcode
85
- *
86
- * @return string $this->shortcode_html;
87
- */
88
- public function vvReturnMostHighestRatedPost() {
89
- $this->shortcode_html = '<!-- Yasr Most Or Highest Rated Shortcode-->';
90
-
91
  $this->query_result_most_rated_visitor = YasrRankingData::rankingVVGetResults(false, 'most');
92
  $this->query_result_highest_rated_visitor = YasrRankingData::rankingVVGetResults(false, 'highest');
93
-
94
- $this->vv_most_rated_table = "<table class='yasr-table-chart' id='yasr-most-rated-posts'>
95
- <tr class='yasr-visitor-votes-title'>
96
- <th>" . __('Post / Page', 'yet-another-stars-rating') . " </th>
97
- <th>" . __('Order By', 'yet-another-stars-rating') . ":&nbsp;&nbsp;
98
- <span id='yasr_multi_chart_link_to_nothing'>"
99
- . __('Most Rated', 'yet-another-stars-rating') .
100
- "</span> |
101
- <span id='link-yasr-highest-rated-posts'>
102
- <a href='#'>"
103
- . __('Highest Rated', 'yet-another-stars-rating') .
104
- "</a>
105
- </span>
106
- </th>
107
- </tr>";
108
-
109
- $this->vv_highest_rated_table = "<table class='yasr-table-chart' id='yasr-highest-rated-posts'>
110
- <tr class='yasr-visitor-votes-title'>
111
- <th>" . __('Post / Page', 'yet-another-stars-rating') . "</th>
112
- <th>" . __('Order By', 'yet-another-stars-rating') . ":&nbsp;&nbsp;
113
- <span id='link-yasr-most-rated-posts'>
114
- <a href='#'>"
115
- . __("Most Rated", 'yet-another-stars-rating') .
116
- "</a>
117
- |
118
- </span>
119
- <span id='yasr_multi_chart_link_to_nothing'>"
120
- . __("Highest Rated", 'yet-another-stars-rating') .
121
- "</span>
122
- </th>
123
- </tr>";
124
-
125
- $this->vvMostRated();
126
- $this->vvHighestRated();
127
-
128
- $this->shortcode_html .= '<!-- End Yasr Most Or Highest Rated Shortcode-->';
129
 
130
  return $this->shortcode_html;
131
-
132
  }
133
 
134
  /**
135
- * Loop the query for the Most Rated chart
 
 
 
136
  */
137
- protected function vvMostRated() {
138
- if ($this->query_result_most_rated_visitor) {
139
- $this->shortcode_html .= $this->vv_most_rated_table;
140
- $array_with_title = self::rankingData($this->query_result_most_rated_visitor);
141
-
142
- foreach ($array_with_title as $result) {
143
- $yasr_top_ten_html_id = 'yasr-10-most-rated-' . str_shuffle(uniqid());
144
- //print the rows
145
- $this->returnTableRows(
146
- $result['post_id'],
147
- $result['rating'],
148
- $result['number_of_votes'],
149
- $result['post_title'],
150
- $result['link'],
151
- $yasr_top_ten_html_id
152
- );
153
- } //End foreach
154
- $this->shortcode_html .= "</table>" ;
155
-
156
- } //End if $query_result_most_rated)
157
-
158
- else {
159
- $this->shortcode_html = __("You've not enough data",'yet-another-stars-rating') . "<br />";
 
 
 
 
 
160
  }
161
- }
162
-
163
- /**
164
- * Loop the query for the Highest Rated chart
165
- */
166
- protected function vvHighestRated () {
167
- if ($this->query_result_highest_rated_visitor) {
168
- $this->shortcode_html .= $this->vv_highest_rated_table;
169
- $array_with_title = self::rankingData($this->query_result_highest_rated_visitor);
170
-
171
- foreach ($array_with_title as $result) {
172
- $yasr_top_ten_html_id = 'yasr-10-highest-rater-' . str_shuffle(uniqid());
173
- //print the rows
174
- $this->returnTableRows(
175
- $result['post_id'],
176
- $result['rating'],
177
- $result['number_of_votes'],
178
- $result['post_title'],
179
- $result['link'],
180
- $yasr_top_ten_html_id
181
- );
182
- } //End foreach
183
-
184
- $this->shortcode_html .= "</table>";
185
 
186
- } //end if $query_result
187
-
188
- else {
189
- $this->shortcode_html = __("You've not enough data",'yet-another-stars-rating') . "<br />";
190
- }
191
  }
192
 
193
- /**
194
- * @param $post_id
195
- * @param $rating
196
- * @param $number_of_votes
197
- * @param $post_title
198
- * @param $link
199
- * @param $yasr_top_ten_html_id
200
- */
201
- protected function returnTableRows ($post_id, $rating, $number_of_votes, $post_title, $link, $yasr_top_ten_html_id) {
202
- $star_size = $this->starSize();
203
-
204
- $html_stars = "<div
205
- class='yasr-rater-stars'
206
- id='$yasr_top_ten_html_id'
207
- data-rater-postid='$post_id'
208
- data-rater-starsize=$star_size
209
- data-rating='$rating'>
210
- </div>";
211
-
212
- //if number of votes === null means that the caller is loopHighestRatedOverall
213
- if ($number_of_votes === null) {
214
-
215
- $div_html_stars=apply_filters('yasr_filter_highest_rated_stars', $html_stars, $rating);
216
-
217
- if ($div_html_stars === $html_stars) {
218
- $div_html_stars .= "<span class='yasr-highest-rated-text'>"
219
- . __('Rating:', 'yet-another-stars-rating') . " $rating
220
- </span>";
221
- }
222
-
223
- $this->shortcode_html .= "<tr>
224
- <td class='yasr-top-10-overall-left'>
225
- <a href='$link'>$post_title</a>
226
- </td>
227
- <td class='yasr-top-10-overall-right'>
228
- $div_html_stars
229
- </td>
230
- </tr>";
231
-
232
- }
233
-
234
- //otherwise is vvMostRated or vvHighestRated
235
- else {
236
- $this->shortcode_html .= "<tr>
237
- <td class='yasr-top-10-most-highest-left'>
238
- <a href='$link'>$post_title</a>
239
- </td>
240
- <td class='yasr-top-10-most-highest-right'>
241
- $html_stars
242
- <br />
243
- ["
244
- . __('Total:', 'yet-another-stars-rating') .
245
- "$number_of_votes &nbsp;&nbsp;&nbsp;" .
246
- __('Average', 'yet-another-stars-rating') .
247
- " $rating]
248
- </td>
249
- </tr>";
250
-
251
- }
252
- } //end function returnTableRows
253
-
254
  /**
255
  * Returns an array with post titles and links
256
  *
@@ -271,10 +155,10 @@ class YasrRankings extends YasrShortcode {
271
  foreach ($query_result as $result) {
272
  $data_array[$i]['post_id'] = (int)$result->post_id;
273
  $data_array[$i]['rating'] = round($result->rating,1);
274
- if(isset($result->number_of_votes)){
275
  $data_array[$i]['number_of_votes'] = (int)$result->number_of_votes;
276
  }
277
- $data_array[$i]['post_title'] = wp_strip_all_tags(get_the_title($result->post_id));
278
  $data_array[$i]['link'] = get_permalink($result->post_id); //Get permalink from post id
279
  $i++;
280
  } //End foreach
@@ -282,4 +166,32 @@ class YasrRankings extends YasrShortcode {
282
  return $data_array;
283
  }
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  }
36
  * Returns the shortcode for yasr_top_ten_highest_rated
37
  * */
38
  public function returnHighestRatedOverall () {
39
+ $this->shortcode_html = '<!-- Yasr Highest Rated Shortcode-->';
40
  $this->query_highest_rated_overall = YasrRankingData::rankingOverallGetResults();
41
  $this->returnTableOverall();
42
  $this->shortcode_html .= '<!--End Yasr Top 10 highest Rated Shortcode-->';
45
  }
46
 
47
  /**
48
+ * Returns only initial and ending table tag
49
+ * Table content is build with REACT
50
+ *
51
  * @author Dario Curvino <@dudo>
52
+ * @since 2.5.7
53
+ *
54
+ * @param $sql_params array|string - params that can be used in REST API
55
  *
 
 
56
  */
57
+ protected function returnTableOverall($sql_params=null) {
58
  if ($this->query_highest_rated_overall) {
59
 
60
+ $table_attributes = $this->sanitizeParams($sql_params);
61
 
62
+ $table_id = 'yasr_overall_ranking_'.str_shuffle(uniqid());
63
 
64
+ $this->shortcode_html .= "<table class='yasr-rankings' id=$table_id>";
 
65
 
66
+ $array_with_title = self::rankingData($this->query_highest_rated_overall);
67
+
68
+ wp_localize_script('yasrfront',
69
+ $table_id,
70
+ array(
71
+ 'data_overall' => $array_with_title,
72
+ 'source' => 'overall_rating',
73
+ 'size' => $this->starSize(),
74
+ 'params' => $table_attributes['sql_params'],
75
+ 'text_position' => $table_attributes['text_position'],
76
+ 'custom_text' => $table_attributes['custom_text']
77
+ ));
78
 
 
79
  $this->shortcode_html .= "</table>";
80
  }
81
  else {
85
  }
86
 
87
  /**
88
+ * Returns the shortcode for yasr_most_or_highest_rated_posts
89
+ * */
90
+ public function vvReturnMostHighestRated () {
91
+ $this->shortcode_html = '<!-- Yasr Most Or Highest Rated Shortcode -->';
 
 
 
 
 
92
  $this->query_result_most_rated_visitor = YasrRankingData::rankingVVGetResults(false, 'most');
93
  $this->query_result_highest_rated_visitor = YasrRankingData::rankingVVGetResults(false, 'highest');
94
+ $this->returnTableVV();
95
+ $this->shortcode_html .= '<!--End Yasr TMost Or Highest Rated Shortcode -->';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
  return $this->shortcode_html;
 
98
  }
99
 
100
  /**
101
+ * Create the queries for the rankings
102
+ * Return the full html for the shortcode
103
+ *
104
+ * @param $sql_params array|string - params that can be used in REST API
105
  */
106
+ public function returnTableVV($sql_params=null) {
107
+ if($this->query_result_most_rated_visitor && $this->query_result_highest_rated_visitor) {
108
+
109
+ $table_attributes = $this->sanitizeParams($sql_params);
110
+
111
+ $vv_most_data = self::rankingData($this->query_result_most_rated_visitor);
112
+ $vv_highest_data = self::rankingData($this->query_result_highest_rated_visitor);
113
+
114
+ $table_id = 'yasr_vv_ranking_' . str_shuffle(uniqid());
115
+
116
+ $this->shortcode_html .= "<table class='yasr-rankings' id=$table_id>";
117
+
118
+ wp_localize_script(
119
+ 'yasrfront',
120
+ $table_id,
121
+ array(
122
+ 'most' => $vv_most_data,
123
+ 'highest' => $vv_highest_data,
124
+ 'source' => 'visitor_votes',
125
+ 'size' => $this->starSize(),
126
+ 'params' => $table_attributes['sql_params'],
127
+ 'view' => $table_attributes['view'],
128
+ 'required_votes' => $table_attributes['required_votes']
129
+ )
130
+ );
131
+ $this->shortcode_html .= '</table>';
132
+ } else {
133
+ _e("No data found", 'yet-another-stars-rating');
134
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
 
 
 
 
 
 
136
  }
137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  /**
139
  * Returns an array with post titles and links
140
  *
155
  foreach ($query_result as $result) {
156
  $data_array[$i]['post_id'] = (int)$result->post_id;
157
  $data_array[$i]['rating'] = round($result->rating,1);
158
+ if(isset($result->number_of_votes)) {
159
  $data_array[$i]['number_of_votes'] = (int)$result->number_of_votes;
160
  }
161
+ $data_array[$i]['title'] = wp_strip_all_tags(get_the_title($result->post_id));
162
  $data_array[$i]['link'] = get_permalink($result->post_id); //Get permalink from post id
163
  $i++;
164
  } //End foreach
166
  return $data_array;
167
  }
168
 
169
+
170
+ /**
171
+ * @author Dario Curvino <@dudo>
172
+ * @since 2.5.7
173
+ * @param $sql_params array|string - params that can be used in REST API
174
+ *
175
+ * @return array
176
+ */
177
+ private function sanitizeParams($sql_params=null) {
178
+
179
+ $array_to_return['sql_params'] = false;
180
+ $array_to_return['custom_text'] = __('Rating:', 'yet-another-stars-rating');
181
+ $array_to_return['text_position'] = 'after';
182
+ $array_to_return['view'] = 'most';
183
+ $array_to_return['required_votes'] = false;
184
+
185
+ if(is_array($sql_params)) {
186
+ $array_to_return['sql_params'] = $sql_params['sql_params'];
187
+ $array_to_return['custom_text'] = $sql_params['custom_text'];
188
+ $array_to_return['text_position'] = $sql_params['text_position'];
189
+ $array_to_return['view'] = $sql_params['view'];
190
+ $array_to_return['required_votes'] = $sql_params['required_votes'];
191
+ }
192
+
193
+ return $array_to_return;
194
+
195
+ }
196
+
197
  }
includes/shortcodes/classes/YasrVisitorVotes.php CHANGED
@@ -82,7 +82,7 @@ class YasrVisitorVotes extends YasrShortcode {
82
  if ($this->readonly === true || $this->readonly === "yes") {
83
  $htmlid = 'yasr-visitor-votes-readonly-rater-'.$this->unique_id;
84
 
85
- $this->shortcode_html = "<div class='yasr-rater-stars-visitor-votes'
86
  id='$htmlid'
87
  data-rating='$average_rating'
88
  data-rater-starsize='".$this->starSize()."'
@@ -110,7 +110,7 @@ class YasrVisitorVotes extends YasrShortcode {
110
  $this->textBeforeAfterStars($number_of_votes, $average_rating);
111
 
112
  $this->shortcode_html .= "<div id='$htmlid'
113
- class='yasr-rater-stars-visitor-votes'
114
  data-rater-postid='$this->post_id'
115
  data-rating='$average_rating'
116
  data-rater-starsize='".$this->starSize()."'
82
  if ($this->readonly === true || $this->readonly === "yes") {
83
  $htmlid = 'yasr-visitor-votes-readonly-rater-'.$this->unique_id;
84
 
85
+ $this->shortcode_html = "<div class='yasr-rater-stars-vv'
86
  id='$htmlid'
87
  data-rating='$average_rating'
88
  data-rater-starsize='".$this->starSize()."'
110
  $this->textBeforeAfterStars($number_of_votes, $average_rating);
111
 
112
  $this->shortcode_html .= "<div id='$htmlid'
113
+ class='yasr-rater-stars-vv'
114
  data-rater-postid='$this->post_id'
115
  data-rating='$average_rating'
116
  data-rater-starsize='".$this->starSize()."'
includes/shortcodes/yasr-shortcode-functions.php CHANGED
@@ -144,10 +144,10 @@ add_shortcode ('yasr_most_or_highest_rated_posts', 'yasr_most_or_highest_rated_p
144
  *
145
  * @return string|void|null
146
  */
147
- function yasr_most_or_highest_rated_posts_callback () {
148
  $most_highest_obj = new YasrRankings(false, 'yasr_most_or_highest_rated_posts');
149
 
150
- return $most_highest_obj->vvReturnMostHighestRatedPost();
151
  } //End function
152
 
153
 
144
  *
145
  * @return string|void|null
146
  */
147
+ function yasr_most_or_highest_rated_posts_callback() {
148
  $most_highest_obj = new YasrRankings(false, 'yasr_most_or_highest_rated_posts');
149
 
150
+ return $most_highest_obj->vvReturnMostHighestRated();
151
  } //End function
152
 
153
 
public/classes/YasrPublicFilters.php CHANGED
@@ -407,7 +407,7 @@ class YasrPublicFilters {
407
 
408
  $post_type = YasrCustomPostTypes::returnBaseUrl($post_id);
409
 
410
- $vv_widget = "<div class='yasr-stars-title yasr-rater-stars-visitor-votes'
411
  id='$htmlid'
412
  data-rating='$average_rating'
413
  data-rater-starsize='16'
407
 
408
  $post_type = YasrCustomPostTypes::returnBaseUrl($post_id);
409
 
410
+ $vv_widget = "<div class='yasr-stars-title yasr-rater-stars-vv'
411
  id='$htmlid'
412
  data-rating='$average_rating'
413
  data-rater-starsize='16'
readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires at least: 4.9.0
5
  Contributors: Dudo
6
  Tested up to: 5.6
7
  Requires PHP: 5.3
8
- Stable tag: 2.5.6
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Boost the way people interact with your site with an easy WordPress stars rating system! With schema.org rich snippets YASR will improve your SEO
@@ -181,6 +181,9 @@ If doesn't, you should work on your seo reputation.
181
 
182
  The full changelog can be found in the plugin's directory. Recent entries:
183
 
 
 
 
184
  = 2.5.6 =
185
  * FIX: register_rest_route called incorrectly in Gutenberg
186
  * FIX: random js error into dashboard (thanks to @lwangaman)
5
  Contributors: Dudo
6
  Tested up to: 5.6
7
  Requires PHP: 5.3
8
+ Stable tag: 2.5.7
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Boost the way people interact with your site with an easy WordPress stars rating system! With schema.org rich snippets YASR will improve your SEO
181
 
182
  The full changelog can be found in the plugin's directory. Recent entries:
183
 
184
+ = 2.5.7 =
185
+ * TWEAK: Rankings have been rewritten: now are build in REACT, this will allow much more flexibility
186
+
187
  = 2.5.6 =
188
  * FIX: register_rest_route called incorrectly in Gutenberg
189
  * FIX: random js error into dashboard (thanks to @lwangaman)
yet-another-stars-rating.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Yet Another Stars Rating
5
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
6
  * Description: Boost the way people interact with your site with an easy WordPress stars rating system! With schema.org rich snippets YASR will improve your SEO
7
- * Version: 2.5.6
8
  * Author: Dario Curvino
9
  * Author URI: https://dariocurvino.it/
10
  * Text Domain: yet-another-stars-rating
@@ -76,7 +76,7 @@ if ( !function_exists( 'yasr_fs' ) ) {
76
  yasr_fs();
77
  // Signal that SDK was initiated.
78
  do_action( 'yasr_fs_loaded' );
79
- define( 'YASR_VERSION_NUM', '2.5.6' );
80
  //Plugin absolute path
81
  //e.g. /var/www/html/plugin_development/wp-content/plugins/yet-another-stars-rating
82
  define( 'YASR_ABSOLUTE_PATH', __DIR__ );
4
  * Plugin Name: Yet Another Stars Rating
5
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
6
  * Description: Boost the way people interact with your site with an easy WordPress stars rating system! With schema.org rich snippets YASR will improve your SEO
7
+ * Version: 2.5.7
8
  * Author: Dario Curvino
9
  * Author URI: https://dariocurvino.it/
10
  * Text Domain: yet-another-stars-rating
76
  yasr_fs();
77
  // Signal that SDK was initiated.
78
  do_action( 'yasr_fs_loaded' );
79
+ define( 'YASR_VERSION_NUM', '2.5.7' );
80
  //Plugin absolute path
81
  //e.g. /var/www/html/plugin_development/wp-content/plugins/yet-another-stars-rating
82
  define( 'YASR_ABSOLUTE_PATH', __DIR__ );