WordPress Infinite Scroll – Ajax Load More - Version 5.1.6.1

Version Description

  • November 19, 2019 =
  • NEW - Added new placeholder parameter that allows users to display a placeholder image while Ajax content is being loaded. View Example.
  • FIX - Fixed issue with deep linking URLs in the filters add-on not sending user to correct location on the page.
  • FIX - Fixed issue with HTML elements in no_results_text being rendered as plain text.
  • UPDATE - Updated admin CSS to match WordPress 5.3.
  • UPDATE - Improved license expiration notices and renewal links.
  • UPDATE - Updated alm_canonical_url filter. This filter now requires the ALM ID to be added into the filter. alm_canonical_url_{id} like the other filter hooks.
Download this release

Release Info

Developer dcooney
Plugin Icon 128x128 WordPress Infinite Scroll – Ajax Load More
Version 5.1.6.1
Comparing to
See all releases

Code changes from version 5.1.6 to 5.1.6.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://connekthq.com/donate/
4
  Tags: infinite scroll, infinite scrolling, scroll, infinite, lazy load, lazy loading, endless scroll, pagination, ajax pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
5
  Requires at least: 4.0
6
  Tested up to: 5.3
7
- Stable tag: 5.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -126,7 +126,8 @@ Ajax Load More accepts a number of parameters that are passed to the WordPress q
126
  * **css_classes** - Add custom CSS classes to the Ajax Load More container. Default = null
127
  * **id** - A unique ID for the Ajax Load More instance.
128
  * **nested** - Is this a nested Ajax Load More instance. Default = false
129
- * **no_results_text** - Display text/html when zero results are returned in an Ajax Load More query.
 
130
 
131
  → [See All Parameters](https://connekthq.com/plugins/ajax-load-more/docs/shortcode-parameters/)
132
 
@@ -381,6 +382,15 @@ How to install Ajax Load More.
381
 
382
  == Changelog ==
383
 
 
 
 
 
 
 
 
 
 
384
  = 5.1.6 - October 22, 2019 =
385
  * NEW - Added support for ACF Sub Fields in the [ACF extension](https://connekthq.com/plugins/ajax-load-more/extensions/advanced-custom-fields/).
386
  * FIX - Fixed issue with ALM not starting if the global settings were not saved previously 😔.
4
  Tags: infinite scroll, infinite scrolling, scroll, infinite, lazy load, lazy loading, endless scroll, pagination, ajax pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
5
  Requires at least: 4.0
6
  Tested up to: 5.3
7
+ Stable tag: 5.1.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
126
  * **css_classes** - Add custom CSS classes to the Ajax Load More container. Default = null
127
  * **id** - A unique ID for the Ajax Load More instance.
128
  * **nested** - Is this a nested Ajax Load More instance. Default = false
129
+ * **no_results_text** - Display text/html when zero results are returned in an Ajax Load More query. Default = null
130
+ * **placeholder** - Display a placeholder image while Ajax content is being loaded. Default = false
131
 
132
  → [See All Parameters](https://connekthq.com/plugins/ajax-load-more/docs/shortcode-parameters/)
133
 
382
 
383
  == Changelog ==
384
 
385
+ = 5.1.6.1 - November 19, 2019 =
386
+ * NEW - Added new `placeholder` parameter that allows users to display a placeholder image while Ajax content is being loaded. [View Example](https://connekthq.com/plugins/ajax-load-more/examples/placeholder/).
387
+ * FIX - Fixed issue with deep linking URLs in the filters add-on not sending user to correct location on the page.
388
+ * FIX - Fixed issue with HTML elements in `no_results_text` being rendered as plain text.
389
+ * UPDATE - Updated admin CSS to match WordPress 5.3.
390
+ * UPDATE - Improved license expiration notices and renewal links.
391
+ * UPDATE - Updated `alm_canonical_url` filter. This filter now requires the ALM ID to be added into the filter. `alm_canonical_url_{id}` like the other filter hooks.
392
+
393
+
394
  = 5.1.6 - October 22, 2019 =
395
  * NEW - Added support for ACF Sub Fields in the [ACF extension](https://connekthq.com/plugins/ajax-load-more/extensions/advanced-custom-fields/).
396
  * FIX - Fixed issue with ALM not starting if the global settings were not saved previously 😔.
admin/admin.php CHANGED
@@ -80,7 +80,7 @@ function alm_prefix_plugin_update_message( $data, $response ) {
80
  __( 'Please activate the <a href="admin.php?page=ajax-load-more-licenses" target="_blank">license</a> to update.', 'ajax-load-more' )
81
  );
82
  }
83
- //alm_pretty_print($response);
84
  }
85
  }
86
  }
@@ -180,56 +180,6 @@ add_action( 'admin_init', 'alm_repeaters_export');
180
 
181
 
182
 
183
- /*
184
- * alm_admin_notice_errors
185
- * Invalid license notifications
186
- *
187
- * @since 3.3.0
188
- */
189
- function alm_admin_notice_errors() {
190
-
191
- $screen = get_current_screen();
192
- $alm_is_admin_screen = alm_is_admin_screen();
193
- // Exit if screen is not dashboard, plugins or ALM admin.
194
- if(!$alm_is_admin_screen && $screen->id !== 'dashboard' && $screen->id !== 'plugins'){
195
- return;
196
- }
197
- $class = 'notice error alm-err-notice';
198
- $message = '';
199
- $count = 0;
200
-
201
- if(has_action('alm_pro_installed')){ // Pro
202
- $addons = alm_get_pro_addon();
203
- $message = __( 'You have an invalid or expired <a href="admin.php?page=ajax-load-more"><b>Ajax Load More Pro</b></a> license key - please visit the <a href="admin.php?page=ajax-load-more-licenses">License</a> section to input your key or <a href="https://connekthq.com/plugins/ajax-load-more/pro/" target="_blank">purchase</a> one now.', 'ajax-load-more' );
204
-
205
- } else {
206
- $addons = alm_get_addons();
207
- $message = __( 'You have invalid <a href="admin.php?page=ajax-load-more"><b>Ajax Load More</b></a> license keys - please visit the <a href="admin.php?page=ajax-load-more-licenses">Licenses</a> section and input your keys.', 'ajax-load-more' );
208
- }
209
-
210
- // Loop each addon
211
- foreach($addons as $addon){
212
- $action = $addon['action']; // Get action
213
- if (has_action($action)){
214
- $key = $addon['key']; // Option key
215
- $status = $addon['status']; // license status
216
- $addon_status = get_option( $status );
217
- if( !isset($addon_status) || empty($addon_status) || $addon_status !== 'valid' ) {
218
- $count++;
219
- }
220
- }
221
- }
222
-
223
- // Print result
224
- if( $count > 0 ) {
225
- printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
226
- }
227
-
228
- }
229
- add_action( 'admin_notices', 'alm_admin_notice_errors' );
230
-
231
-
232
-
233
  /*
234
  * alm_license_activation
235
  * Activate Add-on licenses
@@ -320,10 +270,68 @@ function alm_license_activation(){
320
 
321
 
322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
  /*
324
  * alm_license_check
325
  * Check the status of a license
326
  *
 
 
 
 
327
  * @since 2.8.3
328
  */
329
  function alm_license_check($item_id = null, $license = null, $option_status = null){
@@ -332,28 +340,38 @@ function alm_license_check($item_id = null, $license = null, $option_status = nu
332
  return false;
333
  }
334
 
335
- $api_params = array(
336
- 'edd_action' => 'check_license',
337
- 'license' => $license,
338
- 'item_id' => $item_id,
339
- 'url' => home_url()
340
- );
341
- $response = wp_remote_post( ALM_STORE_URL, array( 'body' => $api_params, 'timeout' => 15, 'sslverify' => false ) );
342
- if ( is_wp_error( $response ) ) {
343
- return false;
344
- }
345
-
346
- // Get Data
347
- $license_data = json_decode( wp_remote_retrieve_body( $response ) );
348
-
349
- // Update the options table
350
- update_option( $option_status, $license_data->license);
351
-
352
- // Set transient value to store license status
353
- set_transient( "alm_{$item_id}_{$license}", $license_data->license, 168 * HOUR_IN_SECONDS ); // 7 days
354
 
355
- // Return the status
356
- return $license_data->license;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
  }
359
 
@@ -1899,7 +1917,7 @@ function _alm_uninstall_callback(){
1899
  $html = '<input type="hidden" name="alm_settings[_alm_uninstall]" value="0" />';
1900
  $html .= '<input type="checkbox" name="alm_settings[_alm_uninstall]" id="_alm_uninstall" value="1"'. (($options['_alm_uninstall']) ? ' checked="checked"' : '') .' />';
1901
  $html .= '<label for="_alm_uninstall">'.__('Check this box if Ajax Load More should remove all of its data* when the plugin is deleted.', 'ajax-load-more');
1902
- $html .= '<span style="display:block">'. __('* Database Tables, Options and Repeater Templates', 'ajax-load-more') .'</span>';
1903
  $html .= '</label>';
1904
 
1905
  echo $html;
80
  __( 'Please activate the <a href="admin.php?page=ajax-load-more-licenses" target="_blank">license</a> to update.', 'ajax-load-more' )
81
  );
82
  }
83
+
84
  }
85
  }
86
  }
180
 
181
 
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  /*
184
  * alm_license_activation
185
  * Activate Add-on licenses
270
 
271
 
272
 
273
+ /*
274
+ * alm_admin_notice_errors
275
+ * Invalid license notifications
276
+ *
277
+ * @since 3.3.0
278
+ */
279
+ function alm_admin_notice_errors() {
280
+
281
+ $screen = get_current_screen();
282
+ $alm_is_admin_screen = alm_is_admin_screen();
283
+
284
+ // Exit if screen is not dashboard, plugins, settings or ALM admin.
285
+ if(!$alm_is_admin_screen && $screen->id !== 'dashboard' && $screen->id !== 'plugins' && $screen->id !== 'options-general' && $screen->id !== 'options'){
286
+ return;
287
+ }
288
+
289
+ $class = 'notice error alm-err-notice';
290
+ $message = '';
291
+ $count = 0;
292
+
293
+ if(has_action('alm_pro_installed')){ // Pro
294
+ $addons = alm_get_pro_addon();
295
+ $message = __( 'You have an invalid or expired <a href="admin.php?page=ajax-load-more"><b>Ajax Load More Pro</b></a> license key - please visit the <a href="admin.php?page=ajax-load-more-licenses">License</a> section to input your key or <a href="https://connekthq.com/plugins/ajax-load-more/pro/" target="_blank">purchase</a> one now.', 'ajax-load-more' );
296
+
297
+ } else { // Other Addons
298
+ $addons = alm_get_addons();
299
+ $message = __( 'You have invalid or expired <a href="admin.php?page=ajax-load-more"><b>Ajax Load More</b></a> license keys - please visit the <a href="admin.php?page=ajax-load-more-licenses">Licenses</a> section and input your keys.', 'ajax-load-more' );
300
+ }
301
+
302
+ // Loop each addon
303
+ foreach($addons as $addon){
304
+
305
+ if (has_action($addon['action'])){
306
+ $key = $addon['key']; // Option key
307
+ $status = get_option($addon['status']); // license status
308
+
309
+ // Check license
310
+ $license_status = alm_license_check($addon['item_id'], get_option($key), $status);
311
+
312
+ if( !isset($status) || empty($status) || $license_status !== 'valid' ) {
313
+ $count++;
314
+ }
315
+ }
316
+ }
317
+
318
+ // Print result
319
+ if( $count > 0 ) {
320
+ printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
321
+ }
322
+ }
323
+ add_action( 'admin_notices', 'alm_admin_notice_errors' );
324
+
325
+
326
+
327
  /*
328
  * alm_license_check
329
  * Check the status of a license
330
  *
331
+ * @param {String} $item_id The ID of the product
332
+ * @param {String} $license The actual license key
333
+ * @param {String} $option_status The status of the license
334
+ * @updated 5.1.7
335
  * @since 2.8.3
336
  */
337
  function alm_license_check($item_id = null, $license = null, $option_status = null){
340
  return false;
341
  }
342
 
343
+ // Get plugin transient for license status
344
+ if(get_transient( "alm_{$item_id}_{$license}")){
345
+
346
+ // Transient exists
347
+ return get_transient( "alm_{$item_id}_{$license}");
348
+
349
+ } else {
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
+ $api_params = array(
352
+ 'edd_action' => 'check_license',
353
+ 'license' => $license,
354
+ 'item_id' => $item_id,
355
+ 'url' => home_url()
356
+ );
357
+ $response = wp_remote_post( ALM_STORE_URL, array( 'body' => $api_params, 'timeout' => 15, 'sslverify' => false ) );
358
+ if ( is_wp_error( $response ) ) {
359
+ return false;
360
+ }
361
+
362
+ // Get Data
363
+ $license_data = json_decode( wp_remote_retrieve_body( $response ) );
364
+
365
+ // Update the options table
366
+ update_option( $option_status, $license_data->license);
367
+
368
+ // Set transient value to store license status
369
+ set_transient( "alm_{$item_id}_{$license}", $license_data->license, 168 * HOUR_IN_SECONDS ); // 7 days
370
+
371
+ // Return the status
372
+ return $license_data->license;
373
+
374
+ }
375
 
376
  }
377
 
1917
  $html = '<input type="hidden" name="alm_settings[_alm_uninstall]" value="0" />';
1918
  $html .= '<input type="checkbox" name="alm_settings[_alm_uninstall]" id="_alm_uninstall" value="1"'. (($options['_alm_uninstall']) ? ' checked="checked"' : '') .' />';
1919
  $html .= '<label for="_alm_uninstall">'.__('Check this box if Ajax Load More should remove all of its data* when the plugin is deleted.', 'ajax-load-more');
1920
+ $html .= '<span style="display:block"><em>'. __('* Database Tables, Options and Repeater Templates', 'ajax-load-more') .'</em></span>';
1921
  $html .= '</label>';
1922
 
1923
  echo $html;
admin/dist/css/admin.css CHANGED
@@ -1021,6 +1021,24 @@ body.ajax-load-more_page_ajax-load-more-pro {
1021
  transform: translateY(-50%);
1022
  top: 50%; }
1023
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1024
  /*
1025
  * Admin - Popup Generator
1026
  *
@@ -1076,22 +1094,17 @@ body.ajax-load-more_page_ajax-load-more-pro {
1076
  padding-bottom: 5px !important; }
1077
 
1078
  #alm-settings form h2 {
1079
- background: #f7f7f7;
1080
- border: 1px solid #e1e1e1;
1081
- border-bottom: none;
1082
- padding: 20px 20px 6px;
1083
- margin: 20px 0 0;
1084
  font-weight: 700;
1085
  border-radius: 2px 2px 0 0; }
1086
  #alm-settings form h2:first-of-type {
1087
- margin: 0; }
1088
  #alm-settings form h2 + p {
1089
  color: #999;
1090
- padding: 0 20px 17px;
1091
- border-right: 1px solid #e1e1e1;
1092
- border-left: 1px solid #e1e1e1;
1093
- background: #f7f7f7;
1094
- margin: 0; }
1095
 
1096
  .ajax-load-more .file-location {
1097
  border: 1px solid #e1e1e1;
@@ -1120,7 +1133,8 @@ body.ajax-load-more_page_ajax-load-more-pro {
1120
  border-right: 1px solid #e1e1e1; }
1121
  .ajax-load-more .file-location code {
1122
  color: #999;
1123
- background: transparent; }
 
1124
 
1125
  .ajax-load-more code {
1126
  background: #fcf3d0; }
@@ -1324,16 +1338,19 @@ a.layout-hover:hover img {
1324
 
1325
  a.button-small {
1326
  text-decoration: none;
1327
- font-size: 11px;
1328
- padding: 7px;
1329
  display: inline-block;
1330
  background-color: #eaf6fb;
 
1331
  color: #333;
1332
  line-height: 1.1;
1333
  border-radius: 2px; }
1334
  a.button-small:hover, a.button-small:focus {
1335
  color: #222;
1336
- background-color: #d9edf5; }
 
 
1337
 
1338
  .ajax-load-more ul {
1339
  padding: 0;
@@ -1737,8 +1754,8 @@ a.button-small {
1737
  display: block;
1738
  overflow: hidden;
1739
  clear: both;
1740
- border: 1px solid #efefef;
1741
- border-radius: 2px; }
1742
  .ajax-load-more .row.no-brd {
1743
  border: none !important;
1744
  padding: 0 !important; }
@@ -2225,14 +2242,17 @@ hr.indented {
2225
  /* Table Overrides */
2226
  .admin.ajax-load-more.settings .form-table td,
2227
  .admin.ajax-load-more.settings .form-table th {
2228
- padding: 30px 0;
2229
  line-height: 1.5; }
2230
 
2231
  .admin.ajax-load-more.settings .form-table td {
2232
  padding-right: 20px; }
2233
 
2234
  .admin.ajax-load-more.settings .form-table th {
2235
- padding-left: 20px; }
 
 
 
2236
 
2237
  .admin.ajax-load-more.settings .form-table p {
2238
  margin-top: 0; }
@@ -2333,8 +2353,8 @@ p.loading,
2333
  padding-left: 24px; }
2334
 
2335
  .alm-dropdown ul li a.updating {
2336
- background-position: 6px center;
2337
- padding-left: 32px; }
2338
 
2339
  .restore-default {
2340
  float: right;
@@ -2392,7 +2412,7 @@ table.highlight {
2392
 
2393
  .form-table {
2394
  border: 1px solid #e1e1e1;
2395
- margin: 0 0 25px; }
2396
  .form-table br {
2397
  height: 1px;
2398
  display: block;
@@ -2445,13 +2465,15 @@ table.highlight {
2445
  right: 15px;
2446
  bottom: 15px; }
2447
  .repeaters .alm-delete a {
2448
- border-radius: 2px;
2449
  background: none;
2450
  color: #c94141;
2451
  font-size: 14px;
 
 
2452
  text-decoration: none;
2453
  display: block;
2454
- padding: 5px 10px; }
2455
  .repeaters .alm-delete a:hover {
2456
  background-color: #c94141;
2457
  color: #fff; }
@@ -2459,8 +2481,6 @@ table.highlight {
2459
  -webkit-box-shadow: none;
2460
  box-shadow: none; }
2461
  .repeaters .alm-delete a:active {
2462
- -webkit-box-shadow: inset 0 1px 1px #ccc !important;
2463
- box-shadow: inset 0 1px 1px #ccc !important;
2464
  background-color: #b93636; }
2465
 
2466
  .repeaters .row:hover .alm-delete {
@@ -2588,7 +2608,7 @@ table.highlight {
2588
 
2589
  /* Add-on Callout! */
2590
  .call-out {
2591
- background: #63ccb2;
2592
  padding: 18px 100px 18px 18px;
2593
  border-radius: 3px;
2594
  margin: 0;
@@ -2637,9 +2657,9 @@ table.highlight {
2637
  font-size: 13px; }
2638
 
2639
  .call-out a {
2640
- color: #3f524d !important;
2641
  text-decoration: none;
2642
- font-weight: 500; }
2643
 
2644
  .call-out a:hover,
2645
  .call-out a:focus {
@@ -2735,13 +2755,13 @@ span.cnkt-button.installed i,
2735
  box-shadow: inset 0 -6px 6px rgba(0, 0, 0, 0.05), 0 1px 0 #fff; }
2736
 
2737
  .license-title .status.valid {
2738
- background-color: #9ad682; }
2739
 
2740
  .license h2 {
2741
  margin: 0;
2742
  padding: 15px 15px 15px 38px;
2743
  font-size: 16px;
2744
- font-weight: 600;
2745
  line-height: 1.2; }
2746
 
2747
  .license p,
@@ -2823,10 +2843,8 @@ span.cnkt-button.installed i,
2823
  top: -3px; }
2824
 
2825
  .license-wrap input[type=text] {
2826
- background-color: #f7f7f7;
2827
  margin: 0;
2828
  width: 100% !important;
2829
- border-color: #e7e7e7;
2830
  padding: 14px; }
2831
 
2832
  .license-wrap .button-primary {
@@ -2853,7 +2871,7 @@ span.cnkt-button.installed i,
2853
  cursor: default; }
2854
 
2855
  .license-key-field .status.active {
2856
- background-color: #9ad682; }
2857
 
2858
  .license-key-field .status.inactive {
2859
  background-color: #d45656; }
@@ -2887,8 +2905,8 @@ span.cnkt-button.installed i,
2887
  margin: 0 0 20px;
2888
  overflow: visible;
2889
  position: relative;
2890
- -webkit-box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.045);
2891
- box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.045); }
2892
  .ajax-load-more .cnkt-sidebar .cta .alm-file-location {
2893
  padding-top: 15px;
2894
  margin-top: 15px;
@@ -3364,7 +3382,7 @@ span.cnkt-button.installed i,
3364
  .alm-cache .alm-cache-search-wrap {
3365
  position: relative;
3366
  display: block;
3367
- margin: 0 0 10px; }
3368
  .alm-cache .alm-cache-search-wrap input {
3369
  width: 100% !important;
3370
  margin: 0 !important;
@@ -3380,6 +3398,8 @@ span.cnkt-button.installed i,
3380
  z-index: 1; }
3381
  .alm-cache .alm-dir-listing {
3382
  border: 1px solid #e1e1e1;
 
 
3383
  padding: 0;
3384
  margin: 10px 0 0; }
3385
  .alm-cache .alm-dir-listing.theme-repeaters {
@@ -3406,12 +3426,12 @@ span.cnkt-button.installed i,
3406
  content: "\f07b"; }
3407
  .alm-cache .alm-dir-listing .dir-title .delete {
3408
  position: absolute;
3409
- right: 8px;
3410
- top: 11px;
3411
  font-weight: 400;
3412
- font-size: 14px;
3413
  text-decoration: none;
3414
- padding: 5px 10px;
3415
  border: 1px solid #e1e1e1;
3416
  color: #ccc;
3417
  border-radius: 2px; }
@@ -3519,12 +3539,14 @@ p.theme-title {
3519
  overflow: hidden;
3520
  width: 47%;
3521
  font-size: 14px;
3522
- background: transparent url(../../img/directory-list.gif) no-repeat left center; }
3523
 
3524
  .alm-dir-listing.theme-repeaters ul li {
3525
  display: block;
3526
  width: 100%;
3527
- padding-top: 10px; }
 
 
3528
 
3529
  .alm-dir-listing.theme-repeaters ul li label {
3530
  display: block;
@@ -3532,10 +3554,10 @@ p.theme-title {
3532
 
3533
  .alm-dir-listing ul li:last-child,
3534
  .alm-dir-listing ul li:nth-last-child(2) {
3535
- background-image: url(../../img/directory-list-btm.gif); }
3536
 
3537
  .alm-dir-listing.theme-repeaters ul li:nth-last-child(2) {
3538
- background: transparent url(../../img/directory-list.gif) no-repeat left center; }
3539
 
3540
  .alm-dir-listing ul li a {
3541
  text-decoration: none; }
@@ -3560,6 +3582,27 @@ p.theme-title {
3560
  *
3561
  * @since 2.4
3562
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3563
  .shortcode-builder input[type=checkbox],
3564
  .shortcode-builder input[type=radio],
3565
  .ajax-load-more .form-table input[type=checkbox],
@@ -3578,7 +3621,7 @@ p.theme-title {
3578
  min-height: 23px;
3579
  width: 100%;
3580
  display: inline-block;
3581
- padding: 0 0 0 30px;
3582
  margin: 0 0 5px;
3583
  font-size: 14px;
3584
  line-height: 1.5;
@@ -3722,7 +3765,7 @@ p.theme-title {
3722
  right: 7px;
3723
  z-index: 8; }
3724
  .alm-drop-btn.alm-repeater-options a.target {
3725
- padding: 8px 10px;
3726
  -webkit-box-shadow: none;
3727
  box-shadow: none;
3728
  border: none; }
@@ -3732,13 +3775,14 @@ p.theme-title {
3732
 
3733
  .alm-drop-btn a.target {
3734
  position: relative;
3735
- color: #999;
3736
  text-decoration: none !important;
3737
- padding: 8px 12px 8px 30px;
3738
- border: 1px solid #e1e1e1;
3739
  border-radius: 3px;
3740
  font-size: 13px;
3741
- line-height: 1.25;
 
3742
  display: block;
3743
  -webkit-box-shadow: 0 0 0 1px #fff;
3744
  box-shadow: 0 0 0 1px #fff; }
@@ -3747,8 +3791,8 @@ p.theme-title {
3747
  color: #999;
3748
  font-size: 15px;
3749
  position: absolute;
3750
- top: 9px;
3751
- left: 10px; }
3752
 
3753
  .alm-repeater-options a.target:hover i.fa-cog {
3754
  color: #333; }
@@ -3787,8 +3831,11 @@ p.theme-title {
3787
  .alm-drop-btn.alm-layout-selection li.type {
3788
  height: 36px;
3789
  line-height: 36px;
3790
- padding: 0 0 0 8px;
3791
- position: relative; }
 
 
 
3792
 
3793
  .alm-dropdown ul li.layout i {
3794
  top: 11px; }
@@ -3845,16 +3892,20 @@ p.theme-title {
3845
  .alm-drop-btn.alm-layout-selection a.external,
3846
  .alm-drop-btn.alm-layout-selection a.add-on {
3847
  background-color: #f7f7f7;
3848
- padding: 13px 10px 13px 38px;
3849
  display: block; }
3850
 
3851
  .alm-drop-btn.alm-layout-selection a.external {
3852
- padding: 0 10px 0 38px; }
 
3853
 
3854
  .alm-drop-btn.alm-layout-selection a.external i {
3855
  color: #999;
3856
  border-color: #ccc;
3857
- top: 11px;
 
 
 
3858
  width: 38px; }
3859
 
3860
  .alm-drop-btn.alm-layout-selection a.external:hover i {
@@ -3862,14 +3913,15 @@ p.theme-title {
3862
 
3863
  .alm-drop-btn.alm-layout-selection a.add-on {
3864
  line-height: 1.5;
3865
- background-color: #63ccb2;
3866
  border: none;
3867
  color: #fff;
3868
  font-weight: 400;
3869
  text-overflow: inherit;
3870
  height: auto;
3871
  white-space: normal;
3872
- font-size: 12px; }
 
3873
 
3874
  .alm-drop-btn.alm-layout-selection a.add-on:hover,
3875
  .alm-drop-btn.alm-layout-selection a.add-on:focus {
@@ -3884,7 +3936,8 @@ p.theme-title {
3884
 
3885
  .alm-drop-btn.alm-layout-selection a.add-on i {
3886
  top: 14px;
3887
- left: 3px; }
 
3888
 
3889
  .alm-drop-btn.alm-layout-selection a.add-on i {
3890
  color: #fff !important;
@@ -3894,10 +3947,8 @@ p.theme-title {
3894
  .alm-drop-btn.alm-layout-selection a.target:active,
3895
  .alm-drop-btn.alm-layout-selection.active a.target {
3896
  color: #222;
3897
- background-color: #fff;
3898
- border-color: #ccc;
3899
- -webkit-box-shadow: 0 0 3px #e7e7e7;
3900
- box-shadow: 0 0 3px #e7e7e7;
3901
  opacity: 1; }
3902
 
3903
  .alm-drop-btn.alm-layout-selection.active a.target,
@@ -3971,14 +4022,14 @@ span.dismiss a {
3971
  background: #fff;
3972
  border-radius: 3px;
3973
  border: 1px solid #ccc;
3974
- -webkit-box-shadow: 0 0 4px #ccc;
3975
- box-shadow: 0 0 4px #ccc;
3976
- padding: 5px 8px;
3977
  width: 220px; }
3978
 
3979
  .alm-layout-selection .alm-dropdown .alm-drop-inner {
3980
  width: 250px;
3981
- padding: 8px 8px 5px; }
3982
 
3983
  .alm-drop-inner:after,
3984
  .alm-drop-inner:before {
@@ -4013,21 +4064,17 @@ span.dismiss a {
4013
 
4014
  .alm-dropdown ul li {
4015
  margin: 0;
4016
- padding: 3px 0;
4017
  list-style: none;
4018
  clear: both;
4019
  font-size: 12px;
4020
  line-height: 1.2;
4021
- border-top: 1px solid #efefef;
4022
  font-weight: 400; }
4023
 
4024
- .alm-dropdown ul li:first-child {
4025
- border: none; }
4026
-
4027
  .alm-dropdown ul li a {
4028
- padding: 0 10px 0 32px;
4029
- line-height: 37px;
4030
- height: 36px;
4031
  display: block;
4032
  text-decoration: none;
4033
  background-position: 4px center;
@@ -4039,15 +4086,26 @@ span.dismiss a {
4039
  white-space: nowrap;
4040
  overflow: hidden;
4041
  text-overflow: ellipsis;
4042
- border-radius: 2px; }
 
 
 
 
 
 
 
 
4043
 
4044
  .alm-dropdown ul li a i {
4045
  margin: 0;
4046
  color: #ccc;
4047
  position: absolute;
4048
- left: 0;
4049
- top: 11px;
4050
- font-size: 13px;
 
 
 
4051
  width: 32px;
4052
  height: 16px;
4053
  line-height: 16px;
@@ -4409,34 +4467,29 @@ span.dismiss a {
4409
  position: relative;
4410
  top: 1px;
4411
  z-index: 9; }
4412
-
4413
- .ajax-load-more .alm-toggle-switch li {
4414
- float: left;
4415
- margin: 0 2px 0 0;
4416
- padding: 0;
4417
- background: none;
4418
- list-style: none; }
4419
-
4420
- .ajax-load-more .alm-toggle-switch li a {
4421
- display: block;
4422
- padding: 15px 22px;
4423
- line-height: 1;
4424
- border-radius: 2px;
4425
- text-decoration: none;
4426
- border: 1px solid #e1e1e1;
4427
- border-radius: 2px 2px 0 0;
4428
- background: #f7f7f7;
4429
- color: #666; }
4430
-
4431
- .ajax-load-more .alm-toggle-switch li a:hover {
4432
- color: #222;
4433
- background-color: #fff; }
4434
-
4435
- .ajax-load-more .alm-toggle-switch li a.active {
4436
- background: #fff;
4437
- font-weight: 600;
4438
- border-bottom-color: #fff;
4439
- color: #111; }
4440
 
4441
  /*
4442
  * Admin screen media queries
@@ -4467,7 +4520,7 @@ span.dismiss a {
4467
  position: static !important;
4468
  border: none; }
4469
  .admin.ajax-load-more.settings .form-table td {
4470
- padding: 24px 17px 20px; }
4471
  .call-out.light {
4472
  padding: 15px !important; }
4473
  .repeaters input.save-repeater {
@@ -4475,7 +4528,9 @@ span.dismiss a {
4475
 
4476
  @media screen and (max-width: 782px) {
4477
  .admin.ajax-load-more.settings .form-table th {
4478
- padding-bottom: 0; }
 
 
4479
  .share-alm .sharing {
4480
  padding-right: 0;
4481
  width: 100%;
1021
  transform: translateY(-50%);
1022
  top: 50%; }
1023
 
1024
+ #wpcontent .ajax-load-more .button:not(.button-primary),
1025
+ #wpcontent .ajax-load-more .button.button-secondary {
1026
+ border-color: #ccc;
1027
+ color: #444;
1028
+ background-color: #f3f5f6; }
1029
+ #wpcontent .ajax-load-more .button:not(.button-primary):hover, #wpcontent .ajax-load-more .button:not(.button-primary):active, #wpcontent .ajax-load-more .button:not(.button-primary):focus,
1030
+ #wpcontent .ajax-load-more .button.button-secondary:hover,
1031
+ #wpcontent .ajax-load-more .button.button-secondary:active,
1032
+ #wpcontent .ajax-load-more .button.button-secondary:focus {
1033
+ color: #222;
1034
+ border-color: #999;
1035
+ background-color: #f1f1f1;
1036
+ -webkit-box-shadow: none;
1037
+ box-shadow: none; }
1038
+ #wpcontent .ajax-load-more .button:not(.button-primary):focus,
1039
+ #wpcontent .ajax-load-more .button.button-secondary:focus {
1040
+ background-color: #e7e7e7; }
1041
+
1042
  /*
1043
  * Admin - Popup Generator
1044
  *
1094
  padding-bottom: 5px !important; }
1095
 
1096
  #alm-settings form h2 {
1097
+ padding: 20px 20px 5px 5px;
1098
+ margin: 0;
 
 
 
1099
  font-weight: 700;
1100
  border-radius: 2px 2px 0 0; }
1101
  #alm-settings form h2:first-of-type {
1102
+ padding-top: 0; }
1103
  #alm-settings form h2 + p {
1104
  color: #999;
1105
+ padding: 0 20px 15px 5px;
1106
+ margin: 0;
1107
+ font-size: 13px; }
 
 
1108
 
1109
  .ajax-load-more .file-location {
1110
  border: 1px solid #e1e1e1;
1133
  border-right: 1px solid #e1e1e1; }
1134
  .ajax-load-more .file-location code {
1135
  color: #999;
1136
+ background: transparent;
1137
+ cursor: help; }
1138
 
1139
  .ajax-load-more code {
1140
  background: #fcf3d0; }
1338
 
1339
  a.button-small {
1340
  text-decoration: none;
1341
+ font-size: 12px;
1342
+ padding: 7px 10px;
1343
  display: inline-block;
1344
  background-color: #eaf6fb;
1345
+ border: 1px solid #b9d2de;
1346
  color: #333;
1347
  line-height: 1.1;
1348
  border-radius: 2px; }
1349
  a.button-small:hover, a.button-small:focus {
1350
  color: #222;
1351
+ background-color: #d9edf5;
1352
+ text-decoration: none;
1353
+ border-color: #98b2be; }
1354
 
1355
  .ajax-load-more ul {
1356
  padding: 0;
1754
  display: block;
1755
  overflow: hidden;
1756
  clear: both;
1757
+ border: 1px solid #e1e1e1;
1758
+ border-radius: 3px; }
1759
  .ajax-load-more .row.no-brd {
1760
  border: none !important;
1761
  padding: 0 !important; }
2242
  /* Table Overrides */
2243
  .admin.ajax-load-more.settings .form-table td,
2244
  .admin.ajax-load-more.settings .form-table th {
2245
+ padding: 20px;
2246
  line-height: 1.5; }
2247
 
2248
  .admin.ajax-load-more.settings .form-table td {
2249
  padding-right: 20px; }
2250
 
2251
  .admin.ajax-load-more.settings .form-table th {
2252
+ padding-left: 20px;
2253
+ font-weight: 700;
2254
+ background-color: #f7f7f7;
2255
+ border-right: 1px solid #e1e1e1; }
2256
 
2257
  .admin.ajax-load-more.settings .form-table p {
2258
  margin-top: 0; }
2353
  padding-left: 24px; }
2354
 
2355
  .alm-dropdown ul li a.updating {
2356
+ background-position: 9px 54%;
2357
+ padding-left: 34px; }
2358
 
2359
  .restore-default {
2360
  float: right;
2412
 
2413
  .form-table {
2414
  border: 1px solid #e1e1e1;
2415
+ margin: 0 0 20px; }
2416
  .form-table br {
2417
  height: 1px;
2418
  display: block;
2465
  right: 15px;
2466
  bottom: 15px; }
2467
  .repeaters .alm-delete a {
2468
+ border-radius: 3px;
2469
  background: none;
2470
  color: #c94141;
2471
  font-size: 14px;
2472
+ line-height: 28px;
2473
+ height: 28px;
2474
  text-decoration: none;
2475
  display: block;
2476
+ padding: 0 10px; }
2477
  .repeaters .alm-delete a:hover {
2478
  background-color: #c94141;
2479
  color: #fff; }
2481
  -webkit-box-shadow: none;
2482
  box-shadow: none; }
2483
  .repeaters .alm-delete a:active {
 
 
2484
  background-color: #b93636; }
2485
 
2486
  .repeaters .row:hover .alm-delete {
2608
 
2609
  /* Add-on Callout! */
2610
  .call-out {
2611
+ background: #75d0b4;
2612
  padding: 18px 100px 18px 18px;
2613
  border-radius: 3px;
2614
  margin: 0;
2657
  font-size: 13px; }
2658
 
2659
  .call-out a {
2660
+ color: #42524e !important;
2661
  text-decoration: none;
2662
+ font-weight: 600; }
2663
 
2664
  .call-out a:hover,
2665
  .call-out a:focus {
2755
  box-shadow: inset 0 -6px 6px rgba(0, 0, 0, 0.05), 0 1px 0 #fff; }
2756
 
2757
  .license-title .status.valid {
2758
+ background-color: #8ed074; }
2759
 
2760
  .license h2 {
2761
  margin: 0;
2762
  padding: 15px 15px 15px 38px;
2763
  font-size: 16px;
2764
+ font-weight: 700;
2765
  line-height: 1.2; }
2766
 
2767
  .license p,
2843
  top: -3px; }
2844
 
2845
  .license-wrap input[type=text] {
 
2846
  margin: 0;
2847
  width: 100% !important;
 
2848
  padding: 14px; }
2849
 
2850
  .license-wrap .button-primary {
2871
  cursor: default; }
2872
 
2873
  .license-key-field .status.active {
2874
+ background-color: #8ed074; }
2875
 
2876
  .license-key-field .status.inactive {
2877
  background-color: #d45656; }
2905
  margin: 0 0 20px;
2906
  overflow: visible;
2907
  position: relative;
2908
+ -webkit-box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.065);
2909
+ box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.065); }
2910
  .ajax-load-more .cnkt-sidebar .cta .alm-file-location {
2911
  padding-top: 15px;
2912
  margin-top: 15px;
3382
  .alm-cache .alm-cache-search-wrap {
3383
  position: relative;
3384
  display: block;
3385
+ margin: 0 0 15px; }
3386
  .alm-cache .alm-cache-search-wrap input {
3387
  width: 100% !important;
3388
  margin: 0 !important;
3398
  z-index: 1; }
3399
  .alm-cache .alm-dir-listing {
3400
  border: 1px solid #e1e1e1;
3401
+ border-radius: 3px;
3402
+ overflow: hidden;
3403
  padding: 0;
3404
  margin: 10px 0 0; }
3405
  .alm-cache .alm-dir-listing.theme-repeaters {
3426
  content: "\f07b"; }
3427
  .alm-cache .alm-dir-listing .dir-title .delete {
3428
  position: absolute;
3429
+ right: 10px;
3430
+ top: 10px;
3431
  font-weight: 400;
3432
+ font-size: 13px;
3433
  text-decoration: none;
3434
+ padding: 5px 12px;
3435
  border: 1px solid #e1e1e1;
3436
  color: #ccc;
3437
  border-radius: 2px; }
3539
  overflow: hidden;
3540
  width: 47%;
3541
  font-size: 14px;
3542
+ background: transparent url("../../img/directory-list.gif") no-repeat left 46%; }
3543
 
3544
  .alm-dir-listing.theme-repeaters ul li {
3545
  display: block;
3546
  width: 100%;
3547
+ padding-top: 10px;
3548
+ padding: 0 0 0 40px;
3549
+ background-position: left 54%; }
3550
 
3551
  .alm-dir-listing.theme-repeaters ul li label {
3552
  display: block;
3554
 
3555
  .alm-dir-listing ul li:last-child,
3556
  .alm-dir-listing ul li:nth-last-child(2) {
3557
+ background-image: url("../../img/directory-list-btm.gif"); }
3558
 
3559
  .alm-dir-listing.theme-repeaters ul li:nth-last-child(2) {
3560
+ background: transparent url("../../img/directory-list.gif") no-repeat left center; }
3561
 
3562
  .alm-dir-listing ul li a {
3563
  text-decoration: none; }
3582
  *
3583
  * @since 2.4
3584
  */
3585
+ .ajax-load-more .alm-styled-input {
3586
+ display: -webkit-box;
3587
+ display: -ms-flexbox;
3588
+ display: flex;
3589
+ width: 100%;
3590
+ -ms-flex-wrap: nowrap;
3591
+ flex-wrap: nowrap;
3592
+ -webkit-box-align: center;
3593
+ -ms-flex-align: center;
3594
+ align-items: center;
3595
+ border-radius: 3px;
3596
+ border: 1px solid #e1e1e1; }
3597
+ .ajax-load-more .alm-styled-input label {
3598
+ padding: 10px;
3599
+ border-right: 1px solid #e1e1e1; }
3600
+ .ajax-load-more .alm-styled-input input {
3601
+ border: none;
3602
+ border-radius: 0 2px 2px 0;
3603
+ margin: 0;
3604
+ width: 100%; }
3605
+
3606
  .shortcode-builder input[type=checkbox],
3607
  .shortcode-builder input[type=radio],
3608
  .ajax-load-more .form-table input[type=checkbox],
3621
  min-height: 23px;
3622
  width: 100%;
3623
  display: inline-block;
3624
+ padding: 0.1em 0 0 30px;
3625
  margin: 0 0 5px;
3626
  font-size: 14px;
3627
  line-height: 1.5;
3765
  right: 7px;
3766
  z-index: 8; }
3767
  .alm-drop-btn.alm-repeater-options a.target {
3768
+ padding: 5px 10px;
3769
  -webkit-box-shadow: none;
3770
  box-shadow: none;
3771
  border: none; }
3775
 
3776
  .alm-drop-btn a.target {
3777
  position: relative;
3778
+ color: #444;
3779
  text-decoration: none !important;
3780
+ padding: 0 12px 0 28px;
3781
+ border: 1px solid #ccc;
3782
  border-radius: 3px;
3783
  font-size: 13px;
3784
+ line-height: 30px;
3785
+ height: 32px;
3786
  display: block;
3787
  -webkit-box-shadow: 0 0 0 1px #fff;
3788
  box-shadow: 0 0 0 1px #fff; }
3791
  color: #999;
3792
  font-size: 15px;
3793
  position: absolute;
3794
+ top: 8px;
3795
+ left: 8px; }
3796
 
3797
  .alm-repeater-options a.target:hover i.fa-cog {
3798
  color: #333; }
3831
  .alm-drop-btn.alm-layout-selection li.type {
3832
  height: 36px;
3833
  line-height: 36px;
3834
+ padding: 0 4px 0 8px;
3835
+ position: relative;
3836
+ border-top: 1px solid #e1e1e1; }
3837
+ .alm-drop-btn.alm-layout-selection li.type:first-of-type {
3838
+ border: none; }
3839
 
3840
  .alm-dropdown ul li.layout i {
3841
  top: 11px; }
3892
  .alm-drop-btn.alm-layout-selection a.external,
3893
  .alm-drop-btn.alm-layout-selection a.add-on {
3894
  background-color: #f7f7f7;
3895
+ padding: 13px 10px 13px 36px;
3896
  display: block; }
3897
 
3898
  .alm-drop-btn.alm-layout-selection a.external {
3899
+ padding: 0 10px 0 36px;
3900
+ font-weight: 600; }
3901
 
3902
  .alm-drop-btn.alm-layout-selection a.external i {
3903
  color: #999;
3904
  border-color: #ccc;
3905
+ top: 50%;
3906
+ -webkit-transform: translateY(-50%);
3907
+ -ms-transform: translateY(-50%);
3908
+ transform: translateY(-50%);
3909
  width: 38px; }
3910
 
3911
  .alm-drop-btn.alm-layout-selection a.external:hover i {
3913
 
3914
  .alm-drop-btn.alm-layout-selection a.add-on {
3915
  line-height: 1.5;
3916
+ background-color: #75d0b4;
3917
  border: none;
3918
  color: #fff;
3919
  font-weight: 400;
3920
  text-overflow: inherit;
3921
  height: auto;
3922
  white-space: normal;
3923
+ font-size: 13px;
3924
+ padding: 12px 15px; }
3925
 
3926
  .alm-drop-btn.alm-layout-selection a.add-on:hover,
3927
  .alm-drop-btn.alm-layout-selection a.add-on:focus {
3936
 
3937
  .alm-drop-btn.alm-layout-selection a.add-on i {
3938
  top: 14px;
3939
+ left: 3px;
3940
+ display: none; }
3941
 
3942
  .alm-drop-btn.alm-layout-selection a.add-on i {
3943
  color: #fff !important;
3947
  .alm-drop-btn.alm-layout-selection a.target:active,
3948
  .alm-drop-btn.alm-layout-selection.active a.target {
3949
  color: #222;
3950
+ border-color: #999;
3951
+ background-color: #f1f1f1;
 
 
3952
  opacity: 1; }
3953
 
3954
  .alm-drop-btn.alm-layout-selection.active a.target,
4022
  background: #fff;
4023
  border-radius: 3px;
4024
  border: 1px solid #ccc;
4025
+ -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
4026
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
4027
+ padding: 8px 10px;
4028
  width: 220px; }
4029
 
4030
  .alm-layout-selection .alm-dropdown .alm-drop-inner {
4031
  width: 250px;
4032
+ padding: 10px 10px 6px; }
4033
 
4034
  .alm-drop-inner:after,
4035
  .alm-drop-inner:before {
4064
 
4065
  .alm-dropdown ul li {
4066
  margin: 0;
4067
+ padding: 2px 0;
4068
  list-style: none;
4069
  clear: both;
4070
  font-size: 12px;
4071
  line-height: 1.2;
 
4072
  font-weight: 400; }
4073
 
 
 
 
4074
  .alm-dropdown ul li a {
4075
+ padding: 0 10px 0 34px;
4076
+ line-height: 40px;
4077
+ height: 40px;
4078
  display: block;
4079
  text-decoration: none;
4080
  background-position: 4px center;
4086
  white-space: nowrap;
4087
  overflow: hidden;
4088
  text-overflow: ellipsis;
4089
+ border-radius: 3px; }
4090
+ .alm-dropdown ul li a.layout, .alm-dropdown ul li a.external, .alm-dropdown ul li a.option {
4091
+ border: 1px solid #e1e1e1;
4092
+ background-color: transparent; }
4093
+ .alm-dropdown ul li a.layout:hover, .alm-dropdown ul li a.layout:focus, .alm-dropdown ul li a.external:hover, .alm-dropdown ul li a.external:focus, .alm-dropdown ul li a.option:hover, .alm-dropdown ul li a.option:focus {
4094
+ border-color: #ccc;
4095
+ background-color: #f1f1f1; }
4096
+ .alm-dropdown ul li a.layout:focus, .alm-dropdown ul li a.external:focus, .alm-dropdown ul li a.option:focus {
4097
+ background-color: #f1f1f1; }
4098
 
4099
  .alm-dropdown ul li a i {
4100
  margin: 0;
4101
  color: #ccc;
4102
  position: absolute;
4103
+ left: 2px;
4104
+ top: 50%;
4105
+ -webkit-transform: translateY(-50%);
4106
+ -ms-transform: translateY(-50%);
4107
+ transform: translateY(-50%);
4108
+ font-size: 14px;
4109
  width: 32px;
4110
  height: 16px;
4111
  line-height: 16px;
4467
  position: relative;
4468
  top: 1px;
4469
  z-index: 9; }
4470
+ .ajax-load-more .alm-toggle-switch li {
4471
+ float: left;
4472
+ margin: 0 2px 0 0;
4473
+ padding: 0;
4474
+ background: none;
4475
+ list-style: none; }
4476
+ .ajax-load-more .alm-toggle-switch li a {
4477
+ display: block;
4478
+ padding: 15px 22px;
4479
+ line-height: 1;
4480
+ text-decoration: none;
4481
+ border: 1px solid #e1e1e1;
4482
+ border-radius: 3px 3px 0 0;
4483
+ background: #f7f7f7;
4484
+ color: #666; }
4485
+ .ajax-load-more .alm-toggle-switch li a:hover {
4486
+ color: #222;
4487
+ background-color: #fff; }
4488
+ .ajax-load-more .alm-toggle-switch li a.active {
4489
+ background: #fff;
4490
+ font-weight: 600;
4491
+ border-bottom-color: #fff;
4492
+ color: #111; }
 
 
 
 
 
4493
 
4494
  /*
4495
  * Admin screen media queries
4520
  position: static !important;
4521
  border: none; }
4522
  .admin.ajax-load-more.settings .form-table td {
4523
+ padding: 24px 20px 20px; }
4524
  .call-out.light {
4525
  padding: 15px !important; }
4526
  .repeaters input.save-repeater {
4528
 
4529
  @media screen and (max-width: 782px) {
4530
  .admin.ajax-load-more.settings .form-table th {
4531
+ padding-bottom: 0;
4532
+ border: none;
4533
+ background-color: transparent; }
4534
  .share-alm .sharing {
4535
  padding-right: 0;
4536
  width: 100%;
admin/shortcode-builder/js/shortcode-builder.js CHANGED
@@ -1168,6 +1168,41 @@ jQuery(document).ready(function($) {
1168
  var destroy_after = $('.alm-destroy-after input[name=destroy-after]').val();
1169
  if(destroy_after !== '' && destroy_after !== undefined && destroy_after !== '0')
1170
  output += ' destroy_after="'+destroy_after+'"';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1171
 
1172
 
1173
  // ---------------------------
@@ -1277,17 +1312,6 @@ jQuery(document).ready(function($) {
1277
  }
1278
 
1279
 
1280
-
1281
-
1282
- // ---------------------------
1283
- // - Images loaded
1284
- // ---------------------------
1285
-
1286
- var images_loaded = $('.alm-images-loaded input[name=images_loaded]:checked').val();
1287
- if(images_loaded === 't')
1288
- output += ' images_loaded="true"';
1289
-
1290
-
1291
  // ---------------------------
1292
  // - Button Label
1293
  // ---------------------------
1168
  var destroy_after = $('.alm-destroy-after input[name=destroy-after]').val();
1169
  if(destroy_after !== '' && destroy_after !== undefined && destroy_after !== '0')
1170
  output += ' destroy_after="'+destroy_after+'"';
1171
+
1172
+
1173
+ // ---------------------------
1174
+ // - Images loaded
1175
+ // ---------------------------
1176
+
1177
+ var images_loaded = $('.alm-images-loaded input[name=images_loaded]:checked').val();
1178
+ if(images_loaded === 't')
1179
+ output += ' images_loaded="true"';
1180
+
1181
+
1182
+ // ---------------------------
1183
+ // - Placeholder
1184
+ // ---------------------------
1185
+
1186
+ var placeholder = $('.alm-placeholder-wrap input[name=has_placeholder]:checked').val();
1187
+ var placeholder_target = $('.alm-placeholder-wrap .alm-placeholder-target');
1188
+ var placeholder_url = $('.alm-placeholder-wrap #placeholder');
1189
+ var placeholder_img = $('.alm-placeholder-wrap #placeholder-img');
1190
+ if(placeholder === 't'){
1191
+ output += ' placeholder="true"';
1192
+ placeholder_target.slideDown(250, 'alm_easeInOutQuad');
1193
+
1194
+ // Set preview image
1195
+ if(placeholder_url.val() === '' || placeholder_url.val() === placeholder_url.data('empty')){
1196
+ output += ' placeholder="true"';
1197
+ placeholder_img.attr('src', placeholder_url.data('empty'));
1198
+ } else {
1199
+ output += ' placeholder="'+ placeholder_url.val() +'"';
1200
+ placeholder_img.attr('src', placeholder_url.val());
1201
+ }
1202
+
1203
+ } else {
1204
+ placeholder_target.slideUp(250, 'alm_easeInOutQuad');
1205
+ }
1206
 
1207
 
1208
  // ---------------------------
1312
  }
1313
 
1314
 
 
 
 
 
 
 
 
 
 
 
 
1315
  // ---------------------------
1316
  // - Button Label
1317
  // ---------------------------
admin/shortcode-builder/shortcode-builder.php CHANGED
@@ -15,14 +15,14 @@
15
 
16
 
17
  <!-- Add-ons -->
18
- <?php
19
  // ../admin-functions.php
20
  if(alm_has_addon_shortcodes()) : ?>
21
 
22
  <div class="shortcode-parameter-wrap">
23
- <h2 tabindex="0" class="shortcode-title"><i class="fa fa-plus-circle"></i><?php _e('Add-ons & Extensions', 'ajax-load-more'); ?></h2>
24
  <div class="section-wrap">
25
- <?php
26
  require_once('components/acf.php');
27
  require_once('components/cache.php');
28
  require_once('components/cta.php');
@@ -43,14 +43,14 @@
43
 
44
  <!-- Display Settings -->
45
  <div class="shortcode-parameter-wrap">
46
- <h2 tabindex="0" class="shortcode-title"><i class="fa fa-cog"></i><?php _e('Display Settings', 'ajax-load-more'); ?></h2>
47
  <div class="section-wrap">
48
-
49
  <!-- Options -->
50
  <div class="row input alm-instance-options" id="alm-instance-options">
51
  <h3 class="heading" tabindex="0"><?php _e('Options', 'ajax-load-more'); ?></h3>
52
  <div class="expand-wrap">
53
-
54
  <!-- ID -->
55
  <div class="section-title">
56
  <h4><?php _e('ID', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter','ajax-load-more'); ?>."></a></h4>
@@ -64,10 +64,10 @@
64
  <p class="generate-id"><a href="javascript:void(0);" data-id="unique-id"><i class="fa fa-random"></i> <?php _e('Generate Unique ID', 'ajax-load-more'); ?></a></p>
65
  </div>
66
  </div>
67
-
68
  <div class="clear"></div>
69
- <hr/>
70
-
71
  <!-- Loading Style -->
72
  <?php
73
  $loading_style = (isset($alm_options['_alm_btn_color'])) ? $alm_options['_alm_btn_color'] : 'default';
@@ -86,7 +86,7 @@
86
  <option value="green" class="alm-color green"<?php echo ($loading_style === 'green') ? $selected : ''; ?>>Green</option>
87
  <option value="purple" class="alm-color purple"<?php echo ($loading_style === 'purple') ? $selected : ''; ?>>Purple</option>
88
  <option value="grey" class="alm-color grey"<?php echo ($loading_style === 'grey') ? $selected : ''; ?>>Grey</option>
89
- </optgroup>
90
  <optgroup label="<?php _e('Infinite Scroll (No Button)', 'ajax-load-more'); ?>">
91
  <option value="infinite classic" class="infinite classic"<?php echo ($loading_style === 'infinite classic') ? $selected : ''; ?>>Classic</option>
92
  <option value="infinite skype" class="infinite skype"<?php echo ($loading_style === 'infinite skype') ? $selected : ''; ?>>Skype</option>
@@ -107,10 +107,10 @@
107
  </div>
108
  </div>
109
  </div>
110
-
111
  <div class="clear"></div>
112
  <hr/>
113
-
114
  <!-- Container Type -->
115
  <div class="section-title">
116
  <h4><?php _e('Container Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('You can define a global container type on the Ajax Load More settings screen','ajax-load-more'); ?>."></a></h4>
@@ -138,10 +138,10 @@
138
  </ul>
139
  </div>
140
  </div>
141
-
142
  <div class="clear"></div>
143
  <hr/>
144
-
145
  <!-- Container Classes -->
146
  <div class="section-title">
147
  <h4><?php _e('Container Classes', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('You can define global container classes on the Ajax Load More settings screen','ajax-load-more'); ?>."></a></h4>
@@ -155,10 +155,10 @@
155
  <input class="alm_element" name="container-classes" type="text" id="container-classes" placeholder="listing large-12 columns">
156
  </div>
157
  </div>
158
-
159
  <div class="clear"></div>
160
  <hr/>
161
-
162
  <!-- Destroy After -->
163
  <div class="section-title">
164
  <h4><?php _e('Destroy After', 'ajax-load-more'); ?></h4>
@@ -169,49 +169,104 @@
169
  <input type="number" class="alm_element numbers-only" placeholder="0" name="destroy-after" id="disable-after" step="1" min="0" value="">
170
  </div>
171
  </div>
172
-
173
  <div class="clear"></div>
174
  <hr/>
175
-
176
- <!-- Nested ALM -->
177
  <div class="section-title">
178
- <h4><?php _e('Nested Instance', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('When nesting ALM instances it\'s important to set this to true as it removes any problematic JavaScript functionality.','ajax-load-more'); ?>"></a></h4>
179
- <p><?php _e('Is this instance of Ajax Load More nested inside another instance of Ajax Load More?', 'ajax-load-more'); ?></p>
180
- </div>
181
- <div class="wrap">
182
- <div class="inner">
183
  <ul>
184
  <li>
185
- <input class="alm_element" type="radio" name="nested" value="t" id="nested_t">
186
- <label for="nested_t"><?php _e('True', 'ajax-load-more'); ?></label>
187
  </li>
188
  <li>
189
- <input class="alm_element" type="radio" name="nested" value="f" id="nested_f" checked="checked">
190
- <label for="nested_f"><?php _e('False', 'ajax-load-more'); ?></label>
191
  </li>
192
  </ul>
193
- </div>
194
  </div>
195
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  <div class="clear"></div>
197
  <hr/>
198
-
199
- <!-- No Results -->
200
  <div class="section-title">
201
  <h4><?php _e('No Results Text', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('HTML is allowed, however when adding quote marks in classnames or IDs you must single quotes as shown in the example.','ajax-load-more'); ?>"></a></h4>
202
  <p><?php _e('Add text/html to be displayed when no results are returned in the Ajax query.', 'ajax-load-more'); ?><br/><small><?php _e('e.g. &lt;div class=\'no-results\'>Sorry, nothing found in this query&lt;/div>', 'ajax-load-more'); ?></small></p>
203
  </div>
204
  <div class="wrap">
205
- <div class="inner">
206
  <textarea class="alm_element" id="no_results_text" rows="4"></textarea>
207
  </div>
208
  </div>
209
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  </div>
211
  </div>
212
  <!-- End Options -->
213
-
214
-
215
  <!-- Template Selection -->
216
  <?php
217
  echo '<div class="row repeater" id="alm-repeaters">';
@@ -233,33 +288,33 @@
233
  do_action('alm_get_unlimited_repeaters');
234
  }
235
  echo '</select>';
236
-
237
  echo '</div></div>';
238
  ?>
239
-
240
  <?php // Get Theme Repeaters
241
  if (has_action('alm_theme_repeaters_selection')){
242
  do_action('alm_theme_repeaters_selection');
243
  }
244
  ?>
245
-
246
  <?php // Custom Repeaters v2 - /cta/extend.php
247
  if (!has_action('alm_get_unlimited_repeaters') && !has_action('alm_get_custom_repeaters') && !has_action('alm_theme_repeaters_installed')) {
248
  include( ALM_PATH . 'admin/includes/cta/extend.php');
249
  }
250
-
251
  echo '</div>';
252
  echo '</div>';
253
  ?>
254
- <!-- End Template Selection -->
255
-
256
-
257
  <!-- Button Labels -->
258
  <div class="row input btn-label" id="alm-btn-label">
259
  <h3 class="heading" tabindex="0"><?php _e('Button Labels', 'ajax-load-more'); ?></h3>
260
-
261
  <div class="expand-wrap">
262
-
263
  <div class="section-title">
264
  <h4><?php _e('Label', 'ajax-load-more'); ?></h4>
265
  <p><?php _e('Customize the text of the <em>Load More</em> button.', 'ajax-load-more'); ?></p>
@@ -269,10 +324,10 @@
269
  <input class="alm_element" name="button-label" type="text" id="button-label" value="<?php _e('Older Posts', 'ajax-load-more'); ?>">
270
  </div>
271
  </div>
272
-
273
  <div class="clear"></div>
274
  <hr/>
275
-
276
  <div class="section-title">
277
  <h4><?php _e('Loading Label', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Leave field empty to not update text while loading content','ajax-load-more'); ?>."></a></h4>
278
  <p><?php _e('Update the text of the <em>Load More</em> button while content is loading.', 'ajax-load-more'); ?></p>
@@ -282,16 +337,16 @@
282
  <input class="alm_element" name="button-loading-label" type="text" id="button-loading-label" value="" placeholder="<?php _e('Loading Posts...', 'ajax-load-more'); ?>">
283
  </div>
284
  </div>
285
-
286
  </div>
287
  </div>
288
  <!-- Button Labels -->
289
-
290
  <!-- Scrolling -->
291
  <div class="row checkbox scroll_load" id="alm-scroll">
292
  <h3 class="heading" tabindex="0"><?php _e('Scrolling', 'ajax-load-more'); ?></h3>
293
  <div class="expand-wrap">
294
-
295
  <div class="section-title">
296
  <h4><?php _e('Enable Scrolling', 'ajax-load-more'); ?></h4>
297
  <p><?php _e('Load more posts as the user scrolls the page.', 'ajax-load-more'); ?></p>
@@ -310,12 +365,12 @@
310
  </ul>
311
  </div>
312
  </div>
313
-
314
  <div class="clear"></div>
315
-
316
- <div class="scrolling-options nested-component">
317
  <div class="nested-component--inner">
318
-
319
  <!-- Scroll Distance -->
320
  <div class="scroll_distance">
321
  <div class="section-title">
@@ -328,11 +383,11 @@
328
  </div>
329
  </div>
330
  </div>
331
-
332
  <div class="scroll_container">
333
  <div class="clear"></div>
334
- <hr>
335
-
336
  <!-- Scroll Container -->
337
  <div class="section-title">
338
  <h4><?php _e('Scroll Container', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Confine Ajax Load More scrolling to a parent container','ajax-load-more'); ?>."></a></h4>
@@ -344,7 +399,7 @@
344
  </div>
345
  </div>
346
  </div>
347
-
348
  <!-- Max Pages -->
349
  <div class="max_pages">
350
  <div class="clear"></div>
@@ -359,7 +414,7 @@
359
  </div>
360
  </div>
361
  </div>
362
-
363
  <!-- Pause Override -->
364
  <div class="pause_override">
365
  <div class="clear"></div>
@@ -386,7 +441,7 @@
386
  </div>
387
  </div>
388
  <!-- End Scrolling -->
389
-
390
  <!-- Transition -->
391
  <div class="row input transition" id="alm-transition">
392
  <h3 class="heading" tabindex="0"><?php _e('Transition', 'ajax-load-more'); ?></h3>
@@ -404,18 +459,18 @@
404
  </select>
405
  </div>
406
  </div>
407
-
408
  <div class="clear"></div>
409
-
410
- <div class="masonry-options nested-component" style="display: none;">
411
  <div class="nested-component--inner">
412
-
413
  <div class="section-title full" style="padding-bottom: 10px;">
414
  <h4><?php _e('Masonry Options', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Ajax Load More does not support all available Masonry options','ajax-load-more'); ?>."></a></h4>
415
  <p><?php _e('The following Masonry <a href="https://masonry.desandro.com/options.html" target="_blank">options</a> are supported by Ajax Load More.', 'ajax-load-more'); ?></p>
416
  </div>
417
  <div class="clear"></div>
418
-
419
  <div class="section-title">
420
  <h4><?php _e('Item Selector', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Item Selector is required for Masonry to target each element loaded with Ajax.','ajax-load-more'); ?>"></a></h4>
421
  <p><?php _e('Enter the target classname of each masonry item.', 'ajax-load-more'); ?><br/>
@@ -427,10 +482,10 @@
427
  <input type="text" class="alm_element" name="masonry-item" id="masonry-item" placeholder=".grid-item">
428
  </div>
429
  </div>
430
-
431
  <div class="clear"></div>
432
  <hr class="indented" />
433
-
434
  <div class="section-title">
435
  <h4><?php _e('Column Width', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('If columnWidth is not set, Masonry will use the outer width of the first Item Selector.','ajax-load-more'); ?>"></a></h4>
436
  <p><?php _e('Enter the <a href="https://masonry.desandro.com/options.html#columnwidth" target="_blank">columnWidth</a> of the masonry items.', 'ajax-load-more'); ?><br/>
@@ -442,10 +497,10 @@
442
  <input type="number" class="alm_element numbers-only" name="masonry-columnwidth" id="masonry-columnwidth" placeholder="80" min="0" step="1">
443
  </div>
444
  </div>
445
-
446
  <div class="clear"></div>
447
  <hr class="indented" />
448
-
449
  <div class="section-title">
450
  <h4><?php _e('Animation Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('All Masonry animations include a fade-in effect as items are loaded.','ajax-load-more'); ?>"></a></h4>
451
  <p><?php _e('Select a loading transition for Masonry items.', 'ajax-load-more'); ?></p>
@@ -456,14 +511,14 @@
456
  <li style="width:100%;">
457
  <input class="alm_element" type="radio" name="masonry-animation" value="default" id="masonry-animation-default" checked="checked">
458
  <label for="masonry-animation-default">
459
- <?php _e('Default (Zoom)', 'ajax-load-more'); ?>
460
  <span class="description"><?php _e('Items scale up from 50% to 100% size on load.','ajax-load-more'); ?></span>
461
  </label>
462
  </li>
463
  <li style="width:100%;">
464
  <input class="alm_element" type="radio" name="masonry-animation" value="zoom-out" id="masonry-animation-zoom-out">
465
  <label for="masonry-animation-zoom-out">
466
- <?php _e('Zoom Out', 'ajax-load-more'); ?>
467
  <span class="description"><?php _e('Items scale down from 125% to 100% size on load.','ajax-load-more'); ?></span>
468
  </label>
469
  </li>
@@ -487,13 +542,13 @@
487
  <?php _e('None', 'ajax-load-more'); ?>
488
  </label>
489
  </li>
490
- </ul>
491
  </div>
492
  </div>
493
-
494
  <div class="clear"></div>
495
  <hr class="indented" />
496
-
497
  <div class="section-title">
498
  <h4><?php _e('Horizontal Order', 'ajax-load-more'); ?></h4>
499
  <p><?php _e('Lays out items to maintain left-to-right order.', 'ajax-load-more'); ?>
@@ -519,18 +574,18 @@
519
  <?php _e('Don\'t see your favorite Masonry option listed? You can always add your own!', 'ajax-load-more'); ?>
520
  <a class="button-small" href="https://connekthq.com/plugins/ajax-load-more/docs/masonry/" target="_blank"><?php _e('View Docs', 'ajax-load-more'); ?></a>
521
  </p>
522
-
523
  </div>
524
-
525
  </div>
526
-
527
  <!-- Hide transition_container if Masonry is selected -->
528
  <div class="masonry-options-hide">
529
-
530
  <div class="transition-container-classes-wrap">
531
  <div class="clear"></div>
532
  <hr>
533
-
534
  <div class="section-title">
535
  <h4><?php _e('Transition Container Classes', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('This setting is not available with the Single Post or Next Page add-ons','ajax-load-more'); ?>."></a></h4>
536
  <p><?php _e('Add custom classes to the <span>.alm-reveal</span> loading container', 'ajax-load-more'); ?>.</p>
@@ -541,10 +596,10 @@
541
  </div>
542
  </div>
543
  </div>
544
-
545
  <div class="clear"></div>
546
  <hr>
547
-
548
  <div class="section-title">
549
  <h4><?php _e('Transition Container', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Removing the transition container may have undesired results and is not recommended','ajax-load-more'); ?>."></a></h4>
550
  <p><?php _e('Remove the <span>.alm-reveal</span> loading container from Ajax Load More', 'ajax-load-more'); ?>.</p>
@@ -559,14 +614,14 @@
559
  </ul>
560
  </div>
561
  </div>
562
-
563
  </div>
564
- <!-- End Hide transition_container if Masonry is selected -->
565
-
566
  </div>
567
  </div>
568
  <!-- End Transition -->
569
-
570
  <!-- Pause -->
571
  <div class="row checkbox pause_load" id="alm-pause">
572
  <h3 class="heading" tabindex="0"><?php _e('Pause', 'ajax-load-more'); ?></h3>
@@ -591,7 +646,7 @@
591
  </div>
592
  </div>
593
  <!-- End Pause -->
594
-
595
  <!-- Progress Bar -->
596
  <div class="row input alm-progress-bar" id="alm-progress-bar">
597
  <h3 class="heading" tabindex="0"><?php _e('Progress Bar', 'ajax-load-more'); ?></h3>
@@ -615,12 +670,12 @@
615
  </div>
616
  </div>
617
  </div>
618
-
619
  <div class="clear"></div>
620
-
621
- <div class="progress-bar-options nested-component" style="display: none;">
622
- <div class="nested-component--inner">
623
- <div class="section-title">
624
  <h4><?php _e('Color', 'ajax-load-more'); ?> </h4>
625
  <p><?php _e('Enter the hex color of the progress bar', 'ajax-load-more'); ?>.<br/>
626
  <?php _e('Default:', 'ajax-load-more'); ?> #<span>ed7070</span>
@@ -632,37 +687,12 @@
632
  <span class="progress_bar_color_indicator"></span>
633
  </div>
634
  </div>
635
- </div>
636
  </div>
637
-
638
  </div>
639
  <!-- End Progress Bar -->
640
-
641
- <!-- Images Loaded -->
642
- <div class="row input alm-images-loaded" id="alm-images-loaded">
643
- <h3 class="heading" tabindex="0"><?php _e('Images Loaded', 'ajax-load-more'); ?></h3>
644
- <div class="expand-wrap">
645
- <div class="section-title">
646
- <p><?php _e('Wait for all images to load before displaying ajax loaded content', 'ajax-load-more'); ?>. <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Background images are not supported','ajax-load-more'); ?>."></a></p>
647
- </div>
648
- <div class="wrap">
649
- <div class="inner">
650
- <ul>
651
- <li>
652
- <input class="alm_element" type="radio" name="images_loaded" value="t" id="images_loaded_t">
653
- <label for="images_loaded_t"><?php _e('True', 'ajax-load-more'); ?></label>
654
- </li>
655
- <li>
656
- <input class="alm_element" type="radio" name="images_loaded" value="f" id="images_loaded_f" checked="checked">
657
- <label for="images_loaded_f"><?php _e('False', 'ajax-load-more'); ?></label>
658
- </li>
659
- </ul>
660
- </div>
661
- </div>
662
- </div>
663
- </div>
664
- <!-- End Images Loaded -->
665
-
666
  </div>
667
  </div>
668
  <!-- End Display Settings -->
@@ -673,13 +703,13 @@
673
  <div class="shortcode-parameter-wrap">
674
  <h2 tabindex="0" class="shortcode-title"><i class="fa fa-database"></i><?php _e('Query Parameters', 'ajax-load-more'); ?></h2>
675
  <div class="section-wrap">
676
-
677
  <!-- Posts Per Page -->
678
  <div class="row input posts_per_page" id="alm-post-page">
679
  <h3 class="heading" tabindex="0"><?php _e('Posts Per Page', 'ajax-load-more'); ?></h3>
680
  <div class="expand-wrap">
681
  <div class="section-title">
682
- <p><?php _e('Select the number of posts to load with each request.', 'ajax-load-more'); ?></p>
683
  </div>
684
  <div class="wrap">
685
  <div class="inner">
@@ -689,7 +719,7 @@
689
  </div>
690
  </div>
691
  <!-- End Posts Per Page -->
692
-
693
  <!-- Post Types -->
694
  <?php
695
  $pt_args = array(
@@ -699,9 +729,9 @@
699
  if($types){ ?>
700
  <div class="row checkboxes post_types" id="alm-post-types">
701
  <h3 class="heading" tabindex="0"><?php _e('Post Type', 'ajax-load-more'); ?></h3>
702
-
703
  <div class="expand-wrap">
704
-
705
  <div class="section-title">
706
  <p><?php _e('Select the Post Types to include in this Ajax Load More query.', 'ajax-load-more'); ?></p>
707
  </div>
@@ -722,10 +752,10 @@
722
  </div>
723
  </div>
724
  <div class="clear"></div>
725
-
726
  <!-- Sticky Posts -->
727
- <div class="sticky-wrap nested-component">
728
- <div class="nested-component--inner">
729
  <div class="section-title">
730
  <h4><?php _e('Sticky Posts', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Sticky posts are only available for Posts','ajax-load-more'); ?>."></a></h4>
731
  <p><?php _e('Preserve the ordering of sticky posts by having them appear first in the Ajax listing.', 'ajax-load-more'); ?></p>
@@ -742,15 +772,15 @@
742
  </div>
743
  </div>
744
  </div>
745
-
746
  </div>
747
-
748
  </div>
749
  <?php }
750
  ?>
751
  <!-- End Post Types -->
752
-
753
-
754
  <!-- Post Formats -->
755
  <?php
756
  if ( current_theme_supports( 'post-formats' ) ) {
@@ -775,8 +805,8 @@
775
  }
776
  ?>
777
  <!-- End Post Formats -->
778
-
779
-
780
  <!-- Categories -->
781
  <?php
782
  if($disable_dynamic_content){
@@ -784,7 +814,7 @@
784
  }else{
785
  $cats = get_categories();
786
  }
787
- if($cats){
788
  $cat_link = 'https://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters';
789
  ?>
790
  <div class="row checkboxes categories" id="alm-categories">
@@ -834,10 +864,10 @@
834
  </ul>
835
  </div>
836
  </div>
837
-
838
  <div class="clear"></div>
839
  <hr/>
840
-
841
  <div class="section-title">
842
  <h4><?php _e('Exclude', 'ajax-load-more'); ?></h4>
843
  <p>
@@ -864,16 +894,16 @@
864
  </div>
865
  </div>
866
  <!-- End Category -->
867
-
868
  <?php }
869
-
870
  // Tags
871
  if($disable_dynamic_content){
872
  $tags = 'null';
873
  }else{
874
  $tags = get_tags();
875
  }
876
- if($tags){
877
  $tag_link = 'https://codex.wordpress.org/Class_Reference/WP_Query#Tag_Parameters';
878
  ?>
879
  <div class="row checkboxes tags" id="alm-tags">
@@ -928,11 +958,11 @@
928
  <div class="clear"></div>
929
  <hr/>
930
 
931
-
932
  <div class="section-title">
933
  <h4><?php _e('Exclude', 'ajax-load-more'); ?></h4>
934
  <p>
935
- <?php _e('Comma separated list of tags to exclude by ID', 'ajax-load-more'); ?>.
936
  <small>e.g. 30, 12, 99 etc..</small>
937
  </p>
938
  </div>
@@ -956,7 +986,7 @@
956
  </div>
957
  <?php } ?>
958
  <!-- End Tags -->
959
-
960
  <?php
961
  // Taxonomies
962
  $tax_args = array(
@@ -982,7 +1012,7 @@
982
  </div>
983
  <?php }?>
984
  <!-- End Taxonomies -->
985
-
986
  <!-- Meta_Query -->
987
  <div class="row input meta-key" id="alm-meta-key">
988
  <h3 class="heading" tabindex="0"><?php _e('Custom Fields (Meta_Query)', 'ajax-load-more'); ?></h3>
@@ -1007,20 +1037,20 @@
1007
  </div>
1008
  </div>
1009
  </div>
1010
-
1011
  <div id="meta-query-extended">
1012
-
1013
  </div>
1014
-
1015
  <div class="controls">
1016
  <button class="button button-primary" id="add-meta-query"><?php _e('Add Another', 'ajax-load-more'); ?></button>
1017
  </div>
1018
-
1019
  </div>
1020
  </div>
1021
  </div>
1022
  <!-- End Meta Query -->
1023
-
1024
  <!-- Date -->
1025
  <div class="row input date" id="alm-date">
1026
  <h3 class="heading" tabindex="0"><?php _e('Date', 'ajax-load-more'); ?></h3>
@@ -1049,7 +1079,7 @@
1049
  </div>
1050
  </div>
1051
  <!-- End Date -->
1052
-
1053
  <?php // List Authors
1054
  if($disable_dynamic_content){
1055
  $authors = 'null';
@@ -1082,7 +1112,7 @@
1082
  }
1083
  ?>
1084
  <!-- End Authors -->
1085
-
1086
  <!-- Search -->
1087
  <div class="row input search-term" id="alm-search">
1088
  <h3 class="heading" tabindex="0"><?php _e('Search Term', 'ajax-load-more'); ?></h3>
@@ -1098,7 +1128,7 @@
1098
  </div>
1099
  </div>
1100
  <!-- End Search -->
1101
-
1102
  <!-- Post Parameters -->
1103
  <div class="row input post-in" id="alm-post-in">
1104
  <h3 class="heading" tabindex="0"><?php _e('Post Parameters', 'ajax-load-more'); ?></h3>
@@ -1147,7 +1177,7 @@
1147
  </div>
1148
  </div>
1149
  <!-- End Post Parameters -->
1150
-
1151
  <!-- Ordering -->
1152
  <div class="row ordering" id="alm-order">
1153
  <h3 class="heading" tabindex="0"><?php _e('Ordering', 'ajax-load-more'); ?></h3>
@@ -1182,7 +1212,7 @@
1182
  </div>
1183
  </div>
1184
  <!-- End Ordering -->
1185
-
1186
  <!-- Offset -->
1187
  <div class="row input offset" id="alm-offset">
1188
  <h3 class="heading" tabindex="0"><?php _e('Offset', 'ajax-load-more'); ?></h3>
@@ -1198,7 +1228,7 @@
1198
  </div>
1199
  </div>
1200
  <!-- End Offset -->
1201
-
1202
  <!-- Custom Arguments -->
1203
  <div class="row input custom-arguments" id="alm-custom-args">
1204
  <h3 class="heading" tabindex="0"><?php _e('Custom Arguments', 'ajax-load-more'); ?></h3>
@@ -1214,7 +1244,7 @@
1214
  </div>
1215
  </div>
1216
  <!-- End Custom Arguments -->
1217
-
1218
  </div>
1219
 
1220
  </div>
15
 
16
 
17
  <!-- Add-ons -->
18
+ <?php
19
  // ../admin-functions.php
20
  if(alm_has_addon_shortcodes()) : ?>
21
 
22
  <div class="shortcode-parameter-wrap">
23
+ <h2 tabindex="0" class="shortcode-title"><i class="fa fa-plus-circle"></i><?php _e('Add-ons & Extensions', 'ajax-load-more'); ?></h2>
24
  <div class="section-wrap">
25
+ <?php
26
  require_once('components/acf.php');
27
  require_once('components/cache.php');
28
  require_once('components/cta.php');
43
 
44
  <!-- Display Settings -->
45
  <div class="shortcode-parameter-wrap">
46
+ <h2 tabindex="0" class="shortcode-title"><i class="fa fa-cog"></i><?php _e('Display Settings', 'ajax-load-more'); ?></h2>
47
  <div class="section-wrap">
48
+
49
  <!-- Options -->
50
  <div class="row input alm-instance-options" id="alm-instance-options">
51
  <h3 class="heading" tabindex="0"><?php _e('Options', 'ajax-load-more'); ?></h3>
52
  <div class="expand-wrap">
53
+
54
  <!-- ID -->
55
  <div class="section-title">
56
  <h4><?php _e('ID', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter','ajax-load-more'); ?>."></a></h4>
64
  <p class="generate-id"><a href="javascript:void(0);" data-id="unique-id"><i class="fa fa-random"></i> <?php _e('Generate Unique ID', 'ajax-load-more'); ?></a></p>
65
  </div>
66
  </div>
67
+
68
  <div class="clear"></div>
69
+ <hr/>
70
+
71
  <!-- Loading Style -->
72
  <?php
73
  $loading_style = (isset($alm_options['_alm_btn_color'])) ? $alm_options['_alm_btn_color'] : 'default';
86
  <option value="green" class="alm-color green"<?php echo ($loading_style === 'green') ? $selected : ''; ?>>Green</option>
87
  <option value="purple" class="alm-color purple"<?php echo ($loading_style === 'purple') ? $selected : ''; ?>>Purple</option>
88
  <option value="grey" class="alm-color grey"<?php echo ($loading_style === 'grey') ? $selected : ''; ?>>Grey</option>
89
+ </optgroup>
90
  <optgroup label="<?php _e('Infinite Scroll (No Button)', 'ajax-load-more'); ?>">
91
  <option value="infinite classic" class="infinite classic"<?php echo ($loading_style === 'infinite classic') ? $selected : ''; ?>>Classic</option>
92
  <option value="infinite skype" class="infinite skype"<?php echo ($loading_style === 'infinite skype') ? $selected : ''; ?>>Skype</option>
107
  </div>
108
  </div>
109
  </div>
110
+
111
  <div class="clear"></div>
112
  <hr/>
113
+
114
  <!-- Container Type -->
115
  <div class="section-title">
116
  <h4><?php _e('Container Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('You can define a global container type on the Ajax Load More settings screen','ajax-load-more'); ?>."></a></h4>
138
  </ul>
139
  </div>
140
  </div>
141
+
142
  <div class="clear"></div>
143
  <hr/>
144
+
145
  <!-- Container Classes -->
146
  <div class="section-title">
147
  <h4><?php _e('Container Classes', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('You can define global container classes on the Ajax Load More settings screen','ajax-load-more'); ?>."></a></h4>
155
  <input class="alm_element" name="container-classes" type="text" id="container-classes" placeholder="listing large-12 columns">
156
  </div>
157
  </div>
158
+
159
  <div class="clear"></div>
160
  <hr/>
161
+
162
  <!-- Destroy After -->
163
  <div class="section-title">
164
  <h4><?php _e('Destroy After', 'ajax-load-more'); ?></h4>
169
  <input type="number" class="alm_element numbers-only" placeholder="0" name="destroy-after" id="disable-after" step="1" min="0" value="">
170
  </div>
171
  </div>
172
+
173
  <div class="clear"></div>
174
  <hr/>
175
+
176
+ <!-- Images Loaded -->
177
  <div class="section-title">
178
+ <h4><?php _e('Images Loaded', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Background images are not supported.','ajax-load-more'); ?>"></a></h4>
179
+ <p><?php _e('Wait for all images to load before displaying ajax loaded content.', 'ajax-load-more'); ?></p>
180
+ </div>
181
+ <div class="wrap alm-images-loaded">
182
+ <div class="inner">
183
  <ul>
184
  <li>
185
+ <input class="alm_element" type="radio" name="images_loaded" value="t" id="images_loaded_t">
186
+ <label for="images_loaded_t"><?php _e('True', 'ajax-load-more'); ?></label>
187
  </li>
188
  <li>
189
+ <input class="alm_element" type="radio" name="images_loaded" value="f" id="images_loaded_f" checked="checked">
190
+ <label for="images_loaded_f"><?php _e('False', 'ajax-load-more'); ?></label>
191
  </li>
192
  </ul>
193
+ </div>
194
  </div>
195
+
196
+ <div class="clear"></div>
197
+ <hr/>
198
+
199
+ <!-- Loading Placeholder -->
200
+ <div class="section-title">
201
+ <h4><?php _e('Loading Placeholder', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('A loading placeholder can help the understand content is about to rendered.','ajax-load-more'); ?>"></a></h4>
202
+ <p><?php _e('Display a placeholder image while Ajax content is being loaded.', 'ajax-load-more'); ?></p>
203
+ <p><a class="button-small" href="https://connekthq.com/plugins/ajax-load-more/examples/placeholder/" target="_blank"><?php _e('View Example', 'ajax-load-more'); ?></a></p>
204
+ </div>
205
+ <div class="wrap alm-placeholder-wrap">
206
+ <div class="inner">
207
+ <ul>
208
+ <li>
209
+ <input class="alm_element" type="radio" name="has_placeholder" value="t" id="has_placeholder_t">
210
+ <label for="has_placeholder_t"><?php _e('True', 'ajax-load-more'); ?></label>
211
+ </li>
212
+ <li>
213
+ <input class="alm_element" type="radio" name="has_placeholder" value="f" id="has_placeholder_f" checked="checked">
214
+ <label for="has_placeholder_f"><?php _e('False', 'ajax-load-more'); ?></label>
215
+ </li>
216
+ </ul>
217
+ </div>
218
+ <div class="inner alm-placeholder-target" style="display: none;">
219
+ <div class="alm-styled-input">
220
+ <label for="placeholder" aria-label="Enter Placeholder URL"><?php _e('URL:', 'ajax-load-more'); ?></label>
221
+ <input class="alm_element" name="placeholder" type="text" id="placeholder" data-empty="<?php echo ALM_URL; ?>/core/img/placeholder.png" value="<?php echo ALM_URL; ?>/core/img/placeholder.png" style="width: 100%;" />
222
+ </div>
223
+ <div class="spacer"></div>
224
+ <img id="placeholder-img" style="padding: 10px; border: 2px dashed #efefef;" src="<?php echo ALM_URL; ?>/core/img/placeholder.png" value="<?php echo ALM_URL; ?>/core/img/placeholder.png" alt="" />
225
+ </div>
226
+ </div>
227
+
228
  <div class="clear"></div>
229
  <hr/>
230
+
231
+ <!-- No Results -->
232
  <div class="section-title">
233
  <h4><?php _e('No Results Text', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('HTML is allowed, however when adding quote marks in classnames or IDs you must single quotes as shown in the example.','ajax-load-more'); ?>"></a></h4>
234
  <p><?php _e('Add text/html to be displayed when no results are returned in the Ajax query.', 'ajax-load-more'); ?><br/><small><?php _e('e.g. &lt;div class=\'no-results\'>Sorry, nothing found in this query&lt;/div>', 'ajax-load-more'); ?></small></p>
235
  </div>
236
  <div class="wrap">
237
+ <div class="inner ">
238
  <textarea class="alm_element" id="no_results_text" rows="4"></textarea>
239
  </div>
240
  </div>
241
+
242
+ <div class="clear"></div>
243
+ <hr/>
244
+
245
+ <!-- Nested ALM -->
246
+ <div class="section-title">
247
+ <h4><?php _e('Nested Instance', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('When nesting ALM instances it\'s important to set this to true as it removes any problematic JavaScript functionality.','ajax-load-more'); ?>"></a></h4>
248
+ <p><?php _e('Is this instance of Ajax Load More nested inside another instance of Ajax Load More?', 'ajax-load-more'); ?></p>
249
+ </div>
250
+ <div class="wrap">
251
+ <div class="inner">
252
+ <ul>
253
+ <li>
254
+ <input class="alm_element" type="radio" name="nested" value="t" id="nested_t">
255
+ <label for="nested_t"><?php _e('True', 'ajax-load-more'); ?></label>
256
+ </li>
257
+ <li>
258
+ <input class="alm_element" type="radio" name="nested" value="f" id="nested_f" checked="checked">
259
+ <label for="nested_f"><?php _e('False', 'ajax-load-more'); ?></label>
260
+ </li>
261
+ </ul>
262
+ </div>
263
+ </div>
264
+
265
  </div>
266
  </div>
267
  <!-- End Options -->
268
+
269
+
270
  <!-- Template Selection -->
271
  <?php
272
  echo '<div class="row repeater" id="alm-repeaters">';
288
  do_action('alm_get_unlimited_repeaters');
289
  }
290
  echo '</select>';
291
+
292
  echo '</div></div>';
293
  ?>
294
+
295
  <?php // Get Theme Repeaters
296
  if (has_action('alm_theme_repeaters_selection')){
297
  do_action('alm_theme_repeaters_selection');
298
  }
299
  ?>
300
+
301
  <?php // Custom Repeaters v2 - /cta/extend.php
302
  if (!has_action('alm_get_unlimited_repeaters') && !has_action('alm_get_custom_repeaters') && !has_action('alm_theme_repeaters_installed')) {
303
  include( ALM_PATH . 'admin/includes/cta/extend.php');
304
  }
305
+
306
  echo '</div>';
307
  echo '</div>';
308
  ?>
309
+ <!-- End Template Selection -->
310
+
311
+
312
  <!-- Button Labels -->
313
  <div class="row input btn-label" id="alm-btn-label">
314
  <h3 class="heading" tabindex="0"><?php _e('Button Labels', 'ajax-load-more'); ?></h3>
315
+
316
  <div class="expand-wrap">
317
+
318
  <div class="section-title">
319
  <h4><?php _e('Label', 'ajax-load-more'); ?></h4>
320
  <p><?php _e('Customize the text of the <em>Load More</em> button.', 'ajax-load-more'); ?></p>
324
  <input class="alm_element" name="button-label" type="text" id="button-label" value="<?php _e('Older Posts', 'ajax-load-more'); ?>">
325
  </div>
326
  </div>
327
+
328
  <div class="clear"></div>
329
  <hr/>
330
+
331
  <div class="section-title">
332
  <h4><?php _e('Loading Label', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Leave field empty to not update text while loading content','ajax-load-more'); ?>."></a></h4>
333
  <p><?php _e('Update the text of the <em>Load More</em> button while content is loading.', 'ajax-load-more'); ?></p>
337
  <input class="alm_element" name="button-loading-label" type="text" id="button-loading-label" value="" placeholder="<?php _e('Loading Posts...', 'ajax-load-more'); ?>">
338
  </div>
339
  </div>
340
+
341
  </div>
342
  </div>
343
  <!-- Button Labels -->
344
+
345
  <!-- Scrolling -->
346
  <div class="row checkbox scroll_load" id="alm-scroll">
347
  <h3 class="heading" tabindex="0"><?php _e('Scrolling', 'ajax-load-more'); ?></h3>
348
  <div class="expand-wrap">
349
+
350
  <div class="section-title">
351
  <h4><?php _e('Enable Scrolling', 'ajax-load-more'); ?></h4>
352
  <p><?php _e('Load more posts as the user scrolls the page.', 'ajax-load-more'); ?></p>
365
  </ul>
366
  </div>
367
  </div>
368
+
369
  <div class="clear"></div>
370
+
371
+ <div class="scrolling-options nested-component">
372
  <div class="nested-component--inner">
373
+
374
  <!-- Scroll Distance -->
375
  <div class="scroll_distance">
376
  <div class="section-title">
383
  </div>
384
  </div>
385
  </div>
386
+
387
  <div class="scroll_container">
388
  <div class="clear"></div>
389
+ <hr>
390
+
391
  <!-- Scroll Container -->
392
  <div class="section-title">
393
  <h4><?php _e('Scroll Container', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Confine Ajax Load More scrolling to a parent container','ajax-load-more'); ?>."></a></h4>
399
  </div>
400
  </div>
401
  </div>
402
+
403
  <!-- Max Pages -->
404
  <div class="max_pages">
405
  <div class="clear"></div>
414
  </div>
415
  </div>
416
  </div>
417
+
418
  <!-- Pause Override -->
419
  <div class="pause_override">
420
  <div class="clear"></div>
441
  </div>
442
  </div>
443
  <!-- End Scrolling -->
444
+
445
  <!-- Transition -->
446
  <div class="row input transition" id="alm-transition">
447
  <h3 class="heading" tabindex="0"><?php _e('Transition', 'ajax-load-more'); ?></h3>
459
  </select>
460
  </div>
461
  </div>
462
+
463
  <div class="clear"></div>
464
+
465
+ <div class="masonry-options nested-component" style="display: none;">
466
  <div class="nested-component--inner">
467
+
468
  <div class="section-title full" style="padding-bottom: 10px;">
469
  <h4><?php _e('Masonry Options', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Ajax Load More does not support all available Masonry options','ajax-load-more'); ?>."></a></h4>
470
  <p><?php _e('The following Masonry <a href="https://masonry.desandro.com/options.html" target="_blank">options</a> are supported by Ajax Load More.', 'ajax-load-more'); ?></p>
471
  </div>
472
  <div class="clear"></div>
473
+
474
  <div class="section-title">
475
  <h4><?php _e('Item Selector', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Item Selector is required for Masonry to target each element loaded with Ajax.','ajax-load-more'); ?>"></a></h4>
476
  <p><?php _e('Enter the target classname of each masonry item.', 'ajax-load-more'); ?><br/>
482
  <input type="text" class="alm_element" name="masonry-item" id="masonry-item" placeholder=".grid-item">
483
  </div>
484
  </div>
485
+
486
  <div class="clear"></div>
487
  <hr class="indented" />
488
+
489
  <div class="section-title">
490
  <h4><?php _e('Column Width', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('If columnWidth is not set, Masonry will use the outer width of the first Item Selector.','ajax-load-more'); ?>"></a></h4>
491
  <p><?php _e('Enter the <a href="https://masonry.desandro.com/options.html#columnwidth" target="_blank">columnWidth</a> of the masonry items.', 'ajax-load-more'); ?><br/>
497
  <input type="number" class="alm_element numbers-only" name="masonry-columnwidth" id="masonry-columnwidth" placeholder="80" min="0" step="1">
498
  </div>
499
  </div>
500
+
501
  <div class="clear"></div>
502
  <hr class="indented" />
503
+
504
  <div class="section-title">
505
  <h4><?php _e('Animation Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('All Masonry animations include a fade-in effect as items are loaded.','ajax-load-more'); ?>"></a></h4>
506
  <p><?php _e('Select a loading transition for Masonry items.', 'ajax-load-more'); ?></p>
511
  <li style="width:100%;">
512
  <input class="alm_element" type="radio" name="masonry-animation" value="default" id="masonry-animation-default" checked="checked">
513
  <label for="masonry-animation-default">
514
+ <?php _e('Default (Zoom)', 'ajax-load-more'); ?>
515
  <span class="description"><?php _e('Items scale up from 50% to 100% size on load.','ajax-load-more'); ?></span>
516
  </label>
517
  </li>
518
  <li style="width:100%;">
519
  <input class="alm_element" type="radio" name="masonry-animation" value="zoom-out" id="masonry-animation-zoom-out">
520
  <label for="masonry-animation-zoom-out">
521
+ <?php _e('Zoom Out', 'ajax-load-more'); ?>
522
  <span class="description"><?php _e('Items scale down from 125% to 100% size on load.','ajax-load-more'); ?></span>
523
  </label>
524
  </li>
542
  <?php _e('None', 'ajax-load-more'); ?>
543
  </label>
544
  </li>
545
+ </ul>
546
  </div>
547
  </div>
548
+
549
  <div class="clear"></div>
550
  <hr class="indented" />
551
+
552
  <div class="section-title">
553
  <h4><?php _e('Horizontal Order', 'ajax-load-more'); ?></h4>
554
  <p><?php _e('Lays out items to maintain left-to-right order.', 'ajax-load-more'); ?>
574
  <?php _e('Don\'t see your favorite Masonry option listed? You can always add your own!', 'ajax-load-more'); ?>
575
  <a class="button-small" href="https://connekthq.com/plugins/ajax-load-more/docs/masonry/" target="_blank"><?php _e('View Docs', 'ajax-load-more'); ?></a>
576
  </p>
577
+
578
  </div>
579
+
580
  </div>
581
+
582
  <!-- Hide transition_container if Masonry is selected -->
583
  <div class="masonry-options-hide">
584
+
585
  <div class="transition-container-classes-wrap">
586
  <div class="clear"></div>
587
  <hr>
588
+
589
  <div class="section-title">
590
  <h4><?php _e('Transition Container Classes', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('This setting is not available with the Single Post or Next Page add-ons','ajax-load-more'); ?>."></a></h4>
591
  <p><?php _e('Add custom classes to the <span>.alm-reveal</span> loading container', 'ajax-load-more'); ?>.</p>
596
  </div>
597
  </div>
598
  </div>
599
+
600
  <div class="clear"></div>
601
  <hr>
602
+
603
  <div class="section-title">
604
  <h4><?php _e('Transition Container', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Removing the transition container may have undesired results and is not recommended','ajax-load-more'); ?>."></a></h4>
605
  <p><?php _e('Remove the <span>.alm-reveal</span> loading container from Ajax Load More', 'ajax-load-more'); ?>.</p>
614
  </ul>
615
  </div>
616
  </div>
617
+
618
  </div>
619
+ <!-- End Hide transition_container if Masonry is selected -->
620
+
621
  </div>
622
  </div>
623
  <!-- End Transition -->
624
+
625
  <!-- Pause -->
626
  <div class="row checkbox pause_load" id="alm-pause">
627
  <h3 class="heading" tabindex="0"><?php _e('Pause', 'ajax-load-more'); ?></h3>
646
  </div>
647
  </div>
648
  <!-- End Pause -->
649
+
650
  <!-- Progress Bar -->
651
  <div class="row input alm-progress-bar" id="alm-progress-bar">
652
  <h3 class="heading" tabindex="0"><?php _e('Progress Bar', 'ajax-load-more'); ?></h3>
670
  </div>
671
  </div>
672
  </div>
673
+
674
  <div class="clear"></div>
675
+
676
+ <div class="progress-bar-options nested-component" style="display: none;">
677
+ <div class="nested-component--inner">
678
+ <div class="section-title">
679
  <h4><?php _e('Color', 'ajax-load-more'); ?> </h4>
680
  <p><?php _e('Enter the hex color of the progress bar', 'ajax-load-more'); ?>.<br/>
681
  <?php _e('Default:', 'ajax-load-more'); ?> #<span>ed7070</span>
687
  <span class="progress_bar_color_indicator"></span>
688
  </div>
689
  </div>
690
+ </div>
691
  </div>
692
+
693
  </div>
694
  <!-- End Progress Bar -->
695
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  </div>
697
  </div>
698
  <!-- End Display Settings -->
703
  <div class="shortcode-parameter-wrap">
704
  <h2 tabindex="0" class="shortcode-title"><i class="fa fa-database"></i><?php _e('Query Parameters', 'ajax-load-more'); ?></h2>
705
  <div class="section-wrap">
706
+
707
  <!-- Posts Per Page -->
708
  <div class="row input posts_per_page" id="alm-post-page">
709
  <h3 class="heading" tabindex="0"><?php _e('Posts Per Page', 'ajax-load-more'); ?></h3>
710
  <div class="expand-wrap">
711
  <div class="section-title">
712
+ <p><?php _e('Select the number of posts to load with each Ajax request.', 'ajax-load-more'); ?></p>
713
  </div>
714
  <div class="wrap">
715
  <div class="inner">
719
  </div>
720
  </div>
721
  <!-- End Posts Per Page -->
722
+
723
  <!-- Post Types -->
724
  <?php
725
  $pt_args = array(
729
  if($types){ ?>
730
  <div class="row checkboxes post_types" id="alm-post-types">
731
  <h3 class="heading" tabindex="0"><?php _e('Post Type', 'ajax-load-more'); ?></h3>
732
+
733
  <div class="expand-wrap">
734
+
735
  <div class="section-title">
736
  <p><?php _e('Select the Post Types to include in this Ajax Load More query.', 'ajax-load-more'); ?></p>
737
  </div>
752
  </div>
753
  </div>
754
  <div class="clear"></div>
755
+
756
  <!-- Sticky Posts -->
757
+ <div class="sticky-wrap nested-component">
758
+ <div class="nested-component--inner">
759
  <div class="section-title">
760
  <h4><?php _e('Sticky Posts', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Sticky posts are only available for Posts','ajax-load-more'); ?>."></a></h4>
761
  <p><?php _e('Preserve the ordering of sticky posts by having them appear first in the Ajax listing.', 'ajax-load-more'); ?></p>
772
  </div>
773
  </div>
774
  </div>
775
+
776
  </div>
777
+
778
  </div>
779
  <?php }
780
  ?>
781
  <!-- End Post Types -->
782
+
783
+
784
  <!-- Post Formats -->
785
  <?php
786
  if ( current_theme_supports( 'post-formats' ) ) {
805
  }
806
  ?>
807
  <!-- End Post Formats -->
808
+
809
+
810
  <!-- Categories -->
811
  <?php
812
  if($disable_dynamic_content){
814
  }else{
815
  $cats = get_categories();
816
  }
817
+ if($cats){
818
  $cat_link = 'https://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters';
819
  ?>
820
  <div class="row checkboxes categories" id="alm-categories">
864
  </ul>
865
  </div>
866
  </div>
867
+
868
  <div class="clear"></div>
869
  <hr/>
870
+
871
  <div class="section-title">
872
  <h4><?php _e('Exclude', 'ajax-load-more'); ?></h4>
873
  <p>
894
  </div>
895
  </div>
896
  <!-- End Category -->
897
+
898
  <?php }
899
+
900
  // Tags
901
  if($disable_dynamic_content){
902
  $tags = 'null';
903
  }else{
904
  $tags = get_tags();
905
  }
906
+ if($tags){
907
  $tag_link = 'https://codex.wordpress.org/Class_Reference/WP_Query#Tag_Parameters';
908
  ?>
909
  <div class="row checkboxes tags" id="alm-tags">
958
  <div class="clear"></div>
959
  <hr/>
960
 
961
+
962
  <div class="section-title">
963
  <h4><?php _e('Exclude', 'ajax-load-more'); ?></h4>
964
  <p>
965
+ <?php _e('Comma separated list of tags to exclude by ID', 'ajax-load-more'); ?>.
966
  <small>e.g. 30, 12, 99 etc..</small>
967
  </p>
968
  </div>
986
  </div>
987
  <?php } ?>
988
  <!-- End Tags -->
989
+
990
  <?php
991
  // Taxonomies
992
  $tax_args = array(
1012
  </div>
1013
  <?php }?>
1014
  <!-- End Taxonomies -->
1015
+
1016
  <!-- Meta_Query -->
1017
  <div class="row input meta-key" id="alm-meta-key">
1018
  <h3 class="heading" tabindex="0"><?php _e('Custom Fields (Meta_Query)', 'ajax-load-more'); ?></h3>
1037
  </div>
1038
  </div>
1039
  </div>
1040
+
1041
  <div id="meta-query-extended">
1042
+
1043
  </div>
1044
+
1045
  <div class="controls">
1046
  <button class="button button-primary" id="add-meta-query"><?php _e('Add Another', 'ajax-load-more'); ?></button>
1047
  </div>
1048
+
1049
  </div>
1050
  </div>
1051
  </div>
1052
  <!-- End Meta Query -->
1053
+
1054
  <!-- Date -->
1055
  <div class="row input date" id="alm-date">
1056
  <h3 class="heading" tabindex="0"><?php _e('Date', 'ajax-load-more'); ?></h3>
1079
  </div>
1080
  </div>
1081
  <!-- End Date -->
1082
+
1083
  <?php // List Authors
1084
  if($disable_dynamic_content){
1085
  $authors = 'null';
1112
  }
1113
  ?>
1114
  <!-- End Authors -->
1115
+
1116
  <!-- Search -->
1117
  <div class="row input search-term" id="alm-search">
1118
  <h3 class="heading" tabindex="0"><?php _e('Search Term', 'ajax-load-more'); ?></h3>
1128
  </div>
1129
  </div>
1130
  <!-- End Search -->
1131
+
1132
  <!-- Post Parameters -->
1133
  <div class="row input post-in" id="alm-post-in">
1134
  <h3 class="heading" tabindex="0"><?php _e('Post Parameters', 'ajax-load-more'); ?></h3>
1177
  </div>
1178
  </div>
1179
  <!-- End Post Parameters -->
1180
+
1181
  <!-- Ordering -->
1182
  <div class="row ordering" id="alm-order">
1183
  <h3 class="heading" tabindex="0"><?php _e('Ordering', 'ajax-load-more'); ?></h3>
1212
  </div>
1213
  </div>
1214
  <!-- End Ordering -->
1215
+
1216
  <!-- Offset -->
1217
  <div class="row input offset" id="alm-offset">
1218
  <h3 class="heading" tabindex="0"><?php _e('Offset', 'ajax-load-more'); ?></h3>
1228
  </div>
1229
  </div>
1230
  <!-- End Offset -->
1231
+
1232
  <!-- Custom Arguments -->
1233
  <div class="row input custom-arguments" id="alm-custom-args">
1234
  <h3 class="heading" tabindex="0"><?php _e('Custom Arguments', 'ajax-load-more'); ?></h3>
1244
  </div>
1245
  </div>
1246
  <!-- End Custom Arguments -->
1247
+
1248
  </div>
1249
 
1250
  </div>
admin/src/scss/_variables.scss CHANGED
@@ -1,11 +1,14 @@
1
  $gutter: 25px;
2
  $padding: 15px;
3
  $grey: #555;
4
- $green: #63ccb2;
5
  $green_hover: #57bda4;
6
  $yellow: #ffffe8;
7
  $yellow_dark: #e4e4c8;
8
  $red: #e06464;
 
 
 
9
 
10
  $small: 480px;
11
 
1
  $gutter: 25px;
2
  $padding: 15px;
3
  $grey: #555;
4
+ $green: #8ed074;
5
  $green_hover: #57bda4;
6
  $yellow: #ffffe8;
7
  $yellow_dark: #e4e4c8;
8
  $red: #e06464;
9
+ $border: #e1e1e1;
10
+ $border_hover: #ccc;
11
+ $radius: 3px;
12
 
13
  $small: 480px;
14
 
admin/src/scss/admin.scss CHANGED
@@ -104,6 +104,29 @@ body.ajax-load-more_page_ajax-load-more-pro{
104
  }
105
  }
106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  /*
108
  * Admin - Popup Generator
109
  *
@@ -168,23 +191,18 @@ body.ajax-load-more_page_ajax-load-more-pro{
168
 
169
  #alm-settings form {
170
  h2{
171
- background: #f7f7f7;
172
- border: 1px solid #e1e1e1;
173
- border-bottom: none;
174
- padding: 20px 20px 6px;
175
- margin: 20px 0 0;
176
  font-weight: 700;
177
  border-radius: 2px 2px 0 0;
178
  &:first-of-type{
179
- margin: 0;
180
  }
181
  + p{
182
  color: #999;
183
- padding: 0 20px 17px;
184
- border-right: 1px solid #e1e1e1;
185
- border-left: 1px solid #e1e1e1;
186
- background: #f7f7f7;
187
  margin: 0;
 
188
  }
189
  }
190
  }
@@ -218,6 +236,7 @@ body.ajax-load-more_page_ajax-load-more-pro{
218
  code{
219
  color: #999;
220
  background: transparent;
 
221
  }
222
  }
223
 
@@ -434,10 +453,11 @@ a.layout-hover{
434
 
435
  a.button-small{
436
  text-decoration: none;
437
- font-size: 11px;
438
- padding: 7px;
439
  display: inline-block;
440
  background-color: #eaf6fb;
 
441
  color: #333;
442
  line-height: 1.1;
443
  border-radius: 2px;
@@ -445,6 +465,8 @@ a.button-small{
445
  &:focus{
446
  color: #222;
447
  background-color: #d9edf5;
 
 
448
  }
449
  }
450
 
@@ -902,8 +924,8 @@ a.button-small{
902
  display: block;
903
  overflow: hidden;
904
  clear: both;
905
- border: 1px solid #efefef;
906
- border-radius: 2px;
907
  &.no-brd{
908
  border: none !important;
909
  padding: 0 !important;
@@ -1451,7 +1473,7 @@ hr.indented{ // Indented as fake padding in shortcode builder
1451
  /* Table Overrides */
1452
  .admin.ajax-load-more.settings .form-table td,
1453
  .admin.ajax-load-more.settings .form-table th{
1454
- padding: 30px 0;
1455
  line-height: 1.5;
1456
  }
1457
  .admin.ajax-load-more.settings .form-table td{
@@ -1459,6 +1481,9 @@ hr.indented{ // Indented as fake padding in shortcode builder
1459
  }
1460
  .admin.ajax-load-more.settings .form-table th{
1461
  padding-left: 20px;
 
 
 
1462
  }
1463
  .admin.ajax-load-more.settings .form-table p{
1464
  margin-top: 0;
@@ -1471,7 +1496,6 @@ hr.indented{ // Indented as fake padding in shortcode builder
1471
  color: #999;
1472
  }
1473
 
1474
-
1475
  .ajax-load-more h2.addon-title{
1476
  font-size: 19px !important;
1477
  line-height: 24px;
@@ -1567,8 +1591,8 @@ p.loading{
1567
  }
1568
 
1569
  .alm-dropdown ul li a.updating{
1570
- background-position: 6px center;
1571
- padding-left: 32px;
1572
  }
1573
 
1574
  .restore-default{
@@ -1617,31 +1641,31 @@ table.highlight{
1617
  width: 100%;
1618
  float: none;
1619
  }
1620
- .ajax-load-more .cnkt-main h2,
1621
- .ajax-load-more .cnkt-main h3,
1622
- .ajax-load-more .cnkt-main h4{
1623
- margin-top: 0;
1624
- }
1625
- .form-table tr{
1626
- border-top: 1px solid #e1e1e1;
1627
- }
1628
- .form-table {
1629
- border: 1px solid #e1e1e1;
1630
- margin: 0 0 25px;
1631
- br{
1632
- height: 1px;
1633
- display: block;
1634
- overflow: hidden;
1635
- line-height: 1px;
1636
- margin: 0;
1637
- content: '';
1638
- }
1639
  }
1640
- #alm_OptionsForm{
1641
- .form-table:last-of-type{
1642
- margin-bottom: 0;
1643
- }
1644
  }
 
1645
 
1646
 
1647
  /* Repeaters */
@@ -1685,13 +1709,15 @@ table.highlight{
1685
  right: 15px;
1686
  bottom: 15px;
1687
  a{
1688
- border-radius: 2px;
1689
  background: none;
1690
  color: #c94141;
1691
  font-size: 14px;
 
 
1692
  text-decoration: none;
1693
  display: block;
1694
- padding: 5px 10px;
1695
  &:hover{
1696
  background-color: #c94141;
1697
  color: #fff;
@@ -1700,7 +1726,6 @@ table.highlight{
1700
  box-shadow: none;
1701
  }
1702
  &:active{
1703
- box-shadow: inset 0 1px 1px #ccc !important;
1704
  background-color: #b93636;
1705
  }
1706
  }
@@ -1843,7 +1868,7 @@ table.highlight{
1843
 
1844
  /* Add-on Callout! */
1845
  .call-out{
1846
- background: $green;
1847
  padding: 18px 100px 18px 18px;
1848
  border-radius: 3px;
1849
  margin: 0;
@@ -1890,9 +1915,9 @@ table.highlight{
1890
  font-size: 13px;
1891
  }
1892
  .call-out a{
1893
- color: #3f524d !important;
1894
  text-decoration: none;
1895
- font-weight: 500;
1896
  }
1897
  .call-out a:hover,
1898
  .call-out a:focus{
@@ -1989,13 +2014,13 @@ table.highlight{
1989
  box-shadow: inset 0 -6px 6px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
1990
  }
1991
  .license-title .status.valid{
1992
- background-color: #9ad682;
1993
  }
1994
  .license h2{
1995
  margin: 0;
1996
  padding: 15px 15px 15px 38px;
1997
  font-size: 16px;
1998
- font-weight: 600;
1999
  line-height: 1.2;
2000
  }
2001
  .license p,
@@ -2082,10 +2107,8 @@ table.highlight{
2082
  top:-3px;
2083
  }
2084
  .license-wrap input[type=text]{
2085
- background-color: #f7f7f7;
2086
  margin: 0;
2087
  width: 100% !important;
2088
- border-color: #e7e7e7;
2089
  padding: 14px;
2090
  }
2091
  .license-wrap .button-primary{
@@ -2110,7 +2133,7 @@ table.highlight{
2110
  cursor: default;
2111
  }
2112
  .license-key-field .status.active{
2113
- background-color: #9ad682;
2114
  }
2115
  .license-key-field .status.inactive{
2116
  background-color: #d45656;
@@ -2149,7 +2172,7 @@ table.highlight{
2149
  margin: 0 0 20px;
2150
  overflow: visible;
2151
  position: relative;
2152
- box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.045);
2153
 
2154
  .alm-file-location{
2155
  padding-top: 15px;
@@ -2400,7 +2423,7 @@ table.highlight{
2400
 
2401
  .ajax-load-more .CodeMirror {
2402
  height: auto;
2403
- border-radius: 3px;
2404
  padding: 5px;
2405
  background: #f7f7f7;
2406
  border: 1px solid #e1e1e1;
@@ -2655,7 +2678,7 @@ table.highlight{
2655
  .alm-cache-search-wrap{
2656
  position: relative;
2657
  display: block;
2658
- margin: 0 0 10px;
2659
  input{
2660
  width: 100% !important;
2661
  margin: 0 !important;
@@ -2675,7 +2698,9 @@ table.highlight{
2675
 
2676
  /* Directory Listing */
2677
  .alm-dir-listing{
2678
- border: 1px solid #e1e1e1;
 
 
2679
  padding: 0;
2680
  margin: 10px 0 0;
2681
  &.theme-repeaters{
@@ -2712,16 +2737,14 @@ table.highlight{
2712
  }
2713
  .alm-dir-listing .dir-title .delete{
2714
  position: absolute;
2715
- right:8px;
2716
- top:11px;
2717
  font-weight: 400;
2718
- font-size: 14px;
2719
  text-decoration: none;
2720
- padding: 5px 10px;
2721
  border: 1px solid #e1e1e1;
2722
  color: #ccc;
2723
- -webkit-border-radius: 2px;
2724
- -moz-border-radius: 2px;
2725
  border-radius: 2px;
2726
  }
2727
  .alm-dir-listing:hover .dir-title .delete{
@@ -2849,12 +2872,14 @@ p.theme-title{
2849
  overflow: hidden;
2850
  width: 47%;
2851
  font-size: 14px;
2852
- background: transparent url(../../img/directory-list.gif) no-repeat left center;
2853
  }
2854
  .alm-dir-listing.theme-repeaters ul li{
2855
  display: block;
2856
  width: 100%;
2857
  padding-top: 10px;
 
 
2858
  }
2859
  .alm-dir-listing.theme-repeaters ul li label{
2860
  display: block;
@@ -2863,10 +2888,10 @@ p.theme-title{
2863
 
2864
  .alm-dir-listing ul li:last-child,
2865
  .alm-dir-listing ul li:nth-last-child(2){
2866
- background-image: url(../../img/directory-list-btm.gif);
2867
  }
2868
  .alm-dir-listing.theme-repeaters ul li:nth-last-child(2){
2869
- background: transparent url(../../img/directory-list.gif) no-repeat left center;
2870
  }
2871
  .alm-dir-listing ul li a{
2872
  text-decoration: none;
@@ -2897,6 +2922,25 @@ p.theme-title{
2897
  * @since 2.4
2898
  */
2899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2900
  .shortcode-builder input[type=checkbox],
2901
  .shortcode-builder input[type=radio],
2902
  .ajax-load-more .form-table input[type=checkbox],
@@ -2916,7 +2960,7 @@ p.theme-title{
2916
  min-height: 23px;
2917
  width: 100%;
2918
  display:inline-block;
2919
- padding: 0 0 0 30px;
2920
  margin: 0 0 5px;
2921
  font-size: 14px;
2922
  line-height: 1.5;
@@ -3072,7 +3116,7 @@ p.theme-title{
3072
  right: 7px;
3073
  z-index: 8;
3074
  a.target{
3075
- padding: 8px 10px;
3076
  box-shadow: none;
3077
  border: none;
3078
  > i{
@@ -3082,28 +3126,29 @@ p.theme-title{
3082
  }
3083
  }
3084
 
3085
- .alm-drop-btn a.target{
3086
- position: relative;
 
 
 
 
 
 
 
 
 
 
 
 
3087
  color: #999;
3088
- text-decoration: none !important;
3089
- padding: 8px 12px 8px 30px;
3090
- border: 1px solid #e1e1e1;
3091
- border-radius: 3px;
3092
- font-size: 13px;
3093
- line-height: 1.25;
3094
- display: block;
3095
- box-shadow: 0 0 0 1px #fff;
3096
  }
3097
- .alm-drop-btn a.target > i{
3098
- color: #999;
3099
- font-size: 15px;
3100
- position: absolute;
3101
- top:9px;
3102
- left: 10px;
3103
  }
3104
- .alm-repeater-options a.target:hover i.fa-cog{
3105
- color: #333;
3106
- }
3107
 
3108
  /* Active / Hover state */
3109
  .alm-repeater-options a.target:active,
@@ -3142,8 +3187,12 @@ p.theme-title{
3142
  li.type{
3143
  height: 36px;
3144
  line-height: 36px;
3145
- padding: 0 0 0 8px;
3146
  position: relative;
 
 
 
 
3147
  }
3148
  }
3149
  .alm-dropdown ul li.layout i {
@@ -3202,16 +3251,18 @@ p.theme-title{
3202
  .alm-drop-btn.alm-layout-selection a.external,
3203
  .alm-drop-btn.alm-layout-selection a.add-on{
3204
  background-color: #f7f7f7;
3205
- padding: 13px 10px 13px 38px;
3206
  display: block;
3207
  }
3208
  .alm-drop-btn.alm-layout-selection a.external{
3209
- padding: 0 10px 0 38px;
 
3210
  }
3211
  .alm-drop-btn.alm-layout-selection a.external i{
3212
  color: #999;
3213
  border-color: #ccc;
3214
- top: 11px;
 
3215
  width: 38px;
3216
  }
3217
  .alm-drop-btn.alm-layout-selection a.external:hover i{
@@ -3219,14 +3270,15 @@ p.theme-title{
3219
  }
3220
  .alm-drop-btn.alm-layout-selection a.add-on{
3221
  line-height: 1.5;
3222
- background-color: $green;
3223
  border: none;
3224
  color: #fff;
3225
  font-weight: 400;
3226
  text-overflow: inherit;
3227
  height: auto;
3228
  white-space: normal;
3229
- font-size: 12px;
 
3230
  }
3231
  .alm-drop-btn.alm-layout-selection a.add-on:hover,
3232
  .alm-drop-btn.alm-layout-selection a.add-on:focus{
@@ -3242,6 +3294,7 @@ p.theme-title{
3242
  .alm-drop-btn.alm-layout-selection a.add-on i{
3243
  top: 14px;
3244
  left: 3px;
 
3245
  }
3246
  .alm-drop-btn.alm-layout-selection a.add-on i{
3247
  color: #fff !important;
@@ -3251,10 +3304,9 @@ p.theme-title{
3251
  .alm-drop-btn.alm-layout-selection a.target:hover,
3252
  .alm-drop-btn.alm-layout-selection a.target:active,
3253
  .alm-drop-btn.alm-layout-selection.active a.target{
3254
- color: #222;
3255
- background-color: #fff;
3256
- border-color: #ccc;
3257
- box-shadow: 0 0 3px #e7e7e7;
3258
  opacity: 1;
3259
  }
3260
  .alm-drop-btn.alm-layout-selection.active a.target,
@@ -3262,7 +3314,7 @@ p.theme-title{
3262
  box-shadow: inset 0 1px 1px #ccc !important;
3263
  }
3264
 
3265
- .alm-drop-btn.alm-layout-selection .alm-dropdown {
3266
  display: none;
3267
  position: absolute;
3268
  right: 0;
@@ -3333,17 +3385,15 @@ p.theme-title{
3333
  display: block;
3334
  position: relative;
3335
  background: #fff;
3336
- -webkit-border-radius: 3px;
3337
- -moz-border-radius: 3px;
3338
- border-radius: 3px;
3339
  border: 1px solid #ccc;
3340
- box-shadow: 0 0 4px #ccc;
3341
- padding: 5px 8px;
3342
  width: 220px;
3343
  }
3344
  .alm-layout-selection .alm-dropdown .alm-drop-inner{
3345
  width: 250px;
3346
- padding: 8px 8px 5px;
3347
  }
3348
  .alm-drop-inner:after,
3349
  .alm-drop-inner:before {
@@ -3380,21 +3430,17 @@ p.theme-title{
3380
  }
3381
  .alm-dropdown ul li{
3382
  margin: 0;
3383
- padding: 3px 0;
3384
  list-style: none;
3385
  clear: both;
3386
  font-size: 12px;
3387
  line-height: 1.2;
3388
- border-top: 1px solid #efefef;
3389
  font-weight: 400;
3390
- }
3391
- .alm-dropdown ul li:first-child{
3392
- border: none;
3393
  }
3394
  .alm-dropdown ul li a{
3395
- padding: 0 10px 0 32px;
3396
- line-height: 37px;
3397
- height: 36px;
3398
  display: block;
3399
  text-decoration: none;
3400
  background-position: 4px center;
@@ -3405,23 +3451,37 @@ p.theme-title{
3405
  white-space: nowrap;
3406
  overflow: hidden;
3407
  text-overflow: ellipsis;
3408
- border-radius: 2px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3409
  }
3410
 
3411
  .alm-dropdown ul li a i{
3412
  margin: 0;
3413
  color: #ccc;
3414
  position: absolute;
3415
- left: 0;
3416
- top: 11px;
3417
- font-size: 13px;
 
3418
  width: 32px;
3419
  height: 16px;
3420
  line-height: 16px;
3421
  display: inline-block;
3422
  text-align: center;
3423
  }
3424
-
3425
  .alm-dropdown ul li a:hover{
3426
  color: #111;
3427
  background-color: #f7f7f7;
@@ -3836,35 +3896,34 @@ p.theme-title{
3836
  position: relative;
3837
  top: 1px;
3838
  z-index: 9;
3839
- }
3840
- .ajax-load-more .alm-toggle-switch li{
3841
  float: left;
3842
  margin: 0 2px 0 0;
3843
  padding: 0;
3844
  background: none;
3845
  list-style: none;
3846
  }
3847
- .ajax-load-more .alm-toggle-switch li a{
3848
  display: block;
3849
  padding: 15px 22px;
3850
  line-height: 1;
3851
- border-radius: 2px;
3852
  text-decoration: none;
3853
  border: 1px solid #e1e1e1;
3854
- border-radius: 2px 2px 0 0;
3855
  background: #f7f7f7;
3856
  color: #666;
3857
  }
3858
- .ajax-load-more .alm-toggle-switch li a:hover{
3859
  color: #222;
3860
  background-color: #fff;
3861
  }
3862
- .ajax-load-more .alm-toggle-switch li a.active{
3863
  background: #fff;
3864
  font-weight: 600;
3865
  border-bottom-color: #fff;
3866
  color: #111;
3867
  }
 
3868
 
3869
 
3870
  /*
@@ -3903,7 +3962,7 @@ p.theme-title{
3903
  border: none;
3904
  }
3905
  .admin.ajax-load-more.settings .form-table td{
3906
- padding: 24px 17px 20px
3907
  }
3908
  .call-out.light {
3909
  padding: 15px !important;
@@ -3911,11 +3970,13 @@ p.theme-title{
3911
  .repeaters input.save-repeater{
3912
  max-width: 50%;
3913
  }
3914
- }
3915
 
3916
  @media screen and (max-width: 782px){
3917
  .admin.ajax-load-more.settings .form-table th{
3918
  padding-bottom: 0;
 
 
3919
  }
3920
  .share-alm .sharing{
3921
  padding-right: 0;
104
  }
105
  }
106
 
107
+
108
+ // Styled Buttons
109
+ #wpcontent .ajax-load-more{
110
+ .button:not(.button-primary),
111
+ .button.button-secondary{
112
+ border-color: #ccc;
113
+ color: #444;
114
+ background-color: #f3f5f6;
115
+ &:hover,
116
+ &:active,
117
+ &:focus{
118
+ color: #222;
119
+ border-color: #999;
120
+ background-color: #f1f1f1;
121
+ box-shadow: none;
122
+ }
123
+ &:focus{
124
+ background-color: #e7e7e7;
125
+ }
126
+ }
127
+ }
128
+
129
+
130
  /*
131
  * Admin - Popup Generator
132
  *
191
 
192
  #alm-settings form {
193
  h2{
194
+ padding: 20px 20px 5px 5px;
195
+ margin: 0;
 
 
 
196
  font-weight: 700;
197
  border-radius: 2px 2px 0 0;
198
  &:first-of-type{
199
+ padding-top: 0;
200
  }
201
  + p{
202
  color: #999;
203
+ padding: 0 20px 15px 5px;
 
 
 
204
  margin: 0;
205
+ font-size: 13px;
206
  }
207
  }
208
  }
236
  code{
237
  color: #999;
238
  background: transparent;
239
+ cursor: help;
240
  }
241
  }
242
 
453
 
454
  a.button-small{
455
  text-decoration: none;
456
+ font-size: 12px;
457
+ padding: 7px 10px;
458
  display: inline-block;
459
  background-color: #eaf6fb;
460
+ border: 1px solid #b9d2de;
461
  color: #333;
462
  line-height: 1.1;
463
  border-radius: 2px;
465
  &:focus{
466
  color: #222;
467
  background-color: #d9edf5;
468
+ text-decoration: none;
469
+ border-color: #98b2be;
470
  }
471
  }
472
 
924
  display: block;
925
  overflow: hidden;
926
  clear: both;
927
+ border: 1px solid $border;
928
+ border-radius: $radius;
929
  &.no-brd{
930
  border: none !important;
931
  padding: 0 !important;
1473
  /* Table Overrides */
1474
  .admin.ajax-load-more.settings .form-table td,
1475
  .admin.ajax-load-more.settings .form-table th{
1476
+ padding: 20px;
1477
  line-height: 1.5;
1478
  }
1479
  .admin.ajax-load-more.settings .form-table td{
1481
  }
1482
  .admin.ajax-load-more.settings .form-table th{
1483
  padding-left: 20px;
1484
+ font-weight: 700;
1485
+ background-color: #f7f7f7;
1486
+ border-right: 1px solid #e1e1e1;
1487
  }
1488
  .admin.ajax-load-more.settings .form-table p{
1489
  margin-top: 0;
1496
  color: #999;
1497
  }
1498
 
 
1499
  .ajax-load-more h2.addon-title{
1500
  font-size: 19px !important;
1501
  line-height: 24px;
1591
  }
1592
 
1593
  .alm-dropdown ul li a.updating{
1594
+ background-position: 9px 54%;
1595
+ padding-left: 34px;
1596
  }
1597
 
1598
  .restore-default{
1641
  width: 100%;
1642
  float: none;
1643
  }
1644
+ .ajax-load-more .cnkt-main h2,
1645
+ .ajax-load-more .cnkt-main h3,
1646
+ .ajax-load-more .cnkt-main h4{
1647
+ margin-top: 0;
1648
+ }
1649
+ .form-table tr{
1650
+ border-top: 1px solid #e1e1e1;
1651
+ }
1652
+ .form-table {
1653
+ border: 1px solid #e1e1e1;
1654
+ margin: 0 0 20px;
1655
+ br{
1656
+ height: 1px;
1657
+ display: block;
1658
+ overflow: hidden;
1659
+ line-height: 1px;
1660
+ margin: 0;
1661
+ content: '';
 
1662
  }
1663
+ }
1664
+ #alm_OptionsForm{
1665
+ .form-table:last-of-type{
1666
+ margin-bottom: 0;
1667
  }
1668
+ }
1669
 
1670
 
1671
  /* Repeaters */
1709
  right: 15px;
1710
  bottom: 15px;
1711
  a{
1712
+ border-radius: $radius;
1713
  background: none;
1714
  color: #c94141;
1715
  font-size: 14px;
1716
+ line-height: 28px;
1717
+ height: 28px;
1718
  text-decoration: none;
1719
  display: block;
1720
+ padding: 0 10px;
1721
  &:hover{
1722
  background-color: #c94141;
1723
  color: #fff;
1726
  box-shadow: none;
1727
  }
1728
  &:active{
 
1729
  background-color: #b93636;
1730
  }
1731
  }
1868
 
1869
  /* Add-on Callout! */
1870
  .call-out{
1871
+ background: #75d0b4;
1872
  padding: 18px 100px 18px 18px;
1873
  border-radius: 3px;
1874
  margin: 0;
1915
  font-size: 13px;
1916
  }
1917
  .call-out a{
1918
+ color: #42524e !important;
1919
  text-decoration: none;
1920
+ font-weight: 600;
1921
  }
1922
  .call-out a:hover,
1923
  .call-out a:focus{
2014
  box-shadow: inset 0 -6px 6px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
2015
  }
2016
  .license-title .status.valid{
2017
+ background-color: $green;
2018
  }
2019
  .license h2{
2020
  margin: 0;
2021
  padding: 15px 15px 15px 38px;
2022
  font-size: 16px;
2023
+ font-weight: 700;
2024
  line-height: 1.2;
2025
  }
2026
  .license p,
2107
  top:-3px;
2108
  }
2109
  .license-wrap input[type=text]{
 
2110
  margin: 0;
2111
  width: 100% !important;
 
2112
  padding: 14px;
2113
  }
2114
  .license-wrap .button-primary{
2133
  cursor: default;
2134
  }
2135
  .license-key-field .status.active{
2136
+ background-color: $green;
2137
  }
2138
  .license-key-field .status.inactive{
2139
  background-color: #d45656;
2172
  margin: 0 0 20px;
2173
  overflow: visible;
2174
  position: relative;
2175
+ box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.065);
2176
 
2177
  .alm-file-location{
2178
  padding-top: 15px;
2423
 
2424
  .ajax-load-more .CodeMirror {
2425
  height: auto;
2426
+ border-radius: $radius;
2427
  padding: 5px;
2428
  background: #f7f7f7;
2429
  border: 1px solid #e1e1e1;
2678
  .alm-cache-search-wrap{
2679
  position: relative;
2680
  display: block;
2681
+ margin: 0 0 15px;
2682
  input{
2683
  width: 100% !important;
2684
  margin: 0 !important;
2698
 
2699
  /* Directory Listing */
2700
  .alm-dir-listing{
2701
+ border: 1px solid $border;
2702
+ border-radius: $radius;
2703
+ overflow: hidden;
2704
  padding: 0;
2705
  margin: 10px 0 0;
2706
  &.theme-repeaters{
2737
  }
2738
  .alm-dir-listing .dir-title .delete{
2739
  position: absolute;
2740
+ right: 10px;
2741
+ top: 10px;
2742
  font-weight: 400;
2743
+ font-size: 13px;
2744
  text-decoration: none;
2745
+ padding: 5px 12px;
2746
  border: 1px solid #e1e1e1;
2747
  color: #ccc;
 
 
2748
  border-radius: 2px;
2749
  }
2750
  .alm-dir-listing:hover .dir-title .delete{
2872
  overflow: hidden;
2873
  width: 47%;
2874
  font-size: 14px;
2875
+ background: transparent url("../../img/directory-list.gif") no-repeat left 46%;
2876
  }
2877
  .alm-dir-listing.theme-repeaters ul li{
2878
  display: block;
2879
  width: 100%;
2880
  padding-top: 10px;
2881
+ padding: 0 0 0 40px;
2882
+ background-position: left 54%;
2883
  }
2884
  .alm-dir-listing.theme-repeaters ul li label{
2885
  display: block;
2888
 
2889
  .alm-dir-listing ul li:last-child,
2890
  .alm-dir-listing ul li:nth-last-child(2){
2891
+ background-image: url("../../img/directory-list-btm.gif");
2892
  }
2893
  .alm-dir-listing.theme-repeaters ul li:nth-last-child(2){
2894
+ background: transparent url("../../img/directory-list.gif") no-repeat left center;
2895
  }
2896
  .alm-dir-listing ul li a{
2897
  text-decoration: none;
2922
  * @since 2.4
2923
  */
2924
 
2925
+ .ajax-load-more .alm-styled-input{
2926
+ display: flex;
2927
+ width: 100%;
2928
+ flex-wrap: nowrap;
2929
+ align-items: center;
2930
+ border-radius: 3px;
2931
+ border: 1px solid #e1e1e1;
2932
+ label{
2933
+ padding: 10px;
2934
+ border-right: 1px solid #e1e1e1;
2935
+ }
2936
+ input{
2937
+ border: none;
2938
+ border-radius: 0 2px 2px 0;
2939
+ margin: 0;
2940
+ width: 100%;
2941
+ }
2942
+ }
2943
+
2944
  .shortcode-builder input[type=checkbox],
2945
  .shortcode-builder input[type=radio],
2946
  .ajax-load-more .form-table input[type=checkbox],
2960
  min-height: 23px;
2961
  width: 100%;
2962
  display:inline-block;
2963
+ padding: 0.1em 0 0 30px;
2964
  margin: 0 0 5px;
2965
  font-size: 14px;
2966
  line-height: 1.5;
3116
  right: 7px;
3117
  z-index: 8;
3118
  a.target{
3119
+ padding: 5px 10px;
3120
  box-shadow: none;
3121
  border: none;
3122
  > i{
3126
  }
3127
  }
3128
 
3129
+ .alm-drop-btn a.target{
3130
+ position: relative;
3131
+ color: #444;
3132
+ text-decoration: none !important;
3133
+ padding: 0 12px 0 28px;
3134
+ border: 1px solid #ccc;
3135
+ border-radius: $radius;
3136
+ font-size: 13px;
3137
+ line-height: 30px;
3138
+ height: 32px;
3139
+ display: block;
3140
+ box-shadow: 0 0 0 1px #fff;
3141
+ }
3142
+ .alm-drop-btn a.target > i{
3143
  color: #999;
3144
+ font-size: 15px;
3145
+ position: absolute;
3146
+ top: 8px;
3147
+ left: 8px;
 
 
 
 
3148
  }
3149
+ .alm-repeater-options a.target:hover i.fa-cog{
3150
+ color: #333;
 
 
 
 
3151
  }
 
 
 
3152
 
3153
  /* Active / Hover state */
3154
  .alm-repeater-options a.target:active,
3187
  li.type{
3188
  height: 36px;
3189
  line-height: 36px;
3190
+ padding: 0 4px 0 8px;
3191
  position: relative;
3192
+ border-top: 1px solid $border;
3193
+ &:first-of-type{
3194
+ border: none;
3195
+ }
3196
  }
3197
  }
3198
  .alm-dropdown ul li.layout i {
3251
  .alm-drop-btn.alm-layout-selection a.external,
3252
  .alm-drop-btn.alm-layout-selection a.add-on{
3253
  background-color: #f7f7f7;
3254
+ padding: 13px 10px 13px 36px;
3255
  display: block;
3256
  }
3257
  .alm-drop-btn.alm-layout-selection a.external{
3258
+ padding: 0 10px 0 36px;
3259
+ font-weight: 600;
3260
  }
3261
  .alm-drop-btn.alm-layout-selection a.external i{
3262
  color: #999;
3263
  border-color: #ccc;
3264
+ top: 50%;
3265
+ transform: translateY(-50%);
3266
  width: 38px;
3267
  }
3268
  .alm-drop-btn.alm-layout-selection a.external:hover i{
3270
  }
3271
  .alm-drop-btn.alm-layout-selection a.add-on{
3272
  line-height: 1.5;
3273
+ background-color: #75d0b4;
3274
  border: none;
3275
  color: #fff;
3276
  font-weight: 400;
3277
  text-overflow: inherit;
3278
  height: auto;
3279
  white-space: normal;
3280
+ font-size: 13px;
3281
+ padding: 12px 15px;
3282
  }
3283
  .alm-drop-btn.alm-layout-selection a.add-on:hover,
3284
  .alm-drop-btn.alm-layout-selection a.add-on:focus{
3294
  .alm-drop-btn.alm-layout-selection a.add-on i{
3295
  top: 14px;
3296
  left: 3px;
3297
+ display: none;
3298
  }
3299
  .alm-drop-btn.alm-layout-selection a.add-on i{
3300
  color: #fff !important;
3304
  .alm-drop-btn.alm-layout-selection a.target:hover,
3305
  .alm-drop-btn.alm-layout-selection a.target:active,
3306
  .alm-drop-btn.alm-layout-selection.active a.target{
3307
+ color: #222;
3308
+ border-color: #999;
3309
+ background-color: #f1f1f1;
 
3310
  opacity: 1;
3311
  }
3312
  .alm-drop-btn.alm-layout-selection.active a.target,
3314
  box-shadow: inset 0 1px 1px #ccc !important;
3315
  }
3316
 
3317
+ .alm-drop-btn.alm-layout-selection .alm-dropdown {
3318
  display: none;
3319
  position: absolute;
3320
  right: 0;
3385
  display: block;
3386
  position: relative;
3387
  background: #fff;
3388
+ border-radius: $radius;
 
 
3389
  border: 1px solid #ccc;
3390
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
3391
+ padding: 8px 10px;
3392
  width: 220px;
3393
  }
3394
  .alm-layout-selection .alm-dropdown .alm-drop-inner{
3395
  width: 250px;
3396
+ padding: 10px 10px 6px;
3397
  }
3398
  .alm-drop-inner:after,
3399
  .alm-drop-inner:before {
3430
  }
3431
  .alm-dropdown ul li{
3432
  margin: 0;
3433
+ padding: 2px 0;
3434
  list-style: none;
3435
  clear: both;
3436
  font-size: 12px;
3437
  line-height: 1.2;
 
3438
  font-weight: 400;
 
 
 
3439
  }
3440
  .alm-dropdown ul li a{
3441
+ padding: 0 10px 0 34px;
3442
+ line-height: 40px;
3443
+ height: 40px;
3444
  display: block;
3445
  text-decoration: none;
3446
  background-position: 4px center;
3451
  white-space: nowrap;
3452
  overflow: hidden;
3453
  text-overflow: ellipsis;
3454
+ border-radius: $radius;
3455
+ &.layout,
3456
+ &.external,
3457
+ &.option{
3458
+ border: 1px solid $border;
3459
+ background-color: transparent;
3460
+ &:hover,
3461
+ &:focus{
3462
+ border-color: $border_hover;
3463
+ background-color: #f1f1f1;
3464
+ }
3465
+ &:focus{
3466
+ background-color: #f1f1f1;
3467
+ }
3468
+ }
3469
  }
3470
 
3471
  .alm-dropdown ul li a i{
3472
  margin: 0;
3473
  color: #ccc;
3474
  position: absolute;
3475
+ left: 2px;
3476
+ top: 50%;
3477
+ transform: translateY(-50%);
3478
+ font-size: 14px;
3479
  width: 32px;
3480
  height: 16px;
3481
  line-height: 16px;
3482
  display: inline-block;
3483
  text-align: center;
3484
  }
 
3485
  .alm-dropdown ul li a:hover{
3486
  color: #111;
3487
  background-color: #f7f7f7;
3896
  position: relative;
3897
  top: 1px;
3898
  z-index: 9;
3899
+ li{
 
3900
  float: left;
3901
  margin: 0 2px 0 0;
3902
  padding: 0;
3903
  background: none;
3904
  list-style: none;
3905
  }
3906
+ li a{
3907
  display: block;
3908
  padding: 15px 22px;
3909
  line-height: 1;
 
3910
  text-decoration: none;
3911
  border: 1px solid #e1e1e1;
3912
+ border-radius: $radius $radius 0 0;
3913
  background: #f7f7f7;
3914
  color: #666;
3915
  }
3916
+ li a:hover{
3917
  color: #222;
3918
  background-color: #fff;
3919
  }
3920
+ li a.active{
3921
  background: #fff;
3922
  font-weight: 600;
3923
  border-bottom-color: #fff;
3924
  color: #111;
3925
  }
3926
+ }
3927
 
3928
 
3929
  /*
3962
  border: none;
3963
  }
3964
  .admin.ajax-load-more.settings .form-table td{
3965
+ padding: 24px 20px 20px
3966
  }
3967
  .call-out.light {
3968
  padding: 15px !important;
3970
  .repeaters input.save-repeater{
3971
  max-width: 50%;
3972
  }
3973
+ }
3974
 
3975
  @media screen and (max-width: 782px){
3976
  .admin.ajax-load-more.settings .form-table th{
3977
  padding-bottom: 0;
3978
+ border: none;
3979
+ background-color: transparent;
3980
  }
3981
  .share-alm .sharing{
3982
  padding-right: 0;
admin/views/licenses.php CHANGED
@@ -9,70 +9,63 @@
9
  <?php echo ALM_TITLE; ?>: <strong><?php echo $pg_title; ?></strong>
10
  <em><?php echo $pg_desc; ?>.</em>
11
  </h1>
12
- <?php alm_render_transient_notification(); ?>
13
  </header>
14
-
15
  <div class="ajax-load-more-inner-wrapper">
16
-
17
  <div class="cnkt-main">
18
-
19
- <h3><?php
20
  if(has_action('alm_pro_installed')){
21
- _e('License Key', 'ajax-load-more');
22
  } else {
23
- _e('License Keys', 'ajax-load-more');
24
  }
25
  ?></h3>
26
 
27
  <p>
28
- <?php
29
  if(has_action('alm_pro_installed')){
30
- _e('Enter your Ajax Load More Pro license key to receive plugin update notifications directly within the <a href="plugins.php">WP Plugins dashboard</a>.', 'ajax-load-more');
31
  } else {
32
- _e('Enter a key for each of your Ajax Load More add-ons to receive plugin update notifications directly within the <a href="plugins.php">WP Plugins dashboard</a>.', 'ajax-load-more');
33
  }
34
  ?>
35
- </p>
36
-
37
- <?php
38
-
39
- $addons = (has_action('alm_pro_installed')) ? alm_get_pro_addon() : alm_get_addons();
40
  $addon_count = 0;
41
-
42
- foreach($addons as $addon){
43
-
44
  $name = $addon['name'];
45
  $intro = $addon['intro'];
46
  $desc = $addon['desc'];
47
  $action = $addon['action'];
48
  $key = $addon['key'];
49
- $license = get_option($key);
50
  $status = $addon['status'];
51
  $settings_field = $addon['settings_field'];
52
  $url = $addon['url'];
53
- $img = $addon['img'];
54
  $item_id = $addon['item_id'];
55
-
56
-
57
  // If installed
58
  if(!has_action($action)){
59
- continue;
60
  }
61
-
62
  $addon_count++;
63
-
64
-
65
- // Get plugin transient for license status
66
- if(get_transient( "alm_{$item_id}_{$license}")){
67
- // Exists
68
- $license_status = get_transient( "alm_{$item_id}_{$license}");
69
- }else{
70
- // Check license
71
- $license_status = alm_license_check($item_id, $license, $status);
72
- }
73
-
74
- ?>
75
-
76
  <div class="license" id="license-<?php echo sanitize_title_with_dashes($name); ?>">
77
  <div class="license-title">
78
  <div class="status <?php echo ($license_status === 'valid') ? 'valid' : 'invalid'; ?> "></div>
@@ -80,7 +73,7 @@
80
  </div>
81
  <div class="license-wrap">
82
  <form method="post" action="options.php">
83
-
84
  <?php if( $license_status !== false && $license_status == 'valid' ) { ?>
85
  <!-- nothing -->
86
  <?php } else { ?>
@@ -88,10 +81,10 @@
88
  <h4><?php _e('Don\'t have a license?', 'ajax-load-more'); ?></h4>
89
  <p><?php _e('A valid license is required to activate and receive plugin updates directly in your WordPress dashboard', 'ajax-load-more'); ?> &rarr; <a href="<?php echo $url; ?>?utm_source=WP%20Admin&utm_medium=Licenses&utm_campaign=<?php echo $name; ?>" target="blank"><strong><?php _e('Purchase Now', 'ajax-load-more'); ?>!</strong></a></p>
90
  </div>
91
- <?php } ?>
92
-
93
- <?php settings_fields($settings_field); ?>
94
-
95
  <label class="description offscreen" for="<?php echo $key; ?>"><?php _e('Enter License Key', 'ajax-load-more'); ?></label>
96
  <div class="license-key-field">
97
  <input id="<?php echo $key; ?>" name="<?php echo $key; ?>" type="text" class="regular-text" value="<?php esc_attr_e( $license ); ?>" placeholder="<?php _e('Enter License Key', 'ajax-load-more'); ?>" />
@@ -101,22 +94,22 @@
101
  </span>
102
  <?php } else { ?>
103
  <span class="status inactive">
104
- <?php
105
  if($license_status === 'expired'){
106
- _e('Expired', 'ajax-load-more');
107
  }else{
108
- _e('Inactive', 'ajax-load-more');
109
  }
110
  ?>
111
  </span>
112
  <?php } ?>
113
- </div>
114
-
115
- <?php
116
- $nonce = 'alm_'. $item_id .'_license_nonce';
117
- wp_nonce_field( $nonce, $nonce );
118
  ?>
119
-
120
  <div class="license-btn-wrap"
121
  data-name="<?php echo $item_id; ?>"
122
  data-url="<?php echo ALM_STORE_URL; ?>"
@@ -132,29 +125,34 @@
132
  <button type="button" class="check-licence license-btn <?php if($license_status !== 'valid'){ echo 'hide'; } ?> button-secondary" data-type="check">
133
  <i class="fa fa-refresh" aria-hidden="true"></i> <?php _e('Refresh Status', 'ajax-load-more'); ?>
134
  </button>
135
- <?php if($license_status === 'expired'){ ?>
 
 
 
 
 
136
  <a class="button renew-btn" href="<?php echo $url; ?>" target="_blank">
137
  <?php _e('Renew License', 'ajax-load-more'); ?></a>
138
  <?php } ?>
139
- </div>
140
  </form>
141
  </div>
142
  <div class="loading"></div>
143
- </div>
144
  <?php } unset($addons); ?>
145
-
146
- <?php
147
- // No add-ons installed
148
- if($addon_count == 0) :
149
  ?>
150
  <div class="spacer"></div>
151
  <div class="license-no-addons">
152
  <p><?php _e('You do not have any Ajax Load More add-ons installed', 'ajax-load-more'); ?> | <a href="admin.php?page=ajax-load-more-add-ons"><strong><?php _e('Browse Add-ons', 'ajax-load-more'); ?></strong></a> | <a href="https://connekthq.com/plugins/ajax-load-more/pro/" target="_blank"><strong><?php _e('Go Pro', 'ajax-load-more'); ?></strong></a></p>
153
  </div>
154
- <?php endif; ?>
155
-
156
  </div>
157
-
158
  <aside class="cnkt-sidebar">
159
  <div id="cnkt-sticky-wrapper">
160
  <div id="cnkt-sticky">
@@ -170,7 +168,7 @@
170
  </ul>
171
  </div>
172
  <div class="major-publishing-actions">
173
- <a class="button button-primary button-large" target="_blank" href="https://connekthq.com/account/">
174
  <?php _e('Your Account', 'ajax-load-more'); ?>
175
  </a>
176
  </div>
@@ -178,8 +176,8 @@
178
  </div>
179
  </div>
180
  </div>
181
-
182
- <div class="clear"></div>
183
  </aside>
184
 
185
  </div>
9
  <?php echo ALM_TITLE; ?>: <strong><?php echo $pg_title; ?></strong>
10
  <em><?php echo $pg_desc; ?>.</em>
11
  </h1>
12
+ <?php alm_render_transient_notification(); ?>
13
  </header>
14
+
15
  <div class="ajax-load-more-inner-wrapper">
16
+
17
  <div class="cnkt-main">
18
+
19
+ <h3><?php
20
  if(has_action('alm_pro_installed')){
21
+ _e('License Key', 'ajax-load-more');
22
  } else {
23
+ _e('License Keys', 'ajax-load-more');
24
  }
25
  ?></h3>
26
 
27
  <p>
28
+ <?php
29
  if(has_action('alm_pro_installed')){
30
+ _e('Enter your Ajax Load More Pro license key to receive plugin update notifications directly within the <a href="plugins.php">WP Plugins dashboard</a>.', 'ajax-load-more');
31
  } else {
32
+ _e('Enter a key for each of your Ajax Load More add-ons to receive plugin update notifications directly within the <a href="plugins.php">WP Plugins dashboard</a>.', 'ajax-load-more');
33
  }
34
  ?>
35
+ </p>
36
+
37
+ <?php
38
+
39
+ $addons = (has_action('alm_pro_installed')) ? alm_get_pro_addon() : alm_get_addons();
40
  $addon_count = 0;
41
+
42
+ foreach($addons as $addon){
43
+
44
  $name = $addon['name'];
45
  $intro = $addon['intro'];
46
  $desc = $addon['desc'];
47
  $action = $addon['action'];
48
  $key = $addon['key'];
49
+ $license = get_option($key);
50
  $status = $addon['status'];
51
  $settings_field = $addon['settings_field'];
52
  $url = $addon['url'];
53
+ $img = $addon['img'];
54
  $item_id = $addon['item_id'];
55
+
56
+
57
  // If installed
58
  if(!has_action($action)){
59
+ continue;
60
  }
61
+
62
  $addon_count++;
63
+
64
+ // Check license
65
+ $license_status = alm_license_check($item_id, $license, $status);
66
+
67
+ ?>
68
+
 
 
 
 
 
 
 
69
  <div class="license" id="license-<?php echo sanitize_title_with_dashes($name); ?>">
70
  <div class="license-title">
71
  <div class="status <?php echo ($license_status === 'valid') ? 'valid' : 'invalid'; ?> "></div>
73
  </div>
74
  <div class="license-wrap">
75
  <form method="post" action="options.php">
76
+
77
  <?php if( $license_status !== false && $license_status == 'valid' ) { ?>
78
  <!-- nothing -->
79
  <?php } else { ?>
81
  <h4><?php _e('Don\'t have a license?', 'ajax-load-more'); ?></h4>
82
  <p><?php _e('A valid license is required to activate and receive plugin updates directly in your WordPress dashboard', 'ajax-load-more'); ?> &rarr; <a href="<?php echo $url; ?>?utm_source=WP%20Admin&utm_medium=Licenses&utm_campaign=<?php echo $name; ?>" target="blank"><strong><?php _e('Purchase Now', 'ajax-load-more'); ?>!</strong></a></p>
83
  </div>
84
+ <?php } ?>
85
+
86
+ <?php settings_fields($settings_field); ?>
87
+
88
  <label class="description offscreen" for="<?php echo $key; ?>"><?php _e('Enter License Key', 'ajax-load-more'); ?></label>
89
  <div class="license-key-field">
90
  <input id="<?php echo $key; ?>" name="<?php echo $key; ?>" type="text" class="regular-text" value="<?php esc_attr_e( $license ); ?>" placeholder="<?php _e('Enter License Key', 'ajax-load-more'); ?>" />
94
  </span>
95
  <?php } else { ?>
96
  <span class="status inactive">
97
+ <?php
98
  if($license_status === 'expired'){
99
+ _e('Expired', 'ajax-load-more');
100
  }else{
101
+ _e('Inactive', 'ajax-load-more');
102
  }
103
  ?>
104
  </span>
105
  <?php } ?>
106
+ </div>
107
+
108
+ <?php
109
+ $nonce = 'alm_'. $item_id .'_license_nonce';
110
+ wp_nonce_field( $nonce, $nonce );
111
  ?>
112
+
113
  <div class="license-btn-wrap"
114
  data-name="<?php echo $item_id; ?>"
115
  data-url="<?php echo ALM_STORE_URL; ?>"
125
  <button type="button" class="check-licence license-btn <?php if($license_status !== 'valid'){ echo 'hide'; } ?> button-secondary" data-type="check">
126
  <i class="fa fa-refresh" aria-hidden="true"></i> <?php _e('Refresh Status', 'ajax-load-more'); ?>
127
  </button>
128
+ <?php if($license_status === 'expired'){
129
+ if(isset($license) && !empty($license)){
130
+ $store = ALM_STORE_URL;
131
+ $url = "{$store}/checkout/?edd_license_key={$license}&download_id={$item_id}";
132
+ }
133
+ ?>
134
  <a class="button renew-btn" href="<?php echo $url; ?>" target="_blank">
135
  <?php _e('Renew License', 'ajax-load-more'); ?></a>
136
  <?php } ?>
137
+ </div>
138
  </form>
139
  </div>
140
  <div class="loading"></div>
141
+ </div>
142
  <?php } unset($addons); ?>
143
+
144
+ <?php
145
+ // No add-ons installed
146
+ if($addon_count == 0) :
147
  ?>
148
  <div class="spacer"></div>
149
  <div class="license-no-addons">
150
  <p><?php _e('You do not have any Ajax Load More add-ons installed', 'ajax-load-more'); ?> | <a href="admin.php?page=ajax-load-more-add-ons"><strong><?php _e('Browse Add-ons', 'ajax-load-more'); ?></strong></a> | <a href="https://connekthq.com/plugins/ajax-load-more/pro/" target="_blank"><strong><?php _e('Go Pro', 'ajax-load-more'); ?></strong></a></p>
151
  </div>
152
+ <?php endif; ?>
153
+
154
  </div>
155
+
156
  <aside class="cnkt-sidebar">
157
  <div id="cnkt-sticky-wrapper">
158
  <div id="cnkt-sticky">
168
  </ul>
169
  </div>
170
  <div class="major-publishing-actions">
171
+ <a class="button button-primary" target="_blank" href="https://connekthq.com/account/">
172
  <?php _e('Your Account', 'ajax-load-more'); ?>
173
  </a>
174
  </div>
176
  </div>
177
  </div>
178
  </div>
179
+
180
+ <div class="clear"></div>
181
  </aside>
182
 
183
  </div>
admin/views/repeater-templates.php CHANGED
@@ -97,8 +97,8 @@
97
  <div class="alm-row">
98
  <div class="column">
99
  <div class="file-location">
100
- <p title="<?php echo $file; ?>"><?php _e('Location', 'ajax-load-more'); ?>:</p>
101
- <code><?php echo $file_directory; ?>/<?php echo basename($file); ?></code>
102
  </div>
103
  </div>
104
  </div>
97
  <div class="alm-row">
98
  <div class="column">
99
  <div class="file-location">
100
+ <p><?php _e('Location', 'ajax-load-more'); ?>:</p>
101
+ <code title="<?php echo $file; ?>"><?php echo $file_directory; ?>/<?php echo basename($file); ?></code>
102
  </div>
103
  </div>
104
  </div>
ajax-load-more.php CHANGED
@@ -6,15 +6,15 @@ Description: The ultimate solution to add infinite scroll functionality to your
6
  Text Domain: ajax-load-more
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
- Author URI: https://connekthq.com
10
- Version: 5.1.6
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
13
  */
14
 
15
 
16
- define('ALM_VERSION', '5.1.6');
17
- define('ALM_RELEASE', 'October 22, 2019');
18
  define('ALM_STORE_URL', 'https://connekthq.com');
19
 
20
 
@@ -27,7 +27,7 @@ define('ALM_STORE_URL', 'https://connekthq.com');
27
  */
28
 
29
  function alm_install($network_wide) {
30
-
31
  global $wpdb;
32
  add_option( "alm_version", ALM_VERSION ); // Add to WP Option tbl
33
  if ( is_multisite() && $network_wide ) {
@@ -41,7 +41,7 @@ function alm_install($network_wide) {
41
  } else {
42
  alm_create_table();
43
  }
44
-
45
  }
46
  register_activation_hook( __FILE__, 'alm_install' );
47
  add_action( 'wpmu_new_blog', 'alm_install' );
@@ -73,7 +73,7 @@ function alm_create_table(){
73
  $w = fwrite($tmp, $defaultRepeater);
74
  fclose($tmp);
75
  }
76
-
77
  // Exit if Repeater Templates are disbaled, we don't want to create the table
78
  if( defined('ALM_DISABLE_REPEATER_TEMPLATES') && ALM_DISABLE_REPEATER_TEMPLATES ){
79
  return false;
@@ -94,7 +94,7 @@ function alm_create_table(){
94
  // Insert the default data in created table
95
  $wpdb->insert($table_name , array('name' => 'default', 'repeaterDefault' => $defaultRepeater, 'repeaterType' => 'default', 'pluginVersion' => ALM_VERSION));
96
  }
97
-
98
  }
99
 
100
 
@@ -122,7 +122,7 @@ if( !class_exists('AjaxLoadMore') ):
122
 
123
  $this->alm_define_constants();
124
  $this->alm_includes();
125
-
126
  add_action( 'wp_ajax_alm_get_posts', array(&$this, 'alm_query_posts') );
127
  add_action( 'wp_ajax_nopriv_alm_get_posts', array(&$this, 'alm_query_posts') );
128
  add_action( 'wp_enqueue_scripts', array(&$this, 'alm_enqueue_scripts') );
@@ -168,7 +168,7 @@ if( !class_exists('AjaxLoadMore') ):
168
  if (!defined('ALM_PREV_POST_ITEM_NAME')) define('ALM_PREV_POST_ITEM_NAME', '9686');
169
  if (!defined('ALM_RESTAPI_ITEM_NAME')) define('ALM_RESTAPI_ITEM_NAME', '17105'); // Deprecated
170
  if (!defined('ALM_SEO_ITEM_NAME')) define('ALM_SEO_ITEM_NAME', '3482');
171
- if (!defined('ALM_TABS_ITEM_NAME')) define('ALM_TABS_ITEM_NAME', '54855');
172
  if (!defined('ALM_THEME_REPEATERS_ITEM_NAME')) define('ALM_THEME_REPEATERS_ITEM_NAME', '8860');
173
  if (!defined('ALM_USERS_ITEM_NAME')) define('ALM_USERS_ITEM_NAME', '32311');
174
  if (!defined('ALM_PRO_ITEM_NAME')) define('ALM_PRO_ITEM_NAME', '42166');
@@ -262,7 +262,7 @@ if( !class_exists('AjaxLoadMore') ):
262
  * @since 2.0.0
263
  */
264
  public function alm_includes(){
265
-
266
  include_once( ALM_PATH . 'core/functions.php'); // Load Core Functions
267
  include_once( ALM_PATH . 'core/classes/class.alm-shortcode.php'); // Load Shortcode Class
268
  include_once( ALM_PATH . 'core/classes/class.alm-enqueue.php'); // Load Enqueue Class
@@ -278,7 +278,7 @@ if( !class_exists('AjaxLoadMore') ):
278
  include( dirname( __FILE__ ) . '/vendor/EDD_SL_Plugin_Updater.php' );
279
  }
280
  }
281
-
282
  }
283
 
284
 
@@ -368,7 +368,7 @@ if( !class_exists('AjaxLoadMore') ):
368
 
369
  // Callback Helpers
370
  wp_register_script( 'ajax-load-more-legacy-callbacks', plugins_url( '/vendor/js/alm/legacy-callbacks.js', __FILE__ ), 'jquery', '', false);
371
-
372
 
373
  // Core CSS
374
  if( !alm_do_inline_css('_alm_inline_css') && !alm_css_disabled('_alm_disable_css')){ // Not inline or disabled
@@ -378,8 +378,8 @@ if( !class_exists('AjaxLoadMore') ):
378
 
379
  // Prevent loading of unnessasry posts - move user to top of page
380
  $scrolltop = (!isset($options['_alm_scroll_top']) || $options['_alm_scroll_top'] != '1') ? 'false' : 'true';
381
-
382
-
383
  // Localized JS variables
384
  wp_localize_script(
385
  'ajax-load-more',
@@ -396,7 +396,7 @@ if( !class_exists('AjaxLoadMore') ):
396
  'alm_debug' => apply_filters('alm_debug', false)
397
  )
398
  );
399
-
400
  }
401
 
402
 
@@ -424,57 +424,57 @@ if( !class_exists('AjaxLoadMore') ):
424
  public static function alm_return_shortcode_atts(){
425
  return self::$shortcode_atts;
426
  }
427
-
428
-
429
-
430
  /**
431
  * alm_query_posts
432
  * Core Ajax Load More Query
433
  *
434
  * @since 2.0.0
435
- */
436
- public function alm_query_posts() {
437
-
438
  // WPML fix for category/tag/taxonomy archives
439
  if ( (isset( $_GET['category'] ) && $_GET['category']) || (isset($_GET['taxonomy']) && $_GET['taxonomy']) || (isset($_GET['tag']) && $_GET['tag']) ) {
440
  unset($_REQUEST['post_id']);
441
  }
442
-
443
  $id = (isset($_GET['id'])) ? $_GET['id'] : '';
444
  $post_id = (isset($_GET['post_id'])) ? $_GET['post_id'] : '';
445
  $slug = (isset($_GET['slug'])) ? $_GET['slug'] : '';
446
  $canonical_url = (isset($_GET['canonical_url'])) ? esc_url($_GET['canonical_url']) : esc_url($_SERVER['HTTP_REFERER']);
447
-
448
-
449
  // Ajax Query Type
450
  $queryType = (isset($_GET['query_type'])) ? $_GET['query_type'] : 'standard'; // 'standard' or 'totalposts'; totalposts returns $alm_found_posts
451
-
452
-
453
  // Cache
454
  $cache_id = (isset($_GET['cache_id'])) ? $_GET['cache_id'] : '';
455
  $cache_logged_in = (isset($_GET['cache_logged_in'])) ? $_GET['cache_logged_in'] : false;
456
  $do_create_cache = ($cache_logged_in === 'true' && is_user_logged_in()) ? false : true;
457
-
458
-
459
  // Offset
460
  $offset = (isset($_GET['offset'])) ? $_GET['offset'] : 0;
461
-
462
-
463
  // Repeater Templates
464
  $repeater = (isset($_GET['repeater'])) ? $_GET['repeater'] : 'default';
465
  $type = alm_get_repeater_type($repeater);
466
  $theme_repeater = (isset($_GET['theme_repeater'])) ? $_GET['theme_repeater'] : 'null';
467
-
468
-
469
  // Post Type
470
  $postType = (isset($_GET['post_type'])) ? $_GET['post_type'] : 'post';
471
-
472
-
473
  // Page Parameters
474
  $posts_per_page = (isset($_GET['posts_per_page'])) ? $_GET['posts_per_page'] : 5;
475
  $page = (isset($_GET['page'])) ? $_GET['page'] : 0;
476
-
477
-
478
  // Advanced Custom Fields
479
  $acfData = (isset($_GET['acf'])) ? $_GET['acf'] : false;
480
  if($acfData){
@@ -483,12 +483,12 @@ if( !class_exists('AjaxLoadMore') ):
483
  $acf_field_type = (isset($acfData['field_type'])) ? $acfData['field_type'] : ''; // ACF Field Type
484
  $acf_field_name = (isset($acfData['field_name'])) ? $acfData['field_name'] : ''; // ACF Field Type
485
  }
486
-
487
-
488
  // Paging Add-on
489
  $paging = (isset($_GET['paging'])) ? $_GET['paging'] : 'false';
490
-
491
-
492
  // Preload Add-on
493
  $preloaded = (isset($_GET['preloaded'])) ? $_GET['preloaded'] : 'false';
494
  $preloaded_amount = (isset($_GET['preloaded_amount'])) ? $_GET['preloaded_amount'] : '5';
@@ -497,8 +497,8 @@ if( !class_exists('AjaxLoadMore') ):
497
  $old_offset = $preloaded_amount;
498
  $offset = $offset + $preloaded_amount;
499
  }
500
-
501
-
502
  // CTA Add-on
503
  $cta = false;
504
  $ctaData = (isset($_GET['cta'])) ? $_GET['cta'] : false;
@@ -512,8 +512,8 @@ if( !class_exists('AjaxLoadMore') ):
512
  $cta_repeater = (isset($ctaData['cta_repeater'])) ? $ctaData['cta_repeater'] : 'null';
513
  $cta_theme_repeater = (isset($ctaData['cta_theme_repeater'])) ? $ctaData['cta_theme_repeater'] : 'null';
514
  }
515
-
516
-
517
  // Single Post Add-on
518
  $single_post = false;
519
  $single_post_data = (isset($_GET['single_post'])) ? $_GET['single_post'] : false;
@@ -522,22 +522,22 @@ if( !class_exists('AjaxLoadMore') ):
522
  $single_post_id = (isset($single_post_data['id'])) ? $single_post_data['id'] : '';
523
  $single_post_slug = (isset($single_post_data['slug'])) ? $single_post_data['slug'] : '';
524
  }
525
-
526
-
527
  // SEO Add-on
528
  $seo_start_page = (isset($_GET['seo_start_page'])) ? $_GET['seo_start_page'] : 1;
529
-
530
-
531
  // Set up initial WP_Query $args
532
- $args = ALM_QUERY_ARGS::alm_build_queryargs($_GET, true);
533
  $args['paged'] = (get_query_var('paged')) ? get_query_var('paged') : 1;
534
  $args['offset'] = $offset + ($posts_per_page*$page);
535
-
536
-
537
  // Get current page number for determining item number
538
  $alm_page_count = ($page == 0) ? 1 : $page + 1;
539
-
540
-
541
  /*
542
  * alm_single_post_args
543
  *
@@ -547,9 +547,9 @@ if( !class_exists('AjaxLoadMore') ):
547
  * @return $args;
548
  */
549
  $args = ($single_post && has_action('alm_single_post_installed')) ? apply_filters('alm_single_post_args', $single_post_id, $postType) : $args;
550
-
551
-
552
-
553
  /*
554
  * alm_modify_query_args
555
  *
@@ -559,9 +559,9 @@ if( !class_exists('AjaxLoadMore') ):
559
  * Deprecated 2.10
560
  */
561
  $args = apply_filters('alm_modify_query_args', $args, $slug); // ALM Core Filter Hook
562
-
563
-
564
-
565
  /*
566
  * alm_query_args_{id}
567
  *
@@ -570,25 +570,25 @@ if( !class_exists('AjaxLoadMore') ):
570
  * @return $args;
571
  */
572
  $args = apply_filters('alm_query_args_'.$id, $args, $post_id); // ALM Core Filter Hook
573
-
574
-
575
-
576
  /*
577
  * Set custom `alm_action` parameter in the WP_Query
578
  * Value is accessed elsewhere for filters & hooks etc.
579
- */
580
  $args['alm_query'] = ($single_post) ? 'single_posts' : 'alm';
581
-
582
-
583
-
584
  /*
585
  * WP_Query || ALM Query
586
  *
587
  * @return $alm_query;
588
  */
589
  $alm_query = new WP_Query( $args );
590
-
591
-
592
  // If preloaded, update our loop count and total posts
593
  if(has_action('alm_preload_installed') && $preloaded === 'true'){
594
  $alm_total_posts = $alm_query->found_posts - $offset + $preloaded_amount;
@@ -600,9 +600,9 @@ if( !class_exists('AjaxLoadMore') ):
600
  $alm_total_posts = $alm_query->found_posts - $offset;
601
  $alm_loop_count = 0;
602
  }
603
-
604
-
605
-
606
  /*
607
  * alm_cache_create_dir
608
  *
@@ -613,11 +613,11 @@ if( !class_exists('AjaxLoadMore') ):
613
  */
614
  if(!empty($cache_id) && has_action('alm_cache_create_dir') && $do_create_cache){
615
  apply_filters('alm_cache_create_dir', $cache_id, $canonical_url);
616
- }
617
-
618
-
619
  if($queryType === 'standard'){
620
-
621
  /*
622
  * alm_debug
623
  *
@@ -626,37 +626,38 @@ if( !class_exists('AjaxLoadMore') ):
626
  * @return $alm_query/false;
627
  */
628
  $debug = (apply_filters('alm_debug', false)) ? $args : false;
629
-
630
  // Run the loop
631
-
632
  if ($alm_query->have_posts()) {
633
-
634
  $alm_found_posts = $alm_total_posts;
635
  $alm_post_count = $alm_query->post_count;
636
  $alm_current = 0;
637
  $alm_has_cta = false;
638
-
639
  $cta_array = Array();
640
  if($cta && has_action('alm_cta_pos_array')){ // Build CTA Position Array
641
  $cta_array = apply_filters('alm_cta_pos_array', $seo_start_page, $page, $posts_per_page, $alm_post_count, $cta_val, $paging);
642
  }
643
-
644
  ob_start();
645
-
646
  // ALM Loop
647
  while ($alm_query->have_posts()): $alm_query->the_post();
648
-
649
  $alm_loop_count++;
650
  $alm_current++; // Current item in loop
651
  $alm_page = $alm_page_count; // Get page number
652
- $alm_item = ($alm_page_count * $posts_per_page) - $posts_per_page + $alm_loop_count; // Get current item
653
-
654
  // Call to Action [Before]
655
  if($cta && has_action('alm_cta_inc') && $cta_pos === 'before' && in_array($alm_current, $cta_array)){
656
  do_action('alm_cta_inc', $cta_repeater, $cta_theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current, false);
657
  $alm_has_cta = true;
658
  }
659
-
 
660
  // Repeater Template
661
  if($theme_repeater != 'null' && has_action('alm_get_theme_repeater')){ // Theme Repeater
662
  do_action('alm_get_theme_repeater', $theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current);
@@ -664,19 +665,20 @@ if( !class_exists('AjaxLoadMore') ):
664
  include(alm_get_current_repeater( $repeater, $type )); // Repeater
665
  }
666
  // End Repeater Template
667
-
668
  // Call to Action [After]
669
  if($cta && has_action('alm_cta_inc') && $cta_pos === 'after' && in_array($alm_current, $cta_array)){
670
  do_action('alm_cta_inc', $cta_repeater, $cta_theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current, false);
671
  $alm_has_cta = true;
672
  }
673
-
 
674
  endwhile; wp_reset_query();
675
  // End ALM Loop
676
-
677
  $data = ob_get_clean();
678
-
679
-
680
  /*
681
  * alm_cache_file
682
  *
@@ -697,8 +699,8 @@ if( !class_exists('AjaxLoadMore') ):
697
  // Standard Cache
698
  apply_filters('alm_cache_file', $cache_id, $page, $seo_start_page, $data, $preloaded);
699
  }
700
- }
701
-
702
  $return = array(
703
  'html' => $data,
704
  'meta' => array(
@@ -708,9 +710,9 @@ if( !class_exists('AjaxLoadMore') ):
708
  )
709
  );
710
  wp_send_json($return);
711
-
712
  } else {
713
-
714
  $return = array(
715
  'html' => null,
716
  'meta' => array(
@@ -719,28 +721,28 @@ if( !class_exists('AjaxLoadMore') ):
719
  'debug' => $debug
720
  )
721
  );
722
-
723
  wp_send_json($return);
724
-
725
  }
726
-
727
  }
728
-
729
  elseif($queryType === 'totalposts'){ // Paging add-on
730
-
731
  // Paging add-on
732
  wp_send_json(array(
733
  'totalposts' => $alm_total_posts
734
  ));
735
-
736
  }
737
-
738
  wp_die();
739
-
740
- }
741
 
742
  }
743
-
744
 
745
 
746
  /**
@@ -757,9 +759,9 @@ if( !class_exists('AjaxLoadMore') ):
757
  }
758
  return $ajax_load_more;
759
  }
760
-
761
  AjaxLoadMore(); // initialize
762
-
763
-
764
 
765
  endif; // class_exists check
6
  Text Domain: ajax-load-more
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
+ Author URI: https://connekthq.com
10
+ Version: 5.1.6.1
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
13
  */
14
 
15
 
16
+ define('ALM_VERSION', '5.1.6.1');
17
+ define('ALM_RELEASE', 'November 18, 2019');
18
  define('ALM_STORE_URL', 'https://connekthq.com');
19
 
20
 
27
  */
28
 
29
  function alm_install($network_wide) {
30
+
31
  global $wpdb;
32
  add_option( "alm_version", ALM_VERSION ); // Add to WP Option tbl
33
  if ( is_multisite() && $network_wide ) {
41
  } else {
42
  alm_create_table();
43
  }
44
+
45
  }
46
  register_activation_hook( __FILE__, 'alm_install' );
47
  add_action( 'wpmu_new_blog', 'alm_install' );
73
  $w = fwrite($tmp, $defaultRepeater);
74
  fclose($tmp);
75
  }
76
+
77
  // Exit if Repeater Templates are disbaled, we don't want to create the table
78
  if( defined('ALM_DISABLE_REPEATER_TEMPLATES') && ALM_DISABLE_REPEATER_TEMPLATES ){
79
  return false;
94
  // Insert the default data in created table
95
  $wpdb->insert($table_name , array('name' => 'default', 'repeaterDefault' => $defaultRepeater, 'repeaterType' => 'default', 'pluginVersion' => ALM_VERSION));
96
  }
97
+
98
  }
99
 
100
 
122
 
123
  $this->alm_define_constants();
124
  $this->alm_includes();
125
+
126
  add_action( 'wp_ajax_alm_get_posts', array(&$this, 'alm_query_posts') );
127
  add_action( 'wp_ajax_nopriv_alm_get_posts', array(&$this, 'alm_query_posts') );
128
  add_action( 'wp_enqueue_scripts', array(&$this, 'alm_enqueue_scripts') );
168
  if (!defined('ALM_PREV_POST_ITEM_NAME')) define('ALM_PREV_POST_ITEM_NAME', '9686');
169
  if (!defined('ALM_RESTAPI_ITEM_NAME')) define('ALM_RESTAPI_ITEM_NAME', '17105'); // Deprecated
170
  if (!defined('ALM_SEO_ITEM_NAME')) define('ALM_SEO_ITEM_NAME', '3482');
171
+ if (!defined('ALM_TABS_ITEM_NAME')) define('ALM_TABS_ITEM_NAME', '54855');
172
  if (!defined('ALM_THEME_REPEATERS_ITEM_NAME')) define('ALM_THEME_REPEATERS_ITEM_NAME', '8860');
173
  if (!defined('ALM_USERS_ITEM_NAME')) define('ALM_USERS_ITEM_NAME', '32311');
174
  if (!defined('ALM_PRO_ITEM_NAME')) define('ALM_PRO_ITEM_NAME', '42166');
262
  * @since 2.0.0
263
  */
264
  public function alm_includes(){
265
+
266
  include_once( ALM_PATH . 'core/functions.php'); // Load Core Functions
267
  include_once( ALM_PATH . 'core/classes/class.alm-shortcode.php'); // Load Shortcode Class
268
  include_once( ALM_PATH . 'core/classes/class.alm-enqueue.php'); // Load Enqueue Class
278
  include( dirname( __FILE__ ) . '/vendor/EDD_SL_Plugin_Updater.php' );
279
  }
280
  }
281
+
282
  }
283
 
284
 
368
 
369
  // Callback Helpers
370
  wp_register_script( 'ajax-load-more-legacy-callbacks', plugins_url( '/vendor/js/alm/legacy-callbacks.js', __FILE__ ), 'jquery', '', false);
371
+
372
 
373
  // Core CSS
374
  if( !alm_do_inline_css('_alm_inline_css') && !alm_css_disabled('_alm_disable_css')){ // Not inline or disabled
378
 
379
  // Prevent loading of unnessasry posts - move user to top of page
380
  $scrolltop = (!isset($options['_alm_scroll_top']) || $options['_alm_scroll_top'] != '1') ? 'false' : 'true';
381
+
382
+
383
  // Localized JS variables
384
  wp_localize_script(
385
  'ajax-load-more',
396
  'alm_debug' => apply_filters('alm_debug', false)
397
  )
398
  );
399
+
400
  }
401
 
402
 
424
  public static function alm_return_shortcode_atts(){
425
  return self::$shortcode_atts;
426
  }
427
+
428
+
429
+
430
  /**
431
  * alm_query_posts
432
  * Core Ajax Load More Query
433
  *
434
  * @since 2.0.0
435
+ */
436
+ public function alm_query_posts() {
437
+
438
  // WPML fix for category/tag/taxonomy archives
439
  if ( (isset( $_GET['category'] ) && $_GET['category']) || (isset($_GET['taxonomy']) && $_GET['taxonomy']) || (isset($_GET['tag']) && $_GET['tag']) ) {
440
  unset($_REQUEST['post_id']);
441
  }
442
+
443
  $id = (isset($_GET['id'])) ? $_GET['id'] : '';
444
  $post_id = (isset($_GET['post_id'])) ? $_GET['post_id'] : '';
445
  $slug = (isset($_GET['slug'])) ? $_GET['slug'] : '';
446
  $canonical_url = (isset($_GET['canonical_url'])) ? esc_url($_GET['canonical_url']) : esc_url($_SERVER['HTTP_REFERER']);
447
+
448
+
449
  // Ajax Query Type
450
  $queryType = (isset($_GET['query_type'])) ? $_GET['query_type'] : 'standard'; // 'standard' or 'totalposts'; totalposts returns $alm_found_posts
451
+
452
+
453
  // Cache
454
  $cache_id = (isset($_GET['cache_id'])) ? $_GET['cache_id'] : '';
455
  $cache_logged_in = (isset($_GET['cache_logged_in'])) ? $_GET['cache_logged_in'] : false;
456
  $do_create_cache = ($cache_logged_in === 'true' && is_user_logged_in()) ? false : true;
457
+
458
+
459
  // Offset
460
  $offset = (isset($_GET['offset'])) ? $_GET['offset'] : 0;
461
+
462
+
463
  // Repeater Templates
464
  $repeater = (isset($_GET['repeater'])) ? $_GET['repeater'] : 'default';
465
  $type = alm_get_repeater_type($repeater);
466
  $theme_repeater = (isset($_GET['theme_repeater'])) ? $_GET['theme_repeater'] : 'null';
467
+
468
+
469
  // Post Type
470
  $postType = (isset($_GET['post_type'])) ? $_GET['post_type'] : 'post';
471
+
472
+
473
  // Page Parameters
474
  $posts_per_page = (isset($_GET['posts_per_page'])) ? $_GET['posts_per_page'] : 5;
475
  $page = (isset($_GET['page'])) ? $_GET['page'] : 0;
476
+
477
+
478
  // Advanced Custom Fields
479
  $acfData = (isset($_GET['acf'])) ? $_GET['acf'] : false;
480
  if($acfData){
483
  $acf_field_type = (isset($acfData['field_type'])) ? $acfData['field_type'] : ''; // ACF Field Type
484
  $acf_field_name = (isset($acfData['field_name'])) ? $acfData['field_name'] : ''; // ACF Field Type
485
  }
486
+
487
+
488
  // Paging Add-on
489
  $paging = (isset($_GET['paging'])) ? $_GET['paging'] : 'false';
490
+
491
+
492
  // Preload Add-on
493
  $preloaded = (isset($_GET['preloaded'])) ? $_GET['preloaded'] : 'false';
494
  $preloaded_amount = (isset($_GET['preloaded_amount'])) ? $_GET['preloaded_amount'] : '5';
497
  $old_offset = $preloaded_amount;
498
  $offset = $offset + $preloaded_amount;
499
  }
500
+
501
+
502
  // CTA Add-on
503
  $cta = false;
504
  $ctaData = (isset($_GET['cta'])) ? $_GET['cta'] : false;
512
  $cta_repeater = (isset($ctaData['cta_repeater'])) ? $ctaData['cta_repeater'] : 'null';
513
  $cta_theme_repeater = (isset($ctaData['cta_theme_repeater'])) ? $ctaData['cta_theme_repeater'] : 'null';
514
  }
515
+
516
+
517
  // Single Post Add-on
518
  $single_post = false;
519
  $single_post_data = (isset($_GET['single_post'])) ? $_GET['single_post'] : false;
522
  $single_post_id = (isset($single_post_data['id'])) ? $single_post_data['id'] : '';
523
  $single_post_slug = (isset($single_post_data['slug'])) ? $single_post_data['slug'] : '';
524
  }
525
+
526
+
527
  // SEO Add-on
528
  $seo_start_page = (isset($_GET['seo_start_page'])) ? $_GET['seo_start_page'] : 1;
529
+
530
+
531
  // Set up initial WP_Query $args
532
+ $args = ALM_QUERY_ARGS::alm_build_queryargs($_GET, true);
533
  $args['paged'] = (get_query_var('paged')) ? get_query_var('paged') : 1;
534
  $args['offset'] = $offset + ($posts_per_page*$page);
535
+
536
+
537
  // Get current page number for determining item number
538
  $alm_page_count = ($page == 0) ? 1 : $page + 1;
539
+
540
+
541
  /*
542
  * alm_single_post_args
543
  *
547
  * @return $args;
548
  */
549
  $args = ($single_post && has_action('alm_single_post_installed')) ? apply_filters('alm_single_post_args', $single_post_id, $postType) : $args;
550
+
551
+
552
+
553
  /*
554
  * alm_modify_query_args
555
  *
559
  * Deprecated 2.10
560
  */
561
  $args = apply_filters('alm_modify_query_args', $args, $slug); // ALM Core Filter Hook
562
+
563
+
564
+
565
  /*
566
  * alm_query_args_{id}
567
  *
570
  * @return $args;
571
  */
572
  $args = apply_filters('alm_query_args_'.$id, $args, $post_id); // ALM Core Filter Hook
573
+
574
+
575
+
576
  /*
577
  * Set custom `alm_action` parameter in the WP_Query
578
  * Value is accessed elsewhere for filters & hooks etc.
579
+ */
580
  $args['alm_query'] = ($single_post) ? 'single_posts' : 'alm';
581
+
582
+
583
+
584
  /*
585
  * WP_Query || ALM Query
586
  *
587
  * @return $alm_query;
588
  */
589
  $alm_query = new WP_Query( $args );
590
+
591
+
592
  // If preloaded, update our loop count and total posts
593
  if(has_action('alm_preload_installed') && $preloaded === 'true'){
594
  $alm_total_posts = $alm_query->found_posts - $offset + $preloaded_amount;
600
  $alm_total_posts = $alm_query->found_posts - $offset;
601
  $alm_loop_count = 0;
602
  }
603
+
604
+
605
+
606
  /*
607
  * alm_cache_create_dir
608
  *
613
  */
614
  if(!empty($cache_id) && has_action('alm_cache_create_dir') && $do_create_cache){
615
  apply_filters('alm_cache_create_dir', $cache_id, $canonical_url);
616
+ }
617
+
618
+
619
  if($queryType === 'standard'){
620
+
621
  /*
622
  * alm_debug
623
  *
626
  * @return $alm_query/false;
627
  */
628
  $debug = (apply_filters('alm_debug', false)) ? $args : false;
629
+
630
  // Run the loop
631
+
632
  if ($alm_query->have_posts()) {
633
+
634
  $alm_found_posts = $alm_total_posts;
635
  $alm_post_count = $alm_query->post_count;
636
  $alm_current = 0;
637
  $alm_has_cta = false;
638
+
639
  $cta_array = Array();
640
  if($cta && has_action('alm_cta_pos_array')){ // Build CTA Position Array
641
  $cta_array = apply_filters('alm_cta_pos_array', $seo_start_page, $page, $posts_per_page, $alm_post_count, $cta_val, $paging);
642
  }
643
+
644
  ob_start();
645
+
646
  // ALM Loop
647
  while ($alm_query->have_posts()): $alm_query->the_post();
648
+
649
  $alm_loop_count++;
650
  $alm_current++; // Current item in loop
651
  $alm_page = $alm_page_count; // Get page number
652
+ $alm_item = ($alm_page_count * $posts_per_page) - $posts_per_page + $alm_loop_count; // Get current item
653
+
654
  // Call to Action [Before]
655
  if($cta && has_action('alm_cta_inc') && $cta_pos === 'before' && in_array($alm_current, $cta_array)){
656
  do_action('alm_cta_inc', $cta_repeater, $cta_theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current, false);
657
  $alm_has_cta = true;
658
  }
659
+ // End Call to Action [Before]
660
+
661
  // Repeater Template
662
  if($theme_repeater != 'null' && has_action('alm_get_theme_repeater')){ // Theme Repeater
663
  do_action('alm_get_theme_repeater', $theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current);
665
  include(alm_get_current_repeater( $repeater, $type )); // Repeater
666
  }
667
  // End Repeater Template
668
+
669
  // Call to Action [After]
670
  if($cta && has_action('alm_cta_inc') && $cta_pos === 'after' && in_array($alm_current, $cta_array)){
671
  do_action('alm_cta_inc', $cta_repeater, $cta_theme_repeater, $alm_found_posts, $alm_page, $alm_item, $alm_current, false);
672
  $alm_has_cta = true;
673
  }
674
+ // End Call to Action [After]
675
+
676
  endwhile; wp_reset_query();
677
  // End ALM Loop
678
+
679
  $data = ob_get_clean();
680
+
681
+
682
  /*
683
  * alm_cache_file
684
  *
699
  // Standard Cache
700
  apply_filters('alm_cache_file', $cache_id, $page, $seo_start_page, $data, $preloaded);
701
  }
702
+ }
703
+
704
  $return = array(
705
  'html' => $data,
706
  'meta' => array(
710
  )
711
  );
712
  wp_send_json($return);
713
+
714
  } else {
715
+
716
  $return = array(
717
  'html' => null,
718
  'meta' => array(
721
  'debug' => $debug
722
  )
723
  );
724
+
725
  wp_send_json($return);
726
+
727
  }
728
+
729
  }
730
+
731
  elseif($queryType === 'totalposts'){ // Paging add-on
732
+
733
  // Paging add-on
734
  wp_send_json(array(
735
  'totalposts' => $alm_total_posts
736
  ));
737
+
738
  }
739
+
740
  wp_die();
741
+
742
+ }
743
 
744
  }
745
+
746
 
747
 
748
  /**
759
  }
760
  return $ajax_load_more;
761
  }
762
+
763
  AjaxLoadMore(); // initialize
764
+
765
+
766
 
767
  endif; // class_exists check
core/classes/class.alm-shortcode.php CHANGED
@@ -214,7 +214,8 @@ if( !class_exists('ALM_SHORTCODE') ):
214
  'id' => '',
215
  'primary' => false,
216
  'woocommerce' => false,
217
- 'no_results_text' => ''
 
218
  ), $atts));
219
 
220
 
@@ -443,9 +444,6 @@ if( !class_exists('ALM_SHORTCODE') ):
443
  */
444
  $ajaxloadmore .= apply_filters('alm_before_container', '');
445
 
446
- // Build Canonical URL
447
- $canonicalURL = apply_filters('alm_canonical_url', alm_get_canonical_url());
448
-
449
  // Generate ALM ID
450
  $div_id = (self::$counter > 1) ? 'ajax-load-more-'.self::$counter : 'ajax-load-more';
451
 
@@ -464,6 +462,9 @@ if( !class_exists('ALM_SHORTCODE') ):
464
  // Nested Instance
465
  $is_nested = ($nested === 'true') ? ' data-nested="true"' : '';
466
 
 
 
 
467
 
468
  // Start .alm-listing
469
  $ajaxloadmore .= '<div id="'. $div_id .'" class="ajax-load-more-wrap'. $alm_loading_style .''. $paging_color .''. $alm_layouts . $alm_tabs .'" '. $unique_id .' data-alm-id="" data-canonical-url="'. $canonicalURL .'" data-slug="'. $slug .'" data-post-id="'. $post_id .'" '. $is_search . $is_nested .' data-localized="'. alm_convert_dashes_to_underscore($localize_id) .'_vars' .'">';
@@ -936,7 +937,7 @@ if( !class_exists('ALM_SHORTCODE') ):
936
  $ajaxloadmore .= ($primary !== false) ? ' data-primary="true"' : '';
937
 
938
  $ajaxloadmore .= '>';
939
- // End .alm-listing
940
 
941
 
942
  // Preloaded
@@ -1005,7 +1006,11 @@ if( !class_exists('ALM_SHORTCODE') ):
1005
 
1006
 
1007
  // Close ALM container element
1008
- $ajaxloadmore .= '</'.$container_element.'>';
 
 
 
 
1009
 
1010
 
1011
  /*
@@ -1049,7 +1054,7 @@ if( !class_exists('ALM_SHORTCODE') ):
1049
 
1050
  // No results text
1051
  if($no_results_text !== '' && !empty($no_results_text)){
1052
- $ajaxloadmore .= '<div class="alm-no-results" style="display: none;">'. $no_results_text .'</div>';
1053
  }
1054
 
1055
 
@@ -1133,6 +1138,29 @@ if( !class_exists('ALM_SHORTCODE') ):
1133
  return $html;
1134
 
1135
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1136
 
1137
  }
1138
 
214
  'id' => '',
215
  'primary' => false,
216
  'woocommerce' => false,
217
+ 'no_results_text' => '',
218
+ 'placeholder' => ''
219
  ), $atts));
220
 
221
 
444
  */
445
  $ajaxloadmore .= apply_filters('alm_before_container', '');
446
 
 
 
 
447
  // Generate ALM ID
448
  $div_id = (self::$counter > 1) ? 'ajax-load-more-'.self::$counter : 'ajax-load-more';
449
 
462
  // Nested Instance
463
  $is_nested = ($nested === 'true') ? ' data-nested="true"' : '';
464
 
465
+ // Build Canonical URL
466
+ $canonicalURL = apply_filters('alm_canonical_url_'.$id, alm_get_canonical_url());
467
+
468
 
469
  // Start .alm-listing
470
  $ajaxloadmore .= '<div id="'. $div_id .'" class="ajax-load-more-wrap'. $alm_loading_style .''. $paging_color .''. $alm_layouts . $alm_tabs .'" '. $unique_id .' data-alm-id="" data-canonical-url="'. $canonicalURL .'" data-slug="'. $slug .'" data-post-id="'. $post_id .'" '. $is_search . $is_nested .' data-localized="'. alm_convert_dashes_to_underscore($localize_id) .'_vars' .'">';
937
  $ajaxloadmore .= ($primary !== false) ? ' data-primary="true"' : '';
938
 
939
  $ajaxloadmore .= '>';
940
+ // End .alm-listing data
941
 
942
 
943
  // Preloaded
1006
 
1007
 
1008
  // Close ALM container element
1009
+ $ajaxloadmore .= '</'.$container_element.'>';
1010
+
1011
+
1012
+ // Create Placeholder
1013
+ $ajaxloadmore .= self::alm_render_placeholder($placeholder, $paging);
1014
 
1015
 
1016
  /*
1054
 
1055
  // No results text
1056
  if($no_results_text !== '' && !empty($no_results_text)){
1057
+ $ajaxloadmore .= '<div class="alm-no-results" style="display: none;">'. html_entity_decode($no_results_text) .'</div>';
1058
  }
1059
 
1060
 
1138
  return $html;
1139
 
1140
  }
1141
+
1142
+
1143
+
1144
+ /**
1145
+ * alm_render_placeholder
1146
+ * Render a placeholder loader.
1147
+ *
1148
+ * @since 5.1.7
1149
+ * @return $html
1150
+ */
1151
+ public static function alm_render_placeholder($placeholder, $paging){
1152
+
1153
+ if(isset($placeholder) && !empty($placeholder) && $paging !== 'true'){
1154
+ $placeholder_url = ($placeholder === 'true') ? ALM_URL .'/core/img/placeholder.png' : $placeholder;
1155
+ if($placeholder_url){
1156
+ $html = '<div class="alm-placeholder"><img src="'. $placeholder_url .'" alt=""></div>';
1157
+ return $html;
1158
+ }
1159
+ }
1160
+
1161
+ }
1162
+
1163
+
1164
 
1165
  }
1166
 
core/classes/includes/preloaded.php CHANGED
@@ -1,6 +1,5 @@
1
  <?php
2
 
3
- // Preloaded
4
  // Get preloaded posts and append to alm object
5
 
6
 
@@ -204,20 +203,6 @@ else {
204
 
205
 
206
 
207
- /*
208
- * alm_filters_preloaded_args
209
- *
210
- * ALM Filters add-on Hook
211
- *
212
- * @return $args;
213
- */
214
-
215
- if($filters && has_action('alm_filters_preloaded_args')){
216
- // $args = apply_filters('alm_filters_preloaded_args', $args); // Create filters $args
217
- }
218
-
219
-
220
-
221
  /*
222
  * alm_modify_query_args
223
  *
1
  <?php
2
 
 
3
  // Get preloaded posts and append to alm object
4
 
5
 
203
 
204
 
205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  /*
207
  * alm_modify_query_args
208
  *
core/dist/css/ajax-load-more.css CHANGED
@@ -223,3 +223,9 @@
223
  left: 0;
224
  top: 0;
225
  border-radius: 2px; }
 
 
 
 
 
 
223
  left: 0;
224
  top: 0;
225
  border-radius: 2px; }
226
+
227
+ .alm-placeholder {
228
+ opacity: 0;
229
+ -webkit-transition: opacity 0.2s ease;
230
+ transition: opacity 0.2s ease;
231
+ display: none; }
core/dist/css/ajax-load-more.min.css CHANGED
@@ -1 +1 @@
1
- .alm-btn-wrap{display:block;text-align:center;padding:10px 0 25px;position:relative}.alm-btn-wrap:after{display:table;clear:both;height:0;width:100%;content:''}.alm-btn-wrap .alm-load-more-btn{font-size:15px;font-weight:600;width:auto;height:42px;line-height:42px;background:#ed7070;color:#fff;border:none;border-radius:4px;margin:0 0 4px;padding:0 20px;display:inline-block;position:relative;-webkit-transition:all .35s ease;transition:all .35s ease;text-align:center;text-decoration:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.alm-btn-wrap .alm-load-more-btn.loading,.alm-btn-wrap .alm-load-more-btn:hover{background-color:#e06464;color:#fff;text-decoration:none}.alm-btn-wrap .alm-load-more-btn:active{-webkit-box-shadow:inset 0 2px 1px rgba(0,0,0,.1);box-shadow:inset 0 2px 1px rgba(0,0,0,.1);text-decoration:none}.alm-btn-wrap .alm-load-more-btn.loading{cursor:default;outline:0;padding-left:44px}.alm-btn-wrap .alm-load-more-btn.done{cursor:default;opacity:.15;background-color:#ed7070;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important}.alm-btn-wrap .alm-load-more-btn.done:before,.alm-btn-wrap .alm-load-more-btn:before{background:0 0;width:0}.alm-btn-wrap .alm-load-more-btn.loading:before{background:#fff url(../../img/ajax-loader.gif) no-repeat center center;width:30px;height:30px;margin:6px;border-radius:3px;display:inline-block;z-index:0;content:'';position:absolute;left:0;top:0;overflow:hidden;-webkit-transition:width .5s ease-in-out;transition:width .5s ease-in-out}.alm-masonry{display:block;overflow:hidden;clear:both}.ajax-load-more-wrap.blue .alm-load-more-btn{background-color:#0081bf}.ajax-load-more-wrap.blue .alm-load-more-btn.done,.ajax-load-more-wrap.blue .alm-load-more-btn.loading,.ajax-load-more-wrap.blue .alm-load-more-btn:hover{background-color:#0073aa}.ajax-load-more-wrap.green .alm-load-more-btn{background-color:#6fca68}.ajax-load-more-wrap.green .alm-load-more-btn.done,.ajax-load-more-wrap.green .alm-load-more-btn.loading,.ajax-load-more-wrap.green .alm-load-more-btn:hover{background-color:#64b95e}.ajax-load-more-wrap.red .alm-load-more-btn{background-color:#ca4b4b}.ajax-load-more-wrap.red .alm-load-more-btn.done,.ajax-load-more-wrap.red .alm-load-more-btn.loading,.ajax-load-more-wrap.red .alm-load-more-btn:hover{background-color:#b13b3b}.ajax-load-more-wrap.purple .alm-load-more-btn{background-color:#a86bb9}.ajax-load-more-wrap.purple .alm-load-more-btn.done,.ajax-load-more-wrap.purple .alm-load-more-btn.loading,.ajax-load-more-wrap.purple .alm-load-more-btn:hover{background-color:#9963a8}.ajax-load-more-wrap.grey .alm-load-more-btn{background-color:#888}.ajax-load-more-wrap.grey .alm-load-more-btn.done,.ajax-load-more-wrap.grey .alm-load-more-btn.loading,.ajax-load-more-wrap.grey .alm-load-more-btn:hover{background-color:#777}.ajax-load-more-wrap.white .alm-load-more-btn{background-color:#fff;color:#666;border:1px solid #efefef}.ajax-load-more-wrap.white .alm-load-more-btn.done,.ajax-load-more-wrap.white .alm-load-more-btn.loading,.ajax-load-more-wrap.white .alm-load-more-btn:hover{background-color:#efefef;color:#333}.ajax-load-more-wrap.white .alm-load-more-btn.done{border-color:#fff}.ajax-load-more-wrap.infinite .alm-load-more-btn{width:100%;background-color:transparent!important;background-position:center center;background-repeat:no-repeat;background-image:url(../../img/spinner.gif);border:none!important;opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-box-shadow:none!important;box-shadow:none!important;overflow:hidden;text-indent:-9999px;cursor:default!important;outline:0!important}.ajax-load-more-wrap.infinite .alm-load-more-btn:before{display:none!important}.ajax-load-more-wrap.infinite .alm-load-more-btn:active,.ajax-load-more-wrap.infinite .alm-load-more-btn:focus{outline:0}.ajax-load-more-wrap.infinite .alm-load-more-btn.done{opacity:0}.ajax-load-more-wrap.infinite .alm-load-more-btn.loading{opacity:1}.ajax-load-more-wrap.infinite.skype .alm-load-more-btn{background-image:url(../../img/spinner-skype.gif)}.ajax-load-more-wrap.infinite.ring .alm-load-more-btn{background-image:url(../../img/spinner-ring.gif)}.ajax-load-more-wrap.infinite.fading-blocks .alm-load-more-btn{background-image:url(../../img/loader-fading-blocks.gif)}.ajax-load-more-wrap.infinite.fading-circles .alm-load-more-btn{background-image:url(../../img/loader-fading-circles.gif)}.ajax-load-more-wrap.infinite.chasing-arrows .alm-load-more-btn{background-image:url(../../img/spinner-chasing-arrows.gif)}.alm-listing{margin:0;padding:0}.alm-listing .alm-reveal{outline:0}.alm-listing .alm-reveal:after{display:table;clear:both;height:0;width:100%;content:''}.alm-listing .alm-paging-content>li,.alm-listing .alm-reveal>li,.alm-listing>li{background:0 0;margin:0 0 30px;padding:0 0 0 170px;overflow:hidden;position:relative;list-style:none}.alm-listing .alm-paging-content>li.no-img,.alm-listing .alm-reveal>li.no-img,.alm-listing>li.no-img{padding:0}.alm-listing .alm-paging-content>li p,.alm-listing .alm-reveal>li p,.alm-listing>li p{margin:0}.alm-listing .alm-paging-content>li p.entry-meta,.alm-listing .alm-reveal>li p.entry-meta,.alm-listing>li p.entry-meta{margin:0 0 5px;opacity:.75}.alm-listing .alm-paging-content>li h3,.alm-listing .alm-reveal>li h3,.alm-listing>li h3{margin:0 0 10px}.alm-listing .alm-paging-content>li img,.alm-listing .alm-reveal>li img,.alm-listing>li img{position:absolute;left:0;top:0;border-radius:2px}
1
+ .alm-btn-wrap{display:block;text-align:center;padding:10px 0 25px;position:relative}.alm-btn-wrap:after{display:table;clear:both;height:0;width:100%;content:''}.alm-btn-wrap .alm-load-more-btn{font-size:15px;font-weight:600;width:auto;height:42px;line-height:42px;background:#ed7070;color:#fff;border:none;border-radius:4px;margin:0 0 4px;padding:0 20px;display:inline-block;position:relative;-webkit-transition:all .35s ease;transition:all .35s ease;text-align:center;text-decoration:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.alm-btn-wrap .alm-load-more-btn.loading,.alm-btn-wrap .alm-load-more-btn:hover{background-color:#e06464;color:#fff;text-decoration:none}.alm-btn-wrap .alm-load-more-btn:active{-webkit-box-shadow:inset 0 2px 1px rgba(0,0,0,.1);box-shadow:inset 0 2px 1px rgba(0,0,0,.1);text-decoration:none}.alm-btn-wrap .alm-load-more-btn.loading{cursor:default;outline:0;padding-left:44px}.alm-btn-wrap .alm-load-more-btn.done{cursor:default;opacity:.15;background-color:#ed7070;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important}.alm-btn-wrap .alm-load-more-btn.done:before,.alm-btn-wrap .alm-load-more-btn:before{background:0 0;width:0}.alm-btn-wrap .alm-load-more-btn.loading:before{background:#fff url(../../img/ajax-loader.gif) no-repeat center center;width:30px;height:30px;margin:6px;border-radius:3px;display:inline-block;z-index:0;content:'';position:absolute;left:0;top:0;overflow:hidden;-webkit-transition:width .5s ease-in-out;transition:width .5s ease-in-out}.alm-masonry{display:block;overflow:hidden;clear:both}.ajax-load-more-wrap.blue .alm-load-more-btn{background-color:#0081bf}.ajax-load-more-wrap.blue .alm-load-more-btn.done,.ajax-load-more-wrap.blue .alm-load-more-btn.loading,.ajax-load-more-wrap.blue .alm-load-more-btn:hover{background-color:#0073aa}.ajax-load-more-wrap.green .alm-load-more-btn{background-color:#6fca68}.ajax-load-more-wrap.green .alm-load-more-btn.done,.ajax-load-more-wrap.green .alm-load-more-btn.loading,.ajax-load-more-wrap.green .alm-load-more-btn:hover{background-color:#64b95e}.ajax-load-more-wrap.red .alm-load-more-btn{background-color:#ca4b4b}.ajax-load-more-wrap.red .alm-load-more-btn.done,.ajax-load-more-wrap.red .alm-load-more-btn.loading,.ajax-load-more-wrap.red .alm-load-more-btn:hover{background-color:#b13b3b}.ajax-load-more-wrap.purple .alm-load-more-btn{background-color:#a86bb9}.ajax-load-more-wrap.purple .alm-load-more-btn.done,.ajax-load-more-wrap.purple .alm-load-more-btn.loading,.ajax-load-more-wrap.purple .alm-load-more-btn:hover{background-color:#9963a8}.ajax-load-more-wrap.grey .alm-load-more-btn{background-color:#888}.ajax-load-more-wrap.grey .alm-load-more-btn.done,.ajax-load-more-wrap.grey .alm-load-more-btn.loading,.ajax-load-more-wrap.grey .alm-load-more-btn:hover{background-color:#777}.ajax-load-more-wrap.white .alm-load-more-btn{background-color:#fff;color:#666;border:1px solid #efefef}.ajax-load-more-wrap.white .alm-load-more-btn.done,.ajax-load-more-wrap.white .alm-load-more-btn.loading,.ajax-load-more-wrap.white .alm-load-more-btn:hover{background-color:#efefef;color:#333}.ajax-load-more-wrap.white .alm-load-more-btn.done{border-color:#fff}.ajax-load-more-wrap.infinite .alm-load-more-btn{width:100%;background-color:transparent!important;background-position:center center;background-repeat:no-repeat;background-image:url(../../img/spinner.gif);border:none!important;opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-box-shadow:none!important;box-shadow:none!important;overflow:hidden;text-indent:-9999px;cursor:default!important;outline:0!important}.ajax-load-more-wrap.infinite .alm-load-more-btn:before{display:none!important}.ajax-load-more-wrap.infinite .alm-load-more-btn:active,.ajax-load-more-wrap.infinite .alm-load-more-btn:focus{outline:0}.ajax-load-more-wrap.infinite .alm-load-more-btn.done{opacity:0}.ajax-load-more-wrap.infinite .alm-load-more-btn.loading{opacity:1}.ajax-load-more-wrap.infinite.skype .alm-load-more-btn{background-image:url(../../img/spinner-skype.gif)}.ajax-load-more-wrap.infinite.ring .alm-load-more-btn{background-image:url(../../img/spinner-ring.gif)}.ajax-load-more-wrap.infinite.fading-blocks .alm-load-more-btn{background-image:url(../../img/loader-fading-blocks.gif)}.ajax-load-more-wrap.infinite.fading-circles .alm-load-more-btn{background-image:url(../../img/loader-fading-circles.gif)}.ajax-load-more-wrap.infinite.chasing-arrows .alm-load-more-btn{background-image:url(../../img/spinner-chasing-arrows.gif)}.alm-listing{margin:0;padding:0}.alm-listing .alm-reveal{outline:0}.alm-listing .alm-reveal:after{display:table;clear:both;height:0;width:100%;content:''}.alm-listing .alm-paging-content>li,.alm-listing .alm-reveal>li,.alm-listing>li{background:0 0;margin:0 0 30px;padding:0 0 0 170px;overflow:hidden;position:relative;list-style:none}.alm-listing .alm-paging-content>li.no-img,.alm-listing .alm-reveal>li.no-img,.alm-listing>li.no-img{padding:0}.alm-listing .alm-paging-content>li p,.alm-listing .alm-reveal>li p,.alm-listing>li p{margin:0}.alm-listing .alm-paging-content>li p.entry-meta,.alm-listing .alm-reveal>li p.entry-meta,.alm-listing>li p.entry-meta{margin:0 0 5px;opacity:.75}.alm-listing .alm-paging-content>li h3,.alm-listing .alm-reveal>li h3,.alm-listing>li h3{margin:0 0 10px}.alm-listing .alm-paging-content>li img,.alm-listing .alm-reveal>li img,.alm-listing>li img{position:absolute;left:0;top:0;border-radius:2px}.alm-placeholder{opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;display:none}
core/dist/js/ajax-load-more.js CHANGED
@@ -188,6 +188,8 @@ var _srcsetPolyfill = __webpack_require__(/*! ./helpers/srcsetPolyfill */ "./cor
188
 
189
  var _srcsetPolyfill2 = _interopRequireDefault(_srcsetPolyfill);
190
 
 
 
191
  function _interopRequireWildcard(obj) {
192
  if (obj && obj.__esModule) {
193
  return obj;
@@ -318,6 +320,7 @@ var alm_is_filtering = false;
318
 
319
  alm.button_label = alm.listing.dataset.buttonLabel;
320
  alm.button_loading_label = alm.listing.dataset.buttonLoadingLabel;
 
321
 
322
  alm.scroll_distance = alm.listing.dataset.scrollDistance;
323
  alm.scroll_distance = alm.scroll_distance ? parseInt(alm.scroll_distance) : 100;
@@ -701,6 +704,8 @@ var alm_is_filtering = false;
701
  window.almOnChange(alm);
702
  }
703
 
 
 
704
  if (!alm.disable_ajax) {
705
  // Check for ajax blocker
706
  if (!alm.addons.paging) {
@@ -1326,16 +1331,18 @@ var alm_is_filtering = false;
1326
  if (alm.images_loaded === 'true') {
1327
  imagesLoaded(reveal, function () {
1328
  (0, _almAppendChildren2.default)(alm.listing, reveal);
 
1329
  // Run srcSet polyfill
1330
  (0, _srcsetPolyfill2.default)(alm.listing, alm.ua);
1331
  });
1332
  } else {
1333
  (0, _almAppendChildren2.default)(alm.listing, reveal);
 
1334
  // Run srcSet polyfill
1335
  (0, _srcsetPolyfill2.default)(alm.listing, alm.ua);
1336
  }
1337
  } else {
1338
- // Standard container
1339
  alm.listing.appendChild(reveal);
1340
  }
1341
  }
@@ -1455,7 +1462,9 @@ var alm_is_filtering = false;
1455
 
1456
  // almFiltersOnload [Filters Add-on hook]
1457
  if (typeof almFiltersOnload === 'function' && alm.init) {
1458
- window.almFiltersOnload(alm);
 
 
1459
  }
1460
 
1461
  // ALM Complete / Nested
@@ -1808,13 +1817,14 @@ var alm_is_filtering = false;
1808
  alm.AjaxLoadMore.resetBtnText();
1809
  }
1810
 
 
1811
  if (error.response) {
1812
  // The request was made and the server responded with a status code
1813
  // that falls out of the range of 2xx
1814
  //console.log(error.response.data);
1815
  //console.log(error.response.status);
1816
  //console.log(error.response.headers);
1817
- console.log('Error: ', error.message);
1818
  } else if (error.request) {
1819
  // The request was made but no response was received
1820
  // `error.request` is an instance of XMLHttpRequest in the browser and an instance of
@@ -1822,7 +1832,7 @@ var alm_is_filtering = false;
1822
  console.log(error.request);
1823
  } else {
1824
  // Something happened in setting up the request that triggered an Error
1825
- console.log('Error: ', error.message);
1826
  }
1827
 
1828
  if (location) {
@@ -2006,11 +2016,11 @@ var alm_is_filtering = false;
2006
  alm.AjaxLoadMore.triggerAddons(alm);
2007
  if (!alm.addons.paging) {
2008
  setTimeout(function () {
2009
-
2010
  alm.loading = false; // Delay to prevent loading to fast
2011
  }, alm.speed * 3);
2012
  }
2013
  }, 100);
 
2014
  };
2015
 
2016
  /**
@@ -4189,6 +4199,58 @@ exports.default = almNoResults;
4189
 
4190
  /***/ }),
4191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4192
  /***/ "./core/src/js/modules/resultsText.js":
4193
  /*!********************************************!*\
4194
  !*** ./core/src/js/modules/resultsText.js ***!
188
 
189
  var _srcsetPolyfill2 = _interopRequireDefault(_srcsetPolyfill);
190
 
191
+ var _placeholder = __webpack_require__(/*! ./modules/placeholder */ "./core/src/js/modules/placeholder.js");
192
+
193
  function _interopRequireWildcard(obj) {
194
  if (obj && obj.__esModule) {
195
  return obj;
320
 
321
  alm.button_label = alm.listing.dataset.buttonLabel;
322
  alm.button_loading_label = alm.listing.dataset.buttonLoadingLabel;
323
+ alm.placeholder = alm.main.querySelector('.alm-placeholder');
324
 
325
  alm.scroll_distance = alm.listing.dataset.scrollDistance;
326
  alm.scroll_distance = alm.scroll_distance ? parseInt(alm.scroll_distance) : 100;
704
  window.almOnChange(alm);
705
  }
706
 
707
+ (0, _placeholder.showPlaceholder)(alm);
708
+
709
  if (!alm.disable_ajax) {
710
  // Check for ajax blocker
711
  if (!alm.addons.paging) {
1331
  if (alm.images_loaded === 'true') {
1332
  imagesLoaded(reveal, function () {
1333
  (0, _almAppendChildren2.default)(alm.listing, reveal);
1334
+
1335
  // Run srcSet polyfill
1336
  (0, _srcsetPolyfill2.default)(alm.listing, alm.ua);
1337
  });
1338
  } else {
1339
  (0, _almAppendChildren2.default)(alm.listing, reveal);
1340
+
1341
  // Run srcSet polyfill
1342
  (0, _srcsetPolyfill2.default)(alm.listing, alm.ua);
1343
  }
1344
  } else {
1345
+ // Standard container
1346
  alm.listing.appendChild(reveal);
1347
  }
1348
  }
1462
 
1463
  // almFiltersOnload [Filters Add-on hook]
1464
  if (typeof almFiltersOnload === 'function' && alm.init) {
1465
+ setTimeout(function () {
1466
+ window.almFiltersOnload(alm);
1467
+ }, parseInt(alm.speed) + 25);
1468
  }
1469
 
1470
  // ALM Complete / Nested
1817
  alm.AjaxLoadMore.resetBtnText();
1818
  }
1819
 
1820
+ console.log('Error: ', error);
1821
  if (error.response) {
1822
  // The request was made and the server responded with a status code
1823
  // that falls out of the range of 2xx
1824
  //console.log(error.response.data);
1825
  //console.log(error.response.status);
1826
  //console.log(error.response.headers);
1827
+ console.log('Error Msg: ', error.message);
1828
  } else if (error.request) {
1829
  // The request was made but no response was received
1830
  // `error.request` is an instance of XMLHttpRequest in the browser and an instance of
1832
  console.log(error.request);
1833
  } else {
1834
  // Something happened in setting up the request that triggered an Error
1835
+ console.log('Error Msg: ', error.message);
1836
  }
1837
 
1838
  if (location) {
2016
  alm.AjaxLoadMore.triggerAddons(alm);
2017
  if (!alm.addons.paging) {
2018
  setTimeout(function () {
 
2019
  alm.loading = false; // Delay to prevent loading to fast
2020
  }, alm.speed * 3);
2021
  }
2022
  }, 100);
2023
+ (0, _placeholder.hidePlaceholder)(alm);
2024
  };
2025
 
2026
  /**
4199
 
4200
  /***/ }),
4201
 
4202
+ /***/ "./core/src/js/modules/placeholder.js":
4203
+ /*!********************************************!*\
4204
+ !*** ./core/src/js/modules/placeholder.js ***!
4205
+ \********************************************/
4206
+ /*! no static exports found */
4207
+ /***/ (function(module, exports, __webpack_require__) {
4208
+
4209
+ "use strict";
4210
+
4211
+
4212
+ Object.defineProperty(exports, "__esModule", {
4213
+ value: true
4214
+ });
4215
+ exports.showPlaceholder = showPlaceholder;
4216
+ exports.hidePlaceholder = hidePlaceholder;
4217
+
4218
+ var _fadeIn = __webpack_require__(/*! ./fadeIn */ "./core/src/js/modules/fadeIn.js");
4219
+
4220
+ var _fadeIn2 = _interopRequireDefault(_fadeIn);
4221
+
4222
+ var _fadeOut = __webpack_require__(/*! ./fadeOut */ "./core/src/js/modules/fadeOut.js");
4223
+
4224
+ var _fadeOut2 = _interopRequireDefault(_fadeOut);
4225
+
4226
+ function _interopRequireDefault(obj) {
4227
+ return obj && obj.__esModule ? obj : { default: obj };
4228
+ }
4229
+
4230
+ function showPlaceholder(alm) {
4231
+ if (!alm || !alm.main || alm.addons.paging) {
4232
+ return false;
4233
+ }
4234
+ if (alm.placeholder) {
4235
+ alm.placeholder.style.display = 'block';
4236
+ (0, _fadeIn2.default)(alm.placeholder, 75);
4237
+ }
4238
+ }
4239
+
4240
+ function hidePlaceholder(alm) {
4241
+ if (!alm || !alm.main || alm.addons.paging) {
4242
+ return false;
4243
+ }
4244
+ if (alm.placeholder) {
4245
+ (0, _fadeOut2.default)(alm.placeholder, 75);
4246
+ setTimeout(function () {
4247
+ alm.placeholder.style.display = 'none';
4248
+ }, 75);
4249
+ }
4250
+ }
4251
+
4252
+ /***/ }),
4253
+
4254
  /***/ "./core/src/js/modules/resultsText.js":
4255
  /*!********************************************!*\
4256
  !*** ./core/src/js/modules/resultsText.js ***!
core/dist/js/ajax-load-more.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack://ajaxloadmore/webpack/bootstrap","webpack://ajaxloadmore/./core/src/js/ajax-load-more.js","webpack://ajaxloadmore/./core/src/js/helpers/almAppendChild.js","webpack://ajaxloadmore/./core/src/js/helpers/almAppendChildren.js","webpack://ajaxloadmore/./core/src/js/helpers/almDomParser.js","webpack://ajaxloadmore/./core/src/js/helpers/almGetCacheUrl.js","webpack://ajaxloadmore/./core/src/js/helpers/almTableWrap.js","webpack://ajaxloadmore/./core/src/js/helpers/commentReplyFix.js","webpack://ajaxloadmore/./core/src/js/helpers/getParameterByName.js","webpack://ajaxloadmore/./core/src/js/helpers/helpers.js","webpack://ajaxloadmore/./core/src/js/helpers/polyfills.js","webpack://ajaxloadmore/./core/src/js/helpers/queryParams.js","webpack://ajaxloadmore/./core/src/js/helpers/srcsetPolyfill.js","webpack://ajaxloadmore/./core/src/js/helpers/stripEmptyNodes.js","webpack://ajaxloadmore/./core/src/js/modules/almDebug.js","webpack://ajaxloadmore/./core/src/js/modules/fadeIn.js","webpack://ajaxloadmore/./core/src/js/modules/fadeOut.js","webpack://ajaxloadmore/./core/src/js/modules/filtering.js","webpack://ajaxloadmore/./core/src/js/modules/insertScript.js","webpack://ajaxloadmore/./core/src/js/modules/masonry.js","webpack://ajaxloadmore/./core/src/js/modules/noResults.js","webpack://ajaxloadmore/./core/src/js/modules/resultsText.js","webpack://ajaxloadmore/./core/src/js/modules/setFocus.js","webpack://ajaxloadmore/./core/src/js/modules/setLocalizedVars.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/lib/noConflict.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/noConflict.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/es6/index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/array/includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/entries.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/get-own-property-descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/values.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/promise/finally.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/string/pad-end.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/string/pad-start.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/symbol/async-iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_a-function.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_a-number-value.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_add-to-unscopables.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_advance-string-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_an-instance.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_an-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-copy-within.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-fill.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-methods.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-reduce.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-species-constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-species-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_bind.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_classof.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_cof.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection-strong.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection-weak.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_core.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_create-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_ctx.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_date-to-iso-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_date-to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_defined.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_dom-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_enum-bug-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_enum-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_export.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fails-is-regexp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fails.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fix-re-wks.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_flags.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_for-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_function-to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_global.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_has.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_hide.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_html.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_ie8-dom-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_inherit-if-required.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_invoke.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iobject.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-array-iter.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-regexp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-call.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-detect.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-step.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iterators.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_library.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-expm1.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-fround.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-log1p.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-sign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_meta.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_microtask.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_new-promise-capability.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-assign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-dp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-dps.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopd.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopn-ext.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopn.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gops.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gpo.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-keys-internal.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-pie.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-sap.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-to-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_own-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_perform.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_promise-resolve.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_property-desc.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_redefine-all.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_redefine.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_regexp-exec-abstract.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_regexp-exec.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_same-value.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-proto.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-species.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-to-string-tag.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_shared-key.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_shared.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_species-constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_strict-method.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-at.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-context.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-html.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-pad.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-repeat.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-trim.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-ws.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_task.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-absolute-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-iobject.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-length.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed-buffer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_uid.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_user-agent.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_validate-collection.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks-ext.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/core.get-iterator-method.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.copy-within.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.every.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.fill.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.filter.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.find-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.find.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.for-each.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.from.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.index-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.is-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.join.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.last-index-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.reduce-right.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.reduce.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.slice.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.some.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.sort.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.species.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.now.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-iso-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-json.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.bind.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.has-instance.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.name.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.acosh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.asinh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.atanh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.cbrt.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.clz32.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.cosh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.expm1.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.fround.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.hypot.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.imul.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log10.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log1p.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log2.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.sign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.sinh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.tanh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.trunc.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.epsilon.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-finite.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-nan.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.max-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.min-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.to-fixed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.to-precision.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.assign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.define-properties.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.define-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.freeze.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-own-property-names.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-extensible.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-frozen.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-sealed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.prevent-extensions.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.seal.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.set-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.promise.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.apply.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.construct.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.define-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.delete-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.enumerate.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.has.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.is-extensible.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.own-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.prevent-extensions.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.set-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.exec.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.flags.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.match.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.replace.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.search.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.split.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.anchor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.big.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.blink.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.bold.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.code-point-at.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.ends-with.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fixed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fontcolor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fontsize.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.from-code-point.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.italics.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.link.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.raw.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.repeat.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.small.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.starts-with.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.strike.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.sub.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.sup.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.trim.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.symbol.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.array-buffer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.data-view.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.float32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.float64-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int16-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int8-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint16-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint8-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.weak-map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.weak-set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.array.includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.entries.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.values.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.promise.finally.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.string.pad-end.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.string.pad-start.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.symbol.async-iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.dom.iterable.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.immediate.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.timers.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/web/index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/regenerator-runtime/runtime.js","webpack://ajaxloadmore/./node_modules/axios/index.js","webpack://ajaxloadmore/./node_modules/axios/lib/adapters/xhr.js","webpack://ajaxloadmore/./node_modules/axios/lib/axios.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/Cancel.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/CancelToken.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/isCancel.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/Axios.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/InterceptorManager.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/createError.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/dispatchRequest.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/enhanceError.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/settle.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/transformData.js","webpack://ajaxloadmore/./node_modules/axios/lib/defaults.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/bind.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/btoa.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/buildURL.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/combineURLs.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/cookies.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/parseHeaders.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/spread.js","webpack://ajaxloadmore/./node_modules/axios/lib/utils.js","webpack://ajaxloadmore/./node_modules/ev-emitter/ev-emitter.js","webpack://ajaxloadmore/./node_modules/imagesloaded/imagesloaded.js","webpack://ajaxloadmore/./node_modules/is-buffer/index.js","webpack://ajaxloadmore/./node_modules/process/browser.js","webpack://ajaxloadmore/./node_modules/qs/lib/formats.js","webpack://ajaxloadmore/./node_modules/qs/lib/index.js","webpack://ajaxloadmore/./node_modules/qs/lib/parse.js","webpack://ajaxloadmore/./node_modules/qs/lib/stringify.js","webpack://ajaxloadmore/./node_modules/qs/lib/utils.js","webpack://ajaxloadmore/./node_modules/smoothscroll-polyfill/dist/smoothscroll.js"],"names":["queryParams","resultsText","require","qs","imagesLoaded","smoothscroll","alm_is_filtering","ajaxloadmore","alm_localize","window","alm","el","alm_no_results","Array","parseInt","page","setTimeout","almChildren","almChildArray","btnWrap","element","container","document","cache_page","axios","response","action","acf_parent_field_name","nextpage_startpage","single_post_slug","comments_callback","usersOrderby","cta_theme_repeater","config","arrayFormat","encode","ajaxURL","params","data","queryType","alm_rest_url","post_id","template","tab_template","results","html","obj","alm_rest_template","wp","meta","postcount","totalposts","i","result","console","isPaged","reveal","pagingContent","total","pagenum","querystring","seo_class","filters_class","preloaded_class","return_data","container_array","posts_per_page","pages","Math","k","p","alm_reveal","p2","insertScript","currentPage","classes","content","loader","styles","pTop","pBtm","h","nested","id","initial_id","order","taxonomy","excluded_terms","post_type","init","location","error","button","e","resize","clearTimeout","trigger","btnPos","scrollTrigger","scrollInstance","scrollHeight","scrollPosition","direction","code","name","value","query","vars","pair","decodeURIComponent","alm_nextpage_pages","alm_nextpage_total","target","alm_instances","filter","transition","speed","tab","url","tracking","gtag","path","ga","__gaTracker","start","almScroll","top","behavior","getOffset","rect","scrollLeft","scrollTop","left","render","options","nodeNameArray","almAppendChild","almAppendChildren","array","almDomParser","type","parser","almGetCacheUrl","cache_url","ext","firstpage","nextpage_cache_url","almTableWrap","table_reveal","table_reveal_array","commentReplyFix","listing","replyLinks","link","commId","parentId","respondId","postId","follow","event","getParameterByName","regex","Object","ownProps","resArray","toStr","isCallable","toInteger","number","Number","isNaN","isFinite","maxSafeInteger","toLength","len","C","items","arrayLike","mapFn","arguments","T","A","kValue","NodeList","thisArg","callback","arr","item","configurable","enumerable","writable","Element","CharacterData","DocumentType","Function","aArgs","fToBind","FNOP","fBound","ObjectProto","defineGetter","defineSetter","lookupGetter","lookupSetter","hasOwnProp","prop","descriptor","getter","setter","props","propDescriptor","get","that","attributes","attsLength","toUpperCase","n0","HTML5_DOMStringMap","attribute","attrVal","attrName","propName","set","almGetAjaxParams","almGetRestParams","slug","canonical_url","encodeURIComponent","offset","repeater","seo_start_page","start_page","post_format","category","category__not_in","tag","tag__not_in","taxonomy_terms","taxonomy_operator","taxonomy_relation","meta_key","meta_value","meta_compare","meta_relation","meta_type","author","year","month","day","post_status","orderby","post__in","post__not_in","search","s","custom_args","lang","preloaded","preloaded_amount","srcsetPolyfill","ua","imgs","img","stripEmptyNodes","nodes","node","almDebug","almFadeIn","op","timer","clearInterval","almFadeOut","fadeEffect","almFilter","almFilterTransition","new_el","almCompleteFilterTransition","paging","almSetFilters","key","almFilterComplete","almFiltersAddonComplete","almTabsComplete","children","replace","isScript","clone","script","msnry","almMasonry","selector","columnWidth","animation","horizontalOrder","masonry_init","duration","hidden","visible","defaults","itemSelector","transitionDuration","hiddenStyle","transform","opacity","visibleStyle","alm_masonry_vars","almNoResults","almResultsText","almGetResultsText","almInitResultsText","resultsType","current","almRenderResultsText","text","setFocus","parent","scrollContainer","x","y","setLocalizedVars"],"mappings":"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A;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC,qBAAqB;AACrB,0BAA0B;AAC1B,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;;;;;;;;;;;;AC/Ia;AACb,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,cAAc,mBAAO,CAAC,qFAAS;AAC/B,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,YAAY,mBAAO,CAAC,yFAAW;AAC/B,wBAAwB,mBAAO,CAAC,uGAAkB;AAClD,WAAW,mBAAO,CAAC,mFAAQ;AAC3B,eAAe,mBAAO,CAAC,mHAAwB;AAC/C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,qBAAqB;AACrB,qBAAqB;AACrB,0BAA0B;AAC1B;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;;ACpFa;AACb,aAAa,mBAAO,CAAC,yFAAW;AAChC,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,6FAAa;AACpC,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,WAAW,mBAAO,CAAC,qFAAS;AAC5B,YAAY,mBAAO,CAAC,yFAAW;AAC/B,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,eAAe,mBAAO,CAAC,+FAAc;AACrC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD,wBAAwB,mBAAO,CAAC,mHAAwB;;AAExD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA,OAAO,mCAAmC,gCAAgC,aAAa;AACvF,8BAA8B,mCAAmC,aAAa;AAC9E;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,qDAAqD;AACrD;AACA,kDAAkD,iBAAiB,EAAE;AACrE;AACA,wDAAwD,aAAa,EAAE,EAAE;AACzE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;;;;;;;;;;;;ACpFA,6BAA6B;AAC7B,uCAAuC;;;;;;;;;;;;;ACD1B;AACb,sBAAsB,mBAAO,CAAC,+FAAc;AAC5C,iBAAiB,mBAAO,CAAC,uGAAkB;;AAE3C;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACnBa;AACb;AACA,YAAY,mBAAO,CAAC,uFAAU;AAC9B;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACzBY;AACb,eAAe,mBAAO,CAAC,+FAAc;AACrC,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C;;AAEA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA,kBAAkB,mBAAO,CAAC,uFAAU;AACpC,iCAAiC,QAAQ,mBAAmB,UAAU,EAAE,EAAE;AAC1E,CAAC;;;;;;;;;;;;ACHD,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,yFAAW;AAClC;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA,cAAc,mBAAO,CAAC,mGAAgB;AACtC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,UAAU,mBAAO,CAAC,iGAAe;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACdA,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,WAAW,mBAAO,CAAC,qFAAS;AAC5B,eAAe,mBAAO,CAAC,6FAAa;AACpC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kFAAkF,uBAAuB;AACzG,iEAAiE;AACjE,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,eAAe;AACf,eAAe;AACf,eAAe;AACf,gBAAgB;AAChB;;;;;;;;;;;;AC1CA,YAAY,mBAAO,CAAC,mFAAQ;AAC5B;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,KAAK,YAAY;AACjB,GAAG;AACH;;;;;;;;;;;;ACXA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;;;;;ACNa;AACb,mBAAO,CAAC,yGAAmB;AAC3B,eAAe,mBAAO,CAAC,6FAAa;AACpC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,YAAY,mBAAO,CAAC,uFAAU;AAC9B,cAAc,mBAAO,CAAC,2FAAY;AAClC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,iBAAiB,mBAAO,CAAC,mGAAgB;;AAEzC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA,yBAAyB,4CAA4C;AACrE;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA;AACA,6BAA6B,UAAU;AACvC;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,2BAA2B,mBAAmB,aAAa;AAC3D;AACA;AACA;AACA;AACA,6CAA6C,WAAW;AACxD;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,gCAAgC,qCAAqC;AACrE;AACA;AACA,2BAA2B,gCAAgC;AAC3D;AACA;AACA;;;;;;;;;;;;;AC/Fa;AACb;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,WAAW,mBAAO,CAAC,+FAAc;AACjC,kBAAkB,mBAAO,CAAC,uGAAkB;AAC5C,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,2HAA4B;AACpD;AACA;AACA;AACA,uCAAuC,iBAAiB,EAAE;AAC1D;AACA;AACA;AACA;AACA;AACA,mEAAmE,gBAAgB;AACnF;AACA;AACA,GAAG,4CAA4C,gCAAgC;AAC/E;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACxBA,iBAAiB,mBAAO,CAAC,yFAAW;;;;;;;;;;;;ACApC;AACA;AACA;AACA;AACA;AACA,yCAAyC;;;;;;;;;;;;ACLzC,uBAAuB;AACvB;AACA;AACA;;;;;;;;;;;;ACHA,SAAS,mBAAO,CAAC,+FAAc;AAC/B,iBAAiB,mBAAO,CAAC,uGAAkB;AAC3C,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC;AACA,CAAC;AACD;AACA;AACA;;;;;;;;;;;;ACPA,eAAe,mBAAO,CAAC,yFAAW;AAClC;;;;;;;;;;;;ACDA,kBAAkB,mBAAO,CAAC,mGAAgB,MAAM,mBAAO,CAAC,uFAAU;AAClE,+BAA+B,mBAAO,CAAC,iGAAe,gBAAgB,mBAAmB,UAAU,EAAE,EAAE;AACvG,CAAC;;;;;;;;;;;;ACFD,eAAe,mBAAO,CAAC,+FAAc;AACrC,qBAAqB,mBAAO,CAAC,+FAAc;AAC3C;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACfA;AACA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA,gBAAgB,mBAAO,CAAC,+FAAc;AACtC,eAAe,mBAAO,CAAC,mFAAQ;AAC/B;;AAEA;AACA;AACA;;;;;;;;;;;;ACPA;AACA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;AACA;AACA;;;;;;;;;;;;ACJA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;;;;;;;;;;;;ACFA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,YAAY,mBAAO,CAAC,mFAAQ;AAC5B;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACXa;AACb,aAAa,mBAAO,CAAC,uGAAkB;AACvC,iBAAiB,mBAAO,CAAC,uGAAkB;AAC3C,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD;;AAEA;AACA,mBAAO,CAAC,qFAAS,qBAAqB,mBAAO,CAAC,mFAAQ,4BAA4B,aAAa,EAAE;;AAEjG;AACA,qDAAqD,4BAA4B;AACjF;AACA;;;;;;;;;;;;;ACZa;AACb,cAAc,mBAAO,CAAC,2FAAY;AAClC,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,6FAAa;AACpC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,gBAAgB,mBAAO,CAAC,+FAAc;AACtC,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD,qBAAqB,mBAAO,CAAC,iGAAe;AAC5C,eAAe,mBAAO,CAAC,mFAAQ;AAC/B,8CAA8C;AAC9C;AACA;AACA;;AAEA,8BAA8B,aAAa;;AAE3C;AACA;AACA;AACA;AACA;AACA,yCAAyC,oCAAoC;AAC7E,6CAA6C,oCAAoC;AACjF,KAAK,4BAA4B,oCAAoC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,mBAAmB;AACnC;AACA;AACA,kCAAkC,2BAA2B;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;ACpEA,eAAe,mBAAO,CAAC,mFAAQ;AAC/B;;AAEA;AACA;AACA,iCAAiC,qBAAqB;AACtD;AACA,iCAAiC,SAAS,EAAE;AAC5C,CAAC,YAAY;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,SAAS,qBAAqB;AAC3D,iCAAiC,aAAa;AAC9C;AACA,GAAG,YAAY;AACf;AACA;;;;;;;;;;;;ACrBA;AACA,UAAU;AACV;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACTD;AACA,WAAW,mBAAO,CAAC,+FAAc;AACjC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACtBA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA,WAAW,mBAAO,CAAC,mFAAQ;AAC3B,eAAe,mBAAO,CAAC,+FAAc;AACrC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,cAAc,mBAAO,CAAC,+FAAc;AACpC;AACA;AACA;AACA;AACA,cAAc,mBAAO,CAAC,uFAAU;AAChC,iDAAiD;AACjD,CAAC;AACD;AACA,qBAAqB;AACrB;AACA,SAAS;AACT,GAAG,EAAE;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpDA,aAAa,mBAAO,CAAC,yFAAW;AAChC,gBAAgB,mBAAO,CAAC,qFAAS;AACjC;AACA;AACA;AACA,aAAa,mBAAO,CAAC,mFAAQ;;AAE7B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,uCAAuC,sBAAsB,EAAE;AAC/D;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;;;;;;;;;;;;ACpEa;AACb;AACA,gBAAgB,mBAAO,CAAC,iGAAe;;AAEvC;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;;ACjBa;AACb;AACA,cAAc,mBAAO,CAAC,mGAAgB;AACtC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,UAAU,mBAAO,CAAC,iGAAe;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,2FAAY;AAClC;;AAEA;AACA,6BAA6B,mBAAO,CAAC,uFAAU;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,UAAU,EAAE;AAChD,mBAAmB,sCAAsC;AACzD,CAAC,qCAAqC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,CAAC;;;;;;;;;;;;ACjCD;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,UAAU,mBAAO,CAAC,iGAAe;AACjC,kBAAkB,mBAAO,CAAC,uGAAkB;AAC5C,eAAe,mBAAO,CAAC,iGAAe;AACtC,yBAAyB;AACzB;;AAEA;AACA;AACA;AACA,eAAe,mBAAO,CAAC,iGAAe;AACtC;AACA;AACA;AACA;AACA;AACA,EAAE,mBAAO,CAAC,qFAAS;AACnB,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;ACxCA,eAAe,mBAAO,CAAC,+FAAc;AACrC,qBAAqB,mBAAO,CAAC,yGAAmB;AAChD,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C;;AAEA,YAAY,mBAAO,CAAC,mGAAgB;AACpC;AACA;AACA;AACA;AACA;AACA,GAAG,YAAY;AACf;AACA;AACA;AACA;;;;;;;;;;;;ACfA,SAAS,mBAAO,CAAC,+FAAc;AAC/B,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,mGAAgB;;AAEtC,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA,UAAU,mBAAO,CAAC,iGAAe;AACjC,iBAAiB,mBAAO,CAAC,uGAAkB;AAC3C,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,qBAAqB,mBAAO,CAAC,yGAAmB;AAChD;;AAEA,YAAY,mBAAO,CAAC,mGAAgB;AACpC;AACA;AACA;AACA;AACA,GAAG,YAAY;AACf;AACA;;;;;;;;;;;;ACfA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,iBAAiB;;AAEjB;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;AClBA;AACA,YAAY,mBAAO,CAAC,qHAAyB;AAC7C,iBAAiB,mBAAO,CAAC,uGAAkB;;AAE3C;AACA;AACA;;;;;;;;;;;;ACNA;;;;;;;;;;;;ACAA;AACA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,iGAAe;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACZA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,mBAAmB,mBAAO,CAAC,yGAAmB;AAC9C,eAAe,mBAAO,CAAC,iGAAe;;AAEtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA,YAAY,mBAAO,CAAC,qHAAyB;AAC7C,kBAAkB,mBAAO,CAAC,uGAAkB;;AAE5C;AACA;AACA;;;;;;;;;;;;ACNA,cAAc;;;;;;;;;;;;ACAd;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,YAAY,mBAAO,CAAC,uFAAU;AAC9B;AACA,6BAA6B;AAC7B;AACA;AACA,qDAAqD,OAAO,EAAE;AAC9D;;;;;;;;;;;;ACTA,cAAc,mBAAO,CAAC,mGAAgB;AACtC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,aAAa,mBAAO,CAAC,iGAAe;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;;;;;;;;;;;ACfA;AACA,WAAW,mBAAO,CAAC,mGAAgB;AACnC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,yFAAW;AACjC;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA,kBAAkB,mBAAO,CAAC,yFAAW;AACrC,YAAY,mBAAO,CAAC,mGAAgB;;AAEpC,iCAAiC,mBAAO,CAAC,+FAAc;AACvD;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACPD,gBAAgB,mBAAO,CAAC,yFAAW;AACnC,YAAY,mBAAO,CAAC,mGAAgB;AACpC,SAAS,mBAAO,CAAC,+FAAc;AAC/B;;AAEA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACRD;AACA;AACA,YAAY;AACZ,GAAG;AACH,YAAY;AACZ;AACA;;;;;;;;;;;;ACNA,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,2BAA2B,mBAAO,CAAC,yHAA2B;;AAE9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA,eAAe,mBAAO,CAAC,6FAAa;AACpC;AACA;AACA;AACA;;;;;;;;;;;;ACJA,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,gBAAgB,mBAAO,CAAC,iHAAuB;AAC/C;AACA;;AAEA,mBAAO,CAAC,qFAAS;AACjB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;;;;;;;;;;;;;AC9BY;;AAEb,cAAc,mBAAO,CAAC,2FAAY;AAClC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACpBa;;AAEb,kBAAkB,mBAAO,CAAC,uFAAU;;AAEpC;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,0BAA0B;AAC7C;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;;AAEA;;;;;;;;;;;;ACzDA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA,kDAAkD;AAClD;AACA;AACA,cAAc,mBAAO,CAAC,mFAAQ,iBAAiB,mBAAO,CAAC,mGAAgB;AACvE;AACA;AACA,OAAO,YAAY,cAAc;AACjC;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;AACR;AACA;;;;;;;;;;;;;ACxBa;AACb,aAAa,mBAAO,CAAC,yFAAW;AAChC,SAAS,mBAAO,CAAC,+FAAc;AAC/B,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,cAAc,mBAAO,CAAC,mFAAQ;;AAE9B;AACA;AACA;AACA;AACA,sBAAsB,aAAa;AACnC,GAAG;AACH;;;;;;;;;;;;ACZA,UAAU,mBAAO,CAAC,+FAAc;AAChC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,UAAU,mBAAO,CAAC,mFAAQ;;AAE1B;AACA,oEAAoE,iCAAiC;AACrG;;;;;;;;;;;;ACNA,aAAa,mBAAO,CAAC,yFAAW;AAChC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;AACA;AACA;;;;;;;;;;;;ACJA,WAAW,mBAAO,CAAC,qFAAS;AAC5B,aAAa,mBAAO,CAAC,yFAAW;AAChC;AACA,kDAAkD;;AAElD;AACA,qEAAqE;AACrE,CAAC;AACD;AACA,QAAQ,mBAAO,CAAC,2FAAY;AAC5B;AACA,CAAC;;;;;;;;;;;;ACXD;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,cAAc,mBAAO,CAAC,mFAAQ;AAC9B;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACRa;AACb,YAAY,mBAAO,CAAC,uFAAU;;AAE9B;AACA;AACA;AACA,yCAAyC,cAAc;AACvD,GAAG;AACH;;;;;;;;;;;;ACRA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA,sBAAsB;AACtB,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,2FAAY;;AAElC;AACA;AACA;AACA;;;;;;;;;;;;ACPA,cAAc,mBAAO,CAAC,yFAAW;AACjC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;AACA;AACA;AACA,0FAA0F;AAC1F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;AClBA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,aAAa,mBAAO,CAAC,uGAAkB;AACvC,cAAc,mBAAO,CAAC,2FAAY;;AAElC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACfa;AACb,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,cAAc,mBAAO,CAAC,2FAAY;;AAElC;AACA;AACA;AACA;AACA;AACA,QAAQ,MAAM;AACd;AACA;;;;;;;;;;;;ACXA,cAAc,mBAAO,CAAC,yFAAW;AACjC,cAAc,mBAAO,CAAC,2FAAY;AAClC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,aAAa,mBAAO,CAAC,+FAAc;AACnC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;AC7BA;AACA;;;;;;;;;;;;ACDA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,UAAU,mBAAO,CAAC,iGAAe;AACjC,aAAa,mBAAO,CAAC,yFAAW;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,mBAAO,CAAC,mFAAQ;AACtB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnFA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA,cAAc,mBAAO,CAAC,2FAAY;AAClC,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;;;;;;;;;;;;ACLA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA,2DAA2D;AAC3D;;;;;;;;;;;;ACLA;AACA,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;;;;;;;;;;;;ACJA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACXa;AACb,IAAI,mBAAO,CAAC,mGAAgB;AAC5B,gBAAgB,mBAAO,CAAC,2FAAY;AACpC,eAAe,mBAAO,CAAC,yFAAW;AAClC,cAAc,mBAAO,CAAC,uFAAU;AAChC,gBAAgB,mBAAO,CAAC,yFAAW;AACnC,eAAe,mBAAO,CAAC,uFAAU;AACjC,gBAAgB,mBAAO,CAAC,qGAAiB;AACzC,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,mBAAmB,mBAAO,CAAC,mGAAgB;AAC3C,qBAAqB,mBAAO,CAAC,uGAAkB;AAC/C,aAAa,mBAAO,CAAC,qFAAS;AAC9B,oBAAoB,mBAAO,CAAC,qGAAiB;AAC7C,kBAAkB,mBAAO,CAAC,iGAAe;AACzC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,gBAAgB,mBAAO,CAAC,6FAAa;AACrC,wBAAwB,mBAAO,CAAC,+GAAsB;AACtD,oBAAoB,mBAAO,CAAC,qGAAiB;AAC7C,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,gBAAgB,mBAAO,CAAC,2FAAY;AACpC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,oBAAoB,mBAAO,CAAC,uGAAkB;AAC9C,eAAe,mBAAO,CAAC,uGAAkB;AACzC,uBAAuB,mBAAO,CAAC,iGAAe;AAC9C,aAAa,mBAAO,CAAC,mGAAgB;AACrC,kBAAkB,mBAAO,CAAC,2HAA4B;AACtD,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,0BAA0B,mBAAO,CAAC,uGAAkB;AACpD,4BAA4B,mBAAO,CAAC,yGAAmB;AACvD,2BAA2B,mBAAO,CAAC,mHAAwB;AAC3D,uBAAuB,mBAAO,CAAC,+GAAsB;AACrD,kBAAkB,mBAAO,CAAC,+FAAc;AACxC,oBAAoB,mBAAO,CAAC,mGAAgB;AAC5C,mBAAmB,mBAAO,CAAC,mGAAgB;AAC3C,kBAAkB,mBAAO,CAAC,iGAAe;AACzC,wBAAwB,mBAAO,CAAC,+GAAsB;AACtD,YAAY,mBAAO,CAAC,+FAAc;AAClC,cAAc,mBAAO,CAAC,mGAAgB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA,GAAG;;AAEH;AACA,4BAA4B;AAC5B,GAAG;;AAEH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,iBAAiB,mBAAmB,0BAA0B,EAAE,EAAE;AAClE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yDAAyD,gCAAgC;AACzF;AACA,OAAO;AACP;AACA;AACA,6EAA6E,YAAY;AACzF;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yDAAyD,6CAA6C,EAAE;;AAExG;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,mDAAmD;AACnD;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,oCAAoC;AACpC;AACA,KAAK;AACL,wEAAwE;AACxE;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,8DAA8D;AAC9D;AACA,KAAK;AACL,wEAAwE;AACxE;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;;AAEH,yBAAyB,sBAAsB,EAAE,EAAE;AACnD;AACA;AACA;AACA;;AAEA,4CAA4C;AAC5C;AACA;AACA;AACA;AACA;AACA,8BAA8B,aAAa;AAC3C;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,sBAAsB,0BAA0B;AAChD,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA;AACA,SAAS;AACT;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL,yBAAyB;AACzB,KAAK;AACL,uBAAuB;AACvB,2BAA2B;AAC3B,0BAA0B;AAC1B,2BAA2B;AAC3B,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B,aAAa;AACvC,OAAO;AACP;;AAEA;;AAEA;;AAEA;AACA;AACA,KAAK;;AAEL,uDAAuD,6BAA6B,EAAE;AACtF;AACA;AACA,KAAK;;AAEL;;AAEA;;AAEA;;AAEA,uDAAuD,YAAY;;AAEnE;;AAEA;;AAEA;AACA;AACA,KAAK,UAAU,gBAAgB;;AAE/B;AACA;AACA,KAAK;AACL;AACA,KAAK,WAAW,kCAAkC;;AAElD;AACA;AACA;AACA,CAAC,oCAAoC;;;;;;;;;;;;;AC/dxB;AACb,aAAa,mBAAO,CAAC,yFAAW;AAChC,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,cAAc,mBAAO,CAAC,2FAAY;AAClC,aAAa,mBAAO,CAAC,uFAAU;AAC/B,WAAW,mBAAO,CAAC,qFAAS;AAC5B,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,YAAY,mBAAO,CAAC,uFAAU;AAC9B,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,6FAAa;AACnC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,SAAS,mBAAO,CAAC,+FAAc;AAC/B,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA,QAAQ,UAAU;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB,mBAAmB,uBAAuB,EAAE,EAAE;AACvE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,WAAW;AAC5B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH,CAAC;AACD;AACA;AACA,GAAG;AACH,yBAAyB;AACzB,GAAG;AACH,uBAAuB;AACvB,0BAA0B;AAC1B,0BAA0B;AAC1B;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,iDAAiD,iBAAiB;AAClE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnRA,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA,aAAa,mBAAO,CAAC,yFAAW;AAChC;;AAEA;;;;;;;;;;;;ACHA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;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jC;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACRD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;;AAEA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACTD;AACA,cAAc,mBAAO,CAAC,yFAAW;;AAEjC,8BAA8B,qCAAqC;;;;;;;;;;;;ACHnE;AACA,cAAc,mBAAO,CAAC,yFAAW;;AAEjC,8BAA8B,sCAAsC;;;;;;;;;;;;ACHpE,cAAc,mBAAO,CAAC,yFAAW;AACjC,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C;AACA,+EAA+E,0BAA0B;;;;;;;;;;;;ACHzG,cAAc,mBAAO,CAAC,yFAAW;AACjC,gBAAgB,mBAAO,CAAC,+FAAc;AACtC;AACA,2EAA2E,sBAAsB;;;;;;;;;;;;;ACHpF;AACb,cAAc,mBAAO,CAAC,yFAAW;AACjC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,mBAAmB,mBAAO,CAAC,yGAAmB;AAC9C,aAAa,mBAAO,CAAC,uGAAkB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA,MAAM,mBAAO,CAAC,uFAAU;AACxB;AACA,kBAAkB;AAClB,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA,CAAC;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AO,CAAC,mGAAgB;AACzC,YAAY,mBAAO,CAAC,yFAAW;AAC/B,yBAAyB,mBAAO,CAAC,mHAAwB;AACzD,WAAW,mBAAO,CAAC,qFAAS;AAC5B,gBAAgB,mBAAO,CAAC,+FAAc;AACtC,iCAAiC,mBAAO,CAAC,yHAA2B;AACpE,cAAc,mBAAO,CAAC,2FAAY;AAClC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,qBAAqB,mBAAO,CAAC,2GAAoB;AACjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;;AAEA;AACA;AACA;AACA;AACA,+CAA+C,EAAE,mBAAO,CAAC,mFAAQ;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG,YAAY;AACf,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,WAAW;AACX,SAAS;AACT,OAAO;AACP;AACA;AACA;AACA;AACA,6CAA6C;AAC7C;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,mBAAmB,kCAAkC;AACrD,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,eAAe,uCAAuC;AACtD;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA,uBAAuB,0BAA0B;AACjD;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA;AACA;AACA,GAAG;AACH,kBAAkB,yBAAyB,KAAK;AAChD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB,wBAAwB;AACxB,gBAAgB;AAChB,oBAAoB;AACpB,wBAAwB;AACxB,gBAAgB;AAChB,oBAAoB;AACpB;AACA,uBAAuB,mBAAO,CAAC,qGAAiB;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,0DAA0D,oBAAoB;AAC9E,mBAAO,CAAC,+GAAsB;AAC9B,mBAAO,CAAC,mGAAgB;AACxB,UAAU,mBAAO,CAAC,qFAAS;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,gDAAgD,mBAAO,CAAC,mGAAgB;AACxE;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA,KAAK;AACL;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;AC7RD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,yFAAW,eAAe;AAChD;AACA;AACA,iCAAiC,mBAAO,CAAC,uFAAU;AACnD,sBAAsB,cAAc;AACpC,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACfD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,aAAa,mBAAO,CAAC,uGAAkB;AACvC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,WAAW,mBAAO,CAAC,qFAAS;AAC5B,kBAAkB,mBAAO,CAAC,yFAAW,eAAe;;AAEpD;AACA;AACA;AACA,gBAAgB;AAChB,mCAAmC,cAAc;AACjD,CAAC;AACD;AACA,0BAA0B,cAAc;AACxC,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;AC9CD;AACA,SAAS,mBAAO,CAAC,+FAAc;AAC/B,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC,kBAAkB,mBAAO,CAAC,qGAAiB;;AAE3C;AACA,gCAAgC,mBAAO,CAAC,uFAAU;AAClD;AACA,gCAAgC,MAAM,WAAW,OAAO,WAAW;AACnE,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACtBD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACVY;AACb;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA,+BAA+B;AAC/B,cAAc;AACd,0BAA0B;AAC1B;AACA;AACA;AACA,mBAAO,CAAC,mGAAgB;AACxB;AACA;AACA;AACA;AACA,wCAAwC;AACxC,GAAG;AACH,UAAU;AACV,CAAC;;AAED;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACzBD;AACA,WAAW,mBAAO,CAAC,mGAAgB;AACnC,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACTD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,iGAAe;AACtC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACTD;AACA,WAAW,mBAAO,CAAC,mGAAgB;AACnC,qBAAqB,mBAAO,CAAC,iGAAe;AAC5C,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,+BAA+B,WAAW;;;;;;;;;;;;ACpB1C;AACA,cAAc,mBAAO,CAAC,yFAAW;;AAEjC;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACPD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACVD;AACA,cAAc,mBAAO,CAAC,yFAAW;;AAEjC,+BAA+B,UAAU,mBAAO,CAAC,6FAAa,GAAG;;;;;;;;;;;;ACHjE;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACfD;AACA,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACdD;AACA,SAAS,mBAAO,CAAC,+FAAc;AAC/B,WAAW,mBAAO,CAAC,mGAAgB;AACnC,qBAAqB,mBAAO,CAAC,iGAAe;AAC5C,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,cAAc,mBAAO,CAAC,yFAAW;AACjC,iBAAiB,mBAAO,CAAC,uGAAkB;AAC3C,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;;AAErC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA,+BAA+B,WAAW;;;;;;;;;;;;AChC1C,aAAa,mBAAO,CAAC,yFAAW;AAChC,wBAAwB,mBAAO,CAAC,mHAAwB;AACxD,SAAS,mBAAO,CAAC,+FAAc;AAC/B,WAAW,mBAAO,CAAC,mGAAgB;AACnC,eAAe,mBAAO,CAAC,+FAAc;AACrC,aAAa,mBAAO,CAAC,uFAAU;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,IAAI,mBAAO,CAAC,mGAAgB,sBAAsB,mBAAO,CAAC,uFAAU;AACpE,MAAM,mBAAO,CAAC,mFAAQ;AACtB;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB,kBAAkB,EAAE;AAC5C,0BAA0B,gBAAgB;AAC1C,KAAK;AACL;AACA,oCAAoC,iBAAiB;AACrD;AACA;AACA,EAAE,mBAAO,CAAC,6FAAa;AACvB;;AAEA,mBAAO,CAAC,mGAAgB;;;;;;;;;;;;;AC1CX;AACb,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,mBAAO,CAAC,yFAAW;AACnB;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;;;;;;;;;;;;ACRD;AACA,IAAI,mBAAO,CAAC,mGAAgB,wBAAwB,mBAAO,CAAC,+FAAc;AAC1E;AACA,OAAO,mBAAO,CAAC,uFAAU;AACzB,CAAC;;;;;;;;;;;;;ACJY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,iBAAiB,mBAAO,CAAC,qHAAyB;;AAElD;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACvCY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,iBAAiB,mBAAO,CAAC,qHAAyB;AAClD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,oBAAoB;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,mBAAmB;AAC1C;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,CAAC;;;;;;;;;;;;;ACrHY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,iBAAiB,mBAAO,CAAC,qHAAyB;;AAElD;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;AC9BY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,yBAAyB,mBAAO,CAAC,mHAAwB;AACzD,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,eAAe,mBAAO,CAAC,+FAAc;AACrC,qBAAqB,mBAAO,CAAC,qHAAyB;AACtD,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,YAAY,mBAAO,CAAC,uFAAU;AAC9B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,qCAAqC,yBAAyB,EAAE;;AAEhE;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mFAAmF;AACnF;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,yBAAyB,mBAAmB;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACrIY;AACb,mBAAO,CAAC,2GAAoB;AAC5B,eAAe,mBAAO,CAAC,+FAAc;AACrC,aAAa,mBAAO,CAAC,uFAAU;AAC/B,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C;AACA;;AAEA;AACA,EAAE,mBAAO,CAAC,6FAAa;AACvB;;AAEA;AACA,IAAI,mBAAO,CAAC,uFAAU,eAAe,wBAAwB,0BAA0B,YAAY,EAAE;AACrG;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,CAAC;AACD;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACxBa;AACb,aAAa,mBAAO,CAAC,+GAAsB;AAC3C,eAAe,mBAAO,CAAC,mHAAwB;AAC/C;;AAEA;AACA,i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ACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gEAAgE,gCAAgC;AAChG;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA,EAAE,mBAAO,CAAC,mGAAgB;AAC1B,EAAE,mBAAO,CAAC,iGAAe;AACzB,EAAE,mBAAO,CAAC,mGAAgB;;AAE1B,sBAAsB,mBAAO,CAAC,2FAAY;AAC1C;AACA;;AAEA;AACA;AACA;AACA;;AAEA,0DAA0D,kBAAkB;;AAE5E;AACA;AACA;AACA,oBAAoB,uBAAuB;;AAE3C,oDAAoD,6BAA6B;;AAEjF;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH,0BAA0B,eAAe,EAAE;AAC3C,0BAA0B,gBAAgB;AAC1C,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD,OAAO,QAAQ,iCAAiC;AACpG,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,wEAAwE;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA,oCAAoC,mBAAO,CAAC,qFAAS;AACrD;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzOa;AACb,cAAc,mBAAO,CAAC,yFAAW;AACjC,aAAa,mBAAO,CAAC,uFAAU;AAC/B,aAAa,mBAAO,CAAC,qGAAiB;AACtC,eAAe,mBAAO,CAAC,+FAAc;AACrC,sBAAsB,mBAAO,CAAC,+GAAsB;AACpD,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,kBAAkB,mBAAO,CAAC,yFAAW;AACrC,yBAAyB,mBAAO,CAAC,mHAAwB;AACzD;AACA;AACA;AACA;AACA;AACA;;AAEA,6EAA6E,4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;AAC/B,mBAAO,CAAC,8GAA0B;AAClC,mBAAO,CAAC,oHAA6B;AACrC,iBAAiB,mBAAO,CAAC,8FAAkB;;;;;;;;;;;;ACH3C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,KAAK;AACL,cAAc;AACd;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yDAAyD;AACzD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,WAAW;AACX;;AAEA;AACA;AACA,wCAAwC,WAAW;AACnD;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;AACA;AACA;;AAEA;;AAEA,SAAS;AACT;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,oCAAoC,cAAc;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,iCAAiC,kBAAkB;AACnD;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,iBAAiB;;AAEjB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,wBAAwB,iBAAiB;AACzC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,YAAY;AACZ;AACA;;AAEA;AACA,YAAY;AACZ;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,8CAA8C,QAAQ;AACtD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa;AACb;AACA;;AAEA,WAAW;AACX;AACA;AACA;;AAEA,WAAW;AACX;AACA;AACA;;AAEA,WAAW;AACX;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;AChtBA,iBAAiB,mBAAO,CAAC,sDAAa,E;;;;;;;;;;;;ACAzB;;AAEb,YAAY,mBAAO,CAAC,qDAAY;AAChC,aAAa,mBAAO,CAAC,iEAAkB;AACvC,eAAe,mBAAO,CAAC,2EAAuB;AAC9C,mBAAmB,mBAAO,CAAC,mFAA2B;AACtD,sBAAsB,mBAAO,CAAC,yFAA8B;AAC5D,kBAAkB,mBAAO,CAAC,yEAAqB;AAC/C,yFAAyF,mBAAO,CAAC,mEAAmB;;AAEpH;AACA;AACA;AACA;;AAEA;AACA,4CAA4C;AAC5C;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,QAAQ,KAA+B;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,oBAAoB,mBAAO,CAAC,yEAAsB;;AAElD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACnLa;;AAEb,YAAY,mBAAO,CAAC,kDAAS;AAC7B,WAAW,mBAAO,CAAC,gEAAgB;AACnC,YAAY,mBAAO,CAAC,4DAAc;AAClC,eAAe,mBAAO,CAAC,wDAAY;;AAEnC;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,MAAM;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,eAAe,mBAAO,CAAC,kEAAiB;AACxC,oBAAoB,mBAAO,CAAC,4EAAsB;AAClD,iBAAiB,mBAAO,CAAC,sEAAmB;;AAE5C;AACA;AACA;AACA;AACA,eAAe,mBAAO,CAAC,oEAAkB;;AAEzC;;AAEA;AACA;;;;;;;;;;;;;ACnDa;;AAEb;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;;;;;;;;;;;;;AClBa;;AAEb,aAAa,mBAAO,CAAC,2DAAU;;AAE/B;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACxDa;;AAEb;AACA;AACA;;;;;;;;;;;;;ACJa;;AAEb,eAAe,mBAAO,CAAC,2DAAe;AACtC,YAAY,mBAAO,CAAC,qDAAY;AAChC,yBAAyB,mBAAO,CAAC,iFAAsB;AACvD,sBAAsB,mBAAO,CAAC,2EAAmB;;AAEjD;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA,kCAAkC,cAAc;AAChD;;AAEA;AACA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,gDAAgD;AAChD;AACA;AACA,KAAK;AACL;AACA,CAAC;;AAED;AACA;AACA;AACA,gDAAgD;AAChD;AACA;AACA;AACA,KAAK;AACL;AACA,CAAC;;AAED;;;;;;;;;;;;;AC9Ea;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,SAAS;AACpB;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;;;;;;;;;;;;;ACnDa;;AAEb,mBAAmB,mBAAO,CAAC,qEAAgB;;AAE3C;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,MAAM;AACnB;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjBa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;AAChC,oBAAoB,mBAAO,CAAC,uEAAiB;AAC7C,eAAe,mBAAO,CAAC,uEAAoB;AAC3C,eAAe,mBAAO,CAAC,yDAAa;AACpC,oBAAoB,mBAAO,CAAC,qFAA4B;AACxD,kBAAkB,mBAAO,CAAC,iFAA0B;;AAEpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,+BAA+B;AAC/B,uCAAuC;AACvC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;;;;;;;;;;;;;ACrFa;;AAEb;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,MAAM;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACpBa;;AAEb,kBAAkB,mBAAO,CAAC,mEAAe;;AAEzC;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,SAAS;AACpB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzBa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA,WAAW,cAAc;AACzB,WAAW,MAAM;AACjB,WAAW,eAAe;AAC1B,aAAa,EAAE;AACf;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;;;;;;;;;;;;ACnBA,+CAAa;;AAEb,YAAY,mBAAO,CAAC,kDAAS;AAC7B,0BAA0B,mBAAO,CAAC,8FAA+B;;AAEjE;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,cAAc,mBAAO,CAAC,gEAAgB;AACtC,GAAG;AACH;AACA,cAAc,mBAAO,CAAC,iEAAiB;AACvC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wEAAwE;AACxE;AACA;AACA;AACA,uDAAuD;AACvD;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA,OAAO,YAAY;AACnB;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;AACA,CAAC;;AAED;;;;;;;;;;;;;;AC/Fa;;AAEb;AACA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACVa;;AAEb;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACnCa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP,KAAK;;AAEL;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjEa;;AAEb;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACba;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,wCAAwC;AACxC,OAAO;;AAEP;AACA,0DAA0D,wBAAwB;AAClF;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA,gCAAgC;AAChC,6BAA6B,aAAa,EAAE;AAC5C;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACpDa;;AAEb;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACba;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAc,OAAO;AACrB,gBAAgB;AAChB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,cAAc,OAAO;AACrB,gBAAgB,QAAQ;AACxB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACnEa;;AAEb,YAAY,mBAAO,CAAC,mDAAU;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACXa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,eAAe;;AAEhC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,GAAG;;AAEH;AACA;;;;;;;;;;;;;ACpDa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,WAAW,SAAS;AACpB,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC1Ba;;AAEb,WAAW,mBAAO,CAAC,gEAAgB;AACnC,eAAe,mBAAO,CAAC,oDAAW;;AAElC;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,mCAAmC,OAAO;AAC1C;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,SAAS,GAAG,SAAS;AAC5C,2BAA2B;AAC3B;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,uCAAuC,OAAO;AAC9C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC9SA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,OAAO,IAAyC;AAChD;AACA,IAAI,oCAAQ,OAAO;AAAA;AAAA;AAAA;AAAA,oGAAE;AACrB,GAAG,MAAM,EAMN;;AAEH,CAAC;;AAED;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,gBAAgB,sBAAsB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA,CAAC;;;;;;;;;;;;AC/GD;AACA;AACA;AACA;AACA;;AAEA,+BAA+B;AAC/B;;AAEA;;AAEA,OAAO,IAAyC;AAChD;AACA,IAAI,iCAAQ;AACZ,MAAM,2FAAuB;AAC7B,KAAK,mCAAE;AACP;AACA,KAAK;AAAA,oGAAC;AACN,GAAG,MAAM,EAYN;;AAEH,CAAC;;AAED;;AAEA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA,WAAW,iCAAiC;AAC5C,WAAW,mBAAmB;AAC9B,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,WAAW,KAAK;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,sBAAsB;AACtC;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAc,qBAAqB;AACnC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA,CAAC;;;;;;;;;;;;ACxXD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;;;;;;;;;ACpBA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qCAAqC;;AAErC;AACA;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;AACA,4BAA4B,UAAU;;;;;;;;;;;;;ACvLzB;;AAEb;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;;ACjBa;;AAEb,gBAAgB,mBAAO,CAAC,uDAAa;AACrC,YAAY,mBAAO,CAAC,+CAAS;AAC7B,cAAc,mBAAO,CAAC,mDAAW;;AAEjC;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACVa;;AAEb,YAAY,mBAAO,CAAC,+CAAS;;AAE7B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,gCAAgC;AAChC;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA,wCAAwC,gCAAgC;;AAExE;AACA,uCAAuC;;AAEvC;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;;AAEA;AACA;AACA,mBAAmB,kBAAkB;AACrC;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;;AAEA,eAAe,kBAAkB;AACjC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA,kCAAkC,QAAQ;AAC1C;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA,uBAAuB;AACvB,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,wCAAwC;;AAExC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjOa;;AAEb,YAAY,mBAAO,CAAC,+CAAS;AAC7B,cAAc,mBAAO,CAAC,mDAAW;;AAEjC;AACA,yCAAyC;AACzC;AACA,KAAK;AACL,4CAA4C;AAC5C;AACA,KAAK;AACL,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iDAAiD;AACjD;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,mBAAmB,oBAAoB;AACvC;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wCAAwC;;AAExC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,mBAAmB,oBAAoB;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,2CAA2C;AAC3C;AACA,SAAS;AACT;AACA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjPa;;AAEb;;AAEA;AACA;AACA,mBAAmB,SAAS;AAC5B;AACA;;AAEA;AACA,CAAC;;AAED;AACA;AACA;AACA;;AAEA;AACA;;AAEA,2BAA2B,gBAAgB;AAC3C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB,mBAAmB;AACtC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,aAAa;AACb;AACA;AACA,SAAS;AACT;AACA;;AAEA;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA,iDAAiD,EAAE;AACnD;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,kDAAkD,EAAE;AACpD;AACA,SAAS;AACT;;AAEA;AACA,mBAAmB,mBAAmB;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,kBAAkB,OAAO,WAAW,aAAa;AACjD;;AAEA,mBAAmB,kBAAkB;AACrC;AACA;;AAEA;AACA,uBAAuB,iBAAiB;AACxC;AACA;AACA;AACA,4BAA4B,sBAAsB;AAClD;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnOA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,cAAc;AAC7B,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,iBAAiB,KAAK;AACtB;AACA;AACA;;AAEA;AACA;;AAEA;AACA,OAAO;;AAEP;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,YAAY;AAC3B,eAAe,OAAO;AACtB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA,MAAM,IAA4D;AAClE;AACA,sBAAsB;AACtB,GAAG,MAAM,EAGN;;AAEH,CAAC","file":"js/ajax-load-more.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./core/src/js/ajax-load-more.js\");\n","/*\n * Ajax Load More\n * https://connekthq.com/plugins/ajax-load-more/\n * Author: Darren Cooney\n * Twitter: @KaptonKaos, @ajaxloadmore, @connekthq \n * Copyright Connekt Media - https://connekthq.com\n */\n\n\n// Polyfills\nrequire(\"@babel/polyfill/noConflict\");\nrequire('./helpers/polyfills.js');\n\n\n// External Modules\nlet qs = require('qs');\nlet imagesLoaded = require('imagesloaded');\nimport axios from 'axios';\nimport smoothscroll from 'smoothscroll-polyfill'; // Smooth scrolling polyfill\nsmoothscroll.polyfill();\n\n\n// ALM Modules\nimport './helpers/helpers';\nimport commentReplyFix from './helpers/commentReplyFix';\nimport getParameterByName from './helpers/getParameterByName';\nimport almAppendChildren from './helpers/almAppendChildren';\nimport almTableWrap from './helpers/almTableWrap';\nimport almGetCacheUrl from './helpers/almGetCacheUrl';\nimport almDomParser from './helpers/almDomParser';\nimport stripEmptyNodes from './helpers/stripEmptyNodes'; \nimport * as queryParams from './helpers/queryParams';\nimport * as resultsText from './modules/resultsText';\nimport setLocalizedVars from './modules/setLocalizedVars';\nimport insertScript from './modules/insertScript';\nimport setFocus from './modules/setFocus';\nimport almMasonry from './modules/masonry';\nimport almFadeIn from './modules/fadeIn';\nimport almFadeOut from './modules/fadeOut';\nimport almFilter from './modules/filtering';\nimport almNoResults from './modules/noResults';\nimport almDebug from './modules/almDebug';\nimport srcsetPolyfill from './helpers/srcsetPolyfill';\n\n\n// Global filtering var\nlet alm_is_filtering = false;\n\n\n// Start ALM\n(function() {\n \"use strict\";\n\n /**\n * ajaxloadmore\n * Init Ajax Load More\n *\n * @param {*} el\n * @param {*} e\n */\n let ajaxloadmore = function(el, e) {\n\n\n // Move user to top of page to prevent loading of unnessasry posts\n if (alm_localize && alm_localize.scrolltop === 'true') {\n window.scrollTo(0, 0);\n }\n\n\n //Set ALM Variables\n let alm = this;\n alm.AjaxLoadMore = {};\n alm.addons = {};\n alm.extensions = {};\n alm.window = window;\n alm.page = 0;\n alm.posts = 0;\n alm.totalposts = 0;\n alm.proceed = false;\n alm.disable_ajax = false;\n alm.init = true;\n alm.loading = true;\n alm.finished = false;\n alm.timer = null;\n alm.ua = (window.navigator.userAgent) ? window.navigator.userAgent : ''; // User agent\n alm.main = el;\n alm.master_id = (el.dataset.id) ? `ajax-load-more-${el.dataset.id}` : el.id; // The defined or generated ID of the ALM instance \n el.classList.add('alm-' + e); // Add unique classname\n el.setAttribute('data-alm-id', e); // Add unique data id\n\n\n // Get localized <script/> variables\n alm.master_id = alm.master_id.replace(/-/g, '_'); // Convert dashes to underscores for the var name\n alm.localize = window[alm.master_id + '_vars']; // Get localize vars\n\n\n // Main ALM Containers\n alm.main = el; // Top level DOM element\n alm.listing = el.querySelector('.alm-listing') || el.querySelector('.alm-comments');\n alm.content = alm.listing;\n alm.el = alm.content;\n alm.ajax = el.querySelector('.alm-ajax');\n alm.container_type = alm.listing.dataset.containerType;\n\n\n // Instance Params\n alm.canonical_url = el.dataset.canonicalUrl;\n alm.nested = (el.dataset.nested) ? el.dataset.nested : null;\n alm.is_search = el.dataset.search;\n alm.slug = el.dataset.slug;\n alm.post_id = el.dataset.postId;\n alm.id = (el.dataset.id) ? el.dataset.id : '';\n \n // No results template\n let alm_no_results = el.querySelector('.alm-no-results');\n alm.no_results = (alm_no_results) ? alm_no_results.innerHTML : '';\n\n\n // Shortcode Params \n alm.repeater = alm.listing.dataset.repeater; // Repeaters\n alm.theme_repeater = alm.listing.dataset.themeRepeater;\n\n alm.post_type = (alm.listing.dataset.postType) ? alm.listing.dataset.postType : 'post';\n alm.sticky_posts = (alm.listing.dataset.stickyPosts) ? alm.listing.dataset.stickyPosts : null;\n\n alm.btnWrap = el.querySelectorAll('.alm-btn-wrap'); // Get all `.alm-button-wrap` divs\n alm.btnWrap = Array.prototype.slice.call(alm.btnWrap); // Convert NodeList to array\n alm.btnWrap[alm.btnWrap.length - 1].style.visibility = 'visible'; // Get last element (used for nesting)\n alm.trigger = alm.btnWrap[alm.btnWrap.length - 1];\n\n alm.button_label = alm.listing.dataset.buttonLabel;\n alm.button_loading_label = alm.listing.dataset.buttonLoadingLabel;\n\n alm.scroll_distance = alm.listing.dataset.scrollDistance;\n alm.scroll_distance = (alm.scroll_distance) ? parseInt(alm.scroll_distance) : 100;\n alm.scroll_container = alm.listing.dataset.scrollContainer;\n alm.max_pages = (alm.listing.dataset.maxPages) ? parseInt(alm.listing.dataset.maxPages) : 0;\n alm.pause_override = alm.listing.dataset.pauseOverride; // true | false\n alm.pause = alm.listing.dataset.pause; // true | false\n alm.transition = alm.listing.dataset.transition; // Transition\n alm.transition_container = alm.listing.dataset.transitionContainer; // Transition Container\n alm.tcc = alm.listing.dataset.transitionContainerClasses; // Transition Container Classes\n alm.speed = (alm_localize.speed) ? parseInt(alm_localize.speed) : 200;\n alm.images_loaded = (alm.listing.dataset.imagesLoaded) ? alm.listing.dataset.imagesLoaded : false;\n alm.destroy_after = (alm.listing.dataset.destroyAfter) ? alm.listing.dataset.destroyAfter : '';\n alm.orginal_posts_per_page = parseInt(alm.listing.dataset.postsPerPage); // Used for paging add-on\n alm.posts_per_page = alm.listing.dataset.postsPerPage;\n alm.offset = (alm.listing.dataset.offset) ? parseInt(alm.listing.dataset.offset) : 0;\n\n\n // Addon Shortcode Params\n alm.addons.cache = alm.listing.dataset.cache; // Cache add-on\n alm.addons.cache = (alm.addons.cache === undefined) ? false : alm.addons.cache;\n alm.addons.cache_id = alm.listing.dataset.cacheId;\n alm.addons.cache_path = alm.listing.dataset.cachePath;\n alm.addons.cache_logged_in = alm.listing.dataset.cacheLoggedIn;\n alm.addons.cache_logged_in = (alm.addons.cache_logged_in === undefined) ? false : alm.addons.cache_logged_in;\n\n alm.addons.cta = alm.listing.dataset.cta; // CTA add-on\n alm.addons.cta_position = alm.listing.dataset.ctaPosition;\n alm.addons.cta_repeater = alm.listing.dataset.ctaRepeater;\n alm.addons.cta_theme_repeater = alm.listing.dataset.ctaThemeRepeater;\n\n alm.addons.nextpage = alm.listing.dataset.nextpage; // Nextpage add-on\n alm.addons.nextpage_urls = alm.listing.dataset.nextpageUrls;\n alm.addons.nextpage_scroll = alm.listing.dataset.nextpageScroll;\n alm.addons.nextpage_pageviews = alm.listing.dataset.nextpagePageviews;\n alm.addons.nextpage_post_id = alm.listing.dataset.nextpagePostId;\n alm.addons.nextpage_startpage = alm.listing.dataset.nextpageStartpage;\n\n alm.addons.single_post = alm.listing.dataset.singlePost; // Previous Post add-on\n alm.addons.single_post_id = alm.listing.dataset.singlePostId;\n alm.addons.single_post_order = alm.listing.dataset.singlePostOrder;\n alm.addons.single_post_init_id = alm.listing.dataset.singlePostId;\n alm.addons.single_post_taxonomy = alm.listing.dataset.singlePostTaxonomy;\n alm.addons.single_post_excluded_terms = alm.listing.dataset.singlePostExcludedTerms;\n alm.addons.single_post_progress_bar = alm.listing.dataset.singlePostProgressBar;\n\n alm.addons.comments = alm.listing.dataset.comments; // Comments add-on \n alm.addons.comments_post_id = alm.listing.dataset.comments_post_id; // current post id\n alm.addons.comments_per_page = alm.listing.dataset.comments_per_page;\n alm.addons.comments_per_page = (alm.addons.comments_per_page === undefined) ? '5' : alm.addons.comments_per_page;\n alm.addons.comments_type = alm.listing.dataset.comments_type;\n alm.addons.comments_style = alm.listing.dataset.comments_style;\n alm.addons.comments_template = alm.listing.dataset.comments_template;\n alm.addons.comments_callback = alm.listing.dataset.comments_callback;\n\n alm.addons.tabs = alm.listing.dataset.tabs;\n \n alm.addons.filters = alm.listing.dataset.filters;\n\n alm.addons.seo = alm.listing.dataset.seo; // SEO add-on\n\n alm.addons.preloaded = alm.listing.dataset.preloaded; // Preloaded add-on\n alm.addons.preloaded_amount = (alm.listing.dataset.preloadedAmount) ? alm.listing.dataset.preloadedAmount : 0;\n alm.is_preloaded = (alm.listing.dataset.isPreloaded === 'true') ? true : false;\n\n alm.addons.paging = alm.listing.dataset.paging; // Paging add-on \n\n alm.addons.users = (alm.listing.dataset.users === 'true') ? true : false; // Users add-on\n if (alm.addons.users) { // Override paging params for users\n alm.orginal_posts_per_page = alm.listing.dataset.usersPerPage;\n alm.posts_per_page = alm.listing.dataset.usersPerPage;\n }\n\n // Extension Shortcode Params\n alm.extensions.restapi = alm.listing.dataset.restapi; // REST API\n alm.extensions.restapi_base_url = alm.listing.dataset.restapiBaseUrl;\n alm.extensions.restapi_namespace = alm.listing.dataset.restapiNamespace;\n alm.extensions.restapi_endpoint = alm.listing.dataset.restapiEndpoint;\n alm.extensions.restapi_template_id = alm.listing.dataset.restapiTemplateId; \n alm.extensions.restapi_debug = alm.listing.dataset.restapiDebug;\n\n alm.extensions.acf = alm.listing.dataset.acf; // ACF\n alm.extensions.acf_field_type = alm.listing.dataset.acfFieldType;\n alm.extensions.acf_field_name = alm.listing.dataset.acfFieldName;\n alm.extensions.acf_parent_field_name = alm.listing.dataset.acfParentFieldName;\n alm.extensions.acf_post_id = alm.listing.dataset.acfPostId;\n alm.extensions.acf = (alm.extensions.acf === 'true') ? true : false;\n // if field type, name or post ID is empty\n if (alm.extensions.acf_field_type === undefined || alm.extensions.acf_field_name === undefined || alm.extensions.acf_post_id === undefined) {\n alm.extensions.acf = false;\n }\n \n\n /* Paging */\n if (alm.addons.paging === 'true') {\n alm.addons.paging = true;\n alm.addons.paging_init = true;\n alm.addons.paging_controls = (alm.listing.dataset.pagingControls === 'true') ? true : false;\n alm.addons.paging_show_at_most = alm.listing.dataset.pagingShowAtMost;\n alm.addons.paging_classes = alm.listing.dataset.pagingClasses;\n alm.addons.paging_show_at_most = (alm.addons.paging_show_at_most === undefined) ? 7 : alm.addons.paging_show_at_most; \n \n alm.addons.paging_first_label = alm.listing.dataset.pagingFirstLabel;\n alm.addons.paging_previous_label = alm.listing.dataset.pagingPreviousLabel;\n alm.addons.paging_next_label = alm.listing.dataset.pagingNextLabel;\n alm.addons.paging_last_label = alm.listing.dataset.pagingLastLabel;\n \n // If preloaded, pause ALM\t\n alm.pause = (alm.addons.preloaded === 'true') ? true : alm.pause;\n } else {\n alm.addons.paging = false;\n }\n /* End Paging */\n\n\n /* Filters */\n if (alm.addons.filters === 'true') {\n alm.addons.filters = true;\n\n alm.addons.filters_url = (alm.listing.dataset.filtersUrl === 'true') ? true : false;\n alm.addons.filters_paging = (alm.listing.dataset.filtersPaging === 'true') ? true : false;\n alm.addons.filters_scroll = (alm.listing.dataset.filtersScroll === 'true') ? true : false;\n alm.addons.filters_scrolltop = (alm.listing.dataset.filtersScrolltop) ? alm.listing.dataset.filtersScrolltop : '30';\n alm.addons.filters_analtyics = alm.listing.dataset.filtersAnalytics;\n alm.addons.filters_debug = alm.listing.dataset.filtersDebug;\n alm.addons.filters_startpage = 0;\n\n // Get Paged Querystring Val\n let page = getParameterByName('pg');\n alm.addons.filters_startpage = (page !== null) ? parseInt(page) : 0;\n \n // If not Paging add-on\n if(!alm.addons.paging && alm.addons.filters_startpage > 0){\n \talm.posts_per_page = alm.posts_per_page * alm.addons.filters_startpage;\n\t\t\t\talm.isPaged = (alm.addons.filters_startpage > 0) ? true : false;\n } \n \n } else {\n alm.addons.filters = false;\n }\n /* End Filters */\n\n\n /* TABS */\n if (alm.addons.tabs === 'true') { \n alm.addons.tabs = true; \n alm.addons.tab_template = (alm.listing.dataset.tabTemplate) ? alm.listing.dataset.tabTemplate : '';\n\t\t\t\n\t\t\t// Set current template\t\t\n\t\t\tsetTimeout(function(){\n\t\t\t\t//window.almTabsOnLoad(alm);\n\t\t\t}, 500);\n if (typeof almTabsOnLoad === 'function' && window.location.hash) {\n\t\t\t //alm.addons.tab_template = window.almTabsOnLoad(alm);\n\t\t\t} \n \n alm.addons.tabs_resturl = (alm.listing.dataset.tabsRestUrl) ? alm.listing.dataset.tabsRestUrl : '';\n } else {\n alm.addons.tabs = false;\n }\n /* End TABS */\n\n\n /* REST API */\n if (alm.extensions.restapi === 'true') {\n alm.extensions.restapi = true;\n alm.extensions.restapi_debug = (alm.extensions.restapi_debug === undefined) ? false : alm.extensions.restapi_debug;\n alm.extensions.restapi = (alm.extensions.restapi_template_id === '') ? false : alm.extensions.restapi;\n } else {\n alm.extensions.restapi = false;\n }\n /* End REST API */\n\n\n /* Preloaded */\n if (alm.addons.preloaded === 'true') {\n // Preloaded Amount\n alm.addons.preloaded_amount = (alm.addons.preloaded_amount === undefined) ? alm.posts_per_page : alm.addons.preloaded_amount;\n // Disable ALM if total_posts is less than or equal to preloaded_amount\n if (alm.localize && alm.localize.total_posts) {\n if (parseInt(alm.localize.total_posts) <= parseInt(alm.addons.preloaded_amount)) {\n alm.addons.preloaded_total_posts = alm.localize.total_posts;\n alm.disable_ajax = true;\n }\n }\n } else {\n alm.addons.preloaded = 'false';\n }\n /* End Preloaded */\n\n\n /* SEO */\n alm.addons.seo = (alm.addons.seo === undefined) ? false : alm.addons.seo;\n alm.addons.seo = (alm.addons.seo === 'true') ? true : alm.addons.seo;\n alm.is_search = (alm.is_search === undefined) ? false : alm.is_search;\n alm.search_value = (alm.is_search === 'true') ? alm.slug : ''; // Convert to value of slug for appending to seo url\n \n alm.addons.seo_permalink = alm.listing.dataset.seoPermalink;\n alm.addons.seo_pageview = alm.listing.dataset.seoPageview;\n alm.addons.seo_trailing_slash = (alm.listing.dataset.seoTrailingSlash === 'false') ? '' : '/';\n alm.addons.seo_leading_slash = (alm.listing.dataset.seoLeadingSlash === 'true') ? '/' : '';\n alm.start_page = alm.listing.dataset.seoStartPage;\n\n if (alm.start_page) {\n alm.addons.seo_scroll = alm.listing.dataset.seoScroll;\n alm.addons.seo_scrolltop = alm.listing.dataset.seoScrolltop;\n alm.addons.seo_controls = alm.listing.dataset.seoControls;\n alm.isPaged = false;\n if (alm.start_page > 1) {\n alm.isPaged = true; // Is this a paged page > 1 ?\n alm.posts_per_page = alm.start_page * alm.posts_per_page;\n }\n if (alm.addons.paging) { // If paging, reset posts_per_page\n alm.posts_per_page = alm.orginal_posts_per_page;\n }\n } else {\n alm.start_page = 1;\n }\n /* End SEO */\n\n\n /* Nextpage */\n if (alm.addons.nextpage === 'true') {\n alm.addons.nextpage = true;\n alm.posts_per_page = 1;\n } else {\n alm.addons.nextpage = false;\n }\n if (alm.addons.nextpage_urls === undefined) {\n alm.addons.nextpage_urls = 'true';\n }\n if (alm.addons.nextpage_scroll === undefined) {\n alm.addons.nextpage_scroll = '250:30';\n }\n if (alm.addons.nextpage_pageviews === undefined) {\n alm.addons.nextpage_pageviews = 'true';\n }\n if (alm.addons.nextpage_post_id === undefined) {\n alm.addons.nextpage = false;\n alm.addons.nextpage_post_id = null;\n }\n if (alm.addons.nextpage_startpage === undefined) {\n alm.addons.nextpage_startpage = 1;\n }\n if (alm.addons.nextpage_startpage > 1) {\n alm.isPaged = true;\n }\n /* End Nextpage */\n\n\n /* Single Post */\n if (alm.addons.single_post === 'true') {\n alm.addons.single_post = true;\n alm.addons.single_post_permalink = '';\n alm.addons.single_post_title = '';\n alm.addons.single_post_slug = '';\n } else {\n alm.addons.single_post = false;\n }\n if (alm.addons.single_post_id === undefined) {\n alm.addons.single_post_id = '';\n alm.addons.single_post_init_id = '';\n }\n alm.addons.single_post_order = (alm.addons.single_post_order === undefined) ? 'previous' : alm.addons.single_post_order;\n alm.addons.single_post_taxonomy = (alm.addons.single_post_taxonomy === undefined) ? '' : alm.addons.single_post_taxonomy;\n alm.addons.single_post_excluded_terms = (alm.addons.single_post_excluded_terms === undefined) ? '' : alm.addons.single_post_excluded_terms;\n alm.addons.single_post_progress_bar = (alm.addons.single_post_progress_bar === undefined) ? '' : alm.addons.single_post_progress_bar;\n alm.addons.single_post_title_template = alm.listing.dataset.singlePostTitleTemplate;\n alm.addons.single_post_siteTitle = alm.listing.dataset.singlePostSiteTitle;\n alm.addons.single_post_siteTagline = alm.listing.dataset.singlePostSiteTagline;\n alm.addons.single_post_pageview = alm.listing.dataset.singlePostPageview;\n alm.addons.single_post_scroll = alm.listing.dataset.singlePostScroll;\n alm.addons.single_post_scroll_speed = alm.listing.dataset.singlePostScrollSpeed;\n alm.addons.single_post_scroll_top = alm.listing.dataset.singlePostScrolltop;\n alm.addons.single_post_controls = alm.listing.dataset.singlePostControls;\n /* End Single Post */\n\n\n /* Pause */\n if (alm.pause === undefined || (alm.addons.seo && alm.start_page > 1)) { // SEO only\n alm.pause = false;\n }\n if (alm.addons.preloaded === 'true' && alm.addons.seo && alm.start_page > 0) { // SEO + Preloaded\n alm.pause = false;\n }\n if (alm.addons.filters && alm.addons.filters_startpage > 0) { // Filters\n alm.pause = false;\n }\n if (alm.addons.preloaded === 'true' && alm.addons.paging) {\n alm.pause = true;\n }\n\n /* Repeater and Theme Repeater */\n alm.repeater = (alm.repeater === undefined) ? 'default' : alm.repeater;\n alm.theme_repeater = (alm.theme_repeater === undefined) ? false : alm.theme_repeater;\n\n /* Max Pages (while scrolling) */\n alm.max_pages = (alm.max_pages === undefined || alm.max_pages === 0) ? 10000 : alm.max_pages;\n\n /* Scroll Distance */\n alm.scroll_distance = (alm.scroll_distance === undefined) ? 150 : alm.scroll_distance;\n\n /* Scroll Container */\n alm.scroll_container = (alm.scroll_container === undefined) ? '' : alm.scroll_container;\n\n /* Transition */\n alm.transition = (alm.transition === undefined) ? 'fade' : alm.transition;\n\n /* Transition Container Class */\n alm.tcc = (alm.tcc === undefined) ? '' : alm.tcc;\n\n /* Masonry */\n alm.is_masonry_preloaded = false;\n if (alm.transition === 'masonry') {\n alm.masonry_init = true;\n alm.masonry_selector = alm.listing.dataset.masonrySelector;\n alm.masonry_columnwidth = alm.listing.dataset.masonryColumnwidth;\n alm.masonry_animation = alm.listing.dataset.masonryAnimation;\n alm.masonry_animation = (alm.masonry_animation === undefined) ? 'standard' : alm.masonry_animation;\n alm.masonry_horizontalorder = alm.listing.dataset.masonryHorizontalorder;\n alm.masonry_horizontalorder = (alm.masonry_horizontalorder === undefined) ? 'true' : alm.masonry_horizontalorder;\n alm.transition_container = false;\n alm.images_loaded = false;\n alm.is_masonry_preloaded = (alm.addons.preloaded === 'true') ? true : alm.is_masonry_preloaded;\n }\n\n /* Scroll */\n if (alm.listing.dataset.scroll === undefined) {\n alm.scroll = true;\n } else if (alm.listing.dataset.scroll === 'false') {\n alm.scroll = false;\n } else {\n alm.scroll = true;\n }\n\n /* Transition Container */\n alm.transition_container = (alm.transition_container === undefined || alm.transition_container === 'true') ? true : false;\n\n /* Button Labels */\n alm.button_label = (alm.button_label === undefined) ? 'Older Posts' : alm.button_label;\n alm.button_loading_label = (alm.button_loading_label === undefined) ? false : alm.button_loading_label;\n\n /* Paging */\n if (alm.addons.paging) {\n alm.main.classList.add('loading'); // add loading class to main container\n } else {\n let almChildren = el.childNodes; // Get child nodes of instance [nodeList]\n if (almChildren) {\n let almChildArray = Array.prototype.slice.call(almChildren); // Convert nodeList to array \n\n // Filter array to find the `.alm-btn-wrap` div\n let btnWrap = almChildArray.filter(function(element) {\n if (!element.classList) { // If not element (#text node)\n return false;\n }\n return element.classList.contains('alm-btn-wrap');\n });\n alm.button = (btnWrap) ? (btnWrap[0]).querySelector('.alm-load-more-btn') : container.querySelector('.alm-btn-wrap .alm-load-more-btn');\n } else {\n alm.button = container.querySelector('.alm-btn-wrap .alm-load-more-btn');\n }\n \n // Reset button state\n alm.button.disabled = false;\n\n }\n\n\n // Results Text\n // Render \"Showing x of y results\" text.\n alm.resultsText = document.querySelector('.alm-results-text');\n if (alm.resultsText) {\n\t alm.resultsText.setAttribute('aria-live', 'polite');\n\t alm.resultsText.setAttribute('aria-atomic', 'true');\n } else {\n alm.resultsText = false;\n }\n\n\n\n /** \n * LoadPosts()\n * The function to get posts via Ajax\n * @since 2.0.0\n */\n\n alm.AjaxLoadMore.loadPosts = function() {\n\t \n\t\t\tif (typeof almOnChange === 'function') {\n\t\t\t window.almOnChange(alm);\n\t\t\t}\n\t \n if (!alm.disable_ajax) { // Check for ajax blocker\n if (!alm.addons.paging) {\n alm.button.classList.add('loading');\n if (alm.button_loading_label !== false) {\n alm.button.innerHTML = alm.button_loading_label;\n }\n }\n alm.main.classList.add('alm-loading');\n alm.loading = true;\n \n if (alm.addons.cache === 'true' && !alm.addons.cache_logged_in) {\n // Cache \n let cache_page = almGetCacheUrl(alm); \n if(cache_page){ \n \n // Load `.html` page\n axios.get(cache_page)\n .then(response => {\n // Exists\n alm.AjaxLoadMore.success(response.data, true);\n } \n )\n .catch(function (error) { \n // Error || Page does not yet exist\n \t\t\t\t\talm.AjaxLoadMore.ajax('standard');\n \t\t\t\t\t//console.warn(error.message); \t\t\t\t\t\n \t\t\t\t});\n \t\t\t\t\n \t\t\t\t} else {\n \t\t\t\t// Standard ALM query\n \t\t\t\talm.AjaxLoadMore.ajax('standard');\n \t\t\t\t} \n \t\t\t\t \t\n } else { \n // Standard ALM query\n alm.AjaxLoadMore.ajax('standard');\n \n }\n }\n };\n\n\n /* ajax()\n * Ajax Load Moe Ajax function\n *\n * @param queryType The type of Ajax request (standard/totalposts)\n * @since 2.6.0\n */\n\n alm.AjaxLoadMore.ajax = function(queryType) {\n\n // Default ALM action\n let action = 'alm_get_posts';\n\n // ACF Params\n alm.acf_array = '';\n if (alm.extensions.acf) {\n // Custom query for the Repeater / Gallery / Flexible Content field types\n if (alm.extensions.acf_field_type !== 'relationship') {\n action = 'alm_acf';\n }\n alm.acf_array = {\n 'acf': 'true',\n 'post_id': alm.extensions.acf_post_id,\n 'field_type': alm.extensions.acf_field_type,\n 'field_name': alm.extensions.acf_field_name,\n 'parent_field_name': alm.extensions.acf_parent_field_name\n };\n }\n\n // Nextpage Params\n alm.nextpage_array = '';\n if (alm.addons.nextpage) {\n action = 'alm_nextpage';\n alm.nextpage_array = {\n 'nextpage': 'true',\n 'urls': alm.addons.nextpage_urls,\n 'scroll': alm.addons.nextpage_scroll,\n 'pageviews': alm.addons.nextpage_pageviews,\n 'post_id': alm.addons.nextpage_post_id,\n 'startpage': alm.addons.nextpage_startpage\n };\n }\n\n // Previous Post Params\n alm.single_post_array = '';\n if (alm.addons.single_post) {\n alm.single_post_array = {\n 'single_post': 'true',\n 'id': alm.addons.single_post_id,\n 'slug': alm.addons.single_post_slug,\n };\n }\n\n // Comment Params\n alm.comments_array = '';\n if (alm.addons.comments === 'true') {\n action = 'alm_comments';\n alm.posts_per_page = alm.addons.comments_per_page;\n alm.comments_array = {\n 'comments': 'true',\n 'post_id': alm.addons.comments_post_id,\n 'per_page': alm.addons.comments_per_page,\n 'type': alm.addons.comments_type,\n 'style': alm.addons.comments_style,\n 'template': alm.addons.comments_template,\n 'callback': alm.addons.comments_callback,\n };\n }\n\n // Users Params\n alm.users_array = '';\n if (alm.addons.users) {\n action = 'alm_users';\n alm.users_array = {\n 'users': 'true',\n 'role': alm.listing.dataset.usersRole,\n 'include': alm.listing.dataset.usersInclude,\n 'exclude': alm.listing.dataset.usersExclude,\n 'per_page': alm.posts_per_page,\n 'order': alm.listing.dataset.usersOrder,\n 'orderby': alm.listing.dataset.usersOrderby,\n };\n }\n\n // CTA Params\n alm.cta_array = '';\n if (alm.addons.cta === 'true') {\n alm.cta_array = {\n 'cta': 'true',\n 'cta_position': alm.addons.cta_position,\n 'cta_repeater': alm.addons.cta_repeater,\n 'cta_theme_repeater': alm.addons.cta_theme_repeater,\n };\n }\n \n\n // REST API\n if (alm.extensions.restapi) {\n alm.AjaxLoadMore.restapi(alm, action, queryType);\n }\n else if(alm.addons.tabs){\n\t alm.AjaxLoadMore.tabs(alm);\n }\n\n // Standard ALM\n else {\t \n\t alm.AjaxLoadMore.adminajax(alm, action, queryType); \n }\n \n };\n \n \n \n /** \n\t * adminajax\n * Send request to the admin-ajax.php\n *\n * @param {*} alm | ALm object\n * @param {*} action | Ajax action\n * @param {*} queryType\n * @since 5.0.0\n */\n alm.AjaxLoadMore.adminajax = function(alm, action, queryType){\n\t \n\t if (alm.page != 1 && !alm.addons.paging) {\n alm.button.classList.add('loading');\n } \n \n // Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config; \n\t\t\t});\t\t\t \n \n // Get admin-ajax.php URL \n let ajaxURL = alm_localize.ajaxurl; \n\n\t\t\t// Get data params\n let params = queryParams.almGetAjaxParams(alm, action, queryType); // [./helpers/queryParams.js\n \n // Send HTTP request via Axios\n axios.get(ajaxURL, {params})\n .then(function(response){\n // Success \n let data = response.data; // Get data from response\n \n // Standard Query\n if (queryType === 'standard') {\n alm.AjaxLoadMore.success(data, false);\n \n } else if (queryType === 'totalpages' && alm.addons.paging && alm.addons.nextpage) {\n // Next Page and Paging\n if (typeof almBuildPagination === 'function') {\n window.almBuildPagination(data.totalpages, alm);\n }\n \n } else if (queryType === 'totalposts' && alm.addons.paging) {\n // Paging\n if (typeof almBuildPagination === 'function') {\n window.almBuildPagination(data.totalposts, alm);\n }\n }\n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'adminajax'); \n \t\t\t\t\t\n\t\t\t}); \n };\n \n \n \n /** \n\t * tabs\n * Send request to the WP REST API\n *\n * @param {*} alm | ALm object\n * @since 5.2.0\n */\n alm.AjaxLoadMore.tabs = function(alm){\n\t \n let alm_rest_url = `${alm.addons.tabs_resturl}ajaxloadmore/tab`; \n \n let params = {\n\t\t\t\tpost_id : alm.post_id,\n\t\t\t\ttemplate: alm.addons.tab_template\n }\n\n\t\t\t// Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config;\n\t\t\t}); \n \n // Send Ajax request\n axios.get(alm_rest_url, {params})\n .then(function(response){\n\t \n // Success \n let results = response.data; // Get data from response\n\t\t\t\tlet html = results.html;\n \n // Create object to pass to success()\n let obj = {\n 'html': html,\n 'meta': {\n 'postcount': 1,\n 'totalposts': 1\n },\n };\n alm.AjaxLoadMore.success(obj, false); // Send data\n \n \n // Callback to Tabs add-on\n if (typeof almTabLoaded === 'function') {\n window.almTabLoaded(alm);\n }\n \n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'restapi'); \n \t\t\t\t\t\n\t\t\t});\n\t\t\t\n };\n \n \n \n /** \n\t * restapi\n * Send request to the WP REST API\n *\n * @param {*} alm | ALm object\n * @param {*} action | Ajax action\n * @param {*} queryType\n * @since 5.0.0\n */\n alm.AjaxLoadMore.restapi = function(alm, action, queryType){\n\t \n\t let alm_rest_template = wp.template(alm.extensions.restapi_template_id);\n let alm_rest_url = `${alm.extensions.restapi_base_url}/${alm.extensions.restapi_namespace}/${alm.extensions.restapi_endpoint}`; \n let params = queryParams.almGetRestParams(alm); // [./helpers/queryParams.js]\n\n\t\t\t// Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config;\n\t\t\t}); \n \n // Send Ajax request\n axios.get(alm_rest_url, {params})\n .then(function(response){\n // Success \n let results = response.data; // Get data from response\n\t\t\t\tlet data = '',\n\t\t\t\t\t html = results.html,\n\t\t\t\t\t meta = results.meta,\n\t\t\t\t\t postcount = meta.postcount,\n\t\t\t\t\t totalposts = meta.totalposts;\n \n \n // loop results to get data from each\n for(let i = 0; i < html.length; i++){\n\t let result = html[i];\n if (alm.restapi_debug === 'true') { // If debug\n console.log(result);\n }\n data += alm_rest_template(result);\n }\n \n // Create object to pass to success()\n let obj = {\n 'html': data,\n 'meta': {\n 'postcount': postcount,\n 'totalposts': totalposts\n },\n };\n alm.AjaxLoadMore.success(obj, false); // Send data\n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'restapi'); \n \t\t\t\t\t\n\t\t\t});\n\t\t\t\n };\n\n\n\n // If pagination enabled, run totalposts query\n if (alm.addons.paging) {\n if (alm.addons.nextpage) {\n alm.AjaxLoadMore.ajax('totalpages'); // Create paging menu and query for total pages\n } else {\n alm.AjaxLoadMore.ajax('totalposts'); // Create paging menu and query for total posts\n }\n }\n\n\n\n /** \n\t * success\n * Success function after loading data\n *\n * @param data The results of the Ajax request\n * @param is_cache Are results of the Ajax request coming from cache\n * @since 2.6.0\n */\n alm.AjaxLoadMore.success = function(data, is_cache) {\n\n if (alm.addons.single_post) { // Get previous page data\n alm.AjaxLoadMore.getSinglePost();\n }\n\n\t\t\tlet isPaged = false;\n\t\t\t \n // Create `.alm-reveal` element \n //let reveal = document.createElement('div');\n let reveal = (alm.container_type === 'table') ? document.createElement('tbody') : document.createElement('div');\n alm.el = reveal;\n reveal.style.opacity = 0;\n reveal.style.height = 0;\n reveal.style.outline = 'none';\n \n\t\t\t// Paging container\n let pagingContent = alm.listing.querySelector('.alm-paging-content');\n\t\t\t\n var html, meta, total;\n\n if (is_cache) {\n // If Cache, do not look for json data as we won't be querying the DB.\n html = data;\n \n } else {\n // Standard ALM query results\n html = data.html;\n meta = data.meta; \n alm.posts = (alm.addons.paging) ? meta.postcount : alm.posts + meta.postcount;\n total = meta.postcount;\n alm.totalposts = meta.totalposts;\n alm.totalposts = (alm.addons.preloaded === 'true') ? alm.totalposts - alm.addons.preloaded_amount : alm.totalposts;\n alm.debug = (meta.debug) ? meta.debug : '';\n } \n\n\t\t\t// Set alm.html as plain text return\n alm.html = html; \n\n // If cache, get the length of the html object\n total = (is_cache) ? almDomParser(html).length : total;\n\n // First Run Only\n if (alm.init) {\n\t // Set Meta\t\t \n if (meta) {\n alm.main.dataset.totalPosts = (meta.totalposts) ? meta.totalposts : 0;\n } \n // Paging\t \n if (alm.addons.paging && total > 0) { \n\t // Add paging containers and content\n\t\t\t\t\talm.AjaxLoadMore.pagingInit(html, 'alm-reveal');\n }\n // ALM Empty\n if (total === 0) {\n if (alm.addons.paging) {\n if (typeof almPagingEmpty === 'function') {\n window.almPagingEmpty(alm);\n }\n }\n if (typeof almEmpty === 'function') {\t \n window.almEmpty(alm);\n }\n if(alm.no_results){\n\t almNoResults(alm.content, alm.no_results);\n }\n }\n\n // isPaged\n if (alm.isPaged) {\n // Reset the posts_per_page parameter\n alm.posts_per_page = (alm.users) ? alm.listing.dataset.usersPerPage : alm.listing.dataset.postsPerPage;\n // SEO add-on\n alm.page = (alm.start_page) ? alm.start_page - 1 : alm.page; // Set new page #\n // Filters add-on \n if (alm.addons.filters) {\n if (alm.addons.filters_startpage > 0) {\n alm.page = alm.addons.filters_startpage - 1; // Set new page # \n alm.posts_per_page = alm.listing.dataset.postsPerPage; // Reset `filters-startpage` data after the first run\n }\n } \n }\n } \n\t\t\t\n\t\t\t\n\t\t\t/*\n * Display alm_debug results\n */ \n almDebug(alm);\n\n\n /*\n * Set localized variables\n */ \n setLocalizedVars(alm); \n \n \n /*\n * Render results\n */\n \n if (total > 0) {\n\n // We have results! \n\n if (!alm.addons.paging) {\n\t\t\t\t\t\n if (alm.addons.single_post) { \n\t \n\t // Single Posts \n reveal.setAttribute('class', 'alm-reveal alm-single-post post-' + alm.addons.single_post_id + alm.tcc);\n reveal.dataset.url = alm.addons.single_post_permalink;\n reveal.dataset.page = alm.page;\n reveal.dataset.id = alm.addons.single_post_id;\n reveal.dataset.title = alm.addons.single_post_title; \n reveal.innerHTML = alm.html;\n \n } else {\n\n if (!alm.transition_container) { // No transition container\n\t \n\t \talm.el = alm.html; \n reveal = (alm.container_type === 'table') ? almTableWrap(alm.html) : almDomParser(alm.html, 'text/html');\n\n } else { // Standard container\n\n let pagenum;\n let querystring = window.location.search;\n let seo_class = (alm.addons.seo) ? ' alm-seo' : '';\n let filters_class = (alm.addons.filters) ? ' alm-filters' : '';\n let preloaded_class = (alm.is_preloaded) ? ' alm-preloaded' : '';\n\n // SEO and Filter Paged\n if (alm.init && (alm.start_page > 1 || alm.addons.filters_startpage > 0)) {\t \n // loop through items and break into separate .alm-reveal divs for paging \n\n let return_data = [];\n let container_array = [];\n let posts_per_page = parseInt(alm.posts_per_page);\n let pages = Math.ceil(total / posts_per_page);\n isPaged = true;\n \n\n // Call to Actions\n if (alm.addons.cta === 'true') {\n posts_per_page = posts_per_page + 1; // Add 1 to posts_per_page for CTAs\n pages = Math.ceil(total / posts_per_page); // Update pages var with new posts_per_page\n total = pages + total; // Get new total w/ CTAs added\n } \n\n\n // Parse returned HTML and strip empty nodes\n let data = stripEmptyNodes(almDomParser(alm.html, 'text/html') );\n \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t// Slice data array into individual pages (array)\n for (var i = 0; i < total; i += posts_per_page) {\n return_data.push(data.slice(i, posts_per_page + i));\n }\n\n // Loop return_data array to build .alm-reveal containers\n for (var k = 0; k < return_data.length; k++) {\n\n let p = (alm.addons.preloaded === 'true') ? 1 : 0; // Add 1 page if items are preloaded.\n let alm_reveal = document.createElement('div');\n\n if (k > 0 || alm.addons.preloaded === 'true') {\n \n pagenum = (k + 1 + p); // > Paged\n\n\t\t\t\t\t\t\t\t\t\tif(alm.addons.seo){ // SEO\n\t if (alm.addons.seo_permalink === 'default') {\n\t\t\t\t\t\t\t\t\t\t\t\t// Default Permalinks\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + querystring + '&paged=' + pagenum;\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n\t } else {\n\t\t\t\t\t\t\t\t\t\t\t\t// Pretty Permalinks\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.addons.seo_leading_slash + 'page/' + pagenum + alm.addons.seo_trailing_slash + querystring;\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n\t }\n }\n \n if(alm.addons.filters){ // Filters\n \talm_reveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, pagenum);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n } \n\n } else {\n\t \t \n // First Page \n if(alm.addons.seo){\n\t // SEO\n\t alm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t alm_reveal.dataset.url = alm.canonical_url + querystring;\n\t\t alm_reveal.dataset.page = '1';\n\t\t \n } \n if(alm.addons.filters){\n\t // Filters\n \talm_reveal.setAttribute('class', 'alm-reveal' + filters_class + preloaded_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, 0);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = '1';\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n } \n } \n \n \n // Append children to `.alm-reveal` element\n almAppendChildren(alm_reveal, return_data[k]);\n \n // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm_reveal, alm.ua);\n \n \n // Push alm_reveal elements into container_array\n container_array.push(alm_reveal);\n \n }\n \n\n // Set opacity and height of .alm-listing div to allow for fadein.\n alm.listing.style.opacity = 0;\n alm.listing.style.height = 0;\n \n\n // Append container_array to `.alm-listing` \n almAppendChildren(alm.listing, container_array);\n \n reveal = alm.listing;\n alm.el = reveal;\n\n }\n // End Init & SEO\n \n else {\n\t \n\t // Preloaded OR SEO (and Paged)\n if (alm.addons.seo && alm.page > 0 || alm.addons.preloaded === 'true') {\n\n let p2 = (alm.addons.preloaded === 'true') ? 1 : 0; // Add 1 page if items are preloaded.\n\n // SEO [Paged]\n pagenum = (alm.page + 1 + p2);\n\n if (alm.addons.seo) {\n // SEO\n if (alm.addons.seo_permalink === 'default') {\n\t // Default Permalinks\n\t reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t reveal.dataset.url = alm.canonical_url + querystring + '&paged=' + pagenum;\n\t\t reveal.dataset.page = pagenum;\n \n } else {\n\t // Pretty Permalinks\n\t reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t reveal.dataset.url = alm.canonical_url + alm.addons.seo_leading_slash + 'page/' + pagenum + alm.addons.seo_trailing_slash + querystring;\n\t\t reveal.dataset.page = pagenum;\n \n }\n\n } else if (alm.addons.filters) {\n // Filters \n\t\t\t\t\t\t\t\t\t\treveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\treveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, pagenum);\n\t\t\t\t\t\t\t\t\t\treveal.dataset.page = pagenum;\n \n } else { \n // Basic ALM\n reveal.setAttribute('class', 'alm-reveal' + alm.tcc);\n \n }\n\n } else if (alm.addons.filters) {\n\t \n // Filters\n\t\t\t\t\t\t\t\t\treveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\treveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, parseInt(alm.page) + 1);\n\t\t\t\t\t\t\t\t\treveal.dataset.page = parseInt(alm.page) + 1;\n \n } else {\n\n if (alm.addons.seo) {\n // SEO [Page 1] \n reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n reveal.dataset.url = alm.canonical_url + querystring;\n reveal.dataset.page = '1';\n \n } else {\n // Basic ALM \n reveal.setAttribute('class', 'alm-reveal' + alm.tcc); \n }\n\n }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\treveal.innerHTML = alm.html;\n \n }\n \n }\n \n }\n\n\n // Append `reveal` div to ALM Listing container\n // Do not append when transtion == masonry OR init and !preloaded\n if (alm.transition !== 'masonry' || (alm.init && !alm.is_masonry_preloaded)) {\n\t \n\t if(!isPaged){ \t \n \t if(!alm.transition_container){ \n\t \t // No transition container \t \n \t if (alm.images_loaded === 'true') {\t \n \t imagesLoaded( reveal, function() {\n \t\t almAppendChildren(alm.listing, reveal);\n \t\t // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm.listing, alm.ua);\n \t\t }); \t\t \n } else {\n almAppendChildren(alm.listing, reveal);\n // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm.listing, alm.ua);\n } \t \n \t \n \t } else { \n\t \t // Standard container\n \t alm.listing.appendChild(reveal);\n \t \n \t }\t \t \t\n\t }\n\t \n }\n\t\t\t\t\t\n\t\t\t\t\t// *****\n // Transitions\t\n // *****\t\t\t\n\t\t\t\t\t\n\n // Masonry\n if (alm.transition === 'masonry') {\n alm.el = alm.listing;\n almMasonry(alm, alm.init, alm_is_filtering);\n alm.masonry_init = false;\n alm.AjaxLoadMore.transitionEnd();\n\n }\n \n // None\n else if (alm.transition === 'none') { \n if (alm.images_loaded === 'true') {\t \n\t imagesLoaded( reveal, function() {\n\t\t\t\t\t\t\t\talmFadeIn(reveal, 0);\n\t\t\t\t\t\t\t\talm.AjaxLoadMore.transitionEnd();\n\t\t });\n\t\t \n } else {\n almFadeIn(reveal, 0);\n alm.AjaxLoadMore.transitionEnd();\n }\n }\n \n // Fade transition (default)\n else {\n if (alm.images_loaded === 'true') {\t \n\t imagesLoaded( reveal, function() {\n\t\t if (alm.transition_container) {\n almFadeIn(reveal, alm.speed);\n }\n alm.AjaxLoadMore.transitionEnd();\n\t\t });\n\t\t \n } else {\n if (alm.transition_container) {\n almFadeIn(reveal, alm.speed);\n }\n alm.AjaxLoadMore.transitionEnd();\n }\n }\n \n \n // *****\n // TABS - Trigger almTabsSetHeight callback in Tabs add-on\n // *****\n\t\t\t\t\tif (typeof almTabsSetHeight === 'function') {\n\t\t\t\t\t\tif (alm.images_loaded === 'true') {\n \t\t\t\t\t\timagesLoaded( reveal, function() {\n \t\t\t\t\t\tsetTimeout(function(){\t \n almFadeIn(alm.listing, alm.speed);\n setTimeout(function(){ \n\t\t\t\t\t\t window.almTabsSetHeight(alm);\n }, alm.speed);\n\t\t\t\t\t\t }, alm.speed + 1);\n\t\t\t\t\t\t });\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetTimeout(function(){\n almFadeIn(alm.listing, alm.speed);\n setTimeout(function(){ \n\t\t\t\t\t window.almTabsSetHeight(alm);\n }, alm.speed);\n\t\t\t\t\t\t\t}, alm.speed + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\n } else {\n\n // Paging \n if (!alm.init) {\n\t \n\t if(pagingContent){ \n\t\t \n\t\t almFadeOut(pagingContent, alm.speed);\n \t\t\t \n \t\t\t pagingContent.style.outline = 'none'; \n \t\t alm.main.classList.remove('alm-loading');\t\t \n\n\t\t setTimeout(function(){\t\t\n \t\t \t\t\n\t\t\t\t\t\t\t\tpagingContent.style.opacity = 0;\n pagingContent.innerHTML = alm.html;\n \t\t\t\t\t\t\t\t\n\t\t\t imagesLoaded( pagingContent, function() { \t\t\t\t\t\t\t\t\n \t\t\t\t\t\t\t\t\n\t\t // Delay for effect \n\t alm.AjaxLoadMore.triggerAddons(alm);\n\t almFadeIn(pagingContent, alm.speed);\n\t \n\t // Remove opacity on element to fix CSS transition\n\t setTimeout(function(){\t \t \t\n\t\t \tpagingContent.style.opacity = '';\n\t\t }, parseInt(alm.speed) + 25); \n \t\t\t\t\t\t\t\t\n\t\t\t\t // Paging addon\n\t\t if (typeof almOnPagingComplete === 'function') {\n\t\t window.almOnPagingComplete(alm);\n\t\t } \t \n \t \n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\n\t\t }, parseInt(alm.speed) + 25); \n\t }\n\n } else {\n\t \n\t // almMasonry(alm, alm.init, alm_is_filtering);\n \n setTimeout(function(){\n alm.main.classList.remove('alm-loading');\n alm.AjaxLoadMore.triggerAddons(alm);\n }, alm.speed); \n\n }\n // End Paging\n\n }\n \n \n\t\t\t\t// almFiltersOnload [Filters Add-on hook]\n\t\t\t\tif(typeof almFiltersOnload === 'function' && alm.init){\n\t\t\t\t\twindow.almFiltersOnload(alm);\n\t\t\t\t}\t\t\t\t\t\t\n\t\t\t\t\n \n // ALM Complete / Nested\n if (alm.images_loaded === 'true') {\n imagesLoaded( reveal, function() {\n alm.AjaxLoadMore.nested(reveal); // Nested\t\t\t\t\t\t\n\t\t\t\t\t\tinsertScript.init(alm.el); // Run script inserter\n if (typeof almComplete === 'function') {\n \twindow.almComplete(alm);\n }\n });\n \n } else {\n alm.AjaxLoadMore.nested(reveal); // Nested\n\t\t\t\t\tinsertScript.init(alm.el); // Run script inserter\n if (typeof almComplete === 'function') {\n \twindow.almComplete(alm);\n }\n \n }\n // End ALM Complete / Nested\n \n\n // ALM Done\n if (!alm.addons.cache) {\n\t // Not Cache & Previous Post\n if (alm.posts >= alm.totalposts && !alm.addons.single_post) {\n alm.AjaxLoadMore.triggerDone();\n }\n } else { // Cache \n if (total < alm.posts_per_page) {\n alm.AjaxLoadMore.triggerDone();\n }\n }\n // End ALM Done\n\n\n } \n \n \n /*\n * No results from Ajax\n */\n else { \n\n if (!alm.addons.paging) {\n // Add .done class, reset btn text\n setTimeout(function() {\n alm.button.classList.remove('loading');\n alm.button.classList.add('done');\n }, alm.speed);\n alm.AjaxLoadMore.resetBtnText();\n }\n\n alm.AjaxLoadMore.triggerDone(); // ALM Done\n\n } \n\n\n // Destroy After\n if (alm.destroy_after !== undefined && alm.destroy_after !== '') {\n var currentPage = alm.page + 1; // Add 1 because alm.page starts at 0\n currentPage = (alm.addons.preloaded === 'true') ? currentPage++ : currentPage; // Add 1 for preloaded\n if (currentPage == alm.destroy_after) { // Disable ALM if page = alm.destroy_after val\n alm.AjaxLoadMore.destroyed();\n }\n }\n \n\t\t\t\n\t\t\t// Set Focus for A11y\n\t\t\tif(alm.transition_container && total > 0){\n\t\t\t\tif(alm.addons.paging){\n \t\t\t\t// Paging\n\t\t\t \tsetFocus(alm.init, alm.addons.preloaded, alm.listing, alm_is_filtering);\n\t\t\t \t\n\t\t\t } else if(alm.addons.single_post || alm.addons.nextpage){\n \t\t\t // Single Posts OR Next Page, set `init` to false to trigger focus\n\t\t \t setFocus(false, alm.addons.preloaded, reveal, alm_is_filtering);\n\t\t \t \n } else {\n // Standard ALM\n\t\t \t setFocus(alm.init, alm.addons.preloaded, reveal, alm_is_filtering); \n }\n\t\t\t} else if(!alm.transition_container && alm.container_type === 'table'){\n \t\t\t\n \t\t\t// Table Layout\n\t\t \tsetFocus(alm.init, alm.addons.preloaded, reveal[0], alm_is_filtering);\n\t\t\t}\n \n \n // Comment Reply Fix\n if(alm.addons.comments === 'true'){ \n commentReplyFix(alm.listing);\n } \n \n \n // Remove filtering class\n if(alm.main.classList.contains('alm-is-filtering')){\n alm.main.classList.remove('alm-is-filtering');\n } \n \n \n // Set flags\n alm_is_filtering = alm.init = false;\n\n };\n\n\t\t\n\n /**\n\t * pagingPreloadedInit\n * First run for Paging + Preloaded add-ons\n * Moves preloaded content into ajax container\n *\n * @param {data} Results of the Ajax request\n * @since 2.11.3\n */\n alm.AjaxLoadMore.pagingPreloadedInit = function(data) {\n\n data = (data == null) ? '' : data; // Check for null data object\n\n // Add paging containers and content\n\t alm.AjaxLoadMore.pagingInit(data, 'alm-reveal'); \n\n if (data === '') {\n if (typeof almPagingEmpty === 'function') {\n window.almPagingEmpty(alm);\n }\n if (typeof almEmpty === 'function') {\n window.almEmpty(alm);\n }\n if(alm.no_results){\n almNoResults(alm.content, alm.no_results);\n }\n }\n \n };\n\n\n\n /** \n\t * pagingNextpageInit\n * First run for Paging + Next Page add-ons\n * Moves .alm-nextpage content into ajax container\n *\n * @param {data} Results of Ajax request\n * @since 2.14.0\n */\n alm.AjaxLoadMore.pagingNextpageInit = function(data) {\n\t \n\t data = (data == null) ? '' : data; // Check for null data object\n\t \n\t // Add paging containers and content\n\t alm.AjaxLoadMore.pagingInit(data, 'alm-reveal alm-nextpage'); \n\t\t\t\n\t\t\t// Set up Nextpage Vars\n if (typeof almSetNextPageVars === 'function') {\n window.almSetNextPageVars(alm); // Next Page Add-on\n }\n \n };\n \n \n \n /**\n\t * pagingInit\n * First run for Paging + (Preloaded & Next Page) add-ons. Create required containers.\n *\n * @param {data} Ajax results\n * @param {classes} added classes\n * @since 5.0\n */\n alm.AjaxLoadMore.pagingInit = function(data, classes = 'alm-reveal'){\n\t \n\t data = (data == null) ? '' : data; // Check for null data object\n\t \n\t // Create `alm-reveal` container\n\t \tlet reveal = document.createElement('div');\n\t reveal.setAttribute('class', classes);\t \n\t \n\t // Create `alm-paging-loading` container\n\t let content = document.createElement('div');\n\t content.setAttribute('class', 'alm-paging-content' + alm.tcc);\t\n\t content.innerHTML = data; \t \n\t reveal.appendChild(content); \n\t \n\t // Create `alm-paging-content` container\n\t let loader = document.createElement('div');\n\t loader.setAttribute('class', 'alm-paging-loading');\t \t\n\t reveal.appendChild(loader); \n\t \n\t // Add div to container\n\t alm.listing.appendChild(reveal); \n \n // Get/Set height of .alm-listing div\n\t let styles = window.getComputedStyle(alm.listing);\n\t let pTop = parseInt(styles.getPropertyValue('padding-top').replace('px', ''));\n\t let pBtm = parseInt(styles.getPropertyValue('padding-bottom').replace('px', ''));\n\t let h = reveal.offsetHeight;\n\t \n\t // Set initial `.alm-listing` height\n alm.listing.style.height = h + pTop + pBtm + 'px'; \n \n // Reset button text\n alm.AjaxLoadMore.resetBtnText(); \n \n // Delay reveal of paging to avoid positioning issues\n setTimeout(function() {\t \n if (typeof almFadePageControls === 'function') {\n window.almFadePageControls(alm.btnWrap);\n }\n if (typeof almOnWindowResize === 'function') {\n window.almOnWindowResize(alm);\n } \t \n\t\t // Remove loading class from main container\n\t alm.main.classList.remove('loading'); \t\t\t\t\n }, alm.speed);\n \n };\n\n\n /**\n *\tnested\n *\tAutomatically trigger nested ALM instances (Requies `.alm-reveal` container\n *\n * @param {object} instance\n * @since 5.0\n */\n alm.AjaxLoadMore.nested = function(reveal) {\n\t if(!reveal || !alm.transition_container){\n\t\t return false; // Exit if not `transition_container`\n\t }\n let nested = reveal.querySelectorAll('.ajax-load-more-wrap'); // Get all instances from jQuery obj\n if (nested) {\n nested.forEach(function(element) {\n window.almInit(element);\n });\n }\n };\n\n\n\n /**\n\t * fetchingPreviousPost\n\t * Get the previous post ID via ajax\n\t *\n * @since 2.7.4\n */\n\n if (alm.addons.single_post_id) {\n alm.fetchingPreviousPost = false;\n alm.addons.single_post_init = true;\n }\n\n alm.AjaxLoadMore.getSinglePost = function() {\t\n\t \n\t\t\tlet action = 'alm_get_single'; \n\t \n\t if(alm.fetchingPreviousPost){\n\t\t return false;\n\t }\n\t \n alm.fetchingPreviousPost = true;\n \n // Get admin-ajax.php URL \n let ajaxURL = alm_localize.ajaxurl; \n \n\t\t\t// Get data params \n let params = {\n id: alm.addons.single_post_id,\n initial_id: alm.addons.single_post_init_id,\n order: alm.addons.single_post_order,\n taxonomy: alm.addons.single_post_taxonomy,\n excluded_terms: alm.addons.single_post_excluded_terms,\n post_type: alm.post_type,\n init: alm.addons.single_post_init,\n action: action\n };\n \n // Send HTTP request via Axios\n axios.get(ajaxURL, {params})\n .then(function(response){\n // Success\n \n let data = response.data; // Get data from response\n \n if (data.has_previous_post) {\n alm.listing.dataset.singlePostId = data.prev_id; // Update single-post-id on instance\n alm.addons.single_post_id = data.prev_id;\n alm.addons.single_post_permalink = data.prev_permalink;\n alm.addons.single_post_title = data.prev_title;\n alm.addons.single_post_slug = data.prev_slug;\n\n } else {\n if (!data.has_previous_post) {\n alm.AjaxLoadMore.triggerDone();\n }\n }\n if (typeof window.almSetSinglePost === 'function') {\n window.almSetSinglePost(alm, data.current_id, data.permalink, data.title);\n }\n alm.fetchingPreviousPost = false;\n alm.addons.single_post_init = false;\n \n })\n .catch(function (error) { \n // Error\n \n alm.AjaxLoadMore.error(error, 'getSinglePost');\n alm.fetchingPreviousPost = false; \n \t\t\t\t\t\n\t\t\t});\n\n };\n\n\n\n /**\n\t * triggerAddons\n *\n * Triggers various add-on functions (if available) after load complete.\n * @since 2.14.0\n */\n alm.AjaxLoadMore.triggerAddons = function(alm) {\n if (typeof almSEO === \"function\") { // SEO\n window.almSEO(alm, false);\n }\n if (typeof almSetNextPage === 'function') { // Next Page\n window.almSetNextPage(alm);\n } \n };\n\n\n\n /** \n\t * triggerDone\n *\n * Fires the almDone() function (if available).\n * @since 2.11.3\n */\n alm.AjaxLoadMore.triggerDone = function() {\n alm.loading = false;\n alm.finished = true;\n if (!alm.addons.paging) {\n alm.button.classList.add('done');\n alm.button.disabled = true;\n }\n if (typeof almDone === 'function') {\n // Delay done until animations complete\n setTimeout(function() {\n window.almDone(alm);\n }, alm.speed + 10);\n }\n };\n\n\n\n /** \n\t * resetBtnText\n\t * Resets the loading button text after loading has completed\n\t *\n * @since 2.8.4\n */\n alm.AjaxLoadMore.resetBtnText = function() {\n if (alm.button_loading_label !== false && !alm.addons.paging) { // Reset button text\n alm.button.innerHTML = alm.button_label;\n }\n };\n\n\n\n /** \n * Ajax Error\n * Error function after failed data\n * \n * @since 2.6.0\n */\n alm.AjaxLoadMore.error = function(error, location = null) {\n alm.loading = false;\n if (!alm.addons.paging) {\n alm.button.classList.remove('loading');\n alm.AjaxLoadMore.resetBtnText();\n }\n \n if (error.response) {\n // The request was made and the server responded with a status code\n // that falls out of the range of 2xx\n //console.log(error.response.data);\n //console.log(error.response.status);\n //console.log(error.response.headers);\n console.log('Error: ', error.message);\n } else if (error.request) {\n // The request was made but no response was received\n // `error.request` is an instance of XMLHttpRequest in the browser and an instance of\n // http.ClientRequest in node.js\n console.log(error.request);\n } else {\n // Something happened in setting up the request that triggered an Error\n console.log('Error: ', error.message);\n }\n \n \n if(location){\n console.log('ALM Error started in '+ location);\n }\n\t\t\t\n\t\t\tif(error.config){\n \tconsole.log('ALM Error Debug: ', error.config);\n }\n \n };\n\n\n\n /** \n * click\n * Button click handler to load posts \n * \n * @since 4.2.0\n */\n alm.AjaxLoadMore.click = function(e) {\n let button = e.target || e.currentTarget;\n if (alm.pause === 'true') {\n alm.pause = false;\n alm.pause_override = false;\n alm.AjaxLoadMore.loadPosts();\n }\n if (!alm.loading && !alm.finished && !button.classList.contains('done')) {\n alm.loading = true;\n alm.page++;\n alm.AjaxLoadMore.loadPosts();\n }\n };\n\n\n\n /**\n\t * Button Click Event\n * Load more button click event \n * \n * @since 1.0.0\n */\n\n if (!alm.addons.paging && !alm.fetchingPreviousPost) {\n alm.button.onclick = alm.AjaxLoadMore.click;\n }\n\n\n\n /**\n\t * Window Resize\n * Add resize function for Paging & Tabs add-ons.\n * \n * @since 2.1.2\n * @updated 5.2\n */\n if (alm.addons.paging || alm.addons.tabs) {\n let resize;\n alm.window.onresize = function() {\n clearTimeout(resize);\n resize = setTimeout(function(e) {\n\t if(alm.addons.tabs){ // Tabs\n\t if (typeof almOnTabsWindowResize === 'function') {\n\t window.almOnTabsWindowResize(alm);\n\t }\n }\n\t if(alm.addons.paging){ // Paging\n\t if (typeof almOnWindowResize === 'function') {\n\t window.almOnWindowResize(alm);\n\t }\n }\n }, alm.speed);\n };\n }\n\n\n\n /**\n\t * isVisible\n * Check to see if element is visible before loading posts\n *\n * @since 2.1.2\n */\n\n alm.AjaxLoadMore.isVisible = function() {\n // Check for a width and height to determine visibility \n alm.visible = (alm.main.clientWidth > 0 && alm.main.clientHeight > 0) ? true : false;\n return alm.visible;\n };\n\n\n\n /**\n\t * scroll \n * Load posts as user scrolls the page\n *\n * @since 1.0\n * @updated 4.2.0\n */ \n alm.AjaxLoadMore.scroll = function() {\n\n if (alm.timer) {\n clearTimeout(alm.timer);\n }\n\n alm.timer = setTimeout(function() {\n if (alm.AjaxLoadMore.isVisible() && !alm.fetchingPreviousPost) {\n let trigger = alm.trigger.getBoundingClientRect();\n let btnPos = Math.round(trigger.top - alm.window.innerHeight) + alm.scroll_distance;\n let scrollTrigger = (btnPos <= 0) ? true : false;\n\n // Scroll Container\n if (alm.window !== window) {\n let scrollInstance = alm.window.querySelector('.ajax-load-more-wrap'); // ALM inside the container\n let scrollHeight = scrollInstance.offsetHeight; // ALM height\n let scrollPosition = Math.round(alm.window.scrollTop + alm.window.offsetHeight - alm.scroll_distance); // How far user has scrolled\t\n scrollTrigger = (scrollHeight <= scrollPosition) ? true : false;\n }\n\n // If Pause && Pause Override\n if (!alm.loading && !alm.finished && scrollTrigger && alm.page < (alm.max_pages - 1) && alm.proceed && alm.pause === 'true' && alm.pause_override === 'true') {\n alm.button.click();\n }\n\n // Standard Scroll\n else {\n if (!alm.loading && !alm.finished && scrollTrigger && alm.page < (alm.max_pages - 1) && alm.proceed && alm.pause !== 'true') {\n alm.button.click();\n }\n }\n }\n \n }, 25);\n };\n \n\n // Add scroll eventlisteners, only when needed\n if (alm.scroll && !alm.addons.paging) {\n if (alm.scroll_container !== '') { // Scroll Container \n alm.window = (document.querySelector(alm.scroll_container)) ? document.querySelector(alm.scroll_container) : alm.window;\n }\n alm.window.addEventListener('scroll', alm.AjaxLoadMore.scroll); // Scroll\n alm.window.addEventListener('touchstart', alm.AjaxLoadMore.scroll); // Touch Devices\n alm.window.addEventListener('wheel', function(e) { // Mousewheel\n\t\t\t\tlet direction = Math.sign(e.deltaY);\n\t\t\t\tif(direction > 0){\n\t\t\t\t\talm.AjaxLoadMore.scroll();\n\t\t\t\t}\n\t\t\t});\n\t\t\talm.window.addEventListener('keyup', function(e) { // End, Page Down\n\t\t\t\tlet code = (e.keyCode ? e.keyCode : e.which);\n\t\t\t\tswitch (code) {\n\t\t\t\t\tcase 35 :\n\t\t\t\t\tcase 34 :\n\t\t\t\t\t\talm.AjaxLoadMore.scroll();\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n \n \n }\n \n \n \n /** \n\t * destroyed\n * Destroy Ajax Load More functionality\n * \n * @since 3.4.2\n */\n alm.AjaxLoadMore.destroyed = function() {\n alm.disable_ajax = true;\n if (!alm.addons.paging) {\n alm.button.style.display = 'none';\n alm.AjaxLoadMore.triggerDone();\n if (typeof almDestroyed === 'function') {\n window.almDestroyed(alm);\n }\n }\n };\n\n\n\n /** \n\t * transitionEnd\n * Set variables after loading transiton completes\n *\n * @since 3.5 \n */\n alm.AjaxLoadMore.transitionEnd = function() {\n setTimeout(function() {\n\t alm.AjaxLoadMore.resetBtnText();\n alm.main.classList.remove('alm-loading');\n alm.button.classList.remove('loading'); // Loading button\n alm.AjaxLoadMore.triggerAddons(alm);\n if (!alm.addons.paging) {\n setTimeout(function() {\n \n alm.loading = false; // Delay to prevent loading to fast\n }, alm.speed * 3 ); \n }\n }, 100);\n };\n\n\n\n /** \n\t * setLocalizedVar\n * Set induvidual localized variable\n *\n * @param {string} name \n * @param {string} value \n * @since 4.1 \n */\n alm.AjaxLoadMore.setLocalizedVar = function(name = '', value = '') {\n if (alm.localize && name !== '' && value !== '') {\n alm.localize[name] = value.toString(); // Set ALM localize var\n window[alm.master_id + '_vars'][name] = value.toString(); // Update global window obj vars\n }\n };\n \n \n \n\t\t/**\n\t\t* getQueryVariable\n\t\t* Get querysting value\n\t\t*\n\t\t* @param {String} variable\n\t\t* @since 5.0\n\t\t*/\n\t\talm.AjaxLoadMore.getQueryVariable = function(variable) {\n\t\t\tvar query = window.location.search.substring(1);\n\t\t\tvar vars = query.split('&');\n\t\t\tfor (var i = 0; i < vars.length; i++) {\n\t\t\t\tvar pair = vars[i].split('=');\n\t\t\t\tif (decodeURIComponent(pair[0]) == variable) {\n\t\t\t\t\treturn decodeURIComponent(pair[1]);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n \n \n \n\t\t/**\n\t\t* buildFilterURL\n\t\t* Build new paging URL for filters\n\t\t*\n\t\t* @param {String} querystring\n\t\t* @param {Number} page\n\t\t* @since 5.0\n\t\t*/\n\t\talm.AjaxLoadMore.buildFilterURL = function(querystring = '', page = 0) {\n\t\t\tlet qs = querystring;\t\n\t\t\t\n\t\t\tif(alm.addons.filters_paging){\t\n \t\t\t\t\t\t\t\n \t\t\tif(page > 1){ \n \t\t\t\t// Paged\n if(qs){\n // If already has `pg` in querystring\n if (alm.AjaxLoadMore.getQueryVariable('pg')) {\n qs = querystring.replace(/(pg=)[^\\&]+/, '$1' + page);\t\t\t\t \n } else {\n qs = querystring + '&pg=' + page;\n } \n \n } else {\t\t\t \n qs = '?pg=' + page;\n }\n } else { \n \t // Not Paged\t \n \t qs = querystring.replace(/(pg=)[^\\&]+/, '');\t \n \t qs = (qs === '?') ? '' : qs; // Remove `?` if only symbol in querystring\n \t qs = (qs[qs.length -1] === '&') ? qs.slice(0, -1) : qs; // Remove trailing `&` symbols\n \t \n } \n } \n \n return qs; \n\t\t};\n\n\n\n /** \n * Init Ajax load More\n * Load posts as user scrolls the page\n * \n * @since 2.0 \n */\n alm.AjaxLoadMore.init = function() {\n\n // Preloaded and destroy_after is 1 \n if (alm.addons.preloaded === 'true' && alm.destroy_after == 1) {\n alm.AjaxLoadMore.destroyed();\n }\n\n if (!alm.addons.paging && !alm.addons.single_post) {\n if (alm.disable_ajax) {\n alm.finished = true;\n alm.button.classList.add('done');\n } else {\n if (alm.pause === 'true') {\n alm.button.innerHTML = alm.button_label;\n alm.loading = false;\n } else {\n alm.AjaxLoadMore.loadPosts();\n }\n }\n }\n\n // Previous Post Add-on\n if (alm.addons.single_post) {\n alm.AjaxLoadMore.getSinglePost(); // Set next post on load\n alm.loading = false;\n }\n\n\n // Preloaded + SEO && !Paging\n if (alm.addons.preloaded === 'true' && alm.addons.seo && !alm.addons.paging) {\n // Delay for scripts to load\n setTimeout(function() {\n if (typeof almSEO === \"function\" && alm.start_page < 1) {\n window.almSEO(alm, true);\n }\n }, alm.speed);\n }\n\n\n // Preloaded && !Paging\n if (alm.addons.preloaded === 'true' && !alm.addons.paging) {\n // Delay for scripts to load\n setTimeout(function() {\n // triggerDone\n if (alm.addons.preloaded_total_posts <= parseInt(alm.addons.preloaded_amount)) {\n alm.AjaxLoadMore.triggerDone();\n }\n // almEmpty\n if (alm.addons.preloaded_total_posts == 0) {\n if (typeof almEmpty === 'function') {\n window.almEmpty(alm);\n }\n if(alm.no_results){\n\t\t almNoResults(alm.content, alm.no_results);\n\t }\n }\n }, alm.speed);\n\n }\n \n\t\t\t\n\t\t\t// Preloaded Add-on ONLY\n if (alm.addons.preloaded === 'true') {\n if (alm.resultsText) {\n\t resultsText.almInitResultsText(alm, 'preloaded');\n }\n }\n\n\n // Next Page Add-on\n if (alm.addons.nextpage) {\n\t \t \n\t \t// Check that posts remain on load\n if (alm.listing.querySelector('.alm-nextpage') && !alm.addons.paging) {\n var alm_nextpage_pages = alm.listing.querySelectorAll('.alm-nextpage'),\n alm_nextpage_total = alm.listing.querySelector('.alm-nextpage:first-child');\n \n if(alm_nextpage_total && alm_nextpage_pages){\n\t alm_nextpage_total = alm_nextpage_total.dataset.totalPosts;\n\t alm_nextpage_pages = alm_nextpage_pages.length; \n\t\t\t\t\t\t\n\t\t\t\t\t\t// Disable if on last page\n\t if (alm_nextpage_pages == alm_nextpage_total) {\n\t alm.AjaxLoadMore.triggerDone();\n\t }\n }\n } \n \n if (alm.resultsText) {\n resultsText.almInitResultsText(alm, 'nextpage');\n }\n \n }\n\n\n // Window Load (Masonry + Preloaded)\n alm.window.addEventListener('load', function() {\n if (alm.is_masonry_preloaded) {\n almMasonry(alm, true, false);\n alm.masonry_init = false;\n }\n\t\t\t\tif (typeof almOnLoad === 'function') {\n\t\t\t\t\twindow.almOnLoad(alm);\n\t\t\t\t}\n });\n\n };\n\n\n // Init Ajax Load More\n alm.AjaxLoadMore.init();\n\n\n // Flag to prevent unnecessary loading of posts on initial page load.\n setTimeout(function() {\n alm.proceed = true;\n }, alm.speed);\n\n\n\n /** \n\t * almUpdateCurrentPage\n * Update current page - triggered from paging add-on\n *\n * @since 2.7.0\n */\n window.almUpdateCurrentPage = function(current, obj, alm) {\n\n alm.page = current; \n alm.page = (alm.addons.nextpage && !alm.addons.paging) ? alm.page - 1 : alm.page; // Next Page add-on\n\n let data = '';\n let target = ''; \n \n if (alm.addons.paging_init && alm.addons.preloaded === 'true') {\n // Paging + Preloaded Firstrun\n target = alm.listing.querySelector('.alm-reveal') || alm.listing.querySelector('.alm-nextpage');\n if(target){\n data = target.innerHTML; // Get content \n target.parentNode.removeChild(target); // Remove target \n alm.addons.preloaded_amount = 0; // Reset preloaded\n alm.AjaxLoadMore.pagingPreloadedInit(data);\n }\n alm.addons.paging_init = false;\n alm.init = false;\n\n } else if (alm.addons.paging_init && alm.addons.nextpage) {\n // Paging + Next Page on firstrun\n target = alm.listing.querySelector('.alm-reveal') || alm.listing.querySelector('.alm-nextpage');\n if(target){\n data = target.innerHTML; // Get content \n target.parentNode.removeChild(target); // Remove target\n alm.AjaxLoadMore.pagingNextpageInit(data);\n }\n alm.addons.paging_init = false;\n alm.init = false;\n\n } else {\n // Standard Paging\n alm.AjaxLoadMore.loadPosts();\n\n }\n };\n\n\n\n /** \n\t * almGetParentContainer\n * return the parent ALM container\n *\n * @since 2.7.0\n * @return element\n */\n window.almGetParentContainer = function() {\n return alm.listing;\n };\n\n\n\n /**\n\t * almGetObj\n * Returns the current ALM obj\n *\n * @param {string} specific obj\n * @since 2.7.0\n * @return object\n */\n window.almGetObj = function(obj = '') {\n\t if(obj !== ''){\n\t\t return alm[obj]; // Return specific param\n\t } else {\n\t\t return alm; // Return the entire alm object\n\t }\n \n };\n\n\n\n /**\n\t * almTriggerClick\n * Trigger ajaxloadmore from any element on page\n *\n * @since 2.12.0\n */\n window.almTriggerClick = function() {\n alm.button.click();\n };\n\n\n };\n\n // End ajaxloadmore \n \n\n\n /** \n * almInit\n * Initiate instance of Ajax load More\n *\n * @since 5.0\n */\n window.almInit = function(el, id = 0) {\n new ajaxloadmore(el, id);\n }; \n\n\n\n /**\n * Initiate Ajax load More if div is present on screen\n * @since 2.1.2\n */\n\n let alm_instances = document.querySelectorAll('.ajax-load-more-wrap');\n if (alm_instances.length) {\n [...alm_instances].forEach((alm, e) => {\n new ajaxloadmore(alm, e);\n });\n }\n\n})();\n\n\n\n/** \n * filter\n * Filter an Ajax Load More instance\n * \n * @since 5.0\n * @param {*} transition\n * @param {*} speed\n * @param {*} data\n */\nlet filter = function(transition = 'fade', speed = '200', data = '') {\n if (!transition || !speed || !data) {\n return false;\n }\n alm_is_filtering = true;\n almFilter(transition, speed, data, 'filter');\n};\nexport { filter };\n\n\n\n/** \n * tab\n * Tabbed content for Ajax Load More instance\n * \n * @since 5.2\n * @param {*} data\n * @param {*} url\n */\nlet tab = function(data = '', url = false) {\n\t\n\tlet transition = 'fade';\n\tlet speed = (alm_localize.speed) ? parseInt(alm_localize.speed) : 200;\n\t\n if (!data) {\n return false;\n }\n \n alm_is_filtering = true;\n almFilter(transition, speed, data, 'tab');\n \n};\nexport { tab };\n\n\n\n/** \n * tracking\n * Track Page Views in Google Analytics\n *\n * @since 5.0\n * @param {*} path\n */\n\nlet tracking = function(path) {\n if (typeof gtag === 'function') { // Gtag GA Tracking\n gtag('event', 'page_view', {\n 'page_path': path\n });\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (gtag)');\n }\n }\n if (typeof ga === 'function') { // Deprecated GA Tracking\n ga('send', 'pageview', path);\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (ga)');\n }\n }\n if (typeof __gaTracker === 'function') { // Monster Insights\n __gaTracker('send', 'pageview', path);\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (__gaTracker)');\n }\n } \n \n // Dispatch global Analytics callback\n if (typeof almAnalytics === 'function') {\n window.almAnalytics(path);\n }\n}; \nexport { tracking };\n\n\n\n/** \n * start\n * Trigger Ajax Load More from other events\n * \n * @since 5.0\n * @param {*} el\n */\nlet start = function(el) {\n if (!el) {\n return false;\n }\n window.almInit(el);\n};\nexport { start };\n\n\n\n/** \n * almScroll\n * Scroll window to position (global function)\n *\n * @since 5.0\n * @param {*} position\n */\nlet almScroll = function(position) {\n if (!position) {\n return false;\n }\n window.scrollTo({\n top: position,\n behavior: 'smooth'\n });\n};\nexport { almScroll };\n\n\n\n/** \n * getOffset\n * Get the current top/left coordinates of an element relative to the document.\n *\n * @since 5.0\n * @param {*} el\n */\nlet getOffset = function(el = null){\n\tif(!el){\n\t\treturn false;\n\t}\n\tlet rect = el.getBoundingClientRect(),\n scrollLeft = window.pageXOffset || document.documentElement.scrollLeft,\n scrollTop = window.pageYOffset || document.documentElement.scrollTop;\n return { top: rect.top + scrollTop, left: rect.left + scrollLeft }\n};\nexport { getOffset };\n\n\n\n/** \n * almScroll\n * Scroll window to position (global function)\n *\n * @since 5.0\n * @param {*} position\n */\nlet render = function(el, options = null) {\n if (!el) {\n return false;\n }\n // console.log(el, options);\n};\nexport { render };\n","/**\n * Append a child element to a container\n *\n * @param {*} target | Target element to append items\n * @param {*} element | The element to append\n * @param {*} transition | The transiton\n * @since 5.0\n */\n \nlet nodeNameArray = ['#text', '#comment'];\n\nlet almAppendChild = function( target = null, element = null, transition = 'fade' ) {\n\tif(!target || !element){\n\t\treturn false; \n\t}\t\n\t\n\t// Do not append elements that are not actual element nodes (i.e. #text node)\n\t// Add item if not in exclude array\n\tif(nodeNameArray.indexOf(element.nodeName.toLowerCase()) === -1){\t\t\n\t\tif(transition === 'masonry'){ // If Masonry, opacity = zero\n\t\t\telement.style.opacity = 0;\n\t\t}\n\t\ttarget.appendChild(element);\n\t}\n};\nexport default almAppendChild;","import almAppendChild from './almAppendChild';\n/**\n * Loop array of elements and append to target\n *\n * @param {*} target | Target element to append items\n * @param {*} array | An array of elements\n * @param {*} transition | The transiton\n * @since 5.0\n */\n \nlet almAppendChildren = function( target = null, array = null, transition = 'fade' ) {\n\tif(!target || !array){\n\t\treturn false;\n\t}\t\n\tfor (var i = 0; i < array.length; i++) {\t\n\t\tlet element = array[i];\t\t\n\t\talmAppendChild(target, element, transition);\t\t\n\t}\n};\nexport default almAppendChildren;","/**\n * Convert a plain text string into an array of HTML nodes\n *\n * @param {*} html | The HTML string\n * @param {*} type\n * @return array\n * @since 5.0\n */\nlet almDomParser = function( html = '', type = 'text/html' ) {\n\tif(!html){\n \treturn false;\n\t}\n let parser = new DOMParser(); \n let data = parser.parseFromString(html, type);\t\t\t\t\t\t\t\n return (data) ? Array.prototype.slice.call(data.body.childNodes) : data;\t\n};\nexport default almDomParser;\n","/**\n * Generate the cache page URL for GET request\n *\n * @param {*} el | Target element to append items\n * @param {*} array | An array of elements\n * @since 5.0\n */\nlet almGetCacheUrl = function( alm ) {\n \n if(!alm){\n return false;\n }\n \n\tlet cache_url = '';\n\tlet ext = '.html';\n\t\n if (alm.init && alm.addons.seo && alm.isPaged) {\n // SEO Add-on\n // If the request is a paged URL (/page/3/)\n let firstpage = '1';\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + firstpage + '-' + alm.start_page + ext;\n \n } else if (alm.addons.nextpage) {\n // Nextpage add-on\n let nextpage_cache_url;\n if (alm.addons.paging) {\n nextpage_cache_url = parseInt(alm.page) + 1;\n } else {\n nextpage_cache_url = parseInt(alm.page) + 2;\n if (alm.isPaged) {\n // If the request a paged URL (/page/3/)\n nextpage_cache_url = parseInt(alm.page) + parseInt(alm.addons.nextpage_startpage) + 1;\n }\n }\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + nextpage_cache_url + ext;\n \n } else if (alm.addons.single_post) {\n // Previous Post\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/' + alm.addons.single_post_id + ext;\n \n } else {\n // Standard URL request\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + (alm.page + 1) + ext;\n \n }\n \n return cache_url;\n};\n\nexport default almGetCacheUrl;","/**\n * Wrap `table` containers in tbody elements\n * innerHTML and DOMParser do not work with <tr/> <td/> elements etc.\n *\n * @param {*} html | Plain text\n * @since 5.0\n */\nlet almTableWrap = function( html = null ) {\n if(!html){\n return false;\n }\n\tlet table_reveal = document.createElement('tbody');\n table_reveal.innerHTML = html;\n let table_reveal_array = [table_reveal];\n return table_reveal_array; // Return new array\n};\nexport default almTableWrap;","/**\n * commentReplyFix\n * Hotfix for Reply links not working in WordPress 5.1+\n * \n * @param listing object\n * @since 5.1\n */\nlet commentReplyFix = function( listing = null ) {\n \n // Get all `Reply` links.\n let replyLinks = listing.querySelectorAll('.comment-reply-link'); \n if(!replyLinks){\n return false;\n }\n \n // Loop links\n replyLinks.forEach(function(link){\n \n // Add custom click handler\n link.onclick = function(e) { \n \n e.preventDefault();\n \n let commId = link.dataset.belowelement,\n parentId = link.dataset.commentid,\n respondId = link.dataset.respondelement,\n postId = link.dataset.postid,\n follow;\n \n if ( ! commId || ! parentId || ! respondId || ! postId ) {\n /*\n * Theme or plugin defines own link via custom `wp_list_comments()` callback \n * and calls `moveForm()` either directly or via a custom event hook. \n */ \n return;\n \n }\n \n // Move reply form\n follow = window.addComment.moveForm(commId, parentId, respondId, postId);\n if (false === follow) {\n event.preventDefault(); \n }\n \n };\n \n }); \n \n};\nexport default commentReplyFix;","let getParameterByName = function( name, url ) {\n if (!url) url = window.location.href;\n name = name.replace(/[\\[\\]]/g, \"\\\\$&\");\n var regex = new RegExp(\"[?&]\" + name + \"(=([^&#]*)|&|#|$)\"),\n results = regex.exec(url);\n if (!results) return null;\n if (!results[2]) return '';\n return decodeURIComponent(results[2].replace(/\\+/g, \" \"));\n};\nexport default getParameterByName;","// Prevent native browser scrolling on popstate\n// https://developer.mozilla.org/en-US/docs/Web/API/History#Browser_compatibility\nif ('scrollRestoration' in history) {\n\t//history.scrollRestoration = 'manual';\n}\n\n\n// Object.entries\nif (!Object.entries){\n Object.entries = function( obj ){\n var ownProps = Object.keys( obj ),\n i = ownProps.length,\n resArray = new Array(i); // preallocate the Array\n while (i--)\n resArray[i] = [ownProps[i], obj[ownProps[i]]];\n\n return resArray;\n };\n} \n\n\n// isArray\nif (typeof Array.isArray === 'undefined') {\n Array.isArray = function(obj) {\n return Object.prototype.toString.call(obj) === '[object Array]';\n }\n};\n\n\n// Array.from\nif (!Array.from) {\n Array.from = (function () {\n var toStr = Object.prototype.toString;\n var isCallable = function (fn) {\n return typeof fn === 'function' || toStr.call(fn) === '[object Function]';\n };\n var toInteger = function (value) {\n var number = Number(value);\n if (isNaN(number)) { return 0; }\n if (number === 0 || !isFinite(number)) { return number; }\n return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number));\n };\n var maxSafeInteger = Math.pow(2, 53) - 1;\n var toLength = function (value) {\n var len = toInteger(value);\n return Math.min(Math.max(len, 0), maxSafeInteger);\n };\n\n // The length property of the from method is 1.\n return function from(arrayLike/*, mapFn, thisArg */) {\n // 1. Let C be the this value.\n var C = this;\n\n // 2. Let items be ToObject(arrayLike).\n var items = Object(arrayLike);\n\n // 3. ReturnIfAbrupt(items).\n if (arrayLike == null) {\n throw new TypeError('Array.from requires an array-like object - not null or undefined');\n }\n\n // 4. If mapfn is undefined, then let mapping be false.\n var mapFn = arguments.length > 1 ? arguments[1] : void undefined;\n var T;\n if (typeof mapFn !== 'undefined') {\n // 5. else\n // 5. a If IsCallable(mapfn) is false, throw a TypeError exception.\n if (!isCallable(mapFn)) {\n throw new TypeError('Array.from: when provided, the second argument must be a function');\n }\n\n // 5. b. If thisArg was supplied, let T be thisArg; else let T be undefined.\n if (arguments.length > 2) {\n T = arguments[2];\n }\n }\n\n // 10. Let lenValue be Get(items, \"length\").\n // 11. Let len be ToLength(lenValue).\n var len = toLength(items.length);\n\n // 13. If IsConstructor(C) is true, then\n // 13. a. Let A be the result of calling the [[Construct]] internal method\n // of C with an argument list containing the single item len.\n // 14. a. Else, Let A be ArrayCreate(len).\n var A = isCallable(C) ? Object(new C(len)) : new Array(len);\n\n // 16. Let k be 0.\n var k = 0;\n // 17. Repeat, while k < len… (also steps a - h)\n var kValue;\n while (k < len) {\n kValue = items[k];\n if (mapFn) {\n A[k] = typeof T === 'undefined' ? mapFn(kValue, k) : mapFn.call(T, kValue, k);\n } else {\n A[k] = kValue;\n }\n k += 1;\n }\n // 18. Let putStatus be Put(A, \"length\", len, true).\n A.length = len;\n // 20. Return A.\n return A;\n };\n }());\n}\n\n\n// Nodelist\nif (window.NodeList && !NodeList.prototype.forEach) {\n\tNodeList.prototype.forEach = function (callback, thisArg) {\n\t\t thisArg = thisArg || window;\n\t\t for (var i = 0; i < this.length; i++) {\n\t\t\t callback.call(thisArg, this[i], i, this);\n\t\t }\n\t};\n}\n\n\n// removeChild\n// https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md\n(function (arr) {\n\tarr.forEach(function (item) {\n\t if (item.hasOwnProperty('remove')) {\n\t\t return;\n\t }\n\t Object.defineProperty(item, 'remove', {\n\t\t configurable: true,\n\t\t enumerable: true,\n\t\t writable: true,\n\t\t value: function remove() {\n\t\t\tif (this.parentNode !== null)\n\t\t\t this.parentNode.removeChild(this);\n\t\t }\n\t });\n\t});\n})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);\n","/**\n * Add dataset support to elements\n * No globals, no overriding prototype with non-standard methods, \n * handles CamelCase properly, attempts to use standard \n * Object.defineProperty() (and Function bind()) methods, \n * falls back to native implementation when existing\n * Inspired by http://code.eligrey.com/html5/dataset/ \n * (via https://github.com/adalgiso/html5-dataset/blob/master/html5-dataset.js )\n * Depends on Function.bind and Object.defineProperty/Object.getOwnPropertyDescriptor (polyfills below)\n * All code below is Licensed under the X11/MIT License\n*/\nif (!Function.prototype.bind) {\n Function.prototype.bind = function (oThis) {\n 'use strict';\n if (typeof this !== \"function\") {\n // closest thing possible to the ECMAScript 5 internal IsCallable function\n throw new TypeError(\"Function.prototype.bind - what is trying to be bound is not callable\");\n }\n\n var aArgs = Array.prototype.slice.call(arguments, 1),\n fToBind = this,\n FNOP = function () {},\n fBound = function () {\n return fToBind.apply(\n this instanceof FNOP && oThis ? this : oThis,\n aArgs.concat(Array.prototype.slice.call(arguments))\n );\n };\n\n FNOP.prototype = this.prototype;\n fBound.prototype = new FNOP();\n\n return fBound;\n };\n}\n\n/*\n * Xccessors Standard: Cross-browser ECMAScript 5 accessors\n * http://purl.eligrey.com/github/Xccessors\n * \n * 2010-06-21\n * \n * By Eli Grey, http://eligrey.com\n * \n * A shim that partially implements Object.defineProperty,\n * Object.getOwnPropertyDescriptor, and Object.defineProperties in browsers that have\n * legacy __(define|lookup)[GS]etter__ support.\n * \n * Licensed under the X11/MIT License\n * See LICENSE.md\n*/\n\n(function () {\n 'use strict';\n var ObjectProto = Object.prototype,\n defineGetter = ObjectProto.__defineGetter__,\n defineSetter = ObjectProto.__defineSetter__,\n lookupGetter = ObjectProto.__lookupGetter__,\n lookupSetter = ObjectProto.__lookupSetter__,\n hasOwnProp = ObjectProto.hasOwnProperty;\n \n if (defineGetter && defineSetter && lookupGetter && lookupSetter) {\n\n if (!Object.defineProperty) {\n Object.defineProperty = function (obj, prop, descriptor) {\n if (arguments.length < 3) { // all arguments required\n throw new TypeError(\"Arguments not optional\");\n }\n \n prop += \"\"; // convert prop to string\n\n if (hasOwnProp.call(descriptor, \"value\")) {\n if (!lookupGetter.call(obj, prop) && !lookupSetter.call(obj, prop)) {\n // data property defined and no pre-existing accessors\n obj[prop] = descriptor.value;\n }\n\n if ((hasOwnProp.call(descriptor, \"get\") ||\n hasOwnProp.call(descriptor, \"set\"))) \n {\n // descriptor has a value prop but accessor already exists\n throw new TypeError(\"Cannot specify an accessor and a value\");\n }\n }\n\n // can't switch off these features in ECMAScript 3\n // so throw a TypeError if any are false\n if (!(descriptor.writable && descriptor.enumerable && \n descriptor.configurable))\n {\n throw new TypeError(\n \"This implementation of Object.defineProperty does not support\" +\n \" false for configurable, enumerable, or writable.\"\n );\n }\n \n if (descriptor.get) {\n defineGetter.call(obj, prop, descriptor.get);\n }\n if (descriptor.set) {\n defineSetter.call(obj, prop, descriptor.set);\n }\n \n return obj;\n };\n }\n\n if (!Object.getOwnPropertyDescriptor) {\n Object.getOwnPropertyDescriptor = function (obj, prop) {\n if (arguments.length < 2) { // all arguments required\n throw new TypeError(\"Arguments not optional.\");\n }\n \n prop += \"\"; // convert prop to string\n\n var descriptor = {\n configurable: true,\n enumerable : true,\n writable : true\n },\n getter = lookupGetter.call(obj, prop),\n setter = lookupSetter.call(obj, prop);\n\n if (!hasOwnProp.call(obj, prop)) {\n // property doesn't exist or is inherited\n return descriptor;\n }\n if (!getter && !setter) { // not an accessor so return prop\n descriptor.value = obj[prop];\n return descriptor;\n }\n\n // there is an accessor, remove descriptor.writable;\n // populate descriptor.get and descriptor.set (IE's behavior)\n delete descriptor.writable;\n descriptor.get = descriptor.set = undefined;\n \n if (getter) {\n descriptor.get = getter;\n }\n if (setter) {\n descriptor.set = setter;\n }\n \n return descriptor;\n };\n }\n\n if (!Object.defineProperties) {\n Object.defineProperties = function (obj, props) {\n var prop;\n for (prop in props) {\n if (hasOwnProp.call(props, prop)) {\n Object.defineProperty(obj, prop, props[prop]);\n }\n }\n };\n }\n }\n}());\n\n// Begin dataset code\n\nif (!document.documentElement.dataset && \n // FF is empty while IE gives empty object\n (!Object.getOwnPropertyDescriptor(Element.prototype, 'dataset') ||\n !Object.getOwnPropertyDescriptor(Element.prototype, 'dataset').get)\n ) {\n var propDescriptor = {\n enumerable: true,\n get: function () {\n 'use strict';\n var i, \n that = this,\n HTML5_DOMStringMap, \n attrVal, attrName, propName,\n attribute,\n attributes = this.attributes,\n attsLength = attributes.length,\n toUpperCase = function (n0) {\n return n0.charAt(1).toUpperCase();\n },\n getter = function () {\n return this;\n },\n setter = function (attrName, value) {\n return (typeof value !== 'undefined') ? \n this.setAttribute(attrName, value) : \n this.removeAttribute(attrName);\n };\n try { // Simulate DOMStringMap w/accessor support\n // Test setting accessor on normal object\n ({}).__defineGetter__('test', function () {});\n HTML5_DOMStringMap = {};\n }\n catch (e1) { // Use a DOM object for IE8\n HTML5_DOMStringMap = document.createElement('div');\n }\n for (i = 0; i < attsLength; i++) {\n attribute = attributes[i];\n // Fix: This test really should allow any XML Name without \n // colons (and non-uppercase for XHTML)\n if (attribute && attribute.name && \n (/^data-\\w[\\w\\-]*$/).test(attribute.name)) {\n attrVal = attribute.value;\n attrName = attribute.name;\n // Change to CamelCase\n propName = attrName.substr(5).replace(/-./g, toUpperCase);\n try {\n Object.defineProperty(HTML5_DOMStringMap, propName, {\n enumerable: this.enumerable,\n get: getter.bind(attrVal || ''),\n set: setter.bind(that, attrName)\n });\n }\n catch (e2) { // if accessors are not working\n HTML5_DOMStringMap[propName] = attrVal;\n }\n }\n }\n return HTML5_DOMStringMap;\n }\n };\n try {\n // FF enumerates over element's dataset, but not \n // Element.prototype.dataset; IE9 iterates over both\n Object.defineProperty(Element.prototype, 'dataset', propDescriptor);\n } catch (e) {\n propDescriptor.enumerable = false; // IE8 does not allow setting to true\n Object.defineProperty(Element.prototype, 'dataset', propDescriptor);\n }\n}","/**\n * almGetAjaxParams\n * Build the data object to send with the Ajax request\n * \n * @param alm object\n * @param action string\n * @param queryType string \n * @since 3.6\n */\n\nexport function almGetAjaxParams(alm, action, queryType){\n\t\n\t// Defaults\n\tlet data = {\n id\t\t\t\t\t\t\t: alm.id,\n post_id\t\t\t\t\t: alm.post_id,\n slug : alm.slug,\n canonical_url : encodeURIComponent(alm.canonical_url),\n posts_per_page : alm.posts_per_page,\n page \t\t: alm.page,\n offset : alm.offset,\n post_type\t\t\t\t: alm.post_type,\n repeater\t\t\t\t\t: alm.repeater,\n seo_start_page \t: alm.start_page\n }; \n \n \n // Addons & Extensions\n if(alm.theme_repeater){\n data.theme_repeater = alm.theme_repeater;\n } \n if(alm.addons.paging){\n data.paging = alm.addons.paging;\n } \n if(alm.addons.preloaded){\n data.preloaded = alm.addons.preloaded;\n data.preloaded_amount = alm.addons.preloaded_amount;\n }\n if(alm.addons.cache === 'true'){\n data.cache_id = alm.addons.cache_id;\n data.cache_logged_in = alm.addons.cache_logged_in;\n }\t \n if(alm.acf_array){\n data.acf = alm.acf_array;\n } \n if(alm.cta_array){\n data.cta = alm.cta_array;\n } \n if(alm.comments_array){\n data.comments = alm.comments_array;\n } \n if(alm.nextpage_array){\n data.nextpage = alm.nextpage_array;\n } \n if(alm.single_post_array){\n data.single_post = alm.single_post_array;\n }\n if(alm.users_array){\n data.users = alm.users_array;\n }\n \n \n // Query data \n if(alm.listing.dataset.lang){\n data.lang = alm.listing.dataset.lang;\n }\n if(alm.listing.dataset.stickyPosts){\n data.sticky_posts = alm.listing.dataset.stickyPosts;\n }\n if(alm.listing.dataset.postFormat){\n data.post_format = alm.listing.dataset.postFormat;\n }\n if(alm.listing.dataset.category){\n data.category = alm.listing.dataset.category;\n }\n if(alm.listing.dataset.categoryAnd){\n data.category__and = alm.listing.dataset.categoryAnd;\n }\n if(alm.listing.dataset.categoryNotIn){\n data.category__not_in = alm.listing.dataset.categoryNotIn;\n }\n if(alm.listing.dataset.tag){\n data.tag = alm.listing.dataset.tag;\n }\n if(alm.listing.dataset.tagAnd){\n data.tag__and = alm.listing.dataset.tagAnd;\n }\n if(alm.listing.dataset.tagNotIn){\n data.tag__not_in = alm.listing.dataset.tagNotIn;\n }\n if(alm.listing.dataset.taxonomy){\n data.taxonomy = alm.listing.dataset.taxonomy;\n }\n if(alm.listing.dataset.taxonomyTerms){\n data.taxonomy_terms = alm.listing.dataset.taxonomyTerms;\n }\n if(alm.listing.dataset.taxonomyOperator){\n data.taxonomy_operator = alm.listing.dataset.taxonomyOperator;\n }\n if(alm.listing.dataset.taxonomyRelation){\n data.taxonomy_relation = alm.listing.dataset.taxonomyRelation;\n }\n if(alm.listing.dataset.metaKey){\n data.meta_key = alm.listing.dataset.metaKey;\n }\n if(alm.listing.dataset.metaValue){\n data.meta_value = alm.listing.dataset.metaValue;\n }\n if(alm.listing.dataset.metaCompare){\n data.meta_compare = alm.listing.dataset.metaCompare;\n }\n if(alm.listing.dataset.metaRelation){\n data.meta_relation = alm.listing.dataset.metaRelation;\n }\n if(alm.listing.dataset.metaType){\n data.meta_type = alm.listing.dataset.metaType;\n }\n if(alm.listing.dataset.author){\n data.author = alm.listing.dataset.author;\n }\n if(alm.listing.dataset.year){\n data.year = alm.listing.dataset.year;\n }\n if(alm.listing.dataset.month){\n data.month = alm.listing.dataset.month;\n }\n if(alm.listing.dataset.day){\n data.day = alm.listing.dataset.day;\n }\n if(alm.listing.dataset.order){\n data.order = alm.listing.dataset.order;\n }\n if(alm.listing.dataset.orderby){\n data.orderby = alm.listing.dataset.orderby;\n }\n if(alm.listing.dataset.postStatus){\n data.post_status = alm.listing.dataset.postStatus;\n }\n if(alm.listing.dataset.postIn){\n data.post__in = alm.listing.dataset.postIn;\n }\n if(alm.listing.dataset.postNotIn){\n data.post__not_in = alm.listing.dataset.postNotIn;\n }\n if(alm.listing.dataset.exclude){\n data.exclude = alm.listing.dataset.exclude;\n }\n if(alm.listing.dataset.search){\n data.search = alm.listing.dataset.search;\n }\n if(alm.listing.dataset.s){\n data.search = alm.listing.dataset.s;\n }\n if(alm.listing.dataset.customArgs){\n data.custom_args = alm.listing.dataset.customArgs;\n }\n \n data.action = action;\n data.query_type = queryType;\n \n return data;\n \n}\n\n\n\n/**\n * almGetRestParams\n * Build the REST API data object to send with REST API request\n * \n * @param alm object\n * @since 3.6\n */\nexport function almGetRestParams(alm){\n\tlet data = {\n\t\tid\t\t\t\t\t\t: alm.id,\n\t post_id\t\t\t\t: alm.post_id,\n\t posts_per_page : alm.posts_per_page,\n\t page : alm.page,\n\t offset : alm.offset,\n\t slug : alm.slug,\n\t canonical_url : encodeURIComponent(alm.canonical_url),\n\t post_type : alm.post_type,\n\t post_format : alm.listing.dataset.postFormat,\n\t category : alm.listing.dataset.category,\n\t category__not_in : alm.listing.dataset.categoryNotIn,\n\t tag : alm.listing.dataset.tag,\n\t tag__not_in : alm.listing.dataset.tagNotIn,\n\t taxonomy : alm.listing.dataset.taxonomy,\n\t taxonomy_terms : alm.listing.dataset.taxonomyTerms,\n\t taxonomy_operator : alm.listing.dataset.taxonomyOperator,\n\t taxonomy_relation : alm.listing.dataset.taxonomyRelation,\n\t meta_key : alm.listing.dataset.metaKey,\n\t meta_value : alm.listing.dataset.metaValue,\n\t meta_compare : alm.listing.dataset.metaCompare,\n\t meta_relation : alm.listing.dataset.metaRelation,\n\t meta_type : alm.listing.dataset.metaType,\n\t author : alm.listing.dataset.author,\n\t year : alm.listing.dataset.year,\n\t month : alm.listing.dataset.month,\n\t day : alm.listing.dataset.day,\n\t post_status : alm.listing.dataset.postStatus,\n\t order : alm.listing.dataset.order,\n\t orderby : alm.listing.dataset.orderby,\n\t post__in : alm.listing.dataset.postIn,\n\t post__not_in : alm.listing.dataset.postNotIn,\n\t search : alm.listing.dataset.search,\n\t s \t\t: alm.listing.dataset.s,\n\t custom_args : alm.listing.dataset.customArgs,\n\t lang : alm.lang,\n\t preloaded : alm.addons.preloaded,\n\t preloaded_amount : alm.addons.preloaded_amount,\n\t seo_start_page : alm.start_page\n };\n \n return data;\n}","/**\n * srcsetPolyfill\n * A Safari srcset polyfill to get Masonry and ImagesLoaded working\n *\n * @param {*} container Element\n * @param {*} ua String\n * @since 5.0.2\n */\nlet srcsetPolyfill = (container = null, ua = '') => {\n\t\n\t// Exit if no container\n\tif( !container ){ \n\t\treturn false;\n\t}\n\t\n\t// Exit if useragent is Chrome, Safari or Windows\n\tif( (ua.indexOf('Safari') > -1 && ua.indexOf('Chrome') != -1) || (ua.indexOf('Firefox') > -1) || (ua.indexOf('Windows') > -1) ){\n\t\treturn false;\n\t}\n\t\n\t// Get the images\n\tlet imgs = container.querySelectorAll('img[srcset]:not(.alm-loaded)');\n\t\n\t// Loop images\n\tfor ( var i=0; i < imgs.length; i++ ) {\n\t\tlet img = imgs[i];\n\t\timg.classList.add('alm-loaded');\n\t\timg.outerHTML = img.outerHTML;\n\t}\n}\nexport default srcsetPolyfill;","/**\n * Remove empty HTML nodes from array of nodes\n * Remove all empty text nodes from SEO and Filters return\n *\n * @param {*} nodes | Array of HTML nodes\n * @return array\n * @since 5.1.3\n */\nlet stripEmptyNodes = function( nodes = '' ) {\n\tif(!nodes){\n \treturn false;\n\t}\t\n\t\n\t// Exclude these nodeNames from being rendered\n\tlet nodeNameArray = ['#text', '#comment'];\n\t\n\t// Filter data by nodeName \n\tlet results = nodes.filter(node => (nodeNameArray.indexOf(node.nodeName.toLowerCase()) === -1) );\n \n // Send the results\n return results; \n \n};\nexport default stripEmptyNodes;\n","/** \n * Display alm_debug results\n * https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_debug\n *\n * @param {object} alm Global alm object\n * @since 5.1.6 \n */\n \nlet almDebug = function(alm){ \n\tif(alm && alm.debug){\n\t\tconsole.log('alm_debug info:', alm.debug); \n\t} \n}\n\nexport default almDebug;","/**\n * Fade element in\n * @param {*} element\n * @param {*} speed\n */ \nlet almFadeIn = (element, speed) => {\n\tif(speed == 0){\n\t\telement.style.opacity = 1;\n\t\telement.style.height = 'auto';\n\t\t\n\t} else {\n\t\tspeed = speed/10;\n\t\tlet op = 0; // initial opacity\n\t\tlet timer = setInterval(function () { \n\t\t\tif (op > 0.9){\n\t\t\t\telement.style.opacity = 1;\n\t\t\t\tclearInterval(timer);\n\t\t\t}\n\t\t\telement.style.opacity = op;\n\t\t\top += 0.1;\n\t\t}, speed);\n\t\telement.style.height = 'auto';\n\t}\n}\nexport default almFadeIn; ","/**\n * Fade element out\n * @param {*} element\n * @param {*} speed\n */ \nlet almFadeOut = (element, speed) => {\n\tspeed = speed/10;\n\telement.style.opacity = 0.5;\n\tlet fadeEffect = setInterval(function () {\n\t\tif (element.style.opacity < 0.1) {\n\t\t\tclearInterval(fadeEffect);\n\t\t} else {\n\t\t\telement.style.opacity -= 0.1;\n\t\t}\n\t}, speed);\n}\nexport default almFadeOut; ","import almFadeIn from './fadeIn';\nimport almFadeOut from './fadeOut';\n\n/**\n * almFilter(type, speed, data)\n * Filter Ajax Load More\n *\n * @param {*} transition string;\n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} type string;\n * @since 2.6.1\n */\n \nlet almFilter = function(transition, speed, data, type = \"filter\") {\n if(data.target){ // if a target has been specified\n\t let target = document.querySelectorAll('.ajax-load-more-wrap[data-id=\"'+ data.target + '\"]');\n\t\ttarget.forEach(function(element){\n\t\t\talmFilterTransition(transition, speed, data, element, type);\t \n\t\t});\n } else { // Target not specified\n\t let alm = document.querySelectorAll('.ajax-load-more-wrap');\n alm.forEach(function(element){\n\t\t\talmFilterTransition(transition, speed, data, element, type);\t \n\t\t});\n }\n}; \nexport default almFilter;\n\n\n\n/**\n * almFilterTransition(transition, speed, data, el)\n * Transition Ajax Load More\n *\n * @param {*} transition string;\n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} el element;\n * @param {*} type string;\n * @since 2.13.1\n */\nlet almFilterTransition = function(transition, speed, data, el, type){ \n \n if(transition === 'fade' || transition === 'masonry'){ \n\t // Fade, Masonry transition\n\t \n\t switch (type){\n\t\t case 'filter' :\n\t\t \tel.classList.add('alm-is-filtering');\n\t\t \talmFadeOut(el, speed);\n\t\t \t\n\t\t break;\n\t\t \n\t\t case 'tab' : \n\t\t \tel.classList.add('alm-loading');\n\t\t \tlet new_el = el.querySelector('.alm-listing');\n\t\t \tel.style.height = new_el.offsetHeight + 'px';\n\t\t \talmFadeOut(new_el, speed);\n\t\t \t\n\t\t break;\n\t }\n\t \n\t // Move to next function\n setTimeout(function(){\n\t almCompleteFilterTransition(speed, data, el, type);\n\t }, speed);\n\t \n }else{ \n\t // No transition\n\t el.classList.add('alm-is-filtering');\n almCompleteFilterTransition(speed, data, el, type);\n }\n \n}; \n\n\n\n/** \n * almCompleteFilterTransition\n * Complete the filter transition\n * \n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} el element;\n * @param {*} type string;\n * @since 3.3\n */\nlet almCompleteFilterTransition = (speed, data, el, type) => {\t\n\t\n\t// Get `.alm-btn-wrap` element\n\tlet btnWrap = el.querySelector('.alm-btn-wrap');\n\t\n\t// Get `.alm-listing` element\n\tlet listing = el.querySelectorAll('.alm-listing');\n\t\n\t// Loop over all .alm-listing divs\n\t[...listing].forEach(function(e){\n\t\te.innerHTML = ''; // Clear listings\n\t});\n\t \n\t// Get Load More button\n\tlet button = btnWrap.querySelector('.alm-load-more-btn');\n\tif(button){\n\t\tbutton.classList.remove('done');// Reset Button \n\t}\n\t\n\t// Clear paging navigation\n let paging = btnWrap.querySelector('.alm-paging');\n if(paging){\n paging.style.opacity = 0;\n }\n\t\n\t// Dispatch Filters\n\talmSetFilters(speed, data, el, type);\n\t\n}\n\n \n\n/**\n * almSetFilters\n * Set filter parameters on .alm-listing element\n *\n * @param {*} speed number;\n * @param {*} el element;\n * @param {*} data string;\n * @param {*} type string;\n * @updated 3.3\n * @since 2.6.1\n */\nlet almSetFilters = function(speed = 250, data, el, type){\n\t \n // Get `alm-listing` container\n let listing = el.querySelector('.alm-listing') || el.querySelector('.alm-comments'); \n if(!listing){\n\t return false;\n }\n \n switch (type){\t \n\t case 'filter' : \n\t\t // Update data attributes\n\t\t\tfor (let [key, value] of Object.entries(data)) {\n\t\t\t\t// Convert camelCase data atts back to dashes (-).\n\t\t key = key.replace(/\\W+/g, '-').replace(/([a-z\\d])([A-Z])/g, '$1-$2').toLowerCase(); \n\t\t\t\tlisting.setAttribute('data-'+ key, value);\n\t\t\t}\n\t\t\t// Fade ALM back (Filters only)\n\t\t\talmFadeIn(el, speed);\n\t\tbreak;\n\t\t\n\t\tcase 'tab' :\n\t\t\t// Update `data-tab-template` attribute\n\t\t\tlisting.setAttribute('data-preloaded', 'false');\n\t\t\tlisting.setAttribute('data-pause', 'false');\n\t\t\tlisting.setAttribute('data-tab-template', data.tabTemplate);\n\t\t\n\t\tbreak; \n\t}\n \n\t\n\t// Re-initiate Ajax Load More\n\tlet target = ''; \n if(data.target){\n // Target has been specified\n target = document.querySelector('.ajax-load-more-wrap[data-id=\"'+ data.target + '\"]');\n if(target){\n\t window.almInit(target);\n } \n } else {\n // Target not specified\n target = document.querySelector('.ajax-load-more-wrap');\n if(target){\n\t window.almInit(target);\n } \n }\n \n switch (type){\t \n\t \n\t case 'filter' : \n\t\t // Filters Complete \n\t\t if (typeof almFilterComplete === 'function') { // Standard Filtering\n\t\t almFilterComplete();\n\t\t }\n\t\t // Filter Add-on Complete\n\t\t if (typeof almFiltersAddonComplete === \"function\") { // Filters Add-on\n\t\t almFiltersAddonComplete(el);\n\t\t }\n\t\tbreak;\n\t\t\n\t\tcase 'tab' :\n\t\t\t// Tabs Complete \n\t\t if (typeof almTabsComplete === 'function') { // Standard Filtering\n\t\t almTabsComplete();\n\t\t }\t\t\n\t\tbreak; \n\t\t\n\t}\n \n};\n","import almDomParser from '../helpers/almDomParser';\n\n/**\n * insertScript\n * Search nodes for <script/> tags and run scripts.\n * Scripts cannot run with appendChild or innerHTML so this is necessary to function.\n * \n * @since 5.0\n */ \nlet insertScript = {\n\t\n\tinit: function(node){\n\t\tif ( this.isScript(node) === true ) {\n\t\t\tnode.parentNode.replaceChild( this.clone(node) , node );\n\t\t}\n\t\telse {\n\t\t\tlet i = 0;\n\t\t\tlet children = node.childNodes;\n\t\t\t\n\t\t\tif(children === undefined){\n let parser = new DOMParser(); \n let data = parser.parseFromString(node, 'text/html');\n if(data){\n children = data.body.childNodes;\n }\n }\n\t\t\twhile ( i < children.length ) {\n\t\t\t\tthis.replace( children[i++] );\n\t\t\t}\n\t\t}\t\t\t\n\t\treturn node;\n\t},\n\t\n\treplace: function(node) {\n\t\tif ( this.isScript(node) === true ) {\n\t\t\tnode.parentNode.replaceChild( this.clone(node) , node );\n\t\t}\n\t\telse {\n\t\t\tlet i = 0;\n\t\t\tlet children = node.childNodes;\n\t\t\twhile (i < children.length) {\n\t\t\t\tthis.replace( children[i++] );\n\t\t\t}\n\t\t}\t\n\t return node;\n\t},\n\t\n\tisScript: function(node){\n\t\treturn node.tagName === 'SCRIPT';\n\t},\n\t\n\tclone: function(node){\n\t\tlet script = document.createElement(\"script\");\n\t\tscript.text = node.innerHTML;\n\t\tfor( let i = node.attributes.length-1; i >= 0; i-- ) {\n\t\t\tscript.setAttribute( node.attributes[i].name, node.attributes[i].value );\n\t\t}\n\t\treturn script;\n\t}\n\t\n}\nexport default insertScript; \n","import almFadeIn from './fadeIn';\nimport almAppendChildren from '../helpers/almAppendChildren';\nimport almDomParser from '../helpers/almDomParser';\nimport srcsetPolyfill from '../helpers/srcsetPolyfill';\nlet imagesLoaded = require('imagesloaded');\n\n/**\n * almMasonry\n * Function to trigger built-in Ajax Load More Masonry\n * \n * @param {object} alm\n * @param {boolean} init\n * @param {boolean} filtering \n * @since 3.1\n * @updated 5.0.2\n*/\n\nlet msnry = '';\nlet almMasonry = (alm, init, filtering) => {\t\n\t\n\tlet container = alm.listing;\n\tlet html = alm.html;\n\t\n\tlet selector = alm.masonry_selector;\n\tlet columnWidth = alm.masonry_columnwidth;\n\tlet animation = alm.masonry_animation;\n\tlet horizontalOrder = alm.masonry_horizontalorder;\n\tlet speed = alm.speed;\t\n\tlet masonry_init = alm.masonry_init;\n \n let duration = (speed+100)/1000 +'s'; // Add 100 for some delay\n let hidden = 'scale(0.5)';\n let visible = 'scale(1)';\n \n if(animation === 'zoom-out'){\n hidden = 'translateY(-20px) scale(1.25)'; \n visible = 'translateY(0) scale(1)';\n }\n \n if(animation === 'slide-up'){\n hidden = 'translateY(50px)';\n visible = 'translateY(0)';\n } \n \n if(animation === 'slide-down'){\n hidden = 'translateY(-50px)';\n visible = 'translateY(0)';\n } \n \n if(animation === 'none'){\n hidden = 'translateY(0)'; \n visible = 'translateY(0)';\n }\n \n // columnWidth\n if(columnWidth){\n\t if(!isNaN(columnWidth)){// Check if number\n\t\t columnWidth = parseInt(columnWidth);\n\t\t}\n } else { // No columnWidth, use the selector\n\t columnWidth = selector;\n }\n \n // horizontalOrder\n horizontalOrder = (horizontalOrder === 'true') ? true : false;\n \n\tif(!filtering){\n \t\n\t\t// First Run\n\t\tif(masonry_init && init){\t\t\t\n\t\t\t\n\t\t\tsrcsetPolyfill(container, alm.ua); // Run srcSet polyfill\t\t\t\n\t\t\t\n\t\t\timagesLoaded( container, function() {\n\t\t\t\t\n\t\t\t\tlet defaults = {\n\t\t\t\t\titemSelector: selector,\n\t\t\t\t\ttransitionDuration: duration,\n\t\t\t\t\tcolumnWidth: columnWidth,\n\t\t\t\t\thorizontalOrder: horizontalOrder,\n hiddenStyle: {\n transform: hidden,\n opacity: 0\n },\n visibleStyle: {\n transform: visible,\n opacity: 1\n } \n }\n \n // Get custom Masonry options (https://masonry.desandro.com/options.html)\n let alm_masonry_vars = window.alm_masonry_vars;\n if(alm_masonry_vars){ \n\t\t Object.keys(alm_masonry_vars).forEach(function(key) {\t// Loop object\tto create key:prop\t\t\t\n\t\t\t\t\t\tdefaults[key] = alm_masonry_vars[key];\t\t\t\t\t\n\t\t\t\t\t});\n\t\t\t\t}\t\t\t\t\n \n // Init Masonry, delay to allow time for items to be added to the page\n setTimeout(function(){\n \tmsnry = new Masonry( container, defaults );\n \t// Fade In\n\t\t\t\t\talmFadeIn(container.parentNode, speed); \n }, 100 );\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t});\n\t\t}\n\t\t\n\t\t// Standard / Append content\n\t\telse{\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t// Loop all items and create array of node elements\n\t\t\tlet data = almDomParser(html, 'text/html');\n\t\t\t\n\t\t\tif(data){ \t\n\t\t\t\t\n \t\t\t// Append elements listing\n \t\t\talmAppendChildren(alm.listing, data, 'masonry');\n \t\t\t\n \t\t\t// Run srcSet polyfill\n \t\t\tsrcsetPolyfill(container, alm.ua);\n \t\t\t\n \t\t\t// Confirm imagesLoaded & append\n \t\t\timagesLoaded( container, function() {\n\t\t\t\t\tmsnry.appended( data );\t\t\t\t\n\t\t\t\t});\n\t\t\t\t\n\t\t\t}\n\t\t}\n\n\t} else{\n \t\n\t\t// Reset\n\t\tmsnry.destroy(); // destroy masonry\n\t\tcontainer.parentNode.style.opacity = 0;\n\t\talmMasonry(alm, true, false);\n\t\t\n\t}\n\n};\n\nexport default almMasonry;\n\n\n\n","/** \n * Set the results text if required.\n * \n * @param {*} target The target HTML element\n * @param {*} html The HTML\n * @since 5.1\n */\nlet almNoResults = (target, html = '') => {\n\tif(html === ''){ \n\t\treturn false; // exit if empty\t\n\t}\n\t\n\t// Remove empty <p/> tags\n\thtml = html.replace(/(<p><\\/p>)+/g, '');\n\t\n\t// Append to DOM\n\ttarget.innerHTML = html; \n}\n\nexport default almNoResults;","/** \n * Set the results text if required.\n * \n * @param {object} alm Global alm object\n * @param {string} type Type of results\n * @since 5.1\n */\nexport function almResultsText(alm, type = 'standard'){\n\tif(!alm.resultsText) return false;\t\n\tlet resultsType = (type === 'nextpage') ? 'nextpage' : 'standard';\n\t\n almGetResultsText(alm, resultsType); \n}\n\n\n\n/** \n * Get values for showing results text.\n * \n * @param {Object} alm\n * @param {String} type\n * @since 4.1\n */\nexport function almGetResultsText( alm, type = 'standard' ){\n \n\t\n\tif(!alm.resultsText) return false;\n\t\n\tlet current = 0;\n\tlet total = 0;\n\tlet preloaded = (alm.addons.preloaded === 'true') ? true : false;\n\tlet paging = (alm.addons.paging) ? true : false;\n\tlet posts_per_page = alm.orginal_posts_per_page;\n\t\n\tswitch (type) {\n \t\n \t// Nextpage\n \tcase 'nextpage' :\n\t\n current = parseInt(alm.localize.page);\n total = parseInt(alm.localize.total_posts);\n almRenderResultsText(alm.resultsText, current, total);\n \t\n \tbreak;\n \n \tdefault :\n \t\t\n \t\tcurrent = parseInt(alm.page) + 1; \t\t\n \t\ttotal = Math.ceil(alm.localize.total_posts / posts_per_page);\n \t\t\n \t\t// Add 1 page if Preloaded\n \t\tif(preloaded){\n\t \t\tcurrent = (paging) ? alm.page + 1 : current + 1;\n \t\t}\n \t\t\n almRenderResultsText(alm.resultsText, current, total);\n \t\n }\n}\n\n\n\n/** \n * Display `Showing {x} of {y} pages` text.\n *\n * @param {Object} alm\n * @param {String} type\n * @since 4.1\n */\nexport function almInitResultsText( alm, type = 'standard'){\n \n\tif(!alm.resultsText) return false;\n\t\n\tlet current = 0;\n\tlet total = Math.ceil(alm.localize.total_posts / alm.orginal_posts_per_page);\n\t\n\tswitch (type) {\n \t\n \t// Nextpage\n \tcase 'nextpage' : \t\n \t\n almRenderResultsText(alm.resultsText, alm.addons.nextpage_startpage, alm.localize.total_posts);\n \t\n break;\n \t\n \t// Preloaded\n \tcase 'preloaded' : \n \t \n current = (alm.addons.paging && alm.addons.seo) ? parseInt(alm.start_page) + 1 : parseInt(alm.page) + 1; \n almRenderResultsText(alm.resultsText, current, total);\n \t\n \tbreak;\n \t\n \tdefault :\n \t\n \t console.log('Nothing to set.');\n \t \n\t}\n\t\n}\n\n\n/** \n * Render `Showing {x} of {y} results` text.\n * \n * @param {Element} el\n * @param {String} current\n * @param {String} total\n * @since 4.1\n */\nlet almRenderResultsText = function(el, current, total){\n \n total = parseInt(total);\n let text = (total > 0) ? alm_localize.results_text : alm_localize.no_results_text;\n \n if(total > 0){\n text = text.replace('{num}', `<span class=\"alm-results-current\">${current}</span>`);\n text = text.replace('{total}', `<span class=\"alm-results-total\">${total}</span>`);\n el.innerHTML = text; \n } else {\n el.innerHTML = text; \n }\n}\n","/**\n * setFocus\n * Set user focus to improve accessibility after load events\n * \n * @param {Boolean} init\n * @param {String} preloaded\n * @param {HTMLElement} element\n * @param {Boolean} alm_is_filtering\n * @since 5.1\n */ \nlet setFocus = (init = true, preloaded = 'false', element, alm_is_filtering = false) => {\n\t\n\tif(!alm_is_filtering){\n\t\tif( (init || !element) && preloaded !== 'true' ){\n\t return false; // Exit if first run\n\t }\n }\n\n // Check if element is an array.\n // If `transition_container=\"false\"`, `element` will be an array.\n /*\n let is_array = Array.isArray(element);\n element = (is_array) ? element[0] : element;\n */ \n \n // Set tabIndex on `.alm-reveal`\n\telement.setAttribute('tabIndex', '-1');\n element.style.outline = 'none';\n \n // Get Parent container\n // If `.alm-listing` set parent to element\n let parent = (!element.classList.contains('alm-listing')) ? element.parentNode : element;\t\n \n // Scroll Container\n\tlet scrollContainer = parent.dataset.scrollContainer;\n\t\n\t// If scroll container, move it, not the window.\t\n\tif(scrollContainer){\t\t\t\t\n\t\tlet container = document.querySelector(scrollContainer);\n\t\tif(container){\n\t\t\tlet left = container.scrollLeft;\n\t\t\tlet top = container.scrollTop;\n\t\t\telement.focus();\n\t\t\tcontainer.scrollLeft = left;\n\t\t\tcontainer.scrollTop = top;\t\t\t\n\t\t}\t\t\n\t} \n\t\n\t// Move window\n\telse { \n\t\tlet x = window.scrollX;\n\t\tlet y = window.scrollY;\n\t\telement.focus();\n\t\twindow.scrollTo(x, y);\n\t}\n\t\n}\nexport default setFocus; \n","import * as resultsText from './resultsText';\n\n/** \n * Set localized variables\n *\n * @param {object} alm Global alm object\n * @since 4.1 \n */\n \nlet setLocalizedVars = function(alm){ \n \n let type = 'standard'; \n\n\t// Current Page `page`\n\tif(alm.addons.nextpage){\n \ttype = 'nextpage';\n \tif(alm.addons.paging){\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + 1); \t\n \t} else {\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + parseInt(alm.addons.nextpage_startpage) + 1);\n \t}\n } else {\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + 1);\n }\n \n // Total Posts `total_posts`.\n // Only update if !Preloaded && !Nextpage\n if(alm.addons.preloaded !== 'true' && !alm.addons.nextpage){\n \talm.AjaxLoadMore.setLocalizedVar('total_posts', alm.totalposts);\n } \n \n\t// Set Results Text (if required)\n resultsText.almResultsText(alm, type); \n \n}\n\nexport default setLocalizedVars;","\"use strict\";\n\nrequire(\"core-js/es6\");\n\nrequire(\"core-js/fn/array/includes\");\n\nrequire(\"core-js/fn/string/pad-start\");\n\nrequire(\"core-js/fn/string/pad-end\");\n\nrequire(\"core-js/fn/symbol/async-iterator\");\n\nrequire(\"core-js/fn/object/get-own-property-descriptors\");\n\nrequire(\"core-js/fn/object/values\");\n\nrequire(\"core-js/fn/object/entries\");\n\nrequire(\"core-js/fn/promise/finally\");\n\nrequire(\"core-js/web\");\n\nrequire(\"regenerator-runtime/runtime\");","require(\"./lib/noConflict\");\n","require('../modules/es6.symbol');\nrequire('../modules/es6.object.create');\nrequire('../modules/es6.object.define-property');\nrequire('../modules/es6.object.define-properties');\nrequire('../modules/es6.object.get-own-property-descriptor');\nrequire('../modules/es6.object.get-prototype-of');\nrequire('../modules/es6.object.keys');\nrequire('../modules/es6.object.get-own-property-names');\nrequire('../modules/es6.object.freeze');\nrequire('../modules/es6.object.seal');\nrequire('../modules/es6.object.prevent-extensions');\nrequire('../modules/es6.object.is-frozen');\nrequire('../modules/es6.object.is-sealed');\nrequire('../modules/es6.object.is-extensible');\nrequire('../modules/es6.object.assign');\nrequire('../modules/es6.object.is');\nrequire('../modules/es6.object.set-prototype-of');\nrequire('../modules/es6.object.to-string');\nrequire('../modules/es6.function.bind');\nrequire('../modules/es6.function.name');\nrequire('../modules/es6.function.has-instance');\nrequire('../modules/es6.parse-int');\nrequire('../modules/es6.parse-float');\nrequire('../modules/es6.number.constructor');\nrequire('../modules/es6.number.to-fixed');\nrequire('../modules/es6.number.to-precision');\nrequire('../modules/es6.number.epsilon');\nrequire('../modules/es6.number.is-finite');\nrequire('../modules/es6.number.is-integer');\nrequire('../modules/es6.number.is-nan');\nrequire('../modules/es6.number.is-safe-integer');\nrequire('../modules/es6.number.max-safe-integer');\nrequire('../modules/es6.number.min-safe-integer');\nrequire('../modules/es6.number.parse-float');\nrequire('../modules/es6.number.parse-int');\nrequire('../modules/es6.math.acosh');\nrequire('../modules/es6.math.asinh');\nrequire('../modules/es6.math.atanh');\nrequire('../modules/es6.math.cbrt');\nrequire('../modules/es6.math.clz32');\nrequire('../modules/es6.math.cosh');\nrequire('../modules/es6.math.expm1');\nrequire('../modules/es6.math.fround');\nrequire('../modules/es6.math.hypot');\nrequire('../modules/es6.math.imul');\nrequire('../modules/es6.math.log10');\nrequire('../modules/es6.math.log1p');\nrequire('../modules/es6.math.log2');\nrequire('../modules/es6.math.sign');\nrequire('../modules/es6.math.sinh');\nrequire('../modules/es6.math.tanh');\nrequire('../modules/es6.math.trunc');\nrequire('../modules/es6.string.from-code-point');\nrequire('../modules/es6.string.raw');\nrequire('../modules/es6.string.trim');\nrequire('../modules/es6.string.iterator');\nrequire('../modules/es6.string.code-point-at');\nrequire('../modules/es6.string.ends-with');\nrequire('../modules/es6.string.includes');\nrequire('../modules/es6.string.repeat');\nrequire('../modules/es6.string.starts-with');\nrequire('../modules/es6.string.anchor');\nrequire('../modules/es6.string.big');\nrequire('../modules/es6.string.blink');\nrequire('../modules/es6.string.bold');\nrequire('../modules/es6.string.fixed');\nrequire('../modules/es6.string.fontcolor');\nrequire('../modules/es6.string.fontsize');\nrequire('../modules/es6.string.italics');\nrequire('../modules/es6.string.link');\nrequire('../modules/es6.string.small');\nrequire('../modules/es6.string.strike');\nrequire('../modules/es6.string.sub');\nrequire('../modules/es6.string.sup');\nrequire('../modules/es6.date.now');\nrequire('../modules/es6.date.to-json');\nrequire('../modules/es6.date.to-iso-string');\nrequire('../modules/es6.date.to-string');\nrequire('../modules/es6.date.to-primitive');\nrequire('../modules/es6.array.is-array');\nrequire('../modules/es6.array.from');\nrequire('../modules/es6.array.of');\nrequire('../modules/es6.array.join');\nrequire('../modules/es6.array.slice');\nrequire('../modules/es6.array.sort');\nrequire('../modules/es6.array.for-each');\nrequire('../modules/es6.array.map');\nrequire('../modules/es6.array.filter');\nrequire('../modules/es6.array.some');\nrequire('../modules/es6.array.every');\nrequire('../modules/es6.array.reduce');\nrequire('../modules/es6.array.reduce-right');\nrequire('../modules/es6.array.index-of');\nrequire('../modules/es6.array.last-index-of');\nrequire('../modules/es6.array.copy-within');\nrequire('../modules/es6.array.fill');\nrequire('../modules/es6.array.find');\nrequire('../modules/es6.array.find-index');\nrequire('../modules/es6.array.species');\nrequire('../modules/es6.array.iterator');\nrequire('../modules/es6.regexp.constructor');\nrequire('../modules/es6.regexp.exec');\nrequire('../modules/es6.regexp.to-string');\nrequire('../modules/es6.regexp.flags');\nrequire('../modules/es6.regexp.match');\nrequire('../modules/es6.regexp.replace');\nrequire('../modules/es6.regexp.search');\nrequire('../modules/es6.regexp.split');\nrequire('../modules/es6.promise');\nrequire('../modules/es6.map');\nrequire('../modules/es6.set');\nrequire('../modules/es6.weak-map');\nrequire('../modules/es6.weak-set');\nrequire('../modules/es6.typed.array-buffer');\nrequire('../modules/es6.typed.data-view');\nrequire('../modules/es6.typed.int8-array');\nrequire('../modules/es6.typed.uint8-array');\nrequire('../modules/es6.typed.uint8-clamped-array');\nrequire('../modules/es6.typed.int16-array');\nrequire('../modules/es6.typed.uint16-array');\nrequire('../modules/es6.typed.int32-array');\nrequire('../modules/es6.typed.uint32-array');\nrequire('../modules/es6.typed.float32-array');\nrequire('../modules/es6.typed.float64-array');\nrequire('../modules/es6.reflect.apply');\nrequire('../modules/es6.reflect.construct');\nrequire('../modules/es6.reflect.define-property');\nrequire('../modules/es6.reflect.delete-property');\nrequire('../modules/es6.reflect.enumerate');\nrequire('../modules/es6.reflect.get');\nrequire('../modules/es6.reflect.get-own-property-descriptor');\nrequire('../modules/es6.reflect.get-prototype-of');\nrequire('../modules/es6.reflect.has');\nrequire('../modules/es6.reflect.is-extensible');\nrequire('../modules/es6.reflect.own-keys');\nrequire('../modules/es6.reflect.prevent-extensions');\nrequire('../modules/es6.reflect.set');\nrequire('../modules/es6.reflect.set-prototype-of');\nmodule.exports = require('../modules/_core');\n","require('../../modules/es7.array.includes');\nmodule.exports = require('../../modules/_core').Array.includes;\n","require('../../modules/es7.object.entries');\nmodule.exports = require('../../modules/_core').Object.entries;\n","require('../../modules/es7.object.get-own-property-descriptors');\nmodule.exports = require('../../modules/_core').Object.getOwnPropertyDescriptors;\n","require('../../modules/es7.object.values');\nmodule.exports = require('../../modules/_core').Object.values;\n","'use strict';\nrequire('../../modules/es6.promise');\nrequire('../../modules/es7.promise.finally');\nmodule.exports = require('../../modules/_core').Promise['finally'];\n","require('../../modules/es7.string.pad-end');\nmodule.exports = require('../../modules/_core').String.padEnd;\n","require('../../modules/es7.string.pad-start');\nmodule.exports = require('../../modules/_core').String.padStart;\n","require('../../modules/es7.symbol.async-iterator');\nmodule.exports = require('../../modules/_wks-ext').f('asyncIterator');\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","var cof = require('./_cof');\nmodule.exports = function (it, msg) {\n if (typeof it != 'number' && cof(it) != 'Number') throw TypeError(msg);\n return +it;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","'use strict';\nvar at = require('./_string-at')(true);\n\n // `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? at(S, index).length : 1);\n};\n","module.exports = function (it, Constructor, name, forbiddenField) {\n if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) {\n throw TypeError(name + ': incorrect invocation!');\n } return it;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\n\nmodule.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {\n var O = toObject(this);\n var len = toLength(O.length);\n var to = toAbsoluteIndex(target, len);\n var from = toAbsoluteIndex(start, len);\n var end = arguments.length > 2 ? arguments[2] : undefined;\n var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);\n var inc = 1;\n if (from < to && to < from + count) {\n inc = -1;\n from += count - 1;\n to += count - 1;\n }\n while (count-- > 0) {\n if (from in O) O[to] = O[from];\n else delete O[to];\n to += inc;\n from += inc;\n } return O;\n};\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nmodule.exports = function fill(value /* , start = 0, end = @length */) {\n var O = toObject(this);\n var length = toLength(O.length);\n var aLen = arguments.length;\n var index = toAbsoluteIndex(aLen > 1 ? arguments[1] : undefined, length);\n var end = aLen > 2 ? arguments[2] : undefined;\n var endPos = end === undefined ? length : toAbsoluteIndex(end, length);\n while (endPos > index) O[index++] = value;\n return O;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","var aFunction = require('./_a-function');\nvar toObject = require('./_to-object');\nvar IObject = require('./_iobject');\nvar toLength = require('./_to-length');\n\nmodule.exports = function (that, callbackfn, aLen, memo, isRight) {\n aFunction(callbackfn);\n var O = toObject(that);\n var self = IObject(O);\n var length = toLength(O.length);\n var index = isRight ? length - 1 : 0;\n var i = isRight ? -1 : 1;\n if (aLen < 2) for (;;) {\n if (index in self) {\n memo = self[index];\n index += i;\n break;\n }\n index += i;\n if (isRight ? index < 0 : length <= index) {\n throw TypeError('Reduce of empty array with no initial value');\n }\n }\n for (;isRight ? index >= 0 : length > index; index += i) if (index in self) {\n memo = callbackfn(memo, self[index], index, O);\n }\n return memo;\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","'use strict';\nvar aFunction = require('./_a-function');\nvar isObject = require('./_is-object');\nvar invoke = require('./_invoke');\nvar arraySlice = [].slice;\nvar factories = {};\n\nvar construct = function (F, len, args) {\n if (!(len in factories)) {\n for (var n = [], i = 0; i < len; i++) n[i] = 'a[' + i + ']';\n // eslint-disable-next-line no-new-func\n factories[len] = Function('F,a', 'return new F(' + n.join(',') + ')');\n } return factories[len](F, args);\n};\n\nmodule.exports = Function.bind || function bind(that /* , ...args */) {\n var fn = aFunction(this);\n var partArgs = arraySlice.call(arguments, 1);\n var bound = function (/* args... */) {\n var args = partArgs.concat(arraySlice.call(arguments));\n return this instanceof bound ? construct(fn, args.length, args) : invoke(fn, args, that);\n };\n if (isObject(fn.prototype)) bound.prototype = fn.prototype;\n return bound;\n};\n","// getting tag from 19.1.3.6 Object.prototype.toString()\nvar cof = require('./_cof');\nvar TAG = require('./_wks')('toStringTag');\n// ES3 wrong here\nvar ARG = cof(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (e) { /* empty */ }\n};\n\nmodule.exports = function (it) {\n var O, T, B;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n // builtinTag case\n : ARG ? cof(O)\n // ES3 arguments fallback\n : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","'use strict';\nvar dP = require('./_object-dp').f;\nvar create = require('./_object-create');\nvar redefineAll = require('./_redefine-all');\nvar ctx = require('./_ctx');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar $iterDefine = require('./_iter-define');\nvar step = require('./_iter-step');\nvar setSpecies = require('./_set-species');\nvar DESCRIPTORS = require('./_descriptors');\nvar fastKey = require('./_meta').fastKey;\nvar validate = require('./_validate-collection');\nvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\nvar getEntry = function (that, key) {\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return that._i[index];\n // frozen object case\n for (entry = that._f; entry; entry = entry.n) {\n if (entry.k == key) return entry;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = create(null); // index\n that._f = undefined; // first entry\n that._l = undefined; // last entry\n that[SIZE] = 0; // size\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n entry.r = true;\n if (entry.p) entry.p = entry.p.n = undefined;\n delete data[entry.i];\n }\n that._f = that._l = undefined;\n that[SIZE] = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = validate(this, NAME);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.n;\n var prev = entry.p;\n delete that._i[entry.i];\n entry.r = true;\n if (prev) prev.n = next;\n if (next) next.p = prev;\n if (that._f == entry) that._f = next;\n if (that._l == entry) that._l = prev;\n that[SIZE]--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n validate(this, NAME);\n var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.n : this._f) {\n f(entry.v, entry.k, this);\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(validate(this, NAME), key);\n }\n });\n if (DESCRIPTORS) dP(C.prototype, 'size', {\n get: function () {\n return validate(this, NAME)[SIZE];\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var entry = getEntry(that, key);\n var prev, index;\n // change existing entry\n if (entry) {\n entry.v = value;\n // create new entry\n } else {\n that._l = entry = {\n i: index = fastKey(key, true), // <- index\n k: key, // <- key\n v: value, // <- value\n p: prev = that._l, // <- previous entry\n n: undefined, // <- next entry\n r: false // <- removed\n };\n if (!that._f) that._f = entry;\n if (prev) prev.n = entry;\n that[SIZE]++;\n // add to index\n if (index !== 'F') that._i[index] = entry;\n } return that;\n },\n getEntry: getEntry,\n setStrong: function (C, NAME, IS_MAP) {\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n $iterDefine(C, NAME, function (iterated, kind) {\n this._t = validate(iterated, NAME); // target\n this._k = kind; // kind\n this._l = undefined; // previous\n }, function () {\n var that = this;\n var kind = that._k;\n var entry = that._l;\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n // get next entry\n if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n // or finish the iteration\n that._t = undefined;\n return step(1);\n }\n // return step by kind\n if (kind == 'keys') return step(0, entry.k);\n if (kind == 'values') return step(0, entry.v);\n return step(0, [entry.k, entry.v]);\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(NAME);\n }\n};\n","'use strict';\nvar redefineAll = require('./_redefine-all');\nvar getWeak = require('./_meta').getWeak;\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar createArrayMethod = require('./_array-methods');\nvar $has = require('./_has');\nvar validate = require('./_validate-collection');\nvar arrayFind = createArrayMethod(5);\nvar arrayFindIndex = createArrayMethod(6);\nvar id = 0;\n\n// fallback for uncaught frozen keys\nvar uncaughtFrozenStore = function (that) {\n return that._l || (that._l = new UncaughtFrozenStore());\n};\nvar UncaughtFrozenStore = function () {\n this.a = [];\n};\nvar findUncaughtFrozen = function (store, key) {\n return arrayFind(store.a, function (it) {\n return it[0] === key;\n });\n};\nUncaughtFrozenStore.prototype = {\n get: function (key) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) return entry[1];\n },\n has: function (key) {\n return !!findUncaughtFrozen(this, key);\n },\n set: function (key, value) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) entry[1] = value;\n else this.a.push([key, value]);\n },\n 'delete': function (key) {\n var index = arrayFindIndex(this.a, function (it) {\n return it[0] === key;\n });\n if (~index) this.a.splice(index, 1);\n return !!~index;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = id++; // collection id\n that._l = undefined; // leak store for uncaught frozen objects\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.3.3.2 WeakMap.prototype.delete(key)\n // 23.4.3.3 WeakSet.prototype.delete(value)\n 'delete': function (key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n return data && $has(data, this._i) && delete data[this._i];\n },\n // 23.3.3.4 WeakMap.prototype.has(key)\n // 23.4.3.4 WeakSet.prototype.has(value)\n has: function has(key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n return data && $has(data, this._i);\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var data = getWeak(anObject(key), true);\n if (data === true) uncaughtFrozenStore(that).set(key, value);\n else data[that._i] = value;\n return that;\n },\n ufstore: uncaughtFrozenStore\n};\n","'use strict';\nvar global = require('./_global');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar redefineAll = require('./_redefine-all');\nvar meta = require('./_meta');\nvar forOf = require('./_for-of');\nvar anInstance = require('./_an-instance');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar $iterDetect = require('./_iter-detect');\nvar setToStringTag = require('./_set-to-string-tag');\nvar inheritIfRequired = require('./_inherit-if-required');\n\nmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n var Base = global[NAME];\n var C = Base;\n var ADDER = IS_MAP ? 'set' : 'add';\n var proto = C && C.prototype;\n var O = {};\n var fixMethod = function (KEY) {\n var fn = proto[KEY];\n redefine(proto, KEY,\n KEY == 'delete' ? function (a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'has' ? function has(a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'get' ? function get(a) {\n return IS_WEAK && !isObject(a) ? undefined : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'add' ? function add(a) { fn.call(this, a === 0 ? 0 : a); return this; }\n : function set(a, b) { fn.call(this, a === 0 ? 0 : a, b); return this; }\n );\n };\n if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n new C().entries().next();\n }))) {\n // create collection constructor\n C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n redefineAll(C.prototype, methods);\n meta.NEED = true;\n } else {\n var instance = new C();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n var ACCEPT_ITERABLES = $iterDetect(function (iter) { new C(iter); }); // eslint-disable-line no-new\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new C();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n if (!ACCEPT_ITERABLES) {\n C = wrapper(function (target, iterable) {\n anInstance(target, C, NAME);\n var that = inheritIfRequired(new Base(), target, C);\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n return that;\n });\n C.prototype = proto;\n proto.constructor = C;\n }\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n // weak collections should not contains .clear method\n if (IS_WEAK && proto.clear) delete proto.clear;\n }\n\n setToStringTag(C, NAME);\n\n O[NAME] = C;\n $export($export.G + $export.W + $export.F * (C != Base), O);\n\n if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n return C;\n};\n","var core = module.exports = { version: '2.6.5' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","'use strict';\nvar $defineProperty = require('./_object-dp');\nvar createDesc = require('./_property-desc');\n\nmodule.exports = function (object, index, value) {\n if (index in object) $defineProperty.f(object, index, createDesc(0, value));\n else object[index] = value;\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","'use strict';\n// 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString()\nvar fails = require('./_fails');\nvar getTime = Date.prototype.getTime;\nvar $toISOString = Date.prototype.toISOString;\n\nvar lz = function (num) {\n return num > 9 ? num : '0' + num;\n};\n\n// PhantomJS / old WebKit has a broken implementations\nmodule.exports = (fails(function () {\n return $toISOString.call(new Date(-5e13 - 1)) != '0385-07-25T07:06:39.999Z';\n}) || !fails(function () {\n $toISOString.call(new Date(NaN));\n})) ? function toISOString() {\n if (!isFinite(getTime.call(this))) throw RangeError('Invalid time value');\n var d = this;\n var y = d.getUTCFullYear();\n var m = d.getUTCMilliseconds();\n var s = y < 0 ? '-' : y > 9999 ? '+' : '';\n return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) +\n '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) +\n 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) +\n ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';\n} : $toISOString;\n","'use strict';\nvar anObject = require('./_an-object');\nvar toPrimitive = require('./_to-primitive');\nvar NUMBER = 'number';\n\nmodule.exports = function (hint) {\n if (hint !== 'string' && hint !== NUMBER && hint !== 'default') throw TypeError('Incorrect hint');\n return toPrimitive(anObject(this), hint != NUMBER);\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var MATCH = require('./_wks')('match');\nmodule.exports = function (KEY) {\n var re = /./;\n try {\n '/./'[KEY](re);\n } catch (e) {\n try {\n re[MATCH] = false;\n return !'/./'[KEY](re);\n } catch (f) { /* empty */ }\n } return true;\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","'use strict';\nrequire('./es6.regexp.exec');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\nvar regexpExec = require('./_regexp-exec');\n\nvar SPECIES = wks('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = (function () {\n // Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length === 2 && result[0] === 'a' && result[1] === 'b';\n})();\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL ? !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n re.exec = function () { execCalled = true; return null; };\n if (KEY === 'split') {\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n }\n re[SYMBOL]('');\n return !execCalled;\n }) : undefined;\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var fns = exec(\n defined,\n SYMBOL,\n ''[KEY],\n function maybeCallNative(nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n }\n );\n var strfn = fns[0];\n var rxfn = fns[1];\n\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","var ctx = require('./_ctx');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar anObject = require('./_an-object');\nvar toLength = require('./_to-length');\nvar getIterFn = require('./core.get-iterator-method');\nvar BREAK = {};\nvar RETURN = {};\nvar exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n var iterFn = ITERATOR ? function () { return iterable; } : getIterFn(iterable);\n var f = ctx(fn, that, entries ? 2 : 1);\n var index = 0;\n var length, step, iterator, result;\n if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n // fast case for arrays with default iterator\n if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n if (result === BREAK || result === RETURN) return result;\n } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n result = call(iterator, f, step.value, entries);\n if (result === BREAK || result === RETURN) return result;\n }\n};\nexports.BREAK = BREAK;\nexports.RETURN = RETURN;\n","module.exports = require('./_shared')('native-function-to-string', Function.toString);\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","// fast apply, http://jsperf.lnkit.com/fast-apply/5\nmodule.exports = function (fn, args, that) {\n var un = that === undefined;\n switch (args.length) {\n case 0: return un ? fn()\n : fn.call(that);\n case 1: return un ? fn(args[0])\n : fn.call(that, args[0]);\n case 2: return un ? fn(args[0], args[1])\n : fn.call(that, args[0], args[1]);\n case 3: return un ? fn(args[0], args[1], args[2])\n : fn.call(that, args[0], args[1], args[2]);\n case 4: return un ? fn(args[0], args[1], args[2], args[3])\n : fn.call(that, args[0], args[1], args[2], args[3]);\n } return fn.apply(that, args);\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// check on default Array iterator\nvar Iterators = require('./_iterators');\nvar ITERATOR = require('./_wks')('iterator');\nvar ArrayProto = Array.prototype;\n\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n};\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","// 20.1.2.3 Number.isInteger(number)\nvar isObject = require('./_is-object');\nvar floor = Math.floor;\nmodule.exports = function isInteger(it) {\n return !isObject(it) && isFinite(it) && floor(it) === it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","// 7.2.8 IsRegExp(argument)\nvar isObject = require('./_is-object');\nvar cof = require('./_cof');\nvar MATCH = require('./_wks')('match');\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');\n};\n","// call something on iterator step with safe closing on error\nvar anObject = require('./_an-object');\nmodule.exports = function (iterator, fn, value, entries) {\n try {\n return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (e) {\n var ret = iterator['return'];\n if (ret !== undefined) anObject(ret.call(iterator));\n throw e;\n }\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","var ITERATOR = require('./_wks')('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var riter = [7][ITERATOR]();\n riter['return'] = function () { SAFE_CLOSING = true; };\n // eslint-disable-next-line no-throw-literal\n Array.from(riter, function () { throw 2; });\n} catch (e) { /* empty */ }\n\nmodule.exports = function (exec, skipClosing) {\n if (!skipClosing && !SAFE_CLOSING) return false;\n var safe = false;\n try {\n var arr = [7];\n var iter = arr[ITERATOR]();\n iter.next = function () { return { done: safe = true }; };\n arr[ITERATOR] = function () { return iter; };\n exec(arr);\n } catch (e) { /* empty */ }\n return safe;\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = {};\n","module.exports = false;\n","// 20.2.2.14 Math.expm1(x)\nvar $expm1 = Math.expm1;\nmodule.exports = (!$expm1\n // Old FF bug\n || $expm1(10) > 22025.465794806719 || $expm1(10) < 22025.4657948067165168\n // Tor Browser bug\n || $expm1(-2e-17) != -2e-17\n) ? function expm1(x) {\n return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;\n} : $expm1;\n","// 20.2.2.16 Math.fround(x)\nvar sign = require('./_math-sign');\nvar pow = Math.pow;\nvar EPSILON = pow(2, -52);\nvar EPSILON32 = pow(2, -23);\nvar MAX32 = pow(2, 127) * (2 - EPSILON32);\nvar MIN32 = pow(2, -126);\n\nvar roundTiesToEven = function (n) {\n return n + 1 / EPSILON - 1 / EPSILON;\n};\n\nmodule.exports = Math.fround || function fround(x) {\n var $abs = Math.abs(x);\n var $sign = sign(x);\n var a, result;\n if ($abs < MIN32) return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;\n a = (1 + EPSILON32 / EPSILON) * $abs;\n result = a - (a - $abs);\n // eslint-disable-next-line no-self-compare\n if (result > MAX32 || result != result) return $sign * Infinity;\n return $sign * result;\n};\n","// 20.2.2.20 Math.log1p(x)\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);\n};\n","// 20.2.2.28 Math.sign(x)\nmodule.exports = Math.sign || function sign(x) {\n // eslint-disable-next-line no-self-compare\n return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;\n};\n","var META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n // return hash weak collections IDs\n } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n return it;\n};\nvar meta = module.exports = {\n KEY: META,\n NEED: false,\n fastKey: fastKey,\n getWeak: getWeak,\n onFreeze: onFreeze\n};\n","var global = require('./_global');\nvar macrotask = require('./_task').set;\nvar Observer = global.MutationObserver || global.WebKitMutationObserver;\nvar process = global.process;\nvar Promise = global.Promise;\nvar isNode = require('./_cof')(process) == 'process';\n\nmodule.exports = function () {\n var head, last, notify;\n\n var flush = function () {\n var parent, fn;\n if (isNode && (parent = process.domain)) parent.exit();\n while (head) {\n fn = head.fn;\n head = head.next;\n try {\n fn();\n } catch (e) {\n if (head) notify();\n else last = undefined;\n throw e;\n }\n } last = undefined;\n if (parent) parent.enter();\n };\n\n // Node.js\n if (isNode) {\n notify = function () {\n process.nextTick(flush);\n };\n // browsers with MutationObserver, except iOS Safari - https://github.com/zloirock/core-js/issues/339\n } else if (Observer && !(global.navigator && global.navigator.standalone)) {\n var toggle = true;\n var node = document.createTextNode('');\n new Observer(flush).observe(node, { characterData: true }); // eslint-disable-line no-new\n notify = function () {\n node.data = toggle = !toggle;\n };\n // environments with maybe non-completely correct, but existent Promise\n } else if (Promise && Promise.resolve) {\n // Promise.resolve without an argument throws an error in LG WebOS 2\n var promise = Promise.resolve(undefined);\n notify = function () {\n promise.then(flush);\n };\n // for other environments - macrotask based on:\n // - setImmediate\n // - MessageChannel\n // - window.postMessag\n // - onreadystatechange\n // - setTimeout\n } else {\n notify = function () {\n // strange IE + webpack dev server bug - use .call(global)\n macrotask.call(global, flush);\n };\n }\n\n return function (fn) {\n var task = { fn: fn, next: undefined };\n if (last) last.next = task;\n if (!head) {\n head = task;\n notify();\n } last = task;\n };\n};\n","'use strict';\n// 25.4.1.5 NewPromiseCapability(C)\nvar aFunction = require('./_a-function');\n\nfunction PromiseCapability(C) {\n var resolve, reject;\n this.promise = new C(function ($$resolve, $$reject) {\n if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');\n resolve = $$resolve;\n reject = $$reject;\n });\n this.resolve = aFunction(resolve);\n this.reject = aFunction(reject);\n}\n\nmodule.exports.f = function (C) {\n return new PromiseCapability(C);\n};\n","'use strict';\n// 19.1.2.1 Object.assign(target, source, ...)\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nvar toObject = require('./_to-object');\nvar IObject = require('./_iobject');\nvar $assign = Object.assign;\n\n// should work with symbols and should have deterministic property order (V8 bug)\nmodule.exports = !$assign || require('./_fails')(function () {\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var S = Symbol();\n var K = 'abcdefghijklmnopqrst';\n A[S] = 7;\n K.split('').forEach(function (k) { B[k] = k; });\n return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var aLen = arguments.length;\n var index = 1;\n var getSymbols = gOPS.f;\n var isEnum = pIE.f;\n while (aLen > index) {\n var S = IObject(arguments[index++]);\n var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) if (isEnum.call(S, key = keys[j++])) T[key] = S[key];\n } return T;\n} : $assign;\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = require('./_to-iobject');\nvar gOPN = require('./_object-gopn').f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return gOPN(it);\n } catch (e) {\n return windowNames.slice();\n }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","exports.f = Object.getOwnPropertySymbols;\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","exports.f = {}.propertyIsEnumerable;\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","var getKeys = require('./_object-keys');\nvar toIObject = require('./_to-iobject');\nvar isEnum = require('./_object-pie').f;\nmodule.exports = function (isEntries) {\n return function (it) {\n var O = toIObject(it);\n var keys = getKeys(O);\n var length = keys.length;\n var i = 0;\n var result = [];\n var key;\n while (length > i) if (isEnum.call(O, key = keys[i++])) {\n result.push(isEntries ? [key, O[key]] : O[key]);\n } return result;\n };\n};\n","// all object keys, includes non-enumerable and symbols\nvar gOPN = require('./_object-gopn');\nvar gOPS = require('./_object-gops');\nvar anObject = require('./_an-object');\nvar Reflect = require('./_global').Reflect;\nmodule.exports = Reflect && Reflect.ownKeys || function ownKeys(it) {\n var keys = gOPN.f(anObject(it));\n var getSymbols = gOPS.f;\n return getSymbols ? keys.concat(getSymbols(it)) : keys;\n};\n","var $parseFloat = require('./_global').parseFloat;\nvar $trim = require('./_string-trim').trim;\n\nmodule.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? function parseFloat(str) {\n var string = $trim(String(str), 3);\n var result = $parseFloat(string);\n return result === 0 && string.charAt(0) == '-' ? -0 : result;\n} : $parseFloat;\n","var $parseInt = require('./_global').parseInt;\nvar $trim = require('./_string-trim').trim;\nvar ws = require('./_string-ws');\nvar hex = /^[-+]?0[xX]/;\n\nmodule.exports = $parseInt(ws + '08') !== 8 || $parseInt(ws + '0x16') !== 22 ? function parseInt(str, radix) {\n var string = $trim(String(str), 3);\n return $parseInt(string, (radix >>> 0) || (hex.test(string) ? 16 : 10));\n} : $parseInt;\n","module.exports = function (exec) {\n try {\n return { e: false, v: exec() };\n } catch (e) {\n return { e: true, v: e };\n }\n};\n","var anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar newPromiseCapability = require('./_new-promise-capability');\n\nmodule.exports = function (C, x) {\n anObject(C);\n if (isObject(x) && x.constructor === C) return x;\n var promiseCapability = newPromiseCapability.f(C);\n var resolve = promiseCapability.resolve;\n resolve(x);\n return promiseCapability.promise;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var redefine = require('./_redefine');\nmodule.exports = function (target, src, safe) {\n for (var key in src) redefine(target, key, src[key], safe);\n return target;\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar $toString = require('./_function-to-string');\nvar TO_STRING = 'toString';\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","'use strict';\n\nvar classof = require('./_classof');\nvar builtinExec = RegExp.prototype.exec;\n\n // `RegExpExec` abstract operation\n// https://tc39.github.io/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw new TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n if (classof(R) !== 'RegExp') {\n throw new TypeError('RegExp#exec called on incompatible receiver');\n }\n return builtinExec.call(R, S);\n};\n","'use strict';\n\nvar regexpFlags = require('./_flags');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar LAST_INDEX = 'lastIndex';\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/,\n re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1[LAST_INDEX] !== 0 || re2[LAST_INDEX] !== 0;\n})();\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + re.source + '$(?!\\\\s)', regexpFlags.call(re));\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re[LAST_INDEX];\n\n match = nativeExec.call(re, str);\n\n if (UPDATES_LAST_INDEX_WRONG && match) {\n re[LAST_INDEX] = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n // eslint-disable-next-line no-loop-func\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","// 7.2.9 SameValue(x, y)\nmodule.exports = Object.is || function is(x, y) {\n // eslint-disable-next-line no-self-compare\n return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","'use strict';\nvar global = require('./_global');\nvar dP = require('./_object-dp');\nvar DESCRIPTORS = require('./_descriptors');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (KEY) {\n var C = global[KEY];\n if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","// 7.3.20 SpeciesConstructor(O, defaultConstructor)\nvar anObject = require('./_an-object');\nvar aFunction = require('./_a-function');\nvar SPECIES = require('./_wks')('species');\nmodule.exports = function (O, D) {\n var C = anObject(O).constructor;\n var S;\n return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);\n};\n","'use strict';\nvar fails = require('./_fails');\n\nmodule.exports = function (method, arg) {\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call\n arg ? method.call(null, function () { /* empty */ }, 1) : method.call(null);\n });\n};\n","var toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n// true -> String#at\n// false -> String#codePointAt\nmodule.exports = function (TO_STRING) {\n return function (that, pos) {\n var s = String(defined(that));\n var i = toInteger(pos);\n var l = s.length;\n var a, b;\n if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n a = s.charCodeAt(i);\n return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff\n ? TO_STRING ? s.charAt(i) : a\n : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n };\n};\n","// helper for String#{startsWith, endsWith, includes}\nvar isRegExp = require('./_is-regexp');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, searchString, NAME) {\n if (isRegExp(searchString)) throw TypeError('String#' + NAME + \" doesn't accept regex!\");\n return String(defined(that));\n};\n","var $export = require('./_export');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar quot = /\"/g;\n// B.2.3.2.1 CreateHTML(string, tag, attribute, value)\nvar createHTML = function (string, tag, attribute, value) {\n var S = String(defined(string));\n var p1 = '<' + tag;\n if (attribute !== '') p1 += ' ' + attribute + '=\"' + String(value).replace(quot, '&quot;') + '\"';\n return p1 + '>' + S + '</' + tag + '>';\n};\nmodule.exports = function (NAME, exec) {\n var O = {};\n O[NAME] = exec(createHTML);\n $export($export.P + $export.F * fails(function () {\n var test = ''[NAME]('\"');\n return test !== test.toLowerCase() || test.split('\"').length > 3;\n }), 'String', O);\n};\n","// https://github.com/tc39/proposal-string-pad-start-end\nvar toLength = require('./_to-length');\nvar repeat = require('./_string-repeat');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, maxLength, fillString, left) {\n var S = String(defined(that));\n var stringLength = S.length;\n var fillStr = fillString === undefined ? ' ' : String(fillString);\n var intMaxLength = toLength(maxLength);\n if (intMaxLength <= stringLength || fillStr == '') return S;\n var fillLen = intMaxLength - stringLength;\n var stringFiller = repeat.call(fillStr, Math.ceil(fillLen / fillStr.length));\n if (stringFiller.length > fillLen) stringFiller = stringFiller.slice(0, fillLen);\n return left ? stringFiller + S : S + stringFiller;\n};\n","'use strict';\nvar toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n\nmodule.exports = function repeat(count) {\n var str = String(defined(this));\n var res = '';\n var n = toInteger(count);\n if (n < 0 || n == Infinity) throw RangeError(\"Count can't be negative\");\n for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) res += str;\n return res;\n};\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n","var ctx = require('./_ctx');\nvar invoke = require('./_invoke');\nvar html = require('./_html');\nvar cel = require('./_dom-create');\nvar global = require('./_global');\nvar process = global.process;\nvar setTask = global.setImmediate;\nvar clearTask = global.clearImmediate;\nvar MessageChannel = global.MessageChannel;\nvar Dispatch = global.Dispatch;\nvar counter = 0;\nvar queue = {};\nvar ONREADYSTATECHANGE = 'onreadystatechange';\nvar defer, channel, port;\nvar run = function () {\n var id = +this;\n // eslint-disable-next-line no-prototype-builtins\n if (queue.hasOwnProperty(id)) {\n var fn = queue[id];\n delete queue[id];\n fn();\n }\n};\nvar listener = function (event) {\n run.call(event.data);\n};\n// Node.js 0.9+ & IE10+ has setImmediate, otherwise:\nif (!setTask || !clearTask) {\n setTask = function setImmediate(fn) {\n var args = [];\n var i = 1;\n while (arguments.length > i) args.push(arguments[i++]);\n queue[++counter] = function () {\n // eslint-disable-next-line no-new-func\n invoke(typeof fn == 'function' ? fn : Function(fn), args);\n };\n defer(counter);\n return counter;\n };\n clearTask = function clearImmediate(id) {\n delete queue[id];\n };\n // Node.js 0.8-\n if (require('./_cof')(process) == 'process') {\n defer = function (id) {\n process.nextTick(ctx(run, id, 1));\n };\n // Sphere (JS game engine) Dispatch API\n } else if (Dispatch && Dispatch.now) {\n defer = function (id) {\n Dispatch.now(ctx(run, id, 1));\n };\n // Browsers with MessageChannel, includes WebWorkers\n } else if (MessageChannel) {\n channel = new MessageChannel();\n port = channel.port2;\n channel.port1.onmessage = listener;\n defer = ctx(port.postMessage, port, 1);\n // Browsers with postMessage, skip WebWorkers\n // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'\n } else if (global.addEventListener && typeof postMessage == 'function' && !global.importScripts) {\n defer = function (id) {\n global.postMessage(id + '', '*');\n };\n global.addEventListener('message', listener, false);\n // IE8-\n } else if (ONREADYSTATECHANGE in cel('script')) {\n defer = function (id) {\n html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function () {\n html.removeChild(this);\n run.call(id);\n };\n };\n // Rest old browsers\n } else {\n defer = function (id) {\n setTimeout(ctx(run, id, 1), 0);\n };\n }\n}\nmodule.exports = {\n set: setTask,\n clear: clearTask\n};\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","// https://tc39.github.io/ecma262/#sec-toindex\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nmodule.exports = function (it) {\n if (it === undefined) return 0;\n var number = toInteger(it);\n var length = toLength(number);\n if (number !== length) throw RangeError('Wrong length!');\n return length;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nif (require('./_descriptors')) {\n var LIBRARY = require('./_library');\n var global = require('./_global');\n var fails = require('./_fails');\n var $export = require('./_export');\n var $typed = require('./_typed');\n var $buffer = require('./_typed-buffer');\n var ctx = require('./_ctx');\n var anInstance = require('./_an-instance');\n var propertyDesc = require('./_property-desc');\n var hide = require('./_hide');\n var redefineAll = require('./_redefine-all');\n var toInteger = require('./_to-integer');\n var toLength = require('./_to-length');\n var toIndex = require('./_to-index');\n var toAbsoluteIndex = require('./_to-absolute-index');\n var toPrimitive = require('./_to-primitive');\n var has = require('./_has');\n var classof = require('./_classof');\n var isObject = require('./_is-object');\n var toObject = require('./_to-object');\n var isArrayIter = require('./_is-array-iter');\n var create = require('./_object-create');\n var getPrototypeOf = require('./_object-gpo');\n var gOPN = require('./_object-gopn').f;\n var getIterFn = require('./core.get-iterator-method');\n var uid = require('./_uid');\n var wks = require('./_wks');\n var createArrayMethod = require('./_array-methods');\n var createArrayIncludes = require('./_array-includes');\n var speciesConstructor = require('./_species-constructor');\n var ArrayIterators = require('./es6.array.iterator');\n var Iterators = require('./_iterators');\n var $iterDetect = require('./_iter-detect');\n var setSpecies = require('./_set-species');\n var arrayFill = require('./_array-fill');\n var arrayCopyWithin = require('./_array-copy-within');\n var $DP = require('./_object-dp');\n var $GOPD = require('./_object-gopd');\n var dP = $DP.f;\n var gOPD = $GOPD.f;\n var RangeError = global.RangeError;\n var TypeError = global.TypeError;\n var Uint8Array = global.Uint8Array;\n var ARRAY_BUFFER = 'ArrayBuffer';\n var SHARED_BUFFER = 'Shared' + ARRAY_BUFFER;\n var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';\n var PROTOTYPE = 'prototype';\n var ArrayProto = Array[PROTOTYPE];\n var $ArrayBuffer = $buffer.ArrayBuffer;\n var $DataView = $buffer.DataView;\n var arrayForEach = createArrayMethod(0);\n var arrayFilter = createArrayMethod(2);\n var arraySome = createArrayMethod(3);\n var arrayEvery = createArrayMethod(4);\n var arrayFind = createArrayMethod(5);\n var arrayFindIndex = createArrayMethod(6);\n var arrayIncludes = createArrayIncludes(true);\n var arrayIndexOf = createArrayIncludes(false);\n var arrayValues = ArrayIterators.values;\n var arrayKeys = ArrayIterators.keys;\n var arrayEntries = ArrayIterators.entries;\n var arrayLastIndexOf = ArrayProto.lastIndexOf;\n var arrayReduce = ArrayProto.reduce;\n var arrayReduceRight = ArrayProto.reduceRight;\n var arrayJoin = ArrayProto.join;\n var arraySort = ArrayProto.sort;\n var arraySlice = ArrayProto.slice;\n var arrayToString = ArrayProto.toString;\n var arrayToLocaleString = ArrayProto.toLocaleString;\n var ITERATOR = wks('iterator');\n var TAG = wks('toStringTag');\n var TYPED_CONSTRUCTOR = uid('typed_constructor');\n var DEF_CONSTRUCTOR = uid('def_constructor');\n var ALL_CONSTRUCTORS = $typed.CONSTR;\n var TYPED_ARRAY = $typed.TYPED;\n var VIEW = $typed.VIEW;\n var WRONG_LENGTH = 'Wrong length!';\n\n var $map = createArrayMethod(1, function (O, length) {\n return allocate(speciesConstructor(O, O[DEF_CONSTRUCTOR]), length);\n });\n\n var LITTLE_ENDIAN = fails(function () {\n // eslint-disable-next-line no-undef\n return new Uint8Array(new Uint16Array([1]).buffer)[0] === 1;\n });\n\n var FORCED_SET = !!Uint8Array && !!Uint8Array[PROTOTYPE].set && fails(function () {\n new Uint8Array(1).set({});\n });\n\n var toOffset = function (it, BYTES) {\n var offset = toInteger(it);\n if (offset < 0 || offset % BYTES) throw RangeError('Wrong offset!');\n return offset;\n };\n\n var validate = function (it) {\n if (isObject(it) && TYPED_ARRAY in it) return it;\n throw TypeError(it + ' is not a typed array!');\n };\n\n var allocate = function (C, length) {\n if (!(isObject(C) && TYPED_CONSTRUCTOR in C)) {\n throw TypeError('It is not a typed array constructor!');\n } return new C(length);\n };\n\n var speciesFromList = function (O, list) {\n return fromList(speciesConstructor(O, O[DEF_CONSTRUCTOR]), list);\n };\n\n var fromList = function (C, list) {\n var index = 0;\n var length = list.length;\n var result = allocate(C, length);\n while (length > index) result[index] = list[index++];\n return result;\n };\n\n var addGetter = function (it, key, internal) {\n dP(it, key, { get: function () { return this._d[internal]; } });\n };\n\n var $from = function from(source /* , mapfn, thisArg */) {\n var O = toObject(source);\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var iterFn = getIterFn(O);\n var i, length, values, result, step, iterator;\n if (iterFn != undefined && !isArrayIter(iterFn)) {\n for (iterator = iterFn.call(O), values = [], i = 0; !(step = iterator.next()).done; i++) {\n values.push(step.value);\n } O = values;\n }\n if (mapping && aLen > 2) mapfn = ctx(mapfn, arguments[2], 2);\n for (i = 0, length = toLength(O.length), result = allocate(this, length); length > i; i++) {\n result[i] = mapping ? mapfn(O[i], i) : O[i];\n }\n return result;\n };\n\n var $of = function of(/* ...items */) {\n var index = 0;\n var length = arguments.length;\n var result = allocate(this, length);\n while (length > index) result[index] = arguments[index++];\n return result;\n };\n\n // iOS Safari 6.x fails here\n var TO_LOCALE_BUG = !!Uint8Array && fails(function () { arrayToLocaleString.call(new Uint8Array(1)); });\n\n var $toLocaleString = function toLocaleString() {\n return arrayToLocaleString.apply(TO_LOCALE_BUG ? arraySlice.call(validate(this)) : validate(this), arguments);\n };\n\n var proto = {\n copyWithin: function copyWithin(target, start /* , end */) {\n return arrayCopyWithin.call(validate(this), target, start, arguments.length > 2 ? arguments[2] : undefined);\n },\n every: function every(callbackfn /* , thisArg */) {\n return arrayEvery(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n fill: function fill(value /* , start, end */) { // eslint-disable-line no-unused-vars\n return arrayFill.apply(validate(this), arguments);\n },\n filter: function filter(callbackfn /* , thisArg */) {\n return speciesFromList(this, arrayFilter(validate(this), callbackfn,\n arguments.length > 1 ? arguments[1] : undefined));\n },\n find: function find(predicate /* , thisArg */) {\n return arrayFind(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n findIndex: function findIndex(predicate /* , thisArg */) {\n return arrayFindIndex(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n forEach: function forEach(callbackfn /* , thisArg */) {\n arrayForEach(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n indexOf: function indexOf(searchElement /* , fromIndex */) {\n return arrayIndexOf(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n includes: function includes(searchElement /* , fromIndex */) {\n return arrayIncludes(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n join: function join(separator) { // eslint-disable-line no-unused-vars\n return arrayJoin.apply(validate(this), arguments);\n },\n lastIndexOf: function lastIndexOf(searchElement /* , fromIndex */) { // eslint-disable-line no-unused-vars\n return arrayLastIndexOf.apply(validate(this), arguments);\n },\n map: function map(mapfn /* , thisArg */) {\n return $map(validate(this), mapfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n reduce: function reduce(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduce.apply(validate(this), arguments);\n },\n reduceRight: function reduceRight(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduceRight.apply(validate(this), arguments);\n },\n reverse: function reverse() {\n var that = this;\n var length = validate(that).length;\n var middle = Math.floor(length / 2);\n var index = 0;\n var value;\n while (index < middle) {\n value = that[index];\n that[index++] = that[--length];\n that[length] = value;\n } return that;\n },\n some: function some(callbackfn /* , thisArg */) {\n return arraySome(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n sort: function sort(comparefn) {\n return arraySort.call(validate(this), comparefn);\n },\n subarray: function subarray(begin, end) {\n var O = validate(this);\n var length = O.length;\n var $begin = toAbsoluteIndex(begin, length);\n return new (speciesConstructor(O, O[DEF_CONSTRUCTOR]))(\n O.buffer,\n O.byteOffset + $begin * O.BYTES_PER_ELEMENT,\n toLength((end === undefined ? length : toAbsoluteIndex(end, length)) - $begin)\n );\n }\n };\n\n var $slice = function slice(start, end) {\n return speciesFromList(this, arraySlice.call(validate(this), start, end));\n };\n\n var $set = function set(arrayLike /* , offset */) {\n validate(this);\n var offset = toOffset(arguments[1], 1);\n var length = this.length;\n var src = toObject(arrayLike);\n var len = toLength(src.length);\n var index = 0;\n if (len + offset > length) throw RangeError(WRONG_LENGTH);\n while (index < len) this[offset + index] = src[index++];\n };\n\n var $iterators = {\n entries: function entries() {\n return arrayEntries.call(validate(this));\n },\n keys: function keys() {\n return arrayKeys.call(validate(this));\n },\n values: function values() {\n return arrayValues.call(validate(this));\n }\n };\n\n var isTAIndex = function (target, key) {\n return isObject(target)\n && target[TYPED_ARRAY]\n && typeof key != 'symbol'\n && key in target\n && String(+key) == String(key);\n };\n var $getDesc = function getOwnPropertyDescriptor(target, key) {\n return isTAIndex(target, key = toPrimitive(key, true))\n ? propertyDesc(2, target[key])\n : gOPD(target, key);\n };\n var $setDesc = function defineProperty(target, key, desc) {\n if (isTAIndex(target, key = toPrimitive(key, true))\n && isObject(desc)\n && has(desc, 'value')\n && !has(desc, 'get')\n && !has(desc, 'set')\n // TODO: add validation descriptor w/o calling accessors\n && !desc.configurable\n && (!has(desc, 'writable') || desc.writable)\n && (!has(desc, 'enumerable') || desc.enumerable)\n ) {\n target[key] = desc.value;\n return target;\n } return dP(target, key, desc);\n };\n\n if (!ALL_CONSTRUCTORS) {\n $GOPD.f = $getDesc;\n $DP.f = $setDesc;\n }\n\n $export($export.S + $export.F * !ALL_CONSTRUCTORS, 'Object', {\n getOwnPropertyDescriptor: $getDesc,\n defineProperty: $setDesc\n });\n\n if (fails(function () { arrayToString.call({}); })) {\n arrayToString = arrayToLocaleString = function toString() {\n return arrayJoin.call(this);\n };\n }\n\n var $TypedArrayPrototype$ = redefineAll({}, proto);\n redefineAll($TypedArrayPrototype$, $iterators);\n hide($TypedArrayPrototype$, ITERATOR, $iterators.values);\n redefineAll($TypedArrayPrototype$, {\n slice: $slice,\n set: $set,\n constructor: function () { /* noop */ },\n toString: arrayToString,\n toLocaleString: $toLocaleString\n });\n addGetter($TypedArrayPrototype$, 'buffer', 'b');\n addGetter($TypedArrayPrototype$, 'byteOffset', 'o');\n addGetter($TypedArrayPrototype$, 'byteLength', 'l');\n addGetter($TypedArrayPrototype$, 'length', 'e');\n dP($TypedArrayPrototype$, TAG, {\n get: function () { return this[TYPED_ARRAY]; }\n });\n\n // eslint-disable-next-line max-statements\n module.exports = function (KEY, BYTES, wrapper, CLAMPED) {\n CLAMPED = !!CLAMPED;\n var NAME = KEY + (CLAMPED ? 'Clamped' : '') + 'Array';\n var GETTER = 'get' + KEY;\n var SETTER = 'set' + KEY;\n var TypedArray = global[NAME];\n var Base = TypedArray || {};\n var TAC = TypedArray && getPrototypeOf(TypedArray);\n var FORCED = !TypedArray || !$typed.ABV;\n var O = {};\n var TypedArrayPrototype = TypedArray && TypedArray[PROTOTYPE];\n var getter = function (that, index) {\n var data = that._d;\n return data.v[GETTER](index * BYTES + data.o, LITTLE_ENDIAN);\n };\n var setter = function (that, index, value) {\n var data = that._d;\n if (CLAMPED) value = (value = Math.round(value)) < 0 ? 0 : value > 0xff ? 0xff : value & 0xff;\n data.v[SETTER](index * BYTES + data.o, value, LITTLE_ENDIAN);\n };\n var addElement = function (that, index) {\n dP(that, index, {\n get: function () {\n return getter(this, index);\n },\n set: function (value) {\n return setter(this, index, value);\n },\n enumerable: true\n });\n };\n if (FORCED) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME, '_d');\n var index = 0;\n var offset = 0;\n var buffer, byteLength, length, klass;\n if (!isObject(data)) {\n length = toIndex(data);\n byteLength = length * BYTES;\n buffer = new $ArrayBuffer(byteLength);\n } else if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n buffer = data;\n offset = toOffset($offset, BYTES);\n var $len = data.byteLength;\n if ($length === undefined) {\n if ($len % BYTES) throw RangeError(WRONG_LENGTH);\n byteLength = $len - offset;\n if (byteLength < 0) throw RangeError(WRONG_LENGTH);\n } else {\n byteLength = toLength($length) * BYTES;\n if (byteLength + offset > $len) throw RangeError(WRONG_LENGTH);\n }\n length = byteLength / BYTES;\n } else if (TYPED_ARRAY in data) {\n return fromList(TypedArray, data);\n } else {\n return $from.call(TypedArray, data);\n }\n hide(that, '_d', {\n b: buffer,\n o: offset,\n l: byteLength,\n e: length,\n v: new $DataView(buffer)\n });\n while (index < length) addElement(that, index++);\n });\n TypedArrayPrototype = TypedArray[PROTOTYPE] = create($TypedArrayPrototype$);\n hide(TypedArrayPrototype, 'constructor', TypedArray);\n } else if (!fails(function () {\n TypedArray(1);\n }) || !fails(function () {\n new TypedArray(-1); // eslint-disable-line no-new\n }) || !$iterDetect(function (iter) {\n new TypedArray(); // eslint-disable-line no-new\n new TypedArray(null); // eslint-disable-line no-new\n new TypedArray(1.5); // eslint-disable-line no-new\n new TypedArray(iter); // eslint-disable-line no-new\n }, true)) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME);\n var klass;\n // `ws` module bug, temporarily remove validation length for Uint8Array\n // https://github.com/websockets/ws/pull/645\n if (!isObject(data)) return new Base(toIndex(data));\n if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n return $length !== undefined\n ? new Base(data, toOffset($offset, BYTES), $length)\n : $offset !== undefined\n ? new Base(data, toOffset($offset, BYTES))\n : new Base(data);\n }\n if (TYPED_ARRAY in data) return fromList(TypedArray, data);\n return $from.call(TypedArray, data);\n });\n arrayForEach(TAC !== Function.prototype ? gOPN(Base).concat(gOPN(TAC)) : gOPN(Base), function (key) {\n if (!(key in TypedArray)) hide(TypedArray, key, Base[key]);\n });\n TypedArray[PROTOTYPE] = TypedArrayPrototype;\n if (!LIBRARY) TypedArrayPrototype.constructor = TypedArray;\n }\n var $nativeIterator = TypedArrayPrototype[ITERATOR];\n var CORRECT_ITER_NAME = !!$nativeIterator\n && ($nativeIterator.name == 'values' || $nativeIterator.name == undefined);\n var $iterator = $iterators.values;\n hide(TypedArray, TYPED_CONSTRUCTOR, true);\n hide(TypedArrayPrototype, TYPED_ARRAY, NAME);\n hide(TypedArrayPrototype, VIEW, true);\n hide(TypedArrayPrototype, DEF_CONSTRUCTOR, TypedArray);\n\n if (CLAMPED ? new TypedArray(1)[TAG] != NAME : !(TAG in TypedArrayPrototype)) {\n dP(TypedArrayPrototype, TAG, {\n get: function () { return NAME; }\n });\n }\n\n O[NAME] = TypedArray;\n\n $export($export.G + $export.W + $export.F * (TypedArray != Base), O);\n\n $export($export.S, NAME, {\n BYTES_PER_ELEMENT: BYTES\n });\n\n $export($export.S + $export.F * fails(function () { Base.of.call(TypedArray, 1); }), NAME, {\n from: $from,\n of: $of\n });\n\n if (!(BYTES_PER_ELEMENT in TypedArrayPrototype)) hide(TypedArrayPrototype, BYTES_PER_ELEMENT, BYTES);\n\n $export($export.P, NAME, proto);\n\n setSpecies(NAME);\n\n $export($export.P + $export.F * FORCED_SET, NAME, { set: $set });\n\n $export($export.P + $export.F * !CORRECT_ITER_NAME, NAME, $iterators);\n\n if (!LIBRARY && TypedArrayPrototype.toString != arrayToString) TypedArrayPrototype.toString = arrayToString;\n\n $export($export.P + $export.F * fails(function () {\n new TypedArray(1).slice();\n }), NAME, { slice: $slice });\n\n $export($export.P + $export.F * (fails(function () {\n return [1, 2].toLocaleString() != new TypedArray([1, 2]).toLocaleString();\n }) || !fails(function () {\n TypedArrayPrototype.toLocaleString.call([1, 2]);\n })), NAME, { toLocaleString: $toLocaleString });\n\n Iterators[NAME] = CORRECT_ITER_NAME ? $nativeIterator : $iterator;\n if (!LIBRARY && !CORRECT_ITER_NAME) hide(TypedArrayPrototype, ITERATOR, $iterator);\n };\n} else module.exports = function () { /* empty */ };\n","'use strict';\nvar global = require('./_global');\nvar DESCRIPTORS = require('./_descriptors');\nvar LIBRARY = require('./_library');\nvar $typed = require('./_typed');\nvar hide = require('./_hide');\nvar redefineAll = require('./_redefine-all');\nvar fails = require('./_fails');\nvar anInstance = require('./_an-instance');\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nvar toIndex = require('./_to-index');\nvar gOPN = require('./_object-gopn').f;\nvar dP = require('./_object-dp').f;\nvar arrayFill = require('./_array-fill');\nvar setToStringTag = require('./_set-to-string-tag');\nvar ARRAY_BUFFER = 'ArrayBuffer';\nvar DATA_VIEW = 'DataView';\nvar PROTOTYPE = 'prototype';\nvar WRONG_LENGTH = 'Wrong length!';\nvar WRONG_INDEX = 'Wrong index!';\nvar $ArrayBuffer = global[ARRAY_BUFFER];\nvar $DataView = global[DATA_VIEW];\nvar Math = global.Math;\nvar RangeError = global.RangeError;\n// eslint-disable-next-line no-shadow-restricted-names\nvar Infinity = global.Infinity;\nvar BaseBuffer = $ArrayBuffer;\nvar abs = Math.abs;\nvar pow = Math.pow;\nvar floor = Math.floor;\nvar log = Math.log;\nvar LN2 = Math.LN2;\nvar BUFFER = 'buffer';\nvar BYTE_LENGTH = 'byteLength';\nvar BYTE_OFFSET = 'byteOffset';\nvar $BUFFER = DESCRIPTORS ? '_b' : BUFFER;\nvar $LENGTH = DESCRIPTORS ? '_l' : BYTE_LENGTH;\nvar $OFFSET = DESCRIPTORS ? '_o' : BYTE_OFFSET;\n\n// IEEE754 conversions based on https://github.com/feross/ieee754\nfunction packIEEE754(value, mLen, nBytes) {\n var buffer = new Array(nBytes);\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var rt = mLen === 23 ? pow(2, -24) - pow(2, -77) : 0;\n var i = 0;\n var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;\n var e, m, c;\n value = abs(value);\n // eslint-disable-next-line no-self-compare\n if (value != value || value === Infinity) {\n // eslint-disable-next-line no-self-compare\n m = value != value ? 1 : 0;\n e = eMax;\n } else {\n e = floor(log(value) / LN2);\n if (value * (c = pow(2, -e)) < 1) {\n e--;\n c *= 2;\n }\n if (e + eBias >= 1) {\n value += rt / c;\n } else {\n value += rt * pow(2, 1 - eBias);\n }\n if (value * c >= 2) {\n e++;\n c /= 2;\n }\n if (e + eBias >= eMax) {\n m = 0;\n e = eMax;\n } else if (e + eBias >= 1) {\n m = (value * c - 1) * pow(2, mLen);\n e = e + eBias;\n } else {\n m = value * pow(2, eBias - 1) * pow(2, mLen);\n e = 0;\n }\n }\n for (; mLen >= 8; buffer[i++] = m & 255, m /= 256, mLen -= 8);\n e = e << mLen | m;\n eLen += mLen;\n for (; eLen > 0; buffer[i++] = e & 255, e /= 256, eLen -= 8);\n buffer[--i] |= s * 128;\n return buffer;\n}\nfunction unpackIEEE754(buffer, mLen, nBytes) {\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var nBits = eLen - 7;\n var i = nBytes - 1;\n var s = buffer[i--];\n var e = s & 127;\n var m;\n s >>= 7;\n for (; nBits > 0; e = e * 256 + buffer[i], i--, nBits -= 8);\n m = e & (1 << -nBits) - 1;\n e >>= -nBits;\n nBits += mLen;\n for (; nBits > 0; m = m * 256 + buffer[i], i--, nBits -= 8);\n if (e === 0) {\n e = 1 - eBias;\n } else if (e === eMax) {\n return m ? NaN : s ? -Infinity : Infinity;\n } else {\n m = m + pow(2, mLen);\n e = e - eBias;\n } return (s ? -1 : 1) * m * pow(2, e - mLen);\n}\n\nfunction unpackI32(bytes) {\n return bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];\n}\nfunction packI8(it) {\n return [it & 0xff];\n}\nfunction packI16(it) {\n return [it & 0xff, it >> 8 & 0xff];\n}\nfunction packI32(it) {\n return [it & 0xff, it >> 8 & 0xff, it >> 16 & 0xff, it >> 24 & 0xff];\n}\nfunction packF64(it) {\n return packIEEE754(it, 52, 8);\n}\nfunction packF32(it) {\n return packIEEE754(it, 23, 4);\n}\n\nfunction addGetter(C, key, internal) {\n dP(C[PROTOTYPE], key, { get: function () { return this[internal]; } });\n}\n\nfunction get(view, bytes, index, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = store.slice(start, start + bytes);\n return isLittleEndian ? pack : pack.reverse();\n}\nfunction set(view, bytes, index, conversion, value, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = conversion(+value);\n for (var i = 0; i < bytes; i++) store[start + i] = pack[isLittleEndian ? i : bytes - i - 1];\n}\n\nif (!$typed.ABV) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer, ARRAY_BUFFER);\n var byteLength = toIndex(length);\n this._b = arrayFill.call(new Array(byteLength), 0);\n this[$LENGTH] = byteLength;\n };\n\n $DataView = function DataView(buffer, byteOffset, byteLength) {\n anInstance(this, $DataView, DATA_VIEW);\n anInstance(buffer, $ArrayBuffer, DATA_VIEW);\n var bufferLength = buffer[$LENGTH];\n var offset = toInteger(byteOffset);\n if (offset < 0 || offset > bufferLength) throw RangeError('Wrong offset!');\n byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength);\n if (offset + byteLength > bufferLength) throw RangeError(WRONG_LENGTH);\n this[$BUFFER] = buffer;\n this[$OFFSET] = offset;\n this[$LENGTH] = byteLength;\n };\n\n if (DESCRIPTORS) {\n addGetter($ArrayBuffer, BYTE_LENGTH, '_l');\n addGetter($DataView, BUFFER, '_b');\n addGetter($DataView, BYTE_LENGTH, '_l');\n addGetter($DataView, BYTE_OFFSET, '_o');\n }\n\n redefineAll($DataView[PROTOTYPE], {\n getInt8: function getInt8(byteOffset) {\n return get(this, 1, byteOffset)[0] << 24 >> 24;\n },\n getUint8: function getUint8(byteOffset) {\n return get(this, 1, byteOffset)[0];\n },\n getInt16: function getInt16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return (bytes[1] << 8 | bytes[0]) << 16 >> 16;\n },\n getUint16: function getUint16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return bytes[1] << 8 | bytes[0];\n },\n getInt32: function getInt32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1]));\n },\n getUint32: function getUint32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1])) >>> 0;\n },\n getFloat32: function getFloat32(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 4, byteOffset, arguments[1]), 23, 4);\n },\n getFloat64: function getFloat64(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 8, byteOffset, arguments[1]), 52, 8);\n },\n setInt8: function setInt8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setUint8: function setUint8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setInt16: function setInt16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setUint16: function setUint16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setInt32: function setInt32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setUint32: function setUint32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setFloat32: function setFloat32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packF32, value, arguments[2]);\n },\n setFloat64: function setFloat64(byteOffset, value /* , littleEndian */) {\n set(this, 8, byteOffset, packF64, value, arguments[2]);\n }\n });\n} else {\n if (!fails(function () {\n $ArrayBuffer(1);\n }) || !fails(function () {\n new $ArrayBuffer(-1); // eslint-disable-line no-new\n }) || fails(function () {\n new $ArrayBuffer(); // eslint-disable-line no-new\n new $ArrayBuffer(1.5); // eslint-disable-line no-new\n new $ArrayBuffer(NaN); // eslint-disable-line no-new\n return $ArrayBuffer.name != ARRAY_BUFFER;\n })) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer);\n return new BaseBuffer(toIndex(length));\n };\n var ArrayBufferProto = $ArrayBuffer[PROTOTYPE] = BaseBuffer[PROTOTYPE];\n for (var keys = gOPN(BaseBuffer), j = 0, key; keys.length > j;) {\n if (!((key = keys[j++]) in $ArrayBuffer)) hide($ArrayBuffer, key, BaseBuffer[key]);\n }\n if (!LIBRARY) ArrayBufferProto.constructor = $ArrayBuffer;\n }\n // iOS Safari 7.x bug\n var view = new $DataView(new $ArrayBuffer(2));\n var $setInt8 = $DataView[PROTOTYPE].setInt8;\n view.setInt8(0, 2147483648);\n view.setInt8(1, 2147483649);\n if (view.getInt8(0) || !view.getInt8(1)) redefineAll($DataView[PROTOTYPE], {\n setInt8: function setInt8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n },\n setUint8: function setUint8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n }\n }, true);\n}\nsetToStringTag($ArrayBuffer, ARRAY_BUFFER);\nsetToStringTag($DataView, DATA_VIEW);\nhide($DataView[PROTOTYPE], $typed.VIEW, true);\nexports[ARRAY_BUFFER] = $ArrayBuffer;\nexports[DATA_VIEW] = $DataView;\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar uid = require('./_uid');\nvar TYPED = uid('typed_array');\nvar VIEW = uid('view');\nvar ABV = !!(global.ArrayBuffer && global.DataView);\nvar CONSTR = ABV;\nvar i = 0;\nvar l = 9;\nvar Typed;\n\nvar TypedArrayConstructors = (\n 'Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array'\n).split(',');\n\nwhile (i < l) {\n if (Typed = global[TypedArrayConstructors[i++]]) {\n hide(Typed.prototype, TYPED, true);\n hide(Typed.prototype, VIEW, true);\n } else CONSTR = false;\n}\n\nmodule.exports = {\n ABV: ABV,\n CONSTR: CONSTR,\n TYPED: TYPED,\n VIEW: VIEW\n};\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var global = require('./_global');\nvar navigator = global.navigator;\n\nmodule.exports = navigator && navigator.userAgent || '';\n","var isObject = require('./_is-object');\nmodule.exports = function (it, TYPE) {\n if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');\n return it;\n};\n","var global = require('./_global');\nvar core = require('./_core');\nvar LIBRARY = require('./_library');\nvar wksExt = require('./_wks-ext');\nvar defineProperty = require('./_object-dp').f;\nmodule.exports = function (name) {\n var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n","exports.f = require('./_wks');\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","var classof = require('./_classof');\nvar ITERATOR = require('./_wks')('iterator');\nvar Iterators = require('./_iterators');\nmodule.exports = require('./_core').getIteratorMethod = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { copyWithin: require('./_array-copy-within') });\n\nrequire('./_add-to-unscopables')('copyWithin');\n","'use strict';\nvar $export = require('./_export');\nvar $every = require('./_array-methods')(4);\n\n$export($export.P + $export.F * !require('./_strict-method')([].every, true), 'Array', {\n // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg])\n every: function every(callbackfn /* , thisArg */) {\n return $every(this, callbackfn, arguments[1]);\n }\n});\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { fill: require('./_array-fill') });\n\nrequire('./_add-to-unscopables')('fill');\n","'use strict';\nvar $export = require('./_export');\nvar $filter = require('./_array-methods')(2);\n\n$export($export.P + $export.F * !require('./_strict-method')([].filter, true), 'Array', {\n // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg])\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments[1]);\n }\n});\n","'use strict';\n// 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(6);\nvar KEY = 'findIndex';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n findIndex: function findIndex(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\nvar $export = require('./_export');\nvar $forEach = require('./_array-methods')(0);\nvar STRICT = require('./_strict-method')([].forEach, true);\n\n$export($export.P + $export.F * !STRICT, 'Array', {\n // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg])\n forEach: function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments[1]);\n }\n});\n","'use strict';\nvar ctx = require('./_ctx');\nvar $export = require('./_export');\nvar toObject = require('./_to-object');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar toLength = require('./_to-length');\nvar createProperty = require('./_create-property');\nvar getIterFn = require('./core.get-iterator-method');\n\n$export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Array.from(iter); }), 'Array', {\n // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)\n from: function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {\n var O = toObject(arrayLike);\n var C = typeof this == 'function' ? this : Array;\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var index = 0;\n var iterFn = getIterFn(O);\n var length, result, step, iterator;\n if (mapping) mapfn = ctx(mapfn, aLen > 2 ? arguments[2] : undefined, 2);\n // if object isn't iterable or it's array with default iterator - use simple case\n if (iterFn != undefined && !(C == Array && isArrayIter(iterFn))) {\n for (iterator = iterFn.call(O), result = new C(); !(step = iterator.next()).done; index++) {\n createProperty(result, index, mapping ? call(iterator, mapfn, [step.value, index], true) : step.value);\n }\n } else {\n length = toLength(O.length);\n for (result = new C(length); length > index; index++) {\n createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);\n }\n }\n result.length = index;\n return result;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $indexOf = require('./_array-includes')(false);\nvar $native = [].indexOf;\nvar NEGATIVE_ZERO = !!$native && 1 / [1].indexOf(1, -0) < 0;\n\n$export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($native)), 'Array', {\n // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex])\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? $native.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments[1]);\n }\n});\n","// 22.1.2.2 / 15.4.3.2 Array.isArray(arg)\nvar $export = require('./_export');\n\n$export($export.S, 'Array', { isArray: require('./_is-array') });\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\n// 22.1.3.13 Array.prototype.join(separator)\nvar $export = require('./_export');\nvar toIObject = require('./_to-iobject');\nvar arrayJoin = [].join;\n\n// fallback for not array-like strings\n$export($export.P + $export.F * (require('./_iobject') != Object || !require('./_strict-method')(arrayJoin)), 'Array', {\n join: function join(separator) {\n return arrayJoin.call(toIObject(this), separator === undefined ? ',' : separator);\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar toIObject = require('./_to-iobject');\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nvar $native = [].lastIndexOf;\nvar NEGATIVE_ZERO = !!$native && 1 / [1].lastIndexOf(1, -0) < 0;\n\n$export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($native)), 'Array', {\n // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex])\n lastIndexOf: function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) {\n // convert -0 to +0\n if (NEGATIVE_ZERO) return $native.apply(this, arguments) || 0;\n var O = toIObject(this);\n var length = toLength(O.length);\n var index = length - 1;\n if (arguments.length > 1) index = Math.min(index, toInteger(arguments[1]));\n if (index < 0) index = length + index;\n for (;index >= 0; index--) if (index in O) if (O[index] === searchElement) return index || 0;\n return -1;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $map = require('./_array-methods')(1);\n\n$export($export.P + $export.F * !require('./_strict-method')([].map, true), 'Array', {\n // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg])\n map: function map(callbackfn /* , thisArg */) {\n return $map(this, callbackfn, arguments[1]);\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar createProperty = require('./_create-property');\n\n// WebKit Array.of isn't generic\n$export($export.S + $export.F * require('./_fails')(function () {\n function F() { /* empty */ }\n return !(Array.of.call(F) instanceof F);\n}), 'Array', {\n // 22.1.2.3 Array.of( ...items)\n of: function of(/* ...args */) {\n var index = 0;\n var aLen = arguments.length;\n var result = new (typeof this == 'function' ? this : Array)(aLen);\n while (aLen > index) createProperty(result, index, arguments[index++]);\n result.length = aLen;\n return result;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $reduce = require('./_array-reduce');\n\n$export($export.P + $export.F * !require('./_strict-method')([].reduceRight, true), 'Array', {\n // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue])\n reduceRight: function reduceRight(callbackfn /* , initialValue */) {\n return $reduce(this, callbackfn, arguments.length, arguments[1], true);\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $reduce = require('./_array-reduce');\n\n$export($export.P + $export.F * !require('./_strict-method')([].reduce, true), 'Array', {\n // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue])\n reduce: function reduce(callbackfn /* , initialValue */) {\n return $reduce(this, callbackfn, arguments.length, arguments[1], false);\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar html = require('./_html');\nvar cof = require('./_cof');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nvar arraySlice = [].slice;\n\n// fallback for not array-like ES3 strings and DOM objects\n$export($export.P + $export.F * require('./_fails')(function () {\n if (html) arraySlice.call(html);\n}), 'Array', {\n slice: function slice(begin, end) {\n var len = toLength(this.length);\n var klass = cof(this);\n end = end === undefined ? len : end;\n if (klass == 'Array') return arraySlice.call(this, begin, end);\n var start = toAbsoluteIndex(begin, len);\n var upTo = toAbsoluteIndex(end, len);\n var size = toLength(upTo - start);\n var cloned = new Array(size);\n var i = 0;\n for (; i < size; i++) cloned[i] = klass == 'String'\n ? this.charAt(start + i)\n : this[start + i];\n return cloned;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $some = require('./_array-methods')(3);\n\n$export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Array', {\n // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg])\n some: function some(callbackfn /* , thisArg */) {\n return $some(this, callbackfn, arguments[1]);\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar aFunction = require('./_a-function');\nvar toObject = require('./_to-object');\nvar fails = require('./_fails');\nvar $sort = [].sort;\nvar test = [1, 2, 3];\n\n$export($export.P + $export.F * (fails(function () {\n // IE8-\n test.sort(undefined);\n}) || !fails(function () {\n // V8 bug\n test.sort(null);\n // Old WebKit\n}) || !require('./_strict-method')($sort)), 'Array', {\n // 22.1.3.25 Array.prototype.sort(comparefn)\n sort: function sort(comparefn) {\n return comparefn === undefined\n ? $sort.call(toObject(this))\n : $sort.call(toObject(this), aFunction(comparefn));\n }\n});\n","require('./_set-species')('Array');\n","// 20.3.3.1 / 15.9.4.4 Date.now()\nvar $export = require('./_export');\n\n$export($export.S, 'Date', { now: function () { return new Date().getTime(); } });\n","// 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString()\nvar $export = require('./_export');\nvar toISOString = require('./_date-to-iso-string');\n\n// PhantomJS / old WebKit has a broken implementations\n$export($export.P + $export.F * (Date.prototype.toISOString !== toISOString), 'Date', {\n toISOString: toISOString\n});\n","'use strict';\nvar $export = require('./_export');\nvar toObject = require('./_to-object');\nvar toPrimitive = require('./_to-primitive');\n\n$export($export.P + $export.F * require('./_fails')(function () {\n return new Date(NaN).toJSON() !== null\n || Date.prototype.toJSON.call({ toISOString: function () { return 1; } }) !== 1;\n}), 'Date', {\n // eslint-disable-next-line no-unused-vars\n toJSON: function toJSON(key) {\n var O = toObject(this);\n var pv = toPrimitive(O);\n return typeof pv == 'number' && !isFinite(pv) ? null : O.toISOString();\n }\n});\n","var TO_PRIMITIVE = require('./_wks')('toPrimitive');\nvar proto = Date.prototype;\n\nif (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive'));\n","var DateProto = Date.prototype;\nvar INVALID_DATE = 'Invalid Date';\nvar TO_STRING = 'toString';\nvar $toString = DateProto[TO_STRING];\nvar getTime = DateProto.getTime;\nif (new Date(NaN) + '' != INVALID_DATE) {\n require('./_redefine')(DateProto, TO_STRING, function toString() {\n var value = getTime.call(this);\n // eslint-disable-next-line no-self-compare\n return value === value ? $toString.call(this) : INVALID_DATE;\n });\n}\n","// 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...)\nvar $export = require('./_export');\n\n$export($export.P, 'Function', { bind: require('./_bind') });\n","'use strict';\nvar isObject = require('./_is-object');\nvar getPrototypeOf = require('./_object-gpo');\nvar HAS_INSTANCE = require('./_wks')('hasInstance');\nvar FunctionProto = Function.prototype;\n// 19.2.3.6 Function.prototype[@@hasInstance](V)\nif (!(HAS_INSTANCE in FunctionProto)) require('./_object-dp').f(FunctionProto, HAS_INSTANCE, { value: function (O) {\n if (typeof this != 'function' || !isObject(O)) return false;\n if (!isObject(this.prototype)) return O instanceof this;\n // for environment w/o native `@@hasInstance` logic enough `instanceof`, but add this:\n while (O = getPrototypeOf(O)) if (this.prototype === O) return true;\n return false;\n} });\n","var dP = require('./_object-dp').f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || require('./_descriptors') && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar MAP = 'Map';\n\n// 23.1 Map Objects\nmodule.exports = require('./_collection')(MAP, function (get) {\n return function Map() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = strong.getEntry(validate(this, MAP), key);\n return entry && entry.v;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return strong.def(validate(this, MAP), key === 0 ? 0 : key, value);\n }\n}, strong, true);\n","// 20.2.2.3 Math.acosh(x)\nvar $export = require('./_export');\nvar log1p = require('./_math-log1p');\nvar sqrt = Math.sqrt;\nvar $acosh = Math.acosh;\n\n$export($export.S + $export.F * !($acosh\n // V8 bug: https://code.google.com/p/v8/issues/detail?id=3509\n && Math.floor($acosh(Number.MAX_VALUE)) == 710\n // Tor Browser bug: Math.acosh(Infinity) -> NaN\n && $acosh(Infinity) == Infinity\n), 'Math', {\n acosh: function acosh(x) {\n return (x = +x) < 1 ? NaN : x > 94906265.62425156\n ? Math.log(x) + Math.LN2\n : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));\n }\n});\n","// 20.2.2.5 Math.asinh(x)\nvar $export = require('./_export');\nvar $asinh = Math.asinh;\n\nfunction asinh(x) {\n return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));\n}\n\n// Tor Browser bug: Math.asinh(0) -> -0\n$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh });\n","// 20.2.2.7 Math.atanh(x)\nvar $export = require('./_export');\nvar $atanh = Math.atanh;\n\n// Tor Browser bug: Math.atanh(-0) -> 0\n$export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', {\n atanh: function atanh(x) {\n return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;\n }\n});\n","// 20.2.2.9 Math.cbrt(x)\nvar $export = require('./_export');\nvar sign = require('./_math-sign');\n\n$export($export.S, 'Math', {\n cbrt: function cbrt(x) {\n return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);\n }\n});\n","// 20.2.2.11 Math.clz32(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n clz32: function clz32(x) {\n return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;\n }\n});\n","// 20.2.2.12 Math.cosh(x)\nvar $export = require('./_export');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n cosh: function cosh(x) {\n return (exp(x = +x) + exp(-x)) / 2;\n }\n});\n","// 20.2.2.14 Math.expm1(x)\nvar $export = require('./_export');\nvar $expm1 = require('./_math-expm1');\n\n$export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 });\n","// 20.2.2.16 Math.fround(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { fround: require('./_math-fround') });\n","// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])\nvar $export = require('./_export');\nvar abs = Math.abs;\n\n$export($export.S, 'Math', {\n hypot: function hypot(value1, value2) { // eslint-disable-line no-unused-vars\n var sum = 0;\n var i = 0;\n var aLen = arguments.length;\n var larg = 0;\n var arg, div;\n while (i < aLen) {\n arg = abs(arguments[i++]);\n if (larg < arg) {\n div = larg / arg;\n sum = sum * div * div + 1;\n larg = arg;\n } else if (arg > 0) {\n div = arg / larg;\n sum += div * div;\n } else sum += arg;\n }\n return larg === Infinity ? Infinity : larg * Math.sqrt(sum);\n }\n});\n","// 20.2.2.18 Math.imul(x, y)\nvar $export = require('./_export');\nvar $imul = Math.imul;\n\n// some WebKit versions fails with big numbers, some has wrong arity\n$export($export.S + $export.F * require('./_fails')(function () {\n return $imul(0xffffffff, 5) != -5 || $imul.length != 2;\n}), 'Math', {\n imul: function imul(x, y) {\n var UINT16 = 0xffff;\n var xn = +x;\n var yn = +y;\n var xl = UINT16 & xn;\n var yl = UINT16 & yn;\n return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);\n }\n});\n","// 20.2.2.21 Math.log10(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log10: function log10(x) {\n return Math.log(x) * Math.LOG10E;\n }\n});\n","// 20.2.2.20 Math.log1p(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { log1p: require('./_math-log1p') });\n","// 20.2.2.22 Math.log2(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log2: function log2(x) {\n return Math.log(x) / Math.LN2;\n }\n});\n","// 20.2.2.28 Math.sign(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { sign: require('./_math-sign') });\n","// 20.2.2.30 Math.sinh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n// V8 near Chromium 38 has a problem with very small numbers\n$export($export.S + $export.F * require('./_fails')(function () {\n return !Math.sinh(-2e-17) != -2e-17;\n}), 'Math', {\n sinh: function sinh(x) {\n return Math.abs(x = +x) < 1\n ? (expm1(x) - expm1(-x)) / 2\n : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);\n }\n});\n","// 20.2.2.33 Math.tanh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n tanh: function tanh(x) {\n var a = expm1(x = +x);\n var b = expm1(-x);\n return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));\n }\n});\n","// 20.2.2.34 Math.trunc(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n trunc: function trunc(it) {\n return (it > 0 ? Math.floor : Math.ceil)(it);\n }\n});\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","// 20.1.2.1 Number.EPSILON\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { EPSILON: Math.pow(2, -52) });\n","// 20.1.2.2 Number.isFinite(number)\nvar $export = require('./_export');\nvar _isFinite = require('./_global').isFinite;\n\n$export($export.S, 'Number', {\n isFinite: function isFinite(it) {\n return typeof it == 'number' && _isFinite(it);\n }\n});\n","// 20.1.2.3 Number.isInteger(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { isInteger: require('./_is-integer') });\n","// 20.1.2.4 Number.isNaN(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', {\n isNaN: function isNaN(number) {\n // eslint-disable-next-line no-self-compare\n return number != number;\n }\n});\n","// 20.1.2.5 Number.isSafeInteger(number)\nvar $export = require('./_export');\nvar isInteger = require('./_is-integer');\nvar abs = Math.abs;\n\n$export($export.S, 'Number', {\n isSafeInteger: function isSafeInteger(number) {\n return isInteger(number) && abs(number) <= 0x1fffffffffffff;\n }\n});\n","// 20.1.2.6 Number.MAX_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff });\n","// 20.1.2.10 Number.MIN_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff });\n","var $export = require('./_export');\nvar $parseFloat = require('./_parse-float');\n// 20.1.2.12 Number.parseFloat(string)\n$export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat });\n","var $export = require('./_export');\nvar $parseInt = require('./_parse-int');\n// 20.1.2.13 Number.parseInt(string, radix)\n$export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', { parseInt: $parseInt });\n","'use strict';\nvar $export = require('./_export');\nvar toInteger = require('./_to-integer');\nvar aNumberValue = require('./_a-number-value');\nvar repeat = require('./_string-repeat');\nvar $toFixed = 1.0.toFixed;\nvar floor = Math.floor;\nvar data = [0, 0, 0, 0, 0, 0];\nvar ERROR = 'Number.toFixed: incorrect invocation!';\nvar ZERO = '0';\n\nvar multiply = function (n, c) {\n var i = -1;\n var c2 = c;\n while (++i < 6) {\n c2 += n * data[i];\n data[i] = c2 % 1e7;\n c2 = floor(c2 / 1e7);\n }\n};\nvar divide = function (n) {\n var i = 6;\n var c = 0;\n while (--i >= 0) {\n c += data[i];\n data[i] = floor(c / n);\n c = (c % n) * 1e7;\n }\n};\nvar numToString = function () {\n var i = 6;\n var s = '';\n while (--i >= 0) {\n if (s !== '' || i === 0 || data[i] !== 0) {\n var t = String(data[i]);\n s = s === '' ? t : s + repeat.call(ZERO, 7 - t.length) + t;\n }\n } return s;\n};\nvar pow = function (x, n, acc) {\n return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc);\n};\nvar log = function (x) {\n var n = 0;\n var x2 = x;\n while (x2 >= 4096) {\n n += 12;\n x2 /= 4096;\n }\n while (x2 >= 2) {\n n += 1;\n x2 /= 2;\n } return n;\n};\n\n$export($export.P + $export.F * (!!$toFixed && (\n 0.00008.toFixed(3) !== '0.000' ||\n 0.9.toFixed(0) !== '1' ||\n 1.255.toFixed(2) !== '1.25' ||\n 1000000000000000128.0.toFixed(0) !== '1000000000000000128'\n) || !require('./_fails')(function () {\n // V8 ~ Android 4.3-\n $toFixed.call({});\n})), 'Number', {\n toFixed: function toFixed(fractionDigits) {\n var x = aNumberValue(this, ERROR);\n var f = toInteger(fractionDigits);\n var s = '';\n var m = ZERO;\n var e, z, j, k;\n if (f < 0 || f > 20) throw RangeError(ERROR);\n // eslint-disable-next-line no-self-compare\n if (x != x) return 'NaN';\n if (x <= -1e21 || x >= 1e21) return String(x);\n if (x < 0) {\n s = '-';\n x = -x;\n }\n if (x > 1e-21) {\n e = log(x * pow(2, 69, 1)) - 69;\n z = e < 0 ? x * pow(2, -e, 1) : x / pow(2, e, 1);\n z *= 0x10000000000000;\n e = 52 - e;\n if (e > 0) {\n multiply(0, z);\n j = f;\n while (j >= 7) {\n multiply(1e7, 0);\n j -= 7;\n }\n multiply(pow(10, j, 1), 0);\n j = e - 1;\n while (j >= 23) {\n divide(1 << 23);\n j -= 23;\n }\n divide(1 << j);\n multiply(1, 1);\n divide(2);\n m = numToString();\n } else {\n multiply(0, z);\n multiply(1 << -e, 0);\n m = numToString() + repeat.call(ZERO, f);\n }\n }\n if (f > 0) {\n k = m.length;\n m = s + (k <= f ? '0.' + repeat.call(ZERO, f - k) + m : m.slice(0, k - f) + '.' + m.slice(k - f));\n } else {\n m = s + m;\n } return m;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $fails = require('./_fails');\nvar aNumberValue = require('./_a-number-value');\nvar $toPrecision = 1.0.toPrecision;\n\n$export($export.P + $export.F * ($fails(function () {\n // IE7-\n return $toPrecision.call(1, undefined) !== '1';\n}) || !$fails(function () {\n // V8 ~ Android 4.3-\n $toPrecision.call({});\n})), 'Number', {\n toPrecision: function toPrecision(precision) {\n var that = aNumberValue(this, 'Number#toPrecision: incorrect invocation!');\n return precision === undefined ? $toPrecision.call(that) : $toPrecision.call(that, precision);\n }\n});\n","// 19.1.3.1 Object.assign(target, source)\nvar $export = require('./_export');\n\n$export($export.S + $export.F, 'Object', { assign: require('./_object-assign') });\n","var $export = require('./_export');\n// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n$export($export.S, 'Object', { create: require('./_object-create') });\n","var $export = require('./_export');\n// 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties)\n$export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') });\n","var $export = require('./_export');\n// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)\n$export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f });\n","// 19.1.2.5 Object.freeze(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('freeze', function ($freeze) {\n return function freeze(it) {\n return $freeze && isObject(it) ? $freeze(meta(it)) : it;\n };\n});\n","// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\nvar toIObject = require('./_to-iobject');\nvar $getOwnPropertyDescriptor = require('./_object-gopd').f;\n\nrequire('./_object-sap')('getOwnPropertyDescriptor', function () {\n return function getOwnPropertyDescriptor(it, key) {\n return $getOwnPropertyDescriptor(toIObject(it), key);\n };\n});\n","// 19.1.2.7 Object.getOwnPropertyNames(O)\nrequire('./_object-sap')('getOwnPropertyNames', function () {\n return require('./_object-gopn-ext').f;\n});\n","// 19.1.2.9 Object.getPrototypeOf(O)\nvar toObject = require('./_to-object');\nvar $getPrototypeOf = require('./_object-gpo');\n\nrequire('./_object-sap')('getPrototypeOf', function () {\n return function getPrototypeOf(it) {\n return $getPrototypeOf(toObject(it));\n };\n});\n","// 19.1.2.11 Object.isExtensible(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isExtensible', function ($isExtensible) {\n return function isExtensible(it) {\n return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;\n };\n});\n","// 19.1.2.12 Object.isFrozen(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isFrozen', function ($isFrozen) {\n return function isFrozen(it) {\n return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;\n };\n});\n","// 19.1.2.13 Object.isSealed(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isSealed', function ($isSealed) {\n return function isSealed(it) {\n return isObject(it) ? $isSealed ? $isSealed(it) : false : true;\n };\n});\n","// 19.1.3.10 Object.is(value1, value2)\nvar $export = require('./_export');\n$export($export.S, 'Object', { is: require('./_same-value') });\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 19.1.2.15 Object.preventExtensions(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('preventExtensions', function ($preventExtensions) {\n return function preventExtensions(it) {\n return $preventExtensions && isObject(it) ? $preventExtensions(meta(it)) : it;\n };\n});\n","// 19.1.2.17 Object.seal(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('seal', function ($seal) {\n return function seal(it) {\n return $seal && isObject(it) ? $seal(meta(it)) : it;\n };\n});\n","// 19.1.3.19 Object.setPrototypeOf(O, proto)\nvar $export = require('./_export');\n$export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set });\n","'use strict';\n// 19.1.3.6 Object.prototype.toString()\nvar classof = require('./_classof');\nvar test = {};\ntest[require('./_wks')('toStringTag')] = 'z';\nif (test + '' != '[object z]') {\n require('./_redefine')(Object.prototype, 'toString', function toString() {\n return '[object ' + classof(this) + ']';\n }, true);\n}\n","var $export = require('./_export');\nvar $parseFloat = require('./_parse-float');\n// 18.2.4 parseFloat(string)\n$export($export.G + $export.F * (parseFloat != $parseFloat), { parseFloat: $parseFloat });\n","var $export = require('./_export');\nvar $parseInt = require('./_parse-int');\n// 18.2.5 parseInt(string, radix)\n$export($export.G + $export.F * (parseInt != $parseInt), { parseInt: $parseInt });\n","'use strict';\nvar LIBRARY = require('./_library');\nvar global = require('./_global');\nvar ctx = require('./_ctx');\nvar classof = require('./_classof');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar aFunction = require('./_a-function');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar speciesConstructor = require('./_species-constructor');\nvar task = require('./_task').set;\nvar microtask = require('./_microtask')();\nvar newPromiseCapabilityModule = require('./_new-promise-capability');\nvar perform = require('./_perform');\nvar userAgent = require('./_user-agent');\nvar promiseResolve = require('./_promise-resolve');\nvar PROMISE = 'Promise';\nvar TypeError = global.TypeError;\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8 || '';\nvar $Promise = global[PROMISE];\nvar isNode = classof(process) == 'process';\nvar empty = function () { /* empty */ };\nvar Internal, newGenericPromiseCapability, OwnPromiseCapability, Wrapper;\nvar newPromiseCapability = newGenericPromiseCapability = newPromiseCapabilityModule.f;\n\nvar USE_NATIVE = !!function () {\n try {\n // correct subclassing with @@species support\n var promise = $Promise.resolve(1);\n var FakePromise = (promise.constructor = {})[require('./_wks')('species')] = function (exec) {\n exec(empty, empty);\n };\n // unhandled rejections tracking support, NodeJS Promise without it fails @@species test\n return (isNode || typeof PromiseRejectionEvent == 'function')\n && promise.then(empty) instanceof FakePromise\n // v8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables\n // https://bugs.chromium.org/p/chromium/issues/detail?id=830565\n // we can't detect it synchronously, so just check versions\n && v8.indexOf('6.6') !== 0\n && userAgent.indexOf('Chrome/66') === -1;\n } catch (e) { /* empty */ }\n}();\n\n// helpers\nvar isThenable = function (it) {\n var then;\n return isObject(it) && typeof (then = it.then) == 'function' ? then : false;\n};\nvar notify = function (promise, isReject) {\n if (promise._n) return;\n promise._n = true;\n var chain = promise._c;\n microtask(function () {\n var value = promise._v;\n var ok = promise._s == 1;\n var i = 0;\n var run = function (reaction) {\n var handler = ok ? reaction.ok : reaction.fail;\n var resolve = reaction.resolve;\n var reject = reaction.reject;\n var domain = reaction.domain;\n var result, then, exited;\n try {\n if (handler) {\n if (!ok) {\n if (promise._h == 2) onHandleUnhandled(promise);\n promise._h = 1;\n }\n if (handler === true) result = value;\n else {\n if (domain) domain.enter();\n result = handler(value); // may throw\n if (domain) {\n domain.exit();\n exited = true;\n }\n }\n if (result === reaction.promise) {\n reject(TypeError('Promise-chain cycle'));\n } else if (then = isThenable(result)) {\n then.call(result, resolve, reject);\n } else resolve(result);\n } else reject(value);\n } catch (e) {\n if (domain && !exited) domain.exit();\n reject(e);\n }\n };\n while (chain.length > i) run(chain[i++]); // variable length - can't use forEach\n promise._c = [];\n promise._n = false;\n if (isReject && !promise._h) onUnhandled(promise);\n });\n};\nvar onUnhandled = function (promise) {\n task.call(global, function () {\n var value = promise._v;\n var unhandled = isUnhandled(promise);\n var result, handler, console;\n if (unhandled) {\n result = perform(function () {\n if (isNode) {\n process.emit('unhandledRejection', value, promise);\n } else if (handler = global.onunhandledrejection) {\n handler({ promise: promise, reason: value });\n } else if ((console = global.console) && console.error) {\n console.error('Unhandled promise rejection', value);\n }\n });\n // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should\n promise._h = isNode || isUnhandled(promise) ? 2 : 1;\n } promise._a = undefined;\n if (unhandled && result.e) throw result.v;\n });\n};\nvar isUnhandled = function (promise) {\n return promise._h !== 1 && (promise._a || promise._c).length === 0;\n};\nvar onHandleUnhandled = function (promise) {\n task.call(global, function () {\n var handler;\n if (isNode) {\n process.emit('rejectionHandled', promise);\n } else if (handler = global.onrejectionhandled) {\n handler({ promise: promise, reason: promise._v });\n }\n });\n};\nvar $reject = function (value) {\n var promise = this;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n promise._v = value;\n promise._s = 2;\n if (!promise._a) promise._a = promise._c.slice();\n notify(promise, true);\n};\nvar $resolve = function (value) {\n var promise = this;\n var then;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n try {\n if (promise === value) throw TypeError(\"Promise can't be resolved itself\");\n if (then = isThenable(value)) {\n microtask(function () {\n var wrapper = { _w: promise, _d: false }; // wrap\n try {\n then.call(value, ctx($resolve, wrapper, 1), ctx($reject, wrapper, 1));\n } catch (e) {\n $reject.call(wrapper, e);\n }\n });\n } else {\n promise._v = value;\n promise._s = 1;\n notify(promise, false);\n }\n } catch (e) {\n $reject.call({ _w: promise, _d: false }, e); // wrap\n }\n};\n\n// constructor polyfill\nif (!USE_NATIVE) {\n // 25.4.3.1 Promise(executor)\n $Promise = function Promise(executor) {\n anInstance(this, $Promise, PROMISE, '_h');\n aFunction(executor);\n Internal.call(this);\n try {\n executor(ctx($resolve, this, 1), ctx($reject, this, 1));\n } catch (err) {\n $reject.call(this, err);\n }\n };\n // eslint-disable-next-line no-unused-vars\n Internal = function Promise(executor) {\n this._c = []; // <- awaiting reactions\n this._a = undefined; // <- checked in isUnhandled reactions\n this._s = 0; // <- state\n this._d = false; // <- done\n this._v = undefined; // <- value\n this._h = 0; // <- rejection state, 0 - default, 1 - handled, 2 - unhandled\n this._n = false; // <- notify\n };\n Internal.prototype = require('./_redefine-all')($Promise.prototype, {\n // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)\n then: function then(onFulfilled, onRejected) {\n var reaction = newPromiseCapability(speciesConstructor(this, $Promise));\n reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;\n reaction.fail = typeof onRejected == 'function' && onRejected;\n reaction.domain = isNode ? process.domain : undefined;\n this._c.push(reaction);\n if (this._a) this._a.push(reaction);\n if (this._s) notify(this, false);\n return reaction.promise;\n },\n // 25.4.5.1 Promise.prototype.catch(onRejected)\n 'catch': function (onRejected) {\n return this.then(undefined, onRejected);\n }\n });\n OwnPromiseCapability = function () {\n var promise = new Internal();\n this.promise = promise;\n this.resolve = ctx($resolve, promise, 1);\n this.reject = ctx($reject, promise, 1);\n };\n newPromiseCapabilityModule.f = newPromiseCapability = function (C) {\n return C === $Promise || C === Wrapper\n ? new OwnPromiseCapability(C)\n : newGenericPromiseCapability(C);\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Promise: $Promise });\nrequire('./_set-to-string-tag')($Promise, PROMISE);\nrequire('./_set-species')(PROMISE);\nWrapper = require('./_core')[PROMISE];\n\n// statics\n$export($export.S + $export.F * !USE_NATIVE, PROMISE, {\n // 25.4.4.5 Promise.reject(r)\n reject: function reject(r) {\n var capability = newPromiseCapability(this);\n var $$reject = capability.reject;\n $$reject(r);\n return capability.promise;\n }\n});\n$export($export.S + $export.F * (LIBRARY || !USE_NATIVE), PROMISE, {\n // 25.4.4.6 Promise.resolve(x)\n resolve: function resolve(x) {\n return promiseResolve(LIBRARY && this === Wrapper ? $Promise : this, x);\n }\n});\n$export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(function (iter) {\n $Promise.all(iter)['catch'](empty);\n})), PROMISE, {\n // 25.4.4.1 Promise.all(iterable)\n all: function all(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var resolve = capability.resolve;\n var reject = capability.reject;\n var result = perform(function () {\n var values = [];\n var index = 0;\n var remaining = 1;\n forOf(iterable, false, function (promise) {\n var $index = index++;\n var alreadyCalled = false;\n values.push(undefined);\n remaining++;\n C.resolve(promise).then(function (value) {\n if (alreadyCalled) return;\n alreadyCalled = true;\n values[$index] = value;\n --remaining || resolve(values);\n }, reject);\n });\n --remaining || resolve(values);\n });\n if (result.e) reject(result.v);\n return capability.promise;\n },\n // 25.4.4.4 Promise.race(iterable)\n race: function race(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var reject = capability.reject;\n var result = perform(function () {\n forOf(iterable, false, function (promise) {\n C.resolve(promise).then(capability.resolve, reject);\n });\n });\n if (result.e) reject(result.v);\n return capability.promise;\n }\n});\n","// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)\nvar $export = require('./_export');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar rApply = (require('./_global').Reflect || {}).apply;\nvar fApply = Function.apply;\n// MS Edge argumentsList argument is optional\n$export($export.S + $export.F * !require('./_fails')(function () {\n rApply(function () { /* empty */ });\n}), 'Reflect', {\n apply: function apply(target, thisArgument, argumentsList) {\n var T = aFunction(target);\n var L = anObject(argumentsList);\n return rApply ? rApply(T, thisArgument, L) : fApply.call(T, thisArgument, L);\n }\n});\n","// 26.1.2 Reflect.construct(target, argumentsList [, newTarget])\nvar $export = require('./_export');\nvar create = require('./_object-create');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar bind = require('./_bind');\nvar rConstruct = (require('./_global').Reflect || {}).construct;\n\n// MS Edge supports only 2 arguments and argumentsList argument is optional\n// FF Nightly sets third argument as `new.target`, but does not create `this` from it\nvar NEW_TARGET_BUG = fails(function () {\n function F() { /* empty */ }\n return !(rConstruct(function () { /* empty */ }, [], F) instanceof F);\n});\nvar ARGS_BUG = !fails(function () {\n rConstruct(function () { /* empty */ });\n});\n\n$export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', {\n construct: function construct(Target, args /* , newTarget */) {\n aFunction(Target);\n anObject(args);\n var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);\n if (ARGS_BUG && !NEW_TARGET_BUG) return rConstruct(Target, args, newTarget);\n if (Target == newTarget) {\n // w/o altered newTarget, optimization for 0-4 arguments\n switch (args.length) {\n case 0: return new Target();\n case 1: return new Target(args[0]);\n case 2: return new Target(args[0], args[1]);\n case 3: return new Target(args[0], args[1], args[2]);\n case 4: return new Target(args[0], args[1], args[2], args[3]);\n }\n // w/o altered newTarget, lot of arguments case\n var $args = [null];\n $args.push.apply($args, args);\n return new (bind.apply(Target, $args))();\n }\n // with altered newTarget, not support built-in constructors\n var proto = newTarget.prototype;\n var instance = create(isObject(proto) ? proto : Object.prototype);\n var result = Function.apply.call(Target, instance, args);\n return isObject(result) ? result : instance;\n }\n});\n","// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)\nvar dP = require('./_object-dp');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar toPrimitive = require('./_to-primitive');\n\n// MS Edge has broken Reflect.defineProperty - throwing instead of returning false\n$export($export.S + $export.F * require('./_fails')(function () {\n // eslint-disable-next-line no-undef\n Reflect.defineProperty(dP.f({}, 1, { value: 1 }), 1, { value: 2 });\n}), 'Reflect', {\n defineProperty: function defineProperty(target, propertyKey, attributes) {\n anObject(target);\n propertyKey = toPrimitive(propertyKey, true);\n anObject(attributes);\n try {\n dP.f(target, propertyKey, attributes);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.4 Reflect.deleteProperty(target, propertyKey)\nvar $export = require('./_export');\nvar gOPD = require('./_object-gopd').f;\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n deleteProperty: function deleteProperty(target, propertyKey) {\n var desc = gOPD(anObject(target), propertyKey);\n return desc && !desc.configurable ? false : delete target[propertyKey];\n }\n});\n","'use strict';\n// 26.1.5 Reflect.enumerate(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar Enumerate = function (iterated) {\n this._t = anObject(iterated); // target\n this._i = 0; // next index\n var keys = this._k = []; // keys\n var key;\n for (key in iterated) keys.push(key);\n};\nrequire('./_iter-create')(Enumerate, 'Object', function () {\n var that = this;\n var keys = that._k;\n var key;\n do {\n if (that._i >= keys.length) return { value: undefined, done: true };\n } while (!((key = keys[that._i++]) in that._t));\n return { value: key, done: false };\n});\n\n$export($export.S, 'Reflect', {\n enumerate: function enumerate(target) {\n return new Enumerate(target);\n }\n});\n","// 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)\nvar gOPD = require('./_object-gopd');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) {\n return gOPD.f(anObject(target), propertyKey);\n }\n});\n","// 26.1.8 Reflect.getPrototypeOf(target)\nvar $export = require('./_export');\nvar getProto = require('./_object-gpo');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getPrototypeOf: function getPrototypeOf(target) {\n return getProto(anObject(target));\n }\n});\n","// 26.1.6 Reflect.get(target, propertyKey [, receiver])\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\n\nfunction get(target, propertyKey /* , receiver */) {\n var receiver = arguments.length < 3 ? target : arguments[2];\n var desc, proto;\n if (anObject(target) === receiver) return target[propertyKey];\n if (desc = gOPD.f(target, propertyKey)) return has(desc, 'value')\n ? desc.value\n : desc.get !== undefined\n ? desc.get.call(receiver)\n : undefined;\n if (isObject(proto = getPrototypeOf(target))) return get(proto, propertyKey, receiver);\n}\n\n$export($export.S, 'Reflect', { get: get });\n","// 26.1.9 Reflect.has(target, propertyKey)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', {\n has: function has(target, propertyKey) {\n return propertyKey in target;\n }\n});\n","// 26.1.10 Reflect.isExtensible(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $isExtensible = Object.isExtensible;\n\n$export($export.S, 'Reflect', {\n isExtensible: function isExtensible(target) {\n anObject(target);\n return $isExtensible ? $isExtensible(target) : true;\n }\n});\n","// 26.1.11 Reflect.ownKeys(target)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', { ownKeys: require('./_own-keys') });\n","// 26.1.12 Reflect.preventExtensions(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $preventExtensions = Object.preventExtensions;\n\n$export($export.S, 'Reflect', {\n preventExtensions: function preventExtensions(target) {\n anObject(target);\n try {\n if ($preventExtensions) $preventExtensions(target);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.14 Reflect.setPrototypeOf(target, proto)\nvar $export = require('./_export');\nvar setProto = require('./_set-proto');\n\nif (setProto) $export($export.S, 'Reflect', {\n setPrototypeOf: function setPrototypeOf(target, proto) {\n setProto.check(target, proto);\n try {\n setProto.set(target, proto);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.13 Reflect.set(target, propertyKey, V [, receiver])\nvar dP = require('./_object-dp');\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar createDesc = require('./_property-desc');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\n\nfunction set(target, propertyKey, V /* , receiver */) {\n var receiver = arguments.length < 4 ? target : arguments[3];\n var ownDesc = gOPD.f(anObject(target), propertyKey);\n var existingDescriptor, proto;\n if (!ownDesc) {\n if (isObject(proto = getPrototypeOf(target))) {\n return set(proto, propertyKey, V, receiver);\n }\n ownDesc = createDesc(0);\n }\n if (has(ownDesc, 'value')) {\n if (ownDesc.writable === false || !isObject(receiver)) return false;\n if (existingDescriptor = gOPD.f(receiver, propertyKey)) {\n if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) return false;\n existingDescriptor.value = V;\n dP.f(receiver, propertyKey, existingDescriptor);\n } else dP.f(receiver, propertyKey, createDesc(0, V));\n return true;\n }\n return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true);\n}\n\n$export($export.S, 'Reflect', { set: set });\n","var global = require('./_global');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar dP = require('./_object-dp').f;\nvar gOPN = require('./_object-gopn').f;\nvar isRegExp = require('./_is-regexp');\nvar $flags = require('./_flags');\nvar $RegExp = global.RegExp;\nvar Base = $RegExp;\nvar proto = $RegExp.prototype;\nvar re1 = /a/g;\nvar re2 = /a/g;\n// \"new\" creates a new object, old webkit buggy here\nvar CORRECT_NEW = new $RegExp(re1) !== re1;\n\nif (require('./_descriptors') && (!CORRECT_NEW || require('./_fails')(function () {\n re2[require('./_wks')('match')] = false;\n // RegExp constructor can alter flags and IsRegExp works correct with @@match\n return $RegExp(re1) != re1 || $RegExp(re2) == re2 || $RegExp(re1, 'i') != '/a/i';\n}))) {\n $RegExp = function RegExp(p, f) {\n var tiRE = this instanceof $RegExp;\n var piRE = isRegExp(p);\n var fiU = f === undefined;\n return !tiRE && piRE && p.constructor === $RegExp && fiU ? p\n : inheritIfRequired(CORRECT_NEW\n ? new Base(piRE && !fiU ? p.source : p, f)\n : Base((piRE = p instanceof $RegExp) ? p.source : p, piRE && fiU ? $flags.call(p) : f)\n , tiRE ? this : proto, $RegExp);\n };\n var proxy = function (key) {\n key in $RegExp || dP($RegExp, key, {\n configurable: true,\n get: function () { return Base[key]; },\n set: function (it) { Base[key] = it; }\n });\n };\n for (var keys = gOPN(Base), i = 0; keys.length > i;) proxy(keys[i++]);\n proto.constructor = $RegExp;\n $RegExp.prototype = proto;\n require('./_redefine')(global, 'RegExp', $RegExp);\n}\n\nrequire('./_set-species')('RegExp');\n","'use strict';\nvar regexpExec = require('./_regexp-exec');\nrequire('./_export')({\n target: 'RegExp',\n proto: true,\n forced: regexpExec !== /./.exec\n}, {\n exec: regexpExec\n});\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","'use strict';\n\nvar anObject = require('./_an-object');\nvar toLength = require('./_to-length');\nvar advanceStringIndex = require('./_advance-string-index');\nvar regExpExec = require('./_regexp-exec-abstract');\n\n// @@match logic\nrequire('./_fix-re-wks')('match', 1, function (defined, MATCH, $match, maybeCallNative) {\n return [\n // `String.prototype.match` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.match\n function match(regexp) {\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[MATCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));\n },\n // `RegExp.prototype[@@match]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match\n function (regexp) {\n var res = maybeCallNative($match, regexp, this);\n if (res.done) return res.value;\n var rx = anObject(regexp);\n var S = String(this);\n if (!rx.global) return regExpExec(rx, S);\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n var A = [];\n var n = 0;\n var result;\n while ((result = regExpExec(rx, S)) !== null) {\n var matchStr = String(result[0]);\n A[n] = matchStr;\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n n++;\n }\n return n === 0 ? null : A;\n }\n ];\n});\n","'use strict';\n\nvar anObject = require('./_an-object');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar toInteger = require('./_to-integer');\nvar advanceStringIndex = require('./_advance-string-index');\nvar regExpExec = require('./_regexp-exec-abstract');\nvar max = Math.max;\nvar min = Math.min;\nvar floor = Math.floor;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&`']|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&`']|\\d\\d?)/g;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace, maybeCallNative) {\n return [\n // `String.prototype.replace` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n var res = maybeCallNative($replace, regexp, this, replaceValue);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n results.push(result);\n if (!global) break;\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n\n // https://tc39.github.io/ecma262/#sec-getsubstitution\n function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return $replace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n }\n});\n","'use strict';\n\nvar anObject = require('./_an-object');\nvar sameValue = require('./_same-value');\nvar regExpExec = require('./_regexp-exec-abstract');\n\n// @@search logic\nrequire('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search, maybeCallNative) {\n return [\n // `String.prototype.search` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.search\n function search(regexp) {\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[SEARCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n },\n // `RegExp.prototype[@@search]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search\n function (regexp) {\n var res = maybeCallNative($search, regexp, this);\n if (res.done) return res.value;\n var rx = anObject(regexp);\n var S = String(this);\n var previousLastIndex = rx.lastIndex;\n if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;\n var result = regExpExec(rx, S);\n if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;\n return result === null ? -1 : result.index;\n }\n ];\n});\n","'use strict';\n\nvar isRegExp = require('./_is-regexp');\nvar anObject = require('./_an-object');\nvar speciesConstructor = require('./_species-constructor');\nvar advanceStringIndex = require('./_advance-string-index');\nvar toLength = require('./_to-length');\nvar callRegExpExec = require('./_regexp-exec-abstract');\nvar regexpExec = require('./_regexp-exec');\nvar fails = require('./_fails');\nvar $min = Math.min;\nvar $push = [].push;\nvar $SPLIT = 'split';\nvar LENGTH = 'length';\nvar LAST_INDEX = 'lastIndex';\nvar MAX_UINT32 = 0xffffffff;\n\n// babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError\nvar SUPPORTS_Y = !fails(function () { RegExp(MAX_UINT32, 'y'); });\n\n// @@split logic\nrequire('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split, maybeCallNative) {\n var internalSplit;\n if (\n 'abbc'[$SPLIT](/(b)*/)[1] == 'c' ||\n 'test'[$SPLIT](/(?:)/, -1)[LENGTH] != 4 ||\n 'ab'[$SPLIT](/(?:ab)*/)[LENGTH] != 2 ||\n '.'[$SPLIT](/(.?)(.?)/)[LENGTH] != 4 ||\n '.'[$SPLIT](/()()/)[LENGTH] > 1 ||\n ''[$SPLIT](/.?/)[LENGTH]\n ) {\n // based on es5-shim implementation, need to rework it\n internalSplit = function (separator, limit) {\n var string = String(this);\n if (separator === undefined && limit === 0) return [];\n // If `separator` is not a regex, use native split\n if (!isRegExp(separator)) return $split.call(string, separator, limit);\n var output = [];\n var flags = (separator.ignoreCase ? 'i' : '') +\n (separator.multiline ? 'm' : '') +\n (separator.unicode ? 'u' : '') +\n (separator.sticky ? 'y' : '');\n var lastLastIndex = 0;\n var splitLimit = limit === undefined ? MAX_UINT32 : limit >>> 0;\n // Make `global` and avoid `lastIndex` issues by working with a copy\n var separatorCopy = new RegExp(separator.source, flags + 'g');\n var match, lastIndex, lastLength;\n while (match = regexpExec.call(separatorCopy, string)) {\n lastIndex = separatorCopy[LAST_INDEX];\n if (lastIndex > lastLastIndex) {\n output.push(string.slice(lastLastIndex, match.index));\n if (match[LENGTH] > 1 && match.index < string[LENGTH]) $push.apply(output, match.slice(1));\n lastLength = match[0][LENGTH];\n lastLastIndex = lastIndex;\n if (output[LENGTH] >= splitLimit) break;\n }\n if (separatorCopy[LAST_INDEX] === match.index) separatorCopy[LAST_INDEX]++; // Avoid an infinite loop\n }\n if (lastLastIndex === string[LENGTH]) {\n if (lastLength || !separatorCopy.test('')) output.push('');\n } else output.push(string.slice(lastLastIndex));\n return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;\n };\n // Chakra, V8\n } else if ('0'[$SPLIT](undefined, 0)[LENGTH]) {\n internalSplit = function (separator, limit) {\n return separator === undefined && limit === 0 ? [] : $split.call(this, separator, limit);\n };\n } else {\n internalSplit = $split;\n }\n\n return [\n // `String.prototype.split` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.split\n function split(separator, limit) {\n var O = defined(this);\n var splitter = separator == undefined ? undefined : separator[SPLIT];\n return splitter !== undefined\n ? splitter.call(separator, O, limit)\n : internalSplit.call(String(O), separator, limit);\n },\n // `RegExp.prototype[@@split]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split\n //\n // NOTE: This cannot be properly polyfilled in engines that don't support\n // the 'y' flag.\n function (regexp, limit) {\n var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== $split);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n var C = speciesConstructor(rx, RegExp);\n\n var unicodeMatching = rx.unicode;\n var flags = (rx.ignoreCase ? 'i' : '') +\n (rx.multiline ? 'm' : '') +\n (rx.unicode ? 'u' : '') +\n (SUPPORTS_Y ? 'y' : 'g');\n\n // ^(? + rx + ) is needed, in combination with some S slicing, to\n // simulate the 'y' flag.\n var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);\n var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;\n if (lim === 0) return [];\n if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];\n var p = 0;\n var q = 0;\n var A = [];\n while (q < S.length) {\n splitter.lastIndex = SUPPORTS_Y ? q : 0;\n var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q));\n var e;\n if (\n z === null ||\n (e = $min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p\n ) {\n q = advanceStringIndex(S, q, unicodeMatching);\n } else {\n A.push(S.slice(p, q));\n if (A.length === lim) return A;\n for (var i = 1; i <= z.length - 1; i++) {\n A.push(z[i]);\n if (A.length === lim) return A;\n }\n q = p = e;\n }\n }\n A.push(S.slice(p));\n return A;\n }\n ];\n});\n","'use strict';\nrequire('./es6.regexp.flags');\nvar anObject = require('./_an-object');\nvar $flags = require('./_flags');\nvar DESCRIPTORS = require('./_descriptors');\nvar TO_STRING = 'toString';\nvar $toString = /./[TO_STRING];\n\nvar define = function (fn) {\n require('./_redefine')(RegExp.prototype, TO_STRING, fn, true);\n};\n\n// 21.2.5.14 RegExp.prototype.toString()\nif (require('./_fails')(function () { return $toString.call({ source: 'a', flags: 'b' }) != '/a/b'; })) {\n define(function toString() {\n var R = anObject(this);\n return '/'.concat(R.source, '/',\n 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined);\n });\n// FF44- RegExp#toString has a wrong name\n} else if ($toString.name != TO_STRING) {\n define(function toString() {\n return $toString.call(this);\n });\n}\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar SET = 'Set';\n\n// 23.2 Set Objects\nmodule.exports = require('./_collection')(SET, function (get) {\n return function Set() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return strong.def(validate(this, SET), value = value === 0 ? 0 : value, value);\n }\n}, strong);\n","'use strict';\n// B.2.3.2 String.prototype.anchor(name)\nrequire('./_string-html')('anchor', function (createHTML) {\n return function anchor(name) {\n return createHTML(this, 'a', 'name', name);\n };\n});\n","'use strict';\n// B.2.3.3 String.prototype.big()\nrequire('./_string-html')('big', function (createHTML) {\n return function big() {\n return createHTML(this, 'big', '', '');\n };\n});\n","'use strict';\n// B.2.3.4 String.prototype.blink()\nrequire('./_string-html')('blink', function (createHTML) {\n return function blink() {\n return createHTML(this, 'blink', '', '');\n };\n});\n","'use strict';\n// B.2.3.5 String.prototype.bold()\nrequire('./_string-html')('bold', function (createHTML) {\n return function bold() {\n return createHTML(this, 'b', '', '');\n };\n});\n","'use strict';\nvar $export = require('./_export');\nvar $at = require('./_string-at')(false);\n$export($export.P, 'String', {\n // 21.1.3.3 String.prototype.codePointAt(pos)\n codePointAt: function codePointAt(pos) {\n return $at(this, pos);\n }\n});\n","// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar ENDS_WITH = 'endsWith';\nvar $endsWith = ''[ENDS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'String', {\n endsWith: function endsWith(searchString /* , endPosition = @length */) {\n var that = context(this, searchString, ENDS_WITH);\n var endPosition = arguments.length > 1 ? arguments[1] : undefined;\n var len = toLength(that.length);\n var end = endPosition === undefined ? len : Math.min(toLength(endPosition), len);\n var search = String(searchString);\n return $endsWith\n ? $endsWith.call(that, search, end)\n : that.slice(end - search.length, end) === search;\n }\n});\n","'use strict';\n// B.2.3.6 String.prototype.fixed()\nrequire('./_string-html')('fixed', function (createHTML) {\n return function fixed() {\n return createHTML(this, 'tt', '', '');\n };\n});\n","'use strict';\n// B.2.3.7 String.prototype.fontcolor(color)\nrequire('./_string-html')('fontcolor', function (createHTML) {\n return function fontcolor(color) {\n return createHTML(this, 'font', 'color', color);\n };\n});\n","'use strict';\n// B.2.3.8 String.prototype.fontsize(size)\nrequire('./_string-html')('fontsize', function (createHTML) {\n return function fontsize(size) {\n return createHTML(this, 'font', 'size', size);\n };\n});\n","var $export = require('./_export');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar fromCharCode = String.fromCharCode;\nvar $fromCodePoint = String.fromCodePoint;\n\n// length should be 1, old FF problem\n$export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {\n // 21.1.2.2 String.fromCodePoint(...codePoints)\n fromCodePoint: function fromCodePoint(x) { // eslint-disable-line no-unused-vars\n var res = [];\n var aLen = arguments.length;\n var i = 0;\n var code;\n while (aLen > i) {\n code = +arguments[i++];\n if (toAbsoluteIndex(code, 0x10ffff) !== code) throw RangeError(code + ' is not a valid code point');\n res.push(code < 0x10000\n ? fromCharCode(code)\n : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00)\n );\n } return res.join('');\n }\n});\n","// 21.1.3.7 String.prototype.includes(searchString, position = 0)\n'use strict';\nvar $export = require('./_export');\nvar context = require('./_string-context');\nvar INCLUDES = 'includes';\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String', {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~context(this, searchString, INCLUDES)\n .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\n// B.2.3.9 String.prototype.italics()\nrequire('./_string-html')('italics', function (createHTML) {\n return function italics() {\n return createHTML(this, 'i', '', '');\n };\n});\n","'use strict';\nvar $at = require('./_string-at')(true);\n\n// 21.1.3.27 String.prototype[@@iterator]()\nrequire('./_iter-define')(String, 'String', function (iterated) {\n this._t = String(iterated); // target\n this._i = 0; // next index\n// 21.1.5.2.1 %StringIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var index = this._i;\n var point;\n if (index >= O.length) return { value: undefined, done: true };\n point = $at(O, index);\n this._i += point.length;\n return { value: point, done: false };\n});\n","'use strict';\n// B.2.3.10 String.prototype.link(url)\nrequire('./_string-html')('link', function (createHTML) {\n return function link(url) {\n return createHTML(this, 'a', 'href', url);\n };\n});\n","var $export = require('./_export');\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\n\n$export($export.S, 'String', {\n // 21.1.2.4 String.raw(callSite, ...substitutions)\n raw: function raw(callSite) {\n var tpl = toIObject(callSite.raw);\n var len = toLength(tpl.length);\n var aLen = arguments.length;\n var res = [];\n var i = 0;\n while (len > i) {\n res.push(String(tpl[i++]));\n if (i < aLen) res.push(String(arguments[i]));\n } return res.join('');\n }\n});\n","var $export = require('./_export');\n\n$export($export.P, 'String', {\n // 21.1.3.13 String.prototype.repeat(count)\n repeat: require('./_string-repeat')\n});\n","'use strict';\n// B.2.3.11 String.prototype.small()\nrequire('./_string-html')('small', function (createHTML) {\n return function small() {\n return createHTML(this, 'small', '', '');\n };\n});\n","// 21.1.3.18 String.prototype.startsWith(searchString [, position ])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar STARTS_WITH = 'startsWith';\nvar $startsWith = ''[STARTS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'String', {\n startsWith: function startsWith(searchString /* , position = 0 */) {\n var that = context(this, searchString, STARTS_WITH);\n var index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length));\n var search = String(searchString);\n return $startsWith\n ? $startsWith.call(that, search, index)\n : that.slice(index, index + search.length) === search;\n }\n});\n","'use strict';\n// B.2.3.12 String.prototype.strike()\nrequire('./_string-html')('strike', function (createHTML) {\n return function strike() {\n return createHTML(this, 'strike', '', '');\n };\n});\n","'use strict';\n// B.2.3.13 String.prototype.sub()\nrequire('./_string-html')('sub', function (createHTML) {\n return function sub() {\n return createHTML(this, 'sub', '', '');\n };\n});\n","'use strict';\n// B.2.3.14 String.prototype.sup()\nrequire('./_string-html')('sup', function (createHTML) {\n return function sup() {\n return createHTML(this, 'sup', '', '');\n };\n});\n","'use strict';\n// 21.1.3.25 String.prototype.trim()\nrequire('./_string-trim')('trim', function ($trim) {\n return function trim() {\n return $trim(this, 3);\n };\n});\n","'use strict';\n// ECMAScript 6 symbols shim\nvar global = require('./_global');\nvar has = require('./_has');\nvar DESCRIPTORS = require('./_descriptors');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar META = require('./_meta').KEY;\nvar $fails = require('./_fails');\nvar shared = require('./_shared');\nvar setToStringTag = require('./_set-to-string-tag');\nvar uid = require('./_uid');\nvar wks = require('./_wks');\nvar wksExt = require('./_wks-ext');\nvar wksDefine = require('./_wks-define');\nvar enumKeys = require('./_enum-keys');\nvar isArray = require('./_is-array');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar createDesc = require('./_property-desc');\nvar _create = require('./_object-create');\nvar gOPNExt = require('./_object-gopn-ext');\nvar $GOPD = require('./_object-gopd');\nvar $DP = require('./_object-dp');\nvar $keys = require('./_object-keys');\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function';\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n return _create(dP({}, 'a', {\n get: function () { return dP(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (it, key, D) {\n var protoDesc = gOPD(ObjectProto, key);\n if (protoDesc) delete ObjectProto[key];\n dP(it, key, D);\n if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n sym._k = tag;\n return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n anObject(it);\n key = toPrimitive(key, true);\n anObject(D);\n if (has(AllSymbols, key)) {\n if (!D.enumerable) {\n if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n it[HIDDEN][key] = true;\n } else {\n if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n D = _create(D, { enumerable: createDesc(0, false) });\n } return setSymbolDesc(it, key, D);\n } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n anObject(it);\n var keys = enumKeys(P = toIObject(P));\n var i = 0;\n var l = keys.length;\n var key;\n while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n return it;\n};\nvar $create = function create(it, P) {\n return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n var E = isEnum.call(this, key = toPrimitive(key, true));\n if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n it = toIObject(it);\n key = toPrimitive(key, true);\n if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n var D = gOPD(it, key);\n if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n var names = gOPN(toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n var IS_OP = it === ObjectProto;\n var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n var $set = function (value) {\n if (this === ObjectProto) $set.call(OPSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDesc(this, tag, createDesc(1, value));\n };\n if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n return wrap(tag);\n };\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return this._k;\n });\n\n $GOPD.f = $getOwnPropertyDescriptor;\n $DP.f = $defineProperty;\n require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;\n require('./_object-pie').f = $propertyIsEnumerable;\n require('./_object-gops').f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS && !require('./_library')) {\n redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n }\n\n wksExt.f = function (name) {\n return wrap(wks(name));\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n // 19.4.2.1 Symbol.for(key)\n 'for': function (key) {\n return has(SymbolRegistry, key += '')\n ? SymbolRegistry[key]\n : SymbolRegistry[key] = $Symbol(key);\n },\n // 19.4.2.5 Symbol.keyFor(sym)\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n },\n useSetter: function () { setter = true; },\n useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n // 19.1.2.2 Object.create(O [, Properties])\n create: $create,\n // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n defineProperty: $defineProperty,\n // 19.1.2.3 Object.defineProperties(O, Properties)\n defineProperties: $defineProperties,\n // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n // 19.1.2.7 Object.getOwnPropertyNames(O)\n getOwnPropertyNames: $getOwnPropertyNames,\n // 19.1.2.8 Object.getOwnPropertySymbols(O)\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n var S = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n // WebKit converts symbol values to JSON as null\n // V8 throws on boxed symbols\n return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n stringify: function stringify(it) {\n var args = [it];\n var i = 1;\n var replacer, $replacer;\n while (arguments.length > i) args.push(arguments[i++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return _stringify.apply($JSON, args);\n }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || require('./_hide')($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n","'use strict';\nvar $export = require('./_export');\nvar $typed = require('./_typed');\nvar buffer = require('./_typed-buffer');\nvar anObject = require('./_an-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nvar isObject = require('./_is-object');\nvar ArrayBuffer = require('./_global').ArrayBuffer;\nvar speciesConstructor = require('./_species-constructor');\nvar $ArrayBuffer = buffer.ArrayBuffer;\nvar $DataView = buffer.DataView;\nvar $isView = $typed.ABV && ArrayBuffer.isView;\nvar $slice = $ArrayBuffer.prototype.slice;\nvar VIEW = $typed.VIEW;\nvar ARRAY_BUFFER = 'ArrayBuffer';\n\n$export($export.G + $export.W + $export.F * (ArrayBuffer !== $ArrayBuffer), { ArrayBuffer: $ArrayBuffer });\n\n$export($export.S + $export.F * !$typed.CONSTR, ARRAY_BUFFER, {\n // 24.1.3.1 ArrayBuffer.isView(arg)\n isView: function isView(it) {\n return $isView && $isView(it) || isObject(it) && VIEW in it;\n }\n});\n\n$export($export.P + $export.U + $export.F * require('./_fails')(function () {\n return !new $ArrayBuffer(2).slice(1, undefined).byteLength;\n}), ARRAY_BUFFER, {\n // 24.1.4.3 ArrayBuffer.prototype.slice(start, end)\n slice: function slice(start, end) {\n if ($slice !== undefined && end === undefined) return $slice.call(anObject(this), start); // FF fix\n var len = anObject(this).byteLength;\n var first = toAbsoluteIndex(start, len);\n var fin = toAbsoluteIndex(end === undefined ? len : end, len);\n var result = new (speciesConstructor(this, $ArrayBuffer))(toLength(fin - first));\n var viewS = new $DataView(this);\n var viewT = new $DataView(result);\n var index = 0;\n while (first < fin) {\n viewT.setUint8(index++, viewS.getUint8(first++));\n } return result;\n }\n});\n\nrequire('./_set-species')(ARRAY_BUFFER);\n","var $export = require('./_export');\n$export($export.G + $export.W + $export.F * !require('./_typed').ABV, {\n DataView: require('./_typed-buffer').DataView\n});\n","require('./_typed-array')('Float32', 4, function (init) {\n return function Float32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Float64', 8, function (init) {\n return function Float64Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Int16', 2, function (init) {\n return function Int16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Int32', 4, function (init) {\n return function Int32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Int8', 1, function (init) {\n return function Int8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint16', 2, function (init) {\n return function Uint16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint32', 4, function (init) {\n return function Uint32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8ClampedArray(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n}, true);\n","'use strict';\nvar global = require('./_global');\nvar each = require('./_array-methods')(0);\nvar redefine = require('./_redefine');\nvar meta = require('./_meta');\nvar assign = require('./_object-assign');\nvar weak = require('./_collection-weak');\nvar isObject = require('./_is-object');\nvar validate = require('./_validate-collection');\nvar NATIVE_WEAK_MAP = require('./_validate-collection');\nvar IS_IE11 = !global.ActiveXObject && 'ActiveXObject' in global;\nvar WEAK_MAP = 'WeakMap';\nvar getWeak = meta.getWeak;\nvar isExtensible = Object.isExtensible;\nvar uncaughtFrozenStore = weak.ufstore;\nvar InternalMap;\n\nvar wrapper = function (get) {\n return function WeakMap() {\n return get(this, arguments.length > 0 ? arguments[0] : undefined);\n };\n};\n\nvar methods = {\n // 23.3.3.3 WeakMap.prototype.get(key)\n get: function get(key) {\n if (isObject(key)) {\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, WEAK_MAP)).get(key);\n return data ? data[this._i] : undefined;\n }\n },\n // 23.3.3.5 WeakMap.prototype.set(key, value)\n set: function set(key, value) {\n return weak.def(validate(this, WEAK_MAP), key, value);\n }\n};\n\n// 23.3 WeakMap Objects\nvar $WeakMap = module.exports = require('./_collection')(WEAK_MAP, wrapper, methods, weak, true, true);\n\n// IE11 WeakMap frozen keys fix\nif (NATIVE_WEAK_MAP && IS_IE11) {\n InternalMap = weak.getConstructor(wrapper, WEAK_MAP);\n assign(InternalMap.prototype, methods);\n meta.NEED = true;\n each(['delete', 'has', 'get', 'set'], function (key) {\n var proto = $WeakMap.prototype;\n var method = proto[key];\n redefine(proto, key, function (a, b) {\n // store frozen objects on internal weakmap shim\n if (isObject(a) && !isExtensible(a)) {\n if (!this._f) this._f = new InternalMap();\n var result = this._f[key](a, b);\n return key == 'set' ? this : result;\n // store all the rest on native weakmap\n } return method.call(this, a, b);\n });\n });\n}\n","'use strict';\nvar weak = require('./_collection-weak');\nvar validate = require('./_validate-collection');\nvar WEAK_SET = 'WeakSet';\n\n// 23.4 WeakSet Objects\nrequire('./_collection')(WEAK_SET, function (get) {\n return function WeakSet() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.4.3.1 WeakSet.prototype.add(value)\n add: function add(value) {\n return weak.def(validate(this, WEAK_SET), value, true);\n }\n}, weak, false, true);\n","'use strict';\n// https://github.com/tc39/Array.prototype.includes\nvar $export = require('./_export');\nvar $includes = require('./_array-includes')(true);\n\n$export($export.P, 'Array', {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\nrequire('./_add-to-unscopables')('includes');\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $entries = require('./_object-to-array')(true);\n\n$export($export.S, 'Object', {\n entries: function entries(it) {\n return $entries(it);\n }\n});\n","// https://github.com/tc39/proposal-object-getownpropertydescriptors\nvar $export = require('./_export');\nvar ownKeys = require('./_own-keys');\nvar toIObject = require('./_to-iobject');\nvar gOPD = require('./_object-gopd');\nvar createProperty = require('./_create-property');\n\n$export($export.S, 'Object', {\n getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {\n var O = toIObject(object);\n var getDesc = gOPD.f;\n var keys = ownKeys(O);\n var result = {};\n var i = 0;\n var key, desc;\n while (keys.length > i) {\n desc = getDesc(O, key = keys[i++]);\n if (desc !== undefined) createProperty(result, key, desc);\n }\n return result;\n }\n});\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $values = require('./_object-to-array')(false);\n\n$export($export.S, 'Object', {\n values: function values(it) {\n return $values(it);\n }\n});\n","// https://github.com/tc39/proposal-promise-finally\n'use strict';\nvar $export = require('./_export');\nvar core = require('./_core');\nvar global = require('./_global');\nvar speciesConstructor = require('./_species-constructor');\nvar promiseResolve = require('./_promise-resolve');\n\n$export($export.P + $export.R, 'Promise', { 'finally': function (onFinally) {\n var C = speciesConstructor(this, core.Promise || global.Promise);\n var isFunction = typeof onFinally == 'function';\n return this.then(\n isFunction ? function (x) {\n return promiseResolve(C, onFinally()).then(function () { return x; });\n } : onFinally,\n isFunction ? function (e) {\n return promiseResolve(C, onFinally()).then(function () { throw e; });\n } : onFinally\n );\n} });\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\nvar WEBKIT_BUG = /Version\\/10\\.\\d+(\\.\\d+)?( Mobile\\/\\w+)? Safari\\//.test(userAgent);\n\n$export($export.P + $export.F * WEBKIT_BUG, 'String', {\n padEnd: function padEnd(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false);\n }\n});\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\nvar WEBKIT_BUG = /Version\\/10\\.\\d+(\\.\\d+)?( Mobile\\/\\w+)? Safari\\//.test(userAgent);\n\n$export($export.P + $export.F * WEBKIT_BUG, 'String', {\n padStart: function padStart(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, true);\n }\n});\n","require('./_wks-define')('asyncIterator');\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","var $export = require('./_export');\nvar $task = require('./_task');\n$export($export.G + $export.B, {\n setImmediate: $task.set,\n clearImmediate: $task.clear\n});\n","// ie9- setTimeout & setInterval additional parameters fix\nvar global = require('./_global');\nvar $export = require('./_export');\nvar userAgent = require('./_user-agent');\nvar slice = [].slice;\nvar MSIE = /MSIE .\\./.test(userAgent); // <- dirty ie9- check\nvar wrap = function (set) {\n return function (fn, time /* , ...args */) {\n var boundArgs = arguments.length > 2;\n var args = boundArgs ? slice.call(arguments, 2) : false;\n return set(boundArgs ? function () {\n // eslint-disable-next-line no-new-func\n (typeof fn == 'function' ? fn : Function(fn)).apply(this, args);\n } : fn, time);\n };\n};\n$export($export.G + $export.B + $export.F * MSIE, {\n setTimeout: wrap(global.setTimeout),\n setInterval: wrap(global.setInterval)\n});\n","require('../modules/web.timers');\nrequire('../modules/web.immediate');\nrequire('../modules/web.dom.iterable');\nmodule.exports = require('../modules/_core');\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n!(function(global) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n var inModule = typeof module === \"object\";\n var runtime = global.regeneratorRuntime;\n if (runtime) {\n if (inModule) {\n // If regeneratorRuntime is defined globally and we're in a module,\n // make the exports object identical to regeneratorRuntime.\n module.exports = runtime;\n }\n // Don't bother evaluating the rest of this file if the runtime was\n // already defined globally.\n return;\n }\n\n // Define the runtime globally (as expected by generated code) as either\n // module.exports (if we're in a module) or a new, empty object.\n runtime = global.regeneratorRuntime = inModule ? module.exports : {};\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n runtime.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n return { type: \"normal\", arg: fn.call(obj, arg) };\n } catch (err) {\n return { type: \"throw\", arg: err };\n }\n }\n\n var GenStateSuspendedStart = \"suspendedStart\";\n var GenStateSuspendedYield = \"suspendedYield\";\n var GenStateExecuting = \"executing\";\n var GenStateCompleted = \"completed\";\n\n // Returning this object from the innerFn has the same effect as\n // breaking out of the dispatch switch statement.\n var ContinueSentinel = {};\n\n // Dummy constructor functions that we use as the .constructor and\n // .constructor.prototype properties for functions that return Generator\n // objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the names of these two functions.\n function Generator() {}\n function GeneratorFunction() {}\n function GeneratorFunctionPrototype() {}\n\n // This is a polyfill for %IteratorPrototype% for environments that\n // don't natively support it.\n var IteratorPrototype = {};\n IteratorPrototype[iteratorSymbol] = function () {\n return this;\n };\n\n var getProto = Object.getPrototypeOf;\n var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n if (NativeIteratorPrototype &&\n NativeIteratorPrototype !== Op &&\n hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n // This environment has a native %IteratorPrototype%; use it instead\n // of the polyfill.\n IteratorPrototype = NativeIteratorPrototype;\n }\n\n var Gp = GeneratorFunctionPrototype.prototype =\n Generator.prototype = Object.create(IteratorPrototype);\n GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;\n GeneratorFunctionPrototype.constructor = GeneratorFunction;\n GeneratorFunctionPrototype[toStringTagSymbol] =\n GeneratorFunction.displayName = \"GeneratorFunction\";\n\n // Helper for defining the .next, .throw, and .return methods of the\n // Iterator interface in terms of a single ._invoke method.\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function(method) {\n prototype[method] = function(arg) {\n return this._invoke(method, arg);\n };\n });\n }\n\n runtime.isGeneratorFunction = function(genFun) {\n var ctor = typeof genFun === \"function\" && genFun.constructor;\n return ctor\n ? ctor === GeneratorFunction ||\n // For the native GeneratorFunction constructor, the best we can\n // do is to check its .name property.\n (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n : false;\n };\n\n runtime.mark = function(genFun) {\n if (Object.setPrototypeOf) {\n Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n } else {\n genFun.__proto__ = GeneratorFunctionPrototype;\n if (!(toStringTagSymbol in genFun)) {\n genFun[toStringTagSymbol] = \"GeneratorFunction\";\n }\n }\n genFun.prototype = Object.create(Gp);\n return genFun;\n };\n\n // Within the body of any async function, `await x` is transformed to\n // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n // meant to be awaited.\n runtime.awrap = function(arg) {\n return { __await: arg };\n };\n\n function AsyncIterator(generator) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n if (record.type === \"throw\") {\n reject(record.arg);\n } else {\n var result = record.arg;\n var value = result.value;\n if (value &&\n typeof value === \"object\" &&\n hasOwn.call(value, \"__await\")) {\n return Promise.resolve(value.__await).then(function(value) {\n invoke(\"next\", value, resolve, reject);\n }, function(err) {\n invoke(\"throw\", err, resolve, reject);\n });\n }\n\n return Promise.resolve(value).then(function(unwrapped) {\n // When a yielded Promise is resolved, its final value becomes\n // the .value of the Promise<{value,done}> result for the\n // current iteration.\n result.value = unwrapped;\n resolve(result);\n }, function(error) {\n // If a rejected Promise was yielded, throw the rejection back\n // into the async generator function so it can be handled there.\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new Promise(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n AsyncIterator.prototype[asyncIteratorSymbol] = function () {\n return this;\n };\n runtime.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n runtime.async = function(innerFn, outerFn, self, tryLocsList) {\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList)\n );\n\n return runtime.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n if (delegate.iterator.return) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n Gp[toStringTagSymbol] = \"Generator\";\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n Gp[iteratorSymbol] = function() {\n return this;\n };\n\n Gp.toString = function() {\n return \"[object Generator]\";\n };\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n runtime.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n runtime.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n})(\n // In sloppy mode, unbound `this` refers to the global object, fallback to\n // Function constructor if we're in global strict mode. That is sadly a form\n // of indirect eval which violates Content Security Policy.\n (function() {\n return this || (typeof self === \"object\" && self);\n })() || Function(\"return this\")()\n);\n","module.exports = require('./lib/axios');","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\nvar btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || require('./../helpers/btoa');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n var loadEvent = 'onreadystatechange';\n var xDomain = false;\n\n // For IE 8/9 CORS support\n // Only supports POST and GET calls and doesn't returns the response headers.\n // DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.\n if (process.env.NODE_ENV !== 'test' &&\n typeof window !== 'undefined' &&\n window.XDomainRequest && !('withCredentials' in request) &&\n !isURLSameOrigin(config.url)) {\n request = new window.XDomainRequest();\n loadEvent = 'onload';\n xDomain = true;\n request.onprogress = function handleProgress() {};\n request.ontimeout = function handleTimeout() {};\n }\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request[loadEvent] = function handleLoad() {\n if (!request || (request.readyState !== 4 && !xDomain)) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n // IE sends 1223 instead of 204 (https://github.com/axios/axios/issues/201)\n status: request.status === 1223 ? 204 : request.status,\n statusText: request.status === 1223 ? 'No Content' : request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (config.withCredentials) {\n request.withCredentials = true;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(utils.merge(defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\nvar defaults = require('./../defaults');\nvar utils = require('./../utils');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = utils.merge({\n url: arguments[0]\n }, arguments[1]);\n }\n\n config = utils.merge(defaults, {method: 'get'}, this.defaults, config);\n config.method = config.method.toLowerCase();\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\nvar isAbsoluteURL = require('./../helpers/isAbsoluteURL');\nvar combineURLs = require('./../helpers/combineURLs');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Support baseURL config\n if (config.baseURL && !isAbsoluteURL(config.url)) {\n config.url = combineURLs(config.baseURL, config.url);\n }\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers || {}\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n error.request = request;\n error.response = response;\n return error;\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n // Note: status is not exposed by XDomainRequest\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\n// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js\n\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\nfunction E() {\n this.message = 'String contains an invalid character';\n}\nE.prototype = new Error;\nE.prototype.code = 5;\nE.prototype.name = 'InvalidCharacterError';\n\nfunction btoa(input) {\n var str = String(input);\n var output = '';\n for (\n // initialize result and counter\n var block, charCode, idx = 0, map = chars;\n // if the next str index does not exist:\n // change the mapping table to \"=\"\n // check if d has no fractional digits\n str.charAt(idx | 0) || (map = '=', idx % 1);\n // \"8 - idx % 1 * 8\" generates the sequence 2, 4, 6, 8\n output += map.charAt(63 & block >> 8 - idx % 1 * 8)\n ) {\n charCode = str.charCodeAt(idx += 3 / 4);\n if (charCode > 0xFF) {\n throw new E();\n }\n block = block << 8 | charCode;\n }\n return output;\n}\n\nmodule.exports = btoa;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","'use strict';\n\nvar bind = require('./helpers/bind');\nvar isBuffer = require('is-buffer');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim\n};\n","/**\n * EvEmitter v1.1.0\n * Lil' event emitter\n * MIT License\n */\n\n/* jshint unused: true, undef: true, strict: true */\n\n( function( global, factory ) {\n // universal module definition\n /* jshint strict: false */ /* globals define, module, window */\n if ( typeof define == 'function' && define.amd ) {\n // AMD - RequireJS\n define( factory );\n } else if ( typeof module == 'object' && module.exports ) {\n // CommonJS - Browserify, Webpack\n module.exports = factory();\n } else {\n // Browser globals\n global.EvEmitter = factory();\n }\n\n}( typeof window != 'undefined' ? window : this, function() {\n\n\"use strict\";\n\nfunction EvEmitter() {}\n\nvar proto = EvEmitter.prototype;\n\nproto.on = function( eventName, listener ) {\n if ( !eventName || !listener ) {\n return;\n }\n // set events hash\n var events = this._events = this._events || {};\n // set listeners array\n var listeners = events[ eventName ] = events[ eventName ] || [];\n // only add once\n if ( listeners.indexOf( listener ) == -1 ) {\n listeners.push( listener );\n }\n\n return this;\n};\n\nproto.once = function( eventName, listener ) {\n if ( !eventName || !listener ) {\n return;\n }\n // add event\n this.on( eventName, listener );\n // set once flag\n // set onceEvents hash\n var onceEvents = this._onceEvents = this._onceEvents || {};\n // set onceListeners object\n var onceListeners = onceEvents[ eventName ] = onceEvents[ eventName ] || {};\n // set flag\n onceListeners[ listener ] = true;\n\n return this;\n};\n\nproto.off = function( eventName, listener ) {\n var listeners = this._events && this._events[ eventName ];\n if ( !listeners || !listeners.length ) {\n return;\n }\n var index = listeners.indexOf( listener );\n if ( index != -1 ) {\n listeners.splice( index, 1 );\n }\n\n return this;\n};\n\nproto.emitEvent = function( eventName, args ) {\n var listeners = this._events && this._events[ eventName ];\n if ( !listeners || !listeners.length ) {\n return;\n }\n // copy over to avoid interference if .off() in listener\n listeners = listeners.slice(0);\n args = args || [];\n // once stuff\n var onceListeners = this._onceEvents && this._onceEvents[ eventName ];\n\n for ( var i=0; i < listeners.length; i++ ) {\n var listener = listeners[i]\n var isOnce = onceListeners && onceListeners[ listener ];\n if ( isOnce ) {\n // remove listener\n // remove before trigger to prevent recursion\n this.off( eventName, listener );\n // unset once flag\n delete onceListeners[ listener ];\n }\n // trigger listener\n listener.apply( this, args );\n }\n\n return this;\n};\n\nproto.allOff = function() {\n delete this._events;\n delete this._onceEvents;\n};\n\nreturn EvEmitter;\n\n}));\n","/*!\n * imagesLoaded v4.1.4\n * JavaScript is all like \"You images are done yet or what?\"\n * MIT License\n */\n\n( function( window, factory ) { 'use strict';\n // universal module definition\n\n /*global define: false, module: false, require: false */\n\n if ( typeof define == 'function' && define.amd ) {\n // AMD\n define( [\n 'ev-emitter/ev-emitter'\n ], function( EvEmitter ) {\n return factory( window, EvEmitter );\n });\n } else if ( typeof module == 'object' && module.exports ) {\n // CommonJS\n module.exports = factory(\n window,\n require('ev-emitter')\n );\n } else {\n // browser global\n window.imagesLoaded = factory(\n window,\n window.EvEmitter\n );\n }\n\n})( typeof window !== 'undefined' ? window : this,\n\n// -------------------------- factory -------------------------- //\n\nfunction factory( window, EvEmitter ) {\n\n'use strict';\n\nvar $ = window.jQuery;\nvar console = window.console;\n\n// -------------------------- helpers -------------------------- //\n\n// extend objects\nfunction extend( a, b ) {\n for ( var prop in b ) {\n a[ prop ] = b[ prop ];\n }\n return a;\n}\n\nvar arraySlice = Array.prototype.slice;\n\n// turn element or nodeList into an array\nfunction makeArray( obj ) {\n if ( Array.isArray( obj ) ) {\n // use object if already an array\n return obj;\n }\n\n var isArrayLike = typeof obj == 'object' && typeof obj.length == 'number';\n if ( isArrayLike ) {\n // convert nodeList to array\n return arraySlice.call( obj );\n }\n\n // array of single index\n return [ obj ];\n}\n\n// -------------------------- imagesLoaded -------------------------- //\n\n/**\n * @param {Array, Element, NodeList, String} elem\n * @param {Object or Function} options - if function, use as callback\n * @param {Function} onAlways - callback function\n */\nfunction ImagesLoaded( elem, options, onAlways ) {\n // coerce ImagesLoaded() without new, to be new ImagesLoaded()\n if ( !( this instanceof ImagesLoaded ) ) {\n return new ImagesLoaded( elem, options, onAlways );\n }\n // use elem as selector string\n var queryElem = elem;\n if ( typeof elem == 'string' ) {\n queryElem = document.querySelectorAll( elem );\n }\n // bail if bad element\n if ( !queryElem ) {\n console.error( 'Bad element for imagesLoaded ' + ( queryElem || elem ) );\n return;\n }\n\n this.elements = makeArray( queryElem );\n this.options = extend( {}, this.options );\n // shift arguments if no options set\n if ( typeof options == 'function' ) {\n onAlways = options;\n } else {\n extend( this.options, options );\n }\n\n if ( onAlways ) {\n this.on( 'always', onAlways );\n }\n\n this.getImages();\n\n if ( $ ) {\n // add jQuery Deferred object\n this.jqDeferred = new $.Deferred();\n }\n\n // HACK check async to allow time to bind listeners\n setTimeout( this.check.bind( this ) );\n}\n\nImagesLoaded.prototype = Object.create( EvEmitter.prototype );\n\nImagesLoaded.prototype.options = {};\n\nImagesLoaded.prototype.getImages = function() {\n this.images = [];\n\n // filter & find items if we have an item selector\n this.elements.forEach( this.addElementImages, this );\n};\n\n/**\n * @param {Node} element\n */\nImagesLoaded.prototype.addElementImages = function( elem ) {\n // filter siblings\n if ( elem.nodeName == 'IMG' ) {\n this.addImage( elem );\n }\n // get background image on element\n if ( this.options.background === true ) {\n this.addElementBackgroundImages( elem );\n }\n\n // find children\n // no non-element nodes, #143\n var nodeType = elem.nodeType;\n if ( !nodeType || !elementNodeTypes[ nodeType ] ) {\n return;\n }\n var childImgs = elem.querySelectorAll('img');\n // concat childElems to filterFound array\n for ( var i=0; i < childImgs.length; i++ ) {\n var img = childImgs[i];\n this.addImage( img );\n }\n\n // get child background images\n if ( typeof this.options.background == 'string' ) {\n var children = elem.querySelectorAll( this.options.background );\n for ( i=0; i < children.length; i++ ) {\n var child = children[i];\n this.addElementBackgroundImages( child );\n }\n }\n};\n\nvar elementNodeTypes = {\n 1: true,\n 9: true,\n 11: true\n};\n\nImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {\n var style = getComputedStyle( elem );\n if ( !style ) {\n // Firefox returns null if in a hidden iframe https://bugzil.la/548397\n return;\n }\n // get url inside url(\"...\")\n var reURL = /url\\((['\"])?(.*?)\\1\\)/gi;\n var matches = reURL.exec( style.backgroundImage );\n while ( matches !== null ) {\n var url = matches && matches[2];\n if ( url ) {\n this.addBackground( url, elem );\n }\n matches = reURL.exec( style.backgroundImage );\n }\n};\n\n/**\n * @param {Image} img\n */\nImagesLoaded.prototype.addImage = function( img ) {\n var loadingImage = new LoadingImage( img );\n this.images.push( loadingImage );\n};\n\nImagesLoaded.prototype.addBackground = function( url, elem ) {\n var background = new Background( url, elem );\n this.images.push( background );\n};\n\nImagesLoaded.prototype.check = function() {\n var _this = this;\n this.progressedCount = 0;\n this.hasAnyBroken = false;\n // complete if no images\n if ( !this.images.length ) {\n this.complete();\n return;\n }\n\n function onProgress( image, elem, message ) {\n // HACK - Chrome triggers event before object properties have changed. #83\n setTimeout( function() {\n _this.progress( image, elem, message );\n });\n }\n\n this.images.forEach( function( loadingImage ) {\n loadingImage.once( 'progress', onProgress );\n loadingImage.check();\n });\n};\n\nImagesLoaded.prototype.progress = function( image, elem, message ) {\n this.progressedCount++;\n this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;\n // progress event\n this.emitEvent( 'progress', [ this, image, elem ] );\n if ( this.jqDeferred && this.jqDeferred.notify ) {\n this.jqDeferred.notify( this, image );\n }\n // check if completed\n if ( this.progressedCount == this.images.length ) {\n this.complete();\n }\n\n if ( this.options.debug && console ) {\n console.log( 'progress: ' + message, image, elem );\n }\n};\n\nImagesLoaded.prototype.complete = function() {\n var eventName = this.hasAnyBroken ? 'fail' : 'done';\n this.isComplete = true;\n this.emitEvent( eventName, [ this ] );\n this.emitEvent( 'always', [ this ] );\n if ( this.jqDeferred ) {\n var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';\n this.jqDeferred[ jqMethod ]( this );\n }\n};\n\n// -------------------------- -------------------------- //\n\nfunction LoadingImage( img ) {\n this.img = img;\n}\n\nLoadingImage.prototype = Object.create( EvEmitter.prototype );\n\nLoadingImage.prototype.check = function() {\n // If complete is true and browser supports natural sizes,\n // try to check for image status manually.\n var isComplete = this.getIsImageComplete();\n if ( isComplete ) {\n // report based on naturalWidth\n this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n return;\n }\n\n // If none of the checks above matched, simulate loading on detached element.\n this.proxyImage = new Image();\n this.proxyImage.addEventListener( 'load', this );\n this.proxyImage.addEventListener( 'error', this );\n // bind to image as well for Firefox. #191\n this.img.addEventListener( 'load', this );\n this.img.addEventListener( 'error', this );\n this.proxyImage.src = this.img.src;\n};\n\nLoadingImage.prototype.getIsImageComplete = function() {\n // check for non-zero, non-undefined naturalWidth\n // fixes Safari+InfiniteScroll+Masonry bug infinite-scroll#671\n return this.img.complete && this.img.naturalWidth;\n};\n\nLoadingImage.prototype.confirm = function( isLoaded, message ) {\n this.isLoaded = isLoaded;\n this.emitEvent( 'progress', [ this, this.img, message ] );\n};\n\n// ----- events ----- //\n\n// trigger specified handler for event type\nLoadingImage.prototype.handleEvent = function( event ) {\n var method = 'on' + event.type;\n if ( this[ method ] ) {\n this[ method ]( event );\n }\n};\n\nLoadingImage.prototype.onload = function() {\n this.confirm( true, 'onload' );\n this.unbindEvents();\n};\n\nLoadingImage.prototype.onerror = function() {\n this.confirm( false, 'onerror' );\n this.unbindEvents();\n};\n\nLoadingImage.prototype.unbindEvents = function() {\n this.proxyImage.removeEventListener( 'load', this );\n this.proxyImage.removeEventListener( 'error', this );\n this.img.removeEventListener( 'load', this );\n this.img.removeEventListener( 'error', this );\n};\n\n// -------------------------- Background -------------------------- //\n\nfunction Background( url, element ) {\n this.url = url;\n this.element = element;\n this.img = new Image();\n}\n\n// inherit LoadingImage prototype\nBackground.prototype = Object.create( LoadingImage.prototype );\n\nBackground.prototype.check = function() {\n this.img.addEventListener( 'load', this );\n this.img.addEventListener( 'error', this );\n this.img.src = this.url;\n // check if image is already complete\n var isComplete = this.getIsImageComplete();\n if ( isComplete ) {\n this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );\n this.unbindEvents();\n }\n};\n\nBackground.prototype.unbindEvents = function() {\n this.img.removeEventListener( 'load', this );\n this.img.removeEventListener( 'error', this );\n};\n\nBackground.prototype.confirm = function( isLoaded, message ) {\n this.isLoaded = isLoaded;\n this.emitEvent( 'progress', [ this, this.element, message ] );\n};\n\n// -------------------------- jQuery -------------------------- //\n\nImagesLoaded.makeJQueryPlugin = function( jQuery ) {\n jQuery = jQuery || window.jQuery;\n if ( !jQuery ) {\n return;\n }\n // set local variable\n $ = jQuery;\n // $().imagesLoaded()\n $.fn.imagesLoaded = function( options, callback ) {\n var instance = new ImagesLoaded( this, options, callback );\n return instance.jqDeferred.promise( $(this) );\n };\n};\n// try making plugin\nImagesLoaded.makeJQueryPlugin();\n\n// -------------------------- -------------------------- //\n\nreturn ImagesLoaded;\n\n});\n","/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh <https://feross.org>\n * @license MIT\n */\n\n// The _isBuffer check is for Safari 5-7 support, because it's missing\n// Object.prototype.constructor. Remove this eventually\nmodule.exports = function (obj) {\n return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)\n}\n\nfunction isBuffer (obj) {\n return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)\n}\n\n// For Node v0.10 support. Remove this eventually.\nfunction isSlowBuffer (obj) {\n return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))\n}\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","'use strict';\n\nvar replace = String.prototype.replace;\nvar percentTwenties = /%20/g;\n\nmodule.exports = {\n 'default': 'RFC3986',\n formatters: {\n RFC1738: function (value) {\n return replace.call(value, percentTwenties, '+');\n },\n RFC3986: function (value) {\n return value;\n }\n },\n RFC1738: 'RFC1738',\n RFC3986: 'RFC3986'\n};\n","'use strict';\n\nvar stringify = require('./stringify');\nvar parse = require('./parse');\nvar formats = require('./formats');\n\nmodule.exports = {\n formats: formats,\n parse: parse,\n stringify: stringify\n};\n","'use strict';\n\nvar utils = require('./utils');\n\nvar has = Object.prototype.hasOwnProperty;\n\nvar defaults = {\n allowDots: false,\n allowPrototypes: false,\n arrayLimit: 20,\n charset: 'utf-8',\n charsetSentinel: false,\n decoder: utils.decode,\n delimiter: '&',\n depth: 5,\n ignoreQueryPrefix: false,\n interpretNumericEntities: false,\n parameterLimit: 1000,\n parseArrays: true,\n plainObjects: false,\n strictNullHandling: false\n};\n\nvar interpretNumericEntities = function (str) {\n return str.replace(/&#(\\d+);/g, function ($0, numberStr) {\n return String.fromCharCode(parseInt(numberStr, 10));\n });\n};\n\n// This is what browsers will submit when the ✓ character occurs in an\n// application/x-www-form-urlencoded body and the encoding of the page containing\n// the form is iso-8859-1, or when the submitted form has an accept-charset\n// attribute of iso-8859-1. Presumably also with other charsets that do not contain\n// the ✓ character, such as us-ascii.\nvar isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('&#10003;')\n\n// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded.\nvar charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓')\n\nvar parseValues = function parseQueryStringValues(str, options) {\n var obj = {};\n var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\\?/, '') : str;\n var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit;\n var parts = cleanStr.split(options.delimiter, limit);\n var skipIndex = -1; // Keep track of where the utf8 sentinel was found\n var i;\n\n var charset = options.charset;\n if (options.charsetSentinel) {\n for (i = 0; i < parts.length; ++i) {\n if (parts[i].indexOf('utf8=') === 0) {\n if (parts[i] === charsetSentinel) {\n charset = 'utf-8';\n } else if (parts[i] === isoSentinel) {\n charset = 'iso-8859-1';\n }\n skipIndex = i;\n i = parts.length; // The eslint settings do not allow break;\n }\n }\n }\n\n for (i = 0; i < parts.length; ++i) {\n if (i === skipIndex) {\n continue;\n }\n var part = parts[i];\n\n var bracketEqualsPos = part.indexOf(']=');\n var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1;\n\n var key, val;\n if (pos === -1) {\n key = options.decoder(part, defaults.decoder, charset);\n val = options.strictNullHandling ? null : '';\n } else {\n key = options.decoder(part.slice(0, pos), defaults.decoder, charset);\n val = options.decoder(part.slice(pos + 1), defaults.decoder, charset);\n }\n\n if (val && options.interpretNumericEntities && charset === 'iso-8859-1') {\n val = interpretNumericEntities(val);\n }\n if (has.call(obj, key)) {\n obj[key] = utils.combine(obj[key], val);\n } else {\n obj[key] = val;\n }\n }\n\n return obj;\n};\n\nvar parseObject = function (chain, val, options) {\n var leaf = val;\n\n for (var i = chain.length - 1; i >= 0; --i) {\n var obj;\n var root = chain[i];\n\n if (root === '[]' && options.parseArrays) {\n obj = [].concat(leaf);\n } else {\n obj = options.plainObjects ? Object.create(null) : {};\n var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;\n var index = parseInt(cleanRoot, 10);\n if (!options.parseArrays && cleanRoot === '') {\n obj = { 0: leaf };\n } else if (\n !isNaN(index)\n && root !== cleanRoot\n && String(index) === cleanRoot\n && index >= 0\n && (options.parseArrays && index <= options.arrayLimit)\n ) {\n obj = [];\n obj[index] = leaf;\n } else {\n obj[cleanRoot] = leaf;\n }\n }\n\n leaf = obj;\n }\n\n return leaf;\n};\n\nvar parseKeys = function parseQueryStringKeys(givenKey, val, options) {\n if (!givenKey) {\n return;\n }\n\n // Transform dot notation to bracket notation\n var key = options.allowDots ? givenKey.replace(/\\.([^.[]+)/g, '[$1]') : givenKey;\n\n // The regex chunks\n\n var brackets = /(\\[[^[\\]]*])/;\n var child = /(\\[[^[\\]]*])/g;\n\n // Get the parent\n\n var segment = brackets.exec(key);\n var parent = segment ? key.slice(0, segment.index) : key;\n\n // Stash the parent if it exists\n\n var keys = [];\n if (parent) {\n // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties\n if (!options.plainObjects && has.call(Object.prototype, parent)) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n\n keys.push(parent);\n }\n\n // Loop through children appending to the array until we hit depth\n\n var i = 0;\n while ((segment = child.exec(key)) !== null && i < options.depth) {\n i += 1;\n if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n keys.push(segment[1]);\n }\n\n // If there's a remainder, just add whatever is left\n\n if (segment) {\n keys.push('[' + key.slice(segment.index) + ']');\n }\n\n return parseObject(keys, val, options);\n};\n\nmodule.exports = function (str, opts) {\n var options = opts ? utils.assign({}, opts) : {};\n\n if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') {\n throw new TypeError('Decoder has to be a function.');\n }\n\n options.ignoreQueryPrefix = options.ignoreQueryPrefix === true;\n options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter;\n options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth;\n options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit;\n options.parseArrays = options.parseArrays !== false;\n options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder;\n options.allowDots = typeof options.allowDots === 'undefined' ? defaults.allowDots : !!options.allowDots;\n options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects;\n options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes;\n options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit;\n options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;\n\n if (typeof options.charset !== 'undefined' && options.charset !== 'utf-8' && options.charset !== 'iso-8859-1') {\n throw new Error('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n if (typeof options.charset === 'undefined') {\n options.charset = defaults.charset;\n }\n\n if (str === '' || str === null || typeof str === 'undefined') {\n return options.plainObjects ? Object.create(null) : {};\n }\n\n var tempObj = typeof str === 'string' ? parseValues(str, options) : str;\n var obj = options.plainObjects ? Object.create(null) : {};\n\n // Iterate over the keys and setup the new object\n\n var keys = Object.keys(tempObj);\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n var newObj = parseKeys(key, tempObj[key], options);\n obj = utils.merge(obj, newObj, options);\n }\n\n return utils.compact(obj);\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar formats = require('./formats');\n\nvar arrayPrefixGenerators = {\n brackets: function brackets(prefix) { // eslint-disable-line func-name-matching\n return prefix + '[]';\n },\n indices: function indices(prefix, key) { // eslint-disable-line func-name-matching\n return prefix + '[' + key + ']';\n },\n repeat: function repeat(prefix) { // eslint-disable-line func-name-matching\n return prefix;\n }\n};\n\nvar isArray = Array.isArray;\nvar push = Array.prototype.push;\nvar pushToArray = function (arr, valueOrArray) {\n push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);\n};\n\nvar toISO = Date.prototype.toISOString;\n\nvar defaults = {\n addQueryPrefix: false,\n allowDots: false,\n charset: 'utf-8',\n charsetSentinel: false,\n delimiter: '&',\n encode: true,\n encoder: utils.encode,\n encodeValuesOnly: false,\n // deprecated\n indices: false,\n serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching\n return toISO.call(date);\n },\n skipNulls: false,\n strictNullHandling: false\n};\n\nvar stringify = function stringify( // eslint-disable-line func-name-matching\n object,\n prefix,\n generateArrayPrefix,\n strictNullHandling,\n skipNulls,\n encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n formatter,\n encodeValuesOnly,\n charset\n) {\n var obj = object;\n if (typeof filter === 'function') {\n obj = filter(prefix, obj);\n } else if (obj instanceof Date) {\n obj = serializeDate(obj);\n }\n\n if (obj === null) {\n if (strictNullHandling) {\n return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset) : prefix;\n }\n\n obj = '';\n }\n\n if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) {\n if (encoder) {\n var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset);\n return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset))];\n }\n return [formatter(prefix) + '=' + formatter(String(obj))];\n }\n\n var values = [];\n\n if (typeof obj === 'undefined') {\n return values;\n }\n\n var objKeys;\n if (Array.isArray(filter)) {\n objKeys = filter;\n } else {\n var keys = Object.keys(obj);\n objKeys = sort ? keys.sort(sort) : keys;\n }\n\n for (var i = 0; i < objKeys.length; ++i) {\n var key = objKeys[i];\n\n if (skipNulls && obj[key] === null) {\n continue;\n }\n\n if (Array.isArray(obj)) {\n pushToArray(values, stringify(\n obj[key],\n generateArrayPrefix(prefix, key),\n generateArrayPrefix,\n strictNullHandling,\n skipNulls,\n encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n formatter,\n encodeValuesOnly,\n charset\n ));\n } else {\n pushToArray(values, stringify(\n obj[key],\n prefix + (allowDots ? '.' + key : '[' + key + ']'),\n generateArrayPrefix,\n strictNullHandling,\n skipNulls,\n encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n formatter,\n encodeValuesOnly,\n charset\n ));\n }\n }\n\n return values;\n};\n\nmodule.exports = function (object, opts) {\n var obj = object;\n var options = opts ? utils.assign({}, opts) : {};\n\n if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') {\n throw new TypeError('Encoder has to be a function.');\n }\n\n var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter;\n var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;\n var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls;\n var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode;\n var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder;\n var sort = typeof options.sort === 'function' ? options.sort : null;\n var allowDots = typeof options.allowDots === 'undefined' ? defaults.allowDots : !!options.allowDots;\n var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate;\n var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly;\n var charset = options.charset || defaults.charset;\n if (typeof options.charset !== 'undefined' && options.charset !== 'utf-8' && options.charset !== 'iso-8859-1') {\n throw new Error('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n\n if (typeof options.format === 'undefined') {\n options.format = formats['default'];\n } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) {\n throw new TypeError('Unknown format option provided.');\n }\n var formatter = formats.formatters[options.format];\n var objKeys;\n var filter;\n\n if (typeof options.filter === 'function') {\n filter = options.filter;\n obj = filter('', obj);\n } else if (Array.isArray(options.filter)) {\n filter = options.filter;\n objKeys = filter;\n }\n\n var keys = [];\n\n if (typeof obj !== 'object' || obj === null) {\n return '';\n }\n\n var arrayFormat;\n if (options.arrayFormat in arrayPrefixGenerators) {\n arrayFormat = options.arrayFormat;\n } else if ('indices' in options) {\n arrayFormat = options.indices ? 'indices' : 'repeat';\n } else {\n arrayFormat = 'indices';\n }\n\n var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];\n\n if (!objKeys) {\n objKeys = Object.keys(obj);\n }\n\n if (sort) {\n objKeys.sort(sort);\n }\n\n for (var i = 0; i < objKeys.length; ++i) {\n var key = objKeys[i];\n\n if (skipNulls && obj[key] === null) {\n continue;\n }\n pushToArray(keys, stringify(\n obj[key],\n key,\n generateArrayPrefix,\n strictNullHandling,\n skipNulls,\n encode ? encoder : null,\n filter,\n sort,\n allowDots,\n serializeDate,\n formatter,\n encodeValuesOnly,\n charset\n ));\n }\n\n var joined = keys.join(delimiter);\n var prefix = options.addQueryPrefix === true ? '?' : '';\n\n if (options.charsetSentinel) {\n if (charset === 'iso-8859-1') {\n // encodeURIComponent('&#10003;'), the \"numeric entity\" representation of a checkmark\n prefix += 'utf8=%26%2310003%3B&';\n } else {\n // encodeURIComponent('✓')\n prefix += 'utf8=%E2%9C%93&';\n }\n }\n\n return joined.length > 0 ? prefix + joined : '';\n};\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty;\n\nvar hexTable = (function () {\n var array = [];\n for (var i = 0; i < 256; ++i) {\n array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());\n }\n\n return array;\n}());\n\nvar compactQueue = function compactQueue(queue) {\n while (queue.length > 1) {\n var item = queue.pop();\n var obj = item.obj[item.prop];\n\n if (Array.isArray(obj)) {\n var compacted = [];\n\n for (var j = 0; j < obj.length; ++j) {\n if (typeof obj[j] !== 'undefined') {\n compacted.push(obj[j]);\n }\n }\n\n item.obj[item.prop] = compacted;\n }\n }\n};\n\nvar arrayToObject = function arrayToObject(source, options) {\n var obj = options && options.plainObjects ? Object.create(null) : {};\n for (var i = 0; i < source.length; ++i) {\n if (typeof source[i] !== 'undefined') {\n obj[i] = source[i];\n }\n }\n\n return obj;\n};\n\nvar merge = function merge(target, source, options) {\n if (!source) {\n return target;\n }\n\n if (typeof source !== 'object') {\n if (Array.isArray(target)) {\n target.push(source);\n } else if (typeof target === 'object') {\n if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) {\n target[source] = true;\n }\n } else {\n return [target, source];\n }\n\n return target;\n }\n\n if (typeof target !== 'object') {\n return [target].concat(source);\n }\n\n var mergeTarget = target;\n if (Array.isArray(target) && !Array.isArray(source)) {\n mergeTarget = arrayToObject(target, options);\n }\n\n if (Array.isArray(target) && Array.isArray(source)) {\n source.forEach(function (item, i) {\n if (has.call(target, i)) {\n if (target[i] && typeof target[i] === 'object') {\n target[i] = merge(target[i], item, options);\n } else {\n target.push(item);\n }\n } else {\n target[i] = item;\n }\n });\n return target;\n }\n\n return Object.keys(source).reduce(function (acc, key) {\n var value = source[key];\n\n if (has.call(acc, key)) {\n acc[key] = merge(acc[key], value, options);\n } else {\n acc[key] = value;\n }\n return acc;\n }, mergeTarget);\n};\n\nvar assign = function assignSingleSource(target, source) {\n return Object.keys(source).reduce(function (acc, key) {\n acc[key] = source[key];\n return acc;\n }, target);\n};\n\nvar decode = function (str, decoder, charset) {\n var strWithoutPlus = str.replace(/\\+/g, ' ');\n if (charset === 'iso-8859-1') {\n // unescape never throws, no try...catch needed:\n return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);\n }\n // utf-8\n try {\n return decodeURIComponent(strWithoutPlus);\n } catch (e) {\n return strWithoutPlus;\n }\n};\n\nvar encode = function encode(str, defaultEncoder, charset) {\n // This code was originally written by Brian White (mscdex) for the io.js core querystring library.\n // It has been adapted here for stricter adherence to RFC 3986\n if (str.length === 0) {\n return str;\n }\n\n var string = typeof str === 'string' ? str : String(str);\n\n if (charset === 'iso-8859-1') {\n return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) {\n return '%26%23' + parseInt($0.slice(2), 16) + '%3B';\n });\n }\n\n var out = '';\n for (var i = 0; i < string.length; ++i) {\n var c = string.charCodeAt(i);\n\n if (\n c === 0x2D // -\n || c === 0x2E // .\n || c === 0x5F // _\n || c === 0x7E // ~\n || (c >= 0x30 && c <= 0x39) // 0-9\n || (c >= 0x41 && c <= 0x5A) // a-z\n || (c >= 0x61 && c <= 0x7A) // A-Z\n ) {\n out += string.charAt(i);\n continue;\n }\n\n if (c < 0x80) {\n out = out + hexTable[c];\n continue;\n }\n\n if (c < 0x800) {\n out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]);\n continue;\n }\n\n if (c < 0xD800 || c >= 0xE000) {\n out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]);\n continue;\n }\n\n i += 1;\n c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));\n out += hexTable[0xF0 | (c >> 18)]\n + hexTable[0x80 | ((c >> 12) & 0x3F)]\n + hexTable[0x80 | ((c >> 6) & 0x3F)]\n + hexTable[0x80 | (c & 0x3F)];\n }\n\n return out;\n};\n\nvar compact = function compact(value) {\n var queue = [{ obj: { o: value }, prop: 'o' }];\n var refs = [];\n\n for (var i = 0; i < queue.length; ++i) {\n var item = queue[i];\n var obj = item.obj[item.prop];\n\n var keys = Object.keys(obj);\n for (var j = 0; j < keys.length; ++j) {\n var key = keys[j];\n var val = obj[key];\n if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) {\n queue.push({ obj: obj, prop: key });\n refs.push(val);\n }\n }\n }\n\n compactQueue(queue);\n\n return value;\n};\n\nvar isRegExp = function isRegExp(obj) {\n return Object.prototype.toString.call(obj) === '[object RegExp]';\n};\n\nvar isBuffer = function isBuffer(obj) {\n if (obj === null || typeof obj === 'undefined') {\n return false;\n }\n\n return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));\n};\n\nvar combine = function combine(a, b) {\n return [].concat(a, b);\n};\n\nmodule.exports = {\n arrayToObject: arrayToObject,\n assign: assign,\n combine: combine,\n compact: compact,\n decode: decode,\n encode: encode,\n isBuffer: isBuffer,\n isRegExp: isRegExp,\n merge: merge\n};\n","/* smoothscroll v0.4.0 - 2018 - Dustan Kasten, Jeremias Menichelli - MIT License */\n(function () {\n 'use strict';\n\n // polyfill\n function polyfill() {\n // aliases\n var w = window;\n var d = document;\n\n // return if scroll behavior is supported and polyfill is not forced\n if (\n 'scrollBehavior' in d.documentElement.style &&\n w.__forceSmoothScrollPolyfill__ !== true\n ) {\n return;\n }\n\n // globals\n var Element = w.HTMLElement || w.Element;\n var SCROLL_TIME = 468;\n\n // object gathering original scroll methods\n var original = {\n scroll: w.scroll || w.scrollTo,\n scrollBy: w.scrollBy,\n elementScroll: Element.prototype.scroll || scrollElement,\n scrollIntoView: Element.prototype.scrollIntoView\n };\n\n // define timing method\n var now =\n w.performance && w.performance.now\n ? w.performance.now.bind(w.performance)\n : Date.now;\n\n /**\n * indicates if a the current browser is made by Microsoft\n * @method isMicrosoftBrowser\n * @param {String} userAgent\n * @returns {Boolean}\n */\n function isMicrosoftBrowser(userAgent) {\n var userAgentPatterns = ['MSIE ', 'Trident/', 'Edge/'];\n\n return new RegExp(userAgentPatterns.join('|')).test(userAgent);\n }\n\n /*\n * IE has rounding bug rounding down clientHeight and clientWidth and\n * rounding up scrollHeight and scrollWidth causing false positives\n * on hasScrollableSpace\n */\n var ROUNDING_TOLERANCE = isMicrosoftBrowser(w.navigator.userAgent) ? 1 : 0;\n\n /**\n * changes scroll position inside an element\n * @method scrollElement\n * @param {Number} x\n * @param {Number} y\n * @returns {undefined}\n */\n function scrollElement(x, y) {\n this.scrollLeft = x;\n this.scrollTop = y;\n }\n\n /**\n * returns result of applying ease math function to a number\n * @method ease\n * @param {Number} k\n * @returns {Number}\n */\n function ease(k) {\n return 0.5 * (1 - Math.cos(Math.PI * k));\n }\n\n /**\n * indicates if a smooth behavior should be applied\n * @method shouldBailOut\n * @param {Number|Object} firstArg\n * @returns {Boolean}\n */\n function shouldBailOut(firstArg) {\n if (\n firstArg === null ||\n typeof firstArg !== 'object' ||\n firstArg.behavior === undefined ||\n firstArg.behavior === 'auto' ||\n firstArg.behavior === 'instant'\n ) {\n // first argument is not an object/null\n // or behavior is auto, instant or undefined\n return true;\n }\n\n if (typeof firstArg === 'object' && firstArg.behavior === 'smooth') {\n // first argument is an object and behavior is smooth\n return false;\n }\n\n // throw error when behavior is not supported\n throw new TypeError(\n 'behavior member of ScrollOptions ' +\n firstArg.behavior +\n ' is not a valid value for enumeration ScrollBehavior.'\n );\n }\n\n /**\n * indicates if an element has scrollable space in the provided axis\n * @method hasScrollableSpace\n * @param {Node} el\n * @param {String} axis\n * @returns {Boolean}\n */\n function hasScrollableSpace(el, axis) {\n if (axis === 'Y') {\n return el.clientHeight + ROUNDING_TOLERANCE < el.scrollHeight;\n }\n\n if (axis === 'X') {\n return el.clientWidth + ROUNDING_TOLERANCE < el.scrollWidth;\n }\n }\n\n /**\n * indicates if an element has a scrollable overflow property in the axis\n * @method canOverflow\n * @param {Node} el\n * @param {String} axis\n * @returns {Boolean}\n */\n function canOverflow(el, axis) {\n var overflowValue = w.getComputedStyle(el, null)['overflow' + axis];\n\n return overflowValue === 'auto' || overflowValue === 'scroll';\n }\n\n /**\n * indicates if an element can be scrolled in either axis\n * @method isScrollable\n * @param {Node} el\n * @param {String} axis\n * @returns {Boolean}\n */\n function isScrollable(el) {\n var isScrollableY = hasScrollableSpace(el, 'Y') && canOverflow(el, 'Y');\n var isScrollableX = hasScrollableSpace(el, 'X') && canOverflow(el, 'X');\n\n return isScrollableY || isScrollableX;\n }\n\n /**\n * finds scrollable parent of an element\n * @method findScrollableParent\n * @param {Node} el\n * @returns {Node} el\n */\n function findScrollableParent(el) {\n var isBody;\n\n do {\n el = el.parentNode;\n\n isBody = el === d.body;\n } while (isBody === false && isScrollable(el) === false);\n\n isBody = null;\n\n return el;\n }\n\n /**\n * self invoked function that, given a context, steps through scrolling\n * @method step\n * @param {Object} context\n * @returns {undefined}\n */\n function step(context) {\n var time = now();\n var value;\n var currentX;\n var currentY;\n var elapsed = (time - context.startTime) / SCROLL_TIME;\n\n // avoid elapsed times higher than one\n elapsed = elapsed > 1 ? 1 : elapsed;\n\n // apply easing to elapsed time\n value = ease(elapsed);\n\n currentX = context.startX + (context.x - context.startX) * value;\n currentY = context.startY + (context.y - context.startY) * value;\n\n context.method.call(context.scrollable, currentX, currentY);\n\n // scroll more if we have not reached our destination\n if (currentX !== context.x || currentY !== context.y) {\n w.requestAnimationFrame(step.bind(w, context));\n }\n }\n\n /**\n * scrolls window or element with a smooth behavior\n * @method smoothScroll\n * @param {Object|Node} el\n * @param {Number} x\n * @param {Number} y\n * @returns {undefined}\n */\n function smoothScroll(el, x, y) {\n var scrollable;\n var startX;\n var startY;\n var method;\n var startTime = now();\n\n // define scroll context\n if (el === d.body) {\n scrollable = w;\n startX = w.scrollX || w.pageXOffset;\n startY = w.scrollY || w.pageYOffset;\n method = original.scroll;\n } else {\n scrollable = el;\n startX = el.scrollLeft;\n startY = el.scrollTop;\n method = scrollElement;\n }\n\n // scroll looping over a frame\n step({\n scrollable: scrollable,\n method: method,\n startTime: startTime,\n startX: startX,\n startY: startY,\n x: x,\n y: y\n });\n }\n\n // ORIGINAL METHODS OVERRIDES\n // w.scroll and w.scrollTo\n w.scroll = w.scrollTo = function() {\n // avoid action when no arguments are passed\n if (arguments[0] === undefined) {\n return;\n }\n\n // avoid smooth behavior if not required\n if (shouldBailOut(arguments[0]) === true) {\n original.scroll.call(\n w,\n arguments[0].left !== undefined\n ? arguments[0].left\n : typeof arguments[0] !== 'object'\n ? arguments[0]\n : w.scrollX || w.pageXOffset,\n // use top prop, second argument if present or fallback to scrollY\n arguments[0].top !== undefined\n ? arguments[0].top\n : arguments[1] !== undefined\n ? arguments[1]\n : w.scrollY || w.pageYOffset\n );\n\n return;\n }\n\n // LET THE SMOOTHNESS BEGIN!\n smoothScroll.call(\n w,\n d.body,\n arguments[0].left !== undefined\n ? ~~arguments[0].left\n : w.scrollX || w.pageXOffset,\n arguments[0].top !== undefined\n ? ~~arguments[0].top\n : w.scrollY || w.pageYOffset\n );\n };\n\n // w.scrollBy\n w.scrollBy = function() {\n // avoid action when no arguments are passed\n if (arguments[0] === undefined) {\n return;\n }\n\n // avoid smooth behavior if not required\n if (shouldBailOut(arguments[0])) {\n original.scrollBy.call(\n w,\n arguments[0].left !== undefined\n ? arguments[0].left\n : typeof arguments[0] !== 'object' ? arguments[0] : 0,\n arguments[0].top !== undefined\n ? arguments[0].top\n : arguments[1] !== undefined ? arguments[1] : 0\n );\n\n return;\n }\n\n // LET THE SMOOTHNESS BEGIN!\n smoothScroll.call(\n w,\n d.body,\n ~~arguments[0].left + (w.scrollX || w.pageXOffset),\n ~~arguments[0].top + (w.scrollY || w.pageYOffset)\n );\n };\n\n // Element.prototype.scroll and Element.prototype.scrollTo\n Element.prototype.scroll = Element.prototype.scrollTo = function() {\n // avoid action when no arguments are passed\n if (arguments[0] === undefined) {\n return;\n }\n\n // avoid smooth behavior if not required\n if (shouldBailOut(arguments[0]) === true) {\n // if one number is passed, throw error to match Firefox implementation\n if (typeof arguments[0] === 'number' && arguments[1] === undefined) {\n throw new SyntaxError('Value could not be converted');\n }\n\n original.elementScroll.call(\n this,\n // use left prop, first number argument or fallback to scrollLeft\n arguments[0].left !== undefined\n ? ~~arguments[0].left\n : typeof arguments[0] !== 'object' ? ~~arguments[0] : this.scrollLeft,\n // use top prop, second argument or fallback to scrollTop\n arguments[0].top !== undefined\n ? ~~arguments[0].top\n : arguments[1] !== undefined ? ~~arguments[1] : this.scrollTop\n );\n\n return;\n }\n\n var left = arguments[0].left;\n var top = arguments[0].top;\n\n // LET THE SMOOTHNESS BEGIN!\n smoothScroll.call(\n this,\n this,\n typeof left === 'undefined' ? this.scrollLeft : ~~left,\n typeof top === 'undefined' ? this.scrollTop : ~~top\n );\n };\n\n // Element.prototype.scrollBy\n Element.prototype.scrollBy = function() {\n // avoid action when no arguments are passed\n if (arguments[0] === undefined) {\n return;\n }\n\n // avoid smooth behavior if not required\n if (shouldBailOut(arguments[0]) === true) {\n original.elementScroll.call(\n this,\n arguments[0].left !== undefined\n ? ~~arguments[0].left + this.scrollLeft\n : ~~arguments[0] + this.scrollLeft,\n arguments[0].top !== undefined\n ? ~~arguments[0].top + this.scrollTop\n : ~~arguments[1] + this.scrollTop\n );\n\n return;\n }\n\n this.scroll({\n left: ~~arguments[0].left + this.scrollLeft,\n top: ~~arguments[0].top + this.scrollTop,\n behavior: arguments[0].behavior\n });\n };\n\n // Element.prototype.scrollIntoView\n Element.prototype.scrollIntoView = function() {\n // avoid smooth behavior if not required\n if (shouldBailOut(arguments[0]) === true) {\n original.scrollIntoView.call(\n this,\n arguments[0] === undefined ? true : arguments[0]\n );\n\n return;\n }\n\n // LET THE SMOOTHNESS BEGIN!\n var scrollableParent = findScrollableParent(this);\n var parentRects = scrollableParent.getBoundingClientRect();\n var clientRects = this.getBoundingClientRect();\n\n if (scrollableParent !== d.body) {\n // reveal element inside parent\n smoothScroll.call(\n this,\n scrollableParent,\n scrollableParent.scrollLeft + clientRects.left - parentRects.left,\n scrollableParent.scrollTop + clientRects.top - parentRects.top\n );\n\n // reveal parent in viewport unless is fixed\n if (w.getComputedStyle(scrollableParent).position !== 'fixed') {\n w.scrollBy({\n left: parentRects.left,\n top: parentRects.top,\n behavior: 'smooth'\n });\n }\n } else {\n // reveal element in viewport\n w.scrollBy({\n left: clientRects.left,\n top: clientRects.top,\n behavior: 'smooth'\n });\n }\n };\n }\n\n if (typeof exports === 'object' && typeof module !== 'undefined') {\n // commonjs\n module.exports = { polyfill: polyfill };\n } else {\n // global\n polyfill();\n }\n\n}());\n"],"sourceRoot":""}
1
+ {"version":3,"sources":["webpack://ajaxloadmore/webpack/bootstrap","webpack://ajaxloadmore/./core/src/js/ajax-load-more.js","webpack://ajaxloadmore/./core/src/js/helpers/almAppendChild.js","webpack://ajaxloadmore/./core/src/js/helpers/almAppendChildren.js","webpack://ajaxloadmore/./core/src/js/helpers/almDomParser.js","webpack://ajaxloadmore/./core/src/js/helpers/almGetCacheUrl.js","webpack://ajaxloadmore/./core/src/js/helpers/almTableWrap.js","webpack://ajaxloadmore/./core/src/js/helpers/commentReplyFix.js","webpack://ajaxloadmore/./core/src/js/helpers/getParameterByName.js","webpack://ajaxloadmore/./core/src/js/helpers/helpers.js","webpack://ajaxloadmore/./core/src/js/helpers/polyfills.js","webpack://ajaxloadmore/./core/src/js/helpers/queryParams.js","webpack://ajaxloadmore/./core/src/js/helpers/srcsetPolyfill.js","webpack://ajaxloadmore/./core/src/js/helpers/stripEmptyNodes.js","webpack://ajaxloadmore/./core/src/js/modules/almDebug.js","webpack://ajaxloadmore/./core/src/js/modules/fadeIn.js","webpack://ajaxloadmore/./core/src/js/modules/fadeOut.js","webpack://ajaxloadmore/./core/src/js/modules/filtering.js","webpack://ajaxloadmore/./core/src/js/modules/insertScript.js","webpack://ajaxloadmore/./core/src/js/modules/masonry.js","webpack://ajaxloadmore/./core/src/js/modules/noResults.js","webpack://ajaxloadmore/./core/src/js/modules/placeholder.js","webpack://ajaxloadmore/./core/src/js/modules/resultsText.js","webpack://ajaxloadmore/./core/src/js/modules/setFocus.js","webpack://ajaxloadmore/./core/src/js/modules/setLocalizedVars.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/lib/noConflict.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/noConflict.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/es6/index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/array/includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/entries.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/get-own-property-descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/object/values.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/promise/finally.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/string/pad-end.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/string/pad-start.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/fn/symbol/async-iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_a-function.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_a-number-value.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_add-to-unscopables.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_advance-string-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_an-instance.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_an-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-copy-within.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-fill.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-methods.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-reduce.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-species-constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_array-species-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_bind.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_classof.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_cof.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection-strong.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection-weak.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_collection.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_core.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_create-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_ctx.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_date-to-iso-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_date-to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_defined.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_dom-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_enum-bug-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_enum-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_export.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fails-is-regexp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fails.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_fix-re-wks.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_flags.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_for-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_function-to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_global.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_has.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_hide.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_html.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_ie8-dom-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_inherit-if-required.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_invoke.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iobject.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-array-iter.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_is-regexp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-call.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-detect.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iter-step.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_iterators.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_library.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-expm1.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-fround.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-log1p.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_math-sign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_meta.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_microtask.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_new-promise-capability.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-assign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-dp.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-dps.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopd.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopn-ext.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gopn.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gops.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-gpo.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-keys-internal.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-pie.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-sap.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_object-to-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_own-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_perform.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_promise-resolve.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_property-desc.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_redefine-all.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_redefine.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_regexp-exec-abstract.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_regexp-exec.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_same-value.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-proto.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-species.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_set-to-string-tag.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_shared-key.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_shared.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_species-constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_strict-method.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-at.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-context.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-html.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-pad.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-repeat.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-trim.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_string-ws.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_task.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-absolute-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-iobject.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-length.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-object.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed-buffer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_typed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_uid.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_user-agent.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_validate-collection.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks-define.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks-ext.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/_wks.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/core.get-iterator-method.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.copy-within.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.every.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.fill.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.filter.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.find-index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.find.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.for-each.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.from.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.index-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.is-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.join.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.last-index-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.reduce-right.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.reduce.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.slice.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.some.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.sort.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.array.species.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.now.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-iso-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-json.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-primitive.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.date.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.bind.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.has-instance.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.function.name.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.acosh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.asinh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.atanh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.cbrt.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.clz32.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.cosh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.expm1.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.fround.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.hypot.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.imul.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log10.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log1p.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.log2.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.sign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.sinh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.tanh.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.math.trunc.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.epsilon.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-finite.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-nan.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.is-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.max-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.min-safe-integer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.to-fixed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.number.to-precision.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.assign.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.create.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.define-properties.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.define-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.freeze.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-own-property-names.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.get-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-extensible.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-frozen.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is-sealed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.is.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.prevent-extensions.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.seal.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.set-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.object.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.parse-float.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.parse-int.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.promise.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.apply.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.construct.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.define-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.delete-property.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.enumerate.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.get.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.has.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.is-extensible.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.own-keys.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.prevent-extensions.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.set-prototype-of.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.reflect.set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.constructor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.exec.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.flags.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.match.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.replace.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.search.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.split.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.regexp.to-string.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.anchor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.big.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.blink.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.bold.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.code-point-at.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.ends-with.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fixed.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fontcolor.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.fontsize.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.from-code-point.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.italics.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.link.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.raw.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.repeat.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.small.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.starts-with.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.strike.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.sub.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.sup.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.string.trim.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.symbol.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.array-buffer.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.data-view.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.float32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.float64-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int16-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.int8-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint16-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint32-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint8-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.weak-map.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es6.weak-set.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.array.includes.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.entries.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.object.values.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.promise.finally.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.string.pad-end.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.string.pad-start.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/es7.symbol.async-iterator.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.dom.iterable.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.immediate.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/modules/web.timers.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/core-js/web/index.js","webpack://ajaxloadmore/./node_modules/@babel/polyfill/node_modules/regenerator-runtime/runtime.js","webpack://ajaxloadmore/./node_modules/axios/index.js","webpack://ajaxloadmore/./node_modules/axios/lib/adapters/xhr.js","webpack://ajaxloadmore/./node_modules/axios/lib/axios.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/Cancel.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/CancelToken.js","webpack://ajaxloadmore/./node_modules/axios/lib/cancel/isCancel.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/Axios.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/InterceptorManager.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/createError.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/dispatchRequest.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/enhanceError.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/settle.js","webpack://ajaxloadmore/./node_modules/axios/lib/core/transformData.js","webpack://ajaxloadmore/./node_modules/axios/lib/defaults.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/bind.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/btoa.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/buildURL.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/combineURLs.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/cookies.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/parseHeaders.js","webpack://ajaxloadmore/./node_modules/axios/lib/helpers/spread.js","webpack://ajaxloadmore/./node_modules/axios/lib/utils.js","webpack://ajaxloadmore/./node_modules/ev-emitter/ev-emitter.js","webpack://ajaxloadmore/./node_modules/imagesloaded/imagesloaded.js","webpack://ajaxloadmore/./node_modules/is-buffer/index.js","webpack://ajaxloadmore/./node_modules/process/browser.js","webpack://ajaxloadmore/./node_modules/qs/lib/formats.js","webpack://ajaxloadmore/./node_modules/qs/lib/index.js","webpack://ajaxloadmore/./node_modules/qs/lib/parse.js","webpack://ajaxloadmore/./node_modules/qs/lib/stringify.js","webpack://ajaxloadmore/./node_modules/qs/lib/utils.js","webpack://ajaxloadmore/./node_modules/smoothscroll-polyfill/dist/smoothscroll.js"],"names":["queryParams","resultsText","require","qs","imagesLoaded","smoothscroll","alm_is_filtering","ajaxloadmore","alm_localize","window","alm","el","alm_no_results","Array","parseInt","page","setTimeout","almChildren","almChildArray","btnWrap","element","container","document","cache_page","axios","response","action","acf_parent_field_name","nextpage_startpage","single_post_slug","comments_callback","usersOrderby","cta_theme_repeater","config","arrayFormat","encode","ajaxURL","params","data","queryType","alm_rest_url","post_id","template","tab_template","results","html","obj","alm_rest_template","wp","meta","postcount","totalposts","i","result","console","isPaged","reveal","pagingContent","total","pagenum","querystring","seo_class","filters_class","preloaded_class","return_data","container_array","posts_per_page","pages","Math","k","p","alm_reveal","p2","insertScript","currentPage","classes","content","loader","styles","pTop","pBtm","h","nested","id","initial_id","order","taxonomy","excluded_terms","post_type","init","location","error","button","e","resize","clearTimeout","trigger","btnPos","scrollTrigger","scrollInstance","scrollHeight","scrollPosition","direction","code","name","value","query","vars","pair","decodeURIComponent","alm_nextpage_pages","alm_nextpage_total","target","alm_instances","filter","transition","speed","tab","url","tracking","gtag","path","ga","__gaTracker","start","almScroll","top","behavior","getOffset","rect","scrollLeft","scrollTop","left","render","options","nodeNameArray","almAppendChild","almAppendChildren","array","almDomParser","type","parser","almGetCacheUrl","cache_url","ext","firstpage","nextpage_cache_url","almTableWrap","table_reveal","table_reveal_array","commentReplyFix","listing","replyLinks","link","commId","parentId","respondId","postId","follow","event","getParameterByName","regex","Object","ownProps","resArray","toStr","isCallable","toInteger","number","Number","isNaN","isFinite","maxSafeInteger","toLength","len","C","items","arrayLike","mapFn","arguments","T","A","kValue","NodeList","thisArg","callback","arr","item","configurable","enumerable","writable","Element","CharacterData","DocumentType","Function","aArgs","fToBind","FNOP","fBound","ObjectProto","defineGetter","defineSetter","lookupGetter","lookupSetter","hasOwnProp","prop","descriptor","getter","setter","props","propDescriptor","get","that","attributes","attsLength","toUpperCase","n0","HTML5_DOMStringMap","attribute","attrVal","attrName","propName","set","almGetAjaxParams","almGetRestParams","slug","canonical_url","encodeURIComponent","offset","repeater","seo_start_page","start_page","post_format","category","category__not_in","tag","tag__not_in","taxonomy_terms","taxonomy_operator","taxonomy_relation","meta_key","meta_value","meta_compare","meta_relation","meta_type","author","year","month","day","post_status","orderby","post__in","post__not_in","search","s","custom_args","lang","preloaded","preloaded_amount","srcsetPolyfill","ua","imgs","img","stripEmptyNodes","nodes","node","almDebug","almFadeIn","op","timer","clearInterval","almFadeOut","fadeEffect","almFilter","almFilterTransition","new_el","almCompleteFilterTransition","paging","almSetFilters","key","almFilterComplete","almFiltersAddonComplete","almTabsComplete","children","replace","isScript","clone","script","msnry","almMasonry","selector","columnWidth","animation","horizontalOrder","masonry_init","duration","hidden","visible","defaults","itemSelector","transitionDuration","hiddenStyle","transform","opacity","visibleStyle","alm_masonry_vars","almNoResults","showPlaceholder","hidePlaceholder","almResultsText","almGetResultsText","almInitResultsText","resultsType","current","almRenderResultsText","text","setFocus","parent","scrollContainer","x","y","setLocalizedVars"],"mappings":"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O,CAAC,mGAAgB;AAC1C,cAAc,mBAAO,CAAC,qFAAS;AAC/B,eAAe,mBAAO,CAAC,mHAAwB;AAC/C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,OAAO;AAC9B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,qBAAqB;AACrB,6BAA6B;AAC7B,0BAA0B;AAC1B,0BAA0B;AAC1B,qBAAqB;AACrB;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,8EAA8E,OAAO;AACrF;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC,qBAAqB;AACrB,0BAA0B;AAC1B,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;;;;;;;;;;;;AC/Ia;AACb,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,cAAc,mBAAO,CAAC,qFAAS;AAC/B,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,YAAY,mBAAO,CAAC,yFAAW;AAC/B,wBAAwB,mBAAO,CAAC,uGAAkB;AAClD,WAAW,mBAAO,CAAC,mFAAQ;AAC3B,eAAe,mBAAO,CAAC,mHAAwB;AAC/C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,qBAAqB;AACrB,qBAAqB;AACrB,0BAA0B;AAC1B;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;;ACpFa;AACb,aAAa,mBAAO,CAAC,yFAAW;AAChC,cAAc,mBAAO,CAAC,yFAAW;AACjC,eAAe,mBAAO,CAAC,6FAAa;AACpC,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,WAAW,mBAAO,CAAC,qFAAS;AAC5B,YAAY,mBAAO,CAAC,yFAAW;AAC/B,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,eAAe,mBAAO,CAAC,+FAAc;AACrC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD,wBAAwB,mBAAO,CAAC,mHAAwB;;AAExD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA,OAAO,mCAAmC,gCAAgC,aAAa;AACvF,8BAA8B,mCAAmC,aAAa;AAC9E;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,qDAAqD;AACrD;AACA,kDAAkD,iBAAiB,EAAE;AACrE;AACA,wDAAwD,aAAa,EAAE,EAAE;AACzE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;;;;;;;;;;;;ACpFA,6BAA6B;AAC7B,uCAAuC;;;;;;;;;;;;;ACD1B;AACb,sBAAsB,mBAAO,CAAC,+FAAc;AAC5C,iBAAiB,mBAAO,CAAC,uGAAkB;;AAE3C;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACnBa;AACb;AACA,YAAY,mBAAO,CAAC,uFAAU;AAC9B;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACzBY;AACb,eAAe,mBAAO,CAAC,+FAAc;AACrC,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C;;AAEA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA,kBAAkB,mBAAO,CAAC,uFAAU;AACpC,iCAAiC,QAAQ,mBAAmB,UAAU,EAAE,EAAE;AAC1E,CAAC;;;;;;;;;;;;ACHD,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,yFAAW;AAClC;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA,cAAc,mBAAO,CAAC,mGAAgB;AACtC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,UAAU,mBAAO,CAAC,iGAAe;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;ACdA,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,WAAW,mBAAO,CAAC,qFAAS;AAC5B,eAAe,mBAAO,CAAC,6FAAa;AACpC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kFAAkF,uBAAuB;AACzG,iEAAiE;AACjE,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,eAAe;AACf,eAAe;AACf,eAAe;AACf,gBAAgB;AAChB;;;;;;;;;;;;AC1CA,YAAY,mBAAO,CAAC,mFAAQ;AAC5B;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,KAAK,YAAY;AACjB,GAAG;AACH;;;;;;;;;;;;ACXA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;;;;;ACNa;AACb,mBAAO,CAAC,yGAAmB;AAC3B,eAAe,mBAAO,CAAC,6FAAa;AACpC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,YAAY,mBAAO,CAAC,uFAAU;AAC9B,cAAc,mBAAO,CAAC,2FAAY;AAClC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,iBAAiB,mBAAO,CAAC,mGAAgB;;AAEzC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA,yBAAyB,4CAA4C;AACrE;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA;AACA,6BAA6B,UAAU;AACvC;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,2BAA2B,mBAAmB,aAAa;AAC3D;AACA;AACA;AACA;AACA,6CAA6C,WAAW;AACxD;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,kBAAkB;AAClB;AACA,gBAAgB;AAChB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,gCAAgC,qCAAqC;AACrE;AACA;AACA,2BAA2B,gCAAgC;AAC3D;AACA;AACA;;;;;;;;;;;;;AC/Fa;AACb;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;A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AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;ACpEA,eAAe,mBAAO,CAAC,mFAAQ;AAC/B;;AAEA;AACA;AACA,iCAAiC,qBAAqB;AACtD;AACA,iCAAiC,SAAS,EAAE;AAC5C,CAAC,YAAY;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,SAAS,qBAAqB;AAC3D,iCAAiC,aAAa;AAC9C;AACA,GAAG,YAAY;AACf;AACA;;;;;;;;;;;;ACrBA;AACA,UAAU;AACV;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACTD;AACA,WAAW,mBAAO,CAAC,+FAAc;AACjC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACtBA;AACA;AACA;AACA;;;;;;;;;;;;ACHA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA,WAAW,mBAAO,CAAC,mFAAQ;AAC3B,eAAe,mBAAO,CAAC,+FAAc;AACrC,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,cAAc,mBAAO,CAAC,+FAAc;AACpC;AACA;AACA;AACA;AACA,cAAc,mBAAO,CAAC,uFAAU;AAChC,iDAAiD;AACjD,CAAC;AACD;AACA,qBAAqB;AACrB;AACA,SAAS;AACT,GAAG,EAAE;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpDA,aAAa,mBAAO,CAAC,yFAAW;AAChC,gBAAgB,mBAAO,CAAC,qFAAS;AACjC;AACA;AACA;AACA,aAAa,mBAAO,CAAC,mFAAQ;;AAE7B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,uCAAuC,sBAAsB,EAAE;AAC/D;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;;;;;;;;;;;;ACpEa;AACb;AACA,gBAAgB,mBAAO,CAAC,iGAAe;;AAEvC;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;;;;;ACjBa;AACb;AACA,cAAc,mBAAO,CAAC,mGAAgB;AACtC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,UAAU,mBAAO,CAAC,iGAAe;AACjC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,2FAAY;AAClC;;AAEA;AACA,6BAA6B,mBAAO,CAAC,uFAAU;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,UAAU,EAAE;AAChD,mBAAmB,sCAAsC;AACzD,CAAC,qCAAqC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,CAAC;;;;;;;;;;;;ACjCD;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC,UAAU,mBAAO,CAAC,iGAAe;AACjC,kBAAkB,mBAAO,CAAC,uGAAkB;AAC5C,eAAe,mBAAO,CAAC,iGAAe;AACtC,yBAAyB;AACzB;;AAEA;AACA;AACA;AACA,eAAe,mBAAO,CAAC,iGAAe;AACtC;AACA;AACA;AACA;AACA;AACA,EAAE,mBAAO,CAAC,qFAAS;AACnB,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;;;;;;;;;;;ACxCA,eAAe,mBAAO,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;ACfa;AACb,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,cAAc,mBAAO,CAAC,2FAAY;;AAElC;AACA;AACA;AACA;AACA;AACA,QAAQ,MAAM;AACd;AACA;;;;;;;;;;;;ACXA,cAAc,mBAAO,CAAC,yFAAW;AACjC,cAAc,mBAAO,CAAC,2FAAY;AAClC,YAAY,mBAAO,CAAC,uFAAU;AAC9B,aAAa,mBAAO,CAAC,+FAAc;AACnC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;AC7BA;AACA;;;;;;;;;;;;ACDA,UAAU,mBAAO,CAAC,mFAAQ;AAC1B,aAAa,mBAAO,CAAC,yFAAW;AAChC,WAAW,mBAAO,CAAC,qFAAS;AAC5B,UAAU,mBAAO,CAAC,iGAAe;AACjC,aAAa,mBAAO,CAAC,yFAAW;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,mBAAO,CAAC,mFAAQ;AACtB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnFA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA,cAAc,mBAAO,CAAC,2FAAY;AAClC,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;;;;;;;;;;;;ACLA;AACA,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA;AACA,2DAA2D;AAC3D;;;;;;;;;;;;ACLA;AACA,cAAc,mBAAO,CAAC,2FAAY;AAClC;AACA;AACA;;;;;;;;;;;;ACJA;AACA,eAAe,mBAAO,CAAC,+FAAc;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACXa;AACb,IAAI,mBAAO,CAAC,mGAAgB;AAC5B,gBAAgB,mBAAO,CAAC,2FAAY;AACpC,eAAe,mBAAO,CAAC,yFAAW;AAClC,cAAc,mBAAO,CAAC,uFAAU;AAChC,gBAAgB,mBAAO,CAAC,yFAAW;AACnC,eAAe,mBAAO,CAAC,uFAAU;AACjC,gBAAgB,mBAAO,CAAC,qGAAiB;AACzC,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,mBAAmB,mBAAO,CAAC,mGAAgB;AAC3C,qBAAqB,mBAAO,CAAC,uGAAkB;AAC/C,aAAa,mBAAO,CAAC,qFAAS;AAC9B,oBAAoB,mBAAO,CAAC,qGAAiB;AAC7C,kBAAkB,mBAAO,CAAC,iGAAe;AACzC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,gBAAgB,mBAAO,CAAC,6FAAa;AACrC,wBAAwB,mBAAO,CAAC,+GAAsB;AACtD,oBAAoB,mBAAO,CAAC,qGAAiB;AAC7C,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,gBAAgB,mBAAO,CAAC,2FAAY;AACpC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,iBAAiB,mBAAO,CAAC,+FAAc;AACvC,oBAAoB,mBAAO,CAAC,uGAAkB;AAC9C,eAAe,mBAAO,CAAC,uGAAkB;AACzC,uBAAuB,mBAAO,CAAC,iGAAe;AAC9C,aAAa,mBAAO,CAAC,mGAAgB;AACrC,kBAAkB,mBAAO,CAAC,2HAA4B;AACtD,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,YAAY,mBAAO,CAAC,mFAAQ;AAC5B,0BAA0B,mBAAO,CAAC,uGAAkB;AACpD,4BAA4B,mBAAO,CAAC,yGAAmB;AACvD,2BAA2B,mBAAO,CAAC,mHAAwB;AAC3D,uBAAuB,mBAAO,CAAC,+GAAsB;AACrD,kBAAkB,mBAAO,CAAC,+FAAc;AACxC,oBAAoB,mBAAO,CAAC,mGAAgB;AAC5C,mBAAmB,mBAAO,CAAC,mGAAgB;AAC3C,kBAAkB,mBAAO,CAAC,iGAAe;AACzC,wBAAwB,mBAAO,CAAC,+GAAsB;AACtD,YAAY,mBAAO,CAAC,+FAAc;AAClC,cAAc,mBAAO,CAAC,mGAAgB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA,GAAG;;AAEH;AACA,4BAA4B;AAC5B,GAAG;;AAEH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,iBAAiB,mBAAmB,0BAA0B,EAAE,EAAE;AAClE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yDAAyD,gCAAgC;AACzF;AACA,OAAO;AACP;AACA;AACA,6EAA6E,YAAY;AACzF;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yDAAyD,6CAA6C,EAAE;;AAExG;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,mDAAmD;AACnD;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,oCAAoC;AACpC;AACA,KAAK;AACL,wEAAwE;AACxE;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,8DAA8D;AAC9D;AACA,KAAK;AACL,wEAAwE;AACxE;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;;AAEH,yBAAyB,sBAAsB,EAAE,EAAE;AACnD;AACA;AACA;AACA;;AAEA,4CAA4C;AAC5C;AACA;AACA;AACA;AACA;AACA,8BAA8B,aAAa;AAC3C;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,sBAAsB,0BAA0B;AAChD,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA;AACA,SAAS;AACT;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL,yBAAyB;AACzB,KAAK;AACL,uBAAuB;AACvB,2BAA2B;AAC3B,0BAA0B;AAC1B,2BAA2B;AAC3B,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B,aAAa;AACvC,OAAO;AACP;;AAEA;;AAEA;;AAEA;AACA;AACA,KAAK;;AAEL,uDAAuD,6BAA6B,EAAE;AACtF;AACA;AACA,KAAK;;AAEL;;AAEA;;AAEA;;AAEA,uDAAuD,YAAY;;AAEnE;;AAEA;;AAEA;AACA;AACA,KAAK,UAAU,gBAAgB;;AAE/B;AACA;AACA,KAAK;AACL;AACA,KAAK,WAAW,kCAAkC;;AAElD;AACA;AACA;AACA,CAAC,oCAAoC;;;;;;;;;;;;;AC/dxB;AACb,aAAa,mBAAO,CAAC,yFAAW;AAChC,kBAAkB,mBAAO,CAAC,mGAAgB;AAC1C,cAAc,mBAAO,CAAC,2FAAY;AAClC,aAAa,mBAAO,CAAC,uFAAU;AAC/B,WAAW,mBAAO,CAAC,qFAAS;AAC5B,kBAAkB,mBAAO,CAAC,qGAAiB;AAC3C,YAAY,mBAAO,CAAC,uFAAU;AAC9B,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,eAAe,mBAAO,CAAC,+FAAc;AACrC,cAAc,mBAAO,CAAC,6FAAa;AACnC,WAAW,mBAAO,CAAC,mGAAgB;AACnC,SAAS,mBAAO,CAAC,+FAAc;AAC/B,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,qBAAqB,mBAAO,CAAC,+GAAsB;AACnD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA,QAAQ,UAAU;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA;AACA,QAAQ,WAAW;AACnB;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB,mBAAmB,uBAAuB,EAAE,EAAE;AACvE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,WAAW;AAC5B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH,CAAC;AACD;AACA;AACA,GAAG;AACH,yBAAyB;AACzB,GAAG;AACH,uBAAuB;AACvB,0BAA0B;AAC1B,0BAA0B;AAC1B;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,iDAAiD,iBAAiB;AAClE;AACA;AA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H;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,mBAAmB,kCAAkC;AACrD,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,eAAe,uCAAuC;AACtD;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA,uBAAuB,0BAA0B;AACjD;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA;AACA;AACA,GAAG;AACH,kBAAkB,yBAAyB,KAAK;AAChD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB,wBAAwB;AACxB,gBAAgB;AAChB,oBAAoB;AACpB,wBAAwB;AACxB,gBAAgB;AAChB,oBAAoB;AACpB;AACA,uBAAuB,mBAAO,CAAC,qGAAiB;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,0DAA0D,oBAAoB;AAC9E,mBAAO,CAAC,+GAAsB;AAC9B,mBAAO,CAAC,mGAAgB;AACxB,UAAU,mBAAO,CAAC,qFAAS;;AAE3B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,gDAAgD,mBAAO,CAAC,mGAAgB;AACxE;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AA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;AACD;AACA,CAAC;;;;;;;;;;;;ACRD;AACA,IAAI,mBAAO,CAAC,mGAAgB,wBAAwB,mBAAO,CAAC,+FAAc;AAC1E;AACA,OAAO,mBAAO,CAAC,uFAAU;AACzB,CAAC;;;;;;;;;;;;;ACJY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,iBAAiB,mBAAO,CAAC,qHAAyB;;AAElD;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;ACvCY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,iBAAiB,mBAAO,CAAC,qHAAyB;AAClD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,oBAAoB;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,mBAAmB;AAC1C;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,CAAC;;;;;;;;;;;;;ACrHY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC,iBAAiB,mBAAO,CAAC,qHAAyB;;AAElD;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;;AC9BY;;AAEb,eAAe,mBAAO,CAAC,+FAAc;AACrC,eAAe,mBAAO,CAAC,+FAAc;AACrC,yBAAyB,mBAAO,CAAC,mHAAwB;AACzD,yBAAyB,mBAAO,CAAC,qHAAyB;AAC1D,eAAe,mBAAO,CAAC,+FAAc;AACrC,qBAAqB,mBAAO,CAAC,qHAAyB;AACtD,iBAAiB,mBAAO,CAAC,mGAAgB;AACzC,YAAY,mBAAO,CAAC,uFAAU;AAC9B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,qCAAqC,yBAAyB,EAAE;;AAEhE;AACA,mBAAO,CAAC,iGAAe;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mFAAmF;AACnF;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,yBAAyB,mBAAmB;AA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A;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,sBAAsB;AACtB,sBAAsB,uBAAuB,WAAW,IAAI;AAC5D,GAAG;AACH,CAAC;AACD;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,CAAC;AACD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;AACA,KAAK;AACL;AACA,sBAAsB,mCAAmC;AACzD,KAAK;AACL,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gEAAgE,gCAAgC;AAChG;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA,EAAE,mBAAO,CAAC,mGAAgB;AAC1B,EAAE,mBAAO,CAAC,iGAAe;AACzB,EAAE,mBAAO,CAAC,mGAAgB;;AAE1B,sBAAsB,mBAAO,CAAC,2FAAY;AAC1C;AACA;;AAEA;AACA;AACA;AACA;;AAEA,0DAA0D,kBAAkB;;AAE5E;AACA;AACA;AACA,oBAAoB,uBAAuB;;AAE3C,oDAAoD,6BAA6B;;AAEjF;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH,0BAA0B,eAAe,EAAE;AAC3C,0BAA0B,gBAAgB;AAC1C,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD,OAAO,QAAQ,iCAAiC;AACpG,CAAC;AACD;AACA;AACA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AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oDAAoD,wBAAwB;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACzDA,cAAc,mBAAO,CAAC,yFAAW;AACjC,YAAY,mBAAO,CAAC,qFAAS;AAC7B;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACLD;AACA,aAAa,mBAAO,CAAC,yFAAW;AAChC,cAAc,mBAAO,CAAC,yFAAW;AACjC,gBAAgB,mBAAO,CAAC,iGAAe;AACvC;AACA,sCAAsC;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;;;;ACnBD,mBAAO,CAAC,wGAAuB;AAC/B,mBAAO,CAAC,8GAA0B;AAClC,mBAAO,CAAC,oHAA6B;AACrC,iBAAiB,mBAAO,CAAC,8FAAkB;;;;;;;;;;;;ACH3C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc;AACd,KAAK;AACL,cAAc;AACd;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yDAAyD;AACzD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,WAAW;AACX;;AAEA;AACA;AACA,wCAAwC,WAAW;AACnD;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;AACA;AACA;;AAEA;;AAEA,SAAS;AACT;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,oCAAoC,cAAc;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,iCAAiC,kBAAkB;AACnD;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,iBAAiB;;AAEjB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,wBAAwB,iBAAiB;AACzC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,YAAY;AACZ;AACA;;AAEA;AACA,YAAY;AACZ;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,8CAA8C,QAAQ;AACtD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa;AACb;AACA;;AAEA,WAAW;AACX;AACA;AACA;;AAEA,WAAW;AACX;AACA;AACA;;AAEA,WAAW;AACX;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA,8CAA8C,QAAQ;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;AChtBA,iBAAiB,mBAAO,CAAC,sDAAa,E;;;;;;;;;;;;ACAzB;;AAEb,YAAY,mBAAO,CAAC,qDAAY;AAChC,aAAa,mBAAO,CAAC,iEAAkB;AACvC,eAAe,mBAAO,CAAC,2EAAuB;AAC9C,mBAAmB,mBAAO,CAAC,mFAA2B;AACtD,sBAAsB,mBAAO,CAAC,yFAA8B;AAC5D,kBAAkB,mBAAO,CAAC,yEAAqB;AAC/C,yFAAyF,mBAAO,CAAC,mEAAmB;;AAEpH;AACA;AACA;AACA;;AAEA;AACA,4CAA4C;AAC5C;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,QAAQ,KAA+B;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,oBAAoB,mBAAO,CAAC,yEAAsB;;AAElD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACnLa;;AAEb,YAAY,mBAAO,CAAC,kDAAS;AAC7B,WAAW,mBAAO,CAAC,gEAAgB;AACnC,YAAY,mBAAO,CAAC,4DAAc;AAClC,eAAe,mBAAO,CAAC,wDAAY;;AAEnC;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,MAAM;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,eAAe,mBAAO,CAAC,kEAAiB;AACxC,oBAAoB,mBAAO,CAAC,4EAAsB;AAClD,iBAAiB,mBAAO,CAAC,sEAAmB;;AAE5C;AACA;AACA;AACA;AACA,eAAe,mBAAO,CAAC,oEAAkB;;AAEzC;;AAEA;AACA;;;;;;;;;;;;;ACnDa;;AAEb;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;;;;;;;;;;;;;AClBa;;AAEb,aAAa,mBAAO,CAAC,2DAAU;;AAE/B;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACxDa;;AAEb;AACA;AACA;;;;;;;;;;;;;ACJa;;AAEb,eAAe,mBAAO,CAAC,2DAAe;AACtC,YAAY,mBAAO,CAAC,qDAAY;AAChC,yBAAyB,mBAAO,CAAC,iFAAsB;AACvD,sBAAsB,mBAAO,CAAC,2EAAmB;;AAEjD;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA,kCAAkC,cAAc;AAChD;;AAEA;AACA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,gDAAgD;AAChD;AACA;AACA,KAAK;AACL;AACA,CAAC;;AAED;AACA;AACA;AACA,gDAAgD;AAChD;AACA;AACA;AACA,KAAK;AACL;AACA,CAAC;;AAED;;;;;;;;;;;;;AC9Ea;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,SAAS;AACpB;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;;;;;;;;;;;;;ACnDa;;AAEb,mBAAmB,mBAAO,CAAC,qEAAgB;;AAE3C;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,MAAM;AACnB;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjBa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;AAChC,oBAAoB,mBAAO,CAAC,uEAAiB;AAC7C,eAAe,mBAAO,CAAC,uEAAoB;AAC3C,eAAe,mBAAO,CAAC,yDAAa;AACpC,oBAAoB,mBAAO,CAAC,qFAA4B;AACxD,kBAAkB,mBAAO,CAAC,iFAA0B;;AAEpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,+BAA+B;AAC/B,uCAAuC;AACvC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;;;;;;;;;;;;;ACrFa;;AAEb;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,MAAM;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACpBa;;AAEb,kBAAkB,mBAAO,CAAC,mEAAe;;AAEzC;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,SAAS;AACpB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzBa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA,WAAW,cAAc;AACzB,WAAW,MAAM;AACjB,WAAW,eAAe;AAC1B,aAAa,EAAE;AACf;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;;;;;;;;;;;;ACnBA,+CAAa;;AAEb,YAAY,mBAAO,CAAC,kDAAS;AAC7B,0BAA0B,mBAAO,CAAC,8FAA+B;;AAEjE;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,cAAc,mBAAO,CAAC,gEAAgB;AACtC,GAAG;AACH;AACA,cAAc,mBAAO,CAAC,iEAAiB;AACvC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wEAAwE;AACxE;AACA;AACA;AACA,uDAAuD;AACvD;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA,OAAO,YAAY;AACnB;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;AACA,CAAC;;AAED;;;;;;;;;;;;;;AC/Fa;;AAEb;AACA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACVa;;AAEb;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;ACnCa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP,KAAK;;AAEL;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjEa;;AAEb;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACba;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,wCAAwC;AACxC,OAAO;;AAEP;AACA,0DAA0D,wBAAwB;AAClF;AACA,OAAO;;AAEP;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA,gCAAgC;AAChC,6BAA6B,aAAa,EAAE;AAC5C;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACpDa;;AAEb;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACba;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAc,OAAO;AACrB,gBAAgB;AAChB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,cAAc,OAAO;AACrB,gBAAgB,QAAQ;AACxB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACnEa;;AAEb,YAAY,mBAAO,CAAC,mDAAU;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;;;;;ACXa;;AAEb,YAAY,mBAAO,CAAC,qDAAY;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,eAAe;;AAEhC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,GAAG;;AAEH;AACA;;;;;;;;;;;;;ACpDa;;AAEb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA,WAAW,SAAS;AACpB,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC1Ba;;AAEb,WAAW,mBAAO,CAAC,gEAAgB;AACnC,eAAe,mBAAO,CAAC,oDAAW;;AAElC;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,QAAQ;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,mCAAmC,OAAO;AAC1C;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,SAAS,GAAG,SAAS;AAC5C,2BAA2B;AAC3B;AACA;AACA,WAAW,OAAO;AAClB,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,uCAAuC,OAAO;AAC9C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC9SA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,OAAO,IAAyC;AAChD;AACA,IAAI,oCAAQ,OAAO;AAAA;AAAA;AAAA;AAAA,oGAAE;AACrB,GAAG,MAAM,EAMN;;AAEH,CAAC;;AAED;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,gBAAgB,sBAAsB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA,CAAC;;;;;;;;;;;;AC/GD;AACA;AACA;AACA;AACA;;AAEA,+BAA+B;AAC/B;;AAEA;;AAEA,OAAO,IAAyC;AAChD;AACA,IAAI,iCAAQ;AACZ,MAAM,2FAAuB;AAC7B,KAAK,mCAAE;AACP;AACA,KAAK;AAAA,oGAAC;AACN,GAAG,MAAM,EAYN;;AAEH,CAAC;;AAED;;AAEA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA,WAAW,iCAAiC;AAC5C,WAAW,mBAAmB;AAC9B,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,WAAW,KAAK;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,sBAAsB;AACtC;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAc,qBAAqB;AACnC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA,CAAC;;;;;;;;;;;;ACxXD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;;;;;;;;;ACpBA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qCAAqC;;AAErC;AACA;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;AACA,4BAA4B,UAAU;;;;;;;;;;;;;ACvLzB;;AAEb;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;;;;;ACjBa;;AAEb,gBAAgB,mBAAO,CAAC,uDAAa;AACrC,YAAY,mBAAO,CAAC,+CAAS;AAC7B,cAAc,mBAAO,CAAC,mDAAW;;AAEjC;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACVa;;AAEb,YAAY,mBAAO,CAAC,+CAAS;;AAE7B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,gCAAgC;AAChC;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA,wCAAwC,gCAAgC;;AAExE;AACA,uCAAuC;;AAEvC;AACA;AACA;AACA;AACA;AACA,uBAAuB;AACvB;;AAEA;AACA;AACA,mBAAmB,kBAAkB;AACrC;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;;AAEA,eAAe,kBAAkB;AACjC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA,kCAAkC,QAAQ;AAC1C;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA,uBAAuB;AACvB,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,wCAAwC;;AAExC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjOa;;AAEb,YAAY,mBAAO,CAAC,+CAAS;AAC7B,cAAc,mBAAO,CAAC,mDAAW;;AAEjC;AACA,yCAAyC;AACzC;AACA,KAAK;AACL,4CAA4C;AAC5C;AACA,KAAK;AACL,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iDAAiD;AACjD;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,mBAAmB,oBAAoB;AACvC;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,wCAAwC;;AAExC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,mBAAmB,oBAAoB;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,2CAA2C;AAC3C;AACA,SAAS;AACT;AACA;AACA;AACA;;AAEA;AACA;;;;;;;;;;;;;ACjPa;;AAEb;;AAEA;AACA;AACA,mBAAmB,SAAS;AAC5B;AACA;;AAEA;AACA,CAAC;;AAED;AACA;AACA;AACA;;AAEA;AACA;;AAEA,2BAA2B,gBAAgB;AAC3C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB,mBAAmB;AACtC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,aAAa;AACb;AACA;AACA,SAAS;AACT;AACA;;AAEA;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA,iDAAiD,EAAE;AACnD;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,kDAAkD,EAAE;AACpD;AACA,SAAS;AACT;;AAEA;AACA,mBAAmB,mBAAmB;AACtC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,kBAAkB,OAAO,WAAW,aAAa;AACjD;;AAEA,mBAAmB,kBAAkB;AACrC;AACA;;AAEA;AACA,uBAAuB,iBAAiB;AACxC;AACA;AACA;AACA,4BAA4B,sBAAsB;AAClD;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnOA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,cAAc;AAC7B,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,KAAK;AACpB,iBAAiB,KAAK;AACtB;AACA;AACA;;AAEA;AACA;;AAEA;AACA,OAAO;;AAEP;;AAEA;AACA;;AAEA;AACA;AACA;AACA,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,eAAe,YAAY;AAC3B,eAAe,OAAO;AACtB,eAAe,OAAO;AACtB,iBAAiB;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA,MAAM,IAA4D;AAClE;AACA,sBAAsB;AACtB,GAAG,MAAM,EAGN;;AAEH,CAAC","file":"js/ajax-load-more.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./core/src/js/ajax-load-more.js\");\n","/*\n * Ajax Load More\n * https://connekthq.com/plugins/ajax-load-more/\n * Author: Darren Cooney\n * Twitter: @KaptonKaos, @ajaxloadmore, @connekthq \n * Copyright Connekt Media - https://connekthq.com\n */\n\n\n// Polyfills\nrequire(\"@babel/polyfill/noConflict\");\nrequire('./helpers/polyfills.js');\n\n\n// External Modules\nlet qs = require('qs');\nlet imagesLoaded = require('imagesloaded');\nimport axios from 'axios';\nimport smoothscroll from 'smoothscroll-polyfill'; // Smooth scrolling polyfill\nsmoothscroll.polyfill();\n\n\n// ALM Modules\nimport './helpers/helpers';\nimport commentReplyFix from './helpers/commentReplyFix';\nimport getParameterByName from './helpers/getParameterByName';\nimport almAppendChildren from './helpers/almAppendChildren';\nimport almTableWrap from './helpers/almTableWrap';\nimport almGetCacheUrl from './helpers/almGetCacheUrl';\nimport almDomParser from './helpers/almDomParser';\nimport stripEmptyNodes from './helpers/stripEmptyNodes'; \nimport * as queryParams from './helpers/queryParams';\nimport * as resultsText from './modules/resultsText';\nimport setLocalizedVars from './modules/setLocalizedVars';\nimport insertScript from './modules/insertScript';\nimport setFocus from './modules/setFocus';\nimport almMasonry from './modules/masonry';\nimport almFadeIn from './modules/fadeIn';\nimport almFadeOut from './modules/fadeOut';\nimport almFilter from './modules/filtering';\nimport almNoResults from './modules/noResults';\nimport almDebug from './modules/almDebug';\nimport srcsetPolyfill from './helpers/srcsetPolyfill';\nimport { showPlaceholder, hidePlaceholder } from './modules/placeholder';\n\n\n// Global filtering var\nlet alm_is_filtering = false;\n\n\n// Start ALM\n(function() {\n \"use strict\";\n\n /**\n * ajaxloadmore\n * Init Ajax Load More\n *\n * @param {*} el\n * @param {*} e\n */\n let ajaxloadmore = function(el, e) {\n\n\n // Move user to top of page to prevent loading of unnessasry posts\n if (alm_localize && alm_localize.scrolltop === 'true') {\n window.scrollTo(0, 0);\n }\n\n\n //Set ALM Variables\n let alm = this;\n alm.AjaxLoadMore = {};\n alm.addons = {};\n alm.extensions = {};\n alm.window = window;\n alm.page = 0;\n alm.posts = 0;\n alm.totalposts = 0;\n alm.proceed = false;\n alm.disable_ajax = false;\n alm.init = true;\n alm.loading = true;\n alm.finished = false;\n alm.timer = null;\n alm.ua = (window.navigator.userAgent) ? window.navigator.userAgent : ''; // User agent\n alm.main = el;\n alm.master_id = (el.dataset.id) ? `ajax-load-more-${el.dataset.id}` : el.id; // The defined or generated ID of the ALM instance \n el.classList.add('alm-' + e); // Add unique classname\n el.setAttribute('data-alm-id', e); // Add unique data id\n\n\n // Get localized <script/> variables\n alm.master_id = alm.master_id.replace(/-/g, '_'); // Convert dashes to underscores for the var name\n alm.localize = window[alm.master_id + '_vars']; // Get localize vars\n\n\n // Main ALM Containers\n alm.main = el; // Top level DOM element\n alm.listing = el.querySelector('.alm-listing') || el.querySelector('.alm-comments');\n alm.content = alm.listing;\n alm.el = alm.content;\n alm.ajax = el.querySelector('.alm-ajax');\n alm.container_type = alm.listing.dataset.containerType;\n\n\n // Instance Params\n alm.canonical_url = el.dataset.canonicalUrl;\n alm.nested = (el.dataset.nested) ? el.dataset.nested : null;\n alm.is_search = el.dataset.search;\n alm.slug = el.dataset.slug;\n alm.post_id = el.dataset.postId;\n alm.id = (el.dataset.id) ? el.dataset.id : '';\n \n // No results template\n let alm_no_results = el.querySelector('.alm-no-results');\n alm.no_results = (alm_no_results) ? alm_no_results.innerHTML : '';\n\n // Shortcode Params \n alm.repeater = alm.listing.dataset.repeater; // Repeaters\n alm.theme_repeater = alm.listing.dataset.themeRepeater;\n\n alm.post_type = (alm.listing.dataset.postType) ? alm.listing.dataset.postType : 'post';\n alm.sticky_posts = (alm.listing.dataset.stickyPosts) ? alm.listing.dataset.stickyPosts : null;\n\n alm.btnWrap = el.querySelectorAll('.alm-btn-wrap'); // Get all `.alm-button-wrap` divs\n alm.btnWrap = Array.prototype.slice.call(alm.btnWrap); // Convert NodeList to array\n alm.btnWrap[alm.btnWrap.length - 1].style.visibility = 'visible'; // Get last element (used for nesting)\n alm.trigger = alm.btnWrap[alm.btnWrap.length - 1];\n\n alm.button_label = alm.listing.dataset.buttonLabel;\n alm.button_loading_label = alm.listing.dataset.buttonLoadingLabel;\n alm.placeholder = alm.main.querySelector('.alm-placeholder');\n\n alm.scroll_distance = alm.listing.dataset.scrollDistance;\n alm.scroll_distance = (alm.scroll_distance) ? parseInt(alm.scroll_distance) : 100;\n alm.scroll_container = alm.listing.dataset.scrollContainer;\n alm.max_pages = (alm.listing.dataset.maxPages) ? parseInt(alm.listing.dataset.maxPages) : 0;\n alm.pause_override = alm.listing.dataset.pauseOverride; // true | false\n alm.pause = alm.listing.dataset.pause; // true | false\n alm.transition = alm.listing.dataset.transition; // Transition\n alm.transition_container = alm.listing.dataset.transitionContainer; // Transition Container\n alm.tcc = alm.listing.dataset.transitionContainerClasses; // Transition Container Classes\n alm.speed = (alm_localize.speed) ? parseInt(alm_localize.speed) : 200;\n alm.images_loaded = (alm.listing.dataset.imagesLoaded) ? alm.listing.dataset.imagesLoaded : false;\n alm.destroy_after = (alm.listing.dataset.destroyAfter) ? alm.listing.dataset.destroyAfter : '';\n alm.orginal_posts_per_page = parseInt(alm.listing.dataset.postsPerPage); // Used for paging add-on\n alm.posts_per_page = alm.listing.dataset.postsPerPage;\n alm.offset = (alm.listing.dataset.offset) ? parseInt(alm.listing.dataset.offset) : 0;\n\n\n // Addon Shortcode Params\n alm.addons.cache = alm.listing.dataset.cache; // Cache add-on\n alm.addons.cache = (alm.addons.cache === undefined) ? false : alm.addons.cache;\n alm.addons.cache_id = alm.listing.dataset.cacheId;\n alm.addons.cache_path = alm.listing.dataset.cachePath;\n alm.addons.cache_logged_in = alm.listing.dataset.cacheLoggedIn;\n alm.addons.cache_logged_in = (alm.addons.cache_logged_in === undefined) ? false : alm.addons.cache_logged_in;\n\n alm.addons.cta = alm.listing.dataset.cta; // CTA add-on\n alm.addons.cta_position = alm.listing.dataset.ctaPosition;\n alm.addons.cta_repeater = alm.listing.dataset.ctaRepeater;\n alm.addons.cta_theme_repeater = alm.listing.dataset.ctaThemeRepeater;\n\n alm.addons.nextpage = alm.listing.dataset.nextpage; // Nextpage add-on\n alm.addons.nextpage_urls = alm.listing.dataset.nextpageUrls;\n alm.addons.nextpage_scroll = alm.listing.dataset.nextpageScroll;\n alm.addons.nextpage_pageviews = alm.listing.dataset.nextpagePageviews;\n alm.addons.nextpage_post_id = alm.listing.dataset.nextpagePostId;\n alm.addons.nextpage_startpage = alm.listing.dataset.nextpageStartpage;\n\n alm.addons.single_post = alm.listing.dataset.singlePost; // Previous Post add-on\n alm.addons.single_post_id = alm.listing.dataset.singlePostId;\n alm.addons.single_post_order = alm.listing.dataset.singlePostOrder;\n alm.addons.single_post_init_id = alm.listing.dataset.singlePostId;\n alm.addons.single_post_taxonomy = alm.listing.dataset.singlePostTaxonomy;\n alm.addons.single_post_excluded_terms = alm.listing.dataset.singlePostExcludedTerms;\n alm.addons.single_post_progress_bar = alm.listing.dataset.singlePostProgressBar;\n\n alm.addons.comments = alm.listing.dataset.comments; // Comments add-on \n alm.addons.comments_post_id = alm.listing.dataset.comments_post_id; // current post id\n alm.addons.comments_per_page = alm.listing.dataset.comments_per_page;\n alm.addons.comments_per_page = (alm.addons.comments_per_page === undefined) ? '5' : alm.addons.comments_per_page;\n alm.addons.comments_type = alm.listing.dataset.comments_type;\n alm.addons.comments_style = alm.listing.dataset.comments_style;\n alm.addons.comments_template = alm.listing.dataset.comments_template;\n alm.addons.comments_callback = alm.listing.dataset.comments_callback;\n\n alm.addons.tabs = alm.listing.dataset.tabs;\n \n alm.addons.filters = alm.listing.dataset.filters;\n\n alm.addons.seo = alm.listing.dataset.seo; // SEO add-on\n\n alm.addons.preloaded = alm.listing.dataset.preloaded; // Preloaded add-on\n alm.addons.preloaded_amount = (alm.listing.dataset.preloadedAmount) ? alm.listing.dataset.preloadedAmount : 0;\n alm.is_preloaded = (alm.listing.dataset.isPreloaded === 'true') ? true : false;\n\n alm.addons.paging = alm.listing.dataset.paging; // Paging add-on \n\n alm.addons.users = (alm.listing.dataset.users === 'true') ? true : false; // Users add-on\n if (alm.addons.users) { // Override paging params for users\n alm.orginal_posts_per_page = alm.listing.dataset.usersPerPage;\n alm.posts_per_page = alm.listing.dataset.usersPerPage;\n }\n\n // Extension Shortcode Params\n alm.extensions.restapi = alm.listing.dataset.restapi; // REST API\n alm.extensions.restapi_base_url = alm.listing.dataset.restapiBaseUrl;\n alm.extensions.restapi_namespace = alm.listing.dataset.restapiNamespace;\n alm.extensions.restapi_endpoint = alm.listing.dataset.restapiEndpoint;\n alm.extensions.restapi_template_id = alm.listing.dataset.restapiTemplateId; \n alm.extensions.restapi_debug = alm.listing.dataset.restapiDebug;\n\n alm.extensions.acf = alm.listing.dataset.acf; // ACF\n alm.extensions.acf_field_type = alm.listing.dataset.acfFieldType;\n alm.extensions.acf_field_name = alm.listing.dataset.acfFieldName;\n alm.extensions.acf_parent_field_name = alm.listing.dataset.acfParentFieldName;\n alm.extensions.acf_post_id = alm.listing.dataset.acfPostId;\n alm.extensions.acf = (alm.extensions.acf === 'true') ? true : false;\n // if field type, name or post ID is empty\n if (alm.extensions.acf_field_type === undefined || alm.extensions.acf_field_name === undefined || alm.extensions.acf_post_id === undefined) {\n alm.extensions.acf = false;\n }\n \n\n /* Paging */\n if (alm.addons.paging === 'true') {\n alm.addons.paging = true;\n alm.addons.paging_init = true;\n alm.addons.paging_controls = (alm.listing.dataset.pagingControls === 'true') ? true : false;\n alm.addons.paging_show_at_most = alm.listing.dataset.pagingShowAtMost;\n alm.addons.paging_classes = alm.listing.dataset.pagingClasses;\n alm.addons.paging_show_at_most = (alm.addons.paging_show_at_most === undefined) ? 7 : alm.addons.paging_show_at_most; \n \n alm.addons.paging_first_label = alm.listing.dataset.pagingFirstLabel;\n alm.addons.paging_previous_label = alm.listing.dataset.pagingPreviousLabel;\n alm.addons.paging_next_label = alm.listing.dataset.pagingNextLabel;\n alm.addons.paging_last_label = alm.listing.dataset.pagingLastLabel;\n \n // If preloaded, pause ALM\t\n alm.pause = (alm.addons.preloaded === 'true') ? true : alm.pause;\n } else {\n alm.addons.paging = false;\n }\n /* End Paging */\n\n\n /* Filters */\n if (alm.addons.filters === 'true') {\n alm.addons.filters = true;\n\n alm.addons.filters_url = (alm.listing.dataset.filtersUrl === 'true') ? true : false;\n alm.addons.filters_paging = (alm.listing.dataset.filtersPaging === 'true') ? true : false;\n alm.addons.filters_scroll = (alm.listing.dataset.filtersScroll === 'true') ? true : false;\n alm.addons.filters_scrolltop = (alm.listing.dataset.filtersScrolltop) ? alm.listing.dataset.filtersScrolltop : '30';\n alm.addons.filters_analtyics = alm.listing.dataset.filtersAnalytics;\n alm.addons.filters_debug = alm.listing.dataset.filtersDebug;\n alm.addons.filters_startpage = 0;\n\n // Get Paged Querystring Val\n let page = getParameterByName('pg');\n alm.addons.filters_startpage = (page !== null) ? parseInt(page) : 0;\n \n // If not Paging add-on\n if(!alm.addons.paging && alm.addons.filters_startpage > 0){\n \talm.posts_per_page = alm.posts_per_page * alm.addons.filters_startpage;\n\t\t\t\talm.isPaged = (alm.addons.filters_startpage > 0) ? true : false;\n } \n \n } else {\n alm.addons.filters = false;\n }\n /* End Filters */\n\n\n /* TABS */\n if (alm.addons.tabs === 'true') { \n alm.addons.tabs = true; \n alm.addons.tab_template = (alm.listing.dataset.tabTemplate) ? alm.listing.dataset.tabTemplate : '';\n\t\t\t\n\t\t\t// Set current template\t\t\n\t\t\tsetTimeout(function(){\n\t\t\t\t//window.almTabsOnLoad(alm);\n\t\t\t}, 500);\n if (typeof almTabsOnLoad === 'function' && window.location.hash) {\n\t\t\t //alm.addons.tab_template = window.almTabsOnLoad(alm);\n\t\t\t} \n \n alm.addons.tabs_resturl = (alm.listing.dataset.tabsRestUrl) ? alm.listing.dataset.tabsRestUrl : '';\n } else {\n alm.addons.tabs = false;\n }\n /* End TABS */\n\n\n /* REST API */\n if (alm.extensions.restapi === 'true') {\n alm.extensions.restapi = true;\n alm.extensions.restapi_debug = (alm.extensions.restapi_debug === undefined) ? false : alm.extensions.restapi_debug;\n alm.extensions.restapi = (alm.extensions.restapi_template_id === '') ? false : alm.extensions.restapi;\n } else {\n alm.extensions.restapi = false;\n }\n /* End REST API */\n\n\n /* Preloaded */\n if (alm.addons.preloaded === 'true') {\n // Preloaded Amount\n alm.addons.preloaded_amount = (alm.addons.preloaded_amount === undefined) ? alm.posts_per_page : alm.addons.preloaded_amount;\n // Disable ALM if total_posts is less than or equal to preloaded_amount\n if (alm.localize && alm.localize.total_posts) {\n if (parseInt(alm.localize.total_posts) <= parseInt(alm.addons.preloaded_amount)) {\n alm.addons.preloaded_total_posts = alm.localize.total_posts;\n alm.disable_ajax = true;\n }\n }\n } else {\n alm.addons.preloaded = 'false';\n }\n /* End Preloaded */\n\n\n /* SEO */\n alm.addons.seo = (alm.addons.seo === undefined) ? false : alm.addons.seo;\n alm.addons.seo = (alm.addons.seo === 'true') ? true : alm.addons.seo;\n alm.is_search = (alm.is_search === undefined) ? false : alm.is_search;\n alm.search_value = (alm.is_search === 'true') ? alm.slug : ''; // Convert to value of slug for appending to seo url\n \n alm.addons.seo_permalink = alm.listing.dataset.seoPermalink;\n alm.addons.seo_pageview = alm.listing.dataset.seoPageview;\n alm.addons.seo_trailing_slash = (alm.listing.dataset.seoTrailingSlash === 'false') ? '' : '/';\n alm.addons.seo_leading_slash = (alm.listing.dataset.seoLeadingSlash === 'true') ? '/' : '';\n alm.start_page = alm.listing.dataset.seoStartPage;\n\n if (alm.start_page) {\n alm.addons.seo_scroll = alm.listing.dataset.seoScroll;\n alm.addons.seo_scrolltop = alm.listing.dataset.seoScrolltop;\n alm.addons.seo_controls = alm.listing.dataset.seoControls;\n alm.isPaged = false;\n if (alm.start_page > 1) {\n alm.isPaged = true; // Is this a paged page > 1 ?\n alm.posts_per_page = alm.start_page * alm.posts_per_page;\n }\n if (alm.addons.paging) { // If paging, reset posts_per_page\n alm.posts_per_page = alm.orginal_posts_per_page;\n }\n } else {\n alm.start_page = 1;\n }\n /* End SEO */\n\n\n /* Nextpage */\n if (alm.addons.nextpage === 'true') {\n alm.addons.nextpage = true;\n alm.posts_per_page = 1;\n } else {\n alm.addons.nextpage = false;\n }\n if (alm.addons.nextpage_urls === undefined) {\n alm.addons.nextpage_urls = 'true';\n }\n if (alm.addons.nextpage_scroll === undefined) {\n alm.addons.nextpage_scroll = '250:30';\n }\n if (alm.addons.nextpage_pageviews === undefined) {\n alm.addons.nextpage_pageviews = 'true';\n }\n if (alm.addons.nextpage_post_id === undefined) {\n alm.addons.nextpage = false;\n alm.addons.nextpage_post_id = null;\n }\n if (alm.addons.nextpage_startpage === undefined) {\n alm.addons.nextpage_startpage = 1;\n }\n if (alm.addons.nextpage_startpage > 1) {\n alm.isPaged = true;\n }\n /* End Nextpage */\n\n\n /* Single Post */\n if (alm.addons.single_post === 'true') {\n alm.addons.single_post = true;\n alm.addons.single_post_permalink = '';\n alm.addons.single_post_title = '';\n alm.addons.single_post_slug = '';\n } else {\n alm.addons.single_post = false;\n }\n if (alm.addons.single_post_id === undefined) {\n alm.addons.single_post_id = '';\n alm.addons.single_post_init_id = '';\n }\n alm.addons.single_post_order = (alm.addons.single_post_order === undefined) ? 'previous' : alm.addons.single_post_order;\n alm.addons.single_post_taxonomy = (alm.addons.single_post_taxonomy === undefined) ? '' : alm.addons.single_post_taxonomy;\n alm.addons.single_post_excluded_terms = (alm.addons.single_post_excluded_terms === undefined) ? '' : alm.addons.single_post_excluded_terms;\n alm.addons.single_post_progress_bar = (alm.addons.single_post_progress_bar === undefined) ? '' : alm.addons.single_post_progress_bar;\n alm.addons.single_post_title_template = alm.listing.dataset.singlePostTitleTemplate;\n alm.addons.single_post_siteTitle = alm.listing.dataset.singlePostSiteTitle;\n alm.addons.single_post_siteTagline = alm.listing.dataset.singlePostSiteTagline;\n alm.addons.single_post_pageview = alm.listing.dataset.singlePostPageview;\n alm.addons.single_post_scroll = alm.listing.dataset.singlePostScroll;\n alm.addons.single_post_scroll_speed = alm.listing.dataset.singlePostScrollSpeed;\n alm.addons.single_post_scroll_top = alm.listing.dataset.singlePostScrolltop;\n alm.addons.single_post_controls = alm.listing.dataset.singlePostControls;\n /* End Single Post */\n\n\n /* Pause */\n if (alm.pause === undefined || (alm.addons.seo && alm.start_page > 1)) { // SEO only\n alm.pause = false;\n }\n if (alm.addons.preloaded === 'true' && alm.addons.seo && alm.start_page > 0) { // SEO + Preloaded\n alm.pause = false;\n }\n if (alm.addons.filters && alm.addons.filters_startpage > 0) { // Filters\n alm.pause = false;\n }\n if (alm.addons.preloaded === 'true' && alm.addons.paging) {\n alm.pause = true;\n }\n\n /* Repeater and Theme Repeater */\n alm.repeater = (alm.repeater === undefined) ? 'default' : alm.repeater;\n alm.theme_repeater = (alm.theme_repeater === undefined) ? false : alm.theme_repeater;\n\n /* Max Pages (while scrolling) */\n alm.max_pages = (alm.max_pages === undefined || alm.max_pages === 0) ? 10000 : alm.max_pages;\n\n /* Scroll Distance */\n alm.scroll_distance = (alm.scroll_distance === undefined) ? 150 : alm.scroll_distance;\n\n /* Scroll Container */\n alm.scroll_container = (alm.scroll_container === undefined) ? '' : alm.scroll_container;\n\n /* Transition */\n alm.transition = (alm.transition === undefined) ? 'fade' : alm.transition;\n\n /* Transition Container Class */\n alm.tcc = (alm.tcc === undefined) ? '' : alm.tcc;\n\n /* Masonry */\n alm.is_masonry_preloaded = false;\n if (alm.transition === 'masonry') {\n alm.masonry_init = true;\n alm.masonry_selector = alm.listing.dataset.masonrySelector;\n alm.masonry_columnwidth = alm.listing.dataset.masonryColumnwidth;\n alm.masonry_animation = alm.listing.dataset.masonryAnimation;\n alm.masonry_animation = (alm.masonry_animation === undefined) ? 'standard' : alm.masonry_animation;\n alm.masonry_horizontalorder = alm.listing.dataset.masonryHorizontalorder;\n alm.masonry_horizontalorder = (alm.masonry_horizontalorder === undefined) ? 'true' : alm.masonry_horizontalorder;\n alm.transition_container = false;\n alm.images_loaded = false;\n alm.is_masonry_preloaded = (alm.addons.preloaded === 'true') ? true : alm.is_masonry_preloaded;\n }\n\n /* Scroll */\n if (alm.listing.dataset.scroll === undefined) {\n alm.scroll = true;\n } else if (alm.listing.dataset.scroll === 'false') {\n alm.scroll = false;\n } else {\n alm.scroll = true;\n }\n\n /* Transition Container */\n alm.transition_container = (alm.transition_container === undefined || alm.transition_container === 'true') ? true : false;\n\n /* Button Labels */\n alm.button_label = (alm.button_label === undefined) ? 'Older Posts' : alm.button_label;\n alm.button_loading_label = (alm.button_loading_label === undefined) ? false : alm.button_loading_label;\n\n /* Paging */\n if (alm.addons.paging) {\n alm.main.classList.add('loading'); // add loading class to main container\n } else {\n let almChildren = el.childNodes; // Get child nodes of instance [nodeList]\n if (almChildren) {\n let almChildArray = Array.prototype.slice.call(almChildren); // Convert nodeList to array \n\n // Filter array to find the `.alm-btn-wrap` div\n let btnWrap = almChildArray.filter(function(element) {\n if (!element.classList) { // If not element (#text node)\n return false;\n }\n return element.classList.contains('alm-btn-wrap');\n });\n alm.button = (btnWrap) ? (btnWrap[0]).querySelector('.alm-load-more-btn') : container.querySelector('.alm-btn-wrap .alm-load-more-btn');\n } else {\n alm.button = container.querySelector('.alm-btn-wrap .alm-load-more-btn');\n }\n \n // Reset button state\n alm.button.disabled = false;\n\n }\n\n\n // Results Text\n // Render \"Showing x of y results\" text.\n alm.resultsText = document.querySelector('.alm-results-text');\n if (alm.resultsText) {\n\t alm.resultsText.setAttribute('aria-live', 'polite');\n\t alm.resultsText.setAttribute('aria-atomic', 'true');\n } else {\n alm.resultsText = false;\n }\n\n\n\n /** \n * LoadPosts()\n * The function to get posts via Ajax\n * @since 2.0.0\n */\n\n alm.AjaxLoadMore.loadPosts = function() {\n\t \n\t\t\tif (typeof almOnChange === 'function') {\n\t\t\t window.almOnChange(alm);\n\t\t\t}\n\t\t\t\n\t\t\tshowPlaceholder(alm);\n\t \n if (!alm.disable_ajax) { // Check for ajax blocker\n if (!alm.addons.paging) {\n alm.button.classList.add('loading');\n if (alm.button_loading_label !== false) {\n alm.button.innerHTML = alm.button_loading_label;\n }\n }\n alm.main.classList.add('alm-loading');\n alm.loading = true;\n \n if (alm.addons.cache === 'true' && !alm.addons.cache_logged_in) {\n // Cache \n let cache_page = almGetCacheUrl(alm); \n if(cache_page){ \n \n // Load `.html` page\n axios.get(cache_page)\n .then(response => {\n // Exists\n alm.AjaxLoadMore.success(response.data, true);\n } \n )\n .catch(function (error) { \n // Error || Page does not yet exist\n \t\t\t\t\talm.AjaxLoadMore.ajax('standard');\n \t\t\t\t\t//console.warn(error.message); \t\t\t\t\t\n \t\t\t\t});\n \t\t\t\t\n \t\t\t\t} else {\n \t\t\t\t// Standard ALM query\n \t\t\t\talm.AjaxLoadMore.ajax('standard');\n \t\t\t\t} \n \t\t\t\t \t\n } else { \n // Standard ALM query\n alm.AjaxLoadMore.ajax('standard');\n \n }\n }\n };\n\n\n /* ajax()\n * Ajax Load Moe Ajax function\n *\n * @param queryType The type of Ajax request (standard/totalposts)\n * @since 2.6.0\n */\n\n alm.AjaxLoadMore.ajax = function(queryType) {\n\n // Default ALM action\n let action = 'alm_get_posts';\n\n // ACF Params\n alm.acf_array = '';\n if (alm.extensions.acf) {\n // Custom query for the Repeater / Gallery / Flexible Content field types\n if (alm.extensions.acf_field_type !== 'relationship') {\n action = 'alm_acf';\n }\n alm.acf_array = {\n 'acf': 'true',\n 'post_id': alm.extensions.acf_post_id,\n 'field_type': alm.extensions.acf_field_type,\n 'field_name': alm.extensions.acf_field_name,\n 'parent_field_name': alm.extensions.acf_parent_field_name\n };\n }\n\n // Nextpage Params\n alm.nextpage_array = '';\n if (alm.addons.nextpage) {\n action = 'alm_nextpage';\n alm.nextpage_array = {\n 'nextpage': 'true',\n 'urls': alm.addons.nextpage_urls,\n 'scroll': alm.addons.nextpage_scroll,\n 'pageviews': alm.addons.nextpage_pageviews,\n 'post_id': alm.addons.nextpage_post_id,\n 'startpage': alm.addons.nextpage_startpage\n };\n }\n\n // Previous Post Params\n alm.single_post_array = '';\n if (alm.addons.single_post) {\n alm.single_post_array = {\n 'single_post': 'true',\n 'id': alm.addons.single_post_id,\n 'slug': alm.addons.single_post_slug,\n };\n }\n\n // Comment Params\n alm.comments_array = '';\n if (alm.addons.comments === 'true') {\n action = 'alm_comments';\n alm.posts_per_page = alm.addons.comments_per_page;\n alm.comments_array = {\n 'comments': 'true',\n 'post_id': alm.addons.comments_post_id,\n 'per_page': alm.addons.comments_per_page,\n 'type': alm.addons.comments_type,\n 'style': alm.addons.comments_style,\n 'template': alm.addons.comments_template,\n 'callback': alm.addons.comments_callback,\n };\n }\n\n // Users Params\n alm.users_array = '';\n if (alm.addons.users) {\n action = 'alm_users';\n alm.users_array = {\n 'users': 'true',\n 'role': alm.listing.dataset.usersRole,\n 'include': alm.listing.dataset.usersInclude,\n 'exclude': alm.listing.dataset.usersExclude,\n 'per_page': alm.posts_per_page,\n 'order': alm.listing.dataset.usersOrder,\n 'orderby': alm.listing.dataset.usersOrderby,\n };\n }\n\n // CTA Params\n alm.cta_array = '';\n if (alm.addons.cta === 'true') {\n alm.cta_array = {\n 'cta': 'true',\n 'cta_position': alm.addons.cta_position,\n 'cta_repeater': alm.addons.cta_repeater,\n 'cta_theme_repeater': alm.addons.cta_theme_repeater,\n };\n }\n \n\n // REST API\n if (alm.extensions.restapi) {\n alm.AjaxLoadMore.restapi(alm, action, queryType);\n }\n else if(alm.addons.tabs){\n\t alm.AjaxLoadMore.tabs(alm);\n }\n\n // Standard ALM\n else {\t \n\t alm.AjaxLoadMore.adminajax(alm, action, queryType); \n }\n \n };\n \n \n \n /** \n\t * adminajax\n * Send request to the admin-ajax.php\n *\n * @param {*} alm | ALm object\n * @param {*} action | Ajax action\n * @param {*} queryType\n * @since 5.0.0\n */\n alm.AjaxLoadMore.adminajax = function(alm, action, queryType){\n\t \n\t if (alm.page != 1 && !alm.addons.paging) {\n alm.button.classList.add('loading');\n } \n \n // Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config; \n\t\t\t});\t\t\t \n \n // Get admin-ajax.php URL \n let ajaxURL = alm_localize.ajaxurl; \n\n\t\t\t// Get data params\n let params = queryParams.almGetAjaxParams(alm, action, queryType); // [./helpers/queryParams.js\n \n // Send HTTP request via Axios\n axios.get(ajaxURL, {params})\n .then(function(response){\n // Success \n let data = response.data; // Get data from response\n \n // Standard Query\n if (queryType === 'standard') {\n alm.AjaxLoadMore.success(data, false);\n \n } else if (queryType === 'totalpages' && alm.addons.paging && alm.addons.nextpage) {\n // Next Page and Paging\n if (typeof almBuildPagination === 'function') {\n window.almBuildPagination(data.totalpages, alm);\n }\n \n } else if (queryType === 'totalposts' && alm.addons.paging) {\n // Paging\n if (typeof almBuildPagination === 'function') {\n window.almBuildPagination(data.totalposts, alm);\n }\n }\n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'adminajax'); \n \t\t\t\t\t\n\t\t\t}); \n };\n \n \n \n /** \n\t * tabs\n * Send request to the WP REST API\n *\n * @param {*} alm | ALm object\n * @since 5.2.0\n */\n alm.AjaxLoadMore.tabs = function(alm){\n\t \n let alm_rest_url = `${alm.addons.tabs_resturl}ajaxloadmore/tab`; \n \n let params = {\n\t\t\t\tpost_id : alm.post_id,\n\t\t\t\ttemplate: alm.addons.tab_template\n }\n\n\t\t\t// Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config;\n\t\t\t}); \n \n // Send Ajax request\n axios.get(alm_rest_url, {params})\n .then(function(response){\n\t \n // Success \n let results = response.data; // Get data from response\n\t\t\t\tlet html = results.html;\n \n // Create object to pass to success()\n let obj = {\n 'html': html,\n 'meta': {\n 'postcount': 1,\n 'totalposts': 1\n },\n };\n alm.AjaxLoadMore.success(obj, false); // Send data\n \n \n // Callback to Tabs add-on\n if (typeof almTabLoaded === 'function') {\n window.almTabLoaded(alm);\n }\n \n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'restapi'); \n \t\t\t\t\t\n\t\t\t});\n\t\t\t\n };\n \n \n \n /** \n\t * restapi\n * Send request to the WP REST API\n *\n * @param {*} alm | ALm object\n * @param {*} action | Ajax action\n * @param {*} queryType\n * @since 5.0.0\n */\n alm.AjaxLoadMore.restapi = function(alm, action, queryType){\n\t \n\t let alm_rest_template = wp.template(alm.extensions.restapi_template_id);\n let alm_rest_url = `${alm.extensions.restapi_base_url}/${alm.extensions.restapi_namespace}/${alm.extensions.restapi_endpoint}`; \n let params = queryParams.almGetRestParams(alm); // [./helpers/queryParams.js]\n\n\t\t\t// Axios Interceptor for nested data objects\n\t\t\taxios.interceptors.request.use(config => {\n\t\t\t\tconfig.paramsSerializer = params => {\n\t\t\t\t\t// Qs is already included in the Axios package\n\t\t\t\t\treturn qs.stringify(params, {\n\t\t\t\t\t\tarrayFormat: 'brackets',\n\t\t\t\t\t\tencode: false\n\t\t\t\t\t});\n\t\t\t\t};\n\t\t\t\treturn config;\n\t\t\t}); \n \n // Send Ajax request\n axios.get(alm_rest_url, {params})\n .then(function(response){\n // Success \n let results = response.data; // Get data from response\n\t\t\t\tlet data = '',\n\t\t\t\t\t html = results.html,\n\t\t\t\t\t meta = results.meta,\n\t\t\t\t\t postcount = meta.postcount,\n\t\t\t\t\t totalposts = meta.totalposts;\n \n \n // loop results to get data from each\n for(let i = 0; i < html.length; i++){\n\t let result = html[i];\n if (alm.restapi_debug === 'true') { // If debug\n console.log(result);\n }\n data += alm_rest_template(result);\n }\n \n // Create object to pass to success()\n let obj = {\n 'html': data,\n 'meta': {\n 'postcount': postcount,\n 'totalposts': totalposts\n },\n };\n alm.AjaxLoadMore.success(obj, false); // Send data\n \n })\n .catch(function (error) { \n // Error \n alm.AjaxLoadMore.error(error, 'restapi'); \n \t\t\t\t\t\n\t\t\t});\n\t\t\t\n };\n\n\n\n // If pagination enabled, run totalposts query\n if (alm.addons.paging) {\n if (alm.addons.nextpage) {\n alm.AjaxLoadMore.ajax('totalpages'); // Create paging menu and query for total pages\n } else {\n alm.AjaxLoadMore.ajax('totalposts'); // Create paging menu and query for total posts\n }\n }\n\n\n\n /** \n\t * success\n * Success function after loading data\n *\n * @param data The results of the Ajax request\n * @param is_cache Are results of the Ajax request coming from cache\n * @since 2.6.0\n */\n alm.AjaxLoadMore.success = function(data, is_cache) {\n\n if (alm.addons.single_post) { // Get previous page data\n alm.AjaxLoadMore.getSinglePost();\n }\n\n\t\t\tlet isPaged = false;\n\t\t\t \n // Create `.alm-reveal` element \n //let reveal = document.createElement('div');\n let reveal = (alm.container_type === 'table') ? document.createElement('tbody') : document.createElement('div');\n alm.el = reveal;\n reveal.style.opacity = 0;\n reveal.style.height = 0;\n reveal.style.outline = 'none';\n \n\t\t\t// Paging container\n let pagingContent = alm.listing.querySelector('.alm-paging-content');\n\t\t\t\n var html, meta, total;\n\n if (is_cache) {\n // If Cache, do not look for json data as we won't be querying the DB.\n html = data;\n \n } else {\n // Standard ALM query results\n html = data.html;\n meta = data.meta; \n alm.posts = (alm.addons.paging) ? meta.postcount : alm.posts + meta.postcount;\n total = meta.postcount;\n alm.totalposts = meta.totalposts;\n alm.totalposts = (alm.addons.preloaded === 'true') ? alm.totalposts - alm.addons.preloaded_amount : alm.totalposts;\n alm.debug = (meta.debug) ? meta.debug : '';\n } \n\n\t\t\t// Set alm.html as plain text return\n alm.html = html; \n\n // If cache, get the length of the html object\n total = (is_cache) ? almDomParser(html).length : total;\n\n // First Run Only\n if (alm.init) {\n\t // Set Meta\t\t \n if (meta) {\n alm.main.dataset.totalPosts = (meta.totalposts) ? meta.totalposts : 0;\n } \n // Paging\t \n if (alm.addons.paging && total > 0) { \n\t // Add paging containers and content\n\t\t\t\t\talm.AjaxLoadMore.pagingInit(html, 'alm-reveal');\n }\n // ALM Empty\n if (total === 0) {\n if (alm.addons.paging) {\n if (typeof almPagingEmpty === 'function') {\n window.almPagingEmpty(alm);\n }\n }\n if (typeof almEmpty === 'function') {\t \n window.almEmpty(alm);\n }\n if(alm.no_results){\n\t almNoResults(alm.content, alm.no_results);\n }\n }\n\n // isPaged\n if (alm.isPaged) {\n // Reset the posts_per_page parameter\n alm.posts_per_page = (alm.users) ? alm.listing.dataset.usersPerPage : alm.listing.dataset.postsPerPage;\n // SEO add-on\n alm.page = (alm.start_page) ? alm.start_page - 1 : alm.page; // Set new page #\n // Filters add-on \n if (alm.addons.filters) {\n if (alm.addons.filters_startpage > 0) {\n alm.page = alm.addons.filters_startpage - 1; // Set new page # \n alm.posts_per_page = alm.listing.dataset.postsPerPage; // Reset `filters-startpage` data after the first run\n }\n } \n }\n } \n\t\t\t\n\t\t\t\n\t\t\t/*\n * Display alm_debug results\n */ \n almDebug(alm);\n\n\n /*\n * Set localized variables\n */ \n setLocalizedVars(alm); \n \n \n /*\n * Render results\n */\n \n if (total > 0) {\n\n // We have results! \n\n if (!alm.addons.paging) {\n\t\t\t\t\t\n if (alm.addons.single_post) { \n\t \n\t // Single Posts \n reveal.setAttribute('class', 'alm-reveal alm-single-post post-' + alm.addons.single_post_id + alm.tcc);\n reveal.dataset.url = alm.addons.single_post_permalink;\n reveal.dataset.page = alm.page;\n reveal.dataset.id = alm.addons.single_post_id;\n reveal.dataset.title = alm.addons.single_post_title; \n reveal.innerHTML = alm.html;\n \n } else {\n\n if (!alm.transition_container) { // No transition container\n\t \n\t \talm.el = alm.html; \n reveal = (alm.container_type === 'table') ? almTableWrap(alm.html) : almDomParser(alm.html, 'text/html');\n\n } else { // Standard container\n\n let pagenum;\n let querystring = window.location.search;\n let seo_class = (alm.addons.seo) ? ' alm-seo' : '';\n let filters_class = (alm.addons.filters) ? ' alm-filters' : '';\n let preloaded_class = (alm.is_preloaded) ? ' alm-preloaded' : '';\n\n // SEO and Filter Paged\n if (alm.init && (alm.start_page > 1 || alm.addons.filters_startpage > 0)) {\t \n // loop through items and break into separate .alm-reveal divs for paging \n\n let return_data = [];\n let container_array = [];\n let posts_per_page = parseInt(alm.posts_per_page);\n let pages = Math.ceil(total / posts_per_page);\n isPaged = true;\n \n\n // Call to Actions\n if (alm.addons.cta === 'true') {\n posts_per_page = posts_per_page + 1; // Add 1 to posts_per_page for CTAs\n pages = Math.ceil(total / posts_per_page); // Update pages var with new posts_per_page\n total = pages + total; // Get new total w/ CTAs added\n } \n\n\n // Parse returned HTML and strip empty nodes\n let data = stripEmptyNodes(almDomParser(alm.html, 'text/html') );\n \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t// Slice data array into individual pages (array)\n for (var i = 0; i < total; i += posts_per_page) {\n return_data.push(data.slice(i, posts_per_page + i));\n }\n\n // Loop return_data array to build .alm-reveal containers\n for (var k = 0; k < return_data.length; k++) {\n\n let p = (alm.addons.preloaded === 'true') ? 1 : 0; // Add 1 page if items are preloaded.\n let alm_reveal = document.createElement('div');\n\n if (k > 0 || alm.addons.preloaded === 'true') {\n \n pagenum = (k + 1 + p); // > Paged\n\n\t\t\t\t\t\t\t\t\t\tif(alm.addons.seo){ // SEO\n\t if (alm.addons.seo_permalink === 'default') {\n\t\t\t\t\t\t\t\t\t\t\t\t// Default Permalinks\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + querystring + '&paged=' + pagenum;\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n\t } else {\n\t\t\t\t\t\t\t\t\t\t\t\t// Pretty Permalinks\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.addons.seo_leading_slash + 'page/' + pagenum + alm.addons.seo_trailing_slash + querystring;\n\t\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n\t }\n }\n \n if(alm.addons.filters){ // Filters\n \talm_reveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, pagenum);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = pagenum;\n } \n\n } else {\n\t \t \n // First Page \n if(alm.addons.seo){\n\t // SEO\n\t alm_reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t alm_reveal.dataset.url = alm.canonical_url + querystring;\n\t\t alm_reveal.dataset.page = '1';\n\t\t \n } \n if(alm.addons.filters){\n\t // Filters\n \talm_reveal.setAttribute('class', 'alm-reveal' + filters_class + preloaded_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, 0);\n\t\t\t\t\t\t\t\t\t\t\talm_reveal.dataset.page = '1';\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n } \n } \n \n \n // Append children to `.alm-reveal` element\n almAppendChildren(alm_reveal, return_data[k]);\n \n // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm_reveal, alm.ua);\n \n \n // Push alm_reveal elements into container_array\n container_array.push(alm_reveal);\n \n }\n \n\n // Set opacity and height of .alm-listing div to allow for fadein.\n alm.listing.style.opacity = 0;\n alm.listing.style.height = 0;\n \n\n // Append container_array to `.alm-listing` \n almAppendChildren(alm.listing, container_array);\n \n reveal = alm.listing;\n alm.el = reveal;\n\n }\n // End Init & SEO\n \n else {\n\t \n\t // Preloaded OR SEO (and Paged)\n if (alm.addons.seo && alm.page > 0 || alm.addons.preloaded === 'true') {\n\n let p2 = (alm.addons.preloaded === 'true') ? 1 : 0; // Add 1 page if items are preloaded.\n\n // SEO [Paged]\n pagenum = (alm.page + 1 + p2);\n\n if (alm.addons.seo) {\n // SEO\n if (alm.addons.seo_permalink === 'default') {\n\t // Default Permalinks\n\t reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t reveal.dataset.url = alm.canonical_url + querystring + '&paged=' + pagenum;\n\t\t reveal.dataset.page = pagenum;\n \n } else {\n\t // Pretty Permalinks\n\t reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n\t\t reveal.dataset.url = alm.canonical_url + alm.addons.seo_leading_slash + 'page/' + pagenum + alm.addons.seo_trailing_slash + querystring;\n\t\t reveal.dataset.page = pagenum;\n \n }\n\n } else if (alm.addons.filters) {\n // Filters \n\t\t\t\t\t\t\t\t\t\treveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\t\treveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, pagenum);\n\t\t\t\t\t\t\t\t\t\treveal.dataset.page = pagenum;\n \n } else { \n // Basic ALM\n reveal.setAttribute('class', 'alm-reveal' + alm.tcc);\n \n }\n\n } else if (alm.addons.filters) {\n\t \n // Filters\n\t\t\t\t\t\t\t\t\treveal.setAttribute('class', 'alm-reveal' + filters_class + alm.tcc);\n\t\t\t\t\t\t\t\t\treveal.dataset.url = alm.canonical_url + alm.AjaxLoadMore.buildFilterURL(querystring, parseInt(alm.page) + 1);\n\t\t\t\t\t\t\t\t\treveal.dataset.page = parseInt(alm.page) + 1;\n \n } else {\n\n if (alm.addons.seo) {\n // SEO [Page 1] \n reveal.setAttribute('class', 'alm-reveal' + seo_class + alm.tcc);\n reveal.dataset.url = alm.canonical_url + querystring;\n reveal.dataset.page = '1';\n \n } else {\n // Basic ALM \n reveal.setAttribute('class', 'alm-reveal' + alm.tcc); \n }\n\n }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\treveal.innerHTML = alm.html;\n \n }\n \n }\n \n }\n \n\n // Append `reveal` div to ALM Listing container\n // Do not append when transtion == masonry OR init and !preloaded\n if (alm.transition !== 'masonry' || (alm.init && !alm.is_masonry_preloaded)) {\n\t \n\t if(!isPaged){ \t \n \t if(!alm.transition_container){ \n\t \t // No transition container \t \n \t if (alm.images_loaded === 'true') {\t \n \t imagesLoaded( reveal, function() {\n \t\t almAppendChildren(alm.listing, reveal);\n \t\t \n \t\t // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm.listing, alm.ua);\n \t\t }); \t\t \n } else {\n almAppendChildren(alm.listing, reveal);\n \n // Run srcSet polyfill\n\t\t\t\t\t\t\t\t\tsrcsetPolyfill(alm.listing, alm.ua);\n } \t \n \t \n \t } else { \n\t \t // Standard container\t\n \t alm.listing.appendChild(reveal);\n \t \n \t }\t \t \t\n\t }\n\t \n }\n\t\t\t\t\t\n\t\t\t\t\t// *****\n // Transitions\t\n // *****\t\t\t\n\t\t\t\t\t\n\n // Masonry\n if (alm.transition === 'masonry') {\n alm.el = alm.listing;\n almMasonry(alm, alm.init, alm_is_filtering);\n alm.masonry_init = false;\n alm.AjaxLoadMore.transitionEnd();\n\n }\n \n // None\n else if (alm.transition === 'none') { \n if (alm.images_loaded === 'true') {\t \n\t imagesLoaded( reveal, function() {\n\t\t\t\t\t\t\t\talmFadeIn(reveal, 0);\n\t\t\t\t\t\t\t\talm.AjaxLoadMore.transitionEnd();\n\t\t });\n\t\t \n } else {\n almFadeIn(reveal, 0);\n alm.AjaxLoadMore.transitionEnd();\n }\n }\n \n // Fade transition (default)\n else {\n if (alm.images_loaded === 'true') {\t \n\t imagesLoaded( reveal, function() {\n\t\t if (alm.transition_container) {\n almFadeIn(reveal, alm.speed);\n }\n alm.AjaxLoadMore.transitionEnd();\n\t\t });\n\t\t \n } else {\n if (alm.transition_container) {\n almFadeIn(reveal, alm.speed);\n }\n alm.AjaxLoadMore.transitionEnd();\n }\n }\n \n \n // *****\n // TABS - Trigger almTabsSetHeight callback in Tabs add-on\n // *****\n\t\t\t\t\tif (typeof almTabsSetHeight === 'function') {\n\t\t\t\t\t\tif (alm.images_loaded === 'true') {\n \t\t\t\t\t\timagesLoaded( reveal, function() {\n \t\t\t\t\t\tsetTimeout(function(){\t \n almFadeIn(alm.listing, alm.speed);\n setTimeout(function(){ \n\t\t\t\t\t\t window.almTabsSetHeight(alm);\n }, alm.speed);\n\t\t\t\t\t\t }, alm.speed + 1);\n\t\t\t\t\t\t });\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetTimeout(function(){\n almFadeIn(alm.listing, alm.speed);\n setTimeout(function(){ \n\t\t\t\t\t window.almTabsSetHeight(alm);\n }, alm.speed);\n\t\t\t\t\t\t\t}, alm.speed + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\n } else {\n\n // Paging \n if (!alm.init) {\n\t \n\t if(pagingContent){ \n\t\t \n\t\t almFadeOut(pagingContent, alm.speed);\n \t\t\t \n \t\t\t pagingContent.style.outline = 'none'; \n \t\t alm.main.classList.remove('alm-loading');\t\t \n\n\t\t setTimeout(function(){\t\t\n \t\t \t\t\n\t\t\t\t\t\t\t\tpagingContent.style.opacity = 0;\n pagingContent.innerHTML = alm.html;\n \t\t\t\t\t\t\t\t\n\t\t\t imagesLoaded( pagingContent, function() { \t\t\t\t\t\t\t\t\n \t\t\t\t\t\t\t\t\n\t\t // Delay for effect \n\t alm.AjaxLoadMore.triggerAddons(alm);\n\t almFadeIn(pagingContent, alm.speed);\n\t \n\t // Remove opacity on element to fix CSS transition\n\t setTimeout(function(){\t \t \t\n\t\t \tpagingContent.style.opacity = '';\n\t\t }, parseInt(alm.speed) + 25); \n \t\t\t\t\t\t\t\t\n\t\t\t\t // Paging addon\n\t\t if (typeof almOnPagingComplete === 'function') {\n\t\t window.almOnPagingComplete(alm);\n\t\t } \t \n \t \n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\n\t\t }, parseInt(alm.speed) + 25); \n\t }\n\n } else {\n\t \n\t // almMasonry(alm, alm.init, alm_is_filtering);\n \n setTimeout(function(){\n alm.main.classList.remove('alm-loading');\n alm.AjaxLoadMore.triggerAddons(alm);\n }, alm.speed); \n\n }\n // End Paging\n\n }\n \n \n\t\t\t\t// almFiltersOnload [Filters Add-on hook]\n\t\t\t\tif(typeof almFiltersOnload === 'function' && alm.init){\n\t\t\t\t\tsetTimeout(function(){\n\t\t\t\t\t\twindow.almFiltersOnload(alm);\n\t\t\t\t\t}, parseInt(alm.speed) + 25);\n\t\t\t\t}\t\t\t\t\t\t\n\t\t\t\t\n \n // ALM Complete / Nested\n if (alm.images_loaded === 'true') {\n imagesLoaded( reveal, function() {\n alm.AjaxLoadMore.nested(reveal); // Nested\t\t\t\t\t\t\n\t\t\t\t\t\tinsertScript.init(alm.el); // Run script inserter\n if (typeof almComplete === 'function') {\n \twindow.almComplete(alm);\n }\n });\n \n } else {\n alm.AjaxLoadMore.nested(reveal); // Nested\n\t\t\t\t\tinsertScript.init(alm.el); // Run script inserter\n if (typeof almComplete === 'function') {\n \twindow.almComplete(alm);\n }\n \n }\n // End ALM Complete / Nested\n \n\n // ALM Done\n if (!alm.addons.cache) {\n\t // Not Cache & Previous Post\n if (alm.posts >= alm.totalposts && !alm.addons.single_post) {\n alm.AjaxLoadMore.triggerDone();\n }\n } else { // Cache \n if (total < alm.posts_per_page) {\n alm.AjaxLoadMore.triggerDone();\n }\n }\n // End ALM Done\n\n\n } \n \n \n /*\n * No results from Ajax\n */\n else { \n\n if (!alm.addons.paging) {\n // Add .done class, reset btn text\n setTimeout(function() {\n alm.button.classList.remove('loading');\n alm.button.classList.add('done');\n }, alm.speed);\n alm.AjaxLoadMore.resetBtnText();\n }\n\n alm.AjaxLoadMore.triggerDone(); // ALM Done\n\n } \n\n\n // Destroy After\n if (alm.destroy_after !== undefined && alm.destroy_after !== '') {\n var currentPage = alm.page + 1; // Add 1 because alm.page starts at 0\n currentPage = (alm.addons.preloaded === 'true') ? currentPage++ : currentPage; // Add 1 for preloaded\n if (currentPage == alm.destroy_after) { // Disable ALM if page = alm.destroy_after val\n alm.AjaxLoadMore.destroyed();\n }\n }\n \n\t\t\t\n\t\t\t// Set Focus for A11y\n\t\t\tif(alm.transition_container && total > 0){\n\t\t\t\tif(alm.addons.paging){\n \t\t\t\t// Paging\n\t\t\t \tsetFocus(alm.init, alm.addons.preloaded, alm.listing, alm_is_filtering);\n\t\t\t \t\n\t\t\t } else if(alm.addons.single_post || alm.addons.nextpage){\n \t\t\t // Single Posts OR Next Page, set `init` to false to trigger focus\n\t\t \t setFocus(false, alm.addons.preloaded, reveal, alm_is_filtering);\n\t\t \t \n } else {\n // Standard ALM\n\t\t \t setFocus(alm.init, alm.addons.preloaded, reveal, alm_is_filtering); \n }\n\t\t\t} else if(!alm.transition_container && alm.container_type === 'table'){\n \t\t\t\n \t\t\t// Table Layout\n\t\t \tsetFocus(alm.init, alm.addons.preloaded, reveal[0], alm_is_filtering);\n\t\t\t}\n \n \n // Comment Reply Fix\n if(alm.addons.comments === 'true'){ \n commentReplyFix(alm.listing);\n } \n \n \n // Remove filtering class\n if(alm.main.classList.contains('alm-is-filtering')){\n alm.main.classList.remove('alm-is-filtering');\n } \n \n \n // Set flags\n alm_is_filtering = alm.init = false;\n\n };\n\n\t\t\n\n /**\n\t * pagingPreloadedInit\n * First run for Paging + Preloaded add-ons\n * Moves preloaded content into ajax container\n *\n * @param {data} Results of the Ajax request\n * @since 2.11.3\n */\n alm.AjaxLoadMore.pagingPreloadedInit = function(data) {\n\n data = (data == null) ? '' : data; // Check for null data object\n\n // Add paging containers and content\n\t alm.AjaxLoadMore.pagingInit(data, 'alm-reveal'); \n\n if (data === '') {\n if (typeof almPagingEmpty === 'function') {\n window.almPagingEmpty(alm);\n }\n if (typeof almEmpty === 'function') {\n window.almEmpty(alm);\n }\n if(alm.no_results){\n almNoResults(alm.content, alm.no_results);\n }\n }\n \n };\n\n\n\n /** \n\t * pagingNextpageInit\n * First run for Paging + Next Page add-ons\n * Moves .alm-nextpage content into ajax container\n *\n * @param {data} Results of Ajax request\n * @since 2.14.0\n */\n alm.AjaxLoadMore.pagingNextpageInit = function(data) {\n\t \n\t data = (data == null) ? '' : data; // Check for null data object\n\t \n\t // Add paging containers and content\n\t alm.AjaxLoadMore.pagingInit(data, 'alm-reveal alm-nextpage'); \n\t\t\t\n\t\t\t// Set up Nextpage Vars\n if (typeof almSetNextPageVars === 'function') {\n window.almSetNextPageVars(alm); // Next Page Add-on\n }\n \n };\n \n \n \n /**\n\t * pagingInit\n * First run for Paging + (Preloaded & Next Page) add-ons. Create required containers.\n *\n * @param {data} Ajax results\n * @param {classes} added classes\n * @since 5.0\n */\n alm.AjaxLoadMore.pagingInit = function(data, classes = 'alm-reveal'){\n\t \n\t data = (data == null) ? '' : data; // Check for null data object\n\t \n\t // Create `alm-reveal` container\n\t \tlet reveal = document.createElement('div');\n\t reveal.setAttribute('class', classes);\t \n\t \n\t // Create `alm-paging-loading` container\n\t let content = document.createElement('div');\n\t content.setAttribute('class', 'alm-paging-content' + alm.tcc);\t\n\t content.innerHTML = data; \t \n\t reveal.appendChild(content); \n\t \n\t // Create `alm-paging-content` container\n\t let loader = document.createElement('div');\n\t loader.setAttribute('class', 'alm-paging-loading');\t \t\n\t reveal.appendChild(loader); \n\t \n\t // Add div to container\n\t alm.listing.appendChild(reveal); \n \n // Get/Set height of .alm-listing div\n\t let styles = window.getComputedStyle(alm.listing);\n\t let pTop = parseInt(styles.getPropertyValue('padding-top').replace('px', ''));\n\t let pBtm = parseInt(styles.getPropertyValue('padding-bottom').replace('px', ''));\n\t let h = reveal.offsetHeight;\n\t \n\t // Set initial `.alm-listing` height\n alm.listing.style.height = h + pTop + pBtm + 'px'; \n \n // Reset button text\n alm.AjaxLoadMore.resetBtnText(); \n \n // Delay reveal of paging to avoid positioning issues\n setTimeout(function() {\t \n if (typeof almFadePageControls === 'function') {\n window.almFadePageControls(alm.btnWrap);\n }\n if (typeof almOnWindowResize === 'function') {\n window.almOnWindowResize(alm);\n } \t \n\t\t // Remove loading class from main container\n\t alm.main.classList.remove('loading'); \t\t\t\t\n }, alm.speed);\n \n };\n\n\n /**\n *\tnested\n *\tAutomatically trigger nested ALM instances (Requies `.alm-reveal` container\n *\n * @param {object} instance\n * @since 5.0\n */\n alm.AjaxLoadMore.nested = function(reveal) {\n\t if(!reveal || !alm.transition_container){\n\t\t return false; // Exit if not `transition_container`\n\t }\n let nested = reveal.querySelectorAll('.ajax-load-more-wrap'); // Get all instances from jQuery obj\n if (nested) {\n nested.forEach(function(element) {\n window.almInit(element);\n });\n }\n };\n\n\n\n /**\n\t * fetchingPreviousPost\n\t * Get the previous post ID via ajax\n\t *\n * @since 2.7.4\n */\n\n if (alm.addons.single_post_id) {\n alm.fetchingPreviousPost = false;\n alm.addons.single_post_init = true;\n }\n\n alm.AjaxLoadMore.getSinglePost = function() {\t\n\t \n\t\t\tlet action = 'alm_get_single'; \n\t \n\t if(alm.fetchingPreviousPost){\n\t\t return false;\n\t }\n\t \n alm.fetchingPreviousPost = true;\n \n // Get admin-ajax.php URL \n let ajaxURL = alm_localize.ajaxurl; \n \n\t\t\t// Get data params \n let params = {\n id: alm.addons.single_post_id,\n initial_id: alm.addons.single_post_init_id,\n order: alm.addons.single_post_order,\n taxonomy: alm.addons.single_post_taxonomy,\n excluded_terms: alm.addons.single_post_excluded_terms,\n post_type: alm.post_type,\n init: alm.addons.single_post_init,\n action: action\n };\n \n // Send HTTP request via Axios\n axios.get(ajaxURL, {params})\n .then(function(response){\n // Success\n \n let data = response.data; // Get data from response\n \n if (data.has_previous_post) {\n alm.listing.dataset.singlePostId = data.prev_id; // Update single-post-id on instance\n alm.addons.single_post_id = data.prev_id;\n alm.addons.single_post_permalink = data.prev_permalink;\n alm.addons.single_post_title = data.prev_title;\n alm.addons.single_post_slug = data.prev_slug;\n\n } else {\n if (!data.has_previous_post) {\n alm.AjaxLoadMore.triggerDone();\n }\n }\n if (typeof window.almSetSinglePost === 'function') {\n window.almSetSinglePost(alm, data.current_id, data.permalink, data.title);\n }\n alm.fetchingPreviousPost = false;\n alm.addons.single_post_init = false;\n \n })\n .catch(function (error) { \n // Error\n \n alm.AjaxLoadMore.error(error, 'getSinglePost');\n alm.fetchingPreviousPost = false; \n \t\t\t\t\t\n\t\t\t});\n\n };\n\n\n\n /**\n\t * triggerAddons\n *\n * Triggers various add-on functions (if available) after load complete.\n * @since 2.14.0\n */\n alm.AjaxLoadMore.triggerAddons = function(alm) {\n if (typeof almSEO === \"function\") { // SEO\n window.almSEO(alm, false);\n }\n if (typeof almSetNextPage === 'function') { // Next Page\n window.almSetNextPage(alm);\n } \n };\n\n\n\n /** \n\t * triggerDone\n *\n * Fires the almDone() function (if available).\n * @since 2.11.3\n */\n alm.AjaxLoadMore.triggerDone = function() {\n alm.loading = false;\n alm.finished = true;\n if (!alm.addons.paging) {\n alm.button.classList.add('done');\n alm.button.disabled = true;\n }\n if (typeof almDone === 'function') {\n // Delay done until animations complete\n setTimeout(function() {\n window.almDone(alm);\n }, alm.speed + 10);\n }\n };\n\n\n\n /** \n\t * resetBtnText\n\t * Resets the loading button text after loading has completed\n\t *\n * @since 2.8.4\n */\n alm.AjaxLoadMore.resetBtnText = function() {\n if (alm.button_loading_label !== false && !alm.addons.paging) { // Reset button text\n alm.button.innerHTML = alm.button_label;\n }\n };\n\n\n\n /** \n * Ajax Error\n * Error function after failed data\n * \n * @since 2.6.0\n */\n alm.AjaxLoadMore.error = function(error, location = null) {\n alm.loading = false;\n if (!alm.addons.paging) {\n alm.button.classList.remove('loading');\n alm.AjaxLoadMore.resetBtnText();\n }\n \n console.log('Error: ', error);\n if (error.response) {\n // The request was made and the server responded with a status code\n // that falls out of the range of 2xx\n //console.log(error.response.data);\n //console.log(error.response.status);\n //console.log(error.response.headers);\n console.log('Error Msg: ', error.message);\n } else if (error.request) {\n // The request was made but no response was received\n // `error.request` is an instance of XMLHttpRequest in the browser and an instance of\n // http.ClientRequest in node.js\n console.log(error.request);\n } else {\n // Something happened in setting up the request that triggered an Error\n console.log('Error Msg: ', error.message);\n }\n \n \n if(location){\n console.log('ALM Error started in '+ location);\n }\n\t\t\t\n\t\t\tif(error.config){\n \tconsole.log('ALM Error Debug: ', error.config);\n }\n \n };\n\n\n\n /** \n * click\n * Button click handler to load posts \n * \n * @since 4.2.0\n */\n alm.AjaxLoadMore.click = function(e) {\n let button = e.target || e.currentTarget;\n if (alm.pause === 'true') {\n alm.pause = false;\n alm.pause_override = false;\n alm.AjaxLoadMore.loadPosts();\n }\n if (!alm.loading && !alm.finished && !button.classList.contains('done')) {\n alm.loading = true;\n alm.page++;\n alm.AjaxLoadMore.loadPosts();\n }\n };\n\n\n\n /**\n\t * Button Click Event\n * Load more button click event \n * \n * @since 1.0.0\n */\n\n if (!alm.addons.paging && !alm.fetchingPreviousPost) {\n alm.button.onclick = alm.AjaxLoadMore.click;\n }\n\n\n\n /**\n\t * Window Resize\n * Add resize function for Paging & Tabs add-ons.\n * \n * @since 2.1.2\n * @updated 5.2\n */\n if (alm.addons.paging || alm.addons.tabs) {\n let resize;\n alm.window.onresize = function() {\n clearTimeout(resize);\n resize = setTimeout(function(e) {\n\t if(alm.addons.tabs){ // Tabs\n\t if (typeof almOnTabsWindowResize === 'function') {\n\t window.almOnTabsWindowResize(alm);\n\t }\n }\n\t if(alm.addons.paging){ // Paging\n\t if (typeof almOnWindowResize === 'function') {\n\t window.almOnWindowResize(alm);\n\t }\n }\n }, alm.speed);\n };\n }\n\n\n\n /**\n\t * isVisible\n * Check to see if element is visible before loading posts\n *\n * @since 2.1.2\n */\n\n alm.AjaxLoadMore.isVisible = function() {\n // Check for a width and height to determine visibility \n alm.visible = (alm.main.clientWidth > 0 && alm.main.clientHeight > 0) ? true : false;\n return alm.visible;\n };\n\n\n\n /**\n\t * scroll \n * Load posts as user scrolls the page\n *\n * @since 1.0\n * @updated 4.2.0\n */ \n alm.AjaxLoadMore.scroll = function() {\n\n if (alm.timer) {\n clearTimeout(alm.timer);\n }\n\n alm.timer = setTimeout(function() {\n if (alm.AjaxLoadMore.isVisible() && !alm.fetchingPreviousPost) {\n let trigger = alm.trigger.getBoundingClientRect();\n let btnPos = Math.round(trigger.top - alm.window.innerHeight) + alm.scroll_distance;\n let scrollTrigger = (btnPos <= 0) ? true : false;\n\n // Scroll Container\n if (alm.window !== window) {\n let scrollInstance = alm.window.querySelector('.ajax-load-more-wrap'); // ALM inside the container\n let scrollHeight = scrollInstance.offsetHeight; // ALM height\n let scrollPosition = Math.round(alm.window.scrollTop + alm.window.offsetHeight - alm.scroll_distance); // How far user has scrolled\t\n scrollTrigger = (scrollHeight <= scrollPosition) ? true : false;\n }\n\n // If Pause && Pause Override\n if (!alm.loading && !alm.finished && scrollTrigger && alm.page < (alm.max_pages - 1) && alm.proceed && alm.pause === 'true' && alm.pause_override === 'true') {\n alm.button.click();\n }\n\n // Standard Scroll\n else {\n if (!alm.loading && !alm.finished && scrollTrigger && alm.page < (alm.max_pages - 1) && alm.proceed && alm.pause !== 'true') {\n alm.button.click();\n }\n }\n }\n \n }, 25);\n };\n \n\n // Add scroll eventlisteners, only when needed\n if (alm.scroll && !alm.addons.paging) {\n if (alm.scroll_container !== '') { // Scroll Container \n alm.window = (document.querySelector(alm.scroll_container)) ? document.querySelector(alm.scroll_container) : alm.window;\n }\n alm.window.addEventListener('scroll', alm.AjaxLoadMore.scroll); // Scroll\n alm.window.addEventListener('touchstart', alm.AjaxLoadMore.scroll); // Touch Devices\n alm.window.addEventListener('wheel', function(e) { // Mousewheel\n\t\t\t\tlet direction = Math.sign(e.deltaY);\n\t\t\t\tif(direction > 0){\n\t\t\t\t\talm.AjaxLoadMore.scroll();\n\t\t\t\t}\n\t\t\t});\n\t\t\talm.window.addEventListener('keyup', function(e) { // End, Page Down\n\t\t\t\tlet code = (e.keyCode ? e.keyCode : e.which);\n\t\t\t\tswitch (code) {\n\t\t\t\t\tcase 35 :\n\t\t\t\t\tcase 34 :\n\t\t\t\t\t\talm.AjaxLoadMore.scroll();\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n \n \n }\n \n \n \n /** \n\t * destroyed\n * Destroy Ajax Load More functionality\n * \n * @since 3.4.2\n */\n alm.AjaxLoadMore.destroyed = function() {\n alm.disable_ajax = true;\n if (!alm.addons.paging) {\n alm.button.style.display = 'none';\n alm.AjaxLoadMore.triggerDone();\n if (typeof almDestroyed === 'function') {\n window.almDestroyed(alm);\n }\n }\n };\n\n\n\n /** \n\t * transitionEnd\n * Set variables after loading transiton completes\n *\n * @since 3.5 \n */\n alm.AjaxLoadMore.transitionEnd = function() { \n setTimeout(function() {\n\t alm.AjaxLoadMore.resetBtnText();\n alm.main.classList.remove('alm-loading');\n alm.button.classList.remove('loading'); // Loading button\n alm.AjaxLoadMore.triggerAddons(alm);\n if (!alm.addons.paging) {\n setTimeout(function() { \n alm.loading = false; // Delay to prevent loading to fast\n }, alm.speed * 3 ); \n }\n }, 100);\n hidePlaceholder(alm);\n };\n\n\n\n /** \n\t * setLocalizedVar\n * Set induvidual localized variable\n *\n * @param {string} name \n * @param {string} value \n * @since 4.1 \n */\n alm.AjaxLoadMore.setLocalizedVar = function(name = '', value = '') {\n if (alm.localize && name !== '' && value !== '') {\n alm.localize[name] = value.toString(); // Set ALM localize var\n window[alm.master_id + '_vars'][name] = value.toString(); // Update global window obj vars\n }\n };\n \n \n \n\t\t/**\n\t\t* getQueryVariable\n\t\t* Get querysting value\n\t\t*\n\t\t* @param {String} variable\n\t\t* @since 5.0\n\t\t*/\n\t\talm.AjaxLoadMore.getQueryVariable = function(variable) {\n\t\t\tvar query = window.location.search.substring(1);\n\t\t\tvar vars = query.split('&');\n\t\t\tfor (var i = 0; i < vars.length; i++) {\n\t\t\t\tvar pair = vars[i].split('=');\n\t\t\t\tif (decodeURIComponent(pair[0]) == variable) {\n\t\t\t\t\treturn decodeURIComponent(pair[1]);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n \n \n \n\t\t/**\n\t\t* buildFilterURL\n\t\t* Build new paging URL for filters\n\t\t*\n\t\t* @param {String} querystring\n\t\t* @param {Number} page\n\t\t* @since 5.0\n\t\t*/\n\t\talm.AjaxLoadMore.buildFilterURL = function(querystring = '', page = 0) {\n\t\t\tlet qs = querystring;\t\n\t\t\t\n\t\t\tif(alm.addons.filters_paging){\t\n \t\t\t\t\t\t\t\n \t\t\tif(page > 1){ \n \t\t\t\t// Paged\n if(qs){\n // If already has `pg` in querystring\n if (alm.AjaxLoadMore.getQueryVariable('pg')) {\n qs = querystring.replace(/(pg=)[^\\&]+/, '$1' + page);\t\t\t\t \n } else {\n qs = querystring + '&pg=' + page;\n } \n \n } else {\t\t\t \n qs = '?pg=' + page;\n }\n } else { \n \t // Not Paged\t \n \t qs = querystring.replace(/(pg=)[^\\&]+/, '');\t \n \t qs = (qs === '?') ? '' : qs; // Remove `?` if only symbol in querystring\n \t qs = (qs[qs.length -1] === '&') ? qs.slice(0, -1) : qs; // Remove trailing `&` symbols\n \t \n } \n } \n \n return qs; \n\t\t};\n\n\n\n /** \n * Init Ajax load More\n * Load posts as user scrolls the page\n * \n * @since 2.0 \n */\n alm.AjaxLoadMore.init = function() {\n\n // Preloaded and destroy_after is 1 \n if (alm.addons.preloaded === 'true' && alm.destroy_after == 1) {\n alm.AjaxLoadMore.destroyed();\n }\n\n if (!alm.addons.paging && !alm.addons.single_post) {\n if (alm.disable_ajax) {\n alm.finished = true;\n alm.button.classList.add('done');\n } else {\n if (alm.pause === 'true') {\n alm.button.innerHTML = alm.button_label;\n alm.loading = false;\n } else {\n alm.AjaxLoadMore.loadPosts();\n }\n }\n }\n\n // Previous Post Add-on\n if (alm.addons.single_post) {\n alm.AjaxLoadMore.getSinglePost(); // Set next post on load\n alm.loading = false;\n }\n\n\n // Preloaded + SEO && !Paging\n if (alm.addons.preloaded === 'true' && alm.addons.seo && !alm.addons.paging) {\n // Delay for scripts to load\n setTimeout(function() {\n if (typeof almSEO === \"function\" && alm.start_page < 1) {\n window.almSEO(alm, true);\n }\n }, alm.speed);\n }\n\n\n // Preloaded && !Paging\n if (alm.addons.preloaded === 'true' && !alm.addons.paging) {\n // Delay for scripts to load\n setTimeout(function() {\n // triggerDone\n if (alm.addons.preloaded_total_posts <= parseInt(alm.addons.preloaded_amount)) {\n alm.AjaxLoadMore.triggerDone();\n }\n // almEmpty\n if (alm.addons.preloaded_total_posts == 0) {\n if (typeof almEmpty === 'function') {\n window.almEmpty(alm);\n }\n if(alm.no_results){\n\t\t almNoResults(alm.content, alm.no_results);\n\t }\n }\n }, alm.speed);\n\n }\n \n\t\t\t\n\t\t\t// Preloaded Add-on ONLY\n if (alm.addons.preloaded === 'true') {\n if (alm.resultsText) {\n\t resultsText.almInitResultsText(alm, 'preloaded');\n }\n }\n\n\n // Next Page Add-on\n if (alm.addons.nextpage) {\n\t \t \n\t \t// Check that posts remain on load\n if (alm.listing.querySelector('.alm-nextpage') && !alm.addons.paging) {\n var alm_nextpage_pages = alm.listing.querySelectorAll('.alm-nextpage'),\n alm_nextpage_total = alm.listing.querySelector('.alm-nextpage:first-child');\n \n if(alm_nextpage_total && alm_nextpage_pages){\n\t alm_nextpage_total = alm_nextpage_total.dataset.totalPosts;\n\t alm_nextpage_pages = alm_nextpage_pages.length; \n\t\t\t\t\t\t\n\t\t\t\t\t\t// Disable if on last page\n\t if (alm_nextpage_pages == alm_nextpage_total) {\n\t alm.AjaxLoadMore.triggerDone();\n\t }\n }\n } \n \n if (alm.resultsText) {\n resultsText.almInitResultsText(alm, 'nextpage');\n }\n \n }\n\n\n // Window Load (Masonry + Preloaded)\n alm.window.addEventListener('load', function() {\n if (alm.is_masonry_preloaded) {\n almMasonry(alm, true, false);\n alm.masonry_init = false;\n }\n\t\t\t\tif (typeof almOnLoad === 'function') {\n\t\t\t\t\twindow.almOnLoad(alm);\n\t\t\t\t}\n });\n\n };\n\n\n // Init Ajax Load More\n alm.AjaxLoadMore.init();\n\n\n // Flag to prevent unnecessary loading of posts on initial page load.\n setTimeout(function() {\n alm.proceed = true;\n }, alm.speed);\n\n\n\n /** \n\t * almUpdateCurrentPage\n * Update current page - triggered from paging add-on\n *\n * @since 2.7.0\n */\n window.almUpdateCurrentPage = function(current, obj, alm) {\n\n alm.page = current; \n alm.page = (alm.addons.nextpage && !alm.addons.paging) ? alm.page - 1 : alm.page; // Next Page add-on\n\n let data = '';\n let target = ''; \n \n if (alm.addons.paging_init && alm.addons.preloaded === 'true') {\n // Paging + Preloaded Firstrun\n target = alm.listing.querySelector('.alm-reveal') || alm.listing.querySelector('.alm-nextpage');\n if(target){\n data = target.innerHTML; // Get content \n target.parentNode.removeChild(target); // Remove target \n alm.addons.preloaded_amount = 0; // Reset preloaded\n alm.AjaxLoadMore.pagingPreloadedInit(data);\n }\n alm.addons.paging_init = false;\n alm.init = false;\n\n } else if (alm.addons.paging_init && alm.addons.nextpage) {\n // Paging + Next Page on firstrun\n target = alm.listing.querySelector('.alm-reveal') || alm.listing.querySelector('.alm-nextpage');\n if(target){\n data = target.innerHTML; // Get content \n target.parentNode.removeChild(target); // Remove target\n alm.AjaxLoadMore.pagingNextpageInit(data);\n }\n alm.addons.paging_init = false;\n alm.init = false;\n\n } else {\n // Standard Paging\n alm.AjaxLoadMore.loadPosts();\n\n }\n \n };\n\n\n\n /** \n\t * almGetParentContainer\n * return the parent ALM container\n *\n * @since 2.7.0\n * @return element\n */\n window.almGetParentContainer = function() {\n return alm.listing;\n };\n\n\n\n /**\n\t * almGetObj\n * Returns the current ALM obj\n *\n * @param {string} specific obj\n * @since 2.7.0\n * @return object\n */\n window.almGetObj = function(obj = '') {\n\t if(obj !== ''){\n\t\t return alm[obj]; // Return specific param\n\t } else {\n\t\t return alm; // Return the entire alm object\n\t }\n \n };\n\n\n\n /**\n\t * almTriggerClick\n * Trigger ajaxloadmore from any element on page\n *\n * @since 2.12.0\n */\n window.almTriggerClick = function() {\n alm.button.click();\n };\n\n\n };\n\n // End ajaxloadmore \n \n\n\n /** \n * almInit\n * Initiate instance of Ajax load More\n *\n * @since 5.0\n */\n window.almInit = function(el, id = 0) {\n new ajaxloadmore(el, id);\n }; \n\n\n\n /**\n * Initiate Ajax load More if div is present on screen\n * @since 2.1.2\n */\n\n let alm_instances = document.querySelectorAll('.ajax-load-more-wrap');\n if (alm_instances.length) {\n [...alm_instances].forEach((alm, e) => {\n new ajaxloadmore(alm, e);\n });\n }\n\n})();\n\n\n\n/** \n * filter\n * Filter an Ajax Load More instance\n * \n * @since 5.0\n * @param {*} transition\n * @param {*} speed\n * @param {*} data\n */\nlet filter = function(transition = 'fade', speed = '200', data = '') {\n if (!transition || !speed || !data) {\n return false;\n }\n alm_is_filtering = true;\n almFilter(transition, speed, data, 'filter');\n};\nexport { filter };\n\n\n\n/** \n * tab\n * Tabbed content for Ajax Load More instance\n * \n * @since 5.2\n * @param {*} data\n * @param {*} url\n */\nlet tab = function(data = '', url = false) {\n\t\n\tlet transition = 'fade';\n\tlet speed = (alm_localize.speed) ? parseInt(alm_localize.speed) : 200;\n\t\n if (!data) {\n return false;\n }\n \n alm_is_filtering = true;\n almFilter(transition, speed, data, 'tab');\n \n};\nexport { tab };\n\n\n\n/** \n * tracking\n * Track Page Views in Google Analytics\n *\n * @since 5.0\n * @param {*} path\n */\n\nlet tracking = function(path) {\n if (typeof gtag === 'function') { // Gtag GA Tracking\n gtag('event', 'page_view', {\n 'page_path': path\n });\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (gtag)');\n }\n }\n if (typeof ga === 'function') { // Deprecated GA Tracking\n ga('send', 'pageview', path);\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (ga)');\n }\n }\n if (typeof __gaTracker === 'function') { // Monster Insights\n __gaTracker('send', 'pageview', path);\n if(alm_localize.ga_debug){\n console.log('Pageview sent to Google Analytics (__gaTracker)');\n }\n } \n \n // Dispatch global Analytics callback\n if (typeof almAnalytics === 'function') {\n window.almAnalytics(path);\n }\n}; \nexport { tracking };\n\n\n\n/** \n * start\n * Trigger Ajax Load More from other events\n * \n * @since 5.0\n * @param {*} el\n */\nlet start = function(el) {\n if (!el) {\n return false;\n }\n window.almInit(el);\n};\nexport { start };\n\n\n\n/** \n * almScroll\n * Scroll window to position (global function)\n *\n * @since 5.0\n * @param {*} position\n */\nlet almScroll = function(position) {\n if (!position) {\n return false;\n }\n window.scrollTo({\n top: position,\n behavior: 'smooth'\n });\n};\nexport { almScroll };\n\n\n\n/** \n * getOffset\n * Get the current top/left coordinates of an element relative to the document.\n *\n * @since 5.0\n * @param {*} el\n */\nlet getOffset = function(el = null){\n\tif(!el){\n\t\treturn false;\n\t}\n\tlet rect = el.getBoundingClientRect(),\n scrollLeft = window.pageXOffset || document.documentElement.scrollLeft,\n scrollTop = window.pageYOffset || document.documentElement.scrollTop;\n return { top: rect.top + scrollTop, left: rect.left + scrollLeft }\n};\nexport { getOffset };\n\n\n\n/** \n * almScroll\n * Scroll window to position (global function)\n *\n * @since 5.0\n * @param {*} position\n */\nlet render = function(el, options = null) {\n if (!el) {\n return false;\n }\n // console.log(el, options);\n};\nexport { render };\n","/**\n * Append a child element to a container\n *\n * @param {*} target | Target element to append items\n * @param {*} element | The element to append\n * @param {*} transition | The transiton\n * @since 5.0\n */\n \nlet nodeNameArray = ['#text', '#comment'];\n\nlet almAppendChild = function( target = null, element = null, transition = 'fade' ) {\n\tif(!target || !element){\n\t\treturn false; \n\t}\t\n\t\n\t// Do not append elements that are not actual element nodes (i.e. #text node)\n\t// Add item if not in exclude array\n\tif(nodeNameArray.indexOf(element.nodeName.toLowerCase()) === -1){\t\t\n\t\tif(transition === 'masonry'){ // If Masonry, opacity = zero\n\t\t\telement.style.opacity = 0;\n\t\t}\n\t\ttarget.appendChild(element);\n\t}\n};\nexport default almAppendChild;","import almAppendChild from './almAppendChild';\n/**\n * Loop array of elements and append to target\n *\n * @param {*} target | Target element to append items\n * @param {*} array | An array of elements\n * @param {*} transition | The transiton\n * @since 5.0\n */\n \nlet almAppendChildren = function( target = null, array = null, transition = 'fade' ) {\n\tif(!target || !array){\n\t\treturn false;\n\t}\t\n\tfor (var i = 0; i < array.length; i++) {\t\n\t\tlet element = array[i];\t\t\n\t\talmAppendChild(target, element, transition);\t\t\n\t}\n};\nexport default almAppendChildren;","/**\n * Convert a plain text string into an array of HTML nodes\n *\n * @param {*} html | The HTML string\n * @param {*} type\n * @return array\n * @since 5.0\n */\nlet almDomParser = function( html = '', type = 'text/html' ) {\n\tif(!html){\n \treturn false;\n\t}\n let parser = new DOMParser(); \n let data = parser.parseFromString(html, type);\t\t\t\t\t\t\t\n return (data) ? Array.prototype.slice.call(data.body.childNodes) : data;\t\n};\nexport default almDomParser;\n","/**\n * Generate the cache page URL for GET request\n *\n * @param {*} el | Target element to append items\n * @param {*} array | An array of elements\n * @since 5.0\n */\nlet almGetCacheUrl = function( alm ) {\n \n if(!alm){\n return false;\n }\n \n\tlet cache_url = '';\n\tlet ext = '.html';\n\t\n if (alm.init && alm.addons.seo && alm.isPaged) {\n // SEO Add-on\n // If the request is a paged URL (/page/3/)\n let firstpage = '1';\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + firstpage + '-' + alm.start_page + ext;\n \n } else if (alm.addons.nextpage) {\n // Nextpage add-on\n let nextpage_cache_url;\n if (alm.addons.paging) {\n nextpage_cache_url = parseInt(alm.page) + 1;\n } else {\n nextpage_cache_url = parseInt(alm.page) + 2;\n if (alm.isPaged) {\n // If the request a paged URL (/page/3/)\n nextpage_cache_url = parseInt(alm.page) + parseInt(alm.addons.nextpage_startpage) + 1;\n }\n }\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + nextpage_cache_url + ext;\n \n } else if (alm.addons.single_post) {\n // Previous Post\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/' + alm.addons.single_post_id + ext;\n \n } else {\n // Standard URL request\n cache_url = alm.addons.cache_path + alm.addons.cache_id + '/page-' + (alm.page + 1) + ext;\n \n }\n \n return cache_url;\n};\n\nexport default almGetCacheUrl;","/**\n * Wrap `table` containers in tbody elements\n * innerHTML and DOMParser do not work with <tr/> <td/> elements etc.\n *\n * @param {*} html | Plain text\n * @since 5.0\n */\nlet almTableWrap = function( html = null ) {\n if(!html){\n return false;\n }\n\tlet table_reveal = document.createElement('tbody');\n table_reveal.innerHTML = html;\n let table_reveal_array = [table_reveal];\n return table_reveal_array; // Return new array\n};\nexport default almTableWrap;","/**\n * commentReplyFix\n * Hotfix for Reply links not working in WordPress 5.1+\n * \n * @param listing object\n * @since 5.1\n */\nlet commentReplyFix = function( listing = null ) {\n \n // Get all `Reply` links.\n let replyLinks = listing.querySelectorAll('.comment-reply-link'); \n if(!replyLinks){\n return false;\n }\n \n // Loop links\n replyLinks.forEach(function(link){\n \n // Add custom click handler\n link.onclick = function(e) { \n \n e.preventDefault();\n \n let commId = link.dataset.belowelement,\n parentId = link.dataset.commentid,\n respondId = link.dataset.respondelement,\n postId = link.dataset.postid,\n follow;\n \n if ( ! commId || ! parentId || ! respondId || ! postId ) {\n /*\n * Theme or plugin defines own link via custom `wp_list_comments()` callback \n * and calls `moveForm()` either directly or via a custom event hook. \n */ \n return;\n \n }\n \n // Move reply form\n follow = window.addComment.moveForm(commId, parentId, respondId, postId);\n if (false === follow) {\n event.preventDefault(); \n }\n \n };\n \n }); \n \n};\nexport default commentReplyFix;","let getParameterByName = function( name, url ) {\n if (!url) url = window.location.href;\n name = name.replace(/[\\[\\]]/g, \"\\\\$&\");\n var regex = new RegExp(\"[?&]\" + name + \"(=([^&#]*)|&|#|$)\"),\n results = regex.exec(url);\n if (!results) return null;\n if (!results[2]) return '';\n return decodeURIComponent(results[2].replace(/\\+/g, \" \"));\n};\nexport default getParameterByName;","// Prevent native browser scrolling on popstate\n// https://developer.mozilla.org/en-US/docs/Web/API/History#Browser_compatibility\nif ('scrollRestoration' in history) {\n\t//history.scrollRestoration = 'manual';\n}\n\n\n// Object.entries\nif (!Object.entries){\n Object.entries = function( obj ){\n var ownProps = Object.keys( obj ),\n i = ownProps.length,\n resArray = new Array(i); // preallocate the Array\n while (i--)\n resArray[i] = [ownProps[i], obj[ownProps[i]]];\n\n return resArray;\n };\n} \n\n\n// isArray\nif (typeof Array.isArray === 'undefined') {\n Array.isArray = function(obj) {\n return Object.prototype.toString.call(obj) === '[object Array]';\n }\n};\n\n\n// Array.from\nif (!Array.from) {\n Array.from = (function () {\n var toStr = Object.prototype.toString;\n var isCallable = function (fn) {\n return typeof fn === 'function' || toStr.call(fn) === '[object Function]';\n };\n var toInteger = function (value) {\n var number = Number(value);\n if (isNaN(number)) { return 0; }\n if (number === 0 || !isFinite(number)) { return number; }\n return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number));\n };\n var maxSafeInteger = Math.pow(2, 53) - 1;\n var toLength = function (value) {\n var len = toInteger(value);\n return Math.min(Math.max(len, 0), maxSafeInteger);\n };\n\n // The length property of the from method is 1.\n return function from(arrayLike/*, mapFn, thisArg */) {\n // 1. Let C be the this value.\n var C = this;\n\n // 2. Let items be ToObject(arrayLike).\n var items = Object(arrayLike);\n\n // 3. ReturnIfAbrupt(items).\n if (arrayLike == null) {\n throw new TypeError('Array.from requires an array-like object - not null or undefined');\n }\n\n // 4. If mapfn is undefined, then let mapping be false.\n var mapFn = arguments.length > 1 ? arguments[1] : void undefined;\n var T;\n if (typeof mapFn !== 'undefined') {\n // 5. else\n // 5. a If IsCallable(mapfn) is false, throw a TypeError exception.\n if (!isCallable(mapFn)) {\n throw new TypeError('Array.from: when provided, the second argument must be a function');\n }\n\n // 5. b. If thisArg was supplied, let T be thisArg; else let T be undefined.\n if (arguments.length > 2) {\n T = arguments[2];\n }\n }\n\n // 10. Let lenValue be Get(items, \"length\").\n // 11. Let len be ToLength(lenValue).\n var len = toLength(items.length);\n\n // 13. If IsConstructor(C) is true, then\n // 13. a. Let A be the result of calling the [[Construct]] internal method\n // of C with an argument list containing the single item len.\n // 14. a. Else, Let A be ArrayCreate(len).\n var A = isCallable(C) ? Object(new C(len)) : new Array(len);\n\n // 16. Let k be 0.\n var k = 0;\n // 17. Repeat, while k < len… (also steps a - h)\n var kValue;\n while (k < len) {\n kValue = items[k];\n if (mapFn) {\n A[k] = typeof T === 'undefined' ? mapFn(kValue, k) : mapFn.call(T, kValue, k);\n } else {\n A[k] = kValue;\n }\n k += 1;\n }\n // 18. Let putStatus be Put(A, \"length\", len, true).\n A.length = len;\n // 20. Return A.\n return A;\n };\n }());\n}\n\n\n// Nodelist\nif (window.NodeList && !NodeList.prototype.forEach) {\n\tNodeList.prototype.forEach = function (callback, thisArg) {\n\t\t thisArg = thisArg || window;\n\t\t for (var i = 0; i < this.length; i++) {\n\t\t\t callback.call(thisArg, this[i], i, this);\n\t\t }\n\t};\n}\n\n\n// removeChild\n// https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md\n(function (arr) {\n\tarr.forEach(function (item) {\n\t if (item.hasOwnProperty('remove')) {\n\t\t return;\n\t }\n\t Object.defineProperty(item, 'remove', {\n\t\t configurable: true,\n\t\t enumerable: true,\n\t\t writable: true,\n\t\t value: function remove() {\n\t\t\tif (this.parentNode !== null)\n\t\t\t this.parentNode.removeChild(this);\n\t\t }\n\t });\n\t});\n})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);\n","/**\n * Add dataset support to elements\n * No globals, no overriding prototype with non-standard methods, \n * handles CamelCase properly, attempts to use standard \n * Object.defineProperty() (and Function bind()) methods, \n * falls back to native implementation when existing\n * Inspired by http://code.eligrey.com/html5/dataset/ \n * (via https://github.com/adalgiso/html5-dataset/blob/master/html5-dataset.js )\n * Depends on Function.bind and Object.defineProperty/Object.getOwnPropertyDescriptor (polyfills below)\n * All code below is Licensed under the X11/MIT License\n*/\nif (!Function.prototype.bind) {\n Function.prototype.bind = function (oThis) {\n 'use strict';\n if (typeof this !== \"function\") {\n // closest thing possible to the ECMAScript 5 internal IsCallable function\n throw new TypeError(\"Function.prototype.bind - what is trying to be bound is not callable\");\n }\n\n var aArgs = Array.prototype.slice.call(arguments, 1),\n fToBind = this,\n FNOP = function () {},\n fBound = function () {\n return fToBind.apply(\n this instanceof FNOP && oThis ? this : oThis,\n aArgs.concat(Array.prototype.slice.call(arguments))\n );\n };\n\n FNOP.prototype = this.prototype;\n fBound.prototype = new FNOP();\n\n return fBound;\n };\n}\n\n/*\n * Xccessors Standard: Cross-browser ECMAScript 5 accessors\n * http://purl.eligrey.com/github/Xccessors\n * \n * 2010-06-21\n * \n * By Eli Grey, http://eligrey.com\n * \n * A shim that partially implements Object.defineProperty,\n * Object.getOwnPropertyDescriptor, and Object.defineProperties in browsers that have\n * legacy __(define|lookup)[GS]etter__ support.\n * \n * Licensed under the X11/MIT License\n * See LICENSE.md\n*/\n\n(function () {\n 'use strict';\n var ObjectProto = Object.prototype,\n defineGetter = ObjectProto.__defineGetter__,\n defineSetter = ObjectProto.__defineSetter__,\n lookupGetter = ObjectProto.__lookupGetter__,\n lookupSetter = ObjectProto.__lookupSetter__,\n hasOwnProp = ObjectProto.hasOwnProperty;\n \n if (defineGetter && defineSetter && lookupGetter && lookupSetter) {\n\n if (!Object.defineProperty) {\n Object.defineProperty = function (obj, prop, descriptor) {\n if (arguments.length < 3) { // all arguments required\n throw new TypeError(\"Arguments not optional\");\n }\n \n prop += \"\"; // convert prop to string\n\n if (hasOwnProp.call(descriptor, \"value\")) {\n if (!lookupGetter.call(obj, prop) && !lookupSetter.call(obj, prop)) {\n // data property defined and no pre-existing accessors\n obj[prop] = descriptor.value;\n }\n\n if ((hasOwnProp.call(descriptor, \"get\") ||\n hasOwnProp.call(descriptor, \"set\"))) \n {\n // descriptor has a value prop but accessor already exists\n throw new TypeError(\"Cannot specify an accessor and a value\");\n }\n }\n\n // can't switch off these features in ECMAScript 3\n // so throw a TypeError if any are false\n if (!(descriptor.writable && descriptor.enumerable && \n descriptor.configurable))\n {\n throw new TypeError(\n \"This implementation of Object.defineProperty does not support\" +\n \" false for configurable, enumerable, or writable.\"\n );\n }\n \n if (descriptor.get) {\n defineGetter.call(obj, prop, descriptor.get);\n }\n if (descriptor.set) {\n defineSetter.call(obj, prop, descriptor.set);\n }\n \n return obj;\n };\n }\n\n if (!Object.getOwnPropertyDescriptor) {\n Object.getOwnPropertyDescriptor = function (obj, prop) {\n if (arguments.length < 2) { // all arguments required\n throw new TypeError(\"Arguments not optional.\");\n }\n \n prop += \"\"; // convert prop to string\n\n var descriptor = {\n configurable: true,\n enumerable : true,\n writable : true\n },\n getter = lookupGetter.call(obj, prop),\n setter = lookupSetter.call(obj, prop);\n\n if (!hasOwnProp.call(obj, prop)) {\n // property doesn't exist or is inherited\n return descriptor;\n }\n if (!getter && !setter) { // not an accessor so return prop\n descriptor.value = obj[prop];\n return descriptor;\n }\n\n // there is an accessor, remove descriptor.writable;\n // populate descriptor.get and descriptor.set (IE's behavior)\n delete descriptor.writable;\n descriptor.get = descriptor.set = undefined;\n \n if (getter) {\n descriptor.get = getter;\n }\n if (setter) {\n descriptor.set = setter;\n }\n \n return descriptor;\n };\n }\n\n if (!Object.defineProperties) {\n Object.defineProperties = function (obj, props) {\n var prop;\n for (prop in props) {\n if (hasOwnProp.call(props, prop)) {\n Object.defineProperty(obj, prop, props[prop]);\n }\n }\n };\n }\n }\n}());\n\n// Begin dataset code\n\nif (!document.documentElement.dataset && \n // FF is empty while IE gives empty object\n (!Object.getOwnPropertyDescriptor(Element.prototype, 'dataset') ||\n !Object.getOwnPropertyDescriptor(Element.prototype, 'dataset').get)\n ) {\n var propDescriptor = {\n enumerable: true,\n get: function () {\n 'use strict';\n var i, \n that = this,\n HTML5_DOMStringMap, \n attrVal, attrName, propName,\n attribute,\n attributes = this.attributes,\n attsLength = attributes.length,\n toUpperCase = function (n0) {\n return n0.charAt(1).toUpperCase();\n },\n getter = function () {\n return this;\n },\n setter = function (attrName, value) {\n return (typeof value !== 'undefined') ? \n this.setAttribute(attrName, value) : \n this.removeAttribute(attrName);\n };\n try { // Simulate DOMStringMap w/accessor support\n // Test setting accessor on normal object\n ({}).__defineGetter__('test', function () {});\n HTML5_DOMStringMap = {};\n }\n catch (e1) { // Use a DOM object for IE8\n HTML5_DOMStringMap = document.createElement('div');\n }\n for (i = 0; i < attsLength; i++) {\n attribute = attributes[i];\n // Fix: This test really should allow any XML Name without \n // colons (and non-uppercase for XHTML)\n if (attribute && attribute.name && \n (/^data-\\w[\\w\\-]*$/).test(attribute.name)) {\n attrVal = attribute.value;\n attrName = attribute.name;\n // Change to CamelCase\n propName = attrName.substr(5).replace(/-./g, toUpperCase);\n try {\n Object.defineProperty(HTML5_DOMStringMap, propName, {\n enumerable: this.enumerable,\n get: getter.bind(attrVal || ''),\n set: setter.bind(that, attrName)\n });\n }\n catch (e2) { // if accessors are not working\n HTML5_DOMStringMap[propName] = attrVal;\n }\n }\n }\n return HTML5_DOMStringMap;\n }\n };\n try {\n // FF enumerates over element's dataset, but not \n // Element.prototype.dataset; IE9 iterates over both\n Object.defineProperty(Element.prototype, 'dataset', propDescriptor);\n } catch (e) {\n propDescriptor.enumerable = false; // IE8 does not allow setting to true\n Object.defineProperty(Element.prototype, 'dataset', propDescriptor);\n }\n}","/**\n * almGetAjaxParams\n * Build the data object to send with the Ajax request\n * \n * @param alm object\n * @param action string\n * @param queryType string \n * @since 3.6\n */\n\nexport function almGetAjaxParams(alm, action, queryType){\n\t\n\t// Defaults\n\tlet data = {\n id\t\t\t\t\t\t\t: alm.id,\n post_id\t\t\t\t\t: alm.post_id,\n slug : alm.slug,\n canonical_url : encodeURIComponent(alm.canonical_url),\n posts_per_page : alm.posts_per_page,\n page \t\t: alm.page,\n offset : alm.offset,\n post_type\t\t\t\t: alm.post_type,\n repeater\t\t\t\t\t: alm.repeater,\n seo_start_page \t: alm.start_page\n }; \n \n \n // Addons & Extensions\n if(alm.theme_repeater){\n data.theme_repeater = alm.theme_repeater;\n } \n if(alm.addons.paging){\n data.paging = alm.addons.paging;\n } \n if(alm.addons.preloaded){\n data.preloaded = alm.addons.preloaded;\n data.preloaded_amount = alm.addons.preloaded_amount;\n }\n if(alm.addons.cache === 'true'){\n data.cache_id = alm.addons.cache_id;\n data.cache_logged_in = alm.addons.cache_logged_in;\n }\t \n if(alm.acf_array){\n data.acf = alm.acf_array;\n } \n if(alm.cta_array){\n data.cta = alm.cta_array;\n } \n if(alm.comments_array){\n data.comments = alm.comments_array;\n } \n if(alm.nextpage_array){\n data.nextpage = alm.nextpage_array;\n } \n if(alm.single_post_array){\n data.single_post = alm.single_post_array;\n }\n if(alm.users_array){\n data.users = alm.users_array;\n }\n \n \n // Query data \n if(alm.listing.dataset.lang){\n data.lang = alm.listing.dataset.lang;\n }\n if(alm.listing.dataset.stickyPosts){\n data.sticky_posts = alm.listing.dataset.stickyPosts;\n }\n if(alm.listing.dataset.postFormat){\n data.post_format = alm.listing.dataset.postFormat;\n }\n if(alm.listing.dataset.category){\n data.category = alm.listing.dataset.category;\n }\n if(alm.listing.dataset.categoryAnd){\n data.category__and = alm.listing.dataset.categoryAnd;\n }\n if(alm.listing.dataset.categoryNotIn){\n data.category__not_in = alm.listing.dataset.categoryNotIn;\n }\n if(alm.listing.dataset.tag){\n data.tag = alm.listing.dataset.tag;\n }\n if(alm.listing.dataset.tagAnd){\n data.tag__and = alm.listing.dataset.tagAnd;\n }\n if(alm.listing.dataset.tagNotIn){\n data.tag__not_in = alm.listing.dataset.tagNotIn;\n }\n if(alm.listing.dataset.taxonomy){\n data.taxonomy = alm.listing.dataset.taxonomy;\n }\n if(alm.listing.dataset.taxonomyTerms){\n data.taxonomy_terms = alm.listing.dataset.taxonomyTerms;\n }\n if(alm.listing.dataset.taxonomyOperator){\n data.taxonomy_operator = alm.listing.dataset.taxonomyOperator;\n }\n if(alm.listing.dataset.taxonomyRelation){\n data.taxonomy_relation = alm.listing.dataset.taxonomyRelation;\n }\n if(alm.listing.dataset.metaKey){\n data.meta_key = alm.listing.dataset.metaKey;\n }\n if(alm.listing.dataset.metaValue){\n data.meta_value = alm.listing.dataset.metaValue;\n }\n if(alm.listing.dataset.metaCompare){\n data.meta_compare = alm.listing.dataset.metaCompare;\n }\n if(alm.listing.dataset.metaRelation){\n data.meta_relation = alm.listing.dataset.metaRelation;\n }\n if(alm.listing.dataset.metaType){\n data.meta_type = alm.listing.dataset.metaType;\n }\n if(alm.listing.dataset.author){\n data.author = alm.listing.dataset.author;\n }\n if(alm.listing.dataset.year){\n data.year = alm.listing.dataset.year;\n }\n if(alm.listing.dataset.month){\n data.month = alm.listing.dataset.month;\n }\n if(alm.listing.dataset.day){\n data.day = alm.listing.dataset.day;\n }\n if(alm.listing.dataset.order){\n data.order = alm.listing.dataset.order;\n }\n if(alm.listing.dataset.orderby){\n data.orderby = alm.listing.dataset.orderby;\n }\n if(alm.listing.dataset.postStatus){\n data.post_status = alm.listing.dataset.postStatus;\n }\n if(alm.listing.dataset.postIn){\n data.post__in = alm.listing.dataset.postIn;\n }\n if(alm.listing.dataset.postNotIn){\n data.post__not_in = alm.listing.dataset.postNotIn;\n }\n if(alm.listing.dataset.exclude){\n data.exclude = alm.listing.dataset.exclude;\n }\n if(alm.listing.dataset.search){\n data.search = alm.listing.dataset.search;\n }\n if(alm.listing.dataset.s){\n data.search = alm.listing.dataset.s;\n }\n if(alm.listing.dataset.customArgs){\n data.custom_args = alm.listing.dataset.customArgs;\n }\n \n data.action = action;\n data.query_type = queryType;\n \n return data;\n \n}\n\n\n\n/**\n * almGetRestParams\n * Build the REST API data object to send with REST API request\n * \n * @param alm object\n * @since 3.6\n */\nexport function almGetRestParams(alm){\n\tlet data = {\n\t\tid\t\t\t\t\t\t: alm.id,\n\t post_id\t\t\t\t: alm.post_id,\n\t posts_per_page : alm.posts_per_page,\n\t page : alm.page,\n\t offset : alm.offset,\n\t slug : alm.slug,\n\t canonical_url : encodeURIComponent(alm.canonical_url),\n\t post_type : alm.post_type,\n\t post_format : alm.listing.dataset.postFormat,\n\t category : alm.listing.dataset.category,\n\t category__not_in : alm.listing.dataset.categoryNotIn,\n\t tag : alm.listing.dataset.tag,\n\t tag__not_in : alm.listing.dataset.tagNotIn,\n\t taxonomy : alm.listing.dataset.taxonomy,\n\t taxonomy_terms : alm.listing.dataset.taxonomyTerms,\n\t taxonomy_operator : alm.listing.dataset.taxonomyOperator,\n\t taxonomy_relation : alm.listing.dataset.taxonomyRelation,\n\t meta_key : alm.listing.dataset.metaKey,\n\t meta_value : alm.listing.dataset.metaValue,\n\t meta_compare : alm.listing.dataset.metaCompare,\n\t meta_relation : alm.listing.dataset.metaRelation,\n\t meta_type : alm.listing.dataset.metaType,\n\t author : alm.listing.dataset.author,\n\t year : alm.listing.dataset.year,\n\t month : alm.listing.dataset.month,\n\t day : alm.listing.dataset.day,\n\t post_status : alm.listing.dataset.postStatus,\n\t order : alm.listing.dataset.order,\n\t orderby : alm.listing.dataset.orderby,\n\t post__in : alm.listing.dataset.postIn,\n\t post__not_in : alm.listing.dataset.postNotIn,\n\t search : alm.listing.dataset.search,\n\t s \t\t: alm.listing.dataset.s,\n\t custom_args : alm.listing.dataset.customArgs,\n\t lang : alm.lang,\n\t preloaded : alm.addons.preloaded,\n\t preloaded_amount : alm.addons.preloaded_amount,\n\t seo_start_page : alm.start_page\n };\n \n return data;\n}","/**\n * srcsetPolyfill\n * A Safari srcset polyfill to get Masonry and ImagesLoaded working\n *\n * @param {*} container Element\n * @param {*} ua String\n * @since 5.0.2\n */\nlet srcsetPolyfill = (container = null, ua = '') => {\n\t\n\t// Exit if no container\n\tif( !container ){ \n\t\treturn false;\n\t}\n\t\n\t// Exit if useragent is Chrome, Safari or Windows\n\tif( (ua.indexOf('Safari') > -1 && ua.indexOf('Chrome') != -1) || (ua.indexOf('Firefox') > -1) || (ua.indexOf('Windows') > -1) ){\n\t\treturn false;\n\t}\n\t\n\t// Get the images\n\tlet imgs = container.querySelectorAll('img[srcset]:not(.alm-loaded)');\n\t\n\t// Loop images\n\tfor ( var i=0; i < imgs.length; i++ ) {\n\t\tlet img = imgs[i];\n\t\timg.classList.add('alm-loaded');\n\t\timg.outerHTML = img.outerHTML;\n\t}\n}\nexport default srcsetPolyfill;","/**\n * Remove empty HTML nodes from array of nodes\n * Remove all empty text nodes from SEO and Filters return\n *\n * @param {*} nodes | Array of HTML nodes\n * @return array\n * @since 5.1.3\n */\nlet stripEmptyNodes = function( nodes = '' ) {\n\tif(!nodes){\n \treturn false;\n\t}\t\n\t\n\t// Exclude these nodeNames from being rendered\n\tlet nodeNameArray = ['#text', '#comment'];\n\t\n\t// Filter data by nodeName \n\tlet results = nodes.filter(node => (nodeNameArray.indexOf(node.nodeName.toLowerCase()) === -1) );\n \n // Send the results\n return results; \n \n};\nexport default stripEmptyNodes;\n","/** \n * Display alm_debug results\n * https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_debug\n *\n * @param {object} alm Global alm object\n * @since 5.1.6 \n */\n \nlet almDebug = function(alm){ \n\tif(alm && alm.debug){\n\t\tconsole.log('alm_debug info:', alm.debug); \n\t} \n}\n\nexport default almDebug;","/**\n * Fade element in\n * @param {*} element\n * @param {*} speed\n */ \nlet almFadeIn = (element, speed) => {\n\tif(speed == 0){\n\t\telement.style.opacity = 1;\n\t\telement.style.height = 'auto';\n\t\t\n\t} else {\n\t\tspeed = speed/10;\n\t\tlet op = 0; // initial opacity\n\t\tlet timer = setInterval(function () { \n\t\t\tif (op > 0.9){\n\t\t\t\telement.style.opacity = 1;\n\t\t\t\tclearInterval(timer);\n\t\t\t}\n\t\t\telement.style.opacity = op;\n\t\t\top += 0.1;\n\t\t}, speed);\n\t\telement.style.height = 'auto';\n\t}\n}\nexport default almFadeIn; ","/**\n * Fade element out\n * @param {*} element\n * @param {*} speed\n */ \nlet almFadeOut = (element, speed) => {\n\tspeed = speed/10;\n\telement.style.opacity = 0.5;\n\tlet fadeEffect = setInterval(function () {\n\t\tif (element.style.opacity < 0.1) {\n\t\t\tclearInterval(fadeEffect);\n\t\t} else {\n\t\t\telement.style.opacity -= 0.1;\n\t\t}\n\t}, speed);\n}\nexport default almFadeOut; ","import almFadeIn from './fadeIn';\nimport almFadeOut from './fadeOut';\n\n/**\n * almFilter(type, speed, data)\n * Filter Ajax Load More\n *\n * @param {*} transition string;\n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} type string;\n * @since 2.6.1\n */\n \nlet almFilter = function(transition, speed, data, type = \"filter\") {\n if(data.target){ // if a target has been specified\n\t let target = document.querySelectorAll('.ajax-load-more-wrap[data-id=\"'+ data.target + '\"]');\n\t\ttarget.forEach(function(element){\n\t\t\talmFilterTransition(transition, speed, data, element, type);\t \n\t\t});\n } else { // Target not specified\n\t let alm = document.querySelectorAll('.ajax-load-more-wrap');\n alm.forEach(function(element){\n\t\t\talmFilterTransition(transition, speed, data, element, type);\t \n\t\t});\n }\n}; \nexport default almFilter;\n\n\n\n/**\n * almFilterTransition(transition, speed, data, el)\n * Transition Ajax Load More\n *\n * @param {*} transition string;\n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} el element;\n * @param {*} type string;\n * @since 2.13.1\n */\nlet almFilterTransition = function(transition, speed, data, el, type){ \n \n if(transition === 'fade' || transition === 'masonry'){ \n\t // Fade, Masonry transition\n\t \n\t switch (type){\n\t\t case 'filter' :\n\t\t \tel.classList.add('alm-is-filtering');\n\t\t \talmFadeOut(el, speed);\n\t\t \t\n\t\t break;\n\t\t \n\t\t case 'tab' : \n\t\t \tel.classList.add('alm-loading');\n\t\t \tlet new_el = el.querySelector('.alm-listing');\n\t\t \tel.style.height = new_el.offsetHeight + 'px';\n\t\t \talmFadeOut(new_el, speed);\n\t\t \t\n\t\t break;\n\t }\n\t \n\t // Move to next function\n setTimeout(function(){\n\t almCompleteFilterTransition(speed, data, el, type);\n\t }, speed);\n\t \n }else{ \n\t // No transition\n\t el.classList.add('alm-is-filtering');\n almCompleteFilterTransition(speed, data, el, type);\n }\n \n}; \n\n\n\n/** \n * almCompleteFilterTransition\n * Complete the filter transition\n * \n * @param {*} speed number;\n * @param {*} data obj;\n * @param {*} el element;\n * @param {*} type string;\n * @since 3.3\n */\nlet almCompleteFilterTransition = (speed, data, el, type) => {\t\n\t\n\t// Get `.alm-btn-wrap` element\n\tlet btnWrap = el.querySelector('.alm-btn-wrap');\n\t\n\t// Get `.alm-listing` element\n\tlet listing = el.querySelectorAll('.alm-listing');\n\t\n\t// Loop over all .alm-listing divs\n\t[...listing].forEach(function(e){\n\t\te.innerHTML = ''; // Clear listings\n\t});\n\t \n\t// Get Load More button\n\tlet button = btnWrap.querySelector('.alm-load-more-btn');\n\tif(button){\n\t\tbutton.classList.remove('done');// Reset Button \n\t}\n\t\n\t// Clear paging navigation\n let paging = btnWrap.querySelector('.alm-paging');\n if(paging){\n paging.style.opacity = 0;\n }\n\t\n\t// Dispatch Filters\n\talmSetFilters(speed, data, el, type);\n\t\n}\n\n \n\n/**\n * almSetFilters\n * Set filter parameters on .alm-listing element\n *\n * @param {*} speed number;\n * @param {*} el element;\n * @param {*} data string;\n * @param {*} type string;\n * @updated 3.3\n * @since 2.6.1\n */\nlet almSetFilters = function(speed = 250, data, el, type){\n\t \n // Get `alm-listing` container\n let listing = el.querySelector('.alm-listing') || el.querySelector('.alm-comments'); \n if(!listing){\n\t return false;\n }\n \n switch (type){\t \n\t case 'filter' : \n\t\t // Update data attributes\n\t\t\tfor (let [key, value] of Object.entries(data)) {\n\t\t\t\t// Convert camelCase data atts back to dashes (-).\n\t\t key = key.replace(/\\W+/g, '-').replace(/([a-z\\d])([A-Z])/g, '$1-$2').toLowerCase(); \n\t\t\t\tlisting.setAttribute('data-'+ key, value);\n\t\t\t}\n\t\t\t// Fade ALM back (Filters only)\n\t\t\talmFadeIn(el, speed);\n\t\tbreak;\n\t\t\n\t\tcase 'tab' :\n\t\t\t// Update `data-tab-template` attribute\n\t\t\tlisting.setAttribute('data-preloaded', 'false');\n\t\t\tlisting.setAttribute('data-pause', 'false');\n\t\t\tlisting.setAttribute('data-tab-template', data.tabTemplate);\n\t\t\n\t\tbreak; \n\t}\n \n\t\n\t// Re-initiate Ajax Load More\n\tlet target = ''; \n if(data.target){\n // Target has been specified\n target = document.querySelector('.ajax-load-more-wrap[data-id=\"'+ data.target + '\"]');\n if(target){\n\t window.almInit(target);\n } \n } else {\n // Target not specified\n target = document.querySelector('.ajax-load-more-wrap');\n if(target){\n\t window.almInit(target);\n } \n }\n \n switch (type){\t \n\t \n\t case 'filter' : \n\t\t // Filters Complete \n\t\t if (typeof almFilterComplete === 'function') { // Standard Filtering\n\t\t almFilterComplete();\n\t\t }\n\t\t // Filter Add-on Complete\n\t\t if (typeof almFiltersAddonComplete === \"function\") { // Filters Add-on\n\t\t almFiltersAddonComplete(el);\n\t\t }\n\t\tbreak;\n\t\t\n\t\tcase 'tab' :\n\t\t\t// Tabs Complete \n\t\t if (typeof almTabsComplete === 'function') { // Standard Filtering\n\t\t almTabsComplete();\n\t\t }\t\t\n\t\tbreak; \n\t\t\n\t}\n \n};\n","import almDomParser from '../helpers/almDomParser';\n\n/**\n * insertScript\n * Search nodes for <script/> tags and run scripts.\n * Scripts cannot run with appendChild or innerHTML so this is necessary to function.\n * \n * @since 5.0\n */ \nlet insertScript = {\n\t\n\tinit: function(node){\n\t\tif ( this.isScript(node) === true ) {\n\t\t\tnode.parentNode.replaceChild( this.clone(node) , node );\n\t\t}\n\t\telse {\n\t\t\tlet i = 0;\n\t\t\tlet children = node.childNodes;\n\t\t\t\n\t\t\tif(children === undefined){\n let parser = new DOMParser(); \n let data = parser.parseFromString(node, 'text/html');\n if(data){\n children = data.body.childNodes;\n }\n }\n\t\t\twhile ( i < children.length ) {\n\t\t\t\tthis.replace( children[i++] );\n\t\t\t}\n\t\t}\t\t\t\n\t\treturn node;\n\t},\n\t\n\treplace: function(node) {\n\t\tif ( this.isScript(node) === true ) {\n\t\t\tnode.parentNode.replaceChild( this.clone(node) , node );\n\t\t}\n\t\telse {\n\t\t\tlet i = 0;\n\t\t\tlet children = node.childNodes;\n\t\t\twhile (i < children.length) {\n\t\t\t\tthis.replace( children[i++] );\n\t\t\t}\n\t\t}\t\n\t return node;\n\t},\n\t\n\tisScript: function(node){\n\t\treturn node.tagName === 'SCRIPT';\n\t},\n\t\n\tclone: function(node){\n\t\tlet script = document.createElement(\"script\");\n\t\tscript.text = node.innerHTML;\n\t\tfor( let i = node.attributes.length-1; i >= 0; i-- ) {\n\t\t\tscript.setAttribute( node.attributes[i].name, node.attributes[i].value );\n\t\t}\n\t\treturn script;\n\t}\n\t\n}\nexport default insertScript; \n","import almFadeIn from './fadeIn';\nimport almAppendChildren from '../helpers/almAppendChildren';\nimport almDomParser from '../helpers/almDomParser';\nimport srcsetPolyfill from '../helpers/srcsetPolyfill';\nlet imagesLoaded = require('imagesloaded');\n\n/**\n * almMasonry\n * Function to trigger built-in Ajax Load More Masonry\n * \n * @param {object} alm\n * @param {boolean} init\n * @param {boolean} filtering \n * @since 3.1\n * @updated 5.0.2\n*/\n\nlet msnry = '';\nlet almMasonry = (alm, init, filtering) => {\t\n\t\n\tlet container = alm.listing;\n\tlet html = alm.html;\n\t\n\tlet selector = alm.masonry_selector;\n\tlet columnWidth = alm.masonry_columnwidth;\n\tlet animation = alm.masonry_animation;\n\tlet horizontalOrder = alm.masonry_horizontalorder;\n\tlet speed = alm.speed;\t\n\tlet masonry_init = alm.masonry_init;\n \n let duration = (speed+100)/1000 +'s'; // Add 100 for some delay\n let hidden = 'scale(0.5)';\n let visible = 'scale(1)';\n \n if(animation === 'zoom-out'){\n hidden = 'translateY(-20px) scale(1.25)'; \n visible = 'translateY(0) scale(1)';\n }\n \n if(animation === 'slide-up'){\n hidden = 'translateY(50px)';\n visible = 'translateY(0)';\n } \n \n if(animation === 'slide-down'){\n hidden = 'translateY(-50px)';\n visible = 'translateY(0)';\n } \n \n if(animation === 'none'){\n hidden = 'translateY(0)'; \n visible = 'translateY(0)';\n }\n \n // columnWidth\n if(columnWidth){\n\t if(!isNaN(columnWidth)){// Check if number\n\t\t columnWidth = parseInt(columnWidth);\n\t\t}\n } else { // No columnWidth, use the selector\n\t columnWidth = selector;\n }\n \n // horizontalOrder\n horizontalOrder = (horizontalOrder === 'true') ? true : false;\n \n\tif(!filtering){\n \t\n\t\t// First Run\n\t\tif(masonry_init && init){\t\t\t\n\t\t\t\n\t\t\tsrcsetPolyfill(container, alm.ua); // Run srcSet polyfill\t\t\t\n\t\t\t\n\t\t\timagesLoaded( container, function() {\n\t\t\t\t\n\t\t\t\tlet defaults = {\n\t\t\t\t\titemSelector: selector,\n\t\t\t\t\ttransitionDuration: duration,\n\t\t\t\t\tcolumnWidth: columnWidth,\n\t\t\t\t\thorizontalOrder: horizontalOrder,\n hiddenStyle: {\n transform: hidden,\n opacity: 0\n },\n visibleStyle: {\n transform: visible,\n opacity: 1\n } \n }\n \n // Get custom Masonry options (https://masonry.desandro.com/options.html)\n let alm_masonry_vars = window.alm_masonry_vars;\n if(alm_masonry_vars){ \n\t\t Object.keys(alm_masonry_vars).forEach(function(key) {\t// Loop object\tto create key:prop\t\t\t\n\t\t\t\t\t\tdefaults[key] = alm_masonry_vars[key];\t\t\t\t\t\n\t\t\t\t\t});\n\t\t\t\t}\t\t\t\t\n \n // Init Masonry, delay to allow time for items to be added to the page\n setTimeout(function(){\n \tmsnry = new Masonry( container, defaults );\n \t// Fade In\n\t\t\t\t\talmFadeIn(container.parentNode, speed); \n }, 100 );\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t});\n\t\t}\n\t\t\n\t\t// Standard / Append content\n\t\telse{\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t// Loop all items and create array of node elements\n\t\t\tlet data = almDomParser(html, 'text/html');\n\t\t\t\n\t\t\tif(data){ \t\n\t\t\t\t\n \t\t\t// Append elements listing\n \t\t\talmAppendChildren(alm.listing, data, 'masonry');\n \t\t\t\n \t\t\t// Run srcSet polyfill\n \t\t\tsrcsetPolyfill(container, alm.ua);\n \t\t\t\n \t\t\t// Confirm imagesLoaded & append\n \t\t\timagesLoaded( container, function() {\n\t\t\t\t\tmsnry.appended( data );\t\t\t\t\n\t\t\t\t});\n\t\t\t\t\n\t\t\t}\n\t\t}\n\n\t} else{\n \t\n\t\t// Reset\n\t\tmsnry.destroy(); // destroy masonry\n\t\tcontainer.parentNode.style.opacity = 0;\n\t\talmMasonry(alm, true, false);\n\t\t\n\t}\n\n};\n\nexport default almMasonry;\n\n\n\n","/** \n * Set the results text if required.\n * \n * @param {*} target The target HTML element\n * @param {*} html The HTML\n * @since 5.1\n */\nlet almNoResults = (target, html = '') => {\n\tif(html === ''){ \n\t\treturn false; // exit if empty\t\n\t}\n\t\n\t// Remove empty <p/> tags\n\thtml = html.replace(/(<p><\\/p>)+/g, '');\n\t\n\t// Append to DOM\n\ttarget.innerHTML = html; \n}\n\nexport default almNoResults;","import almFadeIn from './fadeIn';\nimport almFadeOut from './fadeOut';\n\nexport function showPlaceholder(alm){\n\tif(!alm || !alm.main || alm.addons.paging){\n return false; \n }\n if(alm.placeholder){ \n alm.placeholder.style.display = 'block';\n almFadeIn(alm.placeholder, 75);\n }\n}\n\n\nexport function hidePlaceholder(alm){ \n if(!alm || !alm.main || alm.addons.paging){\n return false; \n }\n if(alm.placeholder){\n almFadeOut(alm.placeholder, 75); \n setTimeout(function(){\n \talm.placeholder.style.display = 'none'; \n\t }, 75); \n }\n}","/** \n * Set the results text if required.\n * \n * @param {object} alm Global alm object\n * @param {string} type Type of results\n * @since 5.1\n */\nexport function almResultsText(alm, type = 'standard'){\n\tif(!alm.resultsText) return false;\t\n\tlet resultsType = (type === 'nextpage') ? 'nextpage' : 'standard';\n\t\n almGetResultsText(alm, resultsType); \n}\n\n\n\n/** \n * Get values for showing results text.\n * \n * @param {Object} alm\n * @param {String} type\n * @since 4.1\n */\nexport function almGetResultsText( alm, type = 'standard' ){\n \n\t\n\tif(!alm.resultsText) return false;\n\t\n\tlet current = 0;\n\tlet total = 0;\n\tlet preloaded = (alm.addons.preloaded === 'true') ? true : false;\n\tlet paging = (alm.addons.paging) ? true : false;\n\tlet posts_per_page = alm.orginal_posts_per_page;\n\t\n\tswitch (type) {\n \t\n \t// Nextpage\n \tcase 'nextpage' :\n\t\n current = parseInt(alm.localize.page);\n total = parseInt(alm.localize.total_posts);\n almRenderResultsText(alm.resultsText, current, total);\n \t\n \tbreak;\n \n \tdefault :\n \t\t\n \t\tcurrent = parseInt(alm.page) + 1; \t\t\n \t\ttotal = Math.ceil(alm.localize.total_posts / posts_per_page);\n \t\t\n \t\t// Add 1 page if Preloaded\n \t\tif(preloaded){\n\t \t\tcurrent = (paging) ? alm.page + 1 : current + 1;\n \t\t}\n \t\t\n almRenderResultsText(alm.resultsText, current, total);\n \t\n }\n}\n\n\n\n/** \n * Display `Showing {x} of {y} pages` text.\n *\n * @param {Object} alm\n * @param {String} type\n * @since 4.1\n */\nexport function almInitResultsText( alm, type = 'standard'){\n \n\tif(!alm.resultsText) return false;\n\t\n\tlet current = 0;\n\tlet total = Math.ceil(alm.localize.total_posts / alm.orginal_posts_per_page);\n\t\n\tswitch (type) {\n \t\n \t// Nextpage\n \tcase 'nextpage' : \t\n \t\n almRenderResultsText(alm.resultsText, alm.addons.nextpage_startpage, alm.localize.total_posts);\n \t\n break;\n \t\n \t// Preloaded\n \tcase 'preloaded' : \n \t \n current = (alm.addons.paging && alm.addons.seo) ? parseInt(alm.start_page) + 1 : parseInt(alm.page) + 1; \n almRenderResultsText(alm.resultsText, current, total);\n \t\n \tbreak;\n \t\n \tdefault :\n \t\n \t console.log('Nothing to set.');\n \t \n\t}\n\t\n}\n\n\n/** \n * Render `Showing {x} of {y} results` text.\n * \n * @param {Element} el\n * @param {String} current\n * @param {String} total\n * @since 4.1\n */\nlet almRenderResultsText = function(el, current, total){\n \n total = parseInt(total);\n let text = (total > 0) ? alm_localize.results_text : alm_localize.no_results_text;\n \n if(total > 0){\n text = text.replace('{num}', `<span class=\"alm-results-current\">${current}</span>`);\n text = text.replace('{total}', `<span class=\"alm-results-total\">${total}</span>`);\n el.innerHTML = text; \n } else {\n el.innerHTML = text; \n }\n}\n","/**\n * setFocus\n * Set user focus to improve accessibility after load events\n * \n * @param {Boolean} init\n * @param {String} preloaded\n * @param {HTMLElement} element\n * @param {Boolean} alm_is_filtering\n * @since 5.1\n */ \nlet setFocus = (init = true, preloaded = 'false', element, alm_is_filtering = false) => {\n\t\n\tif(!alm_is_filtering){\n\t\tif( (init || !element) && preloaded !== 'true' ){\n\t return false; // Exit if first run\n\t }\n }\n\n // Check if element is an array.\n // If `transition_container=\"false\"`, `element` will be an array.\n /*\n let is_array = Array.isArray(element);\n element = (is_array) ? element[0] : element;\n */ \n \n // Set tabIndex on `.alm-reveal`\n\telement.setAttribute('tabIndex', '-1');\n element.style.outline = 'none';\n \n // Get Parent container\n // If `.alm-listing` set parent to element\n let parent = (!element.classList.contains('alm-listing')) ? element.parentNode : element;\t\n \n // Scroll Container\n\tlet scrollContainer = parent.dataset.scrollContainer;\n\t\n\t// If scroll container, move it, not the window.\t\n\tif(scrollContainer){\t\t\t\t\n\t\tlet container = document.querySelector(scrollContainer);\n\t\tif(container){\n\t\t\tlet left = container.scrollLeft;\n\t\t\tlet top = container.scrollTop;\n\t\t\telement.focus();\n\t\t\tcontainer.scrollLeft = left;\n\t\t\tcontainer.scrollTop = top;\t\t\t\n\t\t}\t\t\n\t} \n\t\n\t// Move window\n\telse { \n\t\tlet x = window.scrollX;\n\t\tlet y = window.scrollY;\n\t\telement.focus();\n\t\twindow.scrollTo(x, y);\n\t}\n\t\n}\nexport default setFocus; \n","import * as resultsText from './resultsText';\n\n/** \n * Set localized variables\n *\n * @param {object} alm Global alm object\n * @since 4.1 \n */\n \nlet setLocalizedVars = function(alm){ \n \n let type = 'standard'; \n\n\t// Current Page `page`\n\tif(alm.addons.nextpage){\n \ttype = 'nextpage';\n \tif(alm.addons.paging){\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + 1); \t\n \t} else {\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + parseInt(alm.addons.nextpage_startpage) + 1);\n \t}\n } else {\n alm.AjaxLoadMore.setLocalizedVar('page', parseInt(alm.page) + 1);\n }\n \n // Total Posts `total_posts`.\n // Only update if !Preloaded && !Nextpage\n if(alm.addons.preloaded !== 'true' && !alm.addons.nextpage){\n \talm.AjaxLoadMore.setLocalizedVar('total_posts', alm.totalposts);\n } \n \n\t// Set Results Text (if required)\n resultsText.almResultsText(alm, type); \n \n}\n\nexport default setLocalizedVars;","\"use strict\";\n\nrequire(\"core-js/es6\");\n\nrequire(\"core-js/fn/array/includes\");\n\nrequire(\"core-js/fn/string/pad-start\");\n\nrequire(\"core-js/fn/string/pad-end\");\n\nrequire(\"core-js/fn/symbol/async-iterator\");\n\nrequire(\"core-js/fn/object/get-own-property-descriptors\");\n\nrequire(\"core-js/fn/object/values\");\n\nrequire(\"core-js/fn/object/entries\");\n\nrequire(\"core-js/fn/promise/finally\");\n\nrequire(\"core-js/web\");\n\nrequire(\"regenerator-runtime/runtime\");","require(\"./lib/noConflict\");\n","require('../modules/es6.symbol');\nrequire('../modules/es6.object.create');\nrequire('../modules/es6.object.define-property');\nrequire('../modules/es6.object.define-properties');\nrequire('../modules/es6.object.get-own-property-descriptor');\nrequire('../modules/es6.object.get-prototype-of');\nrequire('../modules/es6.object.keys');\nrequire('../modules/es6.object.get-own-property-names');\nrequire('../modules/es6.object.freeze');\nrequire('../modules/es6.object.seal');\nrequire('../modules/es6.object.prevent-extensions');\nrequire('../modules/es6.object.is-frozen');\nrequire('../modules/es6.object.is-sealed');\nrequire('../modules/es6.object.is-extensible');\nrequire('../modules/es6.object.assign');\nrequire('../modules/es6.object.is');\nrequire('../modules/es6.object.set-prototype-of');\nrequire('../modules/es6.object.to-string');\nrequire('../modules/es6.function.bind');\nrequire('../modules/es6.function.name');\nrequire('../modules/es6.function.has-instance');\nrequire('../modules/es6.parse-int');\nrequire('../modules/es6.parse-float');\nrequire('../modules/es6.number.constructor');\nrequire('../modules/es6.number.to-fixed');\nrequire('../modules/es6.number.to-precision');\nrequire('../modules/es6.number.epsilon');\nrequire('../modules/es6.number.is-finite');\nrequire('../modules/es6.number.is-integer');\nrequire('../modules/es6.number.is-nan');\nrequire('../modules/es6.number.is-safe-integer');\nrequire('../modules/es6.number.max-safe-integer');\nrequire('../modules/es6.number.min-safe-integer');\nrequire('../modules/es6.number.parse-float');\nrequire('../modules/es6.number.parse-int');\nrequire('../modules/es6.math.acosh');\nrequire('../modules/es6.math.asinh');\nrequire('../modules/es6.math.atanh');\nrequire('../modules/es6.math.cbrt');\nrequire('../modules/es6.math.clz32');\nrequire('../modules/es6.math.cosh');\nrequire('../modules/es6.math.expm1');\nrequire('../modules/es6.math.fround');\nrequire('../modules/es6.math.hypot');\nrequire('../modules/es6.math.imul');\nrequire('../modules/es6.math.log10');\nrequire('../modules/es6.math.log1p');\nrequire('../modules/es6.math.log2');\nrequire('../modules/es6.math.sign');\nrequire('../modules/es6.math.sinh');\nrequire('../modules/es6.math.tanh');\nrequire('../modules/es6.math.trunc');\nrequire('../modules/es6.string.from-code-point');\nrequire('../modules/es6.string.raw');\nrequire('../modules/es6.string.trim');\nrequire('../modules/es6.string.iterator');\nrequire('../modules/es6.string.code-point-at');\nrequire('../modules/es6.string.ends-with');\nrequire('../modules/es6.string.includes');\nrequire('../modules/es6.string.repeat');\nrequire('../modules/es6.string.starts-with');\nrequire('../modules/es6.string.anchor');\nrequire('../modules/es6.string.big');\nrequire('../modules/es6.string.blink');\nrequire('../modules/es6.string.bold');\nrequire('../modules/es6.string.fixed');\nrequire('../modules/es6.string.fontcolor');\nrequire('../modules/es6.string.fontsize');\nrequire('../modules/es6.string.italics');\nrequire('../modules/es6.string.link');\nrequire('../modules/es6.string.small');\nrequire('../modules/es6.string.strike');\nrequire('../modules/es6.string.sub');\nrequire('../modules/es6.string.sup');\nrequire('../modules/es6.date.now');\nrequire('../modules/es6.date.to-json');\nrequire('../modules/es6.date.to-iso-string');\nrequire('../modules/es6.date.to-string');\nrequire('../modules/es6.date.to-primitive');\nrequire('../modules/es6.array.is-array');\nrequire('../modules/es6.array.from');\nrequire('../modules/es6.array.of');\nrequire('../modules/es6.array.join');\nrequire('../modules/es6.array.slice');\nrequire('../modules/es6.array.sort');\nrequire('../modules/es6.array.for-each');\nrequire('../modules/es6.array.map');\nrequire('../modules/es6.array.filter');\nrequire('../modules/es6.array.some');\nrequire('../modules/es6.array.every');\nrequire('../modules/es6.array.reduce');\nrequire('../modules/es6.array.reduce-right');\nrequire('../modules/es6.array.index-of');\nrequire('../modules/es6.array.last-index-of');\nrequire('../modules/es6.array.copy-within');\nrequire('../modules/es6.array.fill');\nrequire('../modules/es6.array.find');\nrequire('../modules/es6.array.find-index');\nrequire('../modules/es6.array.species');\nrequire('../modules/es6.array.iterator');\nrequire('../modules/es6.regexp.constructor');\nrequire('../modules/es6.regexp.exec');\nrequire('../modules/es6.regexp.to-string');\nrequire('../modules/es6.regexp.flags');\nrequire('../modules/es6.regexp.match');\nrequire('../modules/es6.regexp.replace');\nrequire('../modules/es6.regexp.search');\nrequire('../modules/es6.regexp.split');\nrequire('../modules/es6.promise');\nrequire('../modules/es6.map');\nrequire('../modules/es6.set');\nrequire('../modules/es6.weak-map');\nrequire('../modules/es6.weak-set');\nrequire('../modules/es6.typed.array-buffer');\nrequire('../modules/es6.typed.data-view');\nrequire('../modules/es6.typed.int8-array');\nrequire('../modules/es6.typed.uint8-array');\nrequire('../modules/es6.typed.uint8-clamped-array');\nrequire('../modules/es6.typed.int16-array');\nrequire('../modules/es6.typed.uint16-array');\nrequire('../modules/es6.typed.int32-array');\nrequire('../modules/es6.typed.uint32-array');\nrequire('../modules/es6.typed.float32-array');\nrequire('../modules/es6.typed.float64-array');\nrequire('../modules/es6.reflect.apply');\nrequire('../modules/es6.reflect.construct');\nrequire('../modules/es6.reflect.define-property');\nrequire('../modules/es6.reflect.delete-property');\nrequire('../modules/es6.reflect.enumerate');\nrequire('../modules/es6.reflect.get');\nrequire('../modules/es6.reflect.get-own-property-descriptor');\nrequire('../modules/es6.reflect.get-prototype-of');\nrequire('../modules/es6.reflect.has');\nrequire('../modules/es6.reflect.is-extensible');\nrequire('../modules/es6.reflect.own-keys');\nrequire('../modules/es6.reflect.prevent-extensions');\nrequire('../modules/es6.reflect.set');\nrequire('../modules/es6.reflect.set-prototype-of');\nmodule.exports = require('../modules/_core');\n","require('../../modules/es7.array.includes');\nmodule.exports = require('../../modules/_core').Array.includes;\n","require('../../modules/es7.object.entries');\nmodule.exports = require('../../modules/_core').Object.entries;\n","require('../../modules/es7.object.get-own-property-descriptors');\nmodule.exports = require('../../modules/_core').Object.getOwnPropertyDescriptors;\n","require('../../modules/es7.object.values');\nmodule.exports = require('../../modules/_core').Object.values;\n","'use strict';\nrequire('../../modules/es6.promise');\nrequire('../../modules/es7.promise.finally');\nmodule.exports = require('../../modules/_core').Promise['finally'];\n","require('../../modules/es7.string.pad-end');\nmodule.exports = require('../../modules/_core').String.padEnd;\n","require('../../modules/es7.string.pad-start');\nmodule.exports = require('../../modules/_core').String.padStart;\n","require('../../modules/es7.symbol.async-iterator');\nmodule.exports = require('../../modules/_wks-ext').f('asyncIterator');\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","var cof = require('./_cof');\nmodule.exports = function (it, msg) {\n if (typeof it != 'number' && cof(it) != 'Number') throw TypeError(msg);\n return +it;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","'use strict';\nvar at = require('./_string-at')(true);\n\n // `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? at(S, index).length : 1);\n};\n","module.exports = function (it, Constructor, name, forbiddenField) {\n if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) {\n throw TypeError(name + ': incorrect invocation!');\n } return it;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\n\nmodule.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {\n var O = toObject(this);\n var len = toLength(O.length);\n var to = toAbsoluteIndex(target, len);\n var from = toAbsoluteIndex(start, len);\n var end = arguments.length > 2 ? arguments[2] : undefined;\n var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);\n var inc = 1;\n if (from < to && to < from + count) {\n inc = -1;\n from += count - 1;\n to += count - 1;\n }\n while (count-- > 0) {\n if (from in O) O[to] = O[from];\n else delete O[to];\n to += inc;\n from += inc;\n } return O;\n};\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nmodule.exports = function fill(value /* , start = 0, end = @length */) {\n var O = toObject(this);\n var length = toLength(O.length);\n var aLen = arguments.length;\n var index = toAbsoluteIndex(aLen > 1 ? arguments[1] : undefined, length);\n var end = aLen > 2 ? arguments[2] : undefined;\n var endPos = end === undefined ? length : toAbsoluteIndex(end, length);\n while (endPos > index) O[index++] = value;\n return O;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","var aFunction = require('./_a-function');\nvar toObject = require('./_to-object');\nvar IObject = require('./_iobject');\nvar toLength = require('./_to-length');\n\nmodule.exports = function (that, callbackfn, aLen, memo, isRight) {\n aFunction(callbackfn);\n var O = toObject(that);\n var self = IObject(O);\n var length = toLength(O.length);\n var index = isRight ? length - 1 : 0;\n var i = isRight ? -1 : 1;\n if (aLen < 2) for (;;) {\n if (index in self) {\n memo = self[index];\n index += i;\n break;\n }\n index += i;\n if (isRight ? index < 0 : length <= index) {\n throw TypeError('Reduce of empty array with no initial value');\n }\n }\n for (;isRight ? index >= 0 : length > index; index += i) if (index in self) {\n memo = callbackfn(memo, self[index], index, O);\n }\n return memo;\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","'use strict';\nvar aFunction = require('./_a-function');\nvar isObject = require('./_is-object');\nvar invoke = require('./_invoke');\nvar arraySlice = [].slice;\nvar factories = {};\n\nvar construct = function (F, len, args) {\n if (!(len in factories)) {\n for (var n = [], i = 0; i < len; i++) n[i] = 'a[' + i + ']';\n // eslint-disable-next-line no-new-func\n factories[len] = Function('F,a', 'return new F(' + n.join(',') + ')');\n } return factories[len](F, args);\n};\n\nmodule.exports = Function.bind || function bind(that /* , ...args */) {\n var fn = aFunction(this);\n var partArgs = arraySlice.call(arguments, 1);\n var bound = function (/* args... */) {\n var args = partArgs.concat(arraySlice.call(arguments));\n return this instanceof bound ? construct(fn, args.length, args) : invoke(fn, args, that);\n };\n if (isObject(fn.prototype)) bound.prototype = fn.prototype;\n return bound;\n};\n","// getting tag from 19.1.3.6 Object.prototype.toString()\nvar cof = require('./_cof');\nvar TAG = require('./_wks')('toStringTag');\n// ES3 wrong here\nvar ARG = cof(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (e) { /* empty */ }\n};\n\nmodule.exports = function (it) {\n var O, T, B;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n // builtinTag case\n : ARG ? cof(O)\n // ES3 arguments fallback\n : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","'use strict';\nvar dP = require('./_object-dp').f;\nvar create = require('./_object-create');\nvar redefineAll = require('./_redefine-all');\nvar ctx = require('./_ctx');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar $iterDefine = require('./_iter-define');\nvar step = require('./_iter-step');\nvar setSpecies = require('./_set-species');\nvar DESCRIPTORS = require('./_descriptors');\nvar fastKey = require('./_meta').fastKey;\nvar validate = require('./_validate-collection');\nvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\nvar getEntry = function (that, key) {\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return that._i[index];\n // frozen object case\n for (entry = that._f; entry; entry = entry.n) {\n if (entry.k == key) return entry;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = create(null); // index\n that._f = undefined; // first entry\n that._l = undefined; // last entry\n that[SIZE] = 0; // size\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n entry.r = true;\n if (entry.p) entry.p = entry.p.n = undefined;\n delete data[entry.i];\n }\n that._f = that._l = undefined;\n that[SIZE] = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = validate(this, NAME);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.n;\n var prev = entry.p;\n delete that._i[entry.i];\n entry.r = true;\n if (prev) prev.n = next;\n if (next) next.p = prev;\n if (that._f == entry) that._f = next;\n if (that._l == entry) that._l = prev;\n that[SIZE]--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n validate(this, NAME);\n var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.n : this._f) {\n f(entry.v, entry.k, this);\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(validate(this, NAME), key);\n }\n });\n if (DESCRIPTORS) dP(C.prototype, 'size', {\n get: function () {\n return validate(this, NAME)[SIZE];\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var entry = getEntry(that, key);\n var prev, index;\n // change existing entry\n if (entry) {\n entry.v = value;\n // create new entry\n } else {\n that._l = entry = {\n i: index = fastKey(key, true), // <- index\n k: key, // <- key\n v: value, // <- value\n p: prev = that._l, // <- previous entry\n n: undefined, // <- next entry\n r: false // <- removed\n };\n if (!that._f) that._f = entry;\n if (prev) prev.n = entry;\n that[SIZE]++;\n // add to index\n if (index !== 'F') that._i[index] = entry;\n } return that;\n },\n getEntry: getEntry,\n setStrong: function (C, NAME, IS_MAP) {\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n $iterDefine(C, NAME, function (iterated, kind) {\n this._t = validate(iterated, NAME); // target\n this._k = kind; // kind\n this._l = undefined; // previous\n }, function () {\n var that = this;\n var kind = that._k;\n var entry = that._l;\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n // get next entry\n if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n // or finish the iteration\n that._t = undefined;\n return step(1);\n }\n // return step by kind\n if (kind == 'keys') return step(0, entry.k);\n if (kind == 'values') return step(0, entry.v);\n return step(0, [entry.k, entry.v]);\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(NAME);\n }\n};\n","'use strict';\nvar redefineAll = require('./_redefine-all');\nvar getWeak = require('./_meta').getWeak;\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar createArrayMethod = require('./_array-methods');\nvar $has = require('./_has');\nvar validate = require('./_validate-collection');\nvar arrayFind = createArrayMethod(5);\nvar arrayFindIndex = createArrayMethod(6);\nvar id = 0;\n\n// fallback for uncaught frozen keys\nvar uncaughtFrozenStore = function (that) {\n return that._l || (that._l = new UncaughtFrozenStore());\n};\nvar UncaughtFrozenStore = function () {\n this.a = [];\n};\nvar findUncaughtFrozen = function (store, key) {\n return arrayFind(store.a, function (it) {\n return it[0] === key;\n });\n};\nUncaughtFrozenStore.prototype = {\n get: function (key) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) return entry[1];\n },\n has: function (key) {\n return !!findUncaughtFrozen(this, key);\n },\n set: function (key, value) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) entry[1] = value;\n else this.a.push([key, value]);\n },\n 'delete': function (key) {\n var index = arrayFindIndex(this.a, function (it) {\n return it[0] === key;\n });\n if (~index) this.a.splice(index, 1);\n return !!~index;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = id++; // collection id\n that._l = undefined; // leak store for uncaught frozen objects\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.3.3.2 WeakMap.prototype.delete(key)\n // 23.4.3.3 WeakSet.prototype.delete(value)\n 'delete': function (key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n return data && $has(data, this._i) && delete data[this._i];\n },\n // 23.3.3.4 WeakMap.prototype.has(key)\n // 23.4.3.4 WeakSet.prototype.has(value)\n has: function has(key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n return data && $has(data, this._i);\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var data = getWeak(anObject(key), true);\n if (data === true) uncaughtFrozenStore(that).set(key, value);\n else data[that._i] = value;\n return that;\n },\n ufstore: uncaughtFrozenStore\n};\n","'use strict';\nvar global = require('./_global');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar redefineAll = require('./_redefine-all');\nvar meta = require('./_meta');\nvar forOf = require('./_for-of');\nvar anInstance = require('./_an-instance');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar $iterDetect = require('./_iter-detect');\nvar setToStringTag = require('./_set-to-string-tag');\nvar inheritIfRequired = require('./_inherit-if-required');\n\nmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n var Base = global[NAME];\n var C = Base;\n var ADDER = IS_MAP ? 'set' : 'add';\n var proto = C && C.prototype;\n var O = {};\n var fixMethod = function (KEY) {\n var fn = proto[KEY];\n redefine(proto, KEY,\n KEY == 'delete' ? function (a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'has' ? function has(a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'get' ? function get(a) {\n return IS_WEAK && !isObject(a) ? undefined : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'add' ? function add(a) { fn.call(this, a === 0 ? 0 : a); return this; }\n : function set(a, b) { fn.call(this, a === 0 ? 0 : a, b); return this; }\n );\n };\n if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n new C().entries().next();\n }))) {\n // create collection constructor\n C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n redefineAll(C.prototype, methods);\n meta.NEED = true;\n } else {\n var instance = new C();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n var ACCEPT_ITERABLES = $iterDetect(function (iter) { new C(iter); }); // eslint-disable-line no-new\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new C();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n if (!ACCEPT_ITERABLES) {\n C = wrapper(function (target, iterable) {\n anInstance(target, C, NAME);\n var that = inheritIfRequired(new Base(), target, C);\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n return that;\n });\n C.prototype = proto;\n proto.constructor = C;\n }\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n // weak collections should not contains .clear method\n if (IS_WEAK && proto.clear) delete proto.clear;\n }\n\n setToStringTag(C, NAME);\n\n O[NAME] = C;\n $export($export.G + $export.W + $export.F * (C != Base), O);\n\n if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n return C;\n};\n","var core = module.exports = { version: '2.6.5' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","'use strict';\nvar $defineProperty = require('./_object-dp');\nvar createDesc = require('./_property-desc');\n\nmodule.exports = function (object, index, value) {\n if (index in object) $defineProperty.f(object, index, createDesc(0, value));\n else object[index] = value;\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","'use strict';\n// 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString()\nvar fails = require('./_fails');\nvar getTime = Date.prototype.getTime;\nvar $toISOString = Date.prototype.toISOString;\n\nvar lz = function (num) {\n return num > 9 ? num : '0' + num;\n};\n\n// PhantomJS / old WebKit has a broken implementations\nmodule.exports = (fails(function () {\n return $toISOString.call(new Date(-5e13 - 1)) != '0385-07-25T07:06:39.999Z';\n}) || !fails(function () {\n $toISOString.call(new Date(NaN));\n})) ? function toISOString() {\n if (!isFinite(getTime.call(this))) throw RangeError('Invalid time value');\n var d = this;\n var y = d.getUTCFullYear();\n var m = d.getUTCMilliseconds();\n var s = y < 0 ? '-' : y > 9999 ? '+' : '';\n return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) +\n '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) +\n 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) +\n ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';\n} : $toISOString;\n","'use strict';\nvar anObject = require('./_an-object');\nvar toPrimitive = require('./_to-primitive');\nvar NUMBER = 'number';\n\nmodule.exports = function (hint) {\n if (hint !== 'string' && hint !== NUMBER && hint !== 'default') throw TypeError('Incorrect hint');\n return toPrimitive(anObject(this), hint != NUMBER);\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var MATCH = require('./_wks')('match');\nmodule.exports = function (KEY) {\n var re = /./;\n try {\n '/./'[KEY](re);\n } catch (e) {\n try {\n re[MATCH] = false;\n return !'/./'[KEY](re);\n } catch (f) { /* empty */ }\n } return true;\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","'use strict';\nrequire('./es6.regexp.exec');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\nvar regexpExec = require('./_regexp-exec');\n\nvar SPECIES = wks('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = (function () {\n // Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length === 2 && result[0] === 'a' && result[1] === 'b';\n})();\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL ? !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n re.exec = function () { execCalled = true; return null; };\n if (KEY === 'split') {\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n }\n re[SYMBOL]('');\n return !execCalled;\n }) : undefined;\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var fns = exec(\n defined,\n SYMBOL,\n ''[KEY],\n function maybeCallNative(nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n }\n );\n var strfn = fns[0];\n var rxfn = fns[1];\n\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","var ctx = require('./_ctx');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar anObject = require('./_an-object');\nvar toLength = require('./_to-length');\nvar getIterFn = require('./core.get-iterator-method');\nvar BREAK = {};\nvar RETURN = {};\nvar exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n var iterFn = ITERATOR ? function () { return iterable; } : getIterFn(iterable);\n var f = ctx(fn, that, entries ? 2 : 1);\n var index = 0;\n var length, step, iterator, result;\n if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n // fast case for arrays with default iterator\n if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n if (result === BREAK || result === RETURN) return result;\n } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n result = call(iterator, f, step.value, entries);\n if (result === BREAK || result === RETURN) return result;\n }\n};\nexports.BREAK = BREAK;\nexports.RETURN = RETURN;\n","module.exports = require('./_shared')('native-function-to-string', Function.toString);\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","// fast apply, http://jsperf.lnkit.com/fast-apply/5\nmodule.exports = function (fn, args, that) {\n var un = that === undefined;\n switch (args.length) {\n case 0: return un ? fn()\n : fn.call(that);\n case 1: return un ? fn(args[0])\n : fn.call(that, args[0]);\n case 2: return un ? fn(args[0], args[1])\n : fn.call(that, args[0], args[1]);\n case 3: return un ? fn(args[0], args[1], args[2])\n : fn.call(that, args[0], args[1], args[2]);\n case 4: return un ? fn(args[0], args[1], args[2], args[3])\n : fn.call(that, args[0], args[1], args[2], args[3]);\n } return fn.apply(that, args);\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// check on default Array iterator\nvar Iterators = require('./_iterators');\nvar ITERATOR = require('./_wks')('iterator');\nvar ArrayProto = Array.prototype;\n\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n};\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","// 20.1.2.3 Number.isInteger(number)\nvar isObject = require('./_is-object');\nvar floor = Math.floor;\nmodule.exports = function isInteger(it) {\n return !isObject(it) && isFinite(it) && floor(it) === it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","// 7.2.8 IsRegExp(argument)\nvar isObject = require('./_is-object');\nvar cof = require('./_cof');\nvar MATCH = require('./_wks')('match');\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');\n};\n","// call something on iterator step with safe closing on error\nvar anObject = require('./_an-object');\nmodule.exports = function (iterator, fn, value, entries) {\n try {\n return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (e) {\n var ret = iterator['return'];\n if (ret !== undefined) anObject(ret.call(iterator));\n throw e;\n }\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","var ITERATOR = require('./_wks')('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var riter = [7][ITERATOR]();\n riter['return'] = function () { SAFE_CLOSING = true; };\n // eslint-disable-next-line no-throw-literal\n Array.from(riter, function () { throw 2; });\n} catch (e) { /* empty */ }\n\nmodule.exports = function (exec, skipClosing) {\n if (!skipClosing && !SAFE_CLOSING) return false;\n var safe = false;\n try {\n var arr = [7];\n var iter = arr[ITERATOR]();\n iter.next = function () { return { done: safe = true }; };\n arr[ITERATOR] = function () { return iter; };\n exec(arr);\n } catch (e) { /* empty */ }\n return safe;\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = {};\n","module.exports = false;\n","// 20.2.2.14 Math.expm1(x)\nvar $expm1 = Math.expm1;\nmodule.exports = (!$expm1\n // Old FF bug\n || $expm1(10) > 22025.465794806719 || $expm1(10) < 22025.4657948067165168\n // Tor Browser bug\n || $expm1(-2e-17) != -2e-17\n) ? function expm1(x) {\n return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;\n} : $expm1;\n","// 20.2.2.16 Math.fround(x)\nvar sign = require('./_math-sign');\nvar pow = Math.pow;\nvar EPSILON = pow(2, -52);\nvar EPSILON32 = pow(2, -23);\nvar MAX32 = pow(2, 127) * (2 - EPSILON32);\nvar MIN32 = pow(2, -126);\n\nvar roundTiesToEven = function (n) {\n return n + 1 / EPSILON - 1 / EPSILON;\n};\n\nmodule.exports = Math.fround || function fround(x) {\n var $abs = Math.abs(x);\n var $sign = sign(x);\n var a, result;\n if ($abs < MIN32) return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;\n a = (1 + EPSILON32 / EPSILON) * $abs;\n result = a - (a - $abs);\n // eslint-disable-next-line no-self-compare\n if (result > MAX32 || result != result) return $sign * Infinity;\n return $sign * result;\n};\n","// 20.2.2.20 Math.log1p(x)\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);\n};\n","// 20.2.2.28 Math.sign(x)\nmodule.exports = Math.sign || function sign(x) {\n // eslint-disable-next-line no-self-compare\n return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;\n};\n","var META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n