scrivito_sdk 1.13.0 → 1.14.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68d0161569abf071055e9f566f9d0f97b34be2d2ad9864ae2f806aac51e4b9cb
4
- data.tar.gz: 5f7c5d11ce663920247cb45560eeab30e554cb6abc7e28f9879957e49f5cbb78
3
+ metadata.gz: fafea87f3b24b09dee6b1241a19baac8ff3c1a32e17e1758fc6b164839425622
4
+ data.tar.gz: 006da0a3273cde28bbe6de6b9a04f2cc1d040e05b16de1d246758e27a77d4079
5
5
  SHA512:
6
- metadata.gz: 467440e1d1e4e1a1e3de9efd05671610702baa3abd1b859062e8e16a705fd5ad8340eafd10186ecdaa4968b458f228e4a5bb280469ed661c4d84f64bd88ed000
7
- data.tar.gz: 8b3fa51410b583095d94ac7c801bc03b40a5648fefb33d9b4cf9a97ca96e766a4154ef5392578edc92f17988b48bf94f64de2d62b7a8a7b39bb67a2b5aed0fc0
6
+ metadata.gz: 0c90e4ecd4931913dce340f7159bbe31b18cccacdc2faf3baa01e52f78755237217c557001f56aa1bae68b7bd3a0bef37ee299c60e903bfbdda8192e891122fe
7
+ data.tar.gz: 03e3f4ee6b17cbb626faa07d23b9a8f92ad70c1238c3f5d15922232c0bad15703dfb24e3cb275e91ff5fc29199c6fd5350d77fbdf96d8a69b410be022df2855e
data/README.md CHANGED
@@ -2,13 +2,17 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/scrivito_sdk.svg)](https://badge.fury.io/rb/scrivito_sdk)
4
4
 
5
+ Scrivito is a SaaS Content Management Service, built for digital agencies and medium to large
6
+ sized businesses.
7
+
5
8
  The Scrivito SDK makes CMS objects maintained by means of the cloud-based Scrivito CMS available
6
- to your Rails application. It offers easy-to-use functionality for rendering CMS content, doing
7
- searches, etc. For more information about Scrivito, please visit https://scrivito.com/.
9
+ to your Rails application. It offers easy-to-use functionality for rendering CMS content, performing
10
+ searches, etc. Please visit https://scrivito.com/rails/documentation for detailed explanations
11
+ of concepts and APIs, tutorials, and release notes.
8
12
 
9
13
  ## License
10
14
 
11
- Copyright (c) 2009 - 2016 Infopark AG (http://www.infopark.com)
15
+ Copyright (c) 2009 - 2018 Infopark AG (http://www.infopark.com)
12
16
 
13
17
  This software can be used and modified under the LGPL-3.0. Please refer to
14
18
  http://www.gnu.org/licenses/lgpl-3.0.html for the license text.
@@ -76,6 +76,10 @@ class CmsRouting < Struct.new(:request, :context, :scrivito_engine, :image_optio
76
76
  end
77
77
 
78
78
  def path_or_url_for_objs(obj, path_or_url, options)
79
+ if obj.binary?
80
+ return binary_obj_url(obj, path_or_url) || LINK_TO_EMPTY_BLOB
81
+ end
82
+
79
83
  if permalink_route_applicable?(obj) && route = find_route(:permalink)
80
84
  return route.generate(path_or_url, options.merge(permalink: obj.permalink))
81
85
  end
@@ -84,10 +88,6 @@ class CmsRouting < Struct.new(:request, :context, :scrivito_engine, :image_optio
84
88
  return route.generate(path_or_url, options)
85
89
  end
86
90
 
87
- if obj.binary?
88
- return binary_obj_url(obj, path_or_url) || LINK_TO_EMPTY_BLOB
89
- end
90
-
91
91
  if route = find_route(:slug_id)
92
92
  slug = obj.slug.present? ? obj.slug.sub(/^\//, '') : nil
93
93
 
@@ -457,7 +457,7 @@ scrivito_route '/*permalink', using: 'permalink', via: all
457
457
  config.api_key = 'secret123'
458
458
  end
459
459
 
460
- The values of the keys can be obtained from the dashboard at https://scrivito.com.
460
+ The values of the keys can be obtained from the dashboard at https://my.scrivito.com.
461
461
  }
462
462
  end
463
463
  end
@@ -6,6 +6,10 @@ module Scrivito
6
6
 
7
7
  attr_reader :uri
8
8
 
9
+ def self.user_agent
10
+ @user_agent ||= "rubysdk/#{Scrivito::GemInfo.version}"
11
+ end
12
+
9
13
  def self.request(request, timeout: nil, uri: nil)
10
14
  connection_pool_for(uri || Configuration.endpoint_uri).with do |connection|
11
15
  connection.request(request, timeout)
@@ -68,7 +72,7 @@ module Scrivito
68
72
 
69
73
  def request(request, timeout = nil)
70
74
  timeout ||= DEFAULT_TIMEOUT
71
- request['User-Agent'] = user_agent
75
+ request['User-Agent'] = ConnectionManager.user_agent
72
76
  ensure_started(timeout)
73
77
 
74
78
  # This should never happen!
@@ -200,9 +204,5 @@ module Scrivito
200
204
  connection.read_timeout = [ConnectionManager.minimum_read_timeout, timeout].max
201
205
  connection.ssl_timeout = [ConnectionManager.minimum_ssl_timeout, timeout].max
202
206
  end
203
-
204
- def user_agent
205
- @user_agent ||= "#{GemInfo.name}-#{GemInfo.version}"
206
- end
207
207
  end
208
208
  end
@@ -3,7 +3,7 @@ class ObjSearchEnumerator
3
3
  class BatchIterator
4
4
  def initialize(workspace, query, initial_batch)
5
5
  @query = query
6
- @executor = ObjSearchEnumerator::QueryExecutor.new(workspace)
6
+ @executor = Scrivito::ObjSearchEnumerator::QueryExecutor.new(workspace)
7
7
  @all_fetched_ids = Set.new
8
8
  @initial_batch = initial_batch
9
9
  end
@@ -40,7 +40,8 @@ module Scrivito
40
40
  def fetch_result(params, attribute_names)
41
41
  result = attribute_names.each_with_object({}) { |v, h| h[v] = [] }
42
42
 
43
- @batch = QueryExecutor.new(workspace).call(build_search_params(params))
43
+ @batch = Scrivito::ObjSearchEnumerator::QueryExecutor.new(workspace).call(
44
+ build_search_params(params))
44
45
  objs = workspace.objs.find(obj_ids_from_batch)
45
46
 
46
47
  @batch.facets.each_with_index do |facets_per_attribute, i|
@@ -85,7 +86,8 @@ module Scrivito
85
86
  end
86
87
  end
87
88
 
88
- results << ObjFacetValue.new(facet_hash['value'], facet_hash['total'], included_objs)
89
+ results << Scrivito::ObjFacetValue.new(
90
+ facet_hash['value'], facet_hash['total'], included_objs)
89
91
  end
90
92
 
91
93
  results
@@ -7,9 +7,9 @@ class ObjSearchEnumerator
7
7
 
8
8
  def call(query, continuation=nil, fetched_ids=[])
9
9
  query['continuation'] = continuation if continuation
10
- response = CmsBackend.search_objs(workspace, query)
10
+ response = Scrivito::CmsBackend.search_objs(workspace, query)
11
11
 
12
- ObjSearchEnumerator::Batch.new(
12
+ Scrivito::ObjSearchEnumerator::Batch.new(
13
13
  build_objs(response),
14
14
  response['total'].to_i,
15
15
  response['continuation'],
@@ -23,7 +23,7 @@ module Scrivito
23
23
  title: obj_class.description_for_editor,
24
24
  attributes: obj_class.attribute_definitions.map { |attr| convert_attribute(attr) },
25
25
  usesServerCallbacks: true,
26
- hideFromEditor: obj_class.hide_from_editor?,
26
+ hideInSelectionDialogs: obj_class.hide_from_editor?,
27
27
  }
28
28
  end
29
29
 
@@ -1,7 +1,7 @@
1
1
  ##
2
2
  ## Bundle of CA Root Certificates
3
3
  ##
4
- ## Certificate data from Mozilla as of: Tue Mar 13 10:33:11 2018 GMT
4
+ ## Certificate data from Mozilla as of: Fri May 25 09:55:48 2018 GMT
5
5
  ##
6
6
  ## This is a bundle of X.509 certificates of public Certificate Authorities
7
7
  ## (CA). These were automatically extracted from Mozilla's root certificates
@@ -1,2 +1,2 @@
1
1
  /*! Copyright (c) 2018 Infopark AG (https://scrivito.com) */
2
- !function(n){function t(o){if(e[o])return e[o].exports;var i=e[o]={i:o,l:!1,exports:{}};return n[o].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var e={};t.m=n,t.c=e,t.d=function(n,e,o){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:o})},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=581)}({138:function(n,t,e){"use strict";function o(){if(window.parent!==window){var n=window.parent.connectAppDocument;return n?n(window.document):void 0}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=o},253:function(n,t,e){"use strict";function o(){window.scrivito||(window.scrivito={}),window.scrivito.on||(window.scrivito.on=function(n,t){"content"===n&&document.addEventListener("DOMContentLoaded",function(){return t(window.document)})}),window.scrivito.in_editable_view||(window.scrivito.in_editable_view=function(){return!1})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=o},581:function(n,t,e){"use strict";function o(n){return n&&n.__esModule?n:{default:n}}var i=e(253),r=o(i),u=e(138),c=o(u),d=(0,c.default)();d?d.installRailsApi():(0,r.default)()}});
2
+ !function(n){function t(i){if(e[i])return e[i].exports;var o=e[i]={i:i,l:!1,exports:{}};return n[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var e={};t.m=n,t.c=e,t.d=function(n,e,i){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:i})},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=669)}({161:function(n,t,e){"use strict";function i(){if(window.parent!==window){var n=window.parent.connectAppDocument;return n?n(window.document):void 0}}t.a=i},290:function(n,t,e){"use strict";function i(){window.scrivito||(window.scrivito={}),window.scrivito.on||(window.scrivito.on=function(n,t){"content"===n&&document.addEventListener("DOMContentLoaded",function(){return t(window.document)})}),window.scrivito.in_editable_view||(window.scrivito.in_editable_view=function(){return!1})}t.a=i},669:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e(290),o=e(161),r=Object(o.a)();r?r.installRailsApi():Object(i.a)()}});
@@ -1,2 +1,2 @@
1
1
  /*! Copyright (c) 2018 Infopark AG (https://scrivito.com) */
2
- !function(n){function t(e){if(o[e])return o[e].exports;var r=o[e]={i:e,l:!1,exports:{}};return n[e].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var o={};t.m=n,t.c=o,t.d=function(n,o,e){t.o(n,o)||Object.defineProperty(n,o,{configurable:!1,enumerable:!0,get:e})},t.n=function(n){var o=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(o,"a",o),o},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=584)}({584:function(n,t,o){"use strict";!function(){if(window.parent===window){document.open(),document.close();var n=window.location;window.location="/scrivito"+n.pathname+n.search+n.hash}}()}});
2
+ !function(n){function o(e){if(t[e])return t[e].exports;var r=t[e]={i:e,l:!1,exports:{}};return n[e].call(r.exports,r,r.exports,o),r.l=!0,r.exports}var t={};o.m=n,o.c=t,o.d=function(n,t,e){o.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:e})},o.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return o.d(t,"a",t),t},o.o=function(n,o){return Object.prototype.hasOwnProperty.call(n,o)},o.p="",o(o.s=672)}({672:function(n,o){!function(){if(window.parent===window){document.open(),document.close();var n=window.location;window.location.assign("/scrivito".concat(n.pathname).concat(n.search).concat(n.hash))}}()}});
@@ -1,8 +1,8 @@
1
1
  /*! Copyright (c) 2018 Infopark AG (https://scrivito.com) */
2
- !function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=582)}([function(e,t,n){var r,i;(function(){function n(e){function t(t,n,r,i,o,a){for(;o>=0&&o<a;o+=e){var s=i?i[o]:o;r=n(r,t[s],s,t)}return r}return function(n,r,i,o){r=k(r,o,4);var a=!O(n)&&C.keys(n),s=(a||n).length,u=e>0?0:s-1;return arguments.length<3&&(i=n[a?a[u]:u],u+=e),t(n,r,i,a,u,s)}}function o(e){return function(t,n,r){n=E(n,r);for(var i=j(t),o=e>0?0:i-1;o>=0&&o<i;o+=e)if(n(t[o],o,t))return o;return-1}}function a(e,t,n){return function(r,i,o){var a=0,s=j(r);if("number"==typeof o)e>0?a=o>=0?o:Math.max(o+s,a):s=o>=0?Math.min(o+1,s):o+s+1;else if(n&&o&&s)return o=n(r,i),r[o]===i?o:-1;if(i!==i)return o=t(p.call(r,a,s),C.isNaN),o>=0?o+a:-1;for(o=e>0?a:s-1;o>=0&&o<s;o+=e)if(r[o]===i)return o;return-1}}function s(e,t){var n=I.length,r=e.constructor,i=C.isFunction(r)&&r.prototype||f,o="constructor";for(C.has(e,o)&&!C.contains(t,o)&&t.push(o);n--;)(o=I[n])in e&&e[o]!==i[o]&&!C.contains(t,o)&&t.push(o)}var u=this,c=u._,l=Array.prototype,f=Object.prototype,d=Function.prototype,h=l.push,p=l.slice,v=f.toString,m=f.hasOwnProperty,g=Array.isArray,y=Object.keys,b=d.bind,w=Object.create,_=function(){},C=function(e){return e instanceof C?e:this instanceof C?void(this._wrapped=e):new C(e)};void 0!==e&&e.exports&&(t=e.exports=C),t._=C,C.VERSION="1.8.3";var k=function(e,t,n){if(void 0===t)return e;switch(null==n?3:n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)};case 4:return function(n,r,i,o){return e.call(t,n,r,i,o)}}return function(){return e.apply(t,arguments)}},E=function(e,t,n){return null==e?C.identity:C.isFunction(e)?k(e,t,n):C.isObject(e)?C.matcher(e):C.property(e)};C.iteratee=function(e,t){return E(e,t,1/0)};var x=function(e,t){return function(n){var r=arguments.length;if(r<2||null==n)return n;for(var i=1;i<r;i++)for(var o=arguments[i],a=e(o),s=a.length,u=0;u<s;u++){var c=a[u];t&&void 0!==n[c]||(n[c]=o[c])}return n}},S=function(e){if(!C.isObject(e))return{};if(w)return w(e);_.prototype=e;var t=new _;return _.prototype=null,t},T=function(e){return function(t){return null==t?void 0:t[e]}},A=Math.pow(2,53)-1,j=T("length"),O=function(e){var t=j(e);return"number"==typeof t&&t>=0&&t<=A};C.each=C.forEach=function(e,t,n){t=k(t,n);var r,i;if(O(e))for(r=0,i=e.length;r<i;r++)t(e[r],r,e);else{var o=C.keys(e);for(r=0,i=o.length;r<i;r++)t(e[o[r]],o[r],e)}return e},C.map=C.collect=function(e,t,n){t=E(t,n);for(var r=!O(e)&&C.keys(e),i=(r||e).length,o=Array(i),a=0;a<i;a++){var s=r?r[a]:a;o[a]=t(e[s],s,e)}return o},C.reduce=C.foldl=C.inject=n(1),C.reduceRight=C.foldr=n(-1),C.find=C.detect=function(e,t,n){var r;if(void 0!==(r=O(e)?C.findIndex(e,t,n):C.findKey(e,t,n))&&-1!==r)return e[r]},C.filter=C.select=function(e,t,n){var r=[];return t=E(t,n),C.each(e,function(e,n,i){t(e,n,i)&&r.push(e)}),r},C.reject=function(e,t,n){return C.filter(e,C.negate(E(t)),n)},C.every=C.all=function(e,t,n){t=E(t,n);for(var r=!O(e)&&C.keys(e),i=(r||e).length,o=0;o<i;o++){var a=r?r[o]:o;if(!t(e[a],a,e))return!1}return!0},C.some=C.any=function(e,t,n){t=E(t,n);for(var r=!O(e)&&C.keys(e),i=(r||e).length,o=0;o<i;o++){var a=r?r[o]:o;if(t(e[a],a,e))return!0}return!1},C.contains=C.includes=C.include=function(e,t,n,r){return O(e)||(e=C.values(e)),("number"!=typeof n||r)&&(n=0),C.indexOf(e,t,n)>=0},C.invoke=function(e,t){var n=p.call(arguments,2),r=C.isFunction(t);return C.map(e,function(e){var i=r?t:e[t];return null==i?i:i.apply(e,n)})},C.pluck=function(e,t){return C.map(e,C.property(t))},C.where=function(e,t){return C.filter(e,C.matcher(t))},C.findWhere=function(e,t){return C.find(e,C.matcher(t))},C.max=function(e,t,n){var r,i,o=-1/0,a=-1/0;if(null==t&&null!=e){e=O(e)?e:C.values(e);for(var s=0,u=e.length;s<u;s++)(r=e[s])>o&&(o=r)}else t=E(t,n),C.each(e,function(e,n,r){((i=t(e,n,r))>a||i===-1/0&&o===-1/0)&&(o=e,a=i)});return o},C.min=function(e,t,n){var r,i,o=1/0,a=1/0;if(null==t&&null!=e){e=O(e)?e:C.values(e);for(var s=0,u=e.length;s<u;s++)(r=e[s])<o&&(o=r)}else t=E(t,n),C.each(e,function(e,n,r){((i=t(e,n,r))<a||i===1/0&&o===1/0)&&(o=e,a=i)});return o},C.shuffle=function(e){for(var t,n=O(e)?e:C.values(e),r=n.length,i=Array(r),o=0;o<r;o++)t=C.random(0,o),t!==o&&(i[o]=i[t]),i[t]=n[o];return i},C.sample=function(e,t,n){return null==t||n?(O(e)||(e=C.values(e)),e[C.random(e.length-1)]):C.shuffle(e).slice(0,Math.max(0,t))},C.sortBy=function(e,t,n){return t=E(t,n),C.pluck(C.map(e,function(e,n,r){return{value:e,index:n,criteria:t(e,n,r)}}).sort(function(e,t){var n=e.criteria,r=t.criteria;if(n!==r){if(n>r||void 0===n)return 1;if(n<r||void 0===r)return-1}return e.index-t.index}),"value")};var P=function(e){return function(t,n,r){var i={};return n=E(n,r),C.each(t,function(r,o){var a=n(r,o,t);e(i,r,a)}),i}};C.groupBy=P(function(e,t,n){C.has(e,n)?e[n].push(t):e[n]=[t]}),C.indexBy=P(function(e,t,n){e[n]=t}),C.countBy=P(function(e,t,n){C.has(e,n)?e[n]++:e[n]=1}),C.toArray=function(e){return e?C.isArray(e)?p.call(e):O(e)?C.map(e,C.identity):C.values(e):[]},C.size=function(e){return null==e?0:O(e)?e.length:C.keys(e).length},C.partition=function(e,t,n){t=E(t,n);var r=[],i=[];return C.each(e,function(e,n,o){(t(e,n,o)?r:i).push(e)}),[r,i]},C.first=C.head=C.take=function(e,t,n){if(null!=e)return null==t||n?e[0]:C.initial(e,e.length-t)},C.initial=function(e,t,n){return p.call(e,0,Math.max(0,e.length-(null==t||n?1:t)))},C.last=function(e,t,n){if(null!=e)return null==t||n?e[e.length-1]:C.rest(e,Math.max(0,e.length-t))},C.rest=C.tail=C.drop=function(e,t,n){return p.call(e,null==t||n?1:t)},C.compact=function(e){return C.filter(e,C.identity)};var N=function(e,t,n,r){for(var i=[],o=0,a=r||0,s=j(e);a<s;a++){var u=e[a];if(O(u)&&(C.isArray(u)||C.isArguments(u))){t||(u=N(u,t,n));var c=0,l=u.length;for(i.length+=l;c<l;)i[o++]=u[c++]}else n||(i[o++]=u)}return i};C.flatten=function(e,t){return N(e,t,!1)},C.without=function(e){return C.difference(e,p.call(arguments,1))},C.uniq=C.unique=function(e,t,n,r){C.isBoolean(t)||(r=n,n=t,t=!1),null!=n&&(n=E(n,r));for(var i=[],o=[],a=0,s=j(e);a<s;a++){var u=e[a],c=n?n(u,a,e):u;t?(a&&o===c||i.push(u),o=c):n?C.contains(o,c)||(o.push(c),i.push(u)):C.contains(i,u)||i.push(u)}return i},C.union=function(){return C.uniq(N(arguments,!0,!0))},C.intersection=function(e){for(var t=[],n=arguments.length,r=0,i=j(e);r<i;r++){var o=e[r];if(!C.contains(t,o)){for(var a=1;a<n&&C.contains(arguments[a],o);a++);a===n&&t.push(o)}}return t},C.difference=function(e){var t=N(arguments,!0,!0,1);return C.filter(e,function(e){return!C.contains(t,e)})},C.zip=function(){return C.unzip(arguments)},C.unzip=function(e){for(var t=e&&C.max(e,j).length||0,n=Array(t),r=0;r<t;r++)n[r]=C.pluck(e,r);return n},C.object=function(e,t){for(var n={},r=0,i=j(e);r<i;r++)t?n[e[r]]=t[r]:n[e[r][0]]=e[r][1];return n},C.findIndex=o(1),C.findLastIndex=o(-1),C.sortedIndex=function(e,t,n,r){n=E(n,r,1);for(var i=n(t),o=0,a=j(e);o<a;){var s=Math.floor((o+a)/2);n(e[s])<i?o=s+1:a=s}return o},C.indexOf=a(1,C.findIndex,C.sortedIndex),C.lastIndexOf=a(-1,C.findLastIndex),C.range=function(e,t,n){null==t&&(t=e||0,e=0),n=n||1;for(var r=Math.max(Math.ceil((t-e)/n),0),i=Array(r),o=0;o<r;o++,e+=n)i[o]=e;return i};var D=function(e,t,n,r,i){if(!(r instanceof t))return e.apply(n,i);var o=S(e.prototype),a=e.apply(o,i);return C.isObject(a)?a:o};C.bind=function(e,t){if(b&&e.bind===b)return b.apply(e,p.call(arguments,1));if(!C.isFunction(e))throw new TypeError("Bind must be called on a function");var n=p.call(arguments,2),r=function(){return D(e,r,t,this,n.concat(p.call(arguments)))};return r},C.partial=function(e){var t=p.call(arguments,1),n=function(){for(var r=0,i=t.length,o=Array(i),a=0;a<i;a++)o[a]=t[a]===C?arguments[r++]:t[a];for(;r<arguments.length;)o.push(arguments[r++]);return D(e,n,this,this,o)};return n},C.bindAll=function(e){var t,n,r=arguments.length;if(r<=1)throw new Error("bindAll must be passed function names");for(t=1;t<r;t++)n=arguments[t],e[n]=C.bind(e[n],e);return e},C.memoize=function(e,t){var n=function(r){var i=n.cache,o=""+(t?t.apply(this,arguments):r);return C.has(i,o)||(i[o]=e.apply(this,arguments)),i[o]};return n.cache={},n},C.delay=function(e,t){var n=p.call(arguments,2);return setTimeout(function(){return e.apply(null,n)},t)},C.defer=C.partial(C.delay,C,1),C.throttle=function(e,t,n){var r,i,o,a=null,s=0;n||(n={});var u=function(){s=!1===n.leading?0:C.now(),a=null,o=e.apply(r,i),a||(r=i=null)};return function(){var c=C.now();s||!1!==n.leading||(s=c);var l=t-(c-s);return r=this,i=arguments,l<=0||l>t?(a&&(clearTimeout(a),a=null),s=c,o=e.apply(r,i),a||(r=i=null)):a||!1===n.trailing||(a=setTimeout(u,l)),o}},C.debounce=function(e,t,n){var r,i,o,a,s,u=function(){var c=C.now()-a;c<t&&c>=0?r=setTimeout(u,t-c):(r=null,n||(s=e.apply(o,i),r||(o=i=null)))};return function(){o=this,i=arguments,a=C.now();var c=n&&!r;return r||(r=setTimeout(u,t)),c&&(s=e.apply(o,i),o=i=null),s}},C.wrap=function(e,t){return C.partial(t,e)},C.negate=function(e){return function(){return!e.apply(this,arguments)}},C.compose=function(){var e=arguments,t=e.length-1;return function(){for(var n=t,r=e[t].apply(this,arguments);n--;)r=e[n].call(this,r);return r}},C.after=function(e,t){return function(){if(--e<1)return t.apply(this,arguments)}},C.before=function(e,t){var n;return function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=null),n}},C.once=C.partial(C.before,2);var M=!{toString:null}.propertyIsEnumerable("toString"),I=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];C.keys=function(e){if(!C.isObject(e))return[];if(y)return y(e);var t=[];for(var n in e)C.has(e,n)&&t.push(n);return M&&s(e,t),t},C.allKeys=function(e){if(!C.isObject(e))return[];var t=[];for(var n in e)t.push(n);return M&&s(e,t),t},C.values=function(e){for(var t=C.keys(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=e[t[i]];return r},C.mapObject=function(e,t,n){t=E(t,n);for(var r,i=C.keys(e),o=i.length,a={},s=0;s<o;s++)r=i[s],a[r]=t(e[r],r,e);return a},C.pairs=function(e){for(var t=C.keys(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=[t[i],e[t[i]]];return r},C.invert=function(e){for(var t={},n=C.keys(e),r=0,i=n.length;r<i;r++)t[e[n[r]]]=n[r];return t},C.functions=C.methods=function(e){var t=[];for(var n in e)C.isFunction(e[n])&&t.push(n);return t.sort()},C.extend=x(C.allKeys),C.extendOwn=C.assign=x(C.keys),C.findKey=function(e,t,n){t=E(t,n);for(var r,i=C.keys(e),o=0,a=i.length;o<a;o++)if(r=i[o],t(e[r],r,e))return r},C.pick=function(e,t,n){var r,i,o={},a=e;if(null==a)return o;C.isFunction(t)?(i=C.allKeys(a),r=k(t,n)):(i=N(arguments,!1,!1,1),r=function(e,t,n){return t in n},a=Object(a));for(var s=0,u=i.length;s<u;s++){var c=i[s],l=a[c];r(l,c,a)&&(o[c]=l)}return o},C.omit=function(e,t,n){if(C.isFunction(t))t=C.negate(t);else{var r=C.map(N(arguments,!1,!1,1),String);t=function(e,t){return!C.contains(r,t)}}return C.pick(e,t,n)},C.defaults=x(C.allKeys,!0),C.create=function(e,t){var n=S(e);return t&&C.extendOwn(n,t),n},C.clone=function(e){return C.isObject(e)?C.isArray(e)?e.slice():C.extend({},e):e},C.tap=function(e,t){return t(e),e},C.isMatch=function(e,t){var n=C.keys(t),r=n.length;if(null==e)return!r;for(var i=Object(e),o=0;o<r;o++){var a=n[o];if(t[a]!==i[a]||!(a in i))return!1}return!0};var L=function(e,t,n,r){if(e===t)return 0!==e||1/e==1/t;if(null==e||null==t)return e===t;e instanceof C&&(e=e._wrapped),t instanceof C&&(t=t._wrapped);var i=v.call(e);if(i!==v.call(t))return!1;switch(i){case"[object RegExp]":case"[object String]":return""+e==""+t;case"[object Number]":return+e!=+e?+t!=+t:0==+e?1/+e==1/t:+e==+t;case"[object Date]":case"[object Boolean]":return+e==+t}var o="[object Array]"===i;if(!o){if("object"!=typeof e||"object"!=typeof t)return!1;var a=e.constructor,s=t.constructor;if(a!==s&&!(C.isFunction(a)&&a instanceof a&&C.isFunction(s)&&s instanceof s)&&"constructor"in e&&"constructor"in t)return!1}n=n||[],r=r||[];for(var u=n.length;u--;)if(n[u]===e)return r[u]===t;if(n.push(e),r.push(t),o){if((u=e.length)!==t.length)return!1;for(;u--;)if(!L(e[u],t[u],n,r))return!1}else{var c,l=C.keys(e);if(u=l.length,C.keys(t).length!==u)return!1;for(;u--;)if(c=l[u],!C.has(t,c)||!L(e[c],t[c],n,r))return!1}return n.pop(),r.pop(),!0};C.isEqual=function(e,t){return L(e,t)},C.isEmpty=function(e){return null==e||(O(e)&&(C.isArray(e)||C.isString(e)||C.isArguments(e))?0===e.length:0===C.keys(e).length)},C.isElement=function(e){return!(!e||1!==e.nodeType)},C.isArray=g||function(e){return"[object Array]"===v.call(e)},C.isObject=function(e){var t=typeof e;return"function"===t||"object"===t&&!!e},C.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(e){C["is"+e]=function(t){return v.call(t)==="[object "+e+"]"}}),C.isArguments(arguments)||(C.isArguments=function(e){return C.has(e,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(C.isFunction=function(e){return"function"==typeof e||!1}),C.isFinite=function(e){return isFinite(e)&&!isNaN(parseFloat(e))},C.isNaN=function(e){return C.isNumber(e)&&e!==+e},C.isBoolean=function(e){return!0===e||!1===e||"[object Boolean]"===v.call(e)},C.isNull=function(e){return null===e},C.isUndefined=function(e){return void 0===e},C.has=function(e,t){return null!=e&&m.call(e,t)},C.noConflict=function(){return u._=c,this},C.identity=function(e){return e},C.constant=function(e){return function(){return e}},C.noop=function(){},C.property=T,C.propertyOf=function(e){return null==e?function(){}:function(t){return e[t]}},C.matcher=C.matches=function(e){return e=C.extendOwn({},e),function(t){return C.isMatch(t,e)}},C.times=function(e,t,n){var r=Array(Math.max(0,e));t=k(t,n,1);for(var i=0;i<e;i++)r[i]=t(i);return r},C.random=function(e,t){return null==t&&(t=e,e=0),e+Math.floor(Math.random()*(t-e+1))},C.now=Date.now||function(){return(new Date).getTime()};var F={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},R=C.invert(F),B=function(e){var t=function(t){return e[t]},n="(?:"+C.keys(e).join("|")+")",r=RegExp(n),i=RegExp(n,"g");return function(e){return e=null==e?"":""+e,r.test(e)?e.replace(i,t):e}};C.escape=B(F),C.unescape=B(R),C.result=function(e,t,n){var r=null==e?void 0:e[t];return void 0===r&&(r=n),C.isFunction(r)?r.call(e):r};var z=0;C.uniqueId=function(e){var t=++z+"";return e?e+t:t},C.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var W=/(.)^/,q={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},H=/\\|'|\r|\n|\u2028|\u2029/g,U=function(e){return"\\"+q[e]};C.template=function(e,t,n){!t&&n&&(t=n),t=C.defaults({},t,C.templateSettings);var r=RegExp([(t.escape||W).source,(t.interpolate||W).source,(t.evaluate||W).source].join("|")+"|$","g"),i=0,o="__p+='";e.replace(r,function(t,n,r,a,s){return o+=e.slice(i,s).replace(H,U),i=s+t.length,n?o+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?o+="'+\n((__t=("+r+"))==null?'':__t)+\n'":a&&(o+="';\n"+a+"\n__p+='"),t}),o+="';\n",t.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{var a=new Function(t.variable||"obj","_",o)}catch(e){throw e.source=o,e}var s=function(e){return a.call(this,e,C)};return s.source="function("+(t.variable||"obj")+"){\n"+o+"}",s},C.chain=function(e){var t=C(e);return t._chain=!0,t};var V=function(e,t){return e._chain?C(t).chain():t};C.mixin=function(e){C.each(C.functions(e),function(t){var n=C[t]=e[t];C.prototype[t]=function(){var e=[this._wrapped];return h.apply(e,arguments),V(this,n.apply(C,e))}})},C.mixin(C),C.each(["pop","push","reverse","shift","sort","splice","unshift"],function(e){var t=l[e];C.prototype[e]=function(){var n=this._wrapped;return t.apply(n,arguments),"shift"!==e&&"splice"!==e||0!==n.length||delete n[0],V(this,n)}}),C.each(["concat","join","slice"],function(e){var t=l[e];C.prototype[e]=function(){return V(this,t.apply(this._wrapped,arguments))}}),C.prototype.value=function(){return this._wrapped},C.prototype.valueOf=C.prototype.toJSON=C.prototype.value,C.prototype.toString=function(){return""+this._wrapped},r=[],void 0!==(i=function(){return C}.apply(t,r))&&(e.exports=i)}).call(this)},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=function(e){function t(t,n){var r=this.constructor;void 0===n&&(n=!0);var i=e.call(this,t)||this,o=r.prototype;if(Object.setPrototypeOf?Object.setPrototypeOf(i,o):i.__proto__=o,i._captureStackTrace=n,n)if(Error.captureStackTrace)Error.captureStackTrace(i,i.constructor);else{var a=void 0;try{throw new Error}catch(e){a=e.stack}Object.defineProperty(i,"stack",{value:a})}return i}return r(t,e),Object.defineProperty(t.prototype,"name",{get:function(){return this.constructor.name},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"captureStackTrace",{get:function(){return!!this._captureStackTrace},enumerable:!0,configurable:!0}),t}(Error);t.ScrivitoError=i;var o=function(e){function t(t,n,r){var i=e.call(this,t)||this;return i.httpCode=n,i.backendCode=r,i}return r(t,e),t.for=function(e,n,r){return"binary.unprocessable.image.transform.source.too_large"===r?new m(e,n,r):r&&-1!==r.indexOf("binary.unprocessable.image.transform.source.")?new g(e,n,r):new t(e,n,r)},t}(i);t.ClientError=o;var a=function(e){function t(t,n,r){return e.call(this,t,n,r)||this}return r(t,e),t}(o);t.AccessDeniedError=a;var s=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(i);t.ArgumentError=s;var u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t}(i);t.CommunicationError=u;var c=function(e){function t(t,n){var r=e.call(this,t)||this;return r.httpCode=n,r}return r(t,e),t}(u);t.BackendError=c;var l=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(i);t.InternalError=l;var f=function(e){function t(t){var n=this,r=t.status;return n=e.call(this,0===r?t.statusText:t.responseText)||this,n.httpCode=r,n.response=t,n}return r(t,e),t}(u);t.NetworkError=f;var d=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t}(u);t.RequestFailedError=d;var h=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t}(i);t.RateLimitExceededError=h;var p=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(i);t.ResourceNotFoundError=p;var v=function(e){function t(t,n,r,i){var o=e.call(this,t,n,r)||this;return o.details=i||{},o}return r(t,e),t}(o);t.UnauthorizedError=v;var m=function(e){function t(t,n,r){return e.call(this,t,n,r)||this}return r(t,e),t}(o);t.TransformationSourceTooLargeError=m;var g=function(e){function t(t,n,r){return e.call(this,t,n,r)||this}return r(t,e),t}(o);t.TransformationSourceInvalidError=g;var y=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(l);t.TranslationError=y;var b=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(l);t.NavigateToEmptyBinaryError=b;var w=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(l);t.CurrentPageNotFoundError=w;var _=function(e){function t(t){return e.call(this,t)||this}return r(t,e),t}(y);t.InterpolationError=_},,function(e,t,n){"use strict";function r(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function i(e){return e&&e.__esModule?e:{default:e}}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e){if(!e)throw new I.ArgumentError('Please provide an obj class as the "_objClass" property.')}function f(e){var t={},n={};return M.default.each(e,function(e,r){if(M.default.isArray(e)&&"widgetlist"===M.default.first(e)){var i=M.default.map(M.default.last(e),function(e){return A.default.newWithSerializedAttributes(e)}),o=(0,B.camelCase)(r);n[o]=[i,["widgetlist"]]}else t[r]=e}),t._id||(t._id=H.generateId()),[t,n]}function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return"/"===e?["/"].concat(a(t)):d(h(e),[e].concat(a(t)))}function h(e){var t=e.split("/");return t.pop(),1===t.length?"/":t.join("/")}function p(e){var t=["_path"];if(M.default.difference(M.default.keys(e),t).length)throw new I.ArgumentError('Currently only "_path" copy option is supported.')}Object.defineProperty(t,"__esModule",{value:!0});var v=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),m=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},g=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=n(131),b=i(y),w=n(186),_=i(w),C=n(43),k=n(53),E=r(k),x=n(99),S=r(x),T=n(30),A=i(T),j=n(48),O=i(j),P=n(100),N=i(P),D=n(0),M=i(D),I=n(1),L=n(64),F=i(L),R=n(103),B=n(19),z=n(104),W=n(5),q={_id:"id",_obj_class:"objClass",_path:"path",_permalink:"permalink",_created_at:"createdAt",_created_by:"createdBy",_last_changed:"lastChanged",_last_changed_by:"lastChangedBy"},H=function(e){function t(e){s(this,t);var n=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return n.objData=e,n}return c(t,e),g(t,null,[{key:"get",value:function(e){var t=this.getIncludingDeleted(e);if(t&&!t.isDeleted())return t}},{key:"getIncludingDeleted",value:function(e){var n=E.get(e);if(n){var r=new t(n);if(!r.isFinallyDeleted())return r}}},{key:"create",value:function(e){var t=scrivito.typeInfo.normalizeAttrs(e);l(t._objClass),t._id||(t._id=[this.generateId()]);var n={_id:t._id,_obj_class:t._objClass};return this.createWithSerializedAttributes(scrivito.typeInfo.unwrapAttributes(n),M.default.omit(e,"_objClass","_id"))}},{key:"addChildWithSerializedAttributes",value:function(e,n){var r=t.generateId();return this.createWithSerializedAttributes(M.default.extend({},n,{_id:r,_path:e+"/"+r}))}},{key:"createWithSerializedAttributes",value:function(e,n){if(!n)return this.createWithSerializedAttributes.apply(this,a(f(e)));var r=E.createObjData(e._id);r.update(e);var i=new t(r);return i.update(n),i}},{key:"generateId",value:function(){return(0,R.randomId)()}},{key:"all",value:function(){return(new O.default).batchSize(1e3)}},{key:"root",value:function(){return t.getByPath("/")}},{key:"where",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return(new O.default).and(e,t,n,r)}},{key:"getByPath",value:function(e){var t=(0,z.firstValueFromIterable)(this.where("_path","equals",e));if(t)return t}},{key:"getByPermalink",value:function(e){var t=this.where("_permalink","equals",e),n=(0,z.firstValueFromIterable)(t);if(n)return n}}]),g(t,[{key:"id",value:function(){return this._current._id}},{key:"objClass",value:function(){return this._current._obj_class}},{key:"obj",value:function(){return this}},{key:"createdAt",value:function(){return(0,C.parseStringToDate)(this._current._created_at)}},{key:"createdBy",value:function(){return this._current._created_by}},{key:"lastChanged",value:function(){return this._current._last_changed?(0,C.parseStringToDate)(this._current._last_changed):null}},{key:"lastChangedBy",value:function(){return this._current._last_changed_by?this._current._last_changed_by:null}},{key:"version",value:function(){return this._current._version}},{key:"path",value:function(){return this._current._path||null}},{key:"permalink",value:function(){return this._current._permalink||null}},{key:"parentPath",value:function(){if(this.path()&&"/"!==this.path())return h(this.path())}},{key:"parent",value:function(){var e=this.parentPath();if(e)return t.getByPath(e)}},{key:"hasConflicts",value:function(){return!!this._current._conflicts}},{key:"modification",value:function(){return this._current._deleted||this._current._marked_deleted?"deleted":this._current._modification||null}},{key:"isModified",value:function(){return!!this.modification()}},{key:"isNew",value:function(){return"new"===this.modification()}},{key:"isEdited",value:function(){return"edited"===this.modification()}},{key:"isDeleted",value:function(){return"deleted"===this.modification()}},{key:"isFinallyDeleted",value:function(){return!!this._current._deleted}},{key:"contentLength",value:function(){return this._binaryData("contentLength")}},{key:"contentType",value:function(){return this._binaryData("contentType")}},{key:"contentUrl",value:function(){return this._binaryData("url")}},{key:"metadata",value:function(){return this._binaryData("metadata")}},{key:"children",value:function(){if(this.path()){var e=t.all().and("_parentPath","equals",this.path());return(0,z.arrayFromIterable)(e)}return[]}},{key:"hasChildren",value:function(){return!!this.children().length}},{key:"orderedChildren",value:function(){var e=this.children(),t=this.get("childOrder","referencelist");return M.default.isArray(t)?M.default.sortBy(e,function(e){var n=M.default.invoke(t,"id"),r=n.indexOf(e.id());return-1===r?t.length:r}):e}},{key:"backlinks",value:function(){return(0,z.arrayFromIterable)(t.where("*","linksTo",this))}},{key:"ancestors",value:function(){var e=this.parentPath();return e?d(e).map(function(e){return t.getByPath(e)}):[]}},{key:"update",value:function(e){var t=this,n=scrivito.typeInfo.normalizeAttrs(e);(0,W.withBatchedUpdates)(function(){t._persistWidgets(t,n);var e=S.serialize(n);t.objData.update(e)}),this._linkResolution.start()}},{key:"destroy",value:function(){this.update({_markedDeleted:[!0]})}},{key:"insertWidget",value:function(e,t){var n=t.before,r=t.after,i=(n||r).id(),s=this._widgetPlacementFor(i),u=s.attributeValue,c=s.attributeName,l=s.container,f=s.index,d=n?f:f+1,h=[].concat(a(u.slice(0,d)),[e],a(u.slice(d)));l.update(o({},c,[h,"widgetlist"]))}},{key:"removeWidget",value:function(e){var t=this.fieldContainingWidget(e);t.update(M.default.reject(t.get(),function(t){return t.equals(e)}))}},{key:"copyAsync",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return p(e),this._copyAttributes().then(function(n){var r=M.default.extend(n,e),i=t.createWithSerializedAttributes(r);return i.finishSaving().then(function(){return i})})}},{key:"moveToAsync",value:function(e){return this.update({_path:[e+"/"+this.id()]}),this.finishSaving()}},{key:"markResolvedAsync",value:function(){return this.update({_conflicts:[null]}),this.finishSaving()}},{key:"finishSaving",value:function(){var e=this;return this._linkResolution.finishResolving().then(function(){return e.objData.finishSaving()})}},{key:"equals",value:function(e){return e instanceof t&&this.id()===e.id()}},{key:"widget",value:function(e){return this.widgetData(e)?A.default.build(e,this):null}},{key:"widgets",value:function(){var e=this;return M.default.map(M.default.keys(this._widgetPool),function(t){return e.widget(t)})}},{key:"widgetData",value:function(e){return this._widgetPool[e]}},{key:"fieldContainingWidget",value:function(e){var t=this._widgetPlacementFor(e.id()),n=t.container,r=t.attributeName;return n.field(r,"widgetlist")}},{key:"generateWidgetId",value:function(){for(var e=0;e<10;e++){var t=(0,R.randomHex)();if(!this.widget(t))return t}throw new I.InternalError("Could not generate a new unused widget id.")}},{key:"serializeAttributes",value:function(){var e=m(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"serializeAttributes",this).call(this);return delete e._conflicts,delete e._modification,delete e._created_at,delete e._created_by,delete e._last_changed,delete e._last_changed_by,e}},{key:"slug",value:function(){var e=this.get("title","string");return(0,_.default)(e)}},{key:"toPrettyPrint",value:function(){return"[object "+this.objClass()+' id="'+this.id()+'"]'}},{key:"_binaryData",value:function(e){var t=this.get("blob","binary");return t&&t.raw()[e]()}},{key:"_hasParentPath",value:function(){return this.path()&&"/"!==this.path()}},{key:"_copyAttributes",value:function(){var e=t.generateId(),n=this.serializeAttributes(),r=[];return M.default.each(n,function(t,i){if("_"===i[0])return void delete n[i];var o=v(t,2),a=o[0],s=o[1];if("binary"===a&&s){var u=new F.default({idToCopy:s.id}),c=u.intoId(e).then(function(e){return{name:i,binary:e}});r.push(c)}}),n._id=e,n._obj_class=this.objClass(),this.path()&&(n._path=this.parentPath()+"/"+e),scrivito.Promise.all(r).then(function(e){return M.default.each(e,function(e){var t=e.name,r=e.binary;n[t]=["binary",{id:r.id()}]}),n})}},{key:"_widgetPlacementFor",value:function(e){var t=(0,b.default)(this._current,e),n=t.parentWidgetId?this.widget(t.parentWidgetId):this,r=(0,B.camelCase)(t.attributeName),i=n.get(r,"widgetlist");return M.default.extend(t,{container:n,attributeName:r,attributeValue:i})}},{key:"_widgetPool",get:function(){return this._current._widget_pool||{}}},{key:"_systemAttributes",get:function(){return q}},{key:"_current",get:function(){return this.objData.current}},{key:"_linkResolution",get:function(){return scrivito.uiAdapter.linkResolutionFor(this.objData)}}]),t}(N.default);t.default=H},function(e,t,n){function r(e,t){!0!==e&&(i(t)?t=t():o(t)&&(t='Assert failed (turn on "Pause on exceptions" in your Source panel)'),r.fail(t))}var i=n(9),o=n(23),a=n(158),s=n(88);r.fail=a,r.stringify=s,e.exports=r},function(e,t,n){"use strict";function r(e){e?(d=void 0,h=e.stateController(),t.appState=e.createAppState(),t.cmsState=e.cmsState()):(d=new v.default,h=d,t.appState=i(),t.cmsState=d.subState("cms"),t.uiState=d.subState("ui"))}function i(){if(!d)throw new p.InternalError;var e=(m++).toString();return d.subState("apps").subState(e)}function o(e){return h.withBatchedUpdates(e)}function a(e){return h.subscribe(e)}function s(e){return h.trackChanges(e)}function u(e,t){return h.withFrozenState(e,t)}function c(e){return h.failIfFrozen(e)}function l(){if(!d)throw new p.InternalError;return d.listenerCount()}function f(){if(!d)throw new p.InternalError;d.clear()}Object.defineProperty(t,"__esModule",{value:!0});var d,h,p=n(1),v=n(141);t.initializeGlobalState=r;var m=0;t.createAppState=i,t.withBatchedUpdates=o,t.subscribe=a,t.trackChanges=s,t.withFrozenState=u,t.failIfFrozen=c,t.listenerCount=l,t.reset=f},,function(e,t,n){var r=n(10),i=n(45);e.exports=function(e){return r(e)?e.displayName:i(e)}},function(e,t,n){"use strict";function r(e){function t(){var n=o.capture(function(){try{return{errorThrown:!1,run:o.default.run(function(){return l.withFrozenState({contextName:"Scrivito.load",message:"Use an async callback: Scrivito.load(/* ... */).then(/* ... */)."},e)})}}catch(e){return{errorThrown:!0,error:e}}});if(!n.isAllDataUpToDate()){n.loadRequiredData();var r=new i.default,s=a.subscribe(function(){r.resolve(void 0),s()});return r.promise.then(t)}var u=n.result;if(u.errorThrown)throw u.error;var f=u.run;if(!f.success)throw new c.InternalError;return f.result}return f(e),new scrivito.Promise(function(e){return e(t())})}Object.defineProperty(t,"__esModule",{value:!0});var i=n(15),o=n(16),a=n(5),s=n(34),u=n(21),c=n(1),l=n(5),f=s.checkArgumentsFor("load",[["loadableFunction",u.tcomb.Function]],{docPermalink:"js-sdk/load"});t.default=r},function(e,t){e.exports=function(e){return"function"==typeof e}},function(e,t,n){var r=n(9),i=n(25);e.exports=function(e){return r(e)&&i(e.meta)}},,function(e,t){e.exports=React},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new l.ArgumentError("Scrivito.connect expects either a plain function or a subclass of React.Component");return i(a(e)?e:o(e))}function i(e){var t=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return s(t,e),t.prototype.componentWillMount=function(){var t=this;this._scrivitoUnsubscribeModelState=f.subscribe(function(){t._scrivitoIsStateChangeDetected&&t._scrivitoIsStateChangeDetected()&&t.forceUpdate()}),e.prototype.componentWillMount&&e.prototype.componentWillMount.call(this)},t.prototype.componentWillUnmount=function(){this._scrivitoUnsubscribeModelState&&this._scrivitoUnsubscribeModelState(),e.prototype.componentWillUnmount&&e.prototype.componentWillUnmount.call(this)},t.prototype.render=function(){var t,n=this;return this._scrivitoIsStateChangeDetected=f.trackChanges(function(){var r=c.capture(function(){return c.default.run(function(){return f.withFrozenState({contextName:"React.Component#render",message:"Use one of the React lifecycle hooks."},function(){return e.prototype.render.call(n)})})});r.loadRequiredData();var i=r.result;if(r.isAllDataLoaded()){if(!i.success)throw new h.InternalError;t=i.result}else{var o=i.success?i.result:null;t=n._scrivitoHandleLoading(o)}}),t},t.prototype._scrivitoHandleLoading=function(e){return this._scrivitoRenderWhileLoading?this._scrivitoRenderWhileLoading():e},t}(e);return t.displayName=d.default(e),t}function o(e){var t=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return s(n,t),n.prototype.render=function(){return e(this.props)},n}(u.Component);return t.displayName=d.default(e),t}function a(e){return"function"==typeof e&&e.prototype&&e.prototype.isReactComponent}var s=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var u=n(12),c=n(16),l=n(1),f=n(5),d=n(105),h=n(1);t.default=r},function(e,t,n){n(4),n(60),n(9),n(46);e.exports=function(e,t){function n(e,t){return e}return n.meta={kind:"irreducible",name:e,predicate:t,identity:!0},n.displayName=e,n.is=t,n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){var e=this;this.promise=new scrivito.Promise(function(t,n){e.resolve=function(n){e.settled=!0,t(n)},e.reject=function(t){e.settled=!0,n(t)}})}return e.prototype.isPending=function(){return!this.settled},e}();t.default=r},function(e,t,n){"use strict";function r(){var e=d.current();e&&(e.allDataLoaded=!1)}function i(e){return f.runWith(!1,e)}Object.defineProperty(t,"__esModule",{value:!0});var o=n(1),a=n(86),s=n(151),u=n(66),c=n(86);t.capture=c.capture;var l=0,f=new u.default,d=new u.default,h=function(){function e(e){var t=e.state,n=e.loader,r=e.invalidation,i=e.throwNotLoaded;if(!t)throw new o.InternalError("LoadableData needs state");this.value=new s.default(t),this.loader=n,this.invalidation=r,this.throwNotLoaded=i||!1}return e.throwNotLoaded=function(){throw r(),new scrivito.NotLoadedError(f.current())},e.run=function(e){var t={allDataLoaded:!0};try{return{success:!0,result:d.runWith(t,function(){return i(e)}),allDataLoaded:t.allDataLoaded}}catch(e){if(t.allDataLoaded)throw e;return{success:!1,allDataLoaded:!1}}},e.prototype.get=function(){var t=this;if(this.isAvailable())return this.reloadIfOutdated(),this.value.value();if(this.isError())throw this.reloadIfOutdated(),this.value.error();r(),a.notifyMissingData(function(){return t.progressLoading()}),this.throwNotLoaded&&e.throwNotLoaded()},e.prototype.set=function(e){this.value.transitionToAvailable(e,this.currentVersion())},e.prototype.setError=function(e){this.transitionToError(e)},e.prototype.reset=function(){this.value.transitionToMissing()},e.prototype.isMissing=function(){return"MISSING"===this.value.status()},e.prototype.isLoading=function(){return void 0!==this.value.getLoading()},e.prototype.isAvailable=function(){return"AVAILABLE"===this.value.status()},e.prototype.isError=function(){return"ERROR"===this.value.status()},e.prototype.triggerLoading=function(){var e=this;if(!this.isLoading()){var t=l++,n=function(){return e.value.getLoading()===t},r=function(e){n()&&e()},i=this.currentVersion(),o=[],a=function(e){return o.push(e)},s=function(){return o.forEach(function(e){return e()})};this.loader({push:a,isReload:function(){return e.hasBeenInvalidated()},wasCancelled:function(){return!n()}}).then(function(t){return r(function(){return scrivito.batchedStateUpdater.add(function(){e.value.transitionToAvailable(t,i),s()})})},function(t){return r(function(){return scrivito.batchedStateUpdater.add(function(){e.transitionToError(t,i),s()})})}),this.value.setLoading(t)}},e.prototype.transitionToError=function(e,t){void 0===t&&(t=this.currentVersion()),this.value.transitionToError(e,t)},e.prototype.reloadIfOutdated=function(){var e=this;this.hasBeenInvalidated()&&a.notifyOutdatedData(function(){return e.progressLoading()})},e.prototype.progressLoading=function(){(this.hasBeenInvalidated()||!this.isAvailable()&&!this.isError())&&this.triggerLoading()},e.prototype.hasBeenInvalidated=function(){return!!this.invalidation&&(!this.isMissing()&&this.currentVersion()!==this.value.version())},e.prototype.currentVersion=function(){var e=this.invalidation;if(e){var t=e();if("number"==typeof t&&isNaN(t)){var n="invalidation callback returned unsuitable version "+t;throw new o.InternalError(n)}return t}},e}();t.default=h},,function(e,t,n){var r=n(23),i=n(60);e.exports=function(e){return r(e)||i(e)}},function(e,t,n){"use strict";function r(e){return m.test(e)}function i(e){return h.test(e)}function o(e){return e.replace(f,function(e,t){return"_"+t.toLowerCase()})}function a(e){return e.replace(l,function(e,t,n,r){return r?n.toUpperCase()===n?e:""+t.substr(1)+n.toUpperCase():e})}function s(e){var t=a(e);return t.charAt(0).toUpperCase()+t.slice(1)}function u(e){return e.replace(p," ").replace(v,function(e){return" "+e.toLowerCase()}).replace(d,function(e){return" "+e}).trim().replace(/./,c)}function c(e){return e.charAt(0).toUpperCase()+e.substr(1).toLowerCase()}Object.defineProperty(t,"__esModule",{value:!0});var l=/(_+)(\w)/g,f=/([A-Z])/g,d=/[A-Z]+|\d+/g,h=/^_?(_+[A-Z0-9]|[^_])+$/,p=/[_\s]+/g,v=/[A-Z][a-z]+/g,m=/^[a-z0-9_:]+$/;t.camelCase=a,t.classify=s,t.isCamelCase=i,t.isUnderscore=r,t.sentenceCase=u,t.underscore=o},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tcomb=void 0;var r=n(156),i=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(r);i.struct.strict=!0,i.interface.strict=!0,i.fail=function(e){throw new TypeError(e)},t.tcomb=i},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if((0,c.isArray)(t))return(0,c.map)(t,function(t){return i(e,t)});if(t instanceof h.default)return o(t,e.objClassFor(t.objClass()));if(t instanceof v.default){var n=t.objClass();return o(t,e.widgetClassFor(n))}return t instanceof g.default?e.defaultClassForLinks.build(t.buildAttributes()):t}function o(e,t){var n=Object.create(t.prototype);return n._scrivitoPrivateContent=e,n}function a(e){return(0,c.isArray)(e)?(0,c.map)(e,s):s(e)}function s(e){return e&&e._scrivitoPrivateContent?e._scrivitoPrivateContent:e}function u(e,t,n){return(0,c.mapObject)(e,function(e,r){if((0,f.default)(r))return[e];var i=t.attributes[r];if(!i)throw new y.ArgumentError('Attribute "'+r+'" is not defined for CMS object class "'+n+'".');return[a(e),i]})}Object.defineProperty(t,"__esModule",{value:!0}),t.wrapInAppClass=i,t.buildAppClassInstance=o,t.unwrapAppClassValues=a,t.unwrapAppClassValue=s,t.unwrapAppAttributes=u;var c=n(0),l=n(42),f=r(l),d=n(3),h=r(d),p=n(30),v=r(p),m=n(35),g=r(m),y=n(1)},function(e,t){e.exports=function(e){return null===e||void 0===e}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){var n=scrivito.computeCacheKey([e,t]);return g.cmsState.subState("binary").subState(n)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(33),u=r(s),c=n(16),l=r(c),f=n(0),d=n(1),h=n(64),p=r(h),v=n(110),m=r(v),g=n(5),y=n(21),b=n(111),w=n(34),_="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",C={public_access:{get:{url:_}},private_access:{get:{url:_}}},k=function(){function e(t,n,r){var a=this;i(this,e),this._id=t,this._isPublic=n,this._definition=r,this._loadableData=new l.default({state:o(t,r),loader:function(){return a._loadUrlData()}})}return a(e,[{key:"id",value:function(){return this._id}},{key:"copy",value:function(e){return new p.default({idToCopy:this._id},e)}},{key:"isPrivate",value:function(){return!this._isPublic}},{key:"optimizeFor",value:function(t){return new e(this._id,this._isPublic,(0,f.extend)({},this._definition,t))}},{key:"original",value:function(){return new e(this._id,this._isPublic,{})}},{key:"raw",value:function(){return new e(this._id,this._isPublic)}},{key:"isExplicitlyTransformed",value:function(){return this._isTransformed()&&!(0,f.isEmpty)(this._definition)}},{key:"isRaw",value:function(){return!this._isTransformed()}},{key:"url",value:function(){return this._urlData()[this._accessType()].get.url}},{key:"filename",value:function(){var e=this.url();return e.match(/^data:/)?"":(0,u.default)(e).path().split("/").pop()}},{key:"metadata",value:function(){return this._assertNotTransformed("Metadata"),new m.default(this._id)}},{key:"contentType",value:function(){return this._assertNotTransformed("Content type"),this.metadata().get("contentType")}},{key:"contentLength",value:function(){return this._assertNotTransformed("Content length"),this.metadata().get("contentLength")||0}},{key:"extname",value:function(){if(this.raw().filename().indexOf(".")>-1){return/[^.\\]*$/.exec(this.raw().filename())[0].toLowerCase()}}},{key:"equals",value:function(t){return t instanceof e&&t.id()===this.id()&&t.isPrivate()===this.isPrivate()&&(0,f.isEqual)(t.definition(),this.definition())}},{key:"isImage",value:function(){var e=this.raw().contentType();return!!e&&"image"===e.split("/")[0]}},{key:"definition",value:function(){return this._definition||null}},{key:"_accessType",value:function(){return this.isPrivate()?"private_access":"public_access"}},{key:"_urlData",value:function(){return this._loadableData.get()||C}},{key:"_loadUrlData",value:function(){var e="blobs/"+encodeURIComponent(this._id),t=void 0;return this._definition&&(e+="/optimize",t={transformation:this._definition}),scrivito.CmsRestApi.get(e,t)}},{key:"_assertNotTransformed",value:function(e){if(this._isTransformed())throw new d.ScrivitoError('"'+e+'" is not available for transformed images. Use "Scrivito.Binary#raw" to access the untransformed version of the image.')}},{key:"_isTransformed",value:function(){return!!this._definition}}],[{key:"upload",value:function(e,t){if(S(e,t),!(b.FileType.is(e)||t&&t.filename))throw new d.ArgumentError("Expected a filename to be passed with Blob as the source.");return new p.default({source:e},t)}},{key:"store",value:function(t,n,r){var i=n.transformation;new l.default({state:o(t,i)}).set(r);var a=new e(t);return i?a.optimizeFor(i):a}},{key:"storeMetadata",value:function(e,t){return m.default.store(e,t)}}]),e}(),E=y.tcomb.struct({contentType:y.tcomb.maybe(y.tcomb.String),filename:y.tcomb.maybe(y.tcomb.String)}),x=y.tcomb.refinement(y.tcomb.Object,function(e){return b.BlobType.is(e)||b.FileType.is(e)},"Blob or File"),S=(0,w.checkArgumentsFor)("Binary.upload",[["source",x],["options",y.tcomb.maybe(E)]],{docPermalink:"js-sdk/Binary-static-upload"});t.default=k},function(e,t,n){var r=n(23),i=n(26);e.exports=function(e){return!r(e)&&"object"==typeof e&&!i(e)}},function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):e instanceof Array}},function(e,t,n){var r=(n(4),n(89),n(10));n(7);e.exports=function(e){return!r(e)||e.meta.identity}},function(e,t,n){var r=n(10);n(45),n(4),n(88);e.exports=function(e,t,n){return r(e)?e.meta.identity||"object"!=typeof t||null===t?e(t,n):new e(t,n):t}},function(e,t,n){var r=n(10);e.exports=function(e,t){return r(t)?t.is(e):e instanceof t}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function u(e){if(!e)throw new y.ArgumentError('Please provide a widget class as the "_objClass" property.')}Object.defineProperty(t,"__esModule",{value:!0});var c=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),f=n(99),d=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(f),h=n(100),p=r(h),v=n(0),m=r(v),g=n(19),y=n(1),b=n(5),w={_id:"id",_obj_class:"objClass"},_=function(e){function t(e){o(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return n._attributesToBeSaved=scrivito.typeInfo.normalizeAttrs(e),u(e._objClass),n}return s(t,e),l(t,null,[{key:"build",value:function(e,n){var r=Object.create(t.prototype);return r._obj=n,r._id=e,r}},{key:"newWithSerializedAttributes",value:function(e){var n={},r={};m.default.each(e,function(e,i){if("_obj_class"===i)return void(n._objClass=[e]);if(m.default.isArray(e)&&"widgetlist"===m.default.first(e)){var o=m.default.map(m.default.last(e),function(e){return t.newWithSerializedAttributes(e)}),a=(0,g.camelCase)(i);return void(n[a]=[o,["widgetlist"]])}r[i]=e});var i=new t(n);return i.preserializedAttributes=r,i}}]),l(t,[{key:"id",value:function(){if(this.isPersisted())return this._id;this._throwUnpersistedError()}},{key:"objClass",value:function(){return this.isPersisted()?this._current._obj_class:this._attributesToBeSaved._objClass[0]}},{key:"obj",value:function(){if(this.isPersisted())return this._obj;this._throwUnpersistedError()}},{key:"widget",value:function(e){return this.obj().widget(e)}},{key:"update",value:function(e){var t=this,n=scrivito.typeInfo.normalizeAttrs(e);(0,b.withBatchedUpdates)(function(){t._persistWidgets(t.obj(),n);var e=d.serialize(n);t._updateSelf(e)})}},{key:"insertBefore",value:function(e){e.obj().insertWidget(this,{before:e})}},{key:"insertAfter",value:function(e){e.obj().insertWidget(this,{after:e})}},{key:"remove",value:function(){this.obj().removeWidget(this)}},{key:"copy",value:function(){return this.isPersisted()?this._copyPersisted():this._copyUnpersisted()}},{key:"persistInObj",value:function(e){this._persistWidgets(e,this._attributesToBeSaved);var t=d.serialize(this._attributesToBeSaved);m.default.extend(t,this.preserializedAttributes||{}),this._obj=e,this._id=e.generateWidgetId(),this._updateSelf(t),this._executeDidPersistCallback()}},{key:"isPersisted",value:function(){return!!this._obj}},{key:"onDidPersist",value:function(e){if(this.isPersisted())throw new y.ScrivitoError('Cannot call "onDidPersist" of an already persisted widget');this._onDidPersistCallback=e}},{key:"hasOnDidPersistCallback",value:function(){return!!this._onDidPersistCallback}},{key:"finishSaving",value:function(){return this.obj().finishSaving()}},{key:"equals",value:function(e){return e instanceof t&&(this.id()===e.id()&&this.obj().id()===e.obj().id())}},{key:"containingField",value:function(){return this.obj().fieldContainingWidget(this)}},{key:"toPrettyPrint",value:function(){return"[object "+this.objClass()+' id="'+this.id()+'" objId="'+this.obj().id()+'"]'}},{key:"_throwUnpersistedError",value:function(){throw new y.ScrivitoError("Can not access a new widget before it has been saved.")}},{key:"_updateSelf",value:function(e){var t={_widgetPool:[i({},this.id(),e)]};this.obj().update(t)}},{key:"_executeDidPersistCallback",value:function(){this._onDidPersistCallback&&(this._onDidPersistCallback(),delete this._onDidPersistCallback)}},{key:"_copyPersisted",value:function(){var e=this.serializeAttributes();return t.newWithSerializedAttributes(e)}},{key:"_copyUnpersisted",value:function(){var e=m.default.mapObject(this._attributesToBeSaved,function(e){var t=c(e,2),n=t[0],r=t[1];return r&&"widgetlist"===r[0]?[m.default.invoke(n,"copy"),r]:[n,r]}),n=new t(e);return this._onDidPersistCallback&&n.onDidPersist(this._onDidPersistCallback),n}},{key:"attributesToBeSaved",get:function(){return this._attributesToBeSaved}},{key:"_current",get:function(){if(this.isPersisted())return this.obj().widgetData(this.id());throw new y.ScrivitoError("Can not access an unpersisted widget.")}},{key:"_systemAttributes",get:function(){return w}}]),t}(p.default);t.default=_},,,function(e,t,n){var r,i,o;/*!
2
+ !function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=670)}([function(t,e,n){var r,i;(function(){function n(t){function e(e,n,r,i,o,a){for(;o>=0&&o<a;o+=t){var s=i?i[o]:o;r=n(r,e[s],s,e)}return r}return function(n,r,i,o){r=O(r,o,4);var a=!T(n)&&k.keys(n),s=(a||n).length,u=t>0?0:s-1;return arguments.length<3&&(i=n[a?a[u]:u],u+=t),e(n,r,i,a,u,s)}}function o(t){return function(e,n,r){n=E(n,r);for(var i=A(e),o=t>0?0:i-1;o>=0&&o<i;o+=t)if(n(e[o],o,e))return o;return-1}}function a(t,e,n){return function(r,i,o){var a=0,s=A(r);if("number"==typeof o)t>0?a=o>=0?o:Math.max(o+s,a):s=o>=0?Math.min(o+1,s):o+s+1;else if(n&&o&&s)return o=n(r,i),r[o]===i?o:-1;if(i!==i)return o=e(p.call(r,a,s),k.isNaN),o>=0?o+a:-1;for(o=t>0?a:s-1;o>=0&&o<s;o+=t)if(r[o]===i)return o;return-1}}function s(t,e){var n=D.length,r=t.constructor,i=k.isFunction(r)&&r.prototype||f,o="constructor";for(k.has(t,o)&&!k.contains(e,o)&&e.push(o);n--;)(o=D[n])in t&&t[o]!==i[o]&&!k.contains(e,o)&&e.push(o)}var u=this,c=u._,l=Array.prototype,f=Object.prototype,d=Function.prototype,h=l.push,p=l.slice,v=f.toString,y=f.hasOwnProperty,m=Array.isArray,b=Object.keys,g=d.bind,w=Object.create,_=function(){},k=function(t){return t instanceof k?t:this instanceof k?void(this._wrapped=t):new k(t)};void 0!==t&&t.exports&&(e=t.exports=k),e._=k,k.VERSION="1.8.3";var O=function(t,e,n){if(void 0===e)return t;switch(null==n?3:n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)};case 4:return function(n,r,i,o){return t.call(e,n,r,i,o)}}return function(){return t.apply(e,arguments)}},E=function(t,e,n){return null==t?k.identity:k.isFunction(t)?O(t,e,n):k.isObject(t)?k.matcher(t):k.property(t)};k.iteratee=function(t,e){return E(t,e,1/0)};var x=function(t,e){return function(n){var r=arguments.length;if(r<2||null==n)return n;for(var i=1;i<r;i++)for(var o=arguments[i],a=t(o),s=a.length,u=0;u<s;u++){var c=a[u];e&&void 0!==n[c]||(n[c]=o[c])}return n}},C=function(t){if(!k.isObject(t))return{};if(w)return w(t);_.prototype=t;var e=new _;return _.prototype=null,e},j=function(t){return function(e){return null==e?void 0:e[t]}},S=Math.pow(2,53)-1,A=j("length"),T=function(t){var e=A(t);return"number"==typeof e&&e>=0&&e<=S};k.each=k.forEach=function(t,e,n){e=O(e,n);var r,i;if(T(t))for(r=0,i=t.length;r<i;r++)e(t[r],r,t);else{var o=k.keys(t);for(r=0,i=o.length;r<i;r++)e(t[o[r]],o[r],t)}return t},k.map=k.collect=function(t,e,n){e=E(e,n);for(var r=!T(t)&&k.keys(t),i=(r||t).length,o=Array(i),a=0;a<i;a++){var s=r?r[a]:a;o[a]=e(t[s],s,t)}return o},k.reduce=k.foldl=k.inject=n(1),k.reduceRight=k.foldr=n(-1),k.find=k.detect=function(t,e,n){var r;if(void 0!==(r=T(t)?k.findIndex(t,e,n):k.findKey(t,e,n))&&-1!==r)return t[r]},k.filter=k.select=function(t,e,n){var r=[];return e=E(e,n),k.each(t,function(t,n,i){e(t,n,i)&&r.push(t)}),r},k.reject=function(t,e,n){return k.filter(t,k.negate(E(e)),n)},k.every=k.all=function(t,e,n){e=E(e,n);for(var r=!T(t)&&k.keys(t),i=(r||t).length,o=0;o<i;o++){var a=r?r[o]:o;if(!e(t[a],a,t))return!1}return!0},k.some=k.any=function(t,e,n){e=E(e,n);for(var r=!T(t)&&k.keys(t),i=(r||t).length,o=0;o<i;o++){var a=r?r[o]:o;if(e(t[a],a,t))return!0}return!1},k.contains=k.includes=k.include=function(t,e,n,r){return T(t)||(t=k.values(t)),("number"!=typeof n||r)&&(n=0),k.indexOf(t,e,n)>=0},k.invoke=function(t,e){var n=p.call(arguments,2),r=k.isFunction(e);return k.map(t,function(t){var i=r?e:t[e];return null==i?i:i.apply(t,n)})},k.pluck=function(t,e){return k.map(t,k.property(e))},k.where=function(t,e){return k.filter(t,k.matcher(e))},k.findWhere=function(t,e){return k.find(t,k.matcher(e))},k.max=function(t,e,n){var r,i,o=-1/0,a=-1/0;if(null==e&&null!=t){t=T(t)?t:k.values(t);for(var s=0,u=t.length;s<u;s++)(r=t[s])>o&&(o=r)}else e=E(e,n),k.each(t,function(t,n,r){((i=e(t,n,r))>a||i===-1/0&&o===-1/0)&&(o=t,a=i)});return o},k.min=function(t,e,n){var r,i,o=1/0,a=1/0;if(null==e&&null!=t){t=T(t)?t:k.values(t);for(var s=0,u=t.length;s<u;s++)(r=t[s])<o&&(o=r)}else e=E(e,n),k.each(t,function(t,n,r){((i=e(t,n,r))<a||i===1/0&&o===1/0)&&(o=t,a=i)});return o},k.shuffle=function(t){for(var e,n=T(t)?t:k.values(t),r=n.length,i=Array(r),o=0;o<r;o++)e=k.random(0,o),e!==o&&(i[o]=i[e]),i[e]=n[o];return i},k.sample=function(t,e,n){return null==e||n?(T(t)||(t=k.values(t)),t[k.random(t.length-1)]):k.shuffle(t).slice(0,Math.max(0,e))},k.sortBy=function(t,e,n){return e=E(e,n),k.pluck(k.map(t,function(t,n,r){return{value:t,index:n,criteria:e(t,n,r)}}).sort(function(t,e){var n=t.criteria,r=e.criteria;if(n!==r){if(n>r||void 0===n)return 1;if(n<r||void 0===r)return-1}return t.index-e.index}),"value")};var N=function(t){return function(e,n,r){var i={};return n=E(n,r),k.each(e,function(r,o){var a=n(r,o,e);t(i,r,a)}),i}};k.groupBy=N(function(t,e,n){k.has(t,n)?t[n].push(e):t[n]=[e]}),k.indexBy=N(function(t,e,n){t[n]=e}),k.countBy=N(function(t,e,n){k.has(t,n)?t[n]++:t[n]=1}),k.toArray=function(t){return t?k.isArray(t)?p.call(t):T(t)?k.map(t,k.identity):k.values(t):[]},k.size=function(t){return null==t?0:T(t)?t.length:k.keys(t).length},k.partition=function(t,e,n){e=E(e,n);var r=[],i=[];return k.each(t,function(t,n,o){(e(t,n,o)?r:i).push(t)}),[r,i]},k.first=k.head=k.take=function(t,e,n){if(null!=t)return null==e||n?t[0]:k.initial(t,t.length-e)},k.initial=function(t,e,n){return p.call(t,0,Math.max(0,t.length-(null==e||n?1:e)))},k.last=function(t,e,n){if(null!=t)return null==e||n?t[t.length-1]:k.rest(t,Math.max(0,t.length-e))},k.rest=k.tail=k.drop=function(t,e,n){return p.call(t,null==e||n?1:e)},k.compact=function(t){return k.filter(t,k.identity)};var P=function(t,e,n,r){for(var i=[],o=0,a=r||0,s=A(t);a<s;a++){var u=t[a];if(T(u)&&(k.isArray(u)||k.isArguments(u))){e||(u=P(u,e,n));var c=0,l=u.length;for(i.length+=l;c<l;)i[o++]=u[c++]}else n||(i[o++]=u)}return i};k.flatten=function(t,e){return P(t,e,!1)},k.without=function(t){return k.difference(t,p.call(arguments,1))},k.uniq=k.unique=function(t,e,n,r){k.isBoolean(e)||(r=n,n=e,e=!1),null!=n&&(n=E(n,r));for(var i=[],o=[],a=0,s=A(t);a<s;a++){var u=t[a],c=n?n(u,a,t):u;e?(a&&o===c||i.push(u),o=c):n?k.contains(o,c)||(o.push(c),i.push(u)):k.contains(i,u)||i.push(u)}return i},k.union=function(){return k.uniq(P(arguments,!0,!0))},k.intersection=function(t){for(var e=[],n=arguments.length,r=0,i=A(t);r<i;r++){var o=t[r];if(!k.contains(e,o)){for(var a=1;a<n&&k.contains(arguments[a],o);a++);a===n&&e.push(o)}}return e},k.difference=function(t){var e=P(arguments,!0,!0,1);return k.filter(t,function(t){return!k.contains(e,t)})},k.zip=function(){return k.unzip(arguments)},k.unzip=function(t){for(var e=t&&k.max(t,A).length||0,n=Array(e),r=0;r<e;r++)n[r]=k.pluck(t,r);return n},k.object=function(t,e){for(var n={},r=0,i=A(t);r<i;r++)e?n[t[r]]=e[r]:n[t[r][0]]=t[r][1];return n},k.findIndex=o(1),k.findLastIndex=o(-1),k.sortedIndex=function(t,e,n,r){n=E(n,r,1);for(var i=n(e),o=0,a=A(t);o<a;){var s=Math.floor((o+a)/2);n(t[s])<i?o=s+1:a=s}return o},k.indexOf=a(1,k.findIndex,k.sortedIndex),k.lastIndexOf=a(-1,k.findLastIndex),k.range=function(t,e,n){null==e&&(e=t||0,t=0),n=n||1;for(var r=Math.max(Math.ceil((e-t)/n),0),i=Array(r),o=0;o<r;o++,t+=n)i[o]=t;return i};var L=function(t,e,n,r,i){if(!(r instanceof e))return t.apply(n,i);var o=C(t.prototype),a=t.apply(o,i);return k.isObject(a)?a:o};k.bind=function(t,e){if(g&&t.bind===g)return g.apply(t,p.call(arguments,1));if(!k.isFunction(t))throw new TypeError("Bind must be called on a function");var n=p.call(arguments,2),r=function(){return L(t,r,e,this,n.concat(p.call(arguments)))};return r},k.partial=function(t){var e=p.call(arguments,1),n=function(){for(var r=0,i=e.length,o=Array(i),a=0;a<i;a++)o[a]=e[a]===k?arguments[r++]:e[a];for(;r<arguments.length;)o.push(arguments[r++]);return L(t,n,this,this,o)};return n},k.bindAll=function(t){var e,n,r=arguments.length;if(r<=1)throw new Error("bindAll must be passed function names");for(e=1;e<r;e++)n=arguments[e],t[n]=k.bind(t[n],t);return t},k.memoize=function(t,e){var n=function(r){var i=n.cache,o=""+(e?e.apply(this,arguments):r);return k.has(i,o)||(i[o]=t.apply(this,arguments)),i[o]};return n.cache={},n},k.delay=function(t,e){var n=p.call(arguments,2);return setTimeout(function(){return t.apply(null,n)},e)},k.defer=k.partial(k.delay,k,1),k.throttle=function(t,e,n){var r,i,o,a=null,s=0;n||(n={});var u=function(){s=!1===n.leading?0:k.now(),a=null,o=t.apply(r,i),a||(r=i=null)};return function(){var c=k.now();s||!1!==n.leading||(s=c);var l=e-(c-s);return r=this,i=arguments,l<=0||l>e?(a&&(clearTimeout(a),a=null),s=c,o=t.apply(r,i),a||(r=i=null)):a||!1===n.trailing||(a=setTimeout(u,l)),o}},k.debounce=function(t,e,n){var r,i,o,a,s,u=function(){var c=k.now()-a;c<e&&c>=0?r=setTimeout(u,e-c):(r=null,n||(s=t.apply(o,i),r||(o=i=null)))};return function(){o=this,i=arguments,a=k.now();var c=n&&!r;return r||(r=setTimeout(u,e)),c&&(s=t.apply(o,i),o=i=null),s}},k.wrap=function(t,e){return k.partial(e,t)},k.negate=function(t){return function(){return!t.apply(this,arguments)}},k.compose=function(){var t=arguments,e=t.length-1;return function(){for(var n=e,r=t[e].apply(this,arguments);n--;)r=t[n].call(this,r);return r}},k.after=function(t,e){return function(){if(--t<1)return e.apply(this,arguments)}},k.before=function(t,e){var n;return function(){return--t>0&&(n=e.apply(this,arguments)),t<=1&&(e=null),n}},k.once=k.partial(k.before,2);var I=!{toString:null}.propertyIsEnumerable("toString"),D=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];k.keys=function(t){if(!k.isObject(t))return[];if(b)return b(t);var e=[];for(var n in t)k.has(t,n)&&e.push(n);return I&&s(t,e),e},k.allKeys=function(t){if(!k.isObject(t))return[];var e=[];for(var n in t)e.push(n);return I&&s(t,e),e},k.values=function(t){for(var e=k.keys(t),n=e.length,r=Array(n),i=0;i<n;i++)r[i]=t[e[i]];return r},k.mapObject=function(t,e,n){e=E(e,n);for(var r,i=k.keys(t),o=i.length,a={},s=0;s<o;s++)r=i[s],a[r]=e(t[r],r,t);return a},k.pairs=function(t){for(var e=k.keys(t),n=e.length,r=Array(n),i=0;i<n;i++)r[i]=[e[i],t[e[i]]];return r},k.invert=function(t){for(var e={},n=k.keys(t),r=0,i=n.length;r<i;r++)e[t[n[r]]]=n[r];return e},k.functions=k.methods=function(t){var e=[];for(var n in t)k.isFunction(t[n])&&e.push(n);return e.sort()},k.extend=x(k.allKeys),k.extendOwn=k.assign=x(k.keys),k.findKey=function(t,e,n){e=E(e,n);for(var r,i=k.keys(t),o=0,a=i.length;o<a;o++)if(r=i[o],e(t[r],r,t))return r},k.pick=function(t,e,n){var r,i,o={},a=t;if(null==a)return o;k.isFunction(e)?(i=k.allKeys(a),r=O(e,n)):(i=P(arguments,!1,!1,1),r=function(t,e,n){return e in n},a=Object(a));for(var s=0,u=i.length;s<u;s++){var c=i[s],l=a[c];r(l,c,a)&&(o[c]=l)}return o},k.omit=function(t,e,n){if(k.isFunction(e))e=k.negate(e);else{var r=k.map(P(arguments,!1,!1,1),String);e=function(t,e){return!k.contains(r,e)}}return k.pick(t,e,n)},k.defaults=x(k.allKeys,!0),k.create=function(t,e){var n=C(t);return e&&k.extendOwn(n,e),n},k.clone=function(t){return k.isObject(t)?k.isArray(t)?t.slice():k.extend({},t):t},k.tap=function(t,e){return e(t),t},k.isMatch=function(t,e){var n=k.keys(e),r=n.length;if(null==t)return!r;for(var i=Object(t),o=0;o<r;o++){var a=n[o];if(e[a]!==i[a]||!(a in i))return!1}return!0};var q=function(t,e,n,r){if(t===e)return 0!==t||1/t==1/e;if(null==t||null==e)return t===e;t instanceof k&&(t=t._wrapped),e instanceof k&&(e=e._wrapped);var i=v.call(t);if(i!==v.call(e))return!1;switch(i){case"[object RegExp]":case"[object String]":return""+t==""+e;case"[object Number]":return+t!=+t?+e!=+e:0==+t?1/+t==1/e:+t==+e;case"[object Date]":case"[object Boolean]":return+t==+e}var o="[object Array]"===i;if(!o){if("object"!=typeof t||"object"!=typeof e)return!1;var a=t.constructor,s=e.constructor;if(a!==s&&!(k.isFunction(a)&&a instanceof a&&k.isFunction(s)&&s instanceof s)&&"constructor"in t&&"constructor"in e)return!1}n=n||[],r=r||[];for(var u=n.length;u--;)if(n[u]===t)return r[u]===e;if(n.push(t),r.push(e),o){if((u=t.length)!==e.length)return!1;for(;u--;)if(!q(t[u],e[u],n,r))return!1}else{var c,l=k.keys(t);if(u=l.length,k.keys(e).length!==u)return!1;for(;u--;)if(c=l[u],!k.has(e,c)||!q(t[c],e[c],n,r))return!1}return n.pop(),r.pop(),!0};k.isEqual=function(t,e){return q(t,e)},k.isEmpty=function(t){return null==t||(T(t)&&(k.isArray(t)||k.isString(t)||k.isArguments(t))?0===t.length:0===k.keys(t).length)},k.isElement=function(t){return!(!t||1!==t.nodeType)},k.isArray=m||function(t){return"[object Array]"===v.call(t)},k.isObject=function(t){var e=typeof t;return"function"===e||"object"===e&&!!t},k.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(t){k["is"+t]=function(e){return v.call(e)==="[object "+t+"]"}}),k.isArguments(arguments)||(k.isArguments=function(t){return k.has(t,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(k.isFunction=function(t){return"function"==typeof t||!1}),k.isFinite=function(t){return isFinite(t)&&!isNaN(parseFloat(t))},k.isNaN=function(t){return k.isNumber(t)&&t!==+t},k.isBoolean=function(t){return!0===t||!1===t||"[object Boolean]"===v.call(t)},k.isNull=function(t){return null===t},k.isUndefined=function(t){return void 0===t},k.has=function(t,e){return null!=t&&y.call(t,e)},k.noConflict=function(){return u._=c,this},k.identity=function(t){return t},k.constant=function(t){return function(){return t}},k.noop=function(){},k.property=j,k.propertyOf=function(t){return null==t?function(){}:function(e){return t[e]}},k.matcher=k.matches=function(t){return t=k.extendOwn({},t),function(e){return k.isMatch(e,t)}},k.times=function(t,e,n){var r=Array(Math.max(0,t));e=O(e,n,1);for(var i=0;i<t;i++)r[i]=e(i);return r},k.random=function(t,e){return null==e&&(e=t,t=0),t+Math.floor(Math.random()*(e-t+1))},k.now=Date.now||function(){return(new Date).getTime()};var R={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},M=k.invert(R),B=function(t){var e=function(e){return t[e]},n="(?:"+k.keys(t).join("|")+")",r=RegExp(n),i=RegExp(n,"g");return function(t){return t=null==t?"":""+t,r.test(t)?t.replace(i,e):t}};k.escape=B(R),k.unescape=B(M),k.result=function(t,e,n){var r=null==t?void 0:t[e];return void 0===r&&(r=n),k.isFunction(r)?r.call(t):r};var F=0;k.uniqueId=function(t){var e=++F+"";return t?t+e:e},k.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var z=/(.)^/,U={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},H=/\\|'|\r|\n|\u2028|\u2029/g,W=function(t){return"\\"+U[t]};k.template=function(t,e,n){!e&&n&&(e=n),e=k.defaults({},e,k.templateSettings);var r=RegExp([(e.escape||z).source,(e.interpolate||z).source,(e.evaluate||z).source].join("|")+"|$","g"),i=0,o="__p+='";t.replace(r,function(e,n,r,a,s){return o+=t.slice(i,s).replace(H,W),i=s+e.length,n?o+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?o+="'+\n((__t=("+r+"))==null?'':__t)+\n'":a&&(o+="';\n"+a+"\n__p+='"),e}),o+="';\n",e.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{var a=new Function(e.variable||"obj","_",o)}catch(t){throw t.source=o,t}var s=function(t){return a.call(this,t,k)};return s.source="function("+(e.variable||"obj")+"){\n"+o+"}",s},k.chain=function(t){var e=k(t);return e._chain=!0,e};var K=function(t,e){return t._chain?k(e).chain():e};k.mixin=function(t){k.each(k.functions(t),function(e){var n=k[e]=t[e];k.prototype[e]=function(){var t=[this._wrapped];return h.apply(t,arguments),K(this,n.apply(k,t))}})},k.mixin(k),k.each(["pop","push","reverse","shift","sort","splice","unshift"],function(t){var e=l[t];k.prototype[t]=function(){var n=this._wrapped;return e.apply(n,arguments),"shift"!==t&&"splice"!==t||0!==n.length||delete n[0],K(this,n)}}),k.each(["concat","join","slice"],function(t){var e=l[t];k.prototype[t]=function(){return K(this,e.apply(this._wrapped,arguments))}}),k.prototype.value=function(){return this._wrapped},k.prototype.valueOf=k.prototype.toJSON=k.prototype.value,k.prototype.toString=function(){return""+this._wrapped},r=[],void 0!==(i=function(){return k}.apply(e,r))&&(t.exports=i)}).call(this)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}Object.defineProperty(e,"__esModule",{value:!0}),n.d(e,"AccessDeniedError",function(){return s}),n.d(e,"ArgumentError",function(){return u}),n.d(e,"ClientError",function(){return a}),n.d(e,"InternalError",function(){return c}),n.d(e,"InterpolationError",function(){return b}),n.d(e,"CurrentPageNotFoundError",function(){return m}),n.d(e,"NavigateToEmptyBinaryError",function(){return y}),n.d(e,"ResourceNotFoundError",function(){return f}),n.d(e,"RequestFailedError",function(){return l}),n.d(e,"ScrivitoError",function(){return o}),n.d(e,"TransformationSourceInvalidError",function(){return p}),n.d(e,"TransformationSourceTooLargeError",function(){return h}),n.d(e,"TranslationError",function(){return v}),n.d(e,"UnauthorizedError",function(){return d});var i=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),o=function(t){function e(e,n){var r=this.constructor;void 0===n&&(n=!0);var i=t.call(this,e)||this,o=r.prototype;if(Object.setPrototypeOf?Object.setPrototypeOf(i,o):i.__proto__=o,i._captureStackTrace=n,n)if(Error.captureStackTrace)Error.captureStackTrace(i,i.constructor);else{var a=void 0;try{throw new Error}catch(t){a=t.stack}Object.defineProperty(i,"stack",{value:a})}return i}return i(e,t),Object.defineProperty(e.prototype,"name",{get:function(){return this.constructor.name},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"captureStackTrace",{get:function(){return!!this._captureStackTrace},enumerable:!0,configurable:!0}),e}(Error),a=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.httpCode=n,i.backendCode=r,i}return i(e,t),e.for=function(t,n,r){return"binary.unprocessable.image.transform.source.too_large"===r?new h(t,n,r):r&&-1!==r.indexOf("binary.unprocessable.image.transform.source.")?new p(t,n,r):new e(t,n,r)},e}(o),s=function(t){function e(e,n,r){return t.call(this,e,n,r)||this}return i(e,t),e}(a),u=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(o),c=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(o),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i(e,t),e}(o),f=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(o),d=function(t){function e(e,n,r,i){var o=t.call(this,e,n,r)||this;return o.details=i||{},o}return i(e,t),e}(a),h=function(t){function e(e,n,r){return t.call(this,e,n,r)||this}return i(e,t),e}(a),p=function(t){function e(e,n,r){return t.call(this,e,n,r)||this}return i(e,t),e}(a),v=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(c),y=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(c),m=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(c),b=function(t){function e(e){return t.call(this,e)||this}return i(e,t),e}(v)},,function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){return s(t)||a(t,e)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function a(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function s(t){if(Array.isArray(t))return t}function u(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function l(t){return h(t)||d(t)||f()}function f(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function d(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function h(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}function p(t,e){if(!u(t,e))throw new TypeError("Cannot call a class as a function")}function v(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");y(t.prototype,e&&e.prototype),e&&y(t,e)}function y(t,e){return(y=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function m(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?b(t):e}function b(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function g(t,e,n){return(g="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=w(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(n):i.value}})(t,e,n||t)}function w(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=_(t)););return t}function _(t){return(_=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function k(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function O(t,e,n){return e&&k(t.prototype,e),n&&k(t,n),t}function E(t){if(!t)throw new F.ArgumentError('Please provide an obj class as the "_objClass" property.')}function x(t){var e={},n={};return B.a.each(t,function(t,r){if(B.a.isArray(t)&&"widgetlist"===B.a.first(t)){var i=B.a.map(B.a.last(t),function(t){return D.a.newWithSerializedAttributes(t)}),o=Object(H.a)(r);n[o]=[i,["widgetlist"]]}else e[r]=t}),e._id||(e._id=Y.generateId()),[e,n]}function C(t){return Y.all().and("_parentPath","equals",t)}function j(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return"/"===t?["/"].concat(l(e)):j(S(t),[t].concat(l(e)))}function S(t){var e=t.split("/");return e.pop(),1===e.length?"/":e.join("/")}function A(t){var e=["_path"];if(B.a.difference(B.a.keys(t),e).length)throw new F.ArgumentError('Currently only "_path" copy option is supported.')}Object.defineProperty(e,"__esModule",{value:!0}),n.d(e,"default",function(){return Y});var T=n(155),N=n(211),P=n(48),L=n(58),I=n(116),D=n(27),q=n(54),R=n(117),M=n(0),B=n.n(M),F=n(1),z=n(71),U=n(120),H=n(23),W=n(121),K=n(4),V=n(18),Q={_id:"id",_obj_class:"objClass",_path:"path",_permalink:"permalink",_created_at:"createdAt",_created_by:"createdBy",_last_changed:"lastChanged",_last_changed_by:"lastChangedBy"},Y=function(t){function e(t){var n;return p(this,e),n=m(this,_(e).call(this)),n.objData=t,n}return O(e,null,[{key:"get",value:function(t){var e=this.getIncludingDeleted(t);if(e&&!e.isDeleted())return e}},{key:"getIncludingDeleted",value:function(t){var n=L.b(t);if(n){var r=new e(n);if(!r.isFinallyDeleted())return r}}},{key:"create",value:function(t){var e=scrivito.typeInfo.normalizeAttrs(t);E(e._objClass),e._id||(e._id=[this.generateId()]);var n={_id:e._id,_obj_class:e._objClass};return this.createWithSerializedAttributes(scrivito.typeInfo.unwrapAttributes(n),B.a.omit(t,"_objClass","_id"))}},{key:"addChildWithSerializedAttributes",value:function(t,n){var r=e.generateId();return this.createWithSerializedAttributes(B.a.extend({},n,{_id:r,_path:"".concat(t,"/").concat(r)}))}},{key:"createWithSerializedAttributes",value:function(t,n){if(!n)return this.createWithSerializedAttributes.apply(this,l(x(t)));var r=L.a(t._id);r.update(t);var i=new e(r);return i.update(n),i}},{key:"generateId",value:function(){return Object(U.b)()}},{key:"all",value:function(){return(new q.b).batchSize(1e3)}},{key:"root",value:function(){return e.getByPath("/")}},{key:"where",value:function(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return(new q.b).and(t,e,n,r)}},{key:"getByPath",value:function(t){var e=Object(W.b)(this.where("_path","equals",t));if(e)return e}},{key:"getByPermalink",value:function(t){var e=this.where("_permalink","equals",t),n=Object(W.b)(e);if(n)return n}}]),O(e,[{key:"id",value:function(){return this.getAttributeData("_id")}},{key:"objClass",value:function(){return this.getAttributeData("_obj_class")}},{key:"obj",value:function(){return this}},{key:"createdAt",value:function(){return Object(P.g)(this.getAttributeData("_created_at"))}},{key:"createdBy",value:function(){return this.getAttributeData("_created_by")}},{key:"lastChanged",value:function(){var t=this.getAttributeData("_last_changed");return t?Object(P.g)(t):null}},{key:"lastChangedBy",value:function(){return this.getAttributeData("_last_changed_by")||null}},{key:"version",value:function(){return this.getAttributeData("_version")}},{key:"path",value:function(){return this.getAttributeData("_path")||null}},{key:"permalink",value:function(){return this.getAttributeData("_permalink")||null}},{key:"parentPath",value:function(){if(this.path()&&"/"!==this.path())return S(this.path())}},{key:"parent",value:function(){var t=this.parentPath();if(t)return e.getByPath(t)}},{key:"hasConflicts",value:function(){return!!this.getAttributeData("_conflicts")}},{key:"modification",value:function(){return this.isFinallyDeleted()||this.getAttributeData("_marked_deleted")?"deleted":this.getAttributeData("_modification")||null}},{key:"isModified",value:function(){return!!this.modification()}},{key:"isNew",value:function(){return"new"===this.modification()}},{key:"isEdited",value:function(){return"edited"===this.modification()}},{key:"isDeleted",value:function(){return"deleted"===this.modification()}},{key:"isFinallyDeleted",value:function(){return this.objData.isNonExistent()}},{key:"contentLength",value:function(){return this._binaryData("contentLength")}},{key:"contentType",value:function(){return this._binaryData("contentType")}},{key:"contentUrl",value:function(){return this._binaryData("url")}},{key:"metadata",value:function(){return this._binaryData("metadata")}},{key:"children",value:function(){var t=this.path();if(!t)return[];var e=C(t);return Object(W.a)(e)}},{key:"hasChildren",value:function(){var t=this.path();return!!t&&C(t).batchSize(0).count()>0}},{key:"orderedChildren",value:function(){var t=this.children(),e=this.get("childOrder","referencelist");return B.a.isArray(e)?B.a.sortBy(t,function(t){var n=B.a.invoke(e,"id"),r=n.indexOf(t.id());return-1===r?e.length:r}):t}},{key:"backlinks",value:function(){return Object(W.a)(e.where("*","linksTo",this))}},{key:"ancestors",value:function(){var t=this.parentPath();return t?j(t).map(function(t){return e.getByPath(t)}):[]}},{key:"update",value:function(t){var e=this,n=scrivito.typeInfo.normalizeAttrs(t);Object(K.j)(function(){e._persistWidgets(e,n);var t=I.a(n);e.objData.update(t)}),this.startLinkResolution()}},{key:"destroy",value:function(){this.update({_markedDeleted:[!0]})}},{key:"insertWidget",value:function(t,e){var n=e.before,r=e.after,i=(n||r).id(),o=this._widgetPlacementFor(i),a=o.attributeValue,s=o.attributeName,u=o.container,f=o.index,d=n?f:f+1,h=l(a.slice(0,d)).concat([t],l(a.slice(d)));u.update(c({},s,[h,"widgetlist"]))}},{key:"removeWidget",value:function(t){var e=this.fieldContainingWidget(t);e.update(B.a.reject(e.get(),function(e){return e.equals(t)}))}},{key:"copyAsync",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return A(t),this._copyAttributes().then(function(n){var r=B.a.extend(n,t),i=e.createWithSerializedAttributes(r);return i.objData.finishSaving().then(function(){return i})})}},{key:"moveToAsync",value:function(t){return this.update({_path:["".concat(t,"/").concat(this.id())]}),this.finishSaving()}},{key:"markResolvedAsync",value:function(){return this.update({_conflicts:[null]}),this.finishSaving()}},{key:"finishSaving",value:function(){var t=this;return this.finishLinkResolution().then(function(){return t.objData.finishSaving()})}},{key:"equals",value:function(t){return!!u(t,e)&&this.id()===t.id()}},{key:"widget",value:function(t){return this.getWidgetAttribute(t,"_obj_class")?D.a.build(t,this):null}},{key:"getWidgetAttribute",value:function(t,e){return this.objData.getWidgetAttribute(t,e)}},{key:"widgets",value:function(){var t=this,e=this.getData()._widget_pool||{};return Object.keys(e).map(function(e){return t.widget(e)})}},{key:"fieldContainingWidget",value:function(t){var e=this._widgetPlacementFor(t.id()),n=e.container,r=e.attributeName;return n.field(r,"widgetlist")}},{key:"generateWidgetId",value:function(){for(var t=0;t<10;t++){var e=Object(U.a)();if(!this.widget(e))return e}throw new F.InternalError("Could not generate a new unused widget id.")}},{key:"serializeAttributes",value:function(){var t=g(_(e.prototype),"serializeAttributes",this).call(this);return delete t._conflicts,delete t._modification,delete t._created_at,delete t._created_by,delete t._last_changed,delete t._last_changed_by,t}},{key:"slug",value:function(){var t=this.get("title","string");return Object(N.a)(t)}},{key:"getAttributeData",value:function(t){return this.objData.getAttribute(t)}},{key:"getData",value:function(){return this.objData.get()}},{key:"getWidgetData",value:function(t){return this.objData.getWidget(t)}},{key:"startLinkResolution",value:function(){V.b.startLinkResolutionFor(scrivito.currentWorkspaceId(),this.id())}},{key:"finishLinkResolution",value:function(){return V.b.finishLinkResolutionFor(scrivito.currentWorkspaceId(),this.id())}},{key:"toPrettyPrint",value:function(){return"[object ".concat(this.objClass(),' id="').concat(this.id(),'"]')}},{key:"_binaryData",value:function(t){var e=this.get("blob","binary");return e&&e.raw()[t]()}},{key:"_hasParentPath",value:function(){return this.path()&&"/"!==this.path()}},{key:"_copyAttributes",value:function(){var t=e.generateId(),n=this.serializeAttributes(),r=[];return B.a.each(n,function(e,o){if("_"===o[0])return void delete n[o];var a=i(e,2),s=a[0],u=a[1];if("binary"===s&&u){var c=new z.a({idToCopy:u.id}),l=c.intoId(t).then(function(t){return{name:o,binary:t}});r.push(l)}}),n._id=t,n._obj_class=this.objClass(),this.path()&&(n._path="".concat(this.parentPath(),"/").concat(t)),scrivito.Promise.all(r).then(function(t){return B.a.each(t,function(t){var e=t.name,r=t.binary;n[e]=["binary",{id:r.id()}]}),n})}},{key:"_widgetPlacementFor",value:function(t){var e=Object(T.a)(this.getData(),t),n=e.parentWidgetId?this.widget(e.parentWidgetId):this,r=Object(H.a)(e.attributeName),i=n.get(r,"widgetlist");return B.a.extend(e,{container:n,attributeName:r,attributeValue:i})}},{key:"_systemAttributes",get:function(){return Q}}]),v(e,t),e}(R.a)},function(t,e,n){"use strict";function r(t){t?(f=void 0,d=t.stateController(),h=t.createAppState(),p=t.cmsState()):(f=new m.a,d=f,h=i(),p=f.subState("cms"),v=f.subState("ui"))}function i(){if(!f)throw new y.InternalError;var t=(b++).toString();return f.subState("apps").subState(t)}function o(t){return d.withBatchedUpdates(t)}function a(t){return d.subscribe(t)}function s(t){return d.trackChanges(t)}function u(t,e){return d.withFrozenState(t,e)}function c(t){return d.failIfFrozen(t)}function l(t){return d.failIfTracking(t)}n.d(e,"a",function(){return h}),n.d(e,"b",function(){return p}),n.d(e,"i",function(){return v}),e.f=r,e.c=i,e.j=o,e.g=a,e.h=s,e.k=u,e.d=c,e.e=l;var f,d,h,p,v,y=n(1),m=n(164),b=0},function(t,e,n){function r(t,e){!0!==t&&(i(e)?e=e():o(e)&&(e='Assert failed (turn on "Pause on exceptions" in your Source panel)'),r.fail(e))}var i=n(10),o=n(26),a=n(184),s=n(105);r.fail=a,r.stringify=s,t.exports=r},,function(t,e,n){"use strict";function r(t){function e(){var n=Object(o.a)(function(){try{return{errorThrown:!1,run:o.b.run(function(){return Object(a.k)({contextName:"Scrivito.load",message:"Use an async callback: Scrivito.load(/* ... */).then(/* ... */)."},t)})}}catch(t){return{errorThrown:!0,error:t}}});if(!n.isAllDataUpToDate()){n.loadRequiredData();var r=new i.a,s=Object(a.g)(function(){r.resolve(void 0),s()});return r.promise.then(e)}var u=n.result;if(u.errorThrown)throw u.error;var l=u.run;if(!l.success)throw new c.InternalError;return l.result}return l(t),new scrivito.Promise(function(t){return t(e())})}var i=n(13),o=n(12),a=n(4),s=n(39),u=n(24),c=n(1),l=Object(s.a)("load",[["loadableFunction",u.a.Function]],{docPermalink:"js-sdk/load"});e.a=r},function(t,e,n){var r=n(11),i=n(51);t.exports=function(t){return r(t)?t.displayName:i(t)}},,function(t,e){t.exports=function(t){return"function"==typeof t}},function(t,e,n){var r=n(10),i=n(28);t.exports=function(t){return r(t)&&i(t.meta)}},function(t,e,n){"use strict";function r(){var t=d.current();t&&(t.allDataLoaded=!1)}function i(t){return f.runWith(!1,t)}var o=n(1),a=n(103),s=n(175),u=n(69),c=n(176),l=n(103);n.d(e,"a",function(){return l.a});var f=new u.a,d=new u.a,h=function(){function t(t){var e=t.state,n=t.loader,r=t.invalidation,i=t.throwNotLoaded;if(!e)throw new o.InternalError("LoadableData needs state");this.value=new s.a(e),this.loader=n,this.invalidation=r,this.throwNotLoaded=i||!1,this.id=e.id()}return t.throwNotLoaded=function(){throw r(),new scrivito.NotLoadedError(f.current())},t.run=function(t){var e={allDataLoaded:!0};try{return{success:!0,result:d.runWith(e,function(){return i(t)}),allDataLoaded:e.allDataLoaded}}catch(t){if(e.allDataLoaded)throw t;return{success:!1,allDataLoaded:!1}}},t.prototype.ensureAvailable=function(){var e=this;if(this.isAvailable())return this.reloadIfOutdated(),!0;if(this.isError())throw this.reloadIfOutdated(),this.value.error();return r(),a.b(function(){return e.progressLoading()}),this.throwNotLoaded&&t.throwNotLoaded(),!1},t.prototype.get=function(){if(this.ensureAvailable())return this.value.value()},t.prototype.reader=function(){return this.value.reader()},t.prototype.set=function(t){this.value.transitionToAvailable(t,this.currentVersion()),Object(c.c)(this.id)},t.prototype.setError=function(t){this.transitionToError(t),Object(c.c)(this.id)},t.prototype.reset=function(){this.value.transitionToMissing(),Object(c.c)(this.id)},t.prototype.isMissing=function(){return"MISSING"===this.value.status()},t.prototype.isLoading=function(){return Object(c.a)(this.id)},t.prototype.isAvailable=function(){return"AVAILABLE"===this.value.status()},t.prototype.isError=function(){return"ERROR"===this.value.status()},t.prototype.triggerLoading=function(){var t=this,e=this.currentVersion();Object(c.b)(this.id,function(e){var n=e.wasCancelled,r=e.push;return t.loader({push:r,isReload:function(){return t.hasBeenInvalidated()},wasCancelled:n})},function(n){t.value.transitionToAvailable(n,e)},function(n){t.transitionToError(n,e)})},t.prototype.transitionToError=function(t,e){void 0===e&&(e=this.currentVersion()),this.value.transitionToError(t,e)},t.prototype.reloadIfOutdated=function(){var t=this;this.hasBeenInvalidated()&&a.c(function(){return t.progressLoading()})},t.prototype.progressLoading=function(){(this.hasBeenInvalidated()||this.isMissing())&&this.triggerLoading()},t.prototype.hasBeenInvalidated=function(){return!!this.invalidation&&(!this.isMissing()&&this.currentVersion()!==this.value.version())},t.prototype.currentVersion=function(){var t=this.invalidation;if(t){var e=t();if("number"==typeof e&&isNaN(e)){var n="invalidation callback returned unsuitable version "+e;throw new o.InternalError(n)}return e}},t}();e.b=h},function(t,e,n){"use strict";var r=function(){function t(){var t=this;this.promise=new scrivito.Promise(function(e,n){t.resolve=function(n){t.settled=!0,e(n)},t.reject=function(e){t.settled=!0,n(e)}})}return t.prototype.isPending=function(){return!this.settled},t}();e.a=r},function(t,e){t.exports=React},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){if("function"!=typeof t)throw new d.ArgumentError("Scrivito.connect expects either a plain function or a subclass of React.Component");return u(t)?t:o(s(t)?t:a(t))}function o(t){var e=(n=function(t){function e(e){var n=t.call(this,e)||this;return n._scrivitoPrivateConnector=new m(n),n}return y(e,t),e.prototype.componentWillMount=function(){this._scrivitoPrivateConnector.componentWillMount(),t.prototype.componentWillMount&&t.prototype.componentWillMount.call(this)},e.prototype.componentWillUnmount=function(){this._scrivitoPrivateConnector.componentWillUnmount(),t.prototype.componentWillUnmount&&t.prototype.componentWillUnmount.call(this)},e.prototype.render=function(){var e=this;return this._scrivitoPrivateConnector.render(function(){return t.prototype.render.call(e)})},e}(t),n._isScrivitoConnectedComponent=!0,n);return e.displayName=Object(v.a)(t),e;var n}function a(t){var e=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return y(n,e),n.prototype.render=function(){return t(this.props)},n}(l.Component);return e.displayName=Object(v.a)(t),e}function s(t){return"function"==typeof t&&t.prototype&&t.prototype.isReactComponent}function u(t){return!0===t._isScrivitoConnectedComponent}function c(t){return!!t._scrivitoRenderWhileLoading}e.a=i;var l=n(14),f=(n.n(l),n(12)),d=n(1),h=n(4),p=n(81),v=n(122),y=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),m=function(){function t(t){this.component=t}return t.prototype.componentWillMount=function(){var t=this;this.unsubscribeModelState=Object(h.g)(function(){t.isStateChangeDetected&&t.isStateChangeDetected()&&t.component.forceUpdate()})},t.prototype.componentWillUnmount=function(){this.unregisterLoadingActivity(),this.unsubscribeModelState&&this.unsubscribeModelState()},t.prototype.render=function(t){var e,n=this;return this.isStateChangeDetected=Object(h.h)(function(){var r=Object(f.a)(function(){return f.b.run(function(){return Object(h.k)({contextName:"React.Component#render",message:"Use one of the React lifecycle hooks."},t)})});r.loadRequiredData();var i=r.result;if(r.isAllDataLoaded()){if(n.unregisterLoadingActivity(),!i.success)throw new d.InternalError;e=i.result}else{n.unregisterLoadingActivityCallback||(n.unregisterLoadingActivityCallback=Object(p.c)());var o=i.success?i.result:null;e=n.handleLoading(o)}}),e},t.prototype.handleLoading=function(t){return c(this.component)?this.component._scrivitoRenderWhileLoading():t},t.prototype.unregisterLoadingActivity=function(){var t=this.unregisterLoadingActivityCallback;t&&(delete this.unregisterLoadingActivityCallback,t())},t}()},,function(t,e,n){n(5),n(65),n(10),n(52);t.exports=function(t,e){function n(t,e){return t}return n.meta={kind:"irreducible",name:t,predicate:e,identity:!0},n.displayName=t,n.is=e,n}},function(t,e,n){"use strict";function r(t){i=t}n.d(e,"b",function(){return i}),e.a=r;var i},,function(t,e,n){var r=n(26),i=n(65);t.exports=function(t){return r(t)||i(t)}},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function o(t,e){return void 0===e&&(e=0),y?new scrivito.Promise(function(e){return e(t())}):t().catch(function(n){if(i(n,k.RequestFailedError)){if(v&&e>5)throw n;var r=s(e);return Object(_.b)(r).then(function(){return o(t,e+1)})}throw n})}function a(t,e){return void 0===e&&(e=0),y?new scrivito.Promise(function(e){return e(t())}):t().then(function(n){if(429!==n.status)return n;if(v&&e>19)throw new Error("Maximum number of rate limit retries reached");var r=Number(n.getResponseHeader("Retry-After"))||0,i=Math.max(1e3*r,s(e));return Object(_.b)(i).then(function(){return a(t,e+1)})})}function s(t){return 500*Math.pow(2,Math.min(t,16))}function u(t){var e,n=t.status;try{e=JSON.parse(t.responseText)}catch(e){throw new k.RequestFailedError(t.responseText)}if(n>=200&&n<300)return e;if("auth_missing"===e.code){var r=e.details;if(r&&f(r)){var i=r.visit;if("string"==typeof i)return Object(x.d)(c(i)),{}}}throw l(n,e,t.responseText)}function c(t){var e=O.a.augmentedRedirectUrl(Object(x.c)());return t.replace("retry=RETRY","retry="+O.a.currentFailureCount()).replace(/\$RETURN_TO/,encodeURIComponent(e))}function l(t,e,n){if(401===t){var r=p(e);return new k.UnauthorizedError(r.error,t,r.code,r.details)}if(403===t){var r=p(e),i=r.code;if(!i||!d(i))throw new k.RequestFailedError("Authentication failure response no string value for code");return new k.AccessDeniedError(r.error,t,i)}if(e.error&&"4"===t.toString()[0]){var r=p(e);return k.ClientError.for(r.error,t,r.code)}return 500===t&&d(e.error)?new k.RequestFailedError(e.error):new k.RequestFailedError(n)}function f(t){return"object"===r(t)&&!Array.isArray(t)}function d(t){return"string"==typeof t}function h(t){return!!t&&!!t.task&&1===Object(m.size)(t)}function p(t){var e=t.error;if("string"!=typeof e)throw new k.RequestFailedError("Malformed error response (key error is not a string)");var n=t.code;if(void 0!==n&&!d(n))throw new k.RequestFailedError("Malformed error response (optional key code is not a string)");var r=t.details;if(void 0!==r&&!f(r))throw new k.RequestFailedError("Malformed error response (optional key details is not an object");return{code:n,error:e,details:r}}n.d(e,"a",function(){return j});var v,y,m=n(0),b=(n.n(m),n(33)),g=(n.n(b),n(13)),w=n(101),_=n(128),k=n(1),O=n(152),E=n(172),x=n(70),C=function(){function t(){this.initDeferred=new g.a,this.authHeaderValueProvider=E}return t.prototype.init=function(t,e,n){e&&(this.tenant=e,this.endpoint=t,this.url=b(t+"/tenants/"+e+"/perform").scheme("https").toString(),this.initDeferred.resolve(void 0)),n&&(this.authHeaderValueProvider=n)},t.prototype.get=function(t,e){return this._perform("GET",t,e)},t.prototype.put=function(t,e){return this._perform("PUT",t,e)},t.prototype.post=function(t,e){return this._perform("POST",t,e)},t.prototype.delete=function(t,e){return this._perform("DELETE",t,e)},t.prototype.requestBuiltInUserSession=function(t){var e=this;return this._ensureInitialized().then(function(){return e._ajax("PUT","sessions/"+t)}).then(function(t){return O.a.reset(),t})},t.prototype.enableForceVerification=function(){this.forceVerification=!0},t.prototype.currentPublicAuthorizationState=function(){return this.authHeaderValueProvider?this.authHeaderValueProvider.currentState?"[API] "+this.authHeaderValueProvider.currentState():"[API]: authorization provider without currentState()":"[API]: no authorization provider"},t.prototype._ensureInitialized=function(){return this.initDeferred.promise},t.prototype._perform=function(t,e,n){var r=this;return this._ensureInitialized().then(function(){return r._send(t,e,n).then(function(t){return h(t)?r._handleTask(t.task):t})})},t.prototype._send=function(t,e,n){var r=this;return this.authHeaderValueProvider.perform(function(i){return r._ajax(t,e,n,i)})},t.prototype._ajax=function(t,e,n,r){function i(){return a(function(){return Object(w.a)(t,s,f)}).then(u)}var s=this.url,c=this.forceVerification,l={path:e,verb:t,params:n||{}},f={params:l,authorization:r,forceVerification:c};return"POST"===t?i():o(i)},t.prototype._handleTask=function(t){var e=this;switch(t.status){case"success":return t.result;case"error":throw k.ClientError.for(t.message,412,t.code);case"open":return Object(_.a)(2).then(function(){return e.get("tasks/"+t.id).then(function(t){return e._handleTask(t)})});default:throw new k.RequestFailedError("Invalid task response (unknown status)")}},t}(),j=new C},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(Object(c.isArray)(e))return Object(c.map)(e,function(e){return i(t,e)});if(r(e,f.default))return o(e,t.objClassFor(e.objClass()));if(r(e,d.a)){var n=e.objClass();return o(e,t.widgetClassFor(n))}return r(e,h.a)?t.defaultClassForLinks.build(e.buildAttributes()):e}function o(t,e){var n=Object.create(e.prototype);return n._scrivitoPrivateContent=t,n}function a(t){return Object(c.isArray)(t)?Object(c.map)(t,s):s(t)}function s(t){return t&&t._scrivitoPrivateContent?t._scrivitoPrivateContent:t}function u(t,e,n){return Object(c.mapObject)(t,function(t,r){if(Object(l.a)(r))return[t];var i=e.attributes[r];if(!i)throw new p.ArgumentError('Attribute "'.concat(r,'" is not defined for CMS object ')+'class "'.concat(n,'".'));return[a(t),i]})}e.e=i,e.a=o,e.d=a,e.c=s,e.b=u;var c=n(0),l=(n.n(c),n(47)),f=n(3),d=n(27),h=n(34),p=n(1)},function(t,e,n){"use strict";function r(t){return f.test(t)}function i(t){return t.replace(c,function(t,e){return"_".concat(e.toLowerCase())})}function o(t){return t.replace(u,function(t,e,n,r){return r?n.toUpperCase()===n?t:"".concat(e.substr(1)).concat(n.toUpperCase()):t})}function a(t){var e=o(t);return e.charAt(0).toUpperCase()+e.slice(1)}function s(t){return t.replace(d," ").replace(h,function(t){return" ".concat(t.toLowerCase())}).replace(l,function(t){return" ".concat(t)}).trim().replace(/./,function(t){return t.toUpperCase()})}e.c=r,e.e=i,e.a=o,e.b=a,e.d=s;var u=/(_+)(\w)/g,c=/([A-Z])/g,l=/[A-Z]+|\d+/g,f=/^_?(_+[A-Z0-9]|[^_])+$/,d=/[_\s]+/g,h=/[A-Z][a-z]+/g},function(t,e,n){"use strict";var r=n(182);n.n(r);n.d(e,"a",function(){return r}),r.struct.strict=!0,r.interface.strict=!0,r.fail=function(t){throw new TypeError(t)}},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){var n=scrivito.computeCacheKey([t,e]);return v.b.subState("binary").subState(n)}function o(t,e){return function(){return p.a.retrieveBinaryUrls(t,e)}}var a=n(33),s=(n.n(a),n(0)),u=(n.n(s),n(71)),c=n(12),l=n(130),f=n(1),d=n(131),h=n(39),p=n(43),v=n(4),y=n(24),m="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",b={public_access:{get:{url:m}},private_access:{get:{url:m}}},g=function(){function t(t,e,n){this._id=t,this._isPublic=!!e,this._transformation=n,this._loadableData=new c.b({state:i(t,n),loader:o(t,n)})}return t.upload=function(t,e){if(k(t,e),!(d.b.is(t)||e&&e.filename))throw new f.ArgumentError("Expected a filename to be passed with Blob as the source.");return new u.a({source:t},e)},t.store=function(e,n,r){var a=n.transformation;new c.b({state:i(e,a),loader:o(e,a)}).set(r);var s=new t(e);return a?s.optimizeFor(a):s},t.storeMetadata=function(t,e){l.a.store(t,e)},t.prototype.id=function(){return this._id},t.prototype.copy=function(t){return new u.a({idToCopy:this._id},t)},t.prototype.isPrivate=function(){return!this._isPublic},t.prototype.optimizeFor=function(e){return new t(this._id,this._isPublic,Object(s.extend)({},this._transformation,e))},t.prototype.original=function(){return new t(this._id,this._isPublic,{})},t.prototype.raw=function(){return new t(this._id,this._isPublic)},t.prototype.isExplicitlyTransformed=function(){return this._isTransformed()&&!Object(s.isEmpty)(this._transformation)},t.prototype.isRaw=function(){return!this._isTransformed()},t.prototype.url=function(){var t=this._urlData()[this._accessType()];if(t)return t.get.url},t.prototype.filename=function(){var t=this.url();return!t||t.match(/^data:/)?"":a(t).path().split("/").pop()},t.prototype.metadata=function(){return this._assertNotTransformed("Metadata"),new l.a(this._id)},t.prototype.contentType=function(){return this._assertNotTransformed("Content type"),this.metadata().get("contentType")},t.prototype.contentLength=function(){return this._assertNotTransformed("Content length"),this.metadata().get("contentLength")||0},t.prototype.extname=function(){if(this.raw().filename().indexOf(".")>-1){var t=/[^.\\]*$/.exec(this.raw().filename());if(t)return t[0].toLowerCase()}},t.prototype.equals=function(e){return r(e,t)&&e.id()===this.id()&&e.isPrivate()===this.isPrivate()&&Object(s.isEqual)(e.definition(),this.definition())},t.prototype.isImage=function(){var t=this.raw().contentType();return!!t&&"image"===t.split("/")[0]},t.prototype.definition=function(){return this._transformation||null},t.prototype._accessType=function(){return this.isPrivate()?"private_access":"public_access"},t.prototype._urlData=function(){return this._loadableData.get()||b},t.prototype._assertNotTransformed=function(t){if(this._isTransformed())throw new f.ScrivitoError('"'+t+'" is not available for transformed images. Use "Scrivito.Binary#raw" to access the untransformed version of the image.')},t.prototype._isTransformed=function(){return!!this._transformation},t}();e.a=g;var w=y.a.struct({contentType:y.a.maybe(y.a.String),filename:y.a.maybe(y.a.String)}),_=y.a.refinement(y.a.Object,function(t){return d.a.is(t)||d.b.is(t)},"Blob or File"),k=Object(h.a)("Binary.upload",[["source",_],["options",y.a.maybe(w)]],{docPermalink:"js-sdk/Binary-static-upload"})},function(t,e){t.exports=function(t){return null===t||void 0===t}},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){return s(t)||a(t,e)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function a(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function s(t){if(Array.isArray(t))return t}function u(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function c(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function l(t,e){if(!c(t,e))throw new TypeError("Cannot call a class as a function")}function f(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");d(t.prototype,e&&e.prototype),e&&d(t,e)}function d(t,e){return(d=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?p(t):e}function p(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function v(t){return(v=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function y(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function m(t,e,n){return e&&y(t.prototype,e),n&&y(t,n),t}function b(t){if(!t)throw new E.ArgumentError('Please provide a widget class as the "_objClass" property.')}n.d(e,"a",function(){return j});var g=n(116),w=n(117),_=n(0),k=n.n(_),O=n(23),E=n(1),x=n(4),C={_id:"id",_obj_class:"objClass"},j=function(t){function e(t){var n;return l(this,e),n=h(this,v(e).call(this)),n._attributesToBeSaved=scrivito.typeInfo.normalizeAttrs(t),b(t._objClass),n}return m(e,null,[{key:"build",value:function(t,n){var r=Object.create(e.prototype);return r._obj=n,r._id=t,r}},{key:"newWithSerializedAttributes",value:function(t){var n={},r={};k.a.each(t,function(t,i){if("_obj_class"===i)return void(n._objClass=[t]);if(k.a.isArray(t)&&"widgetlist"===k.a.first(t)){var o=k.a.map(k.a.last(t),function(t){return e.newWithSerializedAttributes(t)}),a=Object(O.a)(i);return void(n[a]=[o,["widgetlist"]])}r[i]=t});var i=new e(n);return i.preserializedAttributes=r,i}}]),m(e,[{key:"id",value:function(){return this._failIfNotPersisted(),this._id}},{key:"objClass",value:function(){return this.isPersisted()?this.getAttributeData("_obj_class"):this._attributesToBeSaved._objClass[0]}},{key:"obj",value:function(){return this._failIfNotPersisted(),this._obj}},{key:"widget",value:function(t){return this.obj().widget(t)}},{key:"update",value:function(t){var e=this,n=scrivito.typeInfo.normalizeAttrs(t);Object(x.j)(function(){e._persistWidgets(e.obj(),n);var t=g.a(n);e._updateSelf(t)})}},{key:"insertBefore",value:function(t){t.obj().insertWidget(this,{before:t})}},{key:"insertAfter",value:function(t){t.obj().insertWidget(this,{after:t})}},{key:"remove",value:function(){this.obj().removeWidget(this)}},{key:"copy",value:function(){return this.isPersisted()?this._copyPersisted():this._copyUnpersisted()}},{key:"persistInObj",value:function(t){this._persistWidgets(t,this._attributesToBeSaved);var e=g.a(this._attributesToBeSaved);k.a.extend(e,this.preserializedAttributes||{}),this._obj=t,this._id=t.generateWidgetId(),this._updateSelf(e),this._executeDidPersistCallback()}},{key:"isPersisted",value:function(){return!!this._obj}},{key:"onDidPersist",value:function(t){if(this.isPersisted())throw new E.ScrivitoError('Cannot call "onDidPersist" of an already persisted widget');this._onDidPersistCallback=t}},{key:"hasOnDidPersistCallback",value:function(){return!!this._onDidPersistCallback}},{key:"finishSaving",value:function(){return this.obj().finishSaving()}},{key:"equals",value:function(t){return!!c(t,e)&&(this.id()===t.id()&&this.obj().id()===t.obj().id())}},{key:"containingField",value:function(){return this.obj().fieldContainingWidget(this)}},{key:"toPrettyPrint",value:function(){return"[object ".concat(this.objClass(),' id="').concat(this.id(),'" objId="').concat(this.obj().id(),'"]')}},{key:"getAttributeData",value:function(t){return this.obj().getWidgetAttribute(this.id(),t)}},{key:"getData",value:function(){return this.obj().getWidgetData(this.id())}},{key:"_failIfNotPersisted",value:function(){if(!this.isPersisted())throw new E.ScrivitoError("Can not access a new widget before it has been saved.")}},{key:"_updateSelf",value:function(t){var e={_widgetPool:[u({},this.id(),t)]};this.obj().update(e)}},{key:"_executeDidPersistCallback",value:function(){this._onDidPersistCallback&&(this._onDidPersistCallback(this),delete this._onDidPersistCallback)}},{key:"_copyPersisted",value:function(){var t=this.serializeAttributes();return e.newWithSerializedAttributes(t)}},{key:"_copyUnpersisted",value:function(){var t=k.a.mapObject(this._attributesToBeSaved,function(t){var e=i(t,2),n=e[0],r=e[1];return r&&"widgetlist"===r[0]?[k.a.invoke(n,"copy"),r]:[n,r]}),n=new e(t);return this._onDidPersistCallback&&n.onDidPersist(this._onDidPersistCallback),n}},{key:"attributesToBeSaved",get:function(){return this._attributesToBeSaved}},{key:"_systemAttributes",get:function(){return C}}]),f(e,t),e}(w.a)},function(t,e,n){var r=n(26),i=n(29);t.exports=function(t){return!r(t)&&"object"==typeof t&&!i(t)}},function(t,e){t.exports=function(t){return Array.isArray?Array.isArray(t):t instanceof Array}},function(t,e,n){var r=(n(5),n(106),n(11));n(8);t.exports=function(t){return!r(t)||t.meta.identity}},function(t,e,n){var r=n(11);n(51),n(5),n(105);t.exports=function(t,e,n){return r(t)?t.meta.identity||"object"!=typeof e||null===e?t(e,n):new t(e,n):e}},function(t,e,n){var r=n(11);t.exports=function(t,e){return r(e)?e.is(t):t instanceof e}},function(t,e,n){var r,i,o;/*!
3
3
  * URI.js - Mutating URLs
4
4
  *
5
- * Version: 1.18.7
5
+ * Version: 1.19.1
6
6
  *
7
7
  * Author: Rodney Rehm
8
8
  * Web: http://medialize.github.io/URI.js/
@@ -11,7 +11,13 @@
11
11
  * MIT License http://www.opensource.org/licenses/mit-license
12
12
  *
13
13
  */
14
- !function(a,s){"use strict";"object"==typeof e&&e.exports?e.exports=s(n(83),n(84),n(85)):(i=[n(83),n(84),n(85)],r=s,void 0!==(o="function"==typeof r?r.apply(t,i):r)&&(e.exports=o))}(0,function(e,t,n,r){"use strict";function i(e,t){var n=arguments.length>=1,r=arguments.length>=2;if(!(this instanceof i))return n?r?new i(e,t):new i(e):new i;if(void 0===e){if(n)throw new TypeError("undefined is not a valid argument for URI");e="undefined"!=typeof location?location.href+"":""}if(null===e&&n)throw new TypeError("null is not a valid argument for URI");return this.href(e),void 0!==t?this.absoluteTo(t):this}function o(e){return e.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function a(e){return void 0===e?"Undefined":String(Object.prototype.toString.call(e)).slice(8,-1)}function s(e){return"Array"===a(e)}function u(e,t){var n,r,i={};if("RegExp"===a(t))i=null;else if(s(t))for(n=0,r=t.length;n<r;n++)i[t[n]]=!0;else i[t]=!0;for(n=0,r=e.length;n<r;n++){(i&&void 0!==i[e[n]]||!i&&t.test(e[n]))&&(e.splice(n,1),r--,n--)}return e}function c(e,t){var n,r;if(s(t)){for(n=0,r=t.length;n<r;n++)if(!c(e,t[n]))return!1;return!0}var i=a(t);for(n=0,r=e.length;n<r;n++)if("RegExp"===i){if("string"==typeof e[n]&&e[n].match(t))return!0}else if(e[n]===t)return!0;return!1}function l(e,t){if(!s(e)||!s(t))return!1;if(e.length!==t.length)return!1;e.sort(),t.sort();for(var n=0,r=e.length;n<r;n++)if(e[n]!==t[n])return!1;return!0}function f(e){var t=/^\/+|\/+$/g;return e.replace(t,"")}function d(e){return escape(e)}function h(e){return encodeURIComponent(e).replace(/[!'()*]/g,d).replace(/\*/g,"%2A")}function p(e){return function(t,n){return void 0===t?this._parts[e]||"":(this._parts[e]=t||null,this.build(!n),this)}}function v(e,t){return function(n,r){return void 0===n?this._parts[e]||"":(null!==n&&(n+="",n.charAt(0)===t&&(n=n.substring(1))),this._parts[e]=n,this.build(!r),this)}}var m=r&&r.URI;i.version="1.18.7";var g=i.prototype,y=Object.prototype.hasOwnProperty;i._parts=function(){return{protocol:null,username:null,password:null,hostname:null,urn:null,port:null,path:null,query:null,fragment:null,duplicateQueryParameters:i.duplicateQueryParameters,escapeQuerySpace:i.escapeQuerySpace}},i.duplicateQueryParameters=!1,i.escapeQuerySpace=!0,i.protocol_expression=/^[a-z][a-z0-9.+-]*$/i,i.idn_expression=/[^a-z0-9\.-]/i,i.punycode_expression=/(xn--)/i,i.ip4_expression=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,i.ip6_expression=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$/,i.find_uri_expression=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/gi,i.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?«»“”„‘’]+$/,parens:/(\([^\)]*\)|\[[^\]]*\]|\{[^}]*\}|<[^>]*>)/g},i.defaultPorts={http:"80",https:"443",ftp:"21",gopher:"70",ws:"80",wss:"443"},i.invalid_hostname_characters=/[^a-zA-Z0-9\.-]/,i.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"},i.getDomAttribute=function(e){if(e&&e.nodeName){var t=e.nodeName.toLowerCase();if("input"!==t||"image"===e.type)return i.domAttributes[t]}},i.encode=h,i.decode=decodeURIComponent,i.iso8859=function(){i.encode=escape,i.decode=unescape},i.unicode=function(){i.encode=h,i.decode=decodeURIComponent},i.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/gi,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/gi,map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@","%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/gi,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}},i.encodeQuery=function(e,t){var n=i.encode(e+"");return void 0===t&&(t=i.escapeQuerySpace),t?n.replace(/%20/g,"+"):n},i.decodeQuery=function(e,t){e+="",void 0===t&&(t=i.escapeQuerySpace);try{return i.decode(t?e.replace(/\+/g,"%20"):e)}catch(t){return e}};var b,w={encode:"encode",decode:"decode"},_=function(e,t){return function(n){try{return i[t](n+"").replace(i.characters[e][t].expression,function(n){return i.characters[e][t].map[n]})}catch(e){return n}}};for(b in w)i[b+"PathSegment"]=_("pathname",w[b]),i[b+"UrnPathSegment"]=_("urnpath",w[b]);var C=function(e,t,n){return function(r){var o;o=n?function(e){return i[t](i[n](e))}:i[t];for(var a=(r+"").split(e),s=0,u=a.length;s<u;s++)a[s]=o(a[s]);return a.join(e)}};i.decodePath=C("/","decodePathSegment"),i.decodeUrnPath=C(":","decodeUrnPathSegment"),i.recodePath=C("/","encodePathSegment","decode"),i.recodeUrnPath=C(":","encodeUrnPathSegment","decode"),i.encodeReserved=_("reserved","encode"),i.parse=function(e,t){var n;return t||(t={}),n=e.indexOf("#"),n>-1&&(t.fragment=e.substring(n+1)||null,e=e.substring(0,n)),n=e.indexOf("?"),n>-1&&(t.query=e.substring(n+1)||null,e=e.substring(0,n)),"//"===e.substring(0,2)?(t.protocol=null,e=e.substring(2),e=i.parseAuthority(e,t)):(n=e.indexOf(":"))>-1&&(t.protocol=e.substring(0,n)||null,t.protocol&&!t.protocol.match(i.protocol_expression)?t.protocol=void 0:"//"===e.substring(n+1,n+3)?(e=e.substring(n+3),e=i.parseAuthority(e,t)):(e=e.substring(n+1),t.urn=!0)),t.path=e,t},i.parseHost=function(e,t){e=e.replace(/\\/g,"/");var n,r,i=e.indexOf("/");if(-1===i&&(i=e.length),"["===e.charAt(0))n=e.indexOf("]"),t.hostname=e.substring(1,n)||null,t.port=e.substring(n+2,i)||null,"/"===t.port&&(t.port=null);else{var o=e.indexOf(":"),a=e.indexOf("/"),s=e.indexOf(":",o+1);-1!==s&&(-1===a||s<a)?(t.hostname=e.substring(0,i)||null,t.port=null):(r=e.substring(0,i).split(":"),t.hostname=r[0]||null,t.port=r[1]||null)}return t.hostname&&"/"!==e.substring(i).charAt(0)&&(i++,e="/"+e),e.substring(i)||"/"},i.parseAuthority=function(e,t){return e=i.parseUserinfo(e,t),i.parseHost(e,t)},i.parseUserinfo=function(e,t){var n,r=e.indexOf("/"),o=e.lastIndexOf("@",r>-1?r:e.length-1);return o>-1&&(-1===r||o<r)?(n=e.substring(0,o).split(":"),t.username=n[0]?i.decode(n[0]):null,n.shift(),t.password=n[0]?i.decode(n.join(":")):null,e=e.substring(o+1)):(t.username=null,t.password=null),e},i.parseQuery=function(e,t){if(!e)return{};if(!(e=e.replace(/&+/g,"&").replace(/^\?*&*|&+$/g,"")))return{};for(var n,r,o,a={},s=e.split("&"),u=s.length,c=0;c<u;c++)n=s[c].split("="),r=i.decodeQuery(n.shift(),t),o=n.length?i.decodeQuery(n.join("="),t):null,y.call(a,r)?("string"!=typeof a[r]&&null!==a[r]||(a[r]=[a[r]]),a[r].push(o)):a[r]=o;return a},i.build=function(e){var t="";return e.protocol&&(t+=e.protocol+":"),e.urn||!t&&!e.hostname||(t+="//"),t+=i.buildAuthority(e)||"","string"==typeof e.path&&("/"!==e.path.charAt(0)&&"string"==typeof e.hostname&&(t+="/"),t+=e.path),"string"==typeof e.query&&e.query&&(t+="?"+e.query),"string"==typeof e.fragment&&e.fragment&&(t+="#"+e.fragment),t},i.buildHost=function(e){var t="";return e.hostname?(i.ip6_expression.test(e.hostname)?t+="["+e.hostname+"]":t+=e.hostname,e.port&&(t+=":"+e.port),t):""},i.buildAuthority=function(e){return i.buildUserinfo(e)+i.buildHost(e)},i.buildUserinfo=function(e){var t="";return e.username&&(t+=i.encode(e.username)),e.password&&(t+=":"+i.encode(e.password)),t&&(t+="@"),t},i.buildQuery=function(e,t,n){var r,o,a,u,c="";for(o in e)if(y.call(e,o)&&o)if(s(e[o]))for(r={},a=0,u=e[o].length;a<u;a++)void 0!==e[o][a]&&void 0===r[e[o][a]+""]&&(c+="&"+i.buildQueryParameter(o,e[o][a],n),!0!==t&&(r[e[o][a]+""]=!0));else void 0!==e[o]&&(c+="&"+i.buildQueryParameter(o,e[o],n));return c.substring(1)},i.buildQueryParameter=function(e,t,n){return i.encodeQuery(e,n)+(null!==t?"="+i.encodeQuery(t,n):"")},i.addQuery=function(e,t,n){if("object"==typeof t)for(var r in t)y.call(t,r)&&i.addQuery(e,r,t[r]);else{if("string"!=typeof t)throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");if(void 0===e[t])return void(e[t]=n);"string"==typeof e[t]&&(e[t]=[e[t]]),s(n)||(n=[n]),e[t]=(e[t]||[]).concat(n)}},i.removeQuery=function(e,t,n){var r,o,c;if(s(t))for(r=0,o=t.length;r<o;r++)e[t[r]]=void 0;else if("RegExp"===a(t))for(c in e)t.test(c)&&(e[c]=void 0);else if("object"==typeof t)for(c in t)y.call(t,c)&&i.removeQuery(e,c,t[c]);else{if("string"!=typeof t)throw new TypeError("URI.removeQuery() accepts an object, string, RegExp as the first parameter");void 0!==n?"RegExp"===a(n)?!s(e[t])&&n.test(e[t])?e[t]=void 0:e[t]=u(e[t],n):e[t]!==String(n)||s(n)&&1!==n.length?s(e[t])&&(e[t]=u(e[t],n)):e[t]=void 0:e[t]=void 0}},i.hasQuery=function(e,t,n,r){switch(a(t)){case"String":break;case"RegExp":for(var o in e)if(y.call(e,o)&&t.test(o)&&(void 0===n||i.hasQuery(e,o,n)))return!0;return!1;case"Object":for(var u in t)if(y.call(t,u)&&!i.hasQuery(e,u,t[u]))return!1;return!0;default:throw new TypeError("URI.hasQuery() accepts a string, regular expression or object as the name parameter")}switch(a(n)){case"Undefined":return t in e;case"Boolean":return n===Boolean(s(e[t])?e[t].length:e[t]);case"Function":return!!n(e[t],t,e);case"Array":if(!s(e[t]))return!1;return(r?c:l)(e[t],n);case"RegExp":return s(e[t])?!!r&&c(e[t],n):Boolean(e[t]&&e[t].match(n));case"Number":n=String(n);case"String":return s(e[t])?!!r&&c(e[t],n):e[t]===n;default:throw new TypeError("URI.hasQuery() accepts undefined, boolean, string, number, RegExp, Function as the value parameter")}},i.joinPaths=function(){for(var e=[],t=[],n=0,r=0;r<arguments.length;r++){var o=new i(arguments[r]);e.push(o);for(var a=o.segment(),s=0;s<a.length;s++)"string"==typeof a[s]&&t.push(a[s]),a[s]&&n++}if(!t.length||!n)return new i("");var u=new i("").segment(t);return""!==e[0].path()&&"/"!==e[0].path().slice(0,1)||u.path("/"+u.path()),u.normalize()},i.commonPath=function(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n<r;n++)if(e.charAt(n)!==t.charAt(n)){n--;break}return n<1?e.charAt(0)===t.charAt(0)&&"/"===e.charAt(0)?"/":"":("/"===e.charAt(n)&&"/"===t.charAt(n)||(n=e.substring(0,n).lastIndexOf("/")),e.substring(0,n+1))},i.withinString=function(e,t,n){n||(n={});var r=n.start||i.findUri.start,o=n.end||i.findUri.end,a=n.trim||i.findUri.trim,s=n.parens||i.findUri.parens,u=/[a-z0-9-]=["']?$/i;for(r.lastIndex=0;;){var c=r.exec(e);if(!c)break;var l=c.index;if(n.ignoreHtml){var f=e.slice(Math.max(l-3,0),l);if(f&&u.test(f))continue}for(var d=l+e.slice(l).search(o),h=e.slice(l,d),p=-1;;){var v=s.exec(h);if(!v)break;var m=v.index+v[0].length;p=Math.max(p,m)}if(h=p>-1?h.slice(0,p)+h.slice(p).replace(a,""):h.replace(a,""),!(h.length<=c[0].length||n.ignore&&n.ignore.test(h))){d=l+h.length;var g=t(h,l,d,e);void 0!==g?(g=String(g),e=e.slice(0,l)+g+e.slice(d),r.lastIndex=l+g.length):r.lastIndex=d}}return r.lastIndex=0,e},i.ensureValidHostname=function(t){if(t.match(i.invalid_hostname_characters)){if(!e)throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-] and Punycode.js is not available');if(e.toASCII(t).match(i.invalid_hostname_characters))throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-]')}},i.noConflict=function(e){if(e){var t={URI:this.noConflict()};return r.URITemplate&&"function"==typeof r.URITemplate.noConflict&&(t.URITemplate=r.URITemplate.noConflict()),r.IPv6&&"function"==typeof r.IPv6.noConflict&&(t.IPv6=r.IPv6.noConflict()),r.SecondLevelDomains&&"function"==typeof r.SecondLevelDomains.noConflict&&(t.SecondLevelDomains=r.SecondLevelDomains.noConflict()),t}return r.URI===this&&(r.URI=m),this},g.build=function(e){return!0===e?this._deferred_build=!0:(void 0===e||this._deferred_build)&&(this._string=i.build(this._parts),this._deferred_build=!1),this},g.clone=function(){return new i(this)},g.valueOf=g.toString=function(){return this.build(!1)._string},g.protocol=p("protocol"),g.username=p("username"),g.password=p("password"),g.hostname=p("hostname"),g.port=p("port"),g.query=v("query","?"),g.fragment=v("fragment","#"),g.search=function(e,t){var n=this.query(e,t);return"string"==typeof n&&n.length?"?"+n:n},g.hash=function(e,t){var n=this.fragment(e,t);return"string"==typeof n&&n.length?"#"+n:n},g.pathname=function(e,t){if(void 0===e||!0===e){var n=this._parts.path||(this._parts.hostname?"/":"");return e?(this._parts.urn?i.decodeUrnPath:i.decodePath)(n):n}return this._parts.urn?this._parts.path=e?i.recodeUrnPath(e):"":this._parts.path=e?i.recodePath(e):"/",this.build(!t),this},g.path=g.pathname,g.href=function(e,t){var n;if(void 0===e)return this.toString();this._string="",this._parts=i._parts();var r=e instanceof i,o="object"==typeof e&&(e.hostname||e.path||e.pathname);if(e.nodeName){e=e[i.getDomAttribute(e)]||"",o=!1}if(!r&&o&&void 0!==e.pathname&&(e=e.toString()),"string"==typeof e||e instanceof String)this._parts=i.parse(String(e),this._parts);else{if(!r&&!o)throw new TypeError("invalid input");var a=r?e._parts:e;for(n in a)y.call(this._parts,n)&&(this._parts[n]=a[n])}return this.build(!t),this},g.is=function(e){var t=!1,r=!1,o=!1,a=!1,s=!1,u=!1,c=!1,l=!this._parts.urn;switch(this._parts.hostname&&(l=!1,r=i.ip4_expression.test(this._parts.hostname),o=i.ip6_expression.test(this._parts.hostname),t=r||o,a=!t,s=a&&n&&n.has(this._parts.hostname),u=a&&i.idn_expression.test(this._parts.hostname),c=a&&i.punycode_expression.test(this._parts.hostname)),e.toLowerCase()){case"relative":return l;case"absolute":return!l;case"domain":case"name":return a;case"sld":return s;case"ip":return t;case"ip4":case"ipv4":case"inet4":return r;case"ip6":case"ipv6":case"inet6":return o;case"idn":return u;case"url":return!this._parts.urn;case"urn":return!!this._parts.urn;case"punycode":return c}return null};var k=g.protocol,E=g.port,x=g.hostname;g.protocol=function(e,t){if(void 0!==e&&e&&(e=e.replace(/:(\/\/)?$/,""),!e.match(i.protocol_expression)))throw new TypeError('Protocol "'+e+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]");return k.call(this,e,t)},g.scheme=g.protocol,g.port=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0!==e&&(0===e&&(e=null),e&&(e+="",":"===e.charAt(0)&&(e=e.substring(1)),e.match(/[^0-9]/))))throw new TypeError('Port "'+e+'" contains characters other than [0-9]');return E.call(this,e,t)},g.hostname=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0!==e){var n={};if("/"!==i.parseHost(e,n))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');e=n.hostname}return x.call(this,e,t)},g.origin=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){var n=this.protocol();return this.authority()?(n?n+"://":"")+this.authority():""}var r=i(e);return this.protocol(r.protocol()).authority(r.authority()).build(!t),this},g.host=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e)return this._parts.hostname?i.buildHost(this._parts):"";if("/"!==i.parseHost(e,this._parts))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');return this.build(!t),this},g.authority=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e)return this._parts.hostname?i.buildAuthority(this._parts):"";if("/"!==i.parseAuthority(e,this._parts))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');return this.build(!t),this},g.userinfo=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){var n=i.buildUserinfo(this._parts);return n?n.substring(0,n.length-1):n}return"@"!==e[e.length-1]&&(e+="@"),i.parseUserinfo(e,this._parts),this.build(!t),this},g.resource=function(e,t){var n;return void 0===e?this.path()+this.search()+this.hash():(n=i.parse(e),this._parts.path=n.path,this._parts.query=n.query,this._parts.fragment=n.fragment,this.build(!t),this)},g.subdomain=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var n=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0,n)||""}var r=this._parts.hostname.length-this.domain().length,a=this._parts.hostname.substring(0,r),s=new RegExp("^"+o(a));return e&&"."!==e.charAt(e.length-1)&&(e+="."),e&&i.ensureValidHostname(e),this._parts.hostname=this._parts.hostname.replace(s,e),this.build(!t),this},g.domain=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("boolean"==typeof e&&(t=e,e=void 0),void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var n=this._parts.hostname.match(/\./g);if(n&&n.length<2)return this._parts.hostname;var r=this._parts.hostname.length-this.tld(t).length-1;return r=this._parts.hostname.lastIndexOf(".",r-1)+1,this._parts.hostname.substring(r)||""}if(!e)throw new TypeError("cannot set domain empty");if(i.ensureValidHostname(e),!this._parts.hostname||this.is("IP"))this._parts.hostname=e;else{var a=new RegExp(o(this.domain())+"$");this._parts.hostname=this._parts.hostname.replace(a,e)}return this.build(!t),this},g.tld=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("boolean"==typeof e&&(t=e,e=void 0),void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var r=this._parts.hostname.lastIndexOf("."),i=this._parts.hostname.substring(r+1);return!0!==t&&n&&n.list[i.toLowerCase()]?n.get(this._parts.hostname)||i:i}var a;if(!e)throw new TypeError("cannot set TLD empty");if(e.match(/[^a-zA-Z0-9-]/)){if(!n||!n.is(e))throw new TypeError('TLD "'+e+'" contains characters other than [A-Z0-9]');a=new RegExp(o(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(a,e)}else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host");a=new RegExp(o(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(a,e)}return this.build(!t),this},g.directory=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e||!0===e){if(!this._parts.path&&!this._parts.hostname)return"";if("/"===this._parts.path)return"/";var n=this._parts.path.length-this.filename().length-1,r=this._parts.path.substring(0,n)||(this._parts.hostname?"/":"");return e?i.decodePath(r):r}var a=this._parts.path.length-this.filename().length,s=this._parts.path.substring(0,a),u=new RegExp("^"+o(s));return this.is("relative")||(e||(e="/"),"/"!==e.charAt(0)&&(e="/"+e)),e&&"/"!==e.charAt(e.length-1)&&(e+="/"),e=i.recodePath(e),this._parts.path=this._parts.path.replace(u,e),this.build(!t),this},g.filename=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("string"!=typeof e){if(!this._parts.path||"/"===this._parts.path)return"";var n=this._parts.path.lastIndexOf("/"),r=this._parts.path.substring(n+1);return e?i.decodePathSegment(r):r}var a=!1;"/"===e.charAt(0)&&(e=e.substring(1)),e.match(/\.?\//)&&(a=!0);var s=new RegExp(o(this.filename())+"$");return e=i.recodePath(e),this._parts.path=this._parts.path.replace(s,e),a?this.normalizePath(t):this.build(!t),this},g.suffix=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e||!0===e){if(!this._parts.path||"/"===this._parts.path)return"";var n,r,a=this.filename(),s=a.lastIndexOf(".");return-1===s?"":(n=a.substring(s+1),r=/^[a-z0-9%]+$/i.test(n)?n:"",e?i.decodePathSegment(r):r)}"."===e.charAt(0)&&(e=e.substring(1));var u,c=this.suffix();if(c)u=e?new RegExp(o(c)+"$"):new RegExp(o("."+c)+"$");else{if(!e)return this;this._parts.path+="."+i.recodePath(e)}return u&&(e=i.recodePath(e),this._parts.path=this._parts.path.replace(u,e)),this.build(!t),this},g.segment=function(e,t,n){var r=this._parts.urn?":":"/",i=this.path(),o="/"===i.substring(0,1),a=i.split(r);if(void 0!==e&&"number"!=typeof e&&(n=t,t=e,e=void 0),void 0!==e&&"number"!=typeof e)throw new Error('Bad segment "'+e+'", must be 0-based integer');if(o&&a.shift(),e<0&&(e=Math.max(a.length+e,0)),void 0===t)return void 0===e?a:a[e];if(null===e||void 0===a[e])if(s(t)){a=[];for(var u=0,c=t.length;u<c;u++)(t[u].length||a.length&&a[a.length-1].length)&&(a.length&&!a[a.length-1].length&&a.pop(),a.push(f(t[u])))}else(t||"string"==typeof t)&&(t=f(t),""===a[a.length-1]?a[a.length-1]=t:a.push(t));else t?a[e]=f(t):a.splice(e,1);return o&&a.unshift(""),this.path(a.join(r),n)},g.segmentCoded=function(e,t,n){var r,o,a;if("number"!=typeof e&&(n=t,t=e,e=void 0),void 0===t){if(r=this.segment(e,t,n),s(r))for(o=0,a=r.length;o<a;o++)r[o]=i.decode(r[o]);else r=void 0!==r?i.decode(r):void 0;return r}if(s(t))for(o=0,a=t.length;o<a;o++)t[o]=i.encode(t[o]);else t="string"==typeof t||t instanceof String?i.encode(t):t;return this.segment(e,t,n)};var S=g.query;return g.query=function(e,t){if(!0===e)return i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("function"==typeof e){var n=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace),r=e.call(this,n);return this._parts.query=i.buildQuery(r||n,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!t),this}return void 0!==e&&"string"!=typeof e?(this._parts.query=i.buildQuery(e,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!t),this):S.call(this,e,t)},g.setQuery=function(e,t,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("string"==typeof e||e instanceof String)r[e]=void 0!==t?t:null;else{if("object"!=typeof e)throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");for(var o in e)y.call(e,o)&&(r[o]=e[o])}return this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(n=t),this.build(!n),this},g.addQuery=function(e,t,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.addQuery(r,e,void 0===t?null:t),this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(n=t),this.build(!n),this},g.removeQuery=function(e,t,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.removeQuery(r,e,t),this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(n=t),this.build(!n),this},g.hasQuery=function(e,t,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.hasQuery(r,e,t,n)},g.setSearch=g.setQuery,g.addSearch=g.addQuery,g.removeSearch=g.removeQuery,g.hasSearch=g.hasQuery,g.normalize=function(){return this._parts.urn?this.normalizeProtocol(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build():this.normalizeProtocol(!1).normalizeHostname(!1).normalizePort(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build()},g.normalizeProtocol=function(e){return"string"==typeof this._parts.protocol&&(this._parts.protocol=this._parts.protocol.toLowerCase(),this.build(!e)),this},g.normalizeHostname=function(n){return this._parts.hostname&&(this.is("IDN")&&e?this._parts.hostname=e.toASCII(this._parts.hostname):this.is("IPv6")&&t&&(this._parts.hostname=t.best(this._parts.hostname)),this._parts.hostname=this._parts.hostname.toLowerCase(),this.build(!n)),this},g.normalizePort=function(e){return"string"==typeof this._parts.protocol&&this._parts.port===i.defaultPorts[this._parts.protocol]&&(this._parts.port=null,this.build(!e)),this},g.normalizePath=function(e){var t=this._parts.path;if(!t)return this;if(this._parts.urn)return this._parts.path=i.recodeUrnPath(this._parts.path),this.build(!e),this;if("/"===this._parts.path)return this;t=i.recodePath(t);var n,r,o,a="";for("/"!==t.charAt(0)&&(n=!0,t="/"+t),"/.."!==t.slice(-3)&&"/."!==t.slice(-2)||(t+="/"),t=t.replace(/(\/(\.\/)+)|(\/\.$)/g,"/").replace(/\/{2,}/g,"/"),n&&(a=t.substring(1).match(/^(\.\.\/)+/)||"")&&(a=a[0]);;){if(-1===(r=t.search(/\/\.\.(\/|$)/)))break;0!==r?(o=t.substring(0,r).lastIndexOf("/"),-1===o&&(o=r),t=t.substring(0,o)+t.substring(r+3)):t=t.substring(3)}return n&&this.is("relative")&&(t=a+t.substring(1)),this._parts.path=t,this.build(!e),this},g.normalizePathname=g.normalizePath,g.normalizeQuery=function(e){return"string"==typeof this._parts.query&&(this._parts.query.length?this.query(i.parseQuery(this._parts.query,this._parts.escapeQuerySpace)):this._parts.query=null,this.build(!e)),this},g.normalizeFragment=function(e){return this._parts.fragment||(this._parts.fragment=null,this.build(!e)),this},g.normalizeSearch=g.normalizeQuery,g.normalizeHash=g.normalizeFragment,g.iso8859=function(){var e=i.encode,t=i.decode;i.encode=escape,i.decode=decodeURIComponent;try{this.normalize()}finally{i.encode=e,i.decode=t}return this},g.unicode=function(){var e=i.encode,t=i.decode;i.encode=h,i.decode=unescape;try{this.normalize()}finally{i.encode=e,i.decode=t}return this},g.readable=function(){var t=this.clone();t.username("").password("").normalize();var n="";if(t._parts.protocol&&(n+=t._parts.protocol+"://"),t._parts.hostname&&(t.is("punycode")&&e?(n+=e.toUnicode(t._parts.hostname),t._parts.port&&(n+=":"+t._parts.port)):n+=t.host()),t._parts.hostname&&t._parts.path&&"/"!==t._parts.path.charAt(0)&&(n+="/"),n+=t.path(!0),t._parts.query){for(var r="",o=0,a=t._parts.query.split("&"),s=a.length;o<s;o++){var u=(a[o]||"").split("=");r+="&"+i.decodeQuery(u[0],this._parts.escapeQuerySpace).replace(/&/g,"%26"),void 0!==u[1]&&(r+="="+i.decodeQuery(u[1],this._parts.escapeQuerySpace).replace(/&/g,"%26"))}n+="?"+r.substring(1)}return n+=i.decodeQuery(t.hash(),!0)},g.absoluteTo=function(e){var t,n,r,o=this.clone(),a=["protocol","username","password","hostname","port"];if(this._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(e instanceof i||(e=new i(e)),o._parts.protocol||(o._parts.protocol=e._parts.protocol),this._parts.hostname)return o;for(n=0;r=a[n];n++)o._parts[r]=e._parts[r];return o._parts.path?(".."===o._parts.path.substring(-2)&&(o._parts.path+="/"),"/"!==o.path().charAt(0)&&(t=e.directory(),t=t||(0===e.path().indexOf("/")?"/":""),o._parts.path=(t?t+"/":"")+o._parts.path,o.normalizePath())):(o._parts.path=e._parts.path,o._parts.query||(o._parts.query=e._parts.query)),o.build(),o},g.relativeTo=function(e){var t,n,r,o,a,s=this.clone().normalize();if(s._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(e=new i(e).normalize(),t=s._parts,n=e._parts,o=s.path(),a=e.path(),"/"!==o.charAt(0))throw new Error("URI is already relative");if("/"!==a.charAt(0))throw new Error("Cannot calculate a URI relative to another relative URI");if(t.protocol===n.protocol&&(t.protocol=null),t.username!==n.username||t.password!==n.password)return s.build();if(null!==t.protocol||null!==t.username||null!==t.password)return s.build();if(t.hostname!==n.hostname||t.port!==n.port)return s.build();if(t.hostname=null,t.port=null,o===a)return t.path="",s.build();if(!(r=i.commonPath(o,a)))return s.build();var u=n.path.substring(r.length).replace(/[^\/]*$/,"").replace(/.*?\//g,"../");return t.path=u+t.path.substring(r.length)||"./",s.build()},g.equals=function(e){var t,n,r,o=this.clone(),a=new i(e),u={},c={},f={};if(o.normalize(),a.normalize(),o.toString()===a.toString())return!0;if(t=o.query(),n=a.query(),o.query(""),a.query(""),o.toString()!==a.toString())return!1;if(t.length!==n.length)return!1;u=i.parseQuery(t,this._parts.escapeQuerySpace),c=i.parseQuery(n,this._parts.escapeQuerySpace);for(r in u)if(y.call(u,r)){if(s(u[r])){if(!l(u[r],c[r]))return!1}else if(u[r]!==c[r])return!1;f[r]=!0}for(r in c)if(y.call(c,r)&&!f[r])return!1;return!0},g.duplicateQueryParameters=function(e){return this._parts.duplicateQueryParameters=!!e,this},g.escapeQuerySpace=function(e){return this._parts.escapeQuerySpace=!!e,this},i})},function(e,t,n){"use strict";function r(e,t,n){var r=n.docPermalink;return function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];var a=i(n,t);if(a){var s="Visit https://scrivito.com/"+r+" for more information.";throw new l.ArgumentError("Invalid arguments for '"+e+"': "+a+" "+s)}}}function i(e,t){var n=t.length,r=e.length;if(r>n)return"Expected "+n+" arguments, got "+r;var i=c.flatten(t.map(function(t,n){var r=t[0],i=t[1],a=e[n];return s.tcomb.validate(a,i).errors.map(function(e){return o(r,e)})}));return i.length>0?i.join(" "):void 0}function o(e,t){var n=a(e,t);if(void 0===t.actual)return"Missing required "+n+".";if(t.expected===s.tcomb.Nil)return"Unexpected "+n+".";var r=s.tcomb.getTypeName(t.expected);return"Unexpected value for "+n+": got "+u.default(t.actual)+", expected type "+r+"."}function a(e,t){var n="argument '"+e+"'";return 0===t.path.length?n:"key '"+t.path.join("/")+"' in "+n}Object.defineProperty(t,"__esModule",{value:!0});var s=n(21),u=n(37),c=n(0),l=n(1);t.checkArgumentsFor=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e){var t=l.default.without.apply(l.default,[l.default.keys(e)].concat(y));if(!l.default.isEmpty(t))throw new g.ArgumentError("Unexpected attributes "+(0,m.default)(t)+". Available attributes: "+(0,m.default)(y))}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(33),u=r(s),c=n(0),l=r(c),f=n(3),d=r(f),h=n(8),p=r(h),v=n(37),m=r(v),g=n(1),y=["hash","obj","query","target","title","url"],b=function(){function e(t){i(this,e),o(t),this._hash=t.hash||null,this._query=t.query||null,this._target=t.target||null,this._title=t.title||null,this._url=t.url||null,this._objId=null,t.obj&&(this._objId=t.obj.id())}return a(e,null,[{key:"build",value:function(e){var t=e.objId;delete e.objId;var n=new this(e);return t&&(n._objId=t),n}}]),a(e,[{key:"title",value:function(){return this._title}},{key:"query",value:function(){return this._query}},{key:"hash",value:function(){return this._hash}},{key:"target",value:function(){return this._target}},{key:"url",value:function(){return this._url}},{key:"objId",value:function(){return this._objId}},{key:"obj",value:function(){return this.objId()?d.default.get(this.objId()):null}},{key:"queryParameters",value:function(){return u.default.parseQuery(this.query())}},{key:"fetchObj",value:function(){var e=this;return this.isExternal()?scrivito.Promise.reject(new g.ScrivitoError("The link is external and does not reference an object.")):(0,p.default)(function(){return d.default.get(e.objId())})}},{key:"isExternal",value:function(){return!!this.url()}},{key:"isInternal",value:function(){return!this.isExternal()}},{key:"copy",value:function(e){o(e);var t=this.buildAttributes();return l.default.has(e,"obj")&&delete t.objId,l.default.extend(t,e),this.constructor.build(t)}},{key:"buildAttributes",value:function(){return{title:this.title(),query:this.query(),hash:this.hash(),target:this.target(),url:this.url(),objId:this.objId()}}},{key:"isBroken",value:function(){return!this.isExternal()&&!this.obj()}},{key:"toPrettyPrint",value:function(){return this.isInternal()?'[object Link objId="'+this.objId()+'"]':'[object Link url="'+this.url()+'"]'}}]),e}();t.default=b},function(e,t,n){"use strict";function r(e){l?c.push(e):setTimeout(e,0)}function i(e){r(function(){throw e})}function o(){if(l){for(var e=[];c.length;){var t=u.default.shuffle(c);c=[],u.default.each(t,function(t){try{t()}catch(t){e.push(t)}})}if(e.length>0)throw e[0]}}function a(){l=!0}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r,t.throwNextTick=i,t.simulateNextTicks=o,t.enableNextTickCapture=a;var s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=[],l=void 0},function(e,t,n){"use strict";function r(e){try{return(0,u.isFunction)(e)?o(e):(0,u.isObject)(e)?i(e):a(e)}catch(e){return""}}function i(e){var t=e._scrivitoPrivateContent;return t&&(0,u.isFunction)(t.toPrettyPrint)?t.toPrettyPrint():(0,u.isElement)(e)?"[object HTMLElement "+a(e.outerHTML)+"]":a(e)}function o(e){var t=e._scrivitoPrivateSchema;if(t)return"[class "+t.name+"]";if(e.prototype&&e.prototype.isReactComponent){return'[class React.Component "'+(e.displayName||e.name)+'"]'}return s(e.toString())}function a(e){var t=JSON.stringify(e);return t?s(t):t}function s(e){return e.length>100?e.slice(0,100)+"...":e}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var u=n(0)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(0),s=function(e){return e&&e.__esModule?e:{default:e}}(a),u=function(){function e(t,n){r(this,e),t.attributes=t.attributes||{},n._scrivitoPrivateSchema&&(t.attributes=s.default.extend({},n._scrivitoPrivateSchema.attributes,t.attributes)),this.definition=t}return o(e,null,[{key:"forInstance",value:function(e){return this.forClass(e.constructor)}},{key:"forClass",value:function(e){return e._scrivitoPrivateSchema}},{key:"basicFieldFor",value:function(t,n){var r=e.forInstance(t);if(r){var i=r.attributeDefinition(n);if(i)return t._scrivitoPrivateContent.field(n,i)}}}]),o(e,[{key:"attributeDefinition",value:function(e){var t=this.attributes[e];if(t)return scrivito.typeInfo.normalize(t)}},{key:"isBinary",value:function(){var e=this.attributeDefinition("blob")||[];return"binary"===i(e,1)[0]}},{key:"attributes",get:function(){return this.definition.attributes}},{key:"name",get:function(){return this.definition.name}},{key:"validContainerClasses",get:function(){return this.definition.validContainerClasses}}]),e}();t.default=u},,,,function(e,t,n){"use strict";function r(e){return"_"===e[0]}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e){return v.default.isString(e)?e.match(/^-?\d+$/)?d(e):null:d(e)}function i(e){return f(e)&&g<=e&&e<=y}function o(e){return v.default.isNumber(e)&&v.default.isFinite(e)}function a(e){if(!v.default.isString(e))return null;if(!c(e))throw new m.InternalError('The value is not a valid ISO date time: "'+e+'"');return s(e)}function s(e){if(e){var t=e.match(b),n=h(t,7),r=(n[0],n[1]),i=n[2],o=n[3],a=n[4],s=n[5],u=n[6];return new Date(Date.UTC(r,i-1,o,a,s,u))}}function u(e){return""+e.getUTCFullYear()+l(e.getUTCMonth()+1)+l(e.getUTCDate())+l(e.getUTCHours())+l(e.getUTCMinutes())+l(e.getUTCSeconds())}function c(e){return v.default.isString(e)&&e.match(/^\d{14}$/)}function l(e){return e<10?"0"+e:e}function f(e){return v.default.isNumber(e)&&v.default.isFinite(e)&&Math.floor(e)===e}function d(e){var t=parseInt(e,10);return 0===t?0:i(t)?t:null}Object.defineProperty(t,"__esModule",{value:!0});var h=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.deserializeAsInteger=r,t.isValidInteger=i,t.isValidFloat=o,t.deserializeAsDate=a,t.parseStringToDate=s,t.formatDateToString=u,t.isValidDateString=c;var p=n(0),v=function(e){return e&&e.__esModule?e:{default:e}}(p),m=n(1),g=-9007199254740991,y=9007199254740991,b=/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/},,function(e,t){e.exports=function(e){return e.displayName||e.name||"<function"+e.length+">"}},function(e,t,n){var r=n(4),i=n(7);e.exports=function(e,t){r(!(e instanceof t),function(){return"Cannot use the new operator to instantiate the type "+i(t)})}},,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t,n){return{field:d(e),operator:f(t),value:c(n)}}function s(e){if(!(0,k.contains)(A,e))throw new x.ArgumentError('Boosting operator "'+e+'" is invalid.')}function u(e){if(!(0,k.contains)(T,e))throw new x.ArgumentError('Negating operator "'+e+'" is invalid.')}function c(e){return(0,k.isArray)(e)?(0,k.map)(e,l):l(e)}function l(e){return(0,k.isDate)(e)?(0,y.formatDateToString)(e):e instanceof g.default?e.id():e}function f(e){if(!(0,k.contains)(S,e))throw new x.ArgumentError('Operator "'+e+'" is invalid.');return(0,E.underscore)(e)}function d(e){return(0,k.isArray)(e)?(0,k.map)(e,p):p(e)}function h(e){var t={};return(0,k.each)(e,function(e,n){var r=p(n);t[r]=e}),t}function p(e){if(!(0,E.isCamelCase)(e))throw new x.ArgumentError('Attribute name "'+e+'" is not camel case.');return(0,E.underscore)(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.OPERATORS=void 0;var v=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),m=n(3),g=r(m),y=n(43),b=n(101),w=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(b),_=n(192),C=r(_),k=n(0),E=n(19),x=n(1),S=t.OPERATORS=["contains","containsPrefix","equals","startsWith","isGreaterThan","isLessThan","linksTo","refersTo"],T=["equals","startsWith","isGreaterThan","isLessThan"],A=["contains","containsPrefix"],j=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o(this,e),this._query=[].concat(t.query||[]),this._batchSize=t.batchSize,this._offset=t.offset,this._sortBy=t.sortBy,this._sortDirection=t.sortDirection,this._includeDeleted=t.includeDeleted}return v(e,[{key:"and",value:function(t,n,r){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(t instanceof e)this._query=[].concat(i(this._query),i(t._query));else{var u=a(t,n,r);o&&(s(n),u.boost=h(o)),this._query.push(u)}return this}},{key:"andNot",value:function(e,t,n){var r=a(e,t,n);return u(t),r.negate=!0,this._query.push(r),this}},{key:"offset",value:function(e){return this._offset=e,this}},{key:"order",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"asc";return this._sortBy=p(e),this._sortDirection=t,this}},{key:"batchSize",value:function(e){return this._batchSize=e,this}},{key:"includeDeleted",value:function(){return this._includeDeleted=!0,this}},{key:"count",value:function(){return this.getObjDataQuery().count()}},{key:"iterator",value:function(){var e=this.getObjDataQuery().iterator();return{next:function(){var t=e.next(),n=t.done,r=t.value;return n?{done:n}:{done:n,value:new g.default(r)}}}}},{key:"getObjDataQuery",value:function(){return w.get(this.params(),this.getBatchSize())}},{key:"getBatchSize",value:function(){return this._batchSize||100}},{key:"facet",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new C.default(p(e),t,this._query).result()}},{key:"store",value:function(e){w.store(this.params(),e)}},{key:"params",value:function(){return(0,k.omit)({query:this._query,offset:this._offset,sortBy:this._sortBy,sortDirection:this._sortDirection,includeDeleted:this._includeDeleted,batchSize:this._batchSize},k.isUndefined)}}]),e}();t.default=j},function(e,t,n){var r,i;/*!
14
+ !function(a,s){"use strict";"object"==typeof t&&t.exports?t.exports=s(n(97),n(99),n(100)):(i=[n(97),n(99),n(100)],r=s,void 0!==(o="function"==typeof r?r.apply(e,i):r)&&(t.exports=o))}(0,function(t,e,n,r){"use strict";function i(t,e){var n=arguments.length>=1,r=arguments.length>=2;if(!(this instanceof i))return n?r?new i(t,e):new i(t):new i;if(void 0===t){if(n)throw new TypeError("undefined is not a valid argument for URI");t="undefined"!=typeof location?location.href+"":""}if(null===t&&n)throw new TypeError("null is not a valid argument for URI");return this.href(t),void 0!==e?this.absoluteTo(e):this}function o(t){return/^[0-9]+$/.test(t)}function a(t){return t.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function s(t){return void 0===t?"Undefined":String(Object.prototype.toString.call(t)).slice(8,-1)}function u(t){return"Array"===s(t)}function c(t,e){var n,r,i={};if("RegExp"===s(e))i=null;else if(u(e))for(n=0,r=e.length;n<r;n++)i[e[n]]=!0;else i[e]=!0;for(n=0,r=t.length;n<r;n++){(i&&void 0!==i[t[n]]||!i&&e.test(t[n]))&&(t.splice(n,1),r--,n--)}return t}function l(t,e){var n,r;if(u(e)){for(n=0,r=e.length;n<r;n++)if(!l(t,e[n]))return!1;return!0}var i=s(e);for(n=0,r=t.length;n<r;n++)if("RegExp"===i){if("string"==typeof t[n]&&t[n].match(e))return!0}else if(t[n]===e)return!0;return!1}function f(t,e){if(!u(t)||!u(e))return!1;if(t.length!==e.length)return!1;t.sort(),e.sort();for(var n=0,r=t.length;n<r;n++)if(t[n]!==e[n])return!1;return!0}function d(t){var e=/^\/+|\/+$/g;return t.replace(e,"")}function h(t){return escape(t)}function p(t){return encodeURIComponent(t).replace(/[!'()*]/g,h).replace(/\*/g,"%2A")}function v(t){return function(e,n){return void 0===e?this._parts[t]||"":(this._parts[t]=e||null,this.build(!n),this)}}function y(t,e){return function(n,r){return void 0===n?this._parts[t]||"":(null!==n&&(n+="",n.charAt(0)===e&&(n=n.substring(1))),this._parts[t]=n,this.build(!r),this)}}var m=r&&r.URI;i.version="1.19.1";var b=i.prototype,g=Object.prototype.hasOwnProperty;i._parts=function(){return{protocol:null,username:null,password:null,hostname:null,urn:null,port:null,path:null,query:null,fragment:null,preventInvalidHostname:i.preventInvalidHostname,duplicateQueryParameters:i.duplicateQueryParameters,escapeQuerySpace:i.escapeQuerySpace}},i.preventInvalidHostname=!1,i.duplicateQueryParameters=!1,i.escapeQuerySpace=!0,i.protocol_expression=/^[a-z][a-z0-9.+-]*$/i,i.idn_expression=/[^a-z0-9\._-]/i,i.punycode_expression=/(xn--)/i,i.ip4_expression=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,i.ip6_expression=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$/,i.find_uri_expression=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/gi,i.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?«»“”„‘’]+$/,parens:/(\([^\)]*\)|\[[^\]]*\]|\{[^}]*\}|<[^>]*>)/g},i.defaultPorts={http:"80",https:"443",ftp:"21",gopher:"70",ws:"80",wss:"443"},i.hostProtocols=["http","https"],i.invalid_hostname_characters=/[^a-zA-Z0-9\.\-:_]/,i.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"},i.getDomAttribute=function(t){if(t&&t.nodeName){var e=t.nodeName.toLowerCase();if("input"!==e||"image"===t.type)return i.domAttributes[e]}},i.encode=p,i.decode=decodeURIComponent,i.iso8859=function(){i.encode=escape,i.decode=unescape},i.unicode=function(){i.encode=p,i.decode=decodeURIComponent},i.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/gi,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/gi,map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@","%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/gi,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}},i.encodeQuery=function(t,e){var n=i.encode(t+"");return void 0===e&&(e=i.escapeQuerySpace),e?n.replace(/%20/g,"+"):n},i.decodeQuery=function(t,e){t+="",void 0===e&&(e=i.escapeQuerySpace);try{return i.decode(e?t.replace(/\+/g,"%20"):t)}catch(e){return t}};var w,_={encode:"encode",decode:"decode"},k=function(t,e){return function(n){try{return i[e](n+"").replace(i.characters[t][e].expression,function(n){return i.characters[t][e].map[n]})}catch(t){return n}}};for(w in _)i[w+"PathSegment"]=k("pathname",_[w]),i[w+"UrnPathSegment"]=k("urnpath",_[w]);var O=function(t,e,n){return function(r){var o;o=n?function(t){return i[e](i[n](t))}:i[e];for(var a=(r+"").split(t),s=0,u=a.length;s<u;s++)a[s]=o(a[s]);return a.join(t)}};i.decodePath=O("/","decodePathSegment"),i.decodeUrnPath=O(":","decodeUrnPathSegment"),i.recodePath=O("/","encodePathSegment","decode"),i.recodeUrnPath=O(":","encodeUrnPathSegment","decode"),i.encodeReserved=k("reserved","encode"),i.parse=function(t,e){var n;return e||(e={preventInvalidHostname:i.preventInvalidHostname}),n=t.indexOf("#"),n>-1&&(e.fragment=t.substring(n+1)||null,t=t.substring(0,n)),n=t.indexOf("?"),n>-1&&(e.query=t.substring(n+1)||null,t=t.substring(0,n)),"//"===t.substring(0,2)?(e.protocol=null,t=t.substring(2),t=i.parseAuthority(t,e)):(n=t.indexOf(":"))>-1&&(e.protocol=t.substring(0,n)||null,e.protocol&&!e.protocol.match(i.protocol_expression)?e.protocol=void 0:"//"===t.substring(n+1,n+3)?(t=t.substring(n+3),t=i.parseAuthority(t,e)):(t=t.substring(n+1),e.urn=!0)),e.path=t,e},i.parseHost=function(t,e){t||(t=""),t=t.replace(/\\/g,"/");var n,r,o=t.indexOf("/");if(-1===o&&(o=t.length),"["===t.charAt(0))n=t.indexOf("]"),e.hostname=t.substring(1,n)||null,e.port=t.substring(n+2,o)||null,"/"===e.port&&(e.port=null);else{var a=t.indexOf(":"),s=t.indexOf("/"),u=t.indexOf(":",a+1);-1!==u&&(-1===s||u<s)?(e.hostname=t.substring(0,o)||null,e.port=null):(r=t.substring(0,o).split(":"),e.hostname=r[0]||null,e.port=r[1]||null)}return e.hostname&&"/"!==t.substring(o).charAt(0)&&(o++,t="/"+t),e.preventInvalidHostname&&i.ensureValidHostname(e.hostname,e.protocol),e.port&&i.ensureValidPort(e.port),t.substring(o)||"/"},i.parseAuthority=function(t,e){return t=i.parseUserinfo(t,e),i.parseHost(t,e)},i.parseUserinfo=function(t,e){var n,r=t.indexOf("/"),o=t.lastIndexOf("@",r>-1?r:t.length-1);return o>-1&&(-1===r||o<r)?(n=t.substring(0,o).split(":"),e.username=n[0]?i.decode(n[0]):null,n.shift(),e.password=n[0]?i.decode(n.join(":")):null,t=t.substring(o+1)):(e.username=null,e.password=null),t},i.parseQuery=function(t,e){if(!t)return{};if(!(t=t.replace(/&+/g,"&").replace(/^\?*&*|&+$/g,"")))return{};for(var n,r,o,a={},s=t.split("&"),u=s.length,c=0;c<u;c++)n=s[c].split("="),r=i.decodeQuery(n.shift(),e),o=n.length?i.decodeQuery(n.join("="),e):null,g.call(a,r)?("string"!=typeof a[r]&&null!==a[r]||(a[r]=[a[r]]),a[r].push(o)):a[r]=o;return a},i.build=function(t){var e="";return t.protocol&&(e+=t.protocol+":"),t.urn||!e&&!t.hostname||(e+="//"),e+=i.buildAuthority(t)||"","string"==typeof t.path&&("/"!==t.path.charAt(0)&&"string"==typeof t.hostname&&(e+="/"),e+=t.path),"string"==typeof t.query&&t.query&&(e+="?"+t.query),"string"==typeof t.fragment&&t.fragment&&(e+="#"+t.fragment),e},i.buildHost=function(t){var e="";return t.hostname?(i.ip6_expression.test(t.hostname)?e+="["+t.hostname+"]":e+=t.hostname,t.port&&(e+=":"+t.port),e):""},i.buildAuthority=function(t){return i.buildUserinfo(t)+i.buildHost(t)},i.buildUserinfo=function(t){var e="";return t.username&&(e+=i.encode(t.username)),t.password&&(e+=":"+i.encode(t.password)),e&&(e+="@"),e},i.buildQuery=function(t,e,n){var r,o,a,s,c="";for(o in t)if(g.call(t,o)&&o)if(u(t[o]))for(r={},a=0,s=t[o].length;a<s;a++)void 0!==t[o][a]&&void 0===r[t[o][a]+""]&&(c+="&"+i.buildQueryParameter(o,t[o][a],n),!0!==e&&(r[t[o][a]+""]=!0));else void 0!==t[o]&&(c+="&"+i.buildQueryParameter(o,t[o],n));return c.substring(1)},i.buildQueryParameter=function(t,e,n){return i.encodeQuery(t,n)+(null!==e?"="+i.encodeQuery(e,n):"")},i.addQuery=function(t,e,n){if("object"==typeof e)for(var r in e)g.call(e,r)&&i.addQuery(t,r,e[r]);else{if("string"!=typeof e)throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");if(void 0===t[e])return void(t[e]=n);"string"==typeof t[e]&&(t[e]=[t[e]]),u(n)||(n=[n]),t[e]=(t[e]||[]).concat(n)}},i.setQuery=function(t,e,n){if("object"==typeof e)for(var r in e)g.call(e,r)&&i.setQuery(t,r,e[r]);else{if("string"!=typeof e)throw new TypeError("URI.setQuery() accepts an object, string as the name parameter");t[e]=void 0===n?null:n}},i.removeQuery=function(t,e,n){var r,o,a;if(u(e))for(r=0,o=e.length;r<o;r++)t[e[r]]=void 0;else if("RegExp"===s(e))for(a in t)e.test(a)&&(t[a]=void 0);else if("object"==typeof e)for(a in e)g.call(e,a)&&i.removeQuery(t,a,e[a]);else{if("string"!=typeof e)throw new TypeError("URI.removeQuery() accepts an object, string, RegExp as the first parameter");void 0!==n?"RegExp"===s(n)?!u(t[e])&&n.test(t[e])?t[e]=void 0:t[e]=c(t[e],n):t[e]!==String(n)||u(n)&&1!==n.length?u(t[e])&&(t[e]=c(t[e],n)):t[e]=void 0:t[e]=void 0}},i.hasQuery=function(t,e,n,r){switch(s(e)){case"String":break;case"RegExp":for(var o in t)if(g.call(t,o)&&e.test(o)&&(void 0===n||i.hasQuery(t,o,n)))return!0;return!1;case"Object":for(var a in e)if(g.call(e,a)&&!i.hasQuery(t,a,e[a]))return!1;return!0;default:throw new TypeError("URI.hasQuery() accepts a string, regular expression or object as the name parameter")}switch(s(n)){case"Undefined":return e in t;case"Boolean":return n===Boolean(u(t[e])?t[e].length:t[e]);case"Function":return!!n(t[e],e,t);case"Array":if(!u(t[e]))return!1;return(r?l:f)(t[e],n);case"RegExp":return u(t[e])?!!r&&l(t[e],n):Boolean(t[e]&&t[e].match(n));case"Number":n=String(n);case"String":return u(t[e])?!!r&&l(t[e],n):t[e]===n;default:throw new TypeError("URI.hasQuery() accepts undefined, boolean, string, number, RegExp, Function as the value parameter")}},i.joinPaths=function(){for(var t=[],e=[],n=0,r=0;r<arguments.length;r++){var o=new i(arguments[r]);t.push(o);for(var a=o.segment(),s=0;s<a.length;s++)"string"==typeof a[s]&&e.push(a[s]),a[s]&&n++}if(!e.length||!n)return new i("");var u=new i("").segment(e);return""!==t[0].path()&&"/"!==t[0].path().slice(0,1)||u.path("/"+u.path()),u.normalize()},i.commonPath=function(t,e){var n,r=Math.min(t.length,e.length);for(n=0;n<r;n++)if(t.charAt(n)!==e.charAt(n)){n--;break}return n<1?t.charAt(0)===e.charAt(0)&&"/"===t.charAt(0)?"/":"":("/"===t.charAt(n)&&"/"===e.charAt(n)||(n=t.substring(0,n).lastIndexOf("/")),t.substring(0,n+1))},i.withinString=function(t,e,n){n||(n={});var r=n.start||i.findUri.start,o=n.end||i.findUri.end,a=n.trim||i.findUri.trim,s=n.parens||i.findUri.parens,u=/[a-z0-9-]=["']?$/i;for(r.lastIndex=0;;){var c=r.exec(t);if(!c)break;var l=c.index;if(n.ignoreHtml){var f=t.slice(Math.max(l-3,0),l);if(f&&u.test(f))continue}for(var d=l+t.slice(l).search(o),h=t.slice(l,d),p=-1;;){var v=s.exec(h);if(!v)break;var y=v.index+v[0].length;p=Math.max(p,y)}if(h=p>-1?h.slice(0,p)+h.slice(p).replace(a,""):h.replace(a,""),!(h.length<=c[0].length||n.ignore&&n.ignore.test(h))){d=l+h.length;var m=e(h,l,d,t);void 0!==m?(m=String(m),t=t.slice(0,l)+m+t.slice(d),r.lastIndex=l+m.length):r.lastIndex=d}}return r.lastIndex=0,t},i.ensureValidHostname=function(e,n){var r=!!e,o=!!n,a=!1;if(o&&(a=l(i.hostProtocols,n)),a&&!r)throw new TypeError("Hostname cannot be empty, if protocol is "+n);if(e&&e.match(i.invalid_hostname_characters)){if(!t)throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-:_] and Punycode.js is not available');if(t.toASCII(e).match(i.invalid_hostname_characters))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-:_]')}},i.ensureValidPort=function(t){if(t){var e=Number(t);if(!(o(e)&&e>0&&e<65536))throw new TypeError('Port "'+t+'" is not a valid port')}},i.noConflict=function(t){if(t){var e={URI:this.noConflict()};return r.URITemplate&&"function"==typeof r.URITemplate.noConflict&&(e.URITemplate=r.URITemplate.noConflict()),r.IPv6&&"function"==typeof r.IPv6.noConflict&&(e.IPv6=r.IPv6.noConflict()),r.SecondLevelDomains&&"function"==typeof r.SecondLevelDomains.noConflict&&(e.SecondLevelDomains=r.SecondLevelDomains.noConflict()),e}return r.URI===this&&(r.URI=m),this},b.build=function(t){return!0===t?this._deferred_build=!0:(void 0===t||this._deferred_build)&&(this._string=i.build(this._parts),this._deferred_build=!1),this},b.clone=function(){return new i(this)},b.valueOf=b.toString=function(){return this.build(!1)._string},b.protocol=v("protocol"),b.username=v("username"),b.password=v("password"),b.hostname=v("hostname"),b.port=v("port"),b.query=y("query","?"),b.fragment=y("fragment","#"),b.search=function(t,e){var n=this.query(t,e);return"string"==typeof n&&n.length?"?"+n:n},b.hash=function(t,e){var n=this.fragment(t,e);return"string"==typeof n&&n.length?"#"+n:n},b.pathname=function(t,e){if(void 0===t||!0===t){var n=this._parts.path||(this._parts.hostname?"/":"");return t?(this._parts.urn?i.decodeUrnPath:i.decodePath)(n):n}return this._parts.urn?this._parts.path=t?i.recodeUrnPath(t):"":this._parts.path=t?i.recodePath(t):"/",this.build(!e),this},b.path=b.pathname,b.href=function(t,e){var n;if(void 0===t)return this.toString();this._string="",this._parts=i._parts();var r=t instanceof i,o="object"==typeof t&&(t.hostname||t.path||t.pathname);if(t.nodeName){t=t[i.getDomAttribute(t)]||"",o=!1}if(!r&&o&&void 0!==t.pathname&&(t=t.toString()),"string"==typeof t||t instanceof String)this._parts=i.parse(String(t),this._parts);else{if(!r&&!o)throw new TypeError("invalid input");var a=r?t._parts:t;for(n in a)"query"!==n&&g.call(this._parts,n)&&(this._parts[n]=a[n]);a.query&&this.query(a.query,!1)}return this.build(!e),this},b.is=function(t){var e=!1,r=!1,o=!1,a=!1,s=!1,u=!1,c=!1,l=!this._parts.urn;switch(this._parts.hostname&&(l=!1,r=i.ip4_expression.test(this._parts.hostname),o=i.ip6_expression.test(this._parts.hostname),e=r||o,a=!e,s=a&&n&&n.has(this._parts.hostname),u=a&&i.idn_expression.test(this._parts.hostname),c=a&&i.punycode_expression.test(this._parts.hostname)),t.toLowerCase()){case"relative":return l;case"absolute":return!l;case"domain":case"name":return a;case"sld":return s;case"ip":return e;case"ip4":case"ipv4":case"inet4":return r;case"ip6":case"ipv6":case"inet6":return o;case"idn":return u;case"url":return!this._parts.urn;case"urn":return!!this._parts.urn;case"punycode":return c}return null};var E=b.protocol,x=b.port,C=b.hostname;b.protocol=function(t,e){if(t&&(t=t.replace(/:(\/\/)?$/,""),!t.match(i.protocol_expression)))throw new TypeError('Protocol "'+t+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]");return E.call(this,t,e)},b.scheme=b.protocol,b.port=function(t,e){return this._parts.urn?void 0===t?"":this:(void 0!==t&&(0===t&&(t=null),t&&(t+="",":"===t.charAt(0)&&(t=t.substring(1)),i.ensureValidPort(t))),x.call(this,t,e))},b.hostname=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0!==t){var n={preventInvalidHostname:this._parts.preventInvalidHostname};if("/"!==i.parseHost(t,n))throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-]');t=n.hostname,this._parts.preventInvalidHostname&&i.ensureValidHostname(t,this._parts.protocol)}return C.call(this,t,e)},b.origin=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t){var n=this.protocol();return this.authority()?(n?n+"://":"")+this.authority():""}var r=i(t);return this.protocol(r.protocol()).authority(r.authority()).build(!e),this},b.host=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t)return this._parts.hostname?i.buildHost(this._parts):"";if("/"!==i.parseHost(t,this._parts))throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-]');return this.build(!e),this},b.authority=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t)return this._parts.hostname?i.buildAuthority(this._parts):"";if("/"!==i.parseAuthority(t,this._parts))throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-]');return this.build(!e),this},b.userinfo=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t){var n=i.buildUserinfo(this._parts);return n?n.substring(0,n.length-1):n}return"@"!==t[t.length-1]&&(t+="@"),i.parseUserinfo(t,this._parts),this.build(!e),this},b.resource=function(t,e){var n;return void 0===t?this.path()+this.search()+this.hash():(n=i.parse(t),this._parts.path=n.path,this._parts.query=n.query,this._parts.fragment=n.fragment,this.build(!e),this)},b.subdomain=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t){if(!this._parts.hostname||this.is("IP"))return"";var n=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0,n)||""}var r=this._parts.hostname.length-this.domain().length,o=this._parts.hostname.substring(0,r),s=new RegExp("^"+a(o));if(t&&"."!==t.charAt(t.length-1)&&(t+="."),-1!==t.indexOf(":"))throw new TypeError("Domains cannot contain colons");return t&&i.ensureValidHostname(t,this._parts.protocol),this._parts.hostname=this._parts.hostname.replace(s,t),this.build(!e),this},b.domain=function(t,e){if(this._parts.urn)return void 0===t?"":this;if("boolean"==typeof t&&(e=t,t=void 0),void 0===t){if(!this._parts.hostname||this.is("IP"))return"";var n=this._parts.hostname.match(/\./g);if(n&&n.length<2)return this._parts.hostname;var r=this._parts.hostname.length-this.tld(e).length-1;return r=this._parts.hostname.lastIndexOf(".",r-1)+1,this._parts.hostname.substring(r)||""}if(!t)throw new TypeError("cannot set domain empty");if(-1!==t.indexOf(":"))throw new TypeError("Domains cannot contain colons");if(i.ensureValidHostname(t,this._parts.protocol),!this._parts.hostname||this.is("IP"))this._parts.hostname=t;else{var o=new RegExp(a(this.domain())+"$");this._parts.hostname=this._parts.hostname.replace(o,t)}return this.build(!e),this},b.tld=function(t,e){if(this._parts.urn)return void 0===t?"":this;if("boolean"==typeof t&&(e=t,t=void 0),void 0===t){if(!this._parts.hostname||this.is("IP"))return"";var r=this._parts.hostname.lastIndexOf("."),i=this._parts.hostname.substring(r+1);return!0!==e&&n&&n.list[i.toLowerCase()]?n.get(this._parts.hostname)||i:i}var o;if(!t)throw new TypeError("cannot set TLD empty");if(t.match(/[^a-zA-Z0-9-]/)){if(!n||!n.is(t))throw new TypeError('TLD "'+t+'" contains characters other than [A-Z0-9]');o=new RegExp(a(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(o,t)}else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host");o=new RegExp(a(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(o,t)}return this.build(!e),this},b.directory=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t||!0===t){if(!this._parts.path&&!this._parts.hostname)return"";if("/"===this._parts.path)return"/";var n=this._parts.path.length-this.filename().length-1,r=this._parts.path.substring(0,n)||(this._parts.hostname?"/":"");return t?i.decodePath(r):r}var o=this._parts.path.length-this.filename().length,s=this._parts.path.substring(0,o),u=new RegExp("^"+a(s));return this.is("relative")||(t||(t="/"),"/"!==t.charAt(0)&&(t="/"+t)),t&&"/"!==t.charAt(t.length-1)&&(t+="/"),t=i.recodePath(t),this._parts.path=this._parts.path.replace(u,t),this.build(!e),this},b.filename=function(t,e){if(this._parts.urn)return void 0===t?"":this;if("string"!=typeof t){if(!this._parts.path||"/"===this._parts.path)return"";var n=this._parts.path.lastIndexOf("/"),r=this._parts.path.substring(n+1);return t?i.decodePathSegment(r):r}var o=!1;"/"===t.charAt(0)&&(t=t.substring(1)),t.match(/\.?\//)&&(o=!0);var s=new RegExp(a(this.filename())+"$");return t=i.recodePath(t),this._parts.path=this._parts.path.replace(s,t),o?this.normalizePath(e):this.build(!e),this},b.suffix=function(t,e){if(this._parts.urn)return void 0===t?"":this;if(void 0===t||!0===t){if(!this._parts.path||"/"===this._parts.path)return"";var n,r,o=this.filename(),s=o.lastIndexOf(".");return-1===s?"":(n=o.substring(s+1),r=/^[a-z0-9%]+$/i.test(n)?n:"",t?i.decodePathSegment(r):r)}"."===t.charAt(0)&&(t=t.substring(1));var u,c=this.suffix();if(c)u=t?new RegExp(a(c)+"$"):new RegExp(a("."+c)+"$");else{if(!t)return this;this._parts.path+="."+i.recodePath(t)}return u&&(t=i.recodePath(t),this._parts.path=this._parts.path.replace(u,t)),this.build(!e),this},b.segment=function(t,e,n){var r=this._parts.urn?":":"/",i=this.path(),o="/"===i.substring(0,1),a=i.split(r);if(void 0!==t&&"number"!=typeof t&&(n=e,e=t,t=void 0),void 0!==t&&"number"!=typeof t)throw new Error('Bad segment "'+t+'", must be 0-based integer');if(o&&a.shift(),t<0&&(t=Math.max(a.length+t,0)),void 0===e)return void 0===t?a:a[t];if(null===t||void 0===a[t])if(u(e)){a=[];for(var s=0,c=e.length;s<c;s++)(e[s].length||a.length&&a[a.length-1].length)&&(a.length&&!a[a.length-1].length&&a.pop(),a.push(d(e[s])))}else(e||"string"==typeof e)&&(e=d(e),""===a[a.length-1]?a[a.length-1]=e:a.push(e));else e?a[t]=d(e):a.splice(t,1);return o&&a.unshift(""),this.path(a.join(r),n)},b.segmentCoded=function(t,e,n){var r,o,a;if("number"!=typeof t&&(n=e,e=t,t=void 0),void 0===e){if(r=this.segment(t,e,n),u(r))for(o=0,a=r.length;o<a;o++)r[o]=i.decode(r[o]);else r=void 0!==r?i.decode(r):void 0;return r}if(u(e))for(o=0,a=e.length;o<a;o++)e[o]=i.encode(e[o]);else e="string"==typeof e||e instanceof String?i.encode(e):e;return this.segment(t,e,n)};var j=b.query;return b.query=function(t,e){if(!0===t)return i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("function"==typeof t){var n=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace),r=t.call(this,n);return this._parts.query=i.buildQuery(r||n,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!e),this}return void 0!==t&&"string"!=typeof t?(this._parts.query=i.buildQuery(t,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!e),this):j.call(this,t,e)},b.setQuery=function(t,e,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("string"==typeof t||t instanceof String)r[t]=void 0!==e?e:null;else{if("object"!=typeof t)throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");for(var o in t)g.call(t,o)&&(r[o]=t[o])}return this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof t&&(n=e),this.build(!n),this},b.addQuery=function(t,e,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.addQuery(r,t,void 0===e?null:e),this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof t&&(n=e),this.build(!n),this},b.removeQuery=function(t,e,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.removeQuery(r,t,e),this._parts.query=i.buildQuery(r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof t&&(n=e),this.build(!n),this},b.hasQuery=function(t,e,n){var r=i.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return i.hasQuery(r,t,e,n)},b.setSearch=b.setQuery,b.addSearch=b.addQuery,b.removeSearch=b.removeQuery,b.hasSearch=b.hasQuery,b.normalize=function(){return this._parts.urn?this.normalizeProtocol(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build():this.normalizeProtocol(!1).normalizeHostname(!1).normalizePort(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build()},b.normalizeProtocol=function(t){return"string"==typeof this._parts.protocol&&(this._parts.protocol=this._parts.protocol.toLowerCase(),this.build(!t)),this},b.normalizeHostname=function(n){return this._parts.hostname&&(this.is("IDN")&&t?this._parts.hostname=t.toASCII(this._parts.hostname):this.is("IPv6")&&e&&(this._parts.hostname=e.best(this._parts.hostname)),this._parts.hostname=this._parts.hostname.toLowerCase(),this.build(!n)),this},b.normalizePort=function(t){return"string"==typeof this._parts.protocol&&this._parts.port===i.defaultPorts[this._parts.protocol]&&(this._parts.port=null,this.build(!t)),this},b.normalizePath=function(t){var e=this._parts.path;if(!e)return this;if(this._parts.urn)return this._parts.path=i.recodeUrnPath(this._parts.path),this.build(!t),this;if("/"===this._parts.path)return this;e=i.recodePath(e);var n,r,o,a="";for("/"!==e.charAt(0)&&(n=!0,e="/"+e),"/.."!==e.slice(-3)&&"/."!==e.slice(-2)||(e+="/"),e=e.replace(/(\/(\.\/)+)|(\/\.$)/g,"/").replace(/\/{2,}/g,"/"),n&&(a=e.substring(1).match(/^(\.\.\/)+/)||"")&&(a=a[0]);;){if(-1===(r=e.search(/\/\.\.(\/|$)/)))break;0!==r?(o=e.substring(0,r).lastIndexOf("/"),-1===o&&(o=r),e=e.substring(0,o)+e.substring(r+3)):e=e.substring(3)}return n&&this.is("relative")&&(e=a+e.substring(1)),this._parts.path=e,this.build(!t),this},b.normalizePathname=b.normalizePath,b.normalizeQuery=function(t){return"string"==typeof this._parts.query&&(this._parts.query.length?this.query(i.parseQuery(this._parts.query,this._parts.escapeQuerySpace)):this._parts.query=null,this.build(!t)),this},b.normalizeFragment=function(t){return this._parts.fragment||(this._parts.fragment=null,this.build(!t)),this},b.normalizeSearch=b.normalizeQuery,b.normalizeHash=b.normalizeFragment,b.iso8859=function(){var t=i.encode,e=i.decode;i.encode=escape,i.decode=decodeURIComponent;try{this.normalize()}finally{i.encode=t,i.decode=e}return this},b.unicode=function(){var t=i.encode,e=i.decode;i.encode=p,i.decode=unescape;try{this.normalize()}finally{i.encode=t,i.decode=e}return this},b.readable=function(){var e=this.clone();e.username("").password("").normalize();var n="";if(e._parts.protocol&&(n+=e._parts.protocol+"://"),e._parts.hostname&&(e.is("punycode")&&t?(n+=t.toUnicode(e._parts.hostname),e._parts.port&&(n+=":"+e._parts.port)):n+=e.host()),e._parts.hostname&&e._parts.path&&"/"!==e._parts.path.charAt(0)&&(n+="/"),n+=e.path(!0),e._parts.query){for(var r="",o=0,a=e._parts.query.split("&"),s=a.length;o<s;o++){var u=(a[o]||"").split("=");r+="&"+i.decodeQuery(u[0],this._parts.escapeQuerySpace).replace(/&/g,"%26"),void 0!==u[1]&&(r+="="+i.decodeQuery(u[1],this._parts.escapeQuerySpace).replace(/&/g,"%26"))}n+="?"+r.substring(1)}return n+=i.decodeQuery(e.hash(),!0)},b.absoluteTo=function(t){var e,n,r,o=this.clone(),a=["protocol","username","password","hostname","port"];if(this._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(t instanceof i||(t=new i(t)),o._parts.protocol)return o;if(o._parts.protocol=t._parts.protocol,this._parts.hostname)return o;for(n=0;r=a[n];n++)o._parts[r]=t._parts[r];return o._parts.path?(".."===o._parts.path.substring(-2)&&(o._parts.path+="/"),"/"!==o.path().charAt(0)&&(e=t.directory(),e=e||(0===t.path().indexOf("/")?"/":""),o._parts.path=(e?e+"/":"")+o._parts.path,o.normalizePath())):(o._parts.path=t._parts.path,o._parts.query||(o._parts.query=t._parts.query)),o.build(),o},b.relativeTo=function(t){var e,n,r,o,a,s=this.clone().normalize();if(s._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(t=new i(t).normalize(),e=s._parts,n=t._parts,o=s.path(),a=t.path(),"/"!==o.charAt(0))throw new Error("URI is already relative");if("/"!==a.charAt(0))throw new Error("Cannot calculate a URI relative to another relative URI");if(e.protocol===n.protocol&&(e.protocol=null),e.username!==n.username||e.password!==n.password)return s.build();if(null!==e.protocol||null!==e.username||null!==e.password)return s.build();if(e.hostname!==n.hostname||e.port!==n.port)return s.build();if(e.hostname=null,e.port=null,o===a)return e.path="",s.build();if(!(r=i.commonPath(o,a)))return s.build();var u=n.path.substring(r.length).replace(/[^\/]*$/,"").replace(/.*?\//g,"../");return e.path=u+e.path.substring(r.length)||"./",s.build()},b.equals=function(t){var e,n,r,o=this.clone(),a=new i(t),s={},c={},l={};if(o.normalize(),a.normalize(),o.toString()===a.toString())return!0;if(e=o.query(),n=a.query(),o.query(""),a.query(""),o.toString()!==a.toString())return!1;if(e.length!==n.length)return!1;s=i.parseQuery(e,this._parts.escapeQuerySpace),c=i.parseQuery(n,this._parts.escapeQuerySpace);for(r in s)if(g.call(s,r)){if(u(s[r])){if(!f(s[r],c[r]))return!1}else if(s[r]!==c[r])return!1;l[r]=!0}for(r in c)if(g.call(c,r)&&!l[r])return!1;return!0},b.preventInvalidHostname=function(t){return this._parts.preventInvalidHostname=!!t,this},b.duplicateQueryParameters=function(t){return this._parts.duplicateQueryParameters=!!t,this},b.escapeQuerySpace=function(t){return this._parts.escapeQuerySpace=!!t,this},i})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}function s(t){var e=f.a.without.apply(f.a,[f.a.keys(t)].concat(y));if(!f.a.isEmpty(e))throw new v.ArgumentError("Unexpected attributes ".concat(Object(p.a)(e),".")+" Available attributes: ".concat(Object(p.a)(y)))}n.d(e,"a",function(){return m});var u=n(33),c=n.n(u),l=n(0),f=n.n(l),d=n(3),h=n(7),p=n(41),v=n(1),y=["hash","obj","query","target","title","url"],m=function(){function t(e){i(this,t),s(e),this._hash=e.hash||null,this._query=e.query||null,this._target=e.target||null,this._title=e.title||null,this._url=e.url||null,this._objId=null,e.obj&&(this._objId=e.obj.id())}return a(t,null,[{key:"build",value:function(t){var e=t.objId;delete t.objId;var n=new this(t);return e&&(n._objId=e),n}}]),a(t,[{key:"title",value:function(){return this._title}},{key:"query",value:function(){return this._query}},{key:"hash",value:function(){return this._hash}},{key:"target",value:function(){return this._target}},{key:"url",value:function(){return this._url}},{key:"objId",value:function(){return this._objId}},{key:"obj",value:function(){return this.objId()?d.default.get(this.objId()):null}},{key:"queryParameters",value:function(){return c.a.parseQuery(this.query())}},{key:"fetchObj",value:function(){var t=this;return this.isExternal()?scrivito.Promise.reject(new v.ScrivitoError("The link is external and does not reference an object.")):Object(h.a)(function(){return d.default.get(t.objId())})}},{key:"isExternal",value:function(){return!!this.url()}},{key:"isInternal",value:function(){return!this.isExternal()}},{key:"equals",value:function(e){return!!r(e,t)&&(this.isExternal()?this.hash()===e.hash()&&this.query()===e.query()&&this.target()===e.target()&&this.title()===e.title()&&this.url()===e.url():this.objId()===e.objId()&&this.title()===e.title())}},{key:"copy",value:function(t){s(t);var e=this.buildAttributes();return f.a.has(t,"obj")&&delete e.objId,f.a.extend(e,t),this.constructor.build(e)}},{key:"buildAttributes",value:function(){return{title:this.title(),query:this.query(),hash:this.hash(),target:this.target(),url:this.url(),objId:this.objId()}}},{key:"isBroken",value:function(){return!this.isExternal()&&!this.obj()}},{key:"toPrettyPrint",value:function(){return this.isInternal()?'[object Link objId="'.concat(this.objId(),'"]'):'[object Link url="'.concat(this.url(),'"]')}}]),t}()},,,function(t,e,n){"use strict";function r(t){o?s.push(t):setTimeout(t,0)}function i(t){r(function(){throw t})}e.a=r,e.b=i;var o,a=n(0),s=(n.n(a),[])},function(t,e,n){"use strict";var r=function(t,e,n,r,i,o,a,s){if(!t){var u;if(void 0===e)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,i,o,a,s],l=0;u=new Error(e.replace(/%s/g,function(){return c[l++]})),u.name="Invariant Violation"}throw u.framesToPop=1,u}};t.exports=r},function(t,e,n){"use strict";function r(t,e,n){var r=n.docPermalink;return function(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];var a=i(n,e);if(a){var s="Visit https://scrivito.com/"+r+" for more information.";throw new l.ArgumentError("Invalid arguments for '"+t+"': "+a+" "+s)}}}function i(t,e){var n=e.length,r=t.length;if(r>n)return"Expected "+n+" arguments, got "+r;var i=c.flatten(e.map(function(e,n){var r=e[0],i=e[1],a=t[n];return s.a.validate(a,i).errors.map(function(t){return o(r,t)})}));return i.length>0?i.join(" "):void 0}function o(t,e){var n=a(t,e);if(void 0===e.actual)return"Missing required "+n+".";if(e.expected===s.a.Nil)return"Unexpected "+n+".";var r=s.a.getTypeName(e.expected);return"Unexpected value for "+n+": got "+Object(u.a)(e.actual)+", expected type "+r+"."}function a(t,e){var n="argument '"+t+"'";return 0===e.path.length?n:"key '"+e.path.join("/")+"' in "+n}e.a=r;var s=n(24),u=n(41),c=n(0),l=(n.n(c),n(1))},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";function r(t){try{return Object(u.isFunction)(t)?o(t):Object(u.isObject)(t)?i(t):a(t)}catch(t){return""}}function i(t){var e=t._scrivitoPrivateContent;return e&&Object(u.isFunction)(e.toPrettyPrint)?e.toPrettyPrint():Object(u.isElement)(t)?"[object HTMLElement ".concat(a(t.outerHTML),"]"):a(t)}function o(t){var e=t._scrivitoPrivateSchema;if(e)return"[class ".concat(e.name,"]");if(t.prototype&&t.prototype.isReactComponent){return'[class React.Component "'.concat(t.displayName||t.name,'"]')}return s(t.toString())}function a(t){var e=JSON.stringify(t);return e?s(e):e}function s(t){return t.length>100?"".concat(t.slice(0,100),"..."):t}e.a=r;var u=n(0);n.n(u)},function(t,e,n){"use strict";function r(t){return t.length<2}var i=n(0),o=(n.n(i),function(){function t(t,e){var n={};e._scrivitoPrivateSchema&&i.extend(n,e._scrivitoPrivateSchema.attributes),t.attributes&&i.each(t.attributes,function(t,e){var i=scrivito.typeInfo.normalize(t);if(r(i)){var o={};n[e]=[i[0],o]}else n[e]=i}),this.definition=i.extend({},t,{attributes:n})}return t.forInstance=function(t){return this.forClass(t.constructor)},t.forClass=function(t){return t._scrivitoPrivateSchema},t.basicFieldFor=function(e,n){var r=t.forInstance(e);if(r){var i=r.attributes[n];if(i)return e._scrivitoPrivateContent.field(n,i)}},Object.defineProperty(t.prototype,"attributes",{get:function(){return this.definition.attributes},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"name",{get:function(){return this.definition.name},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"onlyInside",{get:function(){return this.definition.onlyInside},enumerable:!0,configurable:!0}),t.prototype.isBinary=function(){var t=this.definition.attributes.blob;return!!t&&"binary"===t[0]},t}());e.a=o},function(t,e,n){"use strict";function r(t){l=t}n.d(e,"a",function(){return l}),e.b=r;var i=n(154),o=n(177),a=n(178),s=n(179),u=n(180),c=n(181),l={retrieveObj:function(t,e){return Object(i.a)(t),Object(a.a)(e)},retrieveObjQuery:function(t,e){return Object(i.a)(t),Object(s.a)(e)},retrieveFacetQuery:function(t,e){return Object(i.a)(t),Object(u.a)(t,e)},retrieveBinaryMetadata:function(t){return Object(o.a)(t)},retrieveBinaryUrls:function(t,e){return Object(c.a)(t,e)}}},,,,function(t,e,n){"use strict";function r(t){return"_"===t[0]}e.a=r},function(t,e,n){"use strict";function r(t,e){return a(t)||o(t,e)||i()}function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function o(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function a(t){if(Array.isArray(t))return t}function s(t){return b.a.isString(t)?t.match(/^-?\d+$/)?y(t):null:y(t)}function u(t){return v(t)&&w<=t&&t<=_}function c(t){return b.a.isNumber(t)&&b.a.isFinite(t)}function l(t){if(!b.a.isString(t))return null;if(!h(t))throw new g.InternalError('The value is not a valid ISO date time: "'.concat(t,'"'));return f(t)}function f(t){if(t){var e=t.match(k),n=r(e,7),i=(n[0],n[1]),o=n[2],a=n[3],s=n[4],u=n[5],c=n[6];return new Date(Date.UTC(i,o-1,a,s,u,c))}}function d(t){var e="".concat(t.getUTCFullYear()).concat(p(t.getUTCMonth()+1)),n="".concat(p(t.getUTCDate())).concat(p(t.getUTCHours())),r="".concat(p(t.getUTCMinutes())).concat(p(t.getUTCSeconds()));return"".concat(e).concat(n).concat(r)}function h(t){return b.a.isString(t)&&t.match(/^\d{14}$/)}function p(t){return t<10?"0".concat(t):t}function v(t){return b.a.isNumber(t)&&b.a.isFinite(t)&&Math.floor(t)===t}function y(t){var e=parseInt(t,10);return 0===e?0:u(e)?e:null}e.b=s,e.f=u,e.e=c,e.a=l,e.g=f,e.c=d,e.d=h;var m=n(0),b=n.n(m),g=n(1),w=-9007199254740991,_=9007199254740991,k=/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/},,function(t,e,n){"use strict";function r(t,e){return t.then(function(t){return e(),t},function(t){throw e(),t})}n.d(e,"a",function(){return r})},function(t,e){t.exports=function(t){return t.displayName||t.name||"<function"+t.length+">"}},function(t,e,n){var r=n(5),i=n(8);t.exports=function(t,e){r(!(t instanceof e),function(){return"Cannot use the new operator to instantiate the type "+i(e)})}},function(t,e,n){"use strict";function r(t){s=t}n.d(e,"a",function(){return s}),e.b=r;var i=n(0),o=(n.n(i),n(96)),a=function(){function t(){this._replicationCache={},this._disabled=!1,this._writeWriteCallbacks={},this._subscriptionToken=0}return t.prototype.get=function(t){return this._replicationCache[t]||(this._replicationCache[t]=new o.a(t)),this._replicationCache[t]},t.prototype.subscribeWrites=function(t){return this._subscriptionToken+=1,this._writeWriteCallbacks[this._subscriptionToken]=t,this._subscriptionToken},t.prototype.unsubscribeWrites=function(t){delete this._writeWriteCallbacks[t]},t.prototype.isDisabled=function(){return this._disabled},t.prototype.writeStarted=function(t){Object(i.each)(this._writeWriteCallbacks,function(e){e(t)})},t.prototype.disableReplication=function(){this._disabled=!0},t.prototype.enableReplication=function(){this._disabled=!1},t.prototype.clearWriteCallbacks=function(){this._writeWriteCallbacks={}},t.prototype.clearCache=function(){this._replicationCache={}},t}(),s=new a},function(t,e,n){"use strict";function r(t){return a(t)||o(t)||i()}function i(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function o(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function a(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}function s(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function u(t,e){if(!s(t,e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}function f(t,e,n){return{field:m(t),operator:y(e),value:p(n)}}function d(t){if(!Object(E.contains)(A,t))throw new C.ArgumentError('Boosting operator "'.concat(t,'" is invalid.'))}function h(t){if(!Object(E.contains)(S,t))throw new C.ArgumentError('Negating operator "'.concat(t,'" is invalid.'))}function p(t){return Object(E.isArray)(t)?Object(E.map)(t,v):v(t)}function v(t){return Object(E.isDate)(t)?Object(_.c)(t):s(t,w.default)?t.id():t}function y(t){if(!Object(E.contains)(j,t))throw new C.ArgumentError('Operator "'.concat(t,'" is invalid.'));return Object(x.e)(t)}function m(t){return Object(E.isArray)(t)?Object(E.map)(t,g):g(t)}function b(t){var e={};return Object(E.each)(t,function(t,n){var r=g(n);e[r]=t}),e}function g(t){if(!Object(x.c)(t))throw new C.ArgumentError('Attribute name "'.concat(t,'" is not camel case.'));return Object(x.e)(t)}n.d(e,"a",function(){return j}),n.d(e,"b",function(){return T});var w=n(3),_=n(48),k=n(118),O=n(217),E=n(0),x=(n.n(E),n(23)),C=n(1),j=["contains","containsPrefix","equals","startsWith","isGreaterThan","isLessThan","linksTo","refersTo"],S=["equals","startsWith","isGreaterThan","isLessThan"],A=["contains","containsPrefix"],T=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};u(this,t),this._query=[].concat(e.query||[]),this._batchSize=e.batchSize,this._offset=e.offset,this._sortBy=e.sortBy,this._sortDirection=e.sortDirection,this._includeDeleted=e.includeDeleted}return l(t,[{key:"and",value:function(e,n,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(s(e,t))this._query=r(this._query).concat(r(e._query));else{var a=f(e,n,i);o&&(d(n),a.boost=b(o)),this._query.push(a)}return this}},{key:"andNot",value:function(t,e,n){var r=f(t,e,n);return h(e),r.negate=!0,this._query.push(r),this}},{key:"offset",value:function(t){return this._offset=t,this}},{key:"order",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"asc";return this._sortBy=g(t),this._sortDirection=e,this}},{key:"batchSize",value:function(t){return this._batchSize=t,this}},{key:"includeDeleted",value:function(){return this._includeDeleted=!0,this}},{key:"count",value:function(){return this.getObjDataQuery().count()}},{key:"iterator",value:function(){var t=this.getObjDataQuery().iterator();return{next:function(){var e=t.next(),n=e.done,r=e.value;return n?{done:n}:{done:n,value:new w.default(r)}}}}},{key:"getObjDataQuery",value:function(){return k.b(this.params(),this.getBatchSize())}},{key:"getBatchSize",value:function(){return this._batchSize||100}},{key:"facet",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new O.a(g(t),e,this._query).result()}},{key:"store",value:function(t,e){k.d(this.params(),t,e)}},{key:"params",value:function(){return Object(E.omit)({query:this._query,offset:this._offset,sortBy:this._sortBy,sortDirection:this._sortDirection,includeDeleted:this._includeDeleted,batchSize:this._batchSize},E.isUndefined)}}]),t}()},,,,function(t,e,n){"use strict";function r(t){Object(d.a)(function(){return s(t)})}function i(t){var e=c(t);return e.set(null),f.a.get(t).notifyBackendState(null),e}function o(t){var e=t._id;c(e).isAvailable()||a(e,t),f.a.get(e).notifyBackendState(t)}function a(t,e){c(t).set(e)}function s(t){var e=c(t);if(e.ensureAvailable())return e}function u(){return h.b.subState("objData")}function c(t){return new l.a(t,u().subState(t))}e.c=r,e.a=i,e.e=o,e.d=a,e.b=s;var l=n(174),f=n(53),d=n(7),h=n(4)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}n.d(e,"d",function(){return l}),n.d(e,"e",function(){return f}),n.d(e,"b",function(){return d}),n.d(e,"c",function(){return h}),n.d(e,"a",function(){return p});var i=n(24),o=n(3),a=n(27),s=n(34),u=n(54),c=n(25),l=i.a.irreducible("Obj",function(t){return r(t&&t._scrivitoPrivateContent,o.default)}),f=i.a.irreducible("Widget",function(t){return r(t&&t._scrivitoPrivateContent,a.a)}),d=i.a.irreducible("Link",function(t){return r(t&&t._scrivitoPrivateContent,s.a)}),h=i.a.irreducible("ObjSearch",function(t){return r(t._scrivitoPrivateContent,u.b)}),p=i.a.irreducible("Binary",function(t){return r(t,c.a)})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(){var t=M.current();return t||o(d())}function o(t){var e=t.objId;if(null===e)return e;if(e)try{return scrivito.loadWithDefault(void 0,function(){var t=Object(P.a)().appModelAccessor,n=Object(P.a)().Obj,r=t.getObj(n,e);if(r)return r;throw new A.ResourceNotFoundError('Obj with id "'.concat(e,'" not found.'))})}catch(t){return void Object(D.a)(function(){return y(R,t)})}}function a(t,e){return M.runWith(t,e)}function s(){return d().queryParameters||{}}function u(){return d().error}function c(t){l(t,function(t){var e=t.obj,n=t.queryParameters,r=t.hash;e&&Object(L.e)({obj:e,queryParameters:n,hash:r})})}function l(t,e){if(!Object(E.isFunction)(t))throw new A.ArgumentError("Parameter fn needs to be a function.");var n=p(),i=Object(T.a)(t).then(function(t){if(t.obj)return Object(T.a)(function(){return g(t.obj,t.queryParameters,t.hash)}).then(function(t){var r=t.obj,i=t.url,o=t.queryParameters,a=t.hash;i?v(n,function(){e&&e({obj:r,queryParameters:o,hash:a}),scrivito.changeLocation(i)}):v(n,function(){e&&e({obj:r,queryParameters:o,hash:a}),m({obj:r,queryParameters:o,hash:a})})});y(n,new A.CurrentPageNotFoundError)}).catch(function(t){r(t,A.NavigateToEmptyBinaryError)||(Object(D.b)(t),y(n,t))});Object(N.b)(i)}function f(){return I.a.subState("currentPage")}function d(){return f().get()||{}}function h(t){f().set(t)}function p(){return R+=1}function v(t,e){R===t&&e()}function y(t,e){v(t,function(){h({objId:null,error:e}),b(null)})}function m(t){var e=t.obj,n=t.queryParameters,r=t.hash,i=e&&e.id()||null;h({objId:i,queryParameters:n,hash:r}),b(i)}function b(t){q.b&&q.b.setCurrentPageId(t)}function g(t,e,n){return k(t),null===t?{}:r(t,x.default)?w(t,e,n):r(t,S.a)?_(t,e,n):void 0}function w(t,e,n){if(O(t)){var r=t.get("blob",["binary"]);if(!r)throw new A.NavigateToEmptyBinaryError;return{url:r.url()}}return{obj:t,queryParameters:e,hash:n}}function _(t,e,n){if(t.isExternal())return{url:t.url()};var r={obj:t.obj(),queryParameters:t.queryParameters(),hash:t.hash()};return e&&!Object(E.isEmpty)(e)&&(r.queryParameters=e),n&&(r.hash=n),g(r.obj,r.queryParameters,r.hash)}function k(t){if(null!==t&&!r(t,x.default)&&!r(t,S.a)){if(!t)throw new A.ArgumentError("Missing target.");throw new A.ArgumentError("Target is invalid. Valid targets are instances of Obj or Link.")}}function O(t){var e=Object(P.a)().getClass(t.objClass());return!!e&&j.a.forClass(e).isBinary()}e.a=i,e.f=a,e.c=s,e.b=u,e.d=c,e.e=l;var E=n(0),x=(n.n(E),n(3)),C=n(69),j=n(42),S=n(34),A=n(1),T=n(7),N=n(81),P=n(61),L=n(72),I=n(4),D=n(37),q=n(18),R=0,M=new C.a},function(t,e,n){"use strict";function r(){return a}n.d(e,"a",function(){return r});var i=n(296),o=n(222),a={};i.a.init(a).setInitialContentFor(o.a)},function(t,e,n){"use strict";function r(){return Object(i.a)()._privateRealm._registry}n.d(e,"a",function(){return r});var i=n(61)},function(t,e,n){"use strict";function r(t){var e=t.routingBasePath;O=!0,y=e||""}function i(t){var e=t.obj,n=t.queryParameters,r=t.hash;return l("generate"),s({path:w.a(e),queryParameters:n,hash:r})}function o(t){var e=t.obj,n=t.queryParameters,r=t.hash;return l("generateRelative"),p({path:w.a(e),queryParameters:n,hash:r}).toString()}function a(t,e){var n=b()(e);return s({path:t,queryParameters:n.query(!0),hash:v(n)})}function s(t){var e=t.path,n=t.queryParameters,r=t.hash;l("generateUrl");var i=b()(_.c()).origin();return p({path:e,queryParameters:n,hash:r}).origin(i).toString()}function u(t){l("recognize");var e=null,n=b()(t),r=c(n);return Object(g.isString)(r)&&(e=w.c(r)),{path:r,obj:e,queryParameters:n.query(!0),hash:v(n)}}function c(t){return d(t)?h(t):null}function l(t){if(!O)throw scrivito.logError("Error from Scrivito SDK: No application configured, cannot initialize routing."),new k.InternalError("".concat(t," can't be called before init."))}function f(t){return d(b()(t))}function d(t){if(!t.is("absolute"))return!0;var e=b()(_.c()).origin();return t.origin()===e}function h(t){var e=t.path();return e.substring(0,y.length)!==y?null:e.substring(y.length)}function p(t){var e=t.path,n=t.queryParameters,r=t.hash,i="/".concat(y,"/").concat(e).replace(/\/+/g,"/"),o=b()("").pathname(i);return n&&o.query(n),r&&o.hash(r),o}function v(t){var e=t.hash();return""===e?null:e}e.e=r,e.a=i,e.c=o,e.b=a,e.d=s,e.h=u,e.i=c,e.g=f,e.f=d;var y,m=n(33),b=n.n(m),g=n(0),w=(n.n(g),n(224)),_=n(70),k=n(1),O=!1},,function(t,e){t.exports=function(t){return"string"==typeof t}},function(t,e){t.exports=function(t){return!0===t||!1===t}},function(t,e,n){var r=n(17),i=n(10);t.exports=r("Function",i)},,function(t,e,n){"use strict";var r=function(){function t(){}return t.prototype.current=function(){return this.currentContext},t.prototype.runWith=function(t,e){var n=this.currentContext;try{return this.currentContext=t,e()}finally{this.currentContext=n}},t}();e.a=r},function(t,e,n){"use strict";function r(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:window).devicePixelRatio||1}function i(){return window.location}function o(t){window.location.assign(t)}function a(){return window.screen}function s(){return document}n.d(e,"a",function(){return r}),n.d(e,"c",function(){return i}),n.d(e,"d",function(){return o}),n.d(e,"e",function(){return a}),n.d(e,"b",function(){return s})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}var s=n(25),u=n(39),c=n(59),l=n(4),f=function(){function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};i(this,t);var r;if(e.idToCopy)this.idToCopy=e.idToCopy,this.contentType=n.contentType,r=n.filename;else{var o=e.source;this.source=o,this.contentType=n.contentType||o.type,r=n.filename||o.name}r&&(this.filename=r.replace(/[^\w\-_\.$]/g,"-"))}return a(t,[{key:"into",value:function(t){return d(t),Object(l.d)("Changing CMS content"),this.intoId(t.id())}},{key:"intoId",value:function(t){var e;return e=this.idToCopy?scrivito.BinaryRequest.copy(this.idToCopy,t,this.filename,this.contentType):scrivito.BinaryRequest.upload(t,this.source,this.filename,this.contentType),e.then(function(t){var e=t.id;return new s.a(e,!1)})}}]),t}(),d=Object(u.a)("FutureBinary#into",[["target",c.d]],{docPermalink:"js-sdk/FutureBinary-into"});e.a=f},function(t,e,n){"use strict";function r(t){y.push(t)}function i(t){var e=t.obj,n=t.queryParameters,r=t.hash,i=r||null,o={scrivitoObjId:e.id(),scrivitoQueryParameters:n,scrivitoHash:i},a=Object(k.c)({obj:e,queryParameters:n,hash:i}),s=y.location.state;d(s)&&s.scrivitoObjId===o.scrivitoObjId&&s.scrivitoHash===o.scrivitoHash&&Object(b.isEqual)(s.scrivitoQueryParameters,o.scrivitoQueryParameters)||p(function(){return y.push(a,o)})}function o(t){var e=t.obj,n=t.queryParameters,r=t.hash,i=r||null,o={scrivitoObjId:e.id(),scrivitoQueryParameters:n,scrivitoHash:i},a=Object(k.c)({obj:e,queryParameters:n,hash:i});p(function(){return y.replace(a,o)})}function a(){Object(O.d)(function(){var t=h(y.location),e=t.obj,n=t.queryParameters,r=t.hash;return e?{obj:e,queryParameters:n,hash:r}:{queryParameters:n,hash:r}})}function s(){x||(l(),x=!0)}function u(){m&&m(),Object(O.e)(function(){return{obj:null}}),x=!1}function c(t){if("/"!==t.createHref({pathname:"/"}))throw new _.ArgumentError("Expected a history without a preconfigured basename. For further details, see: https://www.scrivito.com/js-sdk/useHistory");y=t,x&&l()}function l(){m&&m(),v(),m=y.listen(function(t,e){if(!E){if("POP"===e){f({state:t.state})}"REPLACE"===e&&Object(O.d)(function(){return h(t)}),"PUSH"===e&&Object(O.e)(function(){return h(t)})}}),a()}function f(t){var e=t.state;if(!d(e))return void a();var n=e.scrivitoObjId,r=e.scrivitoHash,i=e.scrivitoQueryParameters;Object(O.d)(function(){return{obj:w.default.get(n),queryParameters:i,hash:r}})}function d(t){return t&&void 0!==t.scrivitoObjId}function h(t){var e=t.pathname,n=t.search,r=t.hash;return Object(k.h)(""+e+n+r)}function p(t){E=!0,t(),E=!1}function v(){y||(y=Object(g.a)())}e.c=r,e.d=i,e.e=o,e.a=s,e.b=u,e.f=c;var y,m,b=n(0),g=(n.n(b),n(304)),w=n(3),_=n(1),k=n(63),O=n(60),E=!1,x=!1},function(t,e,n){(function(e){/*!
15
+ * Quill Editor v1.3.5
16
+ * https://quilljs.com/
17
+ * Copyright (c) 2014, Jason Chen
18
+ * Copyright (c) 2013, salesforce.com
19
+ */
20
+ !function(e,n){t.exports=n()}(0,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=109)}([function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(17),i=n(18),o=n(19),a=n(45),s=n(46),u=n(47),c=n(48),l=n(49),f=n(12),d=n(31),h=n(32),p=n(30),v=n(1),y={Scope:v.Scope,create:v.create,find:v.find,query:v.query,register:v.register,Container:r.default,Format:i.default,Leaf:o.default,Embed:c.default,Scroll:a.default,Block:u.default,Inline:s.default,Text:l.default,Attributor:{Attribute:f.default,Class:d.default,Style:h.default,Store:p.default}};e.default=y},function(t,e,n){"use strict";function r(t,e){var n=o(t);if(null==n)throw new u("Unable to create "+t+" blot");var r=n;return new r(t instanceof Node||t.nodeType===Node.TEXT_NODE?t:r.create(e),e)}function i(t,n){return void 0===n&&(n=!1),null==t?null:null!=t[e.DATA_KEY]?t[e.DATA_KEY].blot:n?i(t.parentNode,n):null}function o(t,e){void 0===e&&(e=h.ANY);var n;if("string"==typeof t)n=d[t]||c[t];else if(t instanceof Text||t.nodeType===Node.TEXT_NODE)n=d.text;else if("number"==typeof t)t&h.LEVEL&h.BLOCK?n=d.block:t&h.LEVEL&h.INLINE&&(n=d.inline);else if(t instanceof HTMLElement){var r=(t.getAttribute("class")||"").split(/\s+/);for(var i in r)if(n=l[r[i]])break;n=n||f[t.tagName]}return null==n?null:e&h.LEVEL&n.scope&&e&h.TYPE&n.scope?n:null}function a(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(t.length>1)return t.map(function(t){return a(t)});var n=t[0];if("string"!=typeof n.blotName&&"string"!=typeof n.attrName)throw new u("Invalid definition");if("abstract"===n.blotName)throw new u("Cannot register abstract class");if(d[n.blotName||n.attrName]=n,"string"==typeof n.keyName)c[n.keyName]=n;else if(null!=n.className&&(l[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map(function(t){return t.toUpperCase()}):n.tagName=n.tagName.toUpperCase();var r=Array.isArray(n.tagName)?n.tagName:[n.tagName];r.forEach(function(t){null!=f[t]&&null!=n.className||(f[t]=n)})}return n}var s=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var u=function(t){function e(e){var n=this;return e="[Parchment] "+e,n=t.call(this,e)||this,n.message=e,n.name=n.constructor.name,n}return s(e,t),e}(Error);e.ParchmentError=u;var c={},l={},f={},d={};e.DATA_KEY="__blot";var h;!function(t){t[t.TYPE=3]="TYPE",t[t.LEVEL=12]="LEVEL",t[t.ATTRIBUTE=13]="ATTRIBUTE",t[t.BLOT=14]="BLOT",t[t.INLINE=7]="INLINE",t[t.BLOCK=11]="BLOCK",t[t.BLOCK_BLOT=10]="BLOCK_BLOT",t[t.INLINE_BLOT=6]="INLINE_BLOT",t[t.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",t[t.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",t[t.ANY=15]="ANY"}(h=e.Scope||(e.Scope={})),e.create=r,e.find=i,e.query=o,e.register=a},function(t,e,n){var r=n(51),i=n(11),o=n(3),a=n(20),s=String.fromCharCode(0),u=function(t){Array.isArray(t)?this.ops=t:null!=t&&Array.isArray(t.ops)?this.ops=t.ops:this.ops=[]};u.prototype.insert=function(t,e){var n={};return 0===t.length?this:(n.insert=t,null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n))},u.prototype.delete=function(t){return t<=0?this:this.push({delete:t})},u.prototype.retain=function(t,e){if(t<=0)return this;var n={retain:t};return null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n)},u.prototype.push=function(t){var e=this.ops.length,n=this.ops[e-1];if(t=o(!0,{},t),"object"==typeof n){if("number"==typeof t.delete&&"number"==typeof n.delete)return this.ops[e-1]={delete:n.delete+t.delete},this;if("number"==typeof n.delete&&null!=t.insert&&(e-=1,"object"!=typeof(n=this.ops[e-1])))return this.ops.unshift(t),this;if(i(t.attributes,n.attributes)){if("string"==typeof t.insert&&"string"==typeof n.insert)return this.ops[e-1]={insert:n.insert+t.insert},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this;if("number"==typeof t.retain&&"number"==typeof n.retain)return this.ops[e-1]={retain:n.retain+t.retain},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this}}return e===this.ops.length?this.ops.push(t):this.ops.splice(e,0,t),this},u.prototype.chop=function(){var t=this.ops[this.ops.length-1];return t&&t.retain&&!t.attributes&&this.ops.pop(),this},u.prototype.filter=function(t){return this.ops.filter(t)},u.prototype.forEach=function(t){this.ops.forEach(t)},u.prototype.map=function(t){return this.ops.map(t)},u.prototype.partition=function(t){var e=[],n=[];return this.forEach(function(r){(t(r)?e:n).push(r)}),[e,n]},u.prototype.reduce=function(t,e){return this.ops.reduce(t,e)},u.prototype.changeLength=function(){return this.reduce(function(t,e){return e.insert?t+a.length(e):e.delete?t-e.delete:t},0)},u.prototype.length=function(){return this.reduce(function(t,e){return t+a.length(e)},0)},u.prototype.slice=function(t,e){t=t||0,"number"!=typeof e&&(e=1/0);for(var n=[],r=a.iterator(this.ops),i=0;i<e&&r.hasNext();){var o;i<t?o=r.next(t-i):(o=r.next(e-i),n.push(o)),i+=a.length(o)}return new u(n)},u.prototype.compose=function(t){for(var e=a.iterator(this.ops),n=a.iterator(t.ops),r=new u;e.hasNext()||n.hasNext();)if("insert"===n.peekType())r.push(n.next());else if("delete"===e.peekType())r.push(e.next());else{var i=Math.min(e.peekLength(),n.peekLength()),o=e.next(i),s=n.next(i);if("number"==typeof s.retain){var c={};"number"==typeof o.retain?c.retain=i:c.insert=o.insert;var l=a.attributes.compose(o.attributes,s.attributes,"number"==typeof o.retain);l&&(c.attributes=l),r.push(c)}else"number"==typeof s.delete&&"number"==typeof o.retain&&r.push(s)}return r.chop()},u.prototype.concat=function(t){var e=new u(this.ops.slice());return t.ops.length>0&&(e.push(t.ops[0]),e.ops=e.ops.concat(t.ops.slice(1))),e},u.prototype.diff=function(t,e){if(this.ops===t.ops)return new u;var n=[this,t].map(function(e){return e.map(function(n){if(null!=n.insert)return"string"==typeof n.insert?n.insert:s;var r=e===t?"on":"with";throw new Error("diff() called "+r+" non-document")}).join("")}),o=new u,c=r(n[0],n[1],e),l=a.iterator(this.ops),f=a.iterator(t.ops);return c.forEach(function(t){for(var e=t[1].length;e>0;){var n=0;switch(t[0]){case r.INSERT:n=Math.min(f.peekLength(),e),o.push(f.next(n));break;case r.DELETE:n=Math.min(e,l.peekLength()),l.next(n),o.delete(n);break;case r.EQUAL:n=Math.min(l.peekLength(),f.peekLength(),e);var s=l.next(n),u=f.next(n);i(s.insert,u.insert)?o.retain(n,a.attributes.diff(s.attributes,u.attributes)):o.push(u).delete(n)}e-=n}}),o.chop()},u.prototype.eachLine=function(t,e){e=e||"\n";for(var n=a.iterator(this.ops),r=new u,i=0;n.hasNext();){if("insert"!==n.peekType())return;var o=n.peek(),s=a.length(o)-n.peekLength(),c="string"==typeof o.insert?o.insert.indexOf(e,s)-s:-1;if(c<0)r.push(n.next());else if(c>0)r.push(n.next(c));else{if(!1===t(r,n.next(1).attributes||{},i))return;i+=1,r=new u}}r.length()>0&&t(r,{},i)},u.prototype.transform=function(t,e){if(e=!!e,"number"==typeof t)return this.transformPosition(t,e);for(var n=a.iterator(this.ops),r=a.iterator(t.ops),i=new u;n.hasNext()||r.hasNext();)if("insert"!==n.peekType()||!e&&"insert"===r.peekType())if("insert"===r.peekType())i.push(r.next());else{var o=Math.min(n.peekLength(),r.peekLength()),s=n.next(o),c=r.next(o);if(s.delete)continue;c.delete?i.push(c):i.retain(o,a.attributes.transform(s.attributes,c.attributes,e))}else i.retain(a.length(n.next()));return i.chop()},u.prototype.transformPosition=function(t,e){e=!!e;for(var n=a.iterator(this.ops),r=0;n.hasNext()&&r<=t;){var i=n.peekLength(),o=n.peekType();n.next(),"delete"!==o?("insert"===o&&(r<t||!e)&&(t+=i),r+=i):t-=Math.min(i,t-r)}return t},t.exports=u},function(t,e){"use strict";var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=function(t){return"function"==typeof Array.isArray?Array.isArray(t):"[object Array]"===r.call(t)},o=function(t){if(!t||"[object Object]"!==r.call(t))return!1;var e=n.call(t,"constructor"),i=t.constructor&&t.constructor.prototype&&n.call(t.constructor.prototype,"isPrototypeOf");if(t.constructor&&!e&&!i)return!1;var o;for(o in t);return void 0===o||n.call(t,o)};t.exports=function t(){var e,n,r,a,s,u,c=arguments[0],l=1,f=arguments.length,d=!1;for("boolean"==typeof c&&(d=c,c=arguments[1]||{},l=2),(null==c||"object"!=typeof c&&"function"!=typeof c)&&(c={});l<f;++l)if(null!=(e=arguments[l]))for(n in e)r=c[n],a=e[n],c!==a&&(d&&a&&(o(a)||(s=i(a)))?(s?(s=!1,u=r&&i(r)?r:[]):u=r&&o(r)?r:{},c[n]=t(d,u,a)):void 0!==a&&(c[n]=a));return c}},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return null==t?e:("function"==typeof t.formats&&(e=(0,f.default)(e,t.formats())),null==t.parent||"scroll"==t.parent.blotName||t.parent.statics.scope!==t.statics.scope?e:s(t.parent,e))}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BlockEmbed=e.bubbleFormats=void 0;var u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},l=n(3),f=r(l),d=n(2),h=r(d),p=n(0),v=r(p),y=n(16),m=r(y),b=n(6),g=r(b),w=n(7),_=r(w),k=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),u(e,[{key:"attach",value:function(){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"attach",this).call(this),this.attributes=new v.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return(new h.default).insert(this.value(),(0,f.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(t,e){var n=v.default.query(t,v.default.Scope.BLOCK_ATTRIBUTE);null!=n&&this.attributes.attribute(n,e)}},{key:"formatAt",value:function(t,e,n,r){this.format(n,r)}},{key:"insertAt",value:function(t,n,r){if("string"==typeof n&&n.endsWith("\n")){var i=v.default.create(O.blotName);this.parent.insertBefore(i,0===t?this:this.next),i.insertAt(0,n.slice(0,-1))}else c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,t,n,r)}}]),e}(v.default.Embed);k.scope=v.default.Scope.BLOCK_BLOT;var O=function(t){function e(t){i(this,e);var n=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.cache={},n}return a(e,t),u(e,[{key:"delta",value:function(){return null==this.cache.delta&&(this.cache.delta=this.descendants(v.default.Leaf).reduce(function(t,e){return 0===e.length()?t:t.insert(e.value(),s(e))},new h.default).insert("\n",s(this))),this.cache.delta}},{key:"deleteAt",value:function(t,n){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"deleteAt",this).call(this,t,n),this.cache={}}},{key:"formatAt",value:function(t,n,r,i){n<=0||(v.default.query(r,v.default.Scope.BLOCK)?t+n===this.length()&&this.format(r,i):c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"formatAt",this).call(this,t,Math.min(n,this.length()-t-1),r,i),this.cache={})}},{key:"insertAt",value:function(t,n,r){if(null!=r)return c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,t,n,r);if(0!==n.length){var i=n.split("\n"),o=i.shift();o.length>0&&(t<this.length()-1||null==this.children.tail?c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,Math.min(t,this.length()-1),o):this.children.tail.insertAt(this.children.tail.length(),o),this.cache={});var a=this;i.reduce(function(t,e){return a=a.split(t,!0),a.insertAt(0,e),e.length},t+o.length)}}},{key:"insertBefore",value:function(t,n){var r=this.children.head;c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n),r instanceof m.default&&r.remove(),this.cache={}}},{key:"length",value:function(){return null==this.cache.length&&(this.cache.length=c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"length",this).call(this)+1),this.cache.length}},{key:"moveChildren",value:function(t,n){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"moveChildren",this).call(this,t,n),this.cache={}}},{key:"optimize",value:function(t){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t),this.cache={}}},{key:"path",value:function(t){return c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"path",this).call(this,t,!0)}},{key:"removeChild",value:function(t){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"removeChild",this).call(this,t),this.cache={}}},{key:"split",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===t||t>=this.length()-1)){var r=this.clone();return 0===t?(this.parent.insertBefore(r,this),this):(this.parent.insertBefore(r,this.next),r)}var i=c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"split",this).call(this,t,n);return this.cache={},i}}]),e}(v.default.Block);O.blotName="block",O.tagName="P",O.defaultChild="break",O.allowedChildren=[g.default,v.default.Embed,_.default],e.bubbleFormats=s,e.BlockEmbed=k,e.default=O},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(e=(0,C.default)(!0,{container:t,modules:{clipboard:!0,keyboard:!0,history:!0}},e),e.theme&&e.theme!==P.DEFAULTS.theme){if(e.theme=P.import("themes/"+e.theme),null==e.theme)throw new Error("Invalid theme "+e.theme+". Did you register it?")}else e.theme=T.default;var n=(0,C.default)(!0,{},e.theme.DEFAULTS);[n,e].forEach(function(t){t.modules=t.modules||{},Object.keys(t.modules).forEach(function(e){!0===t.modules[e]&&(t.modules[e]={})})});var r=Object.keys(n.modules).concat(Object.keys(e.modules)),i=r.reduce(function(t,e){var n=P.import("modules/"+e);return null==n?N.error("Cannot load "+e+" module. Are you sure you registered it?"):t[e]=n.DEFAULTS||{},t},{});return null!=e.modules&&e.modules.toolbar&&e.modules.toolbar.constructor!==Object&&(e.modules.toolbar={container:e.modules.toolbar}),e=(0,C.default)(!0,{},P.DEFAULTS,{modules:i},n,e),["bounds","container","scrollingContainer"].forEach(function(t){"string"==typeof e[t]&&(e[t]=document.querySelector(e[t]))}),e.modules=Object.keys(e.modules).reduce(function(t,n){return e.modules[n]&&(t[n]=e.modules[n]),t},{}),e}function s(t,e,n,r){if(this.options.strict&&!this.isEnabled()&&e===b.default.sources.USER)return new p.default;var i=null==n?null:this.getSelection(),o=this.editor.delta,a=t();if(null!=i&&(!0===n&&(n=i.index),null==r?i=c(i,a,e):0!==r&&(i=c(i,n,r,e)),this.setSelection(i,b.default.sources.SILENT)),a.length()>0){var s,u=[b.default.events.TEXT_CHANGE,a,o,e];if((s=this.emitter).emit.apply(s,[b.default.events.EDITOR_CHANGE].concat(u)),e!==b.default.sources.SILENT){var l;(l=this.emitter).emit.apply(l,u)}}return a}function u(t,e,n,r,i){var o={};return"number"==typeof t.index&&"number"==typeof t.length?"number"!=typeof e?(i=r,r=n,n=e,e=t.length,t=t.index):(e=t.length,t=t.index):"number"!=typeof e&&(i=r,r=n,n=e,e=0),"object"===(void 0===n?"undefined":l(n))?(o=n,i=r):"string"==typeof n&&(null!=r?o[n]=r:i=n),i=i||b.default.sources.API,[t,e,o,i]}function c(t,e,n,r){if(null==t)return null;var i=void 0,o=void 0;if(e instanceof p.default){var a=[t.index,t.index+t.length].map(function(t){return e.transformPosition(t,r!==b.default.sources.USER)}),s=f(a,2);i=s[0],o=s[1]}else{var u=[t.index,t.index+t.length].map(function(t){return t<e||t===e&&r===b.default.sources.USER?t:n>=0?t+n:Math.max(e,t+n)}),c=f(u,2);i=c[0],o=c[1]}return new O.Range(i,o-i)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.overload=e.expandConfig=void 0;var l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},f=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}();n(50);var h=n(2),p=r(h),v=n(14),y=r(v),m=n(8),b=r(m),g=n(9),w=r(g),_=n(0),k=r(_),O=n(15),E=r(O),x=n(3),C=r(x),j=n(10),S=r(j),A=n(33),T=r(A),N=(0,S.default)("quill"),P=function(){function t(e){var n=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(o(this,t),this.options=a(e,r),this.container=this.options.container,null==this.container)return N.error("Invalid Quill container",e);this.options.debug&&t.debug(this.options.debug);var i=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new b.default,this.scroll=k.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new y.default(this.scroll),this.selection=new E.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(b.default.events.EDITOR_CHANGE,function(t){t===b.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())}),this.emitter.on(b.default.events.SCROLL_UPDATE,function(t,e){var r=n.selection.lastRange,i=r&&0===r.length?r.index:void 0;s.call(n,function(){return n.editor.update(null,e,i)},t)});var u=this.clipboard.convert("<div class='ql-editor' style=\"white-space: normal;\">"+i+"<p><br></p></div>");this.setContents(u),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return d(t,null,[{key:"debug",value:function(t){!0===t&&(t="log"),S.default.level(t)}},{key:"find",value:function(t){return t.__quill||k.default.find(t)}},{key:"import",value:function(t){return null==this.imports[t]&&N.error("Cannot import "+t+". Are you sure it was registered?"),this.imports[t]}},{key:"register",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!=typeof t){var i=t.attrName||t.blotName;"string"==typeof i?this.register("formats/"+i,t,e):Object.keys(t).forEach(function(r){n.register(r,t[r],e)})}else null==this.imports[t]||r||N.warn("Overwriting "+t+" with",e),this.imports[t]=e,(t.startsWith("blots/")||t.startsWith("formats/"))&&"abstract"!==e.blotName?k.default.register(e):t.startsWith("modules")&&"function"==typeof e.register&&e.register()}}]),d(t,[{key:"addContainer",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof t){var n=t;t=document.createElement("div"),t.classList.add(n)}return this.container.insertBefore(t,e),t}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(t,e,n){var r=this,i=u(t,e,n),o=f(i,4);return t=o[0],e=o[1],n=o[3],s.call(this,function(){return r.editor.deleteText(t,e)},n,t,-1*e)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(t),this.container.classList.toggle("ql-disabled",!t)}},{key:"focus",value:function(){var t=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=t,this.scrollIntoView()}},{key:"format",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:b.default.sources.API;return s.call(this,function(){var r=n.getSelection(!0),o=new p.default;if(null==r)return o;if(k.default.query(t,k.default.Scope.BLOCK))o=n.editor.formatLine(r.index,r.length,i({},t,e));else{if(0===r.length)return n.selection.format(t,e),o;o=n.editor.formatText(r.index,r.length,i({},t,e))}return n.setSelection(r,b.default.sources.SILENT),o},r)}},{key:"formatLine",value:function(t,e,n,r,i){var o=this,a=void 0,c=u(t,e,n,r,i),l=f(c,4);return t=l[0],e=l[1],a=l[2],i=l[3],s.call(this,function(){return o.editor.formatLine(t,e,a)},i,t,0)}},{key:"formatText",value:function(t,e,n,r,i){var o=this,a=void 0,c=u(t,e,n,r,i),l=f(c,4);return t=l[0],e=l[1],a=l[2],i=l[3],s.call(this,function(){return o.editor.formatText(t,e,a)},i,t,0)}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"==typeof t?this.selection.getBounds(t,e):this.selection.getBounds(t.index,t.length);var r=this.container.getBoundingClientRect();return{bottom:n.bottom-r.top,height:n.height,left:n.left-r.left,right:n.right-r.left,top:n.top-r.top,width:n.width}}},{key:"getContents",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=u(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getContents(t,e)}},{key:"getFormat",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(!0),e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"==typeof t?this.editor.getFormat(t,e):this.editor.getFormat(t.index,t.length)}},{key:"getIndex",value:function(t){return t.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(t){return this.scroll.leaf(t)}},{key:"getLine",value:function(t){return this.scroll.line(t)}},{key:"getLines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!=typeof t?this.scroll.lines(t.index,t.length):this.scroll.lines(t,e)}},{key:"getModule",value:function(t){return this.theme.modules[t]}},{key:"getSelection",value:function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0]&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=u(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getText(t,e)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(e,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.sources.API;return s.call(this,function(){return i.editor.insertEmbed(e,n,r)},o,e)}},{key:"insertText",value:function(t,e,n,r,i){var o=this,a=void 0,c=u(t,0,n,r,i),l=f(c,4);return t=l[0],a=l[2],i=l[3],s.call(this,function(){return o.editor.insertText(t,e,a)},i,t,e.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(t,e,n){this.clipboard.dangerouslyPasteHTML(t,e,n)}},{key:"removeFormat",value:function(t,e,n){var r=this,i=u(t,e,n),o=f(i,4);return t=o[0],e=o[1],n=o[3],s.call(this,function(){return r.editor.removeFormat(t,e)},n,t)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API;return s.call(this,function(){t=new p.default(t);var n=e.getLength(),r=e.editor.deleteText(0,n),i=e.editor.applyDelta(t),o=i.ops[i.ops.length-1];return null!=o&&"string"==typeof o.insert&&"\n"===o.insert[o.insert.length-1]&&(e.editor.deleteText(e.getLength()-1,1),i.delete(1)),r.compose(i)},n)}},{key:"setSelection",value:function(e,n,r){if(null==e)this.selection.setRange(null,n||t.sources.API);else{var i=u(e,n,r),o=f(i,4);e=o[0],n=o[1],r=o[3],this.selection.setRange(new O.Range(e,n),r),r!==b.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API,n=(new p.default).insert(t);return this.setContents(n,e)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b.default.sources.USER,e=this.scroll.update(t);return this.selection.update(t),e}},{key:"updateContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API;return s.call(this,function(){return t=new p.default(t),e.editor.applyDelta(t,n)},n,!0)}}]),t}();P.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},P.events=b.default.events,P.sources=b.default.sources,P.version="1.3.5",P.imports={delta:p.default,parchment:k.default,"core/module":w.default,"core/theme":T.default},e.expandConfig=a,e.overload=u,e.default=P},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(7),l=r(c),f=n(0),d=r(f),h=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),s(e,[{key:"formatAt",value:function(t,n,r,i){if(e.compare(this.statics.blotName,r)<0&&d.default.query(r,d.default.Scope.BLOT)){var o=this.isolate(t,n);i&&o.wrap(r,i)}else u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"formatAt",this).call(this,t,n,r,i)}},{key:"optimize",value:function(t){if(u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t),this.parent instanceof e&&e.compare(this.statics.blotName,this.parent.statics.blotName)>0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(t,n){var r=e.order.indexOf(t),i=e.order.indexOf(n);return r>=0||i>=0?r-i:t===n?0:t<n?-1:1}}]),e}(d.default.Inline);h.allowedChildren=[h,d.default.Embed,l.default],h.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],e.default=h},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(0),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),e}(s.default.Text);e.default=u},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(54),l=r(c),f=n(10),d=r(f),h=(0,d.default)("quill:events");["selectionchange","mousedown","mouseup","click"].forEach(function(t){document.addEventListener(t,function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(t){if(t.__quill&&t.__quill.emitter){var n;(n=t.__quill.emitter).handleDOM.apply(n,e)}})})});var p=function(t){function e(){i(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.listeners={},t.on("error",h.error),t}return a(e,t),s(e,[{key:"emit",value:function(){h.log.apply(h,arguments),u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];(this.listeners[t.type]||[]).forEach(function(e){var r=e.node,i=e.handler;(t.target===r||r.contains(t.target))&&i.apply(void 0,[t].concat(n))})}},{key:"listenDOM",value:function(t,e,n){this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].push({node:e,handler:n})}}]),e}(l.default);p.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},p.sources={API:"api",SILENT:"silent",USER:"user"},e.default=p},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,t),this.quill=e,this.options=n};i.DEFAULTS={},e.default=i},function(t,e,n){"use strict";function r(t){if(o.indexOf(t)<=o.indexOf(a)){for(var e,n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];(e=console)[t].apply(e,r)}}function i(t){return o.reduce(function(e,n){return e[n]=r.bind(console,n,t),e},{})}Object.defineProperty(e,"__esModule",{value:!0});var o=["error","warn","log","info"],a="warn";r.level=i.level=function(t){a=t},e.default=i},function(t,e,n){function r(t){return null===t||void 0===t}function i(t){return!(!t||"object"!=typeof t||"number"!=typeof t.length)&&("function"==typeof t.copy&&"function"==typeof t.slice&&!(t.length>0&&"number"!=typeof t[0]))}function o(t,e,n){var o,l;if(r(t)||r(e))return!1;if(t.prototype!==e.prototype)return!1;if(u(t))return!!u(e)&&(t=a.call(t),e=a.call(e),c(t,e,n));if(i(t)){if(!i(e))return!1;if(t.length!==e.length)return!1;for(o=0;o<t.length;o++)if(t[o]!==e[o])return!1;return!0}try{var f=s(t),d=s(e)}catch(t){return!1}if(f.length!=d.length)return!1;for(f.sort(),d.sort(),o=f.length-1;o>=0;o--)if(f[o]!=d[o])return!1;for(o=f.length-1;o>=0;o--)if(l=f[o],!c(t[l],e[l],n))return!1;return typeof t==typeof e}var a=Array.prototype.slice,s=n(52),u=n(53),c=t.exports=function(t,e,n){return n||(n={}),t===e||(t instanceof Date&&e instanceof Date?t.getTime()===e.getTime():!t||!e||"object"!=typeof t&&"object"!=typeof e?n.strict?t===e:t==e:o(t,e,n))}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(1),i=function(){function t(t,e,n){void 0===n&&(n={}),this.attrName=t,this.keyName=e;var i=r.Scope.TYPE&r.Scope.ATTRIBUTE;null!=n.scope?this.scope=n.scope&r.Scope.LEVEL|i:this.scope=r.Scope.ATTRIBUTE,null!=n.whitelist&&(this.whitelist=n.whitelist)}return t.keys=function(t){return[].map.call(t.attributes,function(t){return t.name})},t.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(t.setAttribute(this.keyName,e),!0)},t.prototype.canAdd=function(t,e){return null!=r.query(t,r.Scope.BLOT&(this.scope|r.Scope.TYPE))&&(null==this.whitelist||("string"==typeof e?this.whitelist.indexOf(e.replace(/["']/g,""))>-1:this.whitelist.indexOf(e)>-1))},t.prototype.remove=function(t){t.removeAttribute(this.keyName)},t.prototype.value=function(t){var e=t.getAttribute(this.keyName);return this.canAdd(t,e)&&e?e:""},t}();e.default=i},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Code=void 0;var s=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},l=n(2),f=r(l),d=n(0),h=r(d),p=n(4),v=r(p),y=n(6),m=r(y),b=n(7),g=r(b),w=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),e}(m.default);w.blotName="code",w.tagName="CODE";var _=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),u(e,[{key:"delta",value:function(){var t=this,e=this.domNode.textContent;return e.endsWith("\n")&&(e=e.slice(0,-1)),e.split("\n").reduce(function(e,n){return e.insert(n).insert("\n",t.formats())},new f.default)}},{key:"format",value:function(t,n){if(t!==this.statics.blotName||!n){var r=this.descendant(g.default,this.length()-1),i=s(r,1),o=i[0];null!=o&&o.deleteAt(o.length()-1,1),c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}},{key:"formatAt",value:function(t,n,r,i){if(0!==n&&null!=h.default.query(r,h.default.Scope.BLOCK)&&(r!==this.statics.blotName||i!==this.statics.formats(this.domNode))){var o=this.newlineIndex(t);if(!(o<0||o>=t+n)){var a=this.newlineIndex(t,!0)+1,s=o-a+1,u=this.isolate(a,s),c=u.next;u.format(r,i),c instanceof e&&c.formatAt(0,t-a+n-s,r,i)}}}},{key:"insertAt",value:function(t,e,n){if(null==n){var r=this.descendant(g.default,t),i=s(r,2),o=i[0],a=i[1];o.insertAt(a,e)}}},{key:"length",value:function(){var t=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?t:t+1}},{key:"newlineIndex",value:function(t){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])return this.domNode.textContent.slice(0,t).lastIndexOf("\n");var e=this.domNode.textContent.slice(t).indexOf("\n");return e>-1?t+e:-1}},{key:"optimize",value:function(t){this.domNode.textContent.endsWith("\n")||this.appendChild(h.default.create("text","\n")),c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(t),n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(t){var e=h.default.find(t);null==e?t.parentNode.removeChild(t):e instanceof h.default.Embed?e.remove():e.unwrap()})}}],[{key:"create",value:function(t){var n=c(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),e}(v.default);_.blotName="code-block",_.tagName="PRE",_.TAB=" ",e.Code=w,e.default=_},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){return Object.keys(e).reduce(function(n,r){return null==t[r]?n:(e[r]===t[r]?n[r]=e[r]:Array.isArray(e[r])?e[r].indexOf(t[r])<0&&(n[r]=e[r].concat([t[r]])):n[r]=[e[r],t[r]],n)},{})}function s(t){return t.reduce(function(t,e){if(1===e.insert){var n=(0,C.default)(e.attributes);return delete n.image,t.insert({image:e.attributes.image},n)}if(null==e.attributes||!0!==e.attributes.list&&!0!==e.attributes.bullet||(e=(0,C.default)(e),e.attributes.list?e.attributes.list="ordered":(e.attributes.list="bullet",delete e.attributes.bullet)),"string"==typeof e.insert){var r=e.insert.replace(/\r\n/g,"\n").replace(/\r/g,"\n");return t.insert(r,e.attributes)}return t.push(e)},new d.default)}Object.defineProperty(e,"__esModule",{value:!0});var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),f=n(2),d=r(f),h=n(20),p=r(h),v=n(0),y=r(v),m=n(13),b=r(m),g=n(23),w=r(g),_=n(4),k=r(_),O=n(16),E=r(O),x=n(21),C=r(x),j=n(11),S=r(j),A=n(3),T=r(A),N=/^[ -~]*$/,P=function(){function t(e){o(this,t),this.scroll=e,this.delta=this.getDelta()}return l(t,[{key:"applyDelta",value:function(t){var e=this,n=!1;this.scroll.update();var r=this.scroll.length();return this.scroll.batchStart(),t=s(t),t.reduce(function(t,i){var o=i.retain||i.delete||i.insert.length||1,a=i.attributes||{};if(null!=i.insert){if("string"==typeof i.insert){var s=i.insert;s.endsWith("\n")&&n&&(n=!1,s=s.slice(0,-1)),t>=r&&!s.endsWith("\n")&&(n=!0),e.scroll.insertAt(t,s);var l=e.scroll.line(t),f=c(l,2),d=f[0],h=f[1],v=(0,T.default)({},(0,_.bubbleFormats)(d));if(d instanceof k.default){var m=d.descendant(y.default.Leaf,h),b=c(m,1),g=b[0];v=(0,T.default)(v,(0,_.bubbleFormats)(g))}a=p.default.attributes.diff(v,a)||{}}else if("object"===u(i.insert)){var w=Object.keys(i.insert)[0];if(null==w)return t;e.scroll.insertAt(t,w,i.insert[w])}r+=o}return Object.keys(a).forEach(function(n){e.scroll.formatAt(t,o,n,a[n])}),t+o},0),t.reduce(function(t,n){return"number"==typeof n.delete?(e.scroll.deleteAt(t,n.delete),t):t+(n.retain||n.insert.length||1)},0),this.scroll.batchEnd(),this.update(t)}},{key:"deleteText",value:function(t,e){return this.scroll.deleteAt(t,e),this.update((new d.default).retain(t).delete(e))}},{key:"formatLine",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(r).forEach(function(i){if(null==n.scroll.whitelist||n.scroll.whitelist[i]){var o=n.scroll.lines(t,Math.max(e,1)),a=e;o.forEach(function(e){var o=e.length();if(e instanceof b.default){var s=t-e.offset(n.scroll),u=e.newlineIndex(s+a)-s+1;e.formatAt(s,u,i,r[i])}else e.format(i,r[i]);a-=o})}}),this.scroll.optimize(),this.update((new d.default).retain(t).retain(e,(0,C.default)(r)))}},{key:"formatText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(r).forEach(function(i){n.scroll.formatAt(t,e,i,r[i])}),this.update((new d.default).retain(t).retain(e,(0,C.default)(r)))}},{key:"getContents",value:function(t,e){return this.delta.slice(t,t+e)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(t,e){return t.concat(e.delta())},new d.default)}},{key:"getFormat",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],r=[];0===e?this.scroll.path(t).forEach(function(t){var e=c(t,1),i=e[0];i instanceof k.default?n.push(i):i instanceof y.default.Leaf&&r.push(i)}):(n=this.scroll.lines(t,e),r=this.scroll.descendants(y.default.Leaf,t,e));var i=[n,r].map(function(t){if(0===t.length)return{};for(var e=(0,_.bubbleFormats)(t.shift());Object.keys(e).length>0;){var n=t.shift();if(null==n)return e;e=a((0,_.bubbleFormats)(n),e)}return e});return T.default.apply(T.default,i)}},{key:"getText",value:function(t,e){return this.getContents(t,e).filter(function(t){return"string"==typeof t.insert}).map(function(t){return t.insert}).join("")}},{key:"insertEmbed",value:function(t,e,n){return this.scroll.insertAt(t,e,n),this.update((new d.default).retain(t).insert(i({},e,n)))}},{key:"insertText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e=e.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(t,e),Object.keys(r).forEach(function(i){n.scroll.formatAt(t,e.length,i,r[i])}),this.update((new d.default).retain(t).insert(e,(0,C.default)(r)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var t=this.scroll.children.head;return t.statics.blotName===k.default.blotName&&(!(t.children.length>1)&&t.children.head instanceof E.default)}},{key:"removeFormat",value:function(t,e){var n=this.getText(t,e),r=this.scroll.line(t+e),i=c(r,2),o=i[0],a=i[1],s=0,u=new d.default;null!=o&&(s=o instanceof b.default?o.newlineIndex(a)-a+1:o.length()-a,u=o.delta().slice(a,a+s-1).insert("\n"));var l=this.getContents(t,e+s),f=l.diff((new d.default).insert(n).concat(u)),h=(new d.default).retain(t).concat(f);return this.applyDelta(h)}},{key:"update",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=this.delta;if(1===e.length&&"characterData"===e[0].type&&e[0].target.data.match(N)&&y.default.find(e[0].target)){var i=y.default.find(e[0].target),o=(0,_.bubbleFormats)(i),a=i.offset(this.scroll),s=e[0].oldValue.replace(w.default.CONTENTS,""),u=(new d.default).insert(s),c=(new d.default).insert(i.value());t=(new d.default).retain(a).concat(u.diff(c,n)).reduce(function(t,e){return e.insert?t.insert(e.insert,o):t.push(e)},new d.default),this.delta=r.compose(t)}else this.delta=this.getDelta(),t&&(0,S.default)(r.compose(t),this.delta)||(t=r.diff(this.delta,n));return t}}]),t}();e.default=P},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){try{e.parentNode}catch(t){return!1}return e instanceof Text&&(e=e.parentNode),t.contains(e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Range=void 0;var s=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(0),l=r(c),f=n(21),d=r(f),h=n(11),p=r(h),v=n(8),y=r(v),m=n(10),b=r(m),g=(0,b.default)("quill:selection"),w=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;o(this,t),this.index=e,this.length=n},_=function(){function t(e,n){var r=this;o(this,t),this.emitter=n,this.scroll=e,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=l.default.create("cursor",this),this.lastRange=this.savedRange=new w(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){r.mouseDown||setTimeout(r.update.bind(r,y.default.sources.USER),1)}),this.emitter.on(y.default.events.EDITOR_CHANGE,function(t,e){t===y.default.events.TEXT_CHANGE&&e.length()>0&&r.update(y.default.sources.SILENT)}),this.emitter.on(y.default.events.SCROLL_BEFORE_UPDATE,function(){if(r.hasFocus()){var t=r.getNativeRange();null!=t&&t.start.node!==r.cursor.textNode&&r.emitter.once(y.default.events.SCROLL_UPDATE,function(){try{r.setNativeRange(t.start.node,t.start.offset,t.end.node,t.end.offset)}catch(t){}})}}),this.emitter.on(y.default.events.SCROLL_OPTIMIZE,function(t,e){if(e.range){var n=e.range,i=n.startNode,o=n.startOffset,a=n.endNode,s=n.endOffset;r.setNativeRange(i,o,a,s)}}),this.update(y.default.sources.SILENT)}return u(t,[{key:"handleComposition",value:function(){var t=this;this.root.addEventListener("compositionstart",function(){t.composing=!0}),this.root.addEventListener("compositionend",function(){if(t.composing=!1,t.cursor.parent){var e=t.cursor.restore();if(!e)return;setTimeout(function(){t.setNativeRange(e.startNode,e.startOffset,e.endNode,e.endOffset)},1)}})}},{key:"handleDragging",value:function(){var t=this;this.emitter.listenDOM("mousedown",document.body,function(){t.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){t.mouseDown=!1,t.update(y.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(t,e){if(null==this.scroll.whitelist||this.scroll.whitelist[t]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!l.default.query(t,l.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var r=l.default.find(n.start.node,!1);if(null==r)return;if(r instanceof l.default.Leaf){var i=r.split(n.start.offset);r.parent.insertBefore(this.cursor,i)}else r.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(t,e),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();t=Math.min(t,n-1),e=Math.min(t+e,n-1)-t;var r=void 0,i=this.scroll.leaf(t),o=s(i,2),a=o[0],u=o[1];if(null==a)return null;var c=a.position(u,!0),l=s(c,2);r=l[0],u=l[1];var f=document.createRange();if(e>0){f.setStart(r,u);var d=this.scroll.leaf(t+e),h=s(d,2);if(a=h[0],u=h[1],null==a)return null;var p=a.position(u,!0),v=s(p,2);return r=v[0],u=v[1],f.setEnd(r,u),f.getBoundingClientRect()}var y="left",m=void 0;return r instanceof Text?(u<r.data.length?(f.setStart(r,u),f.setEnd(r,u+1)):(f.setStart(r,u-1),f.setEnd(r,u),y="right"),m=f.getBoundingClientRect()):(m=a.domNode.getBoundingClientRect(),u>0&&(y="right")),{bottom:m.top+m.height,height:m.height,left:m[y],right:m[y],top:m.top,width:0}}},{key:"getNativeRange",value:function(){var t=document.getSelection();if(null==t||t.rangeCount<=0)return null;var e=t.getRangeAt(0);if(null==e)return null;var n=this.normalizeNative(e);return g.info("getNativeRange",n),n}},{key:"getRange",value:function(){var t=this.getNativeRange();return null==t?[null,null]:[this.normalizedToRange(t),t]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(t){var e=this,n=[[t.start.node,t.start.offset]];t.native.collapsed||n.push([t.end.node,t.end.offset]);var r=n.map(function(t){var n=s(t,2),r=n[0],i=n[1],o=l.default.find(r,!0),a=o.offset(e.scroll);return 0===i?a:o instanceof l.default.Container?a+o.length():a+o.index(r,i)}),o=Math.min(Math.max.apply(Math,i(r)),this.scroll.length()-1),a=Math.min.apply(Math,[o].concat(i(r)));return new w(a,o-a)}},{key:"normalizeNative",value:function(t){if(!a(this.root,t.startContainer)||!t.collapsed&&!a(this.root,t.endContainer))return null;var e={start:{node:t.startContainer,offset:t.startOffset},end:{node:t.endContainer,offset:t.endOffset},native:t};return[e.start,e.end].forEach(function(t){for(var e=t.node,n=t.offset;!(e instanceof Text)&&e.childNodes.length>0;)if(e.childNodes.length>n)e=e.childNodes[n],n=0;else{if(e.childNodes.length!==n)break;e=e.lastChild,n=e instanceof Text?e.data.length:e.childNodes.length+1}t.node=e,t.offset=n}),e}},{key:"rangeToNative",value:function(t){var e=this,n=t.collapsed?[t.index]:[t.index,t.index+t.length],r=[],i=this.scroll.length();return n.forEach(function(t,n){t=Math.min(i-1,t);var o=void 0,a=e.scroll.leaf(t),u=s(a,2),c=u[0],l=u[1],f=c.position(l,0!==n),d=s(f,2);o=d[0],l=d[1],r.push(o,l)}),r.length<2&&(r=r.concat(r)),r}},{key:"scrollIntoView",value:function(t){var e=this.lastRange;if(null!=e){var n=this.getBounds(e.index,e.length);if(null!=n){var r=this.scroll.length()-1,i=this.scroll.line(Math.min(e.index,r)),o=s(i,1),a=o[0],u=a;if(e.length>0){var c=this.scroll.line(Math.min(e.index+e.length,r));u=s(c,1)[0]}if(null!=a&&null!=u){var l=t.getBoundingClientRect();n.top<l.top?t.scrollTop-=l.top-n.top:n.bottom>l.bottom&&(t.scrollTop+=n.bottom-l.bottom)}}}}},{key:"setNativeRange",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e,i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(g.info("setNativeRange",t,e,n,r),null==t||null!=this.root.parentNode&&null!=t.parentNode&&null!=n.parentNode){var o=document.getSelection();if(null!=o)if(null!=t){this.hasFocus()||this.root.focus();var a=(this.getNativeRange()||{}).native;if(null==a||i||t!==a.startContainer||e!==a.startOffset||n!==a.endContainer||r!==a.endOffset){"BR"==t.tagName&&(e=[].indexOf.call(t.parentNode.childNodes,t),t=t.parentNode),"BR"==n.tagName&&(r=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var s=document.createRange();s.setStart(t,e),s.setEnd(n,r),o.removeAllRanges(),o.addRange(s)}}else o.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:y.default.sources.API;if("string"==typeof e&&(n=e,e=!1),g.info("setRange",t),null!=t){var r=this.rangeToNative(t);this.setNativeRange.apply(this,i(r).concat([e]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:y.default.sources.USER,e=this.lastRange,n=this.getRange(),r=s(n,2),i=r[0],o=r[1];if(this.lastRange=i,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,p.default)(e,this.lastRange)){var a;!this.composing&&null!=o&&o.native.collapsed&&o.start.node!==this.cursor.textNode&&this.cursor.restore();var u=[y.default.events.SELECTION_CHANGE,(0,d.default)(this.lastRange),(0,d.default)(e),t];if((a=this.emitter).emit.apply(a,[y.default.events.EDITOR_CHANGE].concat(u)),t!==y.default.sources.SILENT){var c;(c=this.emitter).emit.apply(c,u)}}}}]),t}();e.Range=w,e.default=_},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(0),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"insertInto",value:function(t,n){0===t.children.length?s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertInto",this).call(this,t,n):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),e}(c.default.Embed);l.blotName="break",l.tagName="BR",e.default=l},function(t,e,n){"use strict";function r(t){var e=s.find(t);if(null==e)try{e=s.create(t)}catch(n){e=s.create(s.Scope.INLINE),[].slice.call(t.childNodes).forEach(function(t){e.domNode.appendChild(t)}),t.parentNode&&t.parentNode.replaceChild(e.domNode,t),e.attach()}return e}var i=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(44),a=n(29),s=n(1),u=function(t){function e(e){var n=t.call(this,e)||this;return n.build(),n}return i(e,t),e.prototype.appendChild=function(t){this.insertBefore(t)},e.prototype.attach=function(){t.prototype.attach.call(this),this.children.forEach(function(t){t.attach()})},e.prototype.build=function(){var t=this;this.children=new o.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(e){try{var n=r(e);t.insertBefore(n,t.children.head||void 0)}catch(t){if(t instanceof s.ParchmentError)return;throw t}})},e.prototype.deleteAt=function(t,e){if(0===t&&e===this.length())return this.remove();this.children.forEachAt(t,e,function(t,e,n){t.deleteAt(e,n)})},e.prototype.descendant=function(t,n){var r=this.children.find(n),i=r[0],o=r[1];return null==t.blotName&&t(i)||null!=t.blotName&&i instanceof t?[i,o]:i instanceof e?i.descendant(t,o):[null,-1]},e.prototype.descendants=function(t,n,r){void 0===n&&(n=0),void 0===r&&(r=Number.MAX_VALUE);var i=[],o=r;return this.children.forEachAt(n,r,function(n,r,a){(null==t.blotName&&t(n)||null!=t.blotName&&n instanceof t)&&i.push(n),n instanceof e&&(i=i.concat(n.descendants(t,r,o))),o-=a}),i},e.prototype.detach=function(){this.children.forEach(function(t){t.detach()}),t.prototype.detach.call(this)},e.prototype.formatAt=function(t,e,n,r){this.children.forEachAt(t,e,function(t,e,i){t.formatAt(e,i,n,r)})},e.prototype.insertAt=function(t,e,n){var r=this.children.find(t),i=r[0],o=r[1];if(i)i.insertAt(o,e,n);else{var a=null==n?s.create("text",e):s.create(e,n);this.appendChild(a)}},e.prototype.insertBefore=function(t,e){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some(function(e){return t instanceof e}))throw new s.ParchmentError("Cannot insert "+t.statics.blotName+" into "+this.statics.blotName);t.insertInto(this,e)},e.prototype.length=function(){return this.children.reduce(function(t,e){return t+e.length()},0)},e.prototype.moveChildren=function(t,e){this.children.forEach(function(n){t.insertBefore(n,e)})},e.prototype.optimize=function(e){if(t.prototype.optimize.call(this,e),0===this.children.length)if(null!=this.statics.defaultChild){var n=s.create(this.statics.defaultChild);this.appendChild(n),n.optimize(e)}else this.remove()},e.prototype.path=function(t,n){void 0===n&&(n=!1);var r=this.children.find(t,n),i=r[0],o=r[1],a=[[this,t]];return i instanceof e?a.concat(i.path(o,n)):(null!=i&&a.push([i,o]),a)},e.prototype.removeChild=function(t){this.children.remove(t)},e.prototype.replace=function(n){n instanceof e&&n.moveChildren(this),t.prototype.replace.call(this,n)},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(t,this.length(),function(t,r,i){t=t.split(r,e),n.appendChild(t)}),n},e.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},e.prototype.update=function(t,e){var n=this,i=[],o=[];t.forEach(function(t){t.target===n.domNode&&"childList"===t.type&&(i.push.apply(i,t.addedNodes),o.push.apply(o,t.removedNodes))}),o.forEach(function(t){if(!(null!=t.parentNode&&"IFRAME"!==t.tagName&&document.body.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var e=s.find(t);null!=e&&(null!=e.domNode.parentNode&&e.domNode.parentNode!==n.domNode||e.detach())}}),i.filter(function(t){return t.parentNode==n.domNode}).sort(function(t,e){return t===e?0:t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(t){var e=null;null!=t.nextSibling&&(e=s.find(t.nextSibling));var i=r(t);i.next==e&&null!=i.next||(null!=i.parent&&i.parent.removeChild(n),n.insertBefore(i,e||void 0))})},e}(a.default);e.default=u},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(12),o=n(30),a=n(17),s=n(1),u=function(t){function e(e){var n=t.call(this,e)||this;return n.attributes=new o.default(n.domNode),n}return r(e,t),e.formats=function(t){return"string"==typeof this.tagName||(Array.isArray(this.tagName)?t.tagName.toLowerCase():void 0)},e.prototype.format=function(t,e){var n=s.query(t);n instanceof i.default?this.attributes.attribute(n,e):e&&(null==n||t===this.statics.blotName&&this.formats()[t]===e||this.replaceWith(t,e))},e.prototype.formats=function(){var t=this.attributes.values(),e=this.statics.formats(this.domNode);return null!=e&&(t[this.statics.blotName]=e),t},e.prototype.replaceWith=function(e,n){var r=t.prototype.replaceWith.call(this,e,n);return this.attributes.copy(r),r},e.prototype.update=function(e,n){var r=this;t.prototype.update.call(this,e,n),e.some(function(t){return t.target===r.domNode&&"attributes"===t.type})&&this.attributes.build()},e.prototype.wrap=function(n,r){var i=t.prototype.wrap.call(this,n,r);return i instanceof e&&i.statics.scope===this.statics.scope&&this.attributes.move(i),i},e}(a.default);e.default=u},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(29),o=n(1),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.value=function(t){return!0},e.prototype.index=function(t,e){return this.domNode===t||this.domNode.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(e,1):-1},e.prototype.position=function(t,e){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return t>0&&(n+=1),[this.parent.domNode,n]},e.prototype.value=function(){return t={},t[this.statics.blotName]=this.statics.value(this.domNode)||!0,t;var t},e.scope=o.Scope.INLINE_BLOT,e}(i.default);e.default=a},function(t,e,n){function r(t){this.ops=t,this.index=0,this.offset=0}var i=n(11),o=n(3),a={attributes:{compose:function(t,e,n){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var r=o(!0,{},e);n||(r=Object.keys(r).reduce(function(t,e){return null!=r[e]&&(t[e]=r[e]),t},{}));for(var i in t)void 0!==t[i]&&void 0===e[i]&&(r[i]=t[i]);return Object.keys(r).length>0?r:void 0},diff:function(t,e){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var n=Object.keys(t).concat(Object.keys(e)).reduce(function(n,r){return i(t[r],e[r])||(n[r]=void 0===e[r]?null:e[r]),n},{});return Object.keys(n).length>0?n:void 0},transform:function(t,e,n){if("object"!=typeof t)return e;if("object"==typeof e){if(!n)return e;var r=Object.keys(e).reduce(function(n,r){return void 0===t[r]&&(n[r]=e[r]),n},{});return Object.keys(r).length>0?r:void 0}}},iterator:function(t){return new r(t)},length:function(t){return"number"==typeof t.delete?t.delete:"number"==typeof t.retain?t.retain:"string"==typeof t.insert?t.insert.length:1}};r.prototype.hasNext=function(){return this.peekLength()<1/0},r.prototype.next=function(t){t||(t=1/0);var e=this.ops[this.index];if(e){var n=this.offset,r=a.length(e);if(t>=r-n?(t=r-n,this.index+=1,this.offset=0):this.offset+=t,"number"==typeof e.delete)return{delete:t};var i={};return e.attributes&&(i.attributes=e.attributes),"number"==typeof e.retain?i.retain=t:"string"==typeof e.insert?i.insert=e.insert.substr(n,t):i.insert=e.insert,i}return{retain:1/0}},r.prototype.peek=function(){return this.ops[this.index]},r.prototype.peekLength=function(){return this.ops[this.index]?a.length(this.ops[this.index])-this.offset:1/0},r.prototype.peekType=function(){return this.ops[this.index]?"number"==typeof this.ops[this.index].delete?"delete":"number"==typeof this.ops[this.index].retain?"retain":"insert":"retain"},t.exports=a},function(t,n){var r=function(){"use strict";function t(t,e){return null!=e&&t instanceof e}function n(r,i,o,a,f){function d(r,o){if(null===r)return null;if(0===o)return r;var y,m;if("object"!=typeof r)return r;if(t(r,u))y=new u;else if(t(r,c))y=new c;else if(t(r,l))y=new l(function(t,e){r.then(function(e){t(d(e,o-1))},function(t){e(d(t,o-1))})});else if(n.__isArray(r))y=[];else if(n.__isRegExp(r))y=new RegExp(r.source,s(r)),r.lastIndex&&(y.lastIndex=r.lastIndex);else if(n.__isDate(r))y=new Date(r.getTime());else{if(v&&e.isBuffer(r))return y=new e(r.length),r.copy(y),y;t(r,Error)?y=Object.create(r):void 0===a?(m=Object.getPrototypeOf(r),y=Object.create(m)):(y=Object.create(a),m=a)}if(i){var b=h.indexOf(r);if(-1!=b)return p[b];h.push(r),p.push(y)}t(r,u)&&r.forEach(function(t,e){var n=d(e,o-1),r=d(t,o-1);y.set(n,r)}),t(r,c)&&r.forEach(function(t){var e=d(t,o-1);y.add(e)});for(var g in r){var w;m&&(w=Object.getOwnPropertyDescriptor(m,g)),w&&null==w.set||(y[g]=d(r[g],o-1))}if(Object.getOwnPropertySymbols)for(var _=Object.getOwnPropertySymbols(r),g=0;g<_.length;g++){var k=_[g],O=Object.getOwnPropertyDescriptor(r,k);(!O||O.enumerable||f)&&(y[k]=d(r[k],o-1),O.enumerable||Object.defineProperty(y,k,{enumerable:!1}))}if(f)for(var E=Object.getOwnPropertyNames(r),g=0;g<E.length;g++){var x=E[g],O=Object.getOwnPropertyDescriptor(r,x);O&&O.enumerable||(y[x]=d(r[x],o-1),Object.defineProperty(y,x,{enumerable:!1}))}return y}"object"==typeof i&&(o=i.depth,a=i.prototype,f=i.includeNonEnumerable,i=i.circular);var h=[],p=[],v=void 0!==e;return void 0===i&&(i=!0),void 0===o&&(o=1/0),d(r,o)}function r(t){return Object.prototype.toString.call(t)}function i(t){return"object"==typeof t&&"[object Date]"===r(t)}function o(t){return"object"==typeof t&&"[object Array]"===r(t)}function a(t){return"object"==typeof t&&"[object RegExp]"===r(t)}function s(t){var e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),e}var u;try{u=Map}catch(t){u=function(){}}var c;try{c=Set}catch(t){c=function(){}}var l;try{l=Promise}catch(t){l=function(){}}return n.clonePrototype=function(t){if(null===t)return null;var e=function(){};return e.prototype=t,new e},n.__objToStr=r,n.__isDate=i,n.__isArray=o,n.__isRegExp=a,n.__getRegExpFlags=s,n}();"object"==typeof t&&t.exports&&(t.exports=r)},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t){return t instanceof y.default||t instanceof v.BlockEmbed}Object.defineProperty(e,"__esModule",{value:!0});var u=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),l=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},f=n(0),d=r(f),h=n(8),p=r(h),v=n(4),y=r(v),m=n(16),b=r(m),g=n(13),w=r(g),_=n(24),k=r(_),O=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return r.emitter=n.emitter,Array.isArray(n.whitelist)&&(r.whitelist=n.whitelist.reduce(function(t,e){return t[e]=!0,t},{})),r.domNode.addEventListener("DOMNodeInserted",function(){}),r.optimize(),r.enable(),r}return a(e,t),c(e,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(t,n){var r=this.line(t),i=u(r,2),o=i[0],a=i[1],s=this.line(t+n),c=u(s,1),f=c[0];if(l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"deleteAt",this).call(this,t,n),null!=f&&o!==f&&a>0){if(o instanceof v.BlockEmbed||f instanceof v.BlockEmbed)return void this.optimize();if(o instanceof w.default){var d=o.newlineIndex(o.length(),!0);if(d>-1&&(o=o.split(d+1))===f)return void this.optimize()}else if(f instanceof w.default){var h=f.newlineIndex(0);h>-1&&f.split(h+1)}var p=f.children.head instanceof b.default?null:f.children.head;o.moveChildren(f,p),o.remove()}this.optimize()}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",t)}},{key:"formatAt",value:function(t,n,r,i){(null==this.whitelist||this.whitelist[r])&&(l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"formatAt",this).call(this,t,n,r,i),this.optimize())}},{key:"insertAt",value:function(t,n,r){if(null==r||null==this.whitelist||this.whitelist[n]){if(t>=this.length())if(null==r||null==d.default.query(n,d.default.Scope.BLOCK)){var i=d.default.create(this.statics.defaultChild);this.appendChild(i),null==r&&n.endsWith("\n")&&(n=n.slice(0,-1)),i.insertAt(0,n,r)}else{var o=d.default.create(n,r);this.appendChild(o)}else l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,t,n,r);this.optimize()}}},{key:"insertBefore",value:function(t,n){if(t.statics.scope===d.default.Scope.INLINE_BLOT){var r=d.default.create(this.statics.defaultChild);r.appendChild(t),t=r}l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n)}},{key:"leaf",value:function(t){return this.path(t).pop()||[null,-1]}},{key:"line",value:function(t){return t===this.length()?this.line(t-1):this.descendant(s,t)}},{key:"lines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return function t(e,n,r){var i=[],o=r;return e.children.forEachAt(n,r,function(e,n,r){s(e)?i.push(e):e instanceof d.default.Container&&(i=i.concat(t(e,n,o))),o-=r}),i}(this,t,e)}},{key:"optimize",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t,n),t.length>0&&this.emitter.emit(p.default.events.SCROLL_OPTIMIZE,t,n))}},{key:"path",value:function(t){return l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"path",this).call(this,t).slice(1)}},{key:"update",value:function(t){if(!0!==this.batch){var n=p.default.sources.USER;"string"==typeof t&&(n=t),Array.isArray(t)||(t=this.observer.takeRecords()),t.length>0&&this.emitter.emit(p.default.events.SCROLL_BEFORE_UPDATE,n,t),l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"update",this).call(this,t.concat([])),t.length>0&&this.emitter.emit(p.default.events.SCROLL_UPDATE,n,t)}}}]),e}(d.default.Scroll);O.blotName="scroll",O.className="ql-editor",O.tagName="DIV",O.defaultChild="block",O.allowedChildren=[y.default,v.BlockEmbed,k.default],e.default=O},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),l=n(0),f=r(l),d=n(7),h=r(d),p=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return r.selection=n,r.textNode=document.createTextNode(e.CONTENTS),r.domNode.appendChild(r.textNode),r._length=0,r}return a(e,t),c(e,null,[{key:"value",value:function(){}}]),c(e,[{key:"detach",value:function(){null!=this.parent&&this.parent.removeChild(this)}},{key:"format",value:function(t,n){if(0!==this._length)return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n);for(var r=this,i=0;null!=r&&r.statics.scope!==f.default.Scope.BLOCK_BLOT;)i+=r.offset(r.parent),r=r.parent;null!=r&&(this._length=e.CONTENTS.length,r.optimize(),r.formatAt(i,e.CONTENTS.length,t,n),this._length=0)}},{key:"index",value:function(t,n){return t===this.textNode?0:u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"index",this).call(this,t,n)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!this.selection.composing&&null!=this.parent){var t=this.textNode,n=this.selection.getNativeRange(),r=void 0,i=void 0,o=void 0;if(null!=n&&n.start.node===t&&n.end.node===t){var a=[t,n.start.offset,n.end.offset];r=a[0],i=a[1],o=a[2]}for(;null!=this.domNode.lastChild&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==e.CONTENTS){var u=this.textNode.data.split(e.CONTENTS).join("");this.next instanceof h.default?(r=this.next.domNode,this.next.insertAt(0,u),this.textNode.data=e.CONTENTS):(this.textNode.data=u,this.parent.insertBefore(f.default.create(this.textNode),this),this.textNode=document.createTextNode(e.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),null!=i){var c=[i,o].map(function(t){return Math.max(0,Math.min(r.data.length,t-1))}),l=s(c,2);return i=l[0],o=l[1],{startNode:r,startOffset:i,endNode:r,endOffset:o}}}}},{key:"update",value:function(t,e){var n=this;if(t.some(function(t){return"characterData"===t.type&&t.target===n.textNode})){var r=this.restore();r&&(e.range=r)}}},{key:"value",value:function(){return""}}]),e}(f.default.Embed);p.blotName="cursor",p.className="ql-cursor",p.tagName="span",p.CONTENTS="\ufeff",e.default=p},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=n(0),u=r(s),c=n(4),l=r(c),f=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),e}(u.default.Container);f.allowedChildren=[l.default,c.BlockEmbed,f],e.default=f},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.ColorStyle=e.ColorClass=e.ColorAttributor=void 0;var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(0),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"value",value:function(t){var n=s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"value",this).call(this,t);return n.startsWith("rgb(")?(n=n.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+n.split(",").map(function(t){return("00"+parseInt(t).toString(16)).slice(-2)}).join("")):n}}]),e}(c.default.Attributor.Style),f=new c.default.Attributor.Class("color","ql-color",{scope:c.default.Scope.INLINE}),d=new l("color","color",{scope:c.default.Scope.INLINE});e.ColorAttributor=l,e.ColorClass=f,e.ColorStyle=d},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function a(t,e){var n=document.createElement("a");n.href=t;var r=n.href.slice(0,n.href.indexOf(":"));return e.indexOf(r)>-1}Object.defineProperty(e,"__esModule",{value:!0}),e.sanitize=e.default=void 0;var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(6),l=function(t){return t&&t.__esModule?t:{default:t}}(c),f=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),s(e,[{key:"format",value:function(t,n){if(t!==this.statics.blotName||!n)return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n);n=this.constructor.sanitize(n),this.domNode.setAttribute("href",n)}}],[{key:"create",value:function(t){var n=u(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return t=this.sanitize(t),n.setAttribute("href",t),n.setAttribute("target","_blank"),n}},{key:"formats",value:function(t){return t.getAttribute("href")}},{key:"sanitize",value:function(t){return a(t,this.PROTOCOL_WHITELIST)?t:this.SANITIZED_URL}}]),e}(l.default);f.blotName="link",f.tagName="A",f.SANITIZED_URL="about:blank",f.PROTOCOL_WHITELIST=["http","https","mailto","tel"],e.default=f,e.sanitize=a},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),a=n(107),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(){function t(e){var n=this;r(this,t),this.select=e,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){n.container.classList.toggle("ql-expanded")}),this.select.addEventListener("change",this.update.bind(this))}return o(t,[{key:"buildItem",value:function(t){var e=this,n=document.createElement("span");return n.classList.add("ql-picker-item"),t.hasAttribute("value")&&n.setAttribute("data-value",t.getAttribute("value")),t.textContent&&n.setAttribute("data-label",t.textContent),n.addEventListener("click",function(){e.selectItem(n,!0)}),n}},{key:"buildLabel",value:function(){var t=document.createElement("span");return t.classList.add("ql-picker-label"),t.innerHTML=s.default,this.container.appendChild(t),t}},{key:"buildOptions",value:function(){var t=this,e=document.createElement("span");e.classList.add("ql-picker-options"),[].slice.call(this.select.options).forEach(function(n){var r=t.buildItem(n);e.appendChild(r),!0===n.selected&&t.selectItem(r)}),this.container.appendChild(e)}},{key:"buildPicker",value:function(){var t=this;[].slice.call(this.select.attributes).forEach(function(e){t.container.setAttribute(e.name,e.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"close",value:function(){this.container.classList.remove("ql-expanded")}},{key:"selectItem",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(t!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=t&&(t.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(t.parentNode.children,t),t.hasAttribute("data-value")?this.label.setAttribute("data-value",t.getAttribute("data-value")):this.label.removeAttribute("data-value"),t.hasAttribute("data-label")?this.label.setAttribute("data-label",t.getAttribute("data-label")):this.label.removeAttribute("data-label"),e))){if("function"==typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"==typeof Event?"undefined":i(Event))){var r=document.createEvent("Event");r.initEvent("change",!0,!0),this.select.dispatchEvent(r)}this.close()}}},{key:"update",value:function(){var t=void 0;if(this.select.selectedIndex>-1){var e=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];t=this.select.options[this.select.selectedIndex],this.selectItem(e)}else this.selectItem(null);var n=null!=t&&t!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),t}();e.default=u},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var i=n(0),o=r(i),a=n(5),s=r(a),u=n(4),c=r(u),l=n(16),f=r(l),d=n(24),h=r(d),p=n(23),v=r(p),y=n(35),m=r(y),b=n(6),g=r(b),w=n(22),_=r(w),k=n(7),O=r(k),E=n(55),x=r(E),C=n(42),j=r(C),S=n(34),A=r(S);s.default.register({"blots/block":c.default,"blots/block/embed":u.BlockEmbed,"blots/break":f.default,"blots/container":h.default,"blots/cursor":v.default,"blots/embed":m.default,"blots/inline":g.default,"blots/scroll":_.default,"blots/text":O.default,"modules/clipboard":x.default,"modules/history":j.default,"modules/keyboard":A.default}),o.default.register(c.default,f.default,v.default,g.default,_.default,O.default),e.default=s.default},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(1),i=function(){function t(t){this.domNode=t,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(t.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),t.create=function(t){if(null==this.tagName)throw new r.ParchmentError("Blot definition missing tagName");var e;return Array.isArray(this.tagName)?("string"==typeof t&&(t=t.toUpperCase(),parseInt(t).toString()===t&&(t=parseInt(t))),e="number"==typeof t?document.createElement(this.tagName[t-1]):this.tagName.indexOf(t)>-1?document.createElement(t):document.createElement(this.tagName[0])):e=document.createElement(this.tagName),this.className&&e.classList.add(this.className),e},t.prototype.attach=function(){null!=this.parent&&(this.scroll=this.parent.scroll)},t.prototype.clone=function(){var t=this.domNode.cloneNode(!1);return r.create(t)},t.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},t.prototype.deleteAt=function(t,e){this.isolate(t,e).remove()},t.prototype.formatAt=function(t,e,n,i){var o=this.isolate(t,e);if(null!=r.query(n,r.Scope.BLOT)&&i)o.wrap(n,i);else if(null!=r.query(n,r.Scope.ATTRIBUTE)){var a=r.create(this.statics.scope);o.wrap(a),a.format(n,i)}},t.prototype.insertAt=function(t,e,n){var i=null==n?r.create("text",e):r.create(e,n),o=this.split(t);this.parent.insertBefore(i,o)},t.prototype.insertInto=function(t,e){void 0===e&&(e=null),null!=this.parent&&this.parent.children.remove(this);var n=null;t.children.insertBefore(this,e),null!=e&&(n=e.domNode),null!=this.next&&this.domNode.nextSibling==n||t.domNode.insertBefore(this.domNode,n),this.parent=t,this.attach()},t.prototype.isolate=function(t,e){var n=this.split(t);return n.split(e),n},t.prototype.length=function(){return 1},t.prototype.offset=function(t){return void 0===t&&(t=this.parent),null==this.parent||this==t?0:this.parent.children.offset(this)+this.parent.offset(t)},t.prototype.optimize=function(t){null!=this.domNode[r.DATA_KEY]&&delete this.domNode[r.DATA_KEY].mutations},t.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},t.prototype.replace=function(t){null!=t.parent&&(t.parent.insertBefore(this,t.next),t.remove())},t.prototype.replaceWith=function(t,e){var n="string"==typeof t?r.create(t,e):t;return n.replace(this),n},t.prototype.split=function(t,e){return 0===t?this:this.next},t.prototype.update=function(t,e){},t.prototype.wrap=function(t,e){var n="string"==typeof t?r.create(t,e):t;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},t.blotName="abstract",t}();e.default=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(12),i=n(31),o=n(32),a=n(1),s=function(){function t(t){this.attributes={},this.domNode=t,this.build()}return t.prototype.attribute=function(t,e){e?t.add(this.domNode,e)&&(null!=t.value(this.domNode)?this.attributes[t.attrName]=t:delete this.attributes[t.attrName]):(t.remove(this.domNode),delete this.attributes[t.attrName])},t.prototype.build=function(){var t=this;this.attributes={};var e=r.default.keys(this.domNode),n=i.default.keys(this.domNode),s=o.default.keys(this.domNode);e.concat(n).concat(s).forEach(function(e){var n=a.query(e,a.Scope.ATTRIBUTE);n instanceof r.default&&(t.attributes[n.attrName]=n)})},t.prototype.copy=function(t){var e=this;Object.keys(this.attributes).forEach(function(n){var r=e.attributes[n].value(e.domNode);t.format(n,r)})},t.prototype.move=function(t){var e=this;this.copy(t),Object.keys(this.attributes).forEach(function(t){e.attributes[t].remove(e.domNode)}),this.attributes={}},t.prototype.values=function(){var t=this;return Object.keys(this.attributes).reduce(function(e,n){return e[n]=t.attributes[n].value(t.domNode),e},{})},t}();e.default=s},function(t,e,n){"use strict";function r(t,e){return(t.getAttribute("class")||"").split(/\s+/).filter(function(t){return 0===t.indexOf(e+"-")})}var i=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(12),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i(e,t),e.keys=function(t){return(t.getAttribute("class")||"").split(/\s+/).map(function(t){return t.split("-").slice(0,-1).join("-")})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(this.remove(t),t.classList.add(this.keyName+"-"+e),!0)},e.prototype.remove=function(t){r(t,this.keyName).forEach(function(e){t.classList.remove(e)}),0===t.classList.length&&t.removeAttribute("class")},e.prototype.value=function(t){var e=r(t,this.keyName)[0]||"",n=e.slice(this.keyName.length+1);return this.canAdd(t,n)?n:""},e}(o.default);e.default=a},function(t,e,n){"use strict";function r(t){var e=t.split("-"),n=e.slice(1).map(function(t){return t[0].toUpperCase()+t.slice(1)}).join("");return e[0]+n}var i=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(12),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i(e,t),e.keys=function(t){return(t.getAttribute("style")||"").split(";").map(function(t){return t.split(":")[0].trim()})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(t.style[r(this.keyName)]=e,!0)},e.prototype.remove=function(t){t.style[r(this.keyName)]="",t.getAttribute("style")||t.removeAttribute("style")},e.prototype.value=function(t){var e=t.style[r(this.keyName)];return this.canAdd(t,e)?e:""},e}(o.default);e.default=a},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e,n){r(this,t),this.quill=e,this.options=n,this.modules={}}return i(t,[{key:"init",value:function(){var t=this;Object.keys(this.options.modules).forEach(function(e){null==t.modules[e]&&t.addModule(e)})}},{key:"addModule",value:function(t){var e=this.quill.constructor.import("modules/"+t);return this.modules[t]=new e(this.quill,this.options.modules[t]||{}),this.modules[t]}}]),t}();o.DEFAULTS={modules:{}},o.themes={default:o},e.default=o},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function u(t,e){var n,r=t===B.keys.LEFT?"prefix":"suffix";return n={key:t,shiftKey:e,altKey:null},i(n,r,/^$/),i(n,"handler",function(n){var r=n.index;t===B.keys.RIGHT&&(r+=n.length+1);var i=this.quill.getLeaf(r);return!(m(i,1)[0]instanceof T.default.Embed)||(t===B.keys.LEFT?e?this.quill.setSelection(n.index-1,n.length+1,P.default.sources.USER):this.quill.setSelection(n.index-1,P.default.sources.USER):e?this.quill.setSelection(n.index,n.length+1,P.default.sources.USER):this.quill.setSelection(n.index+n.length+1,P.default.sources.USER),!1)}),n}function c(t,e){if(!(0===t.index||this.quill.getLength()<=1)){var n=this.quill.getLine(t.index),r=m(n,1),i=r[0],o={};if(0===e.offset){var a=this.quill.getLine(t.index-1),s=m(a,1),u=s[0];if(null!=u&&u.length()>1){var c=i.formats(),l=this.quill.getFormat(t.index-1,1);o=S.default.attributes.diff(c,l)||{}}}var f=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(e.prefix)?2:1;this.quill.deleteText(t.index-f,f,P.default.sources.USER),Object.keys(o).length>0&&this.quill.formatLine(t.index-f,f,o,P.default.sources.USER),this.quill.focus()}}function l(t,e){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(e.suffix)?2:1;if(!(t.index>=this.quill.getLength()-n)){var r={},i=0,o=this.quill.getLine(t.index),a=m(o,1),s=a[0];if(e.offset>=s.length()-1){var u=this.quill.getLine(t.index+1),c=m(u,1),l=c[0];if(l){var f=s.formats(),d=this.quill.getFormat(t.index,1);r=S.default.attributes.diff(f,d)||{},i=l.length()}}this.quill.deleteText(t.index,n,P.default.sources.USER),Object.keys(r).length>0&&this.quill.formatLine(t.index+i-1,n,r,P.default.sources.USER)}}function f(t){var e=this.quill.getLines(t),n={};if(e.length>1){var r=e[0].formats(),i=e[e.length-1].formats();n=S.default.attributes.diff(i,r)||{}}this.quill.deleteText(t,P.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(t.index,1,n,P.default.sources.USER),this.quill.setSelection(t.index,P.default.sources.SILENT),this.quill.focus()}function d(t,e){var n=this;t.length>0&&this.quill.scroll.deleteAt(t.index,t.length);var r=Object.keys(e.format).reduce(function(t,n){return T.default.query(n,T.default.Scope.BLOCK)&&!Array.isArray(e.format[n])&&(t[n]=e.format[n]),t},{});this.quill.insertText(t.index,"\n",r,P.default.sources.USER),this.quill.setSelection(t.index+1,P.default.sources.SILENT),this.quill.focus(),Object.keys(e.format).forEach(function(t){null==r[t]&&(Array.isArray(e.format[t])||"link"!==t&&n.quill.format(t,e.format[t],P.default.sources.USER))})}function h(t){return{key:B.keys.TAB,shiftKey:!t,format:{"code-block":!0},handler:function(e){var n=T.default.query("code-block"),r=e.index,i=e.length,o=this.quill.scroll.descendant(n,r),a=m(o,2),s=a[0],u=a[1];if(null!=s){var c=this.quill.getIndex(s),l=s.newlineIndex(u,!0)+1,f=s.newlineIndex(c+u+i),d=s.domNode.textContent.slice(l,f).split("\n");u=0,d.forEach(function(e,o){t?(s.insertAt(l+u,n.TAB),u+=n.TAB.length,0===o?r+=n.TAB.length:i+=n.TAB.length):e.startsWith(n.TAB)&&(s.deleteAt(l+u,n.TAB.length),u-=n.TAB.length,0===o?r-=n.TAB.length:i-=n.TAB.length),u+=e.length+1}),this.quill.update(P.default.sources.USER),this.quill.setSelection(r,i,P.default.sources.SILENT)}}}}function p(t){return{key:t[0].toUpperCase(),shortKey:!0,handler:function(e,n){this.quill.format(t,!n.format[t],P.default.sources.USER)}}}function v(t){if("string"==typeof t||"number"==typeof t)return v({key:t});if("object"===(void 0===t?"undefined":y(t))&&(t=(0,w.default)(t,!1)),"string"==typeof t.key)if(null!=B.keys[t.key.toUpperCase()])t.key=B.keys[t.key.toUpperCase()];else{if(1!==t.key.length)return null;t.key=t.key.toUpperCase().charCodeAt(0)}return t.shortKey&&(t[M]=t.shortKey,delete t.shortKey),t}Object.defineProperty(e,"__esModule",{value:!0}),e.SHORTKEY=e.default=void 0;var y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},m=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),b=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),g=n(21),w=r(g),_=n(11),k=r(_),O=n(3),E=r(O),x=n(2),C=r(x),j=n(20),S=r(j),A=n(0),T=r(A),N=n(5),P=r(N),L=n(10),I=r(L),D=n(9),q=r(D),R=(0,I.default)("quill:keyboard"),M=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",B=function(t){function e(t,n){o(this,e);var r=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.bindings={},Object.keys(r.options.bindings).forEach(function(e){("list autofill"!==e||null==t.scroll.whitelist||t.scroll.whitelist.list)&&r.options.bindings[e]&&r.addBinding(r.options.bindings[e])}),r.addBinding({key:e.keys.ENTER,shiftKey:null},d),r.addBinding({key:e.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},function(){}),/Firefox/i.test(navigator.userAgent)?(r.addBinding({key:e.keys.BACKSPACE},{collapsed:!0},c),r.addBinding({key:e.keys.DELETE},{collapsed:!0},l)):(r.addBinding({key:e.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},c),r.addBinding({key:e.keys.DELETE},{collapsed:!0,suffix:/^.?$/},l)),r.addBinding({key:e.keys.BACKSPACE},{collapsed:!1},f),r.addBinding({key:e.keys.DELETE},{collapsed:!1},f),r.addBinding({key:e.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},c),r.listen(),r}return s(e,t),b(e,null,[{key:"match",value:function(t,e){return e=v(e),!["altKey","ctrlKey","metaKey","shiftKey"].some(function(n){return!!e[n]!==t[n]&&null!==e[n]})&&e.key===(t.which||t.keyCode)}}]),b(e,[{key:"addBinding",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=v(t);if(null==r||null==r.key)return R.warn("Attempted to add invalid keyboard binding",r);"function"==typeof e&&(e={handler:e}),"function"==typeof n&&(n={handler:n}),r=(0,E.default)(r,e,n),this.bindings[r.key]=this.bindings[r.key]||[],this.bindings[r.key].push(r)}},{key:"listen",value:function(){var t=this;this.quill.root.addEventListener("keydown",function(n){if(!n.defaultPrevented){var r=n.which||n.keyCode,i=(t.bindings[r]||[]).filter(function(t){return e.match(n,t)});if(0!==i.length){var o=t.quill.getSelection();if(null!=o&&t.quill.hasFocus()){var a=t.quill.getLine(o.index),s=m(a,2),u=s[0],c=s[1],l=t.quill.getLeaf(o.index),f=m(l,2),d=f[0],h=f[1],p=0===o.length?[d,h]:t.quill.getLeaf(o.index+o.length),v=m(p,2),b=v[0],g=v[1],w=d instanceof T.default.Text?d.value().slice(0,h):"",_=b instanceof T.default.Text?b.value().slice(g):"",O={collapsed:0===o.length,empty:0===o.length&&u.length()<=1,format:t.quill.getFormat(o),offset:c,prefix:w,suffix:_};i.some(function(e){if(null!=e.collapsed&&e.collapsed!==O.collapsed)return!1;if(null!=e.empty&&e.empty!==O.empty)return!1;if(null!=e.offset&&e.offset!==O.offset)return!1;if(Array.isArray(e.format)){if(e.format.every(function(t){return null==O.format[t]}))return!1}else if("object"===y(e.format)&&!Object.keys(e.format).every(function(t){return!0===e.format[t]?null!=O.format[t]:!1===e.format[t]?null==O.format[t]:(0,k.default)(e.format[t],O.format[t])}))return!1;return!(null!=e.prefix&&!e.prefix.test(O.prefix))&&(!(null!=e.suffix&&!e.suffix.test(O.suffix))&&!0!==e.handler.call(t,o,O))})&&n.preventDefault()}}}})}}]),e}(q.default);B.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},B.DEFAULTS={bindings:{bold:p("bold"),italic:p("italic"),underline:p("underline"),indent:{key:B.keys.TAB,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","+1",P.default.sources.USER)}},outdent:{key:B.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","-1",P.default.sources.USER)}},"outdent backspace":{key:B.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(t,e){null!=e.format.indent?this.quill.format("indent","-1",P.default.sources.USER):null!=e.format.list&&this.quill.format("list",!1,P.default.sources.USER)}},"indent code-block":h(!0),"outdent code-block":h(!1),"remove tab":{key:B.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(t){this.quill.deleteText(t.index-1,1,P.default.sources.USER)}},tab:{key:B.keys.TAB,handler:function(t){this.quill.history.cutoff();var e=(new C.default).retain(t.index).delete(t.length).insert("\t");this.quill.updateContents(e,P.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index+1,P.default.sources.SILENT)}},"list empty enter":{key:B.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(t,e){this.quill.format("list",!1,P.default.sources.USER),e.format.indent&&this.quill.format("indent",!1,P.default.sources.USER)}},"checklist enter":{key:B.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(t){var e=this.quill.getLine(t.index),n=m(e,2),r=n[0],i=n[1],o=(0,E.default)({},r.formats(),{list:"checked"}),a=(new C.default).retain(t.index).insert("\n",o).retain(r.length()-i-1).retain(1,{list:"unchecked"});this.quill.updateContents(a,P.default.sources.USER),this.quill.setSelection(t.index+1,P.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:B.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(t,e){var n=this.quill.getLine(t.index),r=m(n,2),i=r[0],o=r[1],a=(new C.default).retain(t.index).insert("\n",e.format).retain(i.length()-o-1).retain(1,{header:null});this.quill.updateContents(a,P.default.sources.USER),this.quill.setSelection(t.index+1,P.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(t,e){var n=e.prefix.length,r=this.quill.getLine(t.index),i=m(r,2),o=i[0],a=i[1];if(a>n)return!0;var s=void 0;switch(e.prefix.trim()){case"[]":case"[ ]":s="unchecked";break;case"[x]":s="checked";break;case"-":case"*":s="bullet";break;default:s="ordered"}this.quill.insertText(t.index," ",P.default.sources.USER),this.quill.history.cutoff();var u=(new C.default).retain(t.index-a).delete(n+1).retain(o.length()-2-a).retain(1,{list:s});this.quill.updateContents(u,P.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index-n,P.default.sources.SILENT)}},"code exit":{key:B.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(t){var e=this.quill.getLine(t.index),n=m(e,2),r=n[0],i=n[1],o=(new C.default).retain(t.index+r.length()-i-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(o,P.default.sources.USER)}},"embed left":u(B.keys.LEFT,!1),"embed left shift":u(B.keys.LEFT,!0),"embed right":u(B.keys.RIGHT,!1),"embed right shift":u(B.keys.RIGHT,!0)}},e.default=B,e.SHORTKEY=M},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(0),l=r(c),f=n(7),d=r(f),h="\ufeff",p=function(t){function e(t){i(this,e);var n=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.contentNode=document.createElement("span"),n.contentNode.setAttribute("contenteditable",!1),[].slice.call(n.domNode.childNodes).forEach(function(t){n.contentNode.appendChild(t)}),n.leftGuard=document.createTextNode(h),n.rightGuard=document.createTextNode(h),n.domNode.appendChild(n.leftGuard),n.domNode.appendChild(n.contentNode),n.domNode.appendChild(n.rightGuard),n}return a(e,t),s(e,[{key:"index",value:function(t,n){return t===this.leftGuard?0:t===this.rightGuard?1:u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"index",this).call(this,t,n)}},{key:"restore",value:function(t){var e=void 0,n=void 0,r=t.data.split(h).join("");if(t===this.leftGuard)if(this.prev instanceof d.default){var i=this.prev.length();this.prev.insertAt(i,r),e={startNode:this.prev.domNode,startOffset:i+r.length}}else n=document.createTextNode(r),this.parent.insertBefore(l.default.create(n),this),e={startNode:n,startOffset:r.length};else t===this.rightGuard&&(this.next instanceof d.default?(this.next.insertAt(0,r),e={startNode:this.next.domNode,startOffset:r.length}):(n=document.createTextNode(r),this.parent.insertBefore(l.default.create(n),this.next),e={startNode:n,startOffset:r.length}));return t.data=h,e}},{key:"update",value:function(t,e){var n=this;t.forEach(function(t){if("characterData"===t.type&&(t.target===n.leftGuard||t.target===n.rightGuard)){var r=n.restore(t.target);r&&(e.range=r)}})}}]),e}(l.default.Embed);e.default=p},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.AlignStyle=e.AlignClass=e.AlignAttribute=void 0;var r=n(0),i=function(t){return t&&t.__esModule?t:{default:t}}(r),o={scope:i.default.Scope.BLOCK,whitelist:["right","center","justify"]},a=new i.default.Attributor.Attribute("align","align",o),s=new i.default.Attributor.Class("align","ql-align",o),u=new i.default.Attributor.Style("align","text-align",o);e.AlignAttribute=a,e.AlignClass=s,e.AlignStyle=u},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.BackgroundStyle=e.BackgroundClass=void 0;var r=n(0),i=function(t){return t&&t.__esModule?t:{default:t}}(r),o=n(25),a=new i.default.Attributor.Class("background","ql-bg",{scope:i.default.Scope.INLINE}),s=new o.ColorAttributor("background","background-color",{scope:i.default.Scope.INLINE});e.BackgroundClass=a,e.BackgroundStyle=s},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.DirectionStyle=e.DirectionClass=e.DirectionAttribute=void 0;var r=n(0),i=function(t){return t&&t.__esModule?t:{default:t}}(r),o={scope:i.default.Scope.BLOCK,whitelist:["rtl"]},a=new i.default.Attributor.Attribute("direction","dir",o),s=new i.default.Attributor.Class("direction","ql-direction",o),u=new i.default.Attributor.Style("direction","direction",o);e.DirectionAttribute=a,e.DirectionClass=s,e.DirectionStyle=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.FontClass=e.FontStyle=void 0;var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(0),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l={scope:c.default.Scope.INLINE,whitelist:["serif","monospace"]},f=new c.default.Attributor.Class("font","ql-font",l),d=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"value",value:function(t){return s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"value",this).call(this,t).replace(/["']/g,"")}}]),e}(c.default.Attributor.Style),h=new d("font","font-family",l);e.FontStyle=h,e.FontClass=f},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.SizeStyle=e.SizeClass=void 0;var r=n(0),i=function(t){return t&&t.__esModule?t:{default:t}}(r),o=new i.default.Attributor.Class("size","ql-size",{scope:i.default.Scope.INLINE,whitelist:["small","large","huge"]}),a=new i.default.Attributor.Style("size","font-size",{scope:i.default.Scope.INLINE,whitelist:["10px","18px","32px"]});e.SizeClass=o,e.SizeStyle=a},function(t,e,n){"use strict";t.exports={align:{"":n(76),center:n(77),right:n(78),justify:n(79)},background:n(80),blockquote:n(81),bold:n(82),clean:n(83),code:n(58),"code-block":n(58),color:n(84),direction:{"":n(85),rtl:n(86)},float:{center:n(87),full:n(88),left:n(89),right:n(90)},formula:n(91),header:{1:n(92),2:n(93)},italic:n(94),image:n(95),indent:{"+1":n(96),"-1":n(97)},link:n(98),list:{ordered:n(99),bullet:n(100),check:n(101)},script:{sub:n(102),super:n(103)},strike:n(104),underline:n(105),video:n(106)}},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t){var e=t.ops[t.ops.length-1];return null!=e&&(null!=e.insert?"string"==typeof e.insert&&e.insert.endsWith("\n"):null!=e.attributes&&Object.keys(e.attributes).some(function(t){return null!=f.default.query(t,f.default.Scope.BLOCK)}))}function u(t){var e=t.reduce(function(t,e){return t+=e.delete||0},0),n=t.length()-e;return s(t)&&(n-=1),n}Object.defineProperty(e,"__esModule",{value:!0}),e.getLastChangeIndex=e.default=void 0;var c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),l=n(0),f=r(l),d=n(5),h=r(d),p=n(9),v=r(p),y=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.lastRecorded=0,r.ignoreChange=!1,r.clear(),r.quill.on(h.default.events.EDITOR_CHANGE,function(t,e,n,i){t!==h.default.events.TEXT_CHANGE||r.ignoreChange||(r.options.userOnly&&i!==h.default.sources.USER?r.transform(e):r.record(e,n))}),r.quill.keyboard.addBinding({key:"Z",shortKey:!0},r.undo.bind(r)),r.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},r.redo.bind(r)),/Win/i.test(navigator.platform)&&r.quill.keyboard.addBinding({key:"Y",shortKey:!0},r.redo.bind(r)),r}return a(e,t),c(e,[{key:"change",value:function(t,e){if(0!==this.stack[t].length){var n=this.stack[t].pop();this.stack[e].push(n),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(n[t],h.default.sources.USER),this.ignoreChange=!1;var r=u(n[t]);this.quill.setSelection(r)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(t,e){if(0!==t.ops.length){this.stack.redo=[];var n=this.quill.getContents().diff(e),r=Date.now();if(this.lastRecorded+this.options.delay>r&&this.stack.undo.length>0){var i=this.stack.undo.pop();n=n.compose(i.undo),t=i.redo.compose(t)}else this.lastRecorded=r;this.stack.undo.push({redo:t,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(t){this.stack.undo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)}),this.stack.redo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),e}(v.default);y.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},e.default=y,e.getLastChangeIndex=u},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t){var e=t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return e?(e[1]||"https")+"://www.youtube.com/embed/"+e[2]+"?showinfo=0":(e=t.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(e[1]||"https")+"://player.vimeo.com/video/"+e[2]+"/":t}function u(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];e.forEach(function(e){var r=document.createElement("option");e===n?r.setAttribute("selected","selected"):r.setAttribute("value",e),t.appendChild(r)})}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BaseTooltip=void 0;var c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),l=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},f=n(3),d=r(f),h=n(2),p=r(h),v=n(8),y=r(v),m=n(34),b=r(m),g=n(33),w=r(g),_=n(59),k=r(_),O=n(60),E=r(O),x=n(27),C=r(x),j=n(61),S=r(j),A=[!1,"center","right","justify"],T=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],N=[!1,"serif","monospace"],P=["1","2","3",!1],L=["small",!1,"large","huge"],I=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n)),a=function e(n){if(!document.body.contains(t.root))return document.body.removeEventListener("click",e);null==r.tooltip||r.tooltip.root.contains(n.target)||document.activeElement===r.tooltip.textbox||r.quill.hasFocus()||r.tooltip.hide(),null!=r.pickers&&r.pickers.forEach(function(t){t.container.contains(n.target)||t.close()})};return t.emitter.listenDOM("click",document.body,a),r}return a(e,t),c(e,[{key:"addModule",value:function(t){var n=l(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"addModule",this).call(this,t);return"toolbar"===t&&this.extendToolbar(n),n}},{key:"buildButtons",value:function(t,e){t.forEach(function(t){(t.getAttribute("class")||"").split(/\s+/).forEach(function(n){if(n.startsWith("ql-")&&(n=n.slice("ql-".length),null!=e[n]))if("direction"===n)t.innerHTML=e[n][""]+e[n].rtl;else if("string"==typeof e[n])t.innerHTML=e[n];else{var r=t.value||"";null!=r&&e[n][r]&&(t.innerHTML=e[n][r])}})})}},{key:"buildPickers",value:function(t,e){var n=this;this.pickers=t.map(function(t){if(t.classList.contains("ql-align"))return null==t.querySelector("option")&&u(t,A),new E.default(t,e.align);if(t.classList.contains("ql-background")||t.classList.contains("ql-color")){var n=t.classList.contains("ql-background")?"background":"color";return null==t.querySelector("option")&&u(t,T,"background"===n?"#ffffff":"#000000"),new k.default(t,e[n])}return null==t.querySelector("option")&&(t.classList.contains("ql-font")?u(t,N):t.classList.contains("ql-header")?u(t,P):t.classList.contains("ql-size")&&u(t,L)),new C.default(t)});var r=function(){n.pickers.forEach(function(t){t.update()})};this.quill.on(y.default.events.EDITOR_CHANGE,r)}}]),e}(w.default);I.DEFAULTS=(0,d.default)(!0,{},w.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var t=this,e=this.container.querySelector("input.ql-image[type=file]");null==e&&(e=document.createElement("input"),e.setAttribute("type","file"),e.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),e.classList.add("ql-image"),e.addEventListener("change",function(){if(null!=e.files&&null!=e.files[0]){var n=new FileReader;n.onload=function(n){var r=t.quill.getSelection(!0);t.quill.updateContents((new p.default).retain(r.index).delete(r.length).insert({image:n.target.result}),y.default.sources.USER),t.quill.setSelection(r.index+1,y.default.sources.SILENT),e.value=""},n.readAsDataURL(e.files[0])}}),this.container.appendChild(e)),e.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var D=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.textbox=r.root.querySelector('input[type="text"]'),r.listen(),r}return a(e,t),c(e,[{key:"listen",value:function(){var t=this;this.textbox.addEventListener("keydown",function(e){b.default.match(e,"enter")?(t.save(),e.preventDefault()):b.default.match(e,"escape")&&(t.cancel(),e.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"link",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=e?this.textbox.value=e:t!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+t)||""),this.root.setAttribute("data-mode",t)}},{key:"restoreFocus",value:function(){var t=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=t}},{key:"save",value:function(){var t=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var e=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",t,y.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",t,y.default.sources.USER)),this.quill.root.scrollTop=e;break;case"video":t=s(t);case"formula":if(!t)break;var n=this.quill.getSelection(!0);if(null!=n){var r=n.index+n.length;this.quill.insertEmbed(r,this.root.getAttribute("data-mode"),t,y.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(r+1," ",y.default.sources.USER),this.quill.setSelection(r+2,y.default.sources.USER)}}this.textbox.value="",this.hide()}}]),e}(S.default);e.BaseTooltip=D,e.default=I},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){this.head=this.tail=null,this.length=0}return t.prototype.append=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];this.insertBefore(t[0],null),t.length>1&&this.append.apply(this,t.slice(1))},t.prototype.contains=function(t){for(var e,n=this.iterator();e=n();)if(e===t)return!0;return!1},t.prototype.insertBefore=function(t,e){t&&(t.next=e,null!=e?(t.prev=e.prev,null!=e.prev&&(e.prev.next=t),e.prev=t,e===this.head&&(this.head=t)):null!=this.tail?(this.tail.next=t,t.prev=this.tail,this.tail=t):(t.prev=null,this.head=this.tail=t),this.length+=1)},t.prototype.offset=function(t){for(var e=0,n=this.head;null!=n;){if(n===t)return e;e+=n.length(),n=n.next}return-1},t.prototype.remove=function(t){this.contains(t)&&(null!=t.prev&&(t.prev.next=t.next),null!=t.next&&(t.next.prev=t.prev),t===this.head&&(this.head=t.next),t===this.tail&&(this.tail=t.prev),this.length-=1)},t.prototype.iterator=function(t){return void 0===t&&(t=this.head),function(){var e=t;return null!=t&&(t=t.next),e}},t.prototype.find=function(t,e){void 0===e&&(e=!1);for(var n,r=this.iterator();n=r();){var i=n.length();if(t<i||e&&t===i&&(null==n.next||0!==n.next.length()))return[n,t];t-=i}return[null,0]},t.prototype.forEach=function(t){for(var e,n=this.iterator();e=n();)t(e)},t.prototype.forEachAt=function(t,e,n){if(!(e<=0))for(var r,i=this.find(t),o=i[0],a=i[1],s=t-a,u=this.iterator(o);(r=u())&&s<t+e;){var c=r.length();t>s?n(r,t-s,Math.min(e,s+c-t)):n(r,0,Math.min(c,t+e-s)),s+=c}},t.prototype.map=function(t){return this.reduce(function(e,n){return e.push(t(n)),e},[])},t.prototype.reduce=function(t,e){for(var n,r=this.iterator();n=r();)e=t(e,n);return e},t}();e.default=r},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(17),o=n(1),a={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},s=function(t){function e(e){var n=t.call(this,e)||this;return n.scroll=n,n.observer=new MutationObserver(function(t){n.update(t)}),n.observer.observe(n.domNode,a),n.attach(),n}return r(e,t),e.prototype.detach=function(){t.prototype.detach.call(this),this.observer.disconnect()},e.prototype.deleteAt=function(e,n){this.update(),0===e&&n===this.length()?this.children.forEach(function(t){t.remove()}):t.prototype.deleteAt.call(this,e,n)},e.prototype.formatAt=function(e,n,r,i){this.update(),t.prototype.formatAt.call(this,e,n,r,i)},e.prototype.insertAt=function(e,n,r){this.update(),t.prototype.insertAt.call(this,e,n,r)},e.prototype.optimize=function(e,n){var r=this;void 0===e&&(e=[]),void 0===n&&(n={}),t.prototype.optimize.call(this,n);for(var a=[].slice.call(this.observer.takeRecords());a.length>0;)e.push(a.pop());for(var s=function(t,e){void 0===e&&(e=!0),null!=t&&t!==r&&null!=t.domNode.parentNode&&(null==t.domNode[o.DATA_KEY].mutations&&(t.domNode[o.DATA_KEY].mutations=[]),e&&s(t.parent))},u=function(t){null!=t.domNode[o.DATA_KEY]&&null!=t.domNode[o.DATA_KEY].mutations&&(t instanceof i.default&&t.children.forEach(u),t.optimize(n))},c=e,l=0;c.length>0;l+=1){if(l>=100)throw new Error("[Parchment] Maximum optimize iterations reached");for(c.forEach(function(t){var e=o.find(t.target,!0);null!=e&&(e.domNode===t.target&&("childList"===t.type?(s(o.find(t.previousSibling,!1)),[].forEach.call(t.addedNodes,function(t){var e=o.find(t,!1);s(e,!1),e instanceof i.default&&e.children.forEach(function(t){s(t,!1)})})):"attributes"===t.type&&s(e.prev)),s(e))}),this.children.forEach(u),c=[].slice.call(this.observer.takeRecords()),a=c.slice();a.length>0;)e.push(a.pop())}},e.prototype.update=function(e,n){var r=this;void 0===n&&(n={}),e=e||this.observer.takeRecords(),e.map(function(t){var e=o.find(t.target,!0);return null==e?null:null==e.domNode[o.DATA_KEY].mutations?(e.domNode[o.DATA_KEY].mutations=[t],e):(e.domNode[o.DATA_KEY].mutations.push(t),null)}).forEach(function(t){null!=t&&t!==r&&null!=t.domNode[o.DATA_KEY]&&t.update(t.domNode[o.DATA_KEY].mutations||[],n)}),null!=this.domNode[o.DATA_KEY].mutations&&t.prototype.update.call(this,this.domNode[o.DATA_KEY].mutations,n),this.optimize(e,n)},e.blotName="scroll",e.defaultChild="block",e.scope=o.Scope.BLOCK_BLOT,e.tagName="DIV",e}(i.default);e.default=s},function(t,e,n){"use strict";function r(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!1;for(var n in t)if(t[n]!==e[n])return!1;return!0}var i=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(18),a=n(1),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i(e,t),e.formats=function(n){if(n.tagName!==e.tagName)return t.formats.call(this,n)},e.prototype.format=function(n,r){var i=this;n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):(this.children.forEach(function(t){t instanceof o.default||(t=t.wrap(e.blotName,!0)),i.attributes.copy(t)}),this.unwrap())},e.prototype.formatAt=function(e,n,r,i){if(null!=this.formats()[r]||a.query(r,a.Scope.ATTRIBUTE)){this.isolate(e,n).format(r,i)}else t.prototype.formatAt.call(this,e,n,r,i)},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n);var i=this.formats();if(0===Object.keys(i).length)return this.unwrap();var o=this.next;o instanceof e&&o.prev===this&&r(i,o.formats())&&(o.moveChildren(this),o.remove())},e.blotName="inline",e.scope=a.Scope.INLINE_BLOT,e.tagName="SPAN",e}(o.default);e.default=s},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(18),o=n(1),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(n){var r=o.query(e.blotName).tagName;if(n.tagName!==r)return t.formats.call(this,n)},e.prototype.format=function(n,r){null!=o.query(n,o.Scope.BLOCK)&&(n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):this.replaceWith(e.blotName))},e.prototype.formatAt=function(e,n,r,i){null!=o.query(r,o.Scope.BLOCK)?this.format(r,i):t.prototype.formatAt.call(this,e,n,r,i)},e.prototype.insertAt=function(e,n,r){if(null==r||null!=o.query(n,o.Scope.INLINE))t.prototype.insertAt.call(this,e,n,r);else{var i=this.split(e),a=o.create(n,r);i.parent.insertBefore(a,i)}},e.prototype.update=function(e,n){navigator.userAgent.match(/Trident/)?this.build():t.prototype.update.call(this,e,n)},e.blotName="block",e.scope=o.Scope.BLOCK_BLOT,e.tagName="P",e}(i.default);e.default=a},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(19),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(t){},e.prototype.format=function(e,n){t.prototype.formatAt.call(this,0,this.length(),e,n)},e.prototype.formatAt=function(e,n,r,i){0===e&&n===this.length()?this.format(r,i):t.prototype.formatAt.call(this,e,n,r,i)},e.prototype.formats=function(){return this.statics.formats(this.domNode)},e}(i.default);e.default=o},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(19),o=n(1),a=function(t){function e(e){var n=t.call(this,e)||this;return n.text=n.statics.value(n.domNode),n}return r(e,t),e.create=function(t){return document.createTextNode(t)},e.value=function(t){var e=t.data;return e.normalize&&(e=e.normalize()),e},e.prototype.deleteAt=function(t,e){this.domNode.data=this.text=this.text.slice(0,t)+this.text.slice(t+e)},e.prototype.index=function(t,e){return this.domNode===t?e:-1},e.prototype.insertAt=function(e,n,r){null==r?(this.text=this.text.slice(0,e)+n+this.text.slice(e),this.domNode.data=this.text):t.prototype.insertAt.call(this,e,n,r)},e.prototype.length=function(){return this.text.length},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof e&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},e.prototype.position=function(t,e){return void 0===e&&(e=!1),[this.domNode,t]},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=o.create(this.domNode.splitText(t));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},e.prototype.update=function(t,e){var n=this;t.some(function(t){return"characterData"===t.type&&t.target===n.domNode})&&(this.text=this.statics.value(this.domNode))},e.prototype.value=function(){return this.text},e.blotName="text",e.scope=o.Scope.INLINE_BLOT,e}(i.default);e.default=a},function(t,e,n){"use strict";var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var i=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return arguments.length>1&&!this.contains(t)==!e?e:i.call(this,t)}}String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t}),String.prototype.endsWith||(String.prototype.endsWith=function(t,e){var n=this.toString();("number"!=typeof e||!isFinite(e)||Math.floor(e)!==e||e>n.length)&&(e=n.length),e-=t.length;var r=n.indexOf(t,e);return-1!==r&&r===e}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),r=n.length>>>0,i=arguments[1],o=0;o<r;o++)if(e=n[o],t.call(i,e,o,n))return e}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})},function(t,e){function n(t,e,n){if(t==e)return t?[[y,t]]:[];(n<0||t.length<n)&&(n=null);var i=a(t,e),o=t.substring(0,i);t=t.substring(i),e=e.substring(i),i=s(t,e);var u=t.substring(t.length-i);t=t.substring(0,t.length-i),e=e.substring(0,e.length-i);var l=r(t,e);return o&&l.unshift([y,o]),u&&l.push([y,u]),c(l),null!=n&&(l=f(l,n)),l=d(l)}function r(t,e){var r;if(!t)return[[v,e]];if(!e)return[[p,t]];var o=t.length>e.length?t:e,a=t.length>e.length?e:t,s=o.indexOf(a);if(-1!=s)return r=[[v,o.substring(0,s)],[y,a],[v,o.substring(s+a.length)]],t.length>e.length&&(r[0][0]=r[2][0]=p),r;if(1==a.length)return[[p,t],[v,e]];var c=u(t,e);if(c){var l=c[0],f=c[1],d=c[2],h=c[3],m=c[4],b=n(l,d),g=n(f,h);return b.concat([[y,m]],g)}return i(t,e)}function i(t,e){for(var n=t.length,r=e.length,i=Math.ceil((n+r)/2),a=i,s=2*i,u=new Array(s),c=new Array(s),l=0;l<s;l++)u[l]=-1,c[l]=-1;u[a+1]=0,c[a+1]=0;for(var f=n-r,d=f%2!=0,h=0,y=0,m=0,b=0,g=0;g<i;g++){for(var w=-g+h;w<=g-y;w+=2){var _,k=a+w;_=w==-g||w!=g&&u[k-1]<u[k+1]?u[k+1]:u[k-1]+1;for(var O=_-w;_<n&&O<r&&t.charAt(_)==e.charAt(O);)_++,O++;if(u[k]=_,_>n)y+=2;else if(O>r)h+=2;else if(d){var E=a+f-w;if(E>=0&&E<s&&-1!=c[E]){var x=n-c[E];if(_>=x)return o(t,e,_,O)}}}for(var C=-g+m;C<=g-b;C+=2){var x,E=a+C;x=C==-g||C!=g&&c[E-1]<c[E+1]?c[E+1]:c[E-1]+1;for(var j=x-C;x<n&&j<r&&t.charAt(n-x-1)==e.charAt(r-j-1);)x++,j++;if(c[E]=x,x>n)b+=2;else if(j>r)m+=2;else if(!d){var k=a+f-C;if(k>=0&&k<s&&-1!=u[k]){var _=u[k],O=a+_-k;if(x=n-x,_>=x)return o(t,e,_,O)}}}}return[[p,t],[v,e]]}function o(t,e,r,i){var o=t.substring(0,r),a=e.substring(0,i),s=t.substring(r),u=e.substring(i),c=n(o,a),l=n(s,u);return c.concat(l)}function a(t,e){if(!t||!e||t.charAt(0)!=e.charAt(0))return 0;for(var n=0,r=Math.min(t.length,e.length),i=r,o=0;n<i;)t.substring(o,i)==e.substring(o,i)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function s(t,e){if(!t||!e||t.charAt(t.length-1)!=e.charAt(e.length-1))return 0;for(var n=0,r=Math.min(t.length,e.length),i=r,o=0;n<i;)t.substring(t.length-i,t.length-o)==e.substring(e.length-i,e.length-o)?(n=i,o=n):r=i,i=Math.floor((r-n)/2+n);return i}function u(t,e){function n(t,e,n){for(var r,i,o,u,c=t.substring(n,n+Math.floor(t.length/4)),l=-1,f="";-1!=(l=e.indexOf(c,l+1));){var d=a(t.substring(n),e.substring(l)),h=s(t.substring(0,n),e.substring(0,l));f.length<h+d&&(f=e.substring(l-h,l)+e.substring(l,l+d),r=t.substring(0,n-h),i=t.substring(n+d),o=e.substring(0,l-h),u=e.substring(l+d))}return 2*f.length>=t.length?[r,i,o,u,f]:null}var r=t.length>e.length?t:e,i=t.length>e.length?e:t;if(r.length<4||2*i.length<r.length)return null;var o,u=n(r,i,Math.ceil(r.length/4)),c=n(r,i,Math.ceil(r.length/2));if(!u&&!c)return null;o=c?u&&u[4].length>c[4].length?u:c:u;var l,f,d,h;return t.length>e.length?(l=o[0],f=o[1],d=o[2],h=o[3]):(d=o[0],h=o[1],l=o[2],f=o[3]),[l,f,d,h,o[4]]}function c(t){t.push([y,""]);for(var e,n=0,r=0,i=0,o="",u="";n<t.length;)switch(t[n][0]){case v:i++,u+=t[n][1],n++;break;case p:r++,o+=t[n][1],n++;break;case y:r+i>1?(0!==r&&0!==i&&(e=a(u,o),0!==e&&(n-r-i>0&&t[n-r-i-1][0]==y?t[n-r-i-1][1]+=u.substring(0,e):(t.splice(0,0,[y,u.substring(0,e)]),n++),u=u.substring(e),o=o.substring(e)),0!==(e=s(u,o))&&(t[n][1]=u.substring(u.length-e)+t[n][1],u=u.substring(0,u.length-e),o=o.substring(0,o.length-e))),0===r?t.splice(n-i,r+i,[v,u]):0===i?t.splice(n-r,r+i,[p,o]):t.splice(n-r-i,r+i,[p,o],[v,u]),n=n-r-i+(r?1:0)+(i?1:0)+1):0!==n&&t[n-1][0]==y?(t[n-1][1]+=t[n][1],t.splice(n,1)):n++,i=0,r=0,o="",u=""}""===t[t.length-1][1]&&t.pop();var l=!1;for(n=1;n<t.length-1;)t[n-1][0]==y&&t[n+1][0]==y&&(t[n][1].substring(t[n][1].length-t[n-1][1].length)==t[n-1][1]?(t[n][1]=t[n-1][1]+t[n][1].substring(0,t[n][1].length-t[n-1][1].length),t[n+1][1]=t[n-1][1]+t[n+1][1],t.splice(n-1,1),l=!0):t[n][1].substring(0,t[n+1][1].length)==t[n+1][1]&&(t[n-1][1]+=t[n+1][1],t[n][1]=t[n][1].substring(t[n+1][1].length)+t[n+1][1],t.splice(n+1,1),l=!0)),n++;l&&c(t)}function l(t,e){if(0===e)return[y,t];for(var n=0,r=0;r<t.length;r++){var i=t[r];if(i[0]===p||i[0]===y){var o=n+i[1].length;if(e===o)return[r+1,t];if(e<o){t=t.slice();var a=e-n,s=[i[0],i[1].slice(0,a)],u=[i[0],i[1].slice(a)];return t.splice(r,1,s,u),[r+1,t]}n=o}}throw new Error("cursor_pos is out of bounds!")}function f(t,e){var n=l(t,e),r=n[1],i=n[0],o=r[i],a=r[i+1];if(null==o)return t;if(o[0]!==y)return t;if(null!=a&&o[1]+a[1]===a[1]+o[1])return r.splice(i,2,a,o),h(r,i,2);if(null!=a&&0===a[1].indexOf(o[1])){r.splice(i,2,[a[0],o[1]],[0,o[1]]);var s=a[1].slice(o[1].length);return s.length>0&&r.splice(i+2,0,[a[0],s]),h(r,i,3)}return t}function d(t){for(var e=!1,n=function(t){return t.charCodeAt(0)>=56320&&t.charCodeAt(0)<=57343},r=2;r<t.length;r+=1)t[r-2][0]===y&&function(t){return t.charCodeAt(t.length-1)>=55296&&t.charCodeAt(t.length-1)<=56319}(t[r-2][1])&&t[r-1][0]===p&&n(t[r-1][1])&&t[r][0]===v&&n(t[r][1])&&(e=!0,t[r-1][1]=t[r-2][1].slice(-1)+t[r-1][1],t[r][1]=t[r-2][1].slice(-1)+t[r][1],t[r-2][1]=t[r-2][1].slice(0,-1));if(!e)return t;for(var i=[],r=0;r<t.length;r+=1)t[r][1].length>0&&i.push(t[r]);return i}function h(t,e,n){for(var r=e+n-1;r>=0&&r>=e-1;r--)if(r+1<t.length){var i=t[r],o=t[r+1];i[0]===o[1]&&t.splice(r,2,[i[0],i[1]+o[1]])}return t}var p=-1,v=1,y=0,m=n;m.INSERT=v,m.DELETE=p,m.EQUAL=y,t.exports=m},function(t,e){function n(t){var e=[];for(var n in t)e.push(n);return e}e=t.exports="function"==typeof Object.keys?Object.keys:n,e.shim=n},function(t,e){function n(t){return"[object Arguments]"==Object.prototype.toString.call(t)}function r(t){return t&&"object"==typeof t&&"number"==typeof t.length&&Object.prototype.hasOwnProperty.call(t,"callee")&&!Object.prototype.propertyIsEnumerable.call(t,"callee")||!1}var i="[object Arguments]"==function(){return Object.prototype.toString.call(arguments)}();e=t.exports=i?n:r,e.supported=n,e.unsupported=r},function(t,e){"use strict";function n(){}function r(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function i(){this._events=new n,this._eventsCount=0}var o=Object.prototype.hasOwnProperty,a="~";Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(a=!1)),i.prototype.eventNames=function(){var t,e,n=[];if(0===this._eventsCount)return n;for(e in t=this._events)o.call(t,e)&&n.push(a?e.slice(1):e);return Object.getOwnPropertySymbols?n.concat(Object.getOwnPropertySymbols(t)):n},i.prototype.listeners=function(t,e){var n=a?a+t:t,r=this._events[n];if(e)return!!r;if(!r)return[];if(r.fn)return[r.fn];for(var i=0,o=r.length,s=new Array(o);i<o;i++)s[i]=r[i].fn;return s},i.prototype.emit=function(t,e,n,r,i,o){var s=a?a+t:t;if(!this._events[s])return!1;var u,c,l=this._events[s],f=arguments.length;if(l.fn){switch(l.once&&this.removeListener(t,l.fn,void 0,!0),f){case 1:return l.fn.call(l.context),!0;case 2:return l.fn.call(l.context,e),!0;case 3:return l.fn.call(l.context,e,n),!0;case 4:return l.fn.call(l.context,e,n,r),!0;case 5:return l.fn.call(l.context,e,n,r,i),!0;case 6:return l.fn.call(l.context,e,n,r,i,o),!0}for(c=1,u=new Array(f-1);c<f;c++)u[c-1]=arguments[c];l.fn.apply(l.context,u)}else{var d,h=l.length;for(c=0;c<h;c++)switch(l[c].once&&this.removeListener(t,l[c].fn,void 0,!0),f){case 1:l[c].fn.call(l[c].context);break;case 2:l[c].fn.call(l[c].context,e);break;case 3:l[c].fn.call(l[c].context,e,n);break;case 4:l[c].fn.call(l[c].context,e,n,r);break;default:if(!u)for(d=1,u=new Array(f-1);d<f;d++)u[d-1]=arguments[d];l[c].fn.apply(l[c].context,u)}}return!0},i.prototype.on=function(t,e,n){var i=new r(e,n||this),o=a?a+t:t;return this._events[o]?this._events[o].fn?this._events[o]=[this._events[o],i]:this._events[o].push(i):(this._events[o]=i,this._eventsCount++),this},i.prototype.once=function(t,e,n){var i=new r(e,n||this,!0),o=a?a+t:t;return this._events[o]?this._events[o].fn?this._events[o]=[this._events[o],i]:this._events[o].push(i):(this._events[o]=i,this._eventsCount++),this},i.prototype.removeListener=function(t,e,r,i){var o=a?a+t:t;if(!this._events[o])return this;if(!e)return 0==--this._eventsCount?this._events=new n:delete this._events[o],this;var s=this._events[o];if(s.fn)s.fn!==e||i&&!s.once||r&&s.context!==r||(0==--this._eventsCount?this._events=new n:delete this._events[o]);else{for(var u=0,c=[],l=s.length;u<l;u++)(s[u].fn!==e||i&&!s[u].once||r&&s[u].context!==r)&&c.push(s[u]);c.length?this._events[o]=1===c.length?c[0]:c:0==--this._eventsCount?this._events=new n:delete this._events[o]}return this},i.prototype.removeAllListeners=function(t){var e;return t?(e=a?a+t:t,this._events[e]&&(0==--this._eventsCount?this._events=new n:delete this._events[e])):(this._events=new n,this._eventsCount=0),this},i.prototype.off=i.prototype.removeListener,i.prototype.addListener=i.prototype.on,i.prototype.setMaxListeners=function(){return this},i.prefixed=a,i.EventEmitter=i,void 0!==t&&(t.exports=i)},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function u(t,e,n){return"object"===(void 0===e?"undefined":O(e))?Object.keys(e).reduce(function(t,n){return u(t,n,e[n])},t):t.reduce(function(t,r){return r.attributes&&r.attributes[e]?t.push(r):t.insert(r.insert,(0,j.default)({},i({},e,n),r.attributes))},new A.default)}function c(t){if(t.nodeType!==Node.ELEMENT_NODE)return{};return t["__ql-computed-style"]||(t["__ql-computed-style"]=window.getComputedStyle(t))}function l(t,e){for(var n="",r=t.ops.length-1;r>=0&&n.length<e.length;--r){var i=t.ops[r];if("string"!=typeof i.insert)break;n=i.insert+n}return n.slice(-1*e.length)===e}function f(t){return 0!==t.childNodes.length&&["block","list-item"].indexOf(c(t).display)>-1}function d(t,e,n){return t.nodeType===t.TEXT_NODE?n.reduce(function(e,n){return n(t,e)},new A.default):t.nodeType===t.ELEMENT_NODE?[].reduce.call(t.childNodes||[],function(r,i){var o=d(i,e,n);return i.nodeType===t.ELEMENT_NODE&&(o=e.reduce(function(t,e){return e(i,t)},o),o=(i[Q]||[]).reduce(function(t,e){return e(i,t)},o)),r.concat(o)},new A.default):new A.default}function h(t,e,n){return u(n,t,!0)}function p(t,e){var n=N.default.Attributor.Attribute.keys(t),r=N.default.Attributor.Class.keys(t),i=N.default.Attributor.Style.keys(t),o={};return n.concat(r).concat(i).forEach(function(e){var n=N.default.query(e,N.default.Scope.ATTRIBUTE);null!=n&&(o[n.attrName]=n.value(t),o[n.attrName])||(n=$[e],null==n||n.attrName!==e&&n.keyName!==e||(o[n.attrName]=n.value(t)||void 0),null==(n=Z[e])||n.attrName!==e&&n.keyName!==e||(n=Z[e],o[n.attrName]=n.value(t)||void 0))}),Object.keys(o).length>0&&(e=u(e,o)),e}function v(t,e){var n=N.default.query(t);if(null==n)return e;if(n.prototype instanceof N.default.Embed){var r={},i=n.value(t);null!=i&&(r[n.blotName]=i,e=(new A.default).insert(r,n.formats(t)))}else"function"==typeof n.formats&&(e=u(e,n.blotName,n.formats(t)));return e}function y(t,e){return l(e,"\n")||e.insert("\n"),e}function m(){return new A.default}function b(t,e){var n=N.default.query(t);if(null==n||"list-item"!==n.blotName||!l(e,"\n"))return e;for(var r=-1,i=t.parentNode;!i.classList.contains("ql-clipboard");)"list"===(N.default.query(i)||{}).blotName&&(r+=1),i=i.parentNode;return r<=0?e:e.compose((new A.default).retain(e.length()-1).retain(1,{indent:r}))}function g(t,e){return l(e,"\n")||(f(t)||e.length()>0&&t.nextSibling&&f(t.nextSibling))&&e.insert("\n"),e}function w(t,e){if(f(t)&&null!=t.nextElementSibling&&!l(e,"\n\n")){var n=t.offsetHeight+parseFloat(c(t).marginTop)+parseFloat(c(t).marginBottom);t.nextElementSibling.offsetTop>t.offsetTop+1.5*n&&e.insert("\n")}return e}function _(t,e){var n={},r=t.style||{};return r.fontStyle&&"italic"===c(t).fontStyle&&(n.italic=!0),r.fontWeight&&(c(t).fontWeight.startsWith("bold")||parseInt(c(t).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(e=u(e,n)),parseFloat(r.textIndent||0)>0&&(e=(new A.default).insert("\t").concat(e)),e}function k(t,e){var n=t.data;if("O:P"===t.parentNode.tagName)return e.insert(n.trim());if(0===n.trim().length&&t.parentNode.classList.contains("ql-clipboard"))return e;if(!c(t.parentNode).whiteSpace.startsWith("pre")){var r=function(t,e){return e=e.replace(/[^\u00a0]/g,""),e.length<1&&t?" ":e};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,r.bind(r,!0)),(null==t.previousSibling&&f(t.parentNode)||null!=t.previousSibling&&f(t.previousSibling))&&(n=n.replace(/^\s+/,r.bind(r,!1))),(null==t.nextSibling&&f(t.parentNode)||null!=t.nextSibling&&f(t.nextSibling))&&(n=n.replace(/\s+$/,r.bind(r,!1)))}return e.insert(n)}Object.defineProperty(e,"__esModule",{value:!0}),e.matchText=e.matchSpacing=e.matchNewline=e.matchBlot=e.matchAttributor=e.default=void 0;var O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},E=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),x=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),C=n(3),j=r(C),S=n(2),A=r(S),T=n(0),N=r(T),P=n(5),L=r(P),I=n(10),D=r(I),q=n(9),R=r(q),M=n(36),B=n(37),F=n(13),z=r(F),U=n(25),H=n(38),W=n(39),K=n(40),V=(0,D.default)("quill:clipboard"),Q="__ql-matcher",Y=[[Node.TEXT_NODE,k],[Node.TEXT_NODE,g],["br",y],[Node.ELEMENT_NODE,g],[Node.ELEMENT_NODE,v],[Node.ELEMENT_NODE,w],[Node.ELEMENT_NODE,p],[Node.ELEMENT_NODE,_],["li",b],["b",h.bind(h,"bold")],["i",h.bind(h,"italic")],["style",m]],$=[M.AlignAttribute,H.DirectionAttribute].reduce(function(t,e){return t[e.keyName]=e,t},{}),Z=[M.AlignStyle,B.BackgroundStyle,U.ColorStyle,H.DirectionStyle,W.FontStyle,K.SizeStyle].reduce(function(t,e){return t[e.keyName]=e,t},{}),G=function(t){function e(t,n){o(this,e);var r=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.quill.root.addEventListener("paste",r.onPaste.bind(r)),r.container=r.quill.addContainer("ql-clipboard"),r.container.setAttribute("contenteditable",!0),r.container.setAttribute("tabindex",-1),r.matchers=[],Y.concat(r.options.matchers).forEach(function(t){var e=E(t,2),i=e[0],o=e[1];(n.matchVisual||o!==w)&&r.addMatcher(i,o)}),r}return s(e,t),x(e,[{key:"addMatcher",value:function(t,e){this.matchers.push([t,e])}},{key:"convert",value:function(t){if("string"==typeof t)return this.container.innerHTML=t.replace(/\>\r?\n +\</g,"><"),this.convert();var e=this.quill.getFormat(this.quill.selection.savedRange.index);if(e[z.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new A.default).insert(n,i({},z.default.blotName,e[z.default.blotName]))}var r=this.prepareMatching(),o=E(r,2),a=o[0],s=o[1],u=d(this.container,a,s);return l(u,"\n")&&null==u.ops[u.ops.length-1].attributes&&(u=u.compose((new A.default).retain(u.length()-1).delete(1))),V.log("convert",this.container.innerHTML,u),this.container.innerHTML="",u}},{key:"dangerouslyPasteHTML",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:L.default.sources.API;if("string"==typeof t)this.quill.setContents(this.convert(t),e),this.quill.setSelection(0,L.default.sources.SILENT);else{var r=this.convert(e);this.quill.updateContents((new A.default).retain(t).concat(r),n),this.quill.setSelection(t+r.length(),L.default.sources.SILENT)}}},{key:"onPaste",value:function(t){var e=this;if(!t.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),r=(new A.default).retain(n.index),i=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(L.default.sources.SILENT),setTimeout(function(){r=r.concat(e.convert()).delete(n.length),e.quill.updateContents(r,L.default.sources.USER),e.quill.setSelection(r.length()-n.length,L.default.sources.SILENT),e.quill.scrollingContainer.scrollTop=i,e.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var t=this,e=[],n=[];return this.matchers.forEach(function(r){var i=E(r,2),o=i[0],a=i[1];switch(o){case Node.TEXT_NODE:n.push(a);break;case Node.ELEMENT_NODE:e.push(a);break;default:[].forEach.call(t.container.querySelectorAll(o),function(t){t[Q]=t[Q]||[],t[Q].push(a)})}}),[e,n]}}]),e}(R.default);G.DEFAULTS={matchers:[],matchVisual:!0},e.default=G,e.matchAttributor=p,e.matchBlot=v,e.matchNewline=g,e.matchSpacing=w,e.matchText=k},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(6),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"optimize",value:function(t){s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return s(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),e}(c.default);l.blotName="bold",l.tagName=["STRONG","B"],e.default=l},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function u(t,e,n){var r=document.createElement("button");r.setAttribute("type","button"),r.classList.add("ql-"+e),null!=n&&(r.value=n),t.appendChild(r)}function c(t,e){Array.isArray(e[0])||(e=[e]),e.forEach(function(e){var n=document.createElement("span");n.classList.add("ql-formats"),e.forEach(function(t){if("string"==typeof t)u(n,t);else{var e=Object.keys(t)[0],r=t[e];Array.isArray(r)?l(n,e,r):u(n,e,r)}}),t.appendChild(n)})}function l(t,e,n){var r=document.createElement("select");r.classList.add("ql-"+e),n.forEach(function(t){var e=document.createElement("option");!1!==t?e.setAttribute("value",t):e.setAttribute("selected","selected"),r.appendChild(e)}),t.appendChild(r)}Object.defineProperty(e,"__esModule",{value:!0}),e.addControls=e.default=void 0;var f=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),h=n(2),p=r(h),v=n(0),y=r(v),m=n(5),b=r(m),g=n(10),w=r(g),_=n(9),k=r(_),O=(0,w.default)("quill:toolbar"),E=function(t){function e(t,n){o(this,e);var r=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));if(Array.isArray(r.options.container)){var i=document.createElement("div");c(i,r.options.container),t.container.parentNode.insertBefore(i,t.container),r.container=i}else"string"==typeof r.options.container?r.container=document.querySelector(r.options.container):r.container=r.options.container;if(!(r.container instanceof HTMLElement)){var s;return s=O.error("Container required for toolbar",r.options),a(r,s)}return r.container.classList.add("ql-toolbar"),r.controls=[],r.handlers={},Object.keys(r.options.handlers).forEach(function(t){r.addHandler(t,r.options.handlers[t])}),[].forEach.call(r.container.querySelectorAll("button, select"),function(t){r.attach(t)}),r.quill.on(b.default.events.EDITOR_CHANGE,function(t,e){t===b.default.events.SELECTION_CHANGE&&r.update(e)}),r.quill.on(b.default.events.SCROLL_OPTIMIZE,function(){var t=r.quill.selection.getRange(),e=f(t,1),n=e[0];r.update(n)}),r}return s(e,t),d(e,[{key:"addHandler",value:function(t,e){this.handlers[t]=e}},{key:"attach",value:function(t){var e=this,n=[].find.call(t.classList,function(t){return 0===t.indexOf("ql-")});if(n){if(n=n.slice("ql-".length),"BUTTON"===t.tagName&&t.setAttribute("type","button"),null==this.handlers[n]){if(null!=this.quill.scroll.whitelist&&null==this.quill.scroll.whitelist[n])return void O.warn("ignoring attaching to disabled format",n,t);if(null==y.default.query(n))return void O.warn("ignoring attaching to nonexistent format",n,t)}var r="SELECT"===t.tagName?"change":"click";t.addEventListener(r,function(r){var o=void 0;if("SELECT"===t.tagName){if(t.selectedIndex<0)return;var a=t.options[t.selectedIndex];o=!a.hasAttribute("selected")&&(a.value||!1)}else o=!t.classList.contains("ql-active")&&(t.value||!t.hasAttribute("value")),r.preventDefault();e.quill.focus();var s=e.quill.selection.getRange(),u=f(s,1),c=u[0];if(null!=e.handlers[n])e.handlers[n].call(e,o);else if(y.default.query(n).prototype instanceof y.default.Embed){if(!(o=prompt("Enter "+n)))return;e.quill.updateContents((new p.default).retain(c.index).delete(c.length).insert(i({},n,o)),b.default.sources.USER)}else e.quill.format(n,o,b.default.sources.USER);e.update(c)}),this.controls.push([n,t])}}},{key:"update",value:function(t){var e=null==t?{}:this.quill.getFormat(t);this.controls.forEach(function(n){var r=f(n,2),i=r[0],o=r[1];if("SELECT"===o.tagName){var a=void 0;if(null==t)a=null;else if(null==e[i])a=o.querySelector("option[selected]");else if(!Array.isArray(e[i])){var s=e[i];"string"==typeof s&&(s=s.replace(/\"/g,'\\"')),a=o.querySelector('option[value="'+s+'"]')}null==a?(o.value="",o.selectedIndex=-1):a.selected=!0}else if(null==t)o.classList.remove("ql-active");else if(o.hasAttribute("value")){var u=e[i]===o.getAttribute("value")||null!=e[i]&&e[i].toString()===o.getAttribute("value")||null==e[i]&&!o.getAttribute("value");o.classList.toggle("ql-active",u)}else o.classList.toggle("ql-active",null!=e[i])})}}]),e}(k.default);E.DEFAULTS={},E.DEFAULTS={container:null,handlers:{clean:function(){var t=this,e=this.quill.getSelection();if(null!=e)if(0==e.length){var n=this.quill.getFormat();Object.keys(n).forEach(function(e){null!=y.default.query(e,y.default.Scope.INLINE)&&t.quill.format(e,!1)})}else this.quill.removeFormat(e,b.default.sources.USER)},direction:function(t){var e=this.quill.getFormat().align;"rtl"===t&&null==e?this.quill.format("align","right",b.default.sources.USER):t||"right"!==e||this.quill.format("align",!1,b.default.sources.USER),this.quill.format("direction",t,b.default.sources.USER)},indent:function(t){var e=this.quill.getSelection(),n=this.quill.getFormat(e),r=parseInt(n.indent||0);if("+1"===t||"-1"===t){var i="+1"===t?1:-1;"rtl"===n.direction&&(i*=-1),this.quill.format("indent",r+i,b.default.sources.USER)}},link:function(t){!0===t&&(t=prompt("Enter link URL:")),this.quill.format("link",t,b.default.sources.USER)},list:function(t){var e=this.quill.getSelection(),n=this.quill.getFormat(e);"check"===t?"checked"===n.list||"unchecked"===n.list?this.quill.format("list",!1,b.default.sources.USER):this.quill.format("list","unchecked",b.default.sources.USER):this.quill.format("list",t,b.default.sources.USER)}}},e.default=E,e.addControls=c},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(27),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(t,n){r(this,e);var o=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return o.label.innerHTML=n,o.container.classList.add("ql-color-picker"),[].slice.call(o.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(t){t.classList.add("ql-primary")}),o}return o(e,t),a(e,[{key:"buildItem",value:function(t){var n=s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"buildItem",this).call(this,t);return n.style.backgroundColor=t.getAttribute("value")||"",n}},{key:"selectItem",value:function(t,n){s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"selectItem",this).call(this,t,n);var r=this.label.querySelector(".ql-color-label"),i=t?t.getAttribute("data-value")||"":"";r&&("line"===r.tagName?r.style.stroke=i:r.style.fill=i)}}]),e}(c.default);e.default=l},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(27),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(t,n){r(this,e);var o=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return o.container.classList.add("ql-icon-picker"),[].forEach.call(o.container.querySelectorAll(".ql-picker-item"),function(t){t.innerHTML=n[t.getAttribute("data-value")||""]}),o.defaultItem=o.container.querySelector(".ql-selected"),o.selectItem(o.defaultItem),o}return o(e,t),a(e,[{key:"selectItem",value:function(t,n){s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"selectItem",this).call(this,t,n),t=t||this.defaultItem,this.label.innerHTML=t.innerHTML}}]),e}(c.default);e.default=l},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e,n){var i=this;r(this,t),this.quill=e,this.boundsContainer=n||document.body,this.root=e.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){i.root.style.marginTop=-1*i.quill.root.scrollTop+"px"}),this.hide()}return i(t,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(t){var e=t.left+t.width/2-this.root.offsetWidth/2,n=t.bottom+this.quill.root.scrollTop;this.root.style.left=e+"px",this.root.style.top=n+"px",this.root.classList.remove("ql-flip");var r=this.boundsContainer.getBoundingClientRect(),i=this.root.getBoundingClientRect(),o=0;if(i.right>r.right&&(o=r.right-i.right,this.root.style.left=e+o+"px"),i.left<r.left&&(o=r.left-i.left,this.root.style.left=e+o+"px"),i.bottom>r.bottom){var a=i.bottom-i.top,s=t.bottom-t.top+a;this.root.style.top=n-s+"px",this.root.classList.add("ql-flip")}return o}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),t}();e.default=o},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),l=n(3),f=r(l),d=n(8),h=r(d),p=n(43),v=r(p),y=n(26),m=r(y),b=n(15),g=n(41),w=r(g),_=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],k=function(t){function e(t,n){i(this,e),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=_);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.quill.container.classList.add("ql-snow"),r}return a(e,t),c(e,[{key:"extendToolbar",value:function(t){t.container.classList.add("ql-snow"),this.buildButtons([].slice.call(t.container.querySelectorAll("button")),w.default),this.buildPickers([].slice.call(t.container.querySelectorAll("select")),w.default),this.tooltip=new O(this.quill,this.options.bounds),t.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(e,n){t.handlers.link.call(t,!n.format.link)})}}]),e}(v.default);k.DEFAULTS=(0,f.default)(!0,{},v.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(t){if(t){var e=this.quill.getSelection();if(null==e||0==e.length)return;var n=this.quill.getText(e);/^\S+@\S+\.\S+$/.test(n)&&0!==n.indexOf("mailto:")&&(n="mailto:"+n);this.quill.theme.tooltip.edit("link",n)}else this.quill.format("link",!1)}}}}});var O=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.preview=r.root.querySelector("a.ql-preview"),r}return a(e,t),c(e,[{key:"listen",value:function(){var t=this;u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(e){t.root.classList.contains("ql-editing")?t.save():t.edit("link",t.preview.textContent),e.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(e){if(null!=t.linkRange){var n=t.linkRange;t.restoreFocus(),t.quill.formatText(n,"link",!1,h.default.sources.USER),delete t.linkRange}e.preventDefault(),t.hide()}),this.quill.on(h.default.events.SELECTION_CHANGE,function(e,n,r){if(null!=e){if(0===e.length&&r===h.default.sources.USER){var i=t.quill.scroll.descendant(m.default,e.index),o=s(i,2),a=o[0],u=o[1];if(null!=a){t.linkRange=new b.Range(e.index-u,a.length());var c=m.default.formats(a.domNode);return t.preview.textContent=c,t.preview.setAttribute("href",c),t.show(),void t.position(t.quill.getBounds(t.linkRange))}}else delete t.linkRange;t.hide()}})}},{key:"show",value:function(){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),e}(p.BaseTooltip);O.TEMPLATE=['<a class="ql-preview" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),e.default=k},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var i=n(28),o=r(i),a=n(36),s=n(38),u=n(64),c=n(65),l=r(c),f=n(66),d=r(f),h=n(67),p=r(h),v=n(37),y=n(25),m=n(39),b=n(40),g=n(56),w=r(g),_=n(68),k=r(_),O=n(26),E=r(O),x=n(69),C=r(x),j=n(70),S=r(j),A=n(71),T=r(A),N=n(72),P=r(N),L=n(73),I=r(L),D=n(13),q=r(D),R=n(74),M=r(R),B=n(75),F=r(B),z=n(57),U=r(z),H=n(41),W=r(H),K=n(27),V=r(K),Q=n(59),Y=r(Q),$=n(60),Z=r($),G=n(61),X=r(G),J=n(108),tt=r(J),et=n(62),nt=r(et);o.default.register({"attributors/attribute/direction":s.DirectionAttribute,"attributors/class/align":a.AlignClass,"attributors/class/background":v.BackgroundClass,"attributors/class/color":y.ColorClass,"attributors/class/direction":s.DirectionClass,"attributors/class/font":m.FontClass,"attributors/class/size":b.SizeClass,"attributors/style/align":a.AlignStyle,"attributors/style/background":v.BackgroundStyle,"attributors/style/color":y.ColorStyle,"attributors/style/direction":s.DirectionStyle,"attributors/style/font":m.FontStyle,"attributors/style/size":b.SizeStyle},!0),o.default.register({"formats/align":a.AlignClass,"formats/direction":s.DirectionClass,"formats/indent":u.IndentClass,"formats/background":v.BackgroundStyle,"formats/color":y.ColorStyle,"formats/font":m.FontClass,"formats/size":b.SizeClass,"formats/blockquote":l.default,"formats/code-block":q.default,"formats/header":d.default,"formats/list":p.default,"formats/bold":w.default,"formats/code":D.Code,"formats/italic":k.default,"formats/link":E.default,"formats/script":C.default,"formats/strike":S.default,"formats/underline":T.default,"formats/image":P.default,"formats/video":I.default,"formats/list/item":h.ListItem,"modules/formula":M.default,"modules/syntax":F.default,"modules/toolbar":U.default,"themes/bubble":tt.default,"themes/snow":nt.default,"ui/icons":W.default,"ui/picker":V.default,"ui/icon-picker":Z.default,"ui/color-picker":Y.default,"ui/tooltip":X.default},!0),e.default=o.default},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.IndentClass=void 0;var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(0),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"add",value:function(t,n){if("+1"===n||"-1"===n){var r=this.value(t)||0;n="+1"===n?r+1:r-1}return 0===n?(this.remove(t),!0):s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"add",this).call(this,t,n)}},{key:"canAdd",value:function(t,n){return s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"canAdd",this).call(this,t,n)||s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"canAdd",this).call(this,t,parseInt(n))}},{key:"value",value:function(t){return parseInt(s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"value",this).call(this,t))||void 0}}]),e}(c.default.Attributor.Class),f=new l("indent","ql-indent",{scope:c.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});e.IndentClass=f},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(4),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),e}(s.default);u.blotName="blockquote",u.tagName="blockquote",e.default=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=n(4),u=function(t){return t&&t.__esModule?t:{default:t}}(s),c=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,null,[{key:"formats",value:function(t){return this.tagName.indexOf(t.tagName)+1}}]),e}(u.default);c.blotName="header",c.tagName=["H1","H2","H3","H4","H5","H6"],e.default=c},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.ListItem=void 0;var u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},l=n(0),f=r(l),d=n(4),h=r(d),p=n(24),v=r(p),y=function(t){function e(){return o(this,e),a(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return s(e,t),u(e,[{key:"format",value:function(t,n){t!==m.blotName||n?c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n):this.replaceWith(f.default.create(this.statics.scope))}},{key:"remove",value:function(){null==this.prev&&null==this.next?this.parent.remove():c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(t,n){return this.parent.isolate(this.offset(this.parent),this.length()),t===this.parent.statics.blotName?(this.parent.replaceWith(t,n),this):(this.parent.unwrap(),c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replaceWith",this).call(this,t,n))}}],[{key:"formats",value:function(t){return t.tagName===this.tagName?void 0:c(e.__proto__||Object.getPrototypeOf(e),"formats",this).call(this,t)}}]),e}(h.default);y.blotName="list-item",y.tagName="LI";var m=function(t){function e(t){o(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t)),r=function(e){if(e.target.parentNode===t){var r=n.statics.formats(t),i=f.default.find(e.target);"checked"===r?i.format("list","unchecked"):"unchecked"===r&&i.format("list","checked")}};return t.addEventListener("touchstart",r),t.addEventListener("mousedown",r),n}return s(e,t),u(e,null,[{key:"create",value:function(t){var n="ordered"===t?"OL":"UL",r=c(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,n);return"checked"!==t&&"unchecked"!==t||r.setAttribute("data-checked","checked"===t),r}},{key:"formats",value:function(t){return"OL"===t.tagName?"ordered":"UL"===t.tagName?t.hasAttribute("data-checked")?"true"===t.getAttribute("data-checked")?"checked":"unchecked":"bullet":void 0}}]),u(e,[{key:"format",value:function(t,e){this.children.length>0&&this.children.tail.format(t,e)}},{key:"formats",value:function(){return i({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(t,n){if(t instanceof y)c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n);else{var r=null==n?this.length():n.offset(this),i=this.split(r);i.parent.insertBefore(t,i)}}},{key:"optimize",value:function(t){c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){if(t.statics.blotName!==this.statics.blotName){var n=f.default.create(this.statics.defaultChild);t.moveChildren(n),this.appendChild(n)}c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t)}}]),e}(v.default);m.blotName="list",m.scope=f.default.Scope.BLOCK_BLOT,m.tagName=["OL","UL"],m.defaultChild="list-item",m.allowedChildren=[y],e.ListItem=y,e.default=m},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(56),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),e}(s.default);u.blotName="italic",u.tagName=["EM","I"],e.default=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(6),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,null,[{key:"create",value:function(t){return"super"===t?document.createElement("sup"):"sub"===t?document.createElement("sub"):s(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t)}},{key:"formats",value:function(t){return"SUB"===t.tagName?"sub":"SUP"===t.tagName?"super":void 0}}]),e}(c.default);l.blotName="script",l.tagName=["SUB","SUP"],e.default=l},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(6),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),e}(s.default);u.blotName="strike",u.tagName="S",e.default=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(6),s=function(t){return t&&t.__esModule?t:{default:t}}(a),u=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),e}(s.default);u.blotName="underline",u.tagName="U",e.default=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(0),c=function(t){return t&&t.__esModule?t:{default:t}}(u),l=n(26),f=["alt","height","width"],d=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"format",value:function(t,n){f.indexOf(t)>-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=s(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return"string"==typeof t&&n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"match",value:function(t){return/\.(jpe?g|gif|png)$/.test(t)||/^data:image\/.+;base64/.test(t)}},{key:"sanitize",value:function(t){return(0,l.sanitize)(t,["http","https","data"])?t:"//:0"}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(c.default.Embed);d.blotName="image",d.tagName="IMG",e.default=d},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=n(4),c=n(26),l=function(t){return t&&t.__esModule?t:{default:t}}(c),f=["height","width"],d=function(t){function e(){return r(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return o(e,t),a(e,[{key:"format",value:function(t,n){f.indexOf(t)>-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=s(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"sanitize",value:function(t){return l.default.sanitize(t)}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(u.BlockEmbed);d.blotName="video",d.className="ql-video",d.tagName="IFRAME",e.default=d},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.FormulaBlot=void 0;var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(35),l=r(c),f=n(5),d=r(f),h=n(9),p=r(h),v=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),s(e,null,[{key:"create",value:function(t){var n=u(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return"string"==typeof t&&(window.katex.render(t,n,{throwOnError:!1,errorColor:"#f00"}),n.setAttribute("data-value",t)),n}},{key:"value",value:function(t){return t.getAttribute("data-value")}}]),e}(l.default);v.blotName="formula",v.className="ql-formula",v.tagName="SPAN";var y=function(t){function e(){i(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));if(null==window.katex)throw new Error("Formula module requires KaTeX.");return t}return a(e,t),s(e,null,[{key:"register",value:function(){d.default.register(v,!0)}}]),e}(p.default);e.FormulaBlot=v,e.default=y},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.CodeToken=e.CodeBlock=void 0;var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},c=n(0),l=r(c),f=n(5),d=r(f),h=n(9),p=r(h),v=n(13),y=r(v),m=function(t){function e(){return i(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return a(e,t),s(e,[{key:"replaceWith",value:function(t){this.domNode.textContent=this.domNode.textContent,this.attach(),u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replaceWith",this).call(this,t)}},{key:"highlight",value:function(t){var e=this.domNode.textContent;this.cachedText!==e&&((e.trim().length>0||null==this.cachedText)&&(this.domNode.innerHTML=t(e),this.domNode.normalize(),this.attach()),this.cachedText=e)}}]),e}(y.default);m.className="ql-syntax";var b=new l.default.Attributor.Class("token","hljs",{scope:l.default.Scope.INLINE}),g=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));if("function"!=typeof r.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var a=null;return r.quill.on(d.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(a),a=setTimeout(function(){r.highlight(),a=null},r.options.interval)}),r.highlight(),r}return a(e,t),s(e,null,[{key:"register",value:function(){d.default.register(b,!0),d.default.register(m,!0)}}]),s(e,[{key:"highlight",value:function(){var t=this;if(!this.quill.selection.composing){this.quill.update(d.default.sources.USER);var e=this.quill.getSelection();this.quill.scroll.descendants(m).forEach(function(e){e.highlight(t.options.highlight)}),this.quill.update(d.default.sources.SILENT),null!=e&&this.quill.setSelection(e,d.default.sources.SILENT)}}}]),e}(p.default);g.DEFAULTS={highlight:function(){return null==window.hljs?null:function(t){return window.hljs.highlightAuto(t).value}}(),interval:1e3},e.CodeBlock=m,e.CodeToken=b,e.default=g},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(t,e){t.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(t,e){t.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(t,e){t.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(t,e){t.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(t,e){t.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BubbleTooltip=void 0;var s=function t(e,n,r){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,n);if(void 0===i){var o=Object.getPrototypeOf(e);return null===o?void 0:t(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)},u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(3),l=r(c),f=n(8),d=r(f),h=n(43),p=r(h),v=n(15),y=n(41),m=r(y),b=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],g=function(t){function e(t,n){i(this,e),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=b);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.quill.container.classList.add("ql-bubble"),r}return a(e,t),u(e,[{key:"extendToolbar",value:function(t){this.tooltip=new w(this.quill,this.options.bounds),this.tooltip.root.appendChild(t.container),this.buildButtons([].slice.call(t.container.querySelectorAll("button")),m.default),this.buildPickers([].slice.call(t.container.querySelectorAll("select")),m.default)}}]),e}(p.default);g.DEFAULTS=(0,l.default)(!0,{},p.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(t){t?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var w=function(t){function e(t,n){i(this,e);var r=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return r.quill.on(d.default.events.EDITOR_CHANGE,function(t,e,n,i){if(t===d.default.events.SELECTION_CHANGE)if(null!=e&&e.length>0&&i===d.default.sources.USER){r.show(),r.root.style.left="0px",r.root.style.width="",r.root.style.width=r.root.offsetWidth+"px";var o=r.quill.getLines(e.index,e.length);if(1===o.length)r.position(r.quill.getBounds(e));else{var a=o[o.length-1],s=r.quill.getIndex(a),u=Math.min(a.length()-1,e.index+e.length-s),c=r.quill.getBounds(new v.Range(s,u));r.position(c)}}else document.activeElement!==r.textbox&&r.quill.hasFocus()&&r.hide()}),r}return a(e,t),u(e,[{key:"listen",value:function(){var t=this;s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){t.root.classList.remove("ql-editing")}),this.quill.on(d.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!t.root.classList.contains("ql-hidden")){var e=t.quill.getSelection();null!=e&&t.position(t.quill.getBounds(e))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(t){var n=s(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"position",this).call(this,t),r=this.root.querySelector(".ql-tooltip-arrow");if(r.style.marginLeft="",0===n)return n;r.style.marginLeft=-1*n-r.offsetWidth/2+"px"}}]),e}(h.BaseTooltip);w.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),e.BubbleTooltip=w,e.default=g},function(t,e,n){t.exports=n(63)}]).default})}).call(e,n(327).Buffer)},,function(t,e,n){var r,i;/*!
15
21
  * jQuery JavaScript Library v1.11.1
16
22
  * http://jquery.com/
17
23
  *
@@ -24,7 +30,7 @@
24
30
  *
25
31
  * Date: 2014-05-01T17:42Z
26
32
  */
27
- !function(t,n){"object"==typeof e&&"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,function(n,o){function a(e){var t=e.length,n=se.type(e);return"function"!==n&&!se.isWindow(e)&&(!(1!==e.nodeType||!t)||("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e))}function s(e,t,n){if(se.isFunction(t))return se.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return se.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(ve.test(t))return se.filter(t,e,n);t=se.filter(t,e)}return se.grep(e,function(e){return se.inArray(e,t)>=0!==n})}function u(e,t){do{e=e[t]}while(e&&1!==e.nodeType);return e}function c(e){var t=Ce[e]={};return se.each(e.match(_e)||[],function(e,n){t[n]=!0}),t}function l(){ge.addEventListener?(ge.removeEventListener("DOMContentLoaded",f,!1),n.removeEventListener("load",f,!1)):(ge.detachEvent("onreadystatechange",f),n.detachEvent("onload",f))}function f(){(ge.addEventListener||"load"===event.type||"complete"===ge.readyState)&&(l(),se.ready())}function d(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(Te,"-$1").toLowerCase();if("string"==typeof(n=e.getAttribute(r))){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:Se.test(n)?se.parseJSON(n):n)}catch(e){}se.data(e,t,n)}else n=void 0}return n}function h(e){var t;for(t in e)if(("data"!==t||!se.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function p(e,t,n,r){if(se.acceptData(e)){var i,o,a=se.expando,s=e.nodeType,u=s?se.cache:e,c=s?e[a]:e[a]&&a;if(c&&u[c]&&(r||u[c].data)||void 0!==n||"string"!=typeof t)return c||(c=s?e[a]=X.pop()||se.guid++:a),u[c]||(u[c]=s?{}:{toJSON:se.noop}),"object"!=typeof t&&"function"!=typeof t||(r?u[c]=se.extend(u[c],t):u[c].data=se.extend(u[c].data,t)),o=u[c],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[se.camelCase(t)]=n),"string"==typeof t?null==(i=o[t])&&(i=o[se.camelCase(t)]):i=o,i}}function v(e,t,n){if(se.acceptData(e)){var r,i,o=e.nodeType,a=o?se.cache:e,s=o?e[se.expando]:se.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){se.isArray(t)?t=t.concat(se.map(t,se.camelCase)):t in r?t=[t]:(t=se.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!h(r):!se.isEmptyObject(r))return}(n||(delete a[s].data,h(a[s])))&&(o?se.cleanData([e],!0):ae.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function m(){return!0}function g(){return!1}function y(){try{return ge.activeElement}catch(e){}}function b(e){var t=Re.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function w(e,t){var n,r,i=0,o=typeof e.getElementsByTagName!==xe?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==xe?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||se.nodeName(r,t)?o.push(r):se.merge(o,w(r,t));return void 0===t||t&&se.nodeName(e,t)?se.merge([e],o):o}function _(e){Ne.test(e.type)&&(e.defaultChecked=e.checked)}function C(e,t){return se.nodeName(e,"table")&&se.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function k(e){return e.type=(null!==se.find.attr(e,"type"))+"/"+e.type,e}function E(e){var t=Ge.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function x(e,t){for(var n,r=0;null!=(n=e[r]);r++)se._data(n,"globalEval",!t||se._data(t[r],"globalEval"))}function S(e,t){if(1===t.nodeType&&se.hasData(e)){var n,r,i,o=se._data(e),a=se._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;r<i;r++)se.event.add(t,n,s[n][r])}a.data&&(a.data=se.extend({},a.data))}}function T(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!ae.noCloneEvent&&t[se.expando]){i=se._data(t);for(r in i.events)se.removeEvent(t,r,i.handle);t.removeAttribute(se.expando)}"script"===n&&t.text!==e.text?(k(t).text=e.text,E(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),ae.html5Clone&&e.innerHTML&&!se.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ne.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}}function A(e,t){var r,i=se(t.createElement(e)).appendTo(t.body),o=n.getDefaultComputedStyle&&(r=n.getDefaultComputedStyle(i[0]))?r.display:se.css(i[0],"display");return i.detach(),o}function j(e){var t=ge,n=tt[e];return n||(n=A(e,t),"none"!==n&&n||(et=(et||se("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement),t=(et[0].contentWindow||et[0].contentDocument).document,t.write(),t.close(),n=A(e,t),et.detach()),tt[e]=n),n}function O(e,t){return{get:function(){var n=e();if(null!=n)return n?void delete this.get:(this.get=t).apply(this,arguments)}}}function P(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=pt.length;i--;)if((t=pt[i]+n)in e)return t;return r}function N(e,t){for(var n,r,i,o=[],a=0,s=e.length;a<s;a++)r=e[a],r.style&&(o[a]=se._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&Oe(r)&&(o[a]=se._data(r,"olddisplay",j(r.nodeName)))):(i=Oe(r),(n&&"none"!==n||!i)&&se._data(r,"olddisplay",i?n:se.css(r,"display"))));for(a=0;a<s;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}function D(e,t,n){var r=lt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function M(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;o<4;o+=2)"margin"===n&&(a+=se.css(e,n+je[o],!0,i)),r?("content"===n&&(a-=se.css(e,"padding"+je[o],!0,i)),"margin"!==n&&(a-=se.css(e,"border"+je[o]+"Width",!0,i))):(a+=se.css(e,"padding"+je[o],!0,i),"padding"!==n&&(a+=se.css(e,"border"+je[o]+"Width",!0,i)));return a}function I(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=nt(e),a=ae.boxSizing&&"border-box"===se.css(e,"boxSizing",!1,o);if(i<=0||null==i){if(i=rt(e,t,o),(i<0||null==i)&&(i=e.style[t]),ot.test(i))return i;r=a&&(ae.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+M(e,t,n||(a?"border":"content"),r,o)+"px"}function L(e,t,n,r,i){return new L.prototype.init(e,t,n,r,i)}function F(){return setTimeout(function(){vt=void 0}),vt=se.now()}function R(e,t){var n,r={height:e},i=0;for(t=t?1:0;i<4;i+=2-t)n=je[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function B(e,t,n){for(var r,i=(_t[t]||[]).concat(_t["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function z(e,t,n){var r,i,o,a,s,u,c,l=this,f={},d=e.style,h=e.nodeType&&Oe(e),p=se._data(e,"fxshow");n.queue||(s=se._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,u=s.empty.fire,s.empty.fire=function(){s.unqueued||u()}),s.unqueued++,l.always(function(){l.always(function(){s.unqueued--,se.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],c=se.css(e,"display"),"inline"===("none"===c?se._data(e,"olddisplay")||j(e.nodeName):c)&&"none"===se.css(e,"float")&&(ae.inlineBlockNeedsLayout&&"inline"!==j(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",ae.shrinkWrapBlocks()||l.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],gt.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(h?"hide":"show")){if("show"!==i||!p||void 0===p[r])continue;h=!0}f[r]=p&&p[r]||se.style(e,r)}else c=void 0;if(se.isEmptyObject(f))"inline"===("none"===c?j(e.nodeName):c)&&(d.display=c);else{p?"hidden"in p&&(h=p.hidden):p=se._data(e,"fxshow",{}),o&&(p.hidden=!h),h?se(e).show():l.done(function(){se(e).hide()}),l.done(function(){var t;se._removeData(e,"fxshow");for(t in f)se.style(e,t,f[t])});for(r in f)a=B(h?p[r]:0,r,l),r in p||(p[r]=a.start,h&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function W(e,t){var n,r,i,o,a;for(n in e)if(r=se.camelCase(n),i=t[r],o=e[n],se.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=se.cssHooks[r])&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}function q(e,t,n){var r,i,o=0,a=wt.length,s=se.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var t=vt||F(),n=Math.max(0,c.startTime+c.duration-t),r=n/c.duration||0,o=1-r,a=0,u=c.tweens.length;a<u;a++)c.tweens[a].run(o);return s.notifyWith(e,[c,o,n]),o<1&&u?n:(s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:se.extend({},t),opts:se.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:vt||F(),duration:n.duration,tweens:[],createTween:function(t,n){var r=se.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(r),r},stop:function(t){var n=0,r=t?c.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)c.tweens[n].run(1);return t?s.resolveWith(e,[c,t]):s.rejectWith(e,[c,t]),this}}),l=c.props;for(W(l,c.opts.specialEasing);o<a;o++)if(r=wt[o].call(c,e,l,c.opts))return r;return se.map(l,B,c),se.isFunction(c.opts.start)&&c.opts.start.call(e,c),se.fx.timer(se.extend(u,{elem:e,anim:c,queue:c.opts.queue})),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always)}function H(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(_e)||[];if(se.isFunction(n))for(;r=o[i++];)"+"===r.charAt(0)?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function U(e,t,n,r){function i(s){var u;return o[s]=!0,se.each(e[s]||[],function(e,s){var c=s(t,n,r);return"string"!=typeof c||a||o[c]?a?!(u=c):void 0:(t.dataTypes.unshift(c),i(c),!1)}),u}var o={},a=e===Vt;return i(t.dataTypes[0])||!o["*"]&&i("*")}function V(e,t){var n,r,i=se.ajaxSettings.flatOptions||{};for(r in t)void 0!==t[r]&&((i[r]?e:n||(n={}))[r]=t[r]);return n&&se.extend(!0,e,n),e}function Q(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader("Content-Type"));if(i)for(a in s)if(s[a]&&s[a].test(i)){u.unshift(a);break}if(u[0]in n)o=u[0];else{for(a in n){if(!u[0]||e.converters[a+" "+u[0]]){o=a;break}r||(r=a)}o=o||r}if(o)return o!==u[0]&&u.unshift(o),n[o]}function K(e,t,n,r){var i,o,a,s,u,c={},l=e.dataTypes.slice();if(l[1])for(a in e.converters)c[a.toLowerCase()]=e.converters[a];for(o=l.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=l.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=c[u+" "+o]||c["* "+o]))for(i in c)if(s=i.split(" "),s[1]===o&&(a=c[u+" "+s[0]]||c["* "+s[0]])){!0===a?a=c[i]:!0!==c[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}function $(e,t,n,r){var i;if(se.isArray(t))se.each(t,function(t,i){n||$t.test(e)?r(e,i):$(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==se.type(t))r(e,t);else for(i in t)$(e+"["+i+"]",t[i],n,r)}function G(){try{return new n.XMLHttpRequest}catch(e){}}function Z(){try{return new n.ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}function Y(e){return se.isWindow(e)?e:9===e.nodeType&&(e.defaultView||e.parentWindow)}var X=[],J=X.slice,ee=X.concat,te=X.push,ne=X.indexOf,re={},ie=re.toString,oe=re.hasOwnProperty,ae={},se=function(e,t){return new se.fn.init(e,t)},ue=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,ce=/^-ms-/,le=/-([\da-z])/gi,fe=function(e,t){return t.toUpperCase()};se.fn=se.prototype={jquery:"1.11.1",constructor:se,selector:"",length:0,toArray:function(){return J.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:J.call(this)},pushStack:function(e){var t=se.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return se.each(this,e,t)},map:function(e){return this.pushStack(se.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(J.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:te,sort:X.sort,splice:X.splice},se.extend=se.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[s]||{},s++),"object"==typeof a||se.isFunction(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(i=arguments[s]))for(r in i)e=a[r],n=i[r],a!==n&&(c&&n&&(se.isPlainObject(n)||(t=se.isArray(n)))?(t?(t=!1,o=e&&se.isArray(e)?e:[]):o=e&&se.isPlainObject(e)?e:{},a[r]=se.extend(c,o,n)):void 0!==n&&(a[r]=n));return a},se.extend({expando:"jQuery"+("1.11.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===se.type(e)},isArray:Array.isArray||function(e){return"array"===se.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!se.isArray(e)&&e-parseFloat(e)>=0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},isPlainObject:function(e){var t;if(!e||"object"!==se.type(e)||e.nodeType||se.isWindow(e))return!1;try{if(e.constructor&&!oe.call(e,"constructor")&&!oe.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(e){return!1}if(ae.ownLast)for(t in e)return oe.call(e,t);for(t in e);return void 0===t||oe.call(e,t)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?re[ie.call(e)]||"object":typeof e},globalEval:function(e){e&&se.trim(e)&&(n.execScript||function(e){n.eval.call(n,e)})(e)},camelCase:function(e){return e.replace(ce,"ms-").replace(le,fe)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r=0,i=e.length,o=a(e);if(n){if(o)for(;r<i&&!1!==t.apply(e[r],n);r++);else for(r in e)if(!1===t.apply(e[r],n))break}else if(o)for(;r<i&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(ue,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(a(Object(e))?se.merge(n,"string"==typeof e?[e]:e):te.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(ne)return ne.call(t,e,n);for(r=t.length,n=n?n<0?Math.max(0,r+n):n:0;n<r;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;)e[i++]=t[r++];if(n!==n)for(;void 0!==t[r];)e[i++]=t[r++];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i=0,o=e.length,s=a(e),u=[];if(s)for(;i<o;i++)null!=(r=t(e[i],i,n))&&u.push(r);else for(i in e)null!=(r=t(e[i],i,n))&&u.push(r);return ee.apply([],u)},guid:1,proxy:function(e,t){var n,r,i;if("string"==typeof t&&(i=e[t],t=e,e=i),se.isFunction(e))return n=J.call(arguments,2),r=function(){return e.apply(t||this,n.concat(J.call(arguments)))},r.guid=e.guid=e.guid||se.guid++,r},now:function(){return+new Date},support:ae}),se.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){re["[object "+t+"]"]=t.toLowerCase()});var de=/*!
33
+ !function(e,n){"object"==typeof t&&"object"==typeof t.exports?t.exports=e.document?n(e,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return n(t)}:n(e)}("undefined"!=typeof window?window:this,function(n,o){function a(t){var e=t.length,n=st.type(t);return"function"!==n&&!st.isWindow(t)&&(!(1!==t.nodeType||!e)||("array"===n||0===e||"number"==typeof e&&e>0&&e-1 in t))}function s(t,e,n){if(st.isFunction(e))return st.grep(t,function(t,r){return!!e.call(t,r,t)!==n});if(e.nodeType)return st.grep(t,function(t){return t===e!==n});if("string"==typeof e){if(vt.test(e))return st.filter(e,t,n);e=st.filter(e,t)}return st.grep(t,function(t){return st.inArray(t,e)>=0!==n})}function u(t,e){do{t=t[e]}while(t&&1!==t.nodeType);return t}function c(t){var e=kt[t]={};return st.each(t.match(_t)||[],function(t,n){e[n]=!0}),e}function l(){mt.addEventListener?(mt.removeEventListener("DOMContentLoaded",f,!1),n.removeEventListener("load",f,!1)):(mt.detachEvent("onreadystatechange",f),n.detachEvent("onload",f))}function f(){(mt.addEventListener||"load"===event.type||"complete"===mt.readyState)&&(l(),st.ready())}function d(t,e,n){if(void 0===n&&1===t.nodeType){var r="data-"+e.replace(jt,"-$1").toLowerCase();if("string"==typeof(n=t.getAttribute(r))){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:Ct.test(n)?st.parseJSON(n):n)}catch(t){}st.data(t,e,n)}else n=void 0}return n}function h(t){var e;for(e in t)if(("data"!==e||!st.isEmptyObject(t[e]))&&"toJSON"!==e)return!1;return!0}function p(t,e,n,r){if(st.acceptData(t)){var i,o,a=st.expando,s=t.nodeType,u=s?st.cache:t,c=s?t[a]:t[a]&&a;if(c&&u[c]&&(r||u[c].data)||void 0!==n||"string"!=typeof e)return c||(c=s?t[a]=X.pop()||st.guid++:a),u[c]||(u[c]=s?{}:{toJSON:st.noop}),"object"!=typeof e&&"function"!=typeof e||(r?u[c]=st.extend(u[c],e):u[c].data=st.extend(u[c].data,e)),o=u[c],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[st.camelCase(e)]=n),"string"==typeof e?null==(i=o[e])&&(i=o[st.camelCase(e)]):i=o,i}}function v(t,e,n){if(st.acceptData(t)){var r,i,o=t.nodeType,a=o?st.cache:t,s=o?t[st.expando]:st.expando;if(a[s]){if(e&&(r=n?a[s]:a[s].data)){st.isArray(e)?e=e.concat(st.map(e,st.camelCase)):e in r?e=[e]:(e=st.camelCase(e),e=e in r?[e]:e.split(" ")),i=e.length;for(;i--;)delete r[e[i]];if(n?!h(r):!st.isEmptyObject(r))return}(n||(delete a[s].data,h(a[s])))&&(o?st.cleanData([t],!0):at.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function y(){return!0}function m(){return!1}function b(){try{return mt.activeElement}catch(t){}}function g(t){var e=Mt.split("|"),n=t.createDocumentFragment();if(n.createElement)for(;e.length;)n.createElement(e.pop());return n}function w(t,e){var n,r,i=0,o=typeof t.getElementsByTagName!==xt?t.getElementsByTagName(e||"*"):typeof t.querySelectorAll!==xt?t.querySelectorAll(e||"*"):void 0;if(!o)for(o=[],n=t.childNodes||t;null!=(r=n[i]);i++)!e||st.nodeName(r,e)?o.push(r):st.merge(o,w(r,e));return void 0===e||e&&st.nodeName(t,e)?st.merge([t],o):o}function _(t){Pt.test(t.type)&&(t.defaultChecked=t.checked)}function k(t,e){return st.nodeName(t,"table")&&st.nodeName(11!==e.nodeType?e:e.firstChild,"tr")?t.getElementsByTagName("tbody")[0]||t.appendChild(t.ownerDocument.createElement("tbody")):t}function O(t){return t.type=(null!==st.find.attr(t,"type"))+"/"+t.type,t}function E(t){var e=$t.exec(t.type);return e?t.type=e[1]:t.removeAttribute("type"),t}function x(t,e){for(var n,r=0;null!=(n=t[r]);r++)st._data(n,"globalEval",!e||st._data(e[r],"globalEval"))}function C(t,e){if(1===e.nodeType&&st.hasData(t)){var n,r,i,o=st._data(t),a=st._data(e,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;r<i;r++)st.event.add(e,n,s[n][r])}a.data&&(a.data=st.extend({},a.data))}}function j(t,e){var n,r,i;if(1===e.nodeType){if(n=e.nodeName.toLowerCase(),!at.noCloneEvent&&e[st.expando]){i=st._data(e);for(r in i.events)st.removeEvent(e,r,i.handle);e.removeAttribute(st.expando)}"script"===n&&e.text!==t.text?(O(e).text=t.text,E(e)):"object"===n?(e.parentNode&&(e.outerHTML=t.outerHTML),at.html5Clone&&t.innerHTML&&!st.trim(e.innerHTML)&&(e.innerHTML=t.innerHTML)):"input"===n&&Pt.test(t.type)?(e.defaultChecked=e.checked=t.checked,e.value!==t.value&&(e.value=t.value)):"option"===n?e.defaultSelected=e.selected=t.defaultSelected:"input"!==n&&"textarea"!==n||(e.defaultValue=t.defaultValue)}}function S(t,e){var r,i=st(e.createElement(t)).appendTo(e.body),o=n.getDefaultComputedStyle&&(r=n.getDefaultComputedStyle(i[0]))?r.display:st.css(i[0],"display");return i.detach(),o}function A(t){var e=mt,n=ee[t];return n||(n=S(t,e),"none"!==n&&n||(te=(te||st("<iframe frameborder='0' width='0' height='0'/>")).appendTo(e.documentElement),e=(te[0].contentWindow||te[0].contentDocument).document,e.write(),e.close(),n=S(t,e),te.detach()),ee[t]=n),n}function T(t,e){return{get:function(){var n=t();if(null!=n)return n?void delete this.get:(this.get=e).apply(this,arguments)}}}function N(t,e){if(e in t)return e;for(var n=e.charAt(0).toUpperCase()+e.slice(1),r=e,i=pe.length;i--;)if((e=pe[i]+n)in t)return e;return r}function P(t,e){for(var n,r,i,o=[],a=0,s=t.length;a<s;a++)r=t[a],r.style&&(o[a]=st._data(r,"olddisplay"),n=r.style.display,e?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&Tt(r)&&(o[a]=st._data(r,"olddisplay",A(r.nodeName)))):(i=Tt(r),(n&&"none"!==n||!i)&&st._data(r,"olddisplay",i?n:st.css(r,"display"))));for(a=0;a<s;a++)r=t[a],r.style&&(e&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=e?o[a]||"":"none"));return t}function L(t,e,n){var r=le.exec(e);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):e}function I(t,e,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===e?1:0,a=0;o<4;o+=2)"margin"===n&&(a+=st.css(t,n+At[o],!0,i)),r?("content"===n&&(a-=st.css(t,"padding"+At[o],!0,i)),"margin"!==n&&(a-=st.css(t,"border"+At[o]+"Width",!0,i))):(a+=st.css(t,"padding"+At[o],!0,i),"padding"!==n&&(a+=st.css(t,"border"+At[o]+"Width",!0,i)));return a}function D(t,e,n){var r=!0,i="width"===e?t.offsetWidth:t.offsetHeight,o=ne(t),a=at.boxSizing&&"border-box"===st.css(t,"boxSizing",!1,o);if(i<=0||null==i){if(i=re(t,e,o),(i<0||null==i)&&(i=t.style[e]),oe.test(i))return i;r=a&&(at.boxSizingReliable()||i===t.style[e]),i=parseFloat(i)||0}return i+I(t,e,n||(a?"border":"content"),r,o)+"px"}function q(t,e,n,r,i){return new q.prototype.init(t,e,n,r,i)}function R(){return setTimeout(function(){ve=void 0}),ve=st.now()}function M(t,e){var n,r={height:t},i=0;for(e=e?1:0;i<4;i+=2-e)n=At[i],r["margin"+n]=r["padding"+n]=t;return e&&(r.opacity=r.width=t),r}function B(t,e,n){for(var r,i=(_e[e]||[]).concat(_e["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,e,t))return r}function F(t,e,n){var r,i,o,a,s,u,c,l=this,f={},d=t.style,h=t.nodeType&&Tt(t),p=st._data(t,"fxshow");n.queue||(s=st._queueHooks(t,"fx"),null==s.unqueued&&(s.unqueued=0,u=s.empty.fire,s.empty.fire=function(){s.unqueued||u()}),s.unqueued++,l.always(function(){l.always(function(){s.unqueued--,st.queue(t,"fx").length||s.empty.fire()})})),1===t.nodeType&&("height"in e||"width"in e)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],c=st.css(t,"display"),"inline"===("none"===c?st._data(t,"olddisplay")||A(t.nodeName):c)&&"none"===st.css(t,"float")&&(at.inlineBlockNeedsLayout&&"inline"!==A(t.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",at.shrinkWrapBlocks()||l.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(r in e)if(i=e[r],me.exec(i)){if(delete e[r],o=o||"toggle"===i,i===(h?"hide":"show")){if("show"!==i||!p||void 0===p[r])continue;h=!0}f[r]=p&&p[r]||st.style(t,r)}else c=void 0;if(st.isEmptyObject(f))"inline"===("none"===c?A(t.nodeName):c)&&(d.display=c);else{p?"hidden"in p&&(h=p.hidden):p=st._data(t,"fxshow",{}),o&&(p.hidden=!h),h?st(t).show():l.done(function(){st(t).hide()}),l.done(function(){var e;st._removeData(t,"fxshow");for(e in f)st.style(t,e,f[e])});for(r in f)a=B(h?p[r]:0,r,l),r in p||(p[r]=a.start,h&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function z(t,e){var n,r,i,o,a;for(n in t)if(r=st.camelCase(n),i=e[r],o=t[n],st.isArray(o)&&(i=o[1],o=t[n]=o[0]),n!==r&&(t[r]=o,delete t[n]),(a=st.cssHooks[r])&&"expand"in a){o=a.expand(o),delete t[r];for(n in o)n in t||(t[n]=o[n],e[n]=i)}else e[r]=i}function U(t,e,n){var r,i,o=0,a=we.length,s=st.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var e=ve||R(),n=Math.max(0,c.startTime+c.duration-e),r=n/c.duration||0,o=1-r,a=0,u=c.tweens.length;a<u;a++)c.tweens[a].run(o);return s.notifyWith(t,[c,o,n]),o<1&&u?n:(s.resolveWith(t,[c]),!1)},c=s.promise({elem:t,props:st.extend({},e),opts:st.extend(!0,{specialEasing:{}},n),originalProperties:e,originalOptions:n,startTime:ve||R(),duration:n.duration,tweens:[],createTween:function(e,n){var r=st.Tween(t,c.opts,e,n,c.opts.specialEasing[e]||c.opts.easing);return c.tweens.push(r),r},stop:function(e){var n=0,r=e?c.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)c.tweens[n].run(1);return e?s.resolveWith(t,[c,e]):s.rejectWith(t,[c,e]),this}}),l=c.props;for(z(l,c.opts.specialEasing);o<a;o++)if(r=we[o].call(c,t,l,c.opts))return r;return st.map(l,B,c),st.isFunction(c.opts.start)&&c.opts.start.call(t,c),st.fx.timer(st.extend(u,{elem:t,anim:c,queue:c.opts.queue})),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always)}function H(t){return function(e,n){"string"!=typeof e&&(n=e,e="*");var r,i=0,o=e.toLowerCase().match(_t)||[];if(st.isFunction(n))for(;r=o[i++];)"+"===r.charAt(0)?(r=r.slice(1)||"*",(t[r]=t[r]||[]).unshift(n)):(t[r]=t[r]||[]).push(n)}}function W(t,e,n,r){function i(s){var u;return o[s]=!0,st.each(t[s]||[],function(t,s){var c=s(e,n,r);return"string"!=typeof c||a||o[c]?a?!(u=c):void 0:(e.dataTypes.unshift(c),i(c),!1)}),u}var o={},a=t===Ke;return i(e.dataTypes[0])||!o["*"]&&i("*")}function K(t,e){var n,r,i=st.ajaxSettings.flatOptions||{};for(r in e)void 0!==e[r]&&((i[r]?t:n||(n={}))[r]=e[r]);return n&&st.extend(!0,t,n),t}function V(t,e,n){for(var r,i,o,a,s=t.contents,u=t.dataTypes;"*"===u[0];)u.shift(),void 0===i&&(i=t.mimeType||e.getResponseHeader("Content-Type"));if(i)for(a in s)if(s[a]&&s[a].test(i)){u.unshift(a);break}if(u[0]in n)o=u[0];else{for(a in n){if(!u[0]||t.converters[a+" "+u[0]]){o=a;break}r||(r=a)}o=o||r}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Q(t,e,n,r){var i,o,a,s,u,c={},l=t.dataTypes.slice();if(l[1])for(a in t.converters)c[a.toLowerCase()]=t.converters[a];for(o=l.shift();o;)if(t.responseFields[o]&&(n[t.responseFields[o]]=e),!u&&r&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),u=o,o=l.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=c[u+" "+o]||c["* "+o]))for(i in c)if(s=i.split(" "),s[1]===o&&(a=c[u+" "+s[0]]||c["* "+s[0]])){!0===a?a=c[i]:!0!==c[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==a)if(a&&t.throws)e=a(e);else try{e=a(e)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+u+" to "+o}}}return{state:"success",data:e}}function Y(t,e,n,r){var i;if(st.isArray(e))st.each(e,function(e,i){n||Ye.test(t)?r(t,i):Y(t+"["+("object"==typeof i?e:"")+"]",i,n,r)});else if(n||"object"!==st.type(e))r(t,e);else for(i in e)Y(t+"["+i+"]",e[i],n,r)}function $(){try{return new n.XMLHttpRequest}catch(t){}}function Z(){try{return new n.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}function G(t){return st.isWindow(t)?t:9===t.nodeType&&(t.defaultView||t.parentWindow)}var X=[],J=X.slice,tt=X.concat,et=X.push,nt=X.indexOf,rt={},it=rt.toString,ot=rt.hasOwnProperty,at={},st=function(t,e){return new st.fn.init(t,e)},ut=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,ct=/^-ms-/,lt=/-([\da-z])/gi,ft=function(t,e){return e.toUpperCase()};st.fn=st.prototype={jquery:"1.11.1",constructor:st,selector:"",length:0,toArray:function(){return J.call(this)},get:function(t){return null!=t?t<0?this[t+this.length]:this[t]:J.call(this)},pushStack:function(t){var e=st.merge(this.constructor(),t);return e.prevObject=this,e.context=this.context,e},each:function(t,e){return st.each(this,t,e)},map:function(t){return this.pushStack(st.map(this,function(e,n){return t.call(e,n,e)}))},slice:function(){return this.pushStack(J.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n<e?[this[n]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:et,sort:X.sort,splice:X.splice},st.extend=st.fn.extend=function(){var t,e,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,c=!1;for("boolean"==typeof a&&(c=a,a=arguments[s]||{},s++),"object"==typeof a||st.isFunction(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(i=arguments[s]))for(r in i)t=a[r],n=i[r],a!==n&&(c&&n&&(st.isPlainObject(n)||(e=st.isArray(n)))?(e?(e=!1,o=t&&st.isArray(t)?t:[]):o=t&&st.isPlainObject(t)?t:{},a[r]=st.extend(c,o,n)):void 0!==n&&(a[r]=n));return a},st.extend({expando:"jQuery"+("1.11.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(t){throw new Error(t)},noop:function(){},isFunction:function(t){return"function"===st.type(t)},isArray:Array.isArray||function(t){return"array"===st.type(t)},isWindow:function(t){return null!=t&&t==t.window},isNumeric:function(t){return!st.isArray(t)&&t-parseFloat(t)>=0},isEmptyObject:function(t){var e;for(e in t)return!1;return!0},isPlainObject:function(t){var e;if(!t||"object"!==st.type(t)||t.nodeType||st.isWindow(t))return!1;try{if(t.constructor&&!ot.call(t,"constructor")&&!ot.call(t.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}if(at.ownLast)for(e in t)return ot.call(t,e);for(e in t);return void 0===e||ot.call(t,e)},type:function(t){return null==t?t+"":"object"==typeof t||"function"==typeof t?rt[it.call(t)]||"object":typeof t},globalEval:function(t){t&&st.trim(t)&&(n.execScript||function(t){n.eval.call(n,t)})(t)},camelCase:function(t){return t.replace(ct,"ms-").replace(lt,ft)},nodeName:function(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()},each:function(t,e,n){var r=0,i=t.length,o=a(t);if(n){if(o)for(;r<i&&!1!==e.apply(t[r],n);r++);else for(r in t)if(!1===e.apply(t[r],n))break}else if(o)for(;r<i&&!1!==e.call(t[r],r,t[r]);r++);else for(r in t)if(!1===e.call(t[r],r,t[r]))break;return t},trim:function(t){return null==t?"":(t+"").replace(ut,"")},makeArray:function(t,e){var n=e||[];return null!=t&&(a(Object(t))?st.merge(n,"string"==typeof t?[t]:t):et.call(n,t)),n},inArray:function(t,e,n){var r;if(e){if(nt)return nt.call(e,t,n);for(r=e.length,n=n?n<0?Math.max(0,r+n):n:0;n<r;n++)if(n in e&&e[n]===t)return n}return-1},merge:function(t,e){for(var n=+e.length,r=0,i=t.length;r<n;)t[i++]=e[r++];if(n!==n)for(;void 0!==e[r];)t[i++]=e[r++];return t.length=i,t},grep:function(t,e,n){for(var r=[],i=0,o=t.length,a=!n;i<o;i++)!e(t[i],i)!==a&&r.push(t[i]);return r},map:function(t,e,n){var r,i=0,o=t.length,s=a(t),u=[];if(s)for(;i<o;i++)null!=(r=e(t[i],i,n))&&u.push(r);else for(i in t)null!=(r=e(t[i],i,n))&&u.push(r);return tt.apply([],u)},guid:1,proxy:function(t,e){var n,r,i;if("string"==typeof e&&(i=t[e],e=t,t=i),st.isFunction(t))return n=J.call(arguments,2),r=function(){return t.apply(e||this,n.concat(J.call(arguments)))},r.guid=t.guid=t.guid||st.guid++,r},now:function(){return+new Date},support:at}),st.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(t,e){rt["[object "+e+"]"]=e.toLowerCase()});var dt=/*!
28
34
  * Sizzle CSS Selector Engine v1.10.19
29
35
  * http://sizzlejs.com/
30
36
  *
@@ -34,11 +40,11 @@
34
40
  *
35
41
  * Date: 2014-04-18
36
42
  */
37
- function(e){function t(e,t,n,r){var i,o,a,s,c,f,d,h,p,v;if((t?t.ownerDocument||t:R)!==O&&j(t),t=t||O,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(N&&!r){if(i=me.exec(e))if(a=i[1]){if(9===s){if(!(o=t.getElementById(a))||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&L(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return Y.apply(n,t.getElementsByTagName(e)),n;if((a=i[3])&&b.getElementsByClassName&&t.getElementsByClassName)return Y.apply(n,t.getElementsByClassName(a)),n}if(b.qsa&&(!D||!D.test(e))){if(h=d=F,p=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(f=k(e),(d=t.getAttribute("id"))?h=d.replace(ye,"\\$&"):t.setAttribute("id",h),h="[id='"+h+"'] ",c=f.length;c--;)f[c]=h+l(f[c]);p=ge.test(e)&&u(t.parentNode)||t,v=f.join(",")}if(v)try{return Y.apply(n,p.querySelectorAll(v)),n}catch(e){}finally{d||t.removeAttribute("id")}}}return x(e.replace(ae,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>w.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[F]=!0,e}function i(e){var t=O.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=e.length;r--;)w.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||Q)-(~e.sourceIndex||Q);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function u(e){return e&&typeof e.getElementsByTagName!==V&&e}function c(){}function l(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function f(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=z++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,u,c=[B,o];if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i){if(u=t[F]||(t[F]={}),(s=u[r])&&s[0]===B&&s[1]===o)return c[2]=s[2];if(u[r]=c,c[2]=e(t,n,a))return!0}}}function d(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function h(e,n,r){for(var i=0,o=n.length;i<o;i++)t(e,n[i],r);return r}function p(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,c=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),c&&t.push(s)));return a}function v(e,t,n,i,o,a){return i&&!i[F]&&(i=v(i)),o&&!o[F]&&(o=v(o,a)),r(function(r,a,s,u){var c,l,f,d=[],v=[],m=a.length,g=r||h(t||"*",s.nodeType?[s]:s,[]),y=!e||!r&&t?g:p(g,d,e,s,u),b=n?o||(r?e:m||i)?[]:a:y;if(n&&n(y,b,s,u),i)for(c=p(b,v),i(c,[],s,u),l=c.length;l--;)(f=c[l])&&(b[v[l]]=!(y[v[l]]=f));if(r){if(o||e){if(o){for(c=[],l=b.length;l--;)(f=b[l])&&c.push(y[l]=f);o(null,b=[],c,u)}for(l=b.length;l--;)(f=b[l])&&(c=o?J.call(r,f):d[l])>-1&&(r[c]=!(a[c]=f))}}else b=p(b===a?b.splice(m,b.length):b),o?o(null,a,b,u):Y.apply(a,b)})}function m(e){for(var t,n,r,i=e.length,o=w.relative[e[0].type],a=o||w.relative[" "],s=o?1:0,u=f(function(e){return e===t},a,!0),c=f(function(e){return J.call(t,e)>-1},a,!0),h=[function(e,n,r){return!o&&(r||n!==S)||((t=n).nodeType?u(e,n,r):c(e,n,r))}];s<i;s++)if(n=w.relative[e[s].type])h=[f(d(h),n)];else{if(n=w.filter[e[s].type].apply(null,e[s].matches),n[F]){for(r=++s;r<i&&!w.relative[e[r].type];r++);return v(s>1&&d(h),s>1&&l(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(ae,"$1"),n,s<r&&m(e.slice(s,r)),r<i&&m(e=e.slice(r)),r<i&&l(e))}h.push(n)}return d(h)}function g(e,n){var i=n.length>0,o=e.length>0,a=function(r,a,s,u,c){var l,f,d,h=0,v="0",m=r&&[],g=[],y=S,b=r||o&&w.find.TAG("*",c),_=B+=null==y?1:Math.random()||.1,C=b.length;for(c&&(S=a!==O&&a);v!==C&&null!=(l=b[v]);v++){if(o&&l){for(f=0;d=e[f++];)if(d(l,a,s)){u.push(l);break}c&&(B=_)}i&&((l=!d&&l)&&h--,r&&m.push(l))}if(h+=v,i&&v!==h){for(f=0;d=n[f++];)d(m,g,a,s);if(r){if(h>0)for(;v--;)m[v]||g[v]||(g[v]=G.call(u));g=p(g)}Y.apply(u,g),c&&!r&&g.length>0&&h+n.length>1&&t.uniqueSort(u)}return c&&(B=_,S=y),m};return i?r(a):a}var y,b,w,_,C,k,E,x,S,T,A,j,O,P,N,D,M,I,L,F="sizzle"+-new Date,R=e.document,B=0,z=0,W=n(),q=n(),H=n(),U=function(e,t){return e===t&&(A=!0),0},V="undefined",Q=1<<31,K={}.hasOwnProperty,$=[],G=$.pop,Z=$.push,Y=$.push,X=$.slice,J=$.indexOf||function(e){for(var t=0,n=this.length;t<n;t++)if(this[t]===e)return t;return-1},ee="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",te="[\\x20\\t\\r\\n\\f]",ne="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",re=ne.replace("w","w#"),ie="\\["+te+"*("+ne+")(?:"+te+"*([*^$|!~]?=)"+te+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+re+"))|)"+te+"*\\]",oe=":("+ne+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+ie+")*)|.*)\\)|)",ae=new RegExp("^"+te+"+|((?:^|[^\\\\])(?:\\\\.)*)"+te+"+$","g"),se=new RegExp("^"+te+"*,"+te+"*"),ue=new RegExp("^"+te+"*([>+~]|"+te+")"+te+"*"),ce=new RegExp("="+te+"*([^\\]'\"]*?)"+te+"*\\]","g"),le=new RegExp(oe),fe=new RegExp("^"+re+"$"),de={ID:new RegExp("^#("+ne+")"),CLASS:new RegExp("^\\.("+ne+")"),TAG:new RegExp("^("+ne.replace("w","w*")+")"),ATTR:new RegExp("^"+ie),PSEUDO:new RegExp("^"+oe),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+te+"*(even|odd|(([+-]|)(\\d*)n|)"+te+"*(?:([+-]|)"+te+"*(\\d+)|))"+te+"*\\)|)","i"),bool:new RegExp("^(?:"+ee+")$","i"),needsContext:new RegExp("^"+te+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+te+"*((?:-\\d)?\\d*)"+te+"*\\)|)(?=[^-]|$)","i")},he=/^(?:input|select|textarea|button)$/i,pe=/^h\d$/i,ve=/^[^{]+\{\s*\[native \w/,me=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ge=/[+~]/,ye=/'|\\/g,be=new RegExp("\\\\([\\da-f]{1,6}"+te+"?|("+te+")|.)","ig"),we=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)};try{Y.apply($=X.call(R.childNodes),R.childNodes),$[R.childNodes.length].nodeType}catch(e){Y={apply:$.length?function(e,t){Z.apply(e,X.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}b=t.support={},C=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},j=t.setDocument=function(e){var t,n=e?e.ownerDocument||e:R,r=n.defaultView;return n!==O&&9===n.nodeType&&n.documentElement?(O=n,P=n.documentElement,N=!C(n),r&&r!==r.top&&(r.addEventListener?r.addEventListener("unload",function(){j()},!1):r.attachEvent&&r.attachEvent("onunload",function(){j()})),b.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByTagName=i(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),b.getElementsByClassName=ve.test(n.getElementsByClassName)&&i(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),b.getById=i(function(e){return P.appendChild(e).id=F,!n.getElementsByName||!n.getElementsByName(F).length}),b.getById?(w.find.ID=function(e,t){if(typeof t.getElementById!==V&&N){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},w.filter.ID=function(e){var t=e.replace(be,we);return function(e){return e.getAttribute("id")===t}}):(delete w.find.ID,w.filter.ID=function(e){var t=e.replace(be,we);return function(e){var n=typeof e.getAttributeNode!==V&&e.getAttributeNode("id");return n&&n.value===t}}),w.find.TAG=b.getElementsByTagName?function(e,t){if(typeof t.getElementsByTagName!==V)return t.getElementsByTagName(e)}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},w.find.CLASS=b.getElementsByClassName&&function(e,t){if(typeof t.getElementsByClassName!==V&&N)return t.getElementsByClassName(e)},M=[],D=[],(b.qsa=ve.test(n.querySelectorAll))&&(i(function(e){e.innerHTML="<select msallowclip=''><option selected=''></option></select>",e.querySelectorAll("[msallowclip^='']").length&&D.push("[*^$]="+te+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||D.push("\\["+te+"*(?:value|"+ee+")"),e.querySelectorAll(":checked").length||D.push(":checked")}),i(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&D.push("name"+te+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||D.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),D.push(",.*:")})),(b.matchesSelector=ve.test(I=P.matches||P.webkitMatchesSelector||P.mozMatchesSelector||P.oMatchesSelector||P.msMatchesSelector))&&i(function(e){b.disconnectedMatch=I.call(e,"div"),I.call(e,"[s!='']:x"),M.push("!=",oe)}),D=D.length&&new RegExp(D.join("|")),M=M.length&&new RegExp(M.join("|")),t=ve.test(P.compareDocumentPosition),L=t||ve.test(P.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},U=t?function(e,t){if(e===t)return A=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&r||!b.sortDetached&&t.compareDocumentPosition(e)===r?e===n||e.ownerDocument===R&&L(R,e)?-1:t===n||t.ownerDocument===R&&L(R,t)?1:T?J.call(T,e)-J.call(T,t):0:4&r?-1:1)}:function(e,t){if(e===t)return A=!0,0;var r,i=0,o=e.parentNode,s=t.parentNode,u=[e],c=[t];if(!o||!s)return e===n?-1:t===n?1:o?-1:s?1:T?J.call(T,e)-J.call(T,t):0;if(o===s)return a(e,t);for(r=e;r=r.parentNode;)u.unshift(r);for(r=t;r=r.parentNode;)c.unshift(r);for(;u[i]===c[i];)i++;return i?a(u[i],c[i]):u[i]===R?-1:c[i]===R?1:0},n):O},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==O&&j(e),n=n.replace(ce,"='$1']"),b.matchesSelector&&N&&(!M||!M.test(n))&&(!D||!D.test(n)))try{var r=I.call(e,n);if(r||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,O,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==O&&j(e),L(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==O&&j(e);var n=w.attrHandle[t.toLowerCase()],r=n&&K.call(w.attrHandle,t.toLowerCase())?n(e,t,!N):void 0;return void 0!==r?r:b.attributes||!N?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(A=!b.detectDuplicates,T=!b.sortStable&&e.slice(0),e.sort(U),A){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return T=null,e},_=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=_(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=_(t);return n},w=t.selectors={cacheLength:50,createPseudo:r,match:de,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(be,we),e[3]=(e[3]||e[4]||e[5]||"").replace(be,we),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return de.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&le.test(n)&&(t=k(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(be,we).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+te+")"+e+"("+te+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==V&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:!n||(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o+" ").indexOf(r)>-1:"|="===n&&(o===r||o.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var c,l,f,d,h,p,v=o!==a?"nextSibling":"previousSibling",m=t.parentNode,g=s&&t.nodeName.toLowerCase(),y=!u&&!s;if(m){if(o){for(;v;){for(f=t;f=f[v];)if(s?f.nodeName.toLowerCase()===g:1===f.nodeType)return!1;p=v="only"===e&&!p&&"nextSibling"}return!0}if(p=[a?m.firstChild:m.lastChild],a&&y){for(l=m[F]||(m[F]={}),c=l[e]||[],h=c[0]===B&&c[1],d=c[0]===B&&c[2],f=h&&m.childNodes[h];f=++h&&f&&f[v]||(d=h=0)||p.pop();)if(1===f.nodeType&&++d&&f===t){l[e]=[B,h,d];break}}else if(y&&(c=(t[F]||(t[F]={}))[e])&&c[0]===B)d=c[1];else for(;(f=++h&&f&&f[v]||(d=h=0)||p.pop())&&((s?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++d||(y&&((f[F]||(f[F]={}))[e]=[B,d]),f!==t)););return(d-=i)===r||d%r==0&&d/r>=0}}},PSEUDO:function(e,n){var i,o=w.pseudos[e]||w.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[F]?o(n):o.length>1?(i=[e,e,"",n],w.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)r=J.call(e,i[a]),e[r]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=E(e.replace(ae,"$1"));return i[F]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return function(t){return(t.textContent||t.innerText||_(t)).indexOf(e)>-1}}),lang:r(function(e){return fe.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(be,we).toLowerCase(),function(t){var n;do{if(n=N?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===P},focus:function(e){return e===O.activeElement&&(!O.hasFocus||O.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return!1===e.disabled},disabled:function(e){return!0===e.disabled},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!w.pseudos.empty(e)},header:function(e){return pe.test(e.nodeName)},input:function(e){return he.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:s(function(){return[0]}),last:s(function(e,t){return[t-1]}),eq:s(function(e,t,n){return[n<0?n+t:n]}),even:s(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:s(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:s(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:s(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}},w.pseudos.nth=w.pseudos.eq;for(y in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})w.pseudos[y]=function(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}(y);for(y in{submit:!0,reset:!0})w.pseudos[y]=function(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}(y);return c.prototype=w.filters=w.pseudos,w.setFilters=new c,k=t.tokenize=function(e,n){var r,i,o,a,s,u,c,l=q[e+" "];if(l)return n?0:l.slice(0);for(s=e,u=[],c=w.preFilter;s;){r&&!(i=se.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),r=!1,(i=ue.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(ae," ")}),s=s.slice(r.length));for(a in w.filter)!(i=de[a].exec(s))||c[a]&&!(i=c[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?t.error(e):q(e,u).slice(0)},E=t.compile=function(e,t){var n,r=[],i=[],o=H[e+" "];if(!o){for(t||(t=k(e)),n=t.length;n--;)o=m(t[n]),o[F]?r.push(o):i.push(o);o=H(e,g(i,r)),o.selector=e}return o},x=t.select=function(e,t,n,r){var i,o,a,s,c,f="function"==typeof e&&e,d=!r&&k(e=f.selector||e);if(n=n||[],1===d.length){if(o=d[0]=d[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&b.getById&&9===t.nodeType&&N&&w.relative[o[1].type]){if(!(t=(w.find.ID(a.matches[0].replace(be,we),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=de.needsContext.test(e)?0:o.length;i--&&(a=o[i],!w.relative[s=a.type]);)if((c=w.find[s])&&(r=c(a.matches[0].replace(be,we),ge.test(o[0].type)&&u(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&l(o)))return Y.apply(n,r),n;break}}return(f||E(e,d))(r,t,!N,n,ge.test(e)&&u(t.parentNode)||t),n},b.sortStable=F.split("").sort(U).join("")===F,b.detectDuplicates=!!A,j(),b.sortDetached=i(function(e){return 1&e.compareDocumentPosition(O.createElement("div"))}),i(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),b.attributes&&i(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(ee,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(n);se.find=de,se.expr=de.selectors,se.expr[":"]=se.expr.pseudos,se.unique=de.uniqueSort,se.text=de.getText,se.isXMLDoc=de.isXML,se.contains=de.contains;var he=se.expr.match.needsContext,pe=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,ve=/^.[^:#\[\.,]*$/;se.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?se.find.matchesSelector(r,e)?[r]:[]:se.find.matches(e,se.grep(t,function(e){return 1===e.nodeType}))},se.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(se(e).filter(function(){for(t=0;t<i;t++)if(se.contains(r[t],this))return!0}));for(t=0;t<i;t++)se.find(e,r[t],n);return n=this.pushStack(i>1?se.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},filter:function(e){return this.pushStack(s(this,e||[],!1))},not:function(e){return this.pushStack(s(this,e||[],!0))},is:function(e){return!!s(this,"string"==typeof e&&he.test(e)?se(e):e||[],!1).length}});var me,ge=n.document,ye=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(se.fn.init=function(e,t){var n,r;if(!e)return this;if("string"==typeof e){if(!(n="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:ye.exec(e))||!n[1]&&t)return!t||t.jquery?(t||me).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof se?t[0]:t,se.merge(this,se.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:ge,!0)),pe.test(n[1])&&se.isPlainObject(t))for(n in t)se.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}if((r=ge.getElementById(n[2]))&&r.parentNode){if(r.id!==n[2])return me.find(e);this.length=1,this[0]=r}return this.context=ge,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):se.isFunction(e)?void 0!==me.ready?me.ready(e):e(se):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),se.makeArray(e,this))}).prototype=se.fn,me=se(ge);var be=/^(?:parents|prev(?:Until|All))/,we={children:!0,contents:!0,next:!0,prev:!0};se.extend({dir:function(e,t,n){for(var r=[],i=e[t];i&&9!==i.nodeType&&(void 0===n||1!==i.nodeType||!se(i).is(n));)1===i.nodeType&&r.push(i),i=i[t];return r},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}}),se.fn.extend({has:function(e){var t,n=se(e,this),r=n.length;return this.filter(function(){for(t=0;t<r;t++)if(se.contains(this,n[t]))return!0})},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=he.test(e)||"string"!=typeof e?se(e,t||this.context):0;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&se.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?se.unique(o):o)},index:function(e){return e?"string"==typeof e?se.inArray(this[0],se(e)):se.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(se.unique(se.merge(this.get(),se(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),se.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return se.dir(e,"parentNode")},parentsUntil:function(e,t,n){return se.dir(e,"parentNode",n)},next:function(e){return u(e,"nextSibling")},prev:function(e){return u(e,"previousSibling")},nextAll:function(e){return se.dir(e,"nextSibling")},prevAll:function(e){return se.dir(e,"previousSibling")},nextUntil:function(e,t,n){return se.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return se.dir(e,"previousSibling",n)},siblings:function(e){return se.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return se.sibling(e.firstChild)},contents:function(e){return se.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:se.merge([],e.childNodes)}},function(e,t){se.fn[e]=function(n,r){var i=se.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=se.filter(r,i)),this.length>1&&(we[e]||(i=se.unique(i)),be.test(e)&&(i=i.reverse())),this.pushStack(i)}});var _e=/\S+/g,Ce={};se.Callbacks=function(e){e="string"==typeof e?Ce[e]||c(e):se.extend({},e);var t,n,r,i,o,a,s=[],u=!e.once&&[],l=function(c){for(n=e.memory&&c,r=!0,o=a||0,a=0,i=s.length,t=!0;s&&o<i;o++)if(!1===s[o].apply(c[0],c[1])&&e.stopOnFalse){n=!1;break}t=!1,s&&(u?u.length&&l(u.shift()):n?s=[]:f.disable())},f={add:function(){if(s){var r=s.length;!function t(n){se.each(n,function(n,r){var i=se.type(r);"function"===i?e.unique&&f.has(r)||s.push(r):r&&r.length&&"string"!==i&&t(r)})}(arguments),t?i=s.length:n&&(a=r,l(n))}return this},remove:function(){return s&&se.each(arguments,function(e,n){for(var r;(r=se.inArray(n,s,r))>-1;)s.splice(r,1),t&&(r<=i&&i--,r<=o&&o--)}),this},has:function(e){return e?se.inArray(e,s)>-1:!(!s||!s.length)},empty:function(){return s=[],i=0,this},disable:function(){return s=u=n=void 0,this},disabled:function(){return!s},lock:function(){return u=void 0,n||f.disable(),this},locked:function(){return!u},fireWith:function(e,n){return!s||r&&!u||(n=n||[],n=[e,n.slice?n.slice():n],t?u.push(n):l(n)),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!r}};return f},se.extend({Deferred:function(e){var t=[["resolve","done",se.Callbacks("once memory"),"resolved"],["reject","fail",se.Callbacks("once memory"),"rejected"],["notify","progress",se.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return se.Deferred(function(n){se.each(t,function(t,o){var a=se.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&se.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?se.extend(e,r):r}},i={};return r.pipe=r.then,se.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=J.call(arguments),a=o.length,s=1!==a||e&&se.isFunction(e.promise)?a:0,u=1===s?e:se.Deferred(),c=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?J.call(arguments):i,r===t?u.notifyWith(n,r):--s||u.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);i<a;i++)o[i]&&se.isFunction(o[i].promise)?o[i].promise().done(c(i,r,o)).fail(u.reject).progress(c(i,n,t)):--s;return s||u.resolveWith(r,o),u.promise()}});var ke;se.fn.ready=function(e){return se.ready.promise().done(e),this},se.extend({isReady:!1,readyWait:1,holdReady:function(e){e?se.readyWait++:se.ready(!0)},ready:function(e){if(!0===e?!--se.readyWait:!se.isReady){if(!ge.body)return setTimeout(se.ready);se.isReady=!0,!0!==e&&--se.readyWait>0||(ke.resolveWith(ge,[se]),se.fn.triggerHandler&&(se(ge).triggerHandler("ready"),se(ge).off("ready")))}}}),se.ready.promise=function(e){if(!ke)if(ke=se.Deferred(),"complete"===ge.readyState)setTimeout(se.ready);else if(ge.addEventListener)ge.addEventListener("DOMContentLoaded",f,!1),n.addEventListener("load",f,!1);else{ge.attachEvent("onreadystatechange",f),n.attachEvent("onload",f);var t=!1;try{t=null==n.frameElement&&ge.documentElement}catch(e){}t&&t.doScroll&&function e(){if(!se.isReady){try{t.doScroll("left")}catch(t){return setTimeout(e,50)}l(),se.ready()}}()}return ke.promise(e)};var Ee,xe="undefined";for(Ee in se(ae))break;ae.ownLast="0"!==Ee,ae.inlineBlockNeedsLayout=!1,se(function(){var e,t,n,r;(n=ge.getElementsByTagName("body")[0])&&n.style&&(t=ge.createElement("div"),r=ge.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==xe&&(t.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",ae.inlineBlockNeedsLayout=e=3===t.offsetWidth,e&&(n.style.zoom=1)),n.removeChild(r))}),function(){var e=ge.createElement("div");if(null==ae.deleteExpando){ae.deleteExpando=!0;try{delete e.test}catch(e){ae.deleteExpando=!1}}e=null}(),se.acceptData=function(e){var t=se.noData[(e.nodeName+" ").toLowerCase()],n=+e.nodeType||1;return(1===n||9===n)&&(!t||!0!==t&&e.getAttribute("classid")===t)};var Se=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Te=/([A-Z])/g;se.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return!!(e=e.nodeType?se.cache[e[se.expando]]:e[se.expando])&&!h(e)},data:function(e,t,n){return p(e,t,n)},removeData:function(e,t){return v(e,t)},_data:function(e,t,n){return p(e,t,n,!0)},_removeData:function(e,t){return v(e,t,!0)}}),se.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=se.data(o),1===o.nodeType&&!se._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=se.camelCase(r.slice(5)),d(o,r,i[r])));se._data(o,"parsedAttrs",!0)}return i}return"object"==typeof e?this.each(function(){se.data(this,e)}):arguments.length>1?this.each(function(){se.data(this,e,t)}):o?d(o,e,se.data(o,e)):void 0},removeData:function(e){return this.each(function(){se.removeData(this,e)})}}),se.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=se._data(e,t),n&&(!r||se.isArray(n)?r=se._data(e,t,se.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=se.queue(e,t),r=n.length,i=n.shift(),o=se._queueHooks(e,t),a=function(){se.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return se._data(e,n)||se._data(e,n,{empty:se.Callbacks("once memory").add(function(){se._removeData(e,t+"queue"),se._removeData(e,n)})})}}),se.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?se.queue(this[0],e):void 0===t?this:this.each(function(){var n=se.queue(this,e,t);se._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&se.dequeue(this,e)})},dequeue:function(e){return this.each(function(){se.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=se.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=se._data(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Ae=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,je=["Top","Right","Bottom","Left"],Oe=function(e,t){return e=t||e,"none"===se.css(e,"display")||!se.contains(e.ownerDocument,e)},Pe=se.access=function(e,t,n,r,i,o,a){var s=0,u=e.length,c=null==n;if("object"===se.type(n)){i=!0;for(s in n)se.access(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,se.isFunction(r)||(a=!0),c&&(a?(t.call(e,r),t=null):(c=t,t=function(e,t,n){return c.call(se(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:c?t.call(e):u?t(e[0],n):o},Ne=/^(?:checkbox|radio)$/i;!function(){var e=ge.createElement("input"),t=ge.createElement("div"),n=ge.createDocumentFragment();if(t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",ae.leadingWhitespace=3===t.firstChild.nodeType,ae.tbody=!t.getElementsByTagName("tbody").length,ae.htmlSerialize=!!t.getElementsByTagName("link").length,ae.html5Clone="<:nav></:nav>"!==ge.createElement("nav").cloneNode(!0).outerHTML,e.type="checkbox",e.checked=!0,n.appendChild(e),ae.appendChecked=e.checked,t.innerHTML="<textarea>x</textarea>",ae.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,n.appendChild(t),t.innerHTML="<input type='radio' checked='checked' name='t'/>",ae.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,ae.noCloneEvent=!0,t.attachEvent&&(t.attachEvent("onclick",function(){ae.noCloneEvent=!1}),t.cloneNode(!0).click()),null==ae.deleteExpando){ae.deleteExpando=!0;try{delete t.test}catch(e){ae.deleteExpando=!1}}}(),function(){var e,t,r=ge.createElement("div");for(e in{submit:!0,change:!0,focusin:!0})t="on"+e,(ae[e+"Bubbles"]=t in n)||(r.setAttribute(t,"t"),ae[e+"Bubbles"]=!1===r.attributes[t].expando);r=null}();var De=/^(?:input|select|textarea)$/i,Me=/^key/,Ie=/^(?:mouse|pointer|contextmenu)|click/,Le=/^(?:focusinfocus|focusoutblur)$/,Fe=/^([^.]*)(?:\.(.+)|)$/;se.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,c,l,f,d,h,p,v,m=se._data(e);if(m){for(n.handler&&(u=n,n=u.handler,i=u.selector),n.guid||(n.guid=se.guid++),(a=m.events)||(a=m.events={}),(l=m.handle)||(l=m.handle=function(e){return typeof se===xe||e&&se.event.triggered===e.type?void 0:se.event.dispatch.apply(l.elem,arguments)},l.elem=e),t=(t||"").match(_e)||[""],s=t.length;s--;)o=Fe.exec(t[s])||[],h=v=o[1],p=(o[2]||"").split(".").sort(),h&&(c=se.event.special[h]||{},h=(i?c.delegateType:c.bindType)||h,c=se.event.special[h]||{},f=se.extend({type:h,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&se.expr.match.needsContext.test(i),namespace:p.join(".")},u),(d=a[h])||(d=a[h]=[],d.delegateCount=0,c.setup&&!1!==c.setup.call(e,r,p,l)||(e.addEventListener?e.addEventListener(h,l,!1):e.attachEvent&&e.attachEvent("on"+h,l))),c.add&&(c.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,f):d.push(f),se.event.global[h]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,u,c,l,f,d,h,p,v,m=se.hasData(e)&&se._data(e);if(m&&(l=m.events)){for(t=(t||"").match(_e)||[""],c=t.length;c--;)if(s=Fe.exec(t[c])||[],h=v=s[1],p=(s[2]||"").split(".").sort(),h){for(f=se.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,d=l[h]||[],s=s[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=d.length;o--;)a=d[o],!i&&v!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(d.splice(o,1),a.selector&&d.delegateCount--,f.remove&&f.remove.call(e,a));u&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,p,m.handle)||se.removeEvent(e,h,m.handle),delete l[h])}else for(h in l)se.event.remove(e,h+t[c],n,r,!0);se.isEmptyObject(l)&&(delete m.handle,se._removeData(e,"events"))}},trigger:function(e,t,r,i){var o,a,s,u,c,l,f,d=[r||ge],h=oe.call(e,"type")?e.type:e,p=oe.call(e,"namespace")?e.namespace.split("."):[];if(s=l=r=r||ge,3!==r.nodeType&&8!==r.nodeType&&!Le.test(h+se.event.triggered)&&(h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,e=e[se.expando]?e:new se.Event(h,"object"==typeof e&&e),e.isTrigger=i?2:3,e.namespace=p.join("."),e.namespace_re=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:se.makeArray(t,[e]),c=se.event.special[h]||{},i||!c.trigger||!1!==c.trigger.apply(r,t))){if(!i&&!c.noBubble&&!se.isWindow(r)){for(u=c.delegateType||h,Le.test(u+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),l=s;l===(r.ownerDocument||ge)&&d.push(l.defaultView||l.parentWindow||n)}for(f=0;(s=d[f++])&&!e.isPropagationStopped();)e.type=f>1?u:c.bindType||h,o=(se._data(s,"events")||{})[e.type]&&se._data(s,"handle"),o&&o.apply(s,t),(o=a&&s[a])&&o.apply&&se.acceptData(s)&&(e.result=o.apply(s,t),!1===e.result&&e.preventDefault());if(e.type=h,!i&&!e.isDefaultPrevented()&&(!c._default||!1===c._default.apply(d.pop(),t))&&se.acceptData(r)&&a&&r[h]&&!se.isWindow(r)){l=r[a],l&&(r[a]=null),se.event.triggered=h;try{r[h]()}catch(e){}se.event.triggered=void 0,l&&(r[a]=l)}return e.result}},dispatch:function(e){e=se.event.fix(e);var t,n,r,i,o,a=[],s=J.call(arguments),u=(se._data(this,"events")||{})[e.type]||[],c=se.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,e)){for(a=se.event.handlers.call(this,e,u),t=0;(i=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,o=0;(r=i.handlers[o++])&&!e.isImmediatePropagationStopped();)e.namespace_re&&!e.namespace_re.test(r.namespace)||(e.handleObj=r,e.data=r.data,void 0!==(n=((se.event.special[r.origType]||{}).handle||r.handler).apply(i.elem,s))&&!1===(e.result=n)&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,u=e.target;if(s&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(!0!==u.disabled||"click"!==e.type)){for(i=[],o=0;o<s;o++)r=t[o],n=r.selector+" ",void 0===i[n]&&(i[n]=r.needsContext?se(n,this).index(u)>=0:se.find(n,this,null,[u]).length),i[n]&&i.push(r);i.length&&a.push({elem:u,handlers:i})}return s<t.length&&a.push({elem:this,handlers:t.slice(s)}),a},fix:function(e){if(e[se.expando])return e;var t,n,r,i=e.type,o=e,a=this.fixHooks[i];for(a||(this.fixHooks[i]=a=Ie.test(i)?this.mouseHooks:Me.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new se.Event(o),t=r.length;t--;)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||ge),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,a.filter?a.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,o=t.button,a=t.fromElement;return null==e.pageX&&null!=t.clientX&&(r=e.target.ownerDocument||ge,i=r.documentElement,n=r.body,e.pageX=t.clientX+(i&&i.scrollLeft||n&&n.scrollLeft||0)-(i&&i.clientLeft||n&&n.clientLeft||0),e.pageY=t.clientY+(i&&i.scrollTop||n&&n.scrollTop||0)-(i&&i.clientTop||n&&n.clientTop||0)),!e.relatedTarget&&a&&(e.relatedTarget=a===e.target?t.toElement:a),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==y()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){if(this===y()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if(se.nodeName(this,"input")&&"checkbox"===this.type&&this.click)return this.click(),!1},_default:function(e){return se.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=se.extend(new se.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?se.event.trigger(i,null,t):se.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},se.removeEvent=ge.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===xe&&(e[r]=null),e.detachEvent(r,n))},se.Event=function(e,t){if(!(this instanceof se.Event))return new se.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?m:g):this.type=e,t&&se.extend(this,t),this.timeStamp=e&&e.timeStamp||se.now(),this[se.expando]=!0},se.Event.prototype={isDefaultPrevented:g,isPropagationStopped:g,isImmediatePropagationStopped:g,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=m,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=m,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=m,e&&e.stopImmediatePropagation&&e.stopImmediatePropagation(),this.stopPropagation()}},se.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){se.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||se.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),ae.submitBubbles||(se.event.special.submit={setup:function(){if(se.nodeName(this,"form"))return!1;se.event.add(this,"click._submit keypress._submit",function(e){var t=e.target,n=se.nodeName(t,"input")||se.nodeName(t,"button")?t.form:void 0;n&&!se._data(n,"submitBubbles")&&(se.event.add(n,"submit._submit",function(e){e._submit_bubble=!0}),se._data(n,"submitBubbles",!0))})},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&se.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){if(se.nodeName(this,"form"))return!1;se.event.remove(this,"._submit")}}),ae.changeBubbles||(se.event.special.change={setup:function(){if(De.test(this.nodeName))return"checkbox"!==this.type&&"radio"!==this.type||(se.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),se.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),se.event.simulate("change",this,e,!0)})),!1;se.event.add(this,"beforeactivate._change",function(e){var t=e.target;De.test(t.nodeName)&&!se._data(t,"changeBubbles")&&(se.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||se.event.simulate("change",this.parentNode,e,!0)}),se._data(t,"changeBubbles",!0))})},handle:function(e){var t=e.target;if(this!==t||e.isSimulated||e.isTrigger||"radio"!==t.type&&"checkbox"!==t.type)return e.handleObj.handler.apply(this,arguments)},teardown:function(){return se.event.remove(this,"._change"),!De.test(this.nodeName)}}),ae.focusinBubbles||se.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){se.event.simulate(t,e.target,se.event.fix(e),!0)};se.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=se._data(r,t);i||r.addEventListener(e,n,!0),se._data(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=se._data(r,t)-1;i?se._data(r,t,i):(r.removeEventListener(e,n,!0),se._removeData(r,t))}}}),se.fn.extend({on:function(e,t,n,r,i){var o,a;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=void 0);for(o in e)this.on(o,t,n,e[o],i);return this}if(null==n&&null==r?(r=t,n=t=void 0):null==r&&("string"==typeof t?(r=n,n=void 0):(r=n,n=t,t=void 0)),!1===r)r=g;else if(!r)return this;return 1===i&&(a=r,r=function(e){return se().off(e),a.apply(this,arguments)},r.guid=a.guid||(a.guid=se.guid++)),this.each(function(){se.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,se(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=g),this.each(function(){se.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){se.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return se.event.trigger(e,t,n,!0)}});var Re="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Be=/ jQuery\d+="(?:null|\d+)"/g,ze=new RegExp("<(?:"+Re+")[\\s/>]","i"),We=/^\s+/,qe=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,He=/<([\w:]+)/,Ue=/<tbody/i,Ve=/<|&#?\w+;/,Qe=/<(?:script|style|link)/i,Ke=/checked\s*(?:[^=]|=\s*.checked.)/i,$e=/^$|\/(?:java|ecma)script/i,Ge=/^true\/(.*)/,Ze=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Ye={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:ae.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},Xe=b(ge),Je=Xe.appendChild(ge.createElement("div"));Ye.optgroup=Ye.option,Ye.tbody=Ye.tfoot=Ye.colgroup=Ye.caption=Ye.thead,Ye.th=Ye.td,se.extend({clone:function(e,t,n){var r,i,o,a,s,u=se.contains(e.ownerDocument,e);if(ae.html5Clone||se.isXMLDoc(e)||!ze.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Je.innerHTML=e.outerHTML,Je.removeChild(o=Je.firstChild)),!(ae.noCloneEvent&&ae.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||se.isXMLDoc(e)))for(r=w(o),s=w(e),a=0;null!=(i=s[a]);++a)r[a]&&T(i,r[a]);if(t)if(n)for(s=s||w(e),r=r||w(o),a=0;null!=(i=s[a]);a++)S(i,r[a]);else S(e,o);return r=w(o,"script"),r.length>0&&x(r,!u&&w(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){for(var i,o,a,s,u,c,l,f=e.length,d=b(t),h=[],p=0;p<f;p++)if((o=e[p])||0===o)if("object"===se.type(o))se.merge(h,o.nodeType?[o]:o);else if(Ve.test(o)){for(s=s||d.appendChild(t.createElement("div")),u=(He.exec(o)||["",""])[1].toLowerCase(),l=Ye[u]||Ye._default,s.innerHTML=l[1]+o.replace(qe,"<$1></$2>")+l[2],i=l[0];i--;)s=s.lastChild;if(!ae.leadingWhitespace&&We.test(o)&&h.push(t.createTextNode(We.exec(o)[0])),!ae.tbody)for(o="table"!==u||Ue.test(o)?"<table>"!==l[1]||Ue.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)se.nodeName(c=o.childNodes[i],"tbody")&&!c.childNodes.length&&o.removeChild(c);for(se.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(t.createTextNode(o));for(s&&d.removeChild(s),ae.appendChecked||se.grep(w(h,"input"),_),p=0;o=h[p++];)if((!r||-1===se.inArray(o,r))&&(a=se.contains(o.ownerDocument,o),s=w(d.appendChild(o),"script"),a&&x(s),n))for(i=0;o=s[i++];)$e.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(e,t){for(var n,r,i,o,a=0,s=se.expando,u=se.cache,c=ae.deleteExpando,l=se.event.special;null!=(n=e[a]);a++)if((t||se.acceptData(n))&&(i=n[s],o=i&&u[i])){if(o.events)for(r in o.events)l[r]?se.event.remove(n,r):se.removeEvent(n,r,o.handle);u[i]&&(delete u[i],c?delete n[s]:typeof n.removeAttribute!==xe?n.removeAttribute(s):n[s]=null,X.push(i))}}}),se.fn.extend({text:function(e){return Pe(this,function(e){return void 0===e?se.text(this):this.empty().append((this[0]&&this[0].ownerDocument||ge).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){C(this,e).appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=C(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=e?se.filter(e,this):this,i=0;null!=(n=r[i]);i++)t||1!==n.nodeType||se.cleanData(w(n)),n.parentNode&&(t&&se.contains(n.ownerDocument,n)&&x(w(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&se.cleanData(w(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&se.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return se.clone(this,e,t)})},html:function(e){return Pe(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(Be,""):void 0;if("string"==typeof e&&!Qe.test(e)&&(ae.htmlSerialize||!ze.test(e))&&(ae.leadingWhitespace||!We.test(e))&&!Ye[(He.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(qe,"<$1></$2>");try{for(;n<r;n++)t=this[n]||{},1===t.nodeType&&(se.cleanData(w(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=arguments[0];return this.domManip(arguments,function(t){e=this.parentNode,se.cleanData(w(this)),e&&e.replaceChild(t,this)}),e&&(e.length||e.nodeType)?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t){e=ee.apply([],e);var n,r,i,o,a,s,u=0,c=this.length,l=this,f=c-1,d=e[0],h=se.isFunction(d);if(h||c>1&&"string"==typeof d&&!ae.checkClone&&Ke.test(d))return this.each(function(n){var r=l.eq(n);h&&(e[0]=d.call(this,n,r.html())),r.domManip(e,t)});if(c&&(s=se.buildFragment(e,this[0].ownerDocument,!1,this),n=s.firstChild,1===s.childNodes.length&&(s=n),n)){for(o=se.map(w(s,"script"),k),i=o.length;u<c;u++)r=s,u!==f&&(r=se.clone(r,!0,!0),i&&se.merge(o,w(r,"script"))),t.call(this[u],r,u);if(i)for(a=o[o.length-1].ownerDocument,se.map(o,E),u=0;u<i;u++)r=o[u],$e.test(r.type||"")&&!se._data(r,"globalEval")&&se.contains(a,r)&&(r.src?se._evalUrl&&se._evalUrl(r.src):se.globalEval((r.text||r.textContent||r.innerHTML||"").replace(Ze,"")));s=n=null}return this}}),se.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){se.fn[e]=function(e){for(var n,r=0,i=[],o=se(e),a=o.length-1;r<=a;r++)n=r===a?this:this.clone(!0),se(o[r])[t](n),te.apply(i,n.get());return this.pushStack(i)}});var et,tt={};!function(){var e;ae.shrinkWrapBlocks=function(){if(null!=e)return e;e=!1;var t,n,r;return(n=ge.getElementsByTagName("body")[0])&&n.style?(t=ge.createElement("div"),r=ge.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==xe&&(t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",t.appendChild(ge.createElement("div")).style.width="5px",e=3!==t.offsetWidth),n.removeChild(r),e):void 0}}();var nt,rt,it=/^margin/,ot=new RegExp("^("+Ae+")(?!px)[a-z%]+$","i"),at=/^(top|right|bottom|left)$/;n.getComputedStyle?(nt=function(e){return e.ownerDocument.defaultView.getComputedStyle(e,null)},rt=function(e,t,n){var r,i,o,a,s=e.style;return n=n||nt(e),a=n?n.getPropertyValue(t)||n[t]:void 0,n&&(""!==a||se.contains(e.ownerDocument,e)||(a=se.style(e,t)),ot.test(a)&&it.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0===a?a:a+""}):ge.documentElement.currentStyle&&(nt=function(e){return e.currentStyle},rt=function(e,t,n){var r,i,o,a,s=e.style;return n=n||nt(e),a=n?n[t]:void 0,null==a&&s&&s[t]&&(a=s[t]),ot.test(a)&&!at.test(t)&&(r=s.left,i=e.runtimeStyle,o=i&&i.left,o&&(i.left=e.currentStyle.left),s.left="fontSize"===t?"1em":a,a=s.pixelLeft+"px",s.left=r,o&&(i.left=o)),void 0===a?a:a+""||"auto"}),function(){function e(){var e,t,r,i;(t=ge.getElementsByTagName("body")[0])&&t.style&&(e=ge.createElement("div"),r=ge.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",t.appendChild(r).appendChild(e),e.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",o=a=!1,u=!0,n.getComputedStyle&&(o="1%"!==(n.getComputedStyle(e,null)||{}).top,a="4px"===(n.getComputedStyle(e,null)||{width:"4px"}).width,i=e.appendChild(ge.createElement("div")),i.style.cssText=e.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",e.style.width="1px",u=!parseFloat((n.getComputedStyle(i,null)||{}).marginRight)),e.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=e.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",s=0===i[0].offsetHeight,s&&(i[0].style.display="",i[1].style.display="none",s=0===i[0].offsetHeight),t.removeChild(r))}var t,r,i,o,a,s,u;t=ge.createElement("div"),t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",i=t.getElementsByTagName("a")[0],(r=i&&i.style)&&(r.cssText="float:left;opacity:.5",ae.opacity="0.5"===r.opacity,ae.cssFloat=!!r.cssFloat,t.style.backgroundClip="content-box",t.cloneNode(!0).style.backgroundClip="",ae.clearCloneStyle="content-box"===t.style.backgroundClip,ae.boxSizing=""===r.boxSizing||""===r.MozBoxSizing||""===r.WebkitBoxSizing,se.extend(ae,{reliableHiddenOffsets:function(){return null==s&&e(),s},boxSizingReliable:function(){return null==a&&e(),a},pixelPosition:function(){return null==o&&e(),o},reliableMarginRight:function(){return null==u&&e(),u}}))}(),se.swap=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i};var st=/alpha\([^)]*\)/i,ut=/opacity\s*=\s*([^)]*)/,ct=/^(none|table(?!-c[ea]).+)/,lt=new RegExp("^("+Ae+")(.*)$","i"),ft=new RegExp("^([+-])=("+Ae+")","i"),dt={position:"absolute",visibility:"hidden",display:"block"},ht={letterSpacing:"0",fontWeight:"400"},pt=["Webkit","O","Moz","ms"];se.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=rt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:ae.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=se.camelCase(t),u=e.style;if(t=se.cssProps[s]||(se.cssProps[s]=P(u,s)),a=se.cssHooks[t]||se.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:u[t];if(o=typeof n,"string"===o&&(i=ft.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(se.css(e,t)),o="number"),null!=n&&n===n&&("number"!==o||se.cssNumber[s]||(n+="px"),ae.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(e,n,r)))))try{u[t]=n}catch(e){}}},css:function(e,t,n,r){var i,o,a,s=se.camelCase(t);return t=se.cssProps[s]||(se.cssProps[s]=P(e.style,s)),a=se.cssHooks[t]||se.cssHooks[s],a&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=rt(e,t,r)),"normal"===o&&t in ht&&(o=ht[t]),""===n||n?(i=parseFloat(o),!0===n||se.isNumeric(i)?i||0:o):o}}),se.each(["height","width"],function(e,t){se.cssHooks[t]={get:function(e,n,r){if(n)return ct.test(se.css(e,"display"))&&0===e.offsetWidth?se.swap(e,dt,function(){return I(e,t,r)}):I(e,t,r)},set:function(e,n,r){var i=r&&nt(e);return D(e,n,r?M(e,t,r,ae.boxSizing&&"border-box"===se.css(e,"boxSizing",!1,i),i):0)}}}),ae.opacity||(se.cssHooks.opacity={get:function(e,t){return ut.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=se.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===se.trim(o.replace(st,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=st.test(o)?o.replace(st,i):o+" "+i)}}),se.cssHooks.marginRight=O(ae.reliableMarginRight,function(e,t){if(t)return se.swap(e,{display:"inline-block"},rt,[e,"marginRight"])}),se.each({margin:"",padding:"",border:"Width"},function(e,t){se.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+je[r]+t]=o[r]||o[r-2]||o[0];return i}},it.test(e)||(se.cssHooks[e+t].set=D)}),se.fn.extend({css:function(e,t){return Pe(this,function(e,t,n){var r,i,o={},a=0;if(se.isArray(t)){for(r=nt(e),i=t.length;a<i;a++)o[t[a]]=se.css(e,t[a],!1,r);return o}return void 0!==n?se.style(e,t,n):se.css(e,t)},e,t,arguments.length>1)},show:function(){return N(this,!0)},hide:function(){return N(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Oe(this)?se(this).show():se(this).hide()})}}),se.Tween=L,L.prototype={constructor:L,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(se.cssNumber[n]?"":"px")},cur:function(){var e=L.propHooks[this.prop];return e&&e.get?e.get(this):L.propHooks._default.get(this)},run:function(e){var t,n=L.propHooks[this.prop];return this.options.duration?this.pos=t=se.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):L.propHooks._default.set(this),this}},L.prototype.init.prototype=L.prototype,L.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=se.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){se.fx.step[e.prop]?se.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[se.cssProps[e.prop]]||se.cssHooks[e.prop])?se.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},L.propHooks.scrollTop=L.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},se.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},se.fx=L.prototype.init,se.fx.step={};var vt,mt,gt=/^(?:toggle|show|hide)$/,yt=new RegExp("^(?:([+-])=|)("+Ae+")([a-z%]*)$","i"),bt=/queueHooks$/,wt=[z],_t={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=yt.exec(t),o=i&&i[3]||(se.cssNumber[e]?"":"px"),a=(se.cssNumber[e]||"px"!==o&&+r)&&yt.exec(se.css(n.elem,e)),s=1,u=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do{s=s||".5",a/=s,se.style(n.elem,e,a+o)}while(s!==(s=n.cur()/r)&&1!==s&&--u)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};se.Animation=se.extend(q,{tweener:function(e,t){se.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;r<i;r++)n=e[r],_t[n]=_t[n]||[],_t[n].unshift(t)},prefilter:function(e,t){t?wt.unshift(e):wt.push(e)}}),se.speed=function(e,t,n){var r=e&&"object"==typeof e?se.extend({},e):{complete:n||!n&&t||se.isFunction(e)&&e,duration:e,easing:n&&t||t&&!se.isFunction(t)&&t};return r.duration=se.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in se.fx.speeds?se.fx.speeds[r.duration]:se.fx.speeds._default,null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){se.isFunction(r.old)&&r.old.call(this),r.queue&&se.dequeue(this,r.queue)},r},se.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Oe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=se.isEmptyObject(e),o=se.speed(t,n,r),a=function(){var t=q(this,se.extend({},e),o);(i||se._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=se.timers,a=se._data(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&bt.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||se.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=se._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=se.timers,a=r?r.length:0;for(n.finish=!0,se.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),se.each(["toggle","show","hide"],function(e,t){var n=se.fn[t];se.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(R(t,!0),e,r,i)}}),se.each({slideDown:R("show"),slideUp:R("hide"),slideToggle:R("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){se.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),se.timers=[],se.fx.tick=function(){var e,t=se.timers,n=0;for(vt=se.now();n<t.length;n++)(e=t[n])()||t[n]!==e||t.splice(n--,1);t.length||se.fx.stop(),vt=void 0},se.fx.timer=function(e){se.timers.push(e),e()?se.fx.start():se.timers.pop()},se.fx.interval=13,se.fx.start=function(){mt||(mt=setInterval(se.fx.tick,se.fx.interval))},se.fx.stop=function(){clearInterval(mt),mt=null},se.fx.speeds={slow:600,fast:200,_default:400},se.fn.delay=function(e,t){return e=se.fx?se.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},function(){var e,t,n,r,i;t=ge.createElement("div"),t.setAttribute("className","t"),t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=t.getElementsByTagName("a")[0],n=ge.createElement("select"),i=n.appendChild(ge.createElement("option")),e=t.getElementsByTagName("input")[0],r.style.cssText="top:1px",ae.getSetAttribute="t"!==t.className,ae.style=/top/.test(r.getAttribute("style")),ae.hrefNormalized="/a"===r.getAttribute("href"),ae.checkOn=!!e.value,ae.optSelected=i.selected,ae.enctype=!!ge.createElement("form").enctype,n.disabled=!0,ae.optDisabled=!i.disabled,e=ge.createElement("input"),e.setAttribute("value",""),ae.input=""===e.getAttribute("value"),e.value="t",e.setAttribute("type","radio"),ae.radioValue="t"===e.value}();var Ct=/\r/g;se.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=se.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,se(this).val()):e,null==i?i="":"number"==typeof i?i+="":se.isArray(i)&&(i=se.map(i,function(e){return null==e?"":e+""})),(t=se.valHooks[this.type]||se.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=se.valHooks[i.type]||se.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(Ct,""):null==n?"":n)}}}),se.extend({valHooks:{option:{get:function(e){var t=se.find.attr(e,"value");return null!=t?t:se.trim(se.text(e))}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||i<0,a=o?null:[],s=o?i+1:r.length,u=i<0?s:o?i:0;u<s;u++)if(n=r[u],(n.selected||u===i)&&(ae.optDisabled?!n.disabled:null===n.getAttribute("disabled"))&&(!n.parentNode.disabled||!se.nodeName(n.parentNode,"optgroup"))){if(t=se(n).val(),o)return t;a.push(t)}return a},set:function(e,t){for(var n,r,i=e.options,o=se.makeArray(t),a=i.length;a--;)if(r=i[a],se.inArray(se.valHooks.option.get(r),o)>=0)try{r.selected=n=!0}catch(e){r.scrollHeight}else r.selected=!1;return n||(e.selectedIndex=-1),i}}}}),se.each(["radio","checkbox"],function(){se.valHooks[this]={set:function(e,t){if(se.isArray(t))return e.checked=se.inArray(se(e).val(),t)>=0}},ae.checkOn||(se.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var kt,Et,xt=se.expr.attrHandle,St=/^(?:checked|selected)$/i,Tt=ae.getSetAttribute,At=ae.input;se.fn.extend({attr:function(e,t){return Pe(this,se.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){se.removeAttr(this,e)})}}),se.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(e&&3!==o&&8!==o&&2!==o)return typeof e.getAttribute===xe?se.prop(e,t,n):(1===o&&se.isXMLDoc(e)||(t=t.toLowerCase(),r=se.attrHooks[t]||(se.expr.match.bool.test(t)?Et:kt)),void 0===n?r&&"get"in r&&null!==(i=r.get(e,t))?i:(i=se.find.attr(e,t),null==i?void 0:i):null!==n?r&&"set"in r&&void 0!==(i=r.set(e,n,t))?i:(e.setAttribute(t,n+""),n):void se.removeAttr(e,t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(_e);if(o&&1===e.nodeType)for(;n=o[i++];)r=se.propFix[n]||n,se.expr.match.bool.test(n)?At&&Tt||!St.test(n)?e[r]=!1:e[se.camelCase("default-"+n)]=e[r]=!1:se.attr(e,n,""),e.removeAttribute(Tt?n:r)},attrHooks:{type:{set:function(e,t){if(!ae.radioValue&&"radio"===t&&se.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),Et={set:function(e,t,n){return!1===t?se.removeAttr(e,n):At&&Tt||!St.test(n)?e.setAttribute(!Tt&&se.propFix[n]||n,n):e[se.camelCase("default-"+n)]=e[n]=!0,n}},se.each(se.expr.match.bool.source.match(/\w+/g),function(e,t){var n=xt[t]||se.find.attr;xt[t]=At&&Tt||!St.test(t)?function(e,t,r){var i,o;return r||(o=xt[t],xt[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,xt[t]=o),i}:function(e,t,n){if(!n)return e[se.camelCase("default-"+t)]?t.toLowerCase():null}}),At&&Tt||(se.attrHooks.value={set:function(e,t,n){if(!se.nodeName(e,"input"))return kt&&kt.set(e,t,n);e.defaultValue=t}}),Tt||(kt={set:function(e,t,n){var r=e.getAttributeNode(n);if(r||e.setAttributeNode(r=e.ownerDocument.createAttribute(n)),r.value=t+="","value"===n||t===e.getAttribute(n))return t}},xt.id=xt.name=xt.coords=function(e,t,n){var r;if(!n)return(r=e.getAttributeNode(t))&&""!==r.value?r.value:null},se.valHooks.button={get:function(e,t){var n=e.getAttributeNode(t);if(n&&n.specified)return n.value},set:kt.set},se.attrHooks.contenteditable={set:function(e,t,n){kt.set(e,""!==t&&t,n)}},se.each(["width","height"],function(e,t){se.attrHooks[t]={set:function(e,n){if(""===n)return e.setAttribute(t,"auto"),n}}})),ae.style||(se.attrHooks.style={get:function(e){return e.style.cssText||void 0},set:function(e,t){return e.style.cssText=t+""}});var jt=/^(?:input|select|textarea|button|object)$/i,Ot=/^(?:a|area)$/i;se.fn.extend({prop:function(e,t){return Pe(this,se.prop,e,t,arguments.length>1)},removeProp:function(e){return e=se.propFix[e]||e,this.each(function(){try{this[e]=void 0,delete this[e]}catch(e){}})}}),se.extend({propFix:{for:"htmlFor",class:"className"},prop:function(e,t,n){var r,i,o,a=e.nodeType;if(e&&3!==a&&8!==a&&2!==a)return o=1!==a||!se.isXMLDoc(e),o&&(t=se.propFix[t]||t,i=se.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=se.find.attr(e,"tabindex");return t?parseInt(t,10):jt.test(e.nodeName)||Ot.test(e.nodeName)&&e.href?0:-1}}}}),ae.hrefNormalized||se.each(["href","src"],function(e,t){se.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),ae.optSelected||(se.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),se.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){se.propFix[this.toLowerCase()]=this}),ae.enctype||(se.propFix.enctype="encoding");var Pt=/[\t\r\n\f]/g;se.fn.extend({addClass:function(e){var t,n,r,i,o,a,s=0,u=this.length,c="string"==typeof e&&e;if(se.isFunction(e))return this.each(function(t){se(this).addClass(e.call(this,t,this.className))});if(c)for(t=(e||"").match(_e)||[];s<u;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Pt," "):" ")){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=se.trim(r),n.className!==a&&(n.className=a)}return this},removeClass:function(e){var t,n,r,i,o,a,s=0,u=this.length,c=0===arguments.length||"string"==typeof e&&e;if(se.isFunction(e))return this.each(function(t){se(this).removeClass(e.call(this,t,this.className))});if(c)for(t=(e||"").match(_e)||[];s<u;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Pt," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");a=e?se.trim(r):"",n.className!==a&&(n.className=a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):se.isFunction(e)?this.each(function(n){se(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n)for(var t,r=0,i=se(this),o=e.match(_e)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else n!==xe&&"boolean"!==n||(this.className&&se._data(this,"__className__",this.className),this.className=this.className||!1===e?"":se._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;n<r;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Pt," ").indexOf(t)>=0)return!0;return!1}}),se.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){se.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),se.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var Nt=se.now(),Dt=/\?/,Mt=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;se.parseJSON=function(e){if(n.JSON&&n.JSON.parse)return n.JSON.parse(e+"");var t,r=null,i=se.trim(e+"");return i&&!se.trim(i.replace(Mt,function(e,n,i,o){return t&&n&&(r=0),0===r?e:(t=i||n,r+=!o-!i,"")}))?Function("return "+i)():se.error("Invalid JSON: "+e)},se.parseXML=function(e){var t,r;if(!e||"string"!=typeof e)return null;try{n.DOMParser?(r=new DOMParser,t=r.parseFromString(e,"text/xml")):(t=new ActiveXObject("Microsoft.XMLDOM"),t.async="false",t.loadXML(e))}catch(e){t=void 0}return t&&t.documentElement&&!t.getElementsByTagName("parsererror").length||se.error("Invalid XML: "+e),t};var It,Lt,Ft=/#.*$/,Rt=/([?&])_=[^&]*/,Bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,zt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Wt=/^(?:GET|HEAD)$/,qt=/^\/\//,Ht=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Ut={},Vt={},Qt="*/".concat("*");try{Lt=location.href}catch(e){Lt=ge.createElement("a"),Lt.href="",Lt=Lt.href}It=Ht.exec(Lt.toLowerCase())||[],se.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Lt,type:"GET",isLocal:zt.test(It[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Qt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":se.parseJSON,"text xml":se.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?V(V(e,se.ajaxSettings),t):V(se.ajaxSettings,e)},ajaxPrefilter:H(Ut),ajaxTransport:H(Vt),ajax:function(e,t){function n(e,t,n,r){var i,l,g,y,w,C=t;2!==b&&(b=2,s&&clearTimeout(s),c=void 0,a=r||"",_.readyState=e>0?4:0,i=e>=200&&e<300||304===e,n&&(y=Q(f,_,n)),y=K(f,y,_,i),i?(f.ifModified&&(w=_.getResponseHeader("Last-Modified"),w&&(se.lastModified[o]=w),(w=_.getResponseHeader("etag"))&&(se.etag[o]=w)),204===e||"HEAD"===f.type?C="nocontent":304===e?C="notmodified":(C=y.state,l=y.data,g=y.error,i=!g)):(g=C,!e&&C||(C="error",e<0&&(e=0))),_.status=e,_.statusText=(t||C)+"",i?p.resolveWith(d,[l,C,_]):p.rejectWith(d,[_,C,g]),_.statusCode(m),m=void 0,u&&h.trigger(i?"ajaxSuccess":"ajaxError",[_,f,i?l:g]),v.fireWith(d,[_,C]),u&&(h.trigger("ajaxComplete",[_,f]),--se.active||se.event.trigger("ajaxStop")))}"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,a,s,u,c,l,f=se.ajaxSetup({},t),d=f.context||f,h=f.context&&(d.nodeType||d.jquery)?se(d):se.event,p=se.Deferred(),v=se.Callbacks("once memory"),m=f.statusCode||{},g={},y={},b=0,w="canceled",_={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!l)for(l={};t=Bt.exec(a);)l[t[1].toLowerCase()]=t[2];t=l[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=y[n]=y[n]||e,g[e]=t),this},overrideMimeType:function(e){return b||(f.mimeType=e),this},statusCode:function(e){var t;if(e)if(b<2)for(t in e)m[t]=[m[t],e[t]];else _.always(e[_.status]);return this},abort:function(e){var t=e||w;return c&&c.abort(t),n(0,t),this}};if(p.promise(_).complete=v.add,_.success=_.done,_.error=_.fail,f.url=((e||f.url||Lt)+"").replace(Ft,"").replace(qt,It[1]+"//"),f.type=t.method||t.type||f.method||f.type,f.dataTypes=se.trim(f.dataType||"*").toLowerCase().match(_e)||[""],null==f.crossDomain&&(r=Ht.exec(f.url.toLowerCase()),f.crossDomain=!(!r||r[1]===It[1]&&r[2]===It[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(It[3]||("http:"===It[1]?"80":"443")))),f.data&&f.processData&&"string"!=typeof f.data&&(f.data=se.param(f.data,f.traditional)),U(Ut,f,t,_),2===b)return _;u=f.global,u&&0==se.active++&&se.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!Wt.test(f.type),o=f.url,f.hasContent||(f.data&&(o=f.url+=(Dt.test(o)?"&":"?")+f.data,delete f.data),!1===f.cache&&(f.url=Rt.test(o)?o.replace(Rt,"$1_="+Nt++):o+(Dt.test(o)?"&":"?")+"_="+Nt++)),f.ifModified&&(se.lastModified[o]&&_.setRequestHeader("If-Modified-Since",se.lastModified[o]),se.etag[o]&&_.setRequestHeader("If-None-Match",se.etag[o])),(f.data&&f.hasContent&&!1!==f.contentType||t.contentType)&&_.setRequestHeader("Content-Type",f.contentType),_.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Qt+"; q=0.01":""):f.accepts["*"]);for(i in f.headers)_.setRequestHeader(i,f.headers[i]);if(f.beforeSend&&(!1===f.beforeSend.call(d,_,f)||2===b))return _.abort();w="abort";for(i in{success:1,error:1,complete:1})_[i](f[i]);if(c=U(Vt,f,t,_)){_.readyState=1,u&&h.trigger("ajaxSend",[_,f]),f.async&&f.timeout>0&&(s=setTimeout(function(){_.abort("timeout")},f.timeout));try{b=1,c.send(g,n)}catch(e){if(!(b<2))throw e;n(-1,e)}}else n(-1,"No Transport");return _},getJSON:function(e,t,n){return se.get(e,t,n,"json")},getScript:function(e,t){return se.get(e,void 0,t,"script")}}),se.each(["get","post"],function(e,t){se[t]=function(e,n,r,i){return se.isFunction(n)&&(i=i||r,r=n,n=void 0),se.ajax({url:e,type:t,dataType:i,data:n,success:r})}}),se.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){se.fn[t]=function(e){return this.on(t,e)}}),se._evalUrl=function(e){return se.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,throws:!0})},se.fn.extend({wrapAll:function(e){if(se.isFunction(e))return this.each(function(t){se(this).wrapAll(e.call(this,t))});if(this[0]){var t=se(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return se.isFunction(e)?this.each(function(t){se(this).wrapInner(e.call(this,t))}):this.each(function(){var t=se(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=se.isFunction(e);return this.each(function(n){se(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){se.nodeName(this,"body")||se(this).replaceWith(this.childNodes)}).end()}}),se.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0||!ae.reliableHiddenOffsets()&&"none"===(e.style&&e.style.display||se.css(e,"display"))},se.expr.filters.visible=function(e){return!se.expr.filters.hidden(e)};var Kt=/%20/g,$t=/\[\]$/,Gt=/\r?\n/g,Zt=/^(?:submit|button|image|reset|file)$/i,Yt=/^(?:input|select|textarea|keygen)/i;se.param=function(e,t){var n,r=[],i=function(e,t){t=se.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=se.ajaxSettings&&se.ajaxSettings.traditional),se.isArray(e)||e.jquery&&!se.isPlainObject(e))se.each(e,function(){i(this.name,this.value)});else for(n in e)$(n,e[n],t,i);return r.join("&").replace(Kt,"+")},se.fn.extend({serialize:function(){return se.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=se.prop(this,"elements");return e?se.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!se(this).is(":disabled")&&Yt.test(this.nodeName)&&!Zt.test(e)&&(this.checked||!Ne.test(e))}).map(function(e,t){var n=se(this).val();return null==n?null:se.isArray(n)?se.map(n,function(e){return{name:t.name,value:e.replace(Gt,"\r\n")}}):{name:t.name,value:n.replace(Gt,"\r\n")}}).get()}}),se.ajaxSettings.xhr=void 0!==n.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&G()||Z()}:G;var Xt=0,Jt={},en=se.ajaxSettings.xhr();n.ActiveXObject&&se(n).on("unload",function(){for(var e in Jt)Jt[e](void 0,!0)}),ae.cors=!!en&&"withCredentials"in en,en=ae.ajax=!!en,en&&se.ajaxTransport(function(e){if(!e.crossDomain||ae.cors){var t;return{send:function(n,r){var i,o=e.xhr(),a=++Xt;if(o.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)o[i]=e.xhrFields[i];e.mimeType&&o.overrideMimeType&&o.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)void 0!==n[i]&&o.setRequestHeader(i,n[i]+"");o.send(e.hasContent&&e.data||null),t=function(n,i){var s,u,c;if(t&&(i||4===o.readyState))if(delete Jt[a],t=void 0,o.onreadystatechange=se.noop,i)4!==o.readyState&&o.abort();else{c={},s=o.status,"string"==typeof o.responseText&&(c.text=o.responseText);try{u=o.statusText}catch(e){u=""}s||!e.isLocal||e.crossDomain?1223===s&&(s=204):s=c.text?200:404}c&&r(s,u,c,o.getAllResponseHeaders())},e.async?4===o.readyState?setTimeout(t):o.onreadystatechange=Jt[a]=t:t()},abort:function(){t&&t(void 0,!0)}}}}),se.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return se.globalEval(e),e}}}),se.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),se.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=ge.head||se("head")[0]||ge.documentElement;return{send:function(r,i){t=ge.createElement("script"),t.async=!0,e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,n){(n||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,t.parentNode&&t.parentNode.removeChild(t),t=null,n||i(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(void 0,!0)}}}});var tn=[],nn=/(=)\?(?=&|$)|\?\?/;se.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=tn.pop()||se.expando+"_"+Nt++;return this[e]=!0,e}}),se.ajaxPrefilter("json jsonp",function(e,t,r){var i,o,a,s=!1!==e.jsonp&&(nn.test(e.url)?"url":"string"==typeof e.data&&!(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&nn.test(e.data)&&"data");if(s||"jsonp"===e.dataTypes[0])return i=e.jsonpCallback=se.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(nn,"$1"+i):!1!==e.jsonp&&(e.url+=(Dt.test(e.url)?"&":"?")+e.jsonp+"="+i),e.converters["script json"]=function(){return a||se.error(i+" was not called"),a[0]},e.dataTypes[0]="json",o=n[i],n[i]=function(){a=arguments},r.always(function(){n[i]=o,e[i]&&(e.jsonpCallback=t.jsonpCallback,tn.push(i)),a&&se.isFunction(o)&&o(a[0]),a=o=void 0}),"script"}),se.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||ge;var r=pe.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=se.buildFragment([e],t,i),i&&i.length&&se(i).remove(),se.merge([],r.childNodes))};var rn=se.fn.load;se.fn.load=function(e,t,n){if("string"!=typeof e&&rn)return rn.apply(this,arguments);var r,i,o,a=this,s=e.indexOf(" ");return s>=0&&(r=se.trim(e.slice(s,e.length)),e=e.slice(0,s)),se.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&se.ajax({url:e,type:o,dataType:"html",data:t}).done(function(e){i=arguments,a.html(r?se("<div>").append(se.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){a.each(n,i||[e.responseText,t,e])}),this},se.expr.filters.animated=function(e){return se.grep(se.timers,function(t){return e===t.elem}).length};var on=n.document.documentElement;se.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,c,l=se.css(e,"position"),f=se(e),d={};"static"===l&&(e.style.position="relative"),s=f.offset(),o=se.css(e,"top"),u=se.css(e,"left"),c=("absolute"===l||"fixed"===l)&&se.inArray("auto",[o,u])>-1,c?(r=f.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),se.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(d.top=t.top-s.top+a),null!=t.left&&(d.left=t.left-s.left+i),"using"in t?t.using.call(e,d):f.css(d)}},se.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){se.offset.setOffset(this,e,t)});var t,n,r={top:0,left:0},i=this[0],o=i&&i.ownerDocument;if(o)return t=o.documentElement,se.contains(t,i)?(typeof i.getBoundingClientRect!==xe&&(r=i.getBoundingClientRect()),n=Y(o),{top:r.top+(n.pageYOffset||t.scrollTop)-(t.clientTop||0),left:r.left+(n.pageXOffset||t.scrollLeft)-(t.clientLeft||0)}):r},position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===se.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),se.nodeName(e[0],"html")||(n=e.offset()),n.top+=se.css(e[0],"borderTopWidth",!0),n.left+=se.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-se.css(r,"marginTop",!0),left:t.left-n.left-se.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||on;e&&!se.nodeName(e,"html")&&"static"===se.css(e,"position");)e=e.offsetParent;return e||on})}}),se.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);se.fn[e]=function(r){return Pe(this,function(e,r,i){var o=Y(e);if(void 0===i)return o?t in o?o[t]:o.document.documentElement[r]:e[r];o?o.scrollTo(n?se(o).scrollLeft():i,n?i:se(o).scrollTop()):e[r]=i},e,r,arguments.length,null)}}),se.each(["top","left"],function(e,t){se.cssHooks[t]=O(ae.pixelPosition,function(e,n){if(n)return n=rt(e,t),ot.test(n)?se(e).position()[t]+"px":n})}),se.each({Height:"height",Width:"width"},function(e,t){se.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){se.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),a=n||(!0===r||!0===i?"margin":"border");return Pe(this,function(t,n,r){var i;return se.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?se.css(t,n,a):se.style(t,n,r,a)},t,o?r:void 0,o,null)}})}),se.fn.size=function(){return this.length},se.fn.andSelf=se.fn.addBack,r=[],void 0!==(i=function(){return se}.apply(t,r))&&(e.exports=i);var an=n.jQuery,sn=n.$;return se.noConflict=function(e){return n.$===se&&(n.$=sn),e&&n.jQuery===se&&(n.jQuery=an),se},typeof o===xe&&(n.jQuery=n.$=se),se})},,function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";function r(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:window).devicePixelRatio||1}function i(){return window.location}function o(e){window.location=e}function a(){return window.history}function s(){return window.onpopstate}function u(e){window.onpopstate=e}function c(){return window.screen}function l(){return document}Object.defineProperty(t,"__esModule",{value:!0}),t.devicePixelRatio=r,t.history=a,t.location=i,t.onpopstate=s,t.redirectTo=o,t.screen=c,t.setOnpopstate=u,t.getDocument=l},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){(0,g.default)(function(){return l(e)})}function o(e){var t=h(e);return t.set(null),scrivito.ObjReplication.get(e).notifyBackendState(null),t}function a(e){var t=e._id;h(t).isAvailable()||u(t,e),scrivito.ObjReplication.get(t).notifyBackendState(e)}function s(e){u(e,{_deleted:!0})}function u(e,t){h(e).set(t)}function c(e,t){h(e).setError(t)}function l(e){var t=h(e);if(void 0!==t.current)return t}function f(){d().clear()}function d(){return y.cmsState.subState("objData")}function h(e){return new v.default(e,d().subState(e))}Object.defineProperty(t,"__esModule",{value:!0}),t.preload=i,t.createObjData=o,t.store=a,t.setNonexistent=s,t.set=u,t.setError=c,t.get=l,t.clearCache=f;var p=n(154),v=r(p),m=n(8),g=r(m),y=n(5)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.BinaryType=t.ObjSearchType=t.LinkType=t.WidgetType=t.ObjType=void 0;var i=n(21),o=n(3),a=r(o),s=n(30),u=r(s),c=n(35),l=r(c),f=n(48),d=r(f),h=n(24),p=r(h);t.ObjType=i.tcomb.irreducible("Obj",function(e){return(e&&e._scrivitoPrivateContent)instanceof a.default}),t.WidgetType=i.tcomb.irreducible("Widget",function(e){return(e&&e._scrivitoPrivateContent)instanceof u.default}),t.LinkType=i.tcomb.irreducible("Link",function(e){return(e&&e._scrivitoPrivateContent)instanceof l.default}),t.ObjSearchType=i.tcomb.irreducible("ObjSearch",function(e){return e._scrivitoPrivateContent instanceof d.default}),t.BinaryType=i.tcomb.irreducible("Binary",function(e){return e instanceof p.default})},function(e,t,n){"use strict";function r(){return u}function i(e){u=e}Object.defineProperty(t,"__esModule",{value:!0}),t.setWindowContext=t.getWindowContext=void 0;var o=n(260),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=n(197),u={};a.default.init(u).setInitialContentFor(s.initialContentFor),t.getWindowContext=r,t.setWindowContext=i},function(e,t,n){"use strict";function r(){return(0,i.getWindowContext)()._privateRealm._registry}Object.defineProperty(t,"__esModule",{value:!0}),t.getWindowRegistry=void 0;var i=n(55);t.getWindowRegistry=r},function(e,t,n){"use strict";function r(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function i(e){var t=e.routingBasePath;S=!0,x=t||""}function o(){S=!1,x=void 0}function a(e){var t=e.obj,n=e.queryParameters,r=e.hash;return d("generate"),s({path:_.generate(t),queryParameters:n,hash:r})}function s(e){var t=e.path,n=e.queryParameters,r=e.hash;d("generateUrl");var i=(0,y.default)(k.location()).origin(),o=("/"+x+"/"+t).replace(/\/+/g,"/"),a=(0,y.default)(i).pathname(o);return n&&a.query(n),r&&a.hash(r),a.toString()}function u(e){d("recognize");var t=null,n=c(e);return(0,b.isString)(n)&&(t=_.recognize(n)),{path:n,obj:t,queryParameters:v(e),hash:m(e)}}function c(e){return h(e)?p(e):null}function l(e){return h(e)?v(e):null}function f(e){return h(e)?m(e):null}function d(e){if(!S)throw scrivito.logError("Error from Scrivito SDK: No application configured, cannot initialize routing."),new E.InternalError(e+" can't be called before init.")}function h(e){var t=(0,y.default)(k.location()).origin(),n=(0,y.default)(e);return!n.is("absolute")||n.origin()===t}function p(e){var t=(0,y.default)(e).path();return t.substring(0,x.length)!==x?null:t.substring(x.length)}function v(e){return(0,y.default)(e).query(!0)}function m(e){var t=(0,y.default)(e).hash();return""===t?null:t}Object.defineProperty(t,"__esModule",{value:!0}),t.init=i,t.reset=o,t.generate=a,t.generateUrl=s,t.recognize=u,t.recognizePath=c,t.recognizeQueryParameters=l,t.recognizeHash=f;var g=n(33),y=function(e){return e&&e.__esModule?e:{default:e}}(g),b=n(0),w=n(200),_=r(w),C=n(52),k=r(C),E=n(1),x=void 0,S=!1},,,function(e,t){e.exports=function(e){return"string"==typeof e}},function(e,t){e.exports=function(e){return!0===e||!1===e}},function(e,t,n){var r=n(14),i=n(9);e.exports=r("Function",i)},,function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(24),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=n(34),u=n(54),c=n(5),l=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,e);var i=void 0;if(t.idToCopy)this.idToCopy=t.idToCopy,this.contentType=n.contentType,i=n.filename;else{var o=t.source;this.source=o,this.contentType=n.contentType||o.type,i=n.filename||o.name}i&&(this.filename=i.replace(/[^\w\-_\.$]/g,"-"))}return i(e,[{key:"into",value:function(e){return f(e),(0,c.failIfFrozen)("Changing CMS content"),this.intoId(e.id())}},{key:"intoId",value:function(e){var t=void 0;return t=this.idToCopy?scrivito.BinaryRequest.copy(this.idToCopy,e,this.filename,this.contentType):scrivito.BinaryRequest.upload(e,this.source,this.filename,this.contentType),t.then(function(e){var t=e.id;return new a.default(t,!1)})}}]),e}(),f=(0,s.checkArgumentsFor)("FutureBinary#into",[["target",u.ObjType]],{docPermalink:"js-sdk/FutureBinary-into"});t.default=l},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){var e=l(),t=e.objId;if((0,E.isNull)(t))return t;if(t)try{return scrivito.loadWithDefault(void 0,function(){var e=(0,N.getWindowContext)().appModelAccessor,n=(0,N.getWindowContext)().Obj,r=e.getObj(n,t);if(r)return r;throw new j.ResourceNotFoundError('Obj with id "'+t+'" not found.')})}catch(e){return void(0,I.default)(function(){return p(L,e)})}}function o(){return l().queryParameters||{}}function a(){return l().error}function s(e){u(e,function(e){var t=e.obj,n=e.queryParameters,r=e.hash;t&&scrivito.BrowserLocation.replaceWith({obj:t,queryParameters:n,hash:r})})}function u(e,t){if(!(0,E.isFunction)(e))throw new j.ArgumentError("Parameter fn needs to be a function.");var n=d();(0,P.default)(e).then(function(e){if(e.obj)return(0,P.default)(function(){return g(e.obj,e.queryParameters,e.hash)}).then(function(e){var r=e.obj,i=e.url,o=e.queryParameters,a=e.hash;t({obj:r,queryParameters:o,hash:a}),i?h(n,function(){return scrivito.changeLocation(i)}):h(n,function(){return v({obj:r,queryParameters:o,hash:a})})});p(n,new j.CurrentPageNotFoundError)}).catch(function(e){e instanceof j.NavigateToEmptyBinaryError||((0,M.throwNextTick)(e),p(n,e))})}function c(){return D.appState.subState("currentPage")}function l(){return c().get()||{}}function f(e){c().set(e)}function d(){return L+=1}function h(e,t){L===e&&t()}function p(e,t){h(e,function(){f({objId:null,error:t}),m(null)})}function v(e){var t=e.obj,n=e.queryParameters,r=e.hash,i=t&&t.id()||null;f({objId:i,queryParameters:n,hash:r}),m(i)}function m(e){scrivito.uiAdapter&&scrivito.uiAdapter.setCurrentPageId(e)}function g(e,t,n){return w(e),null===e?{}:e instanceof k.default?y(e,t,n):e instanceof A.default?b(e,t,n):void 0}function y(e,t,n){if(_(e)){var r=e.get("blob",["binary"]);if(!r)throw new j.NavigateToEmptyBinaryError;return{url:r.url()}}return{obj:e,queryParameters:t,hash:n}}function b(e,t,n){if(e.isExternal())return{url:e.url()};var r={obj:e.obj(),queryParameters:e.queryParameters(),hash:e.hash()};return t&&!(0,E.isEmpty)(t)&&(r.queryParameters=t),n&&(r.hash=n),g(r.obj,r.queryParameters,r.hash)}function w(e){if(!(0,E.isNull)(e)&&!(e instanceof k.default||e instanceof A.default)){if(!e)throw new j.ArgumentError("Missing target.");throw new j.ArgumentError("Target is invalid. Valid targets are instances of Obj or Link.")}}function _(e){var t=(0,N.getWindowContext)().getClass(e.objClass());return!!t&&S.default.forClass(t).isBinary()}Object.defineProperty(t,"__esModule",{value:!0}),t.setCurrentPage=t.replaceCurrentPage=t.currentPageError=t.currentPageParams=t.currentPage=void 0;var C=n(3),k=r(C),E=n(0),x=n(38),S=r(x),T=n(35),A=r(T),j=n(1),O=n(8),P=r(O),N=n(55),D=n(5),M=n(36),I=r(M),L=0;t.currentPage=i,t.currentPageParams=o,t.currentPageError=a,t.replaceCurrentPage=s,t.setCurrentPage=u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){}return e.prototype.current=function(){return this.currentContext},e.prototype.runWith=function(e,t){var n=this.currentContext;try{return this.currentContext=e,t()}finally{this.currentContext=n}},e}();t.default=r},function(e,t,n){var r=n(14);e.exports=r("Any",function(){return!0})},function(e,t,n){function r(e,t){return"{"+c(e)+" | "+l(t)+"}"}function i(e,t,n){function i(t,n){var r=s(e,t,n);return r}var c=n||r(e,t),l=a(e);return i.meta={kind:"subtype",type:e,predicate:t,name:n,identity:l},i.displayName=c,i.is=function(n){return u(n,e)&&t(n)},i.update=function(e,t){return i(o.update(e,t))},i}var o=n(4),a=(n(18),n(9),n(46),n(27)),s=n(28),u=n(29),c=n(7),l=n(45);i.getDefaultName=r,e.exports=i},function(e,t,n){var r=n(14),i=n(60);e.exports=r("String",i)},function(e,t,n){function r(e,t){return"{[key: "+a(e)+"]: "+a(t)+"}"}function i(e,t,n){function i(n,r){if(d)return n;var i=!0,o={};for(var a in n)if(n.hasOwnProperty(a)){a=c(e,a,null);var s=n[a],u=c(t,s,null);i=i&&s===u,o[a]=u}return i&&(o=n),o}var f=n||r(e,t),d=(a(e),a(t),s(e)&&s(t));return i.meta={kind:"dict",domain:e,codomain:t,name:n,identity:d},i.displayName=f,i.is=function(n){if(!u(n))return!1;for(var r in n)if(n.hasOwnProperty(r)&&(!l(r,e)||!l(n[r],t)))return!1;return!0},i.update=function(e,t){return i(o.update(e,t))},i}var o=n(4),a=(n(18),n(9),n(7)),s=n(27),u=n(25),c=n(28),l=n(29);i.getDefaultName=r,e.exports=i},function(e,t,n){var r=n(23);n(4);e.exports=function(e,t,n){if(r(t))return e;for(var i in t)t.hasOwnProperty(i)&&(e[i]=t[i]);return e}},function(e,t,n){"use strict";function r(e,t){var n=u[e];if(n)return n[t]}function i(e,t){p(e,t),u[e]=t}Object.defineProperty(t,"__esModule",{value:!0});var o=n(21),a=n(34),s=n(54),u={};t.getEditingConfigFor=r;var c=o.tcomb.struct({value:o.tcomb.String,title:o.tcomb.String}),l=o.tcomb.dict(o.tcomb.String,o.tcomb.struct({title:o.tcomb.maybe(o.tcomb.String),description:o.tcomb.maybe(o.tcomb.String),values:o.tcomb.maybe(o.tcomb.list(c))})),f=o.tcomb.list(o.tcomb.struct({title:o.tcomb.String,component:o.tcomb.maybe(o.tcomb.String),properties:o.tcomb.maybe(o.tcomb.list(o.tcomb.String))})),d=o.tcomb.dict(o.tcomb.String,o.tcomb.union([s.LinkType,o.tcomb.Date,o.tcomb.Function,o.tcomb.Nil,o.tcomb.Number,o.tcomb.String,o.tcomb.list(s.LinkType),o.tcomb.list(s.WidgetType),o.tcomb.list(o.tcomb.String)])),h=o.tcomb.struct({attributes:o.tcomb.maybe(l),propertiesGroups:o.tcomb.maybe(f),title:o.tcomb.maybe(o.tcomb.String),description:o.tcomb.maybe(o.tcomb.String),thumbnail:o.tcomb.maybe(o.tcomb.String),titleForContent:o.tcomb.maybe(o.tcomb.Function),descriptionForContent:o.tcomb.maybe(o.tcomb.Function),thumbnailForContent:o.tcomb.maybe(o.tcomb.Function),hideInSelectionDialogs:o.tcomb.maybe(o.tcomb.Boolean),properties:o.tcomb.maybe(o.tcomb.list(o.tcomb.String)),initialContent:o.tcomb.maybe(d)}),p=a.checkArgumentsFor("provideEditingConfig",[["className",o.tcomb.String],["editingConfig",h]],{docPermalink:"js-sdk/provideEditingConfig"});t.provideEditingConfig=i},function(e,t){e.exports=ReactDOM},function(e,t,n){"use strict";function r(e,t){c[e]=t}function i(e){return c[e]||null}function o(e,t){r(s(e),t)}function a(e){return i(s(e))}function s(e){return"appClass-"+e}function u(){c={}}Object.defineProperty(t,"__esModule",{value:!0});var c={};t.clearComponentRegistry=u,t.getComponentForAppClass=a,t.getComponentForId=i,t.registerComponentForAppClass=o,t.registerComponentForId=r},function(e,t,n){"use strict";function r(){return!!scrivito.uiAdapter&&scrivito.uiAdapter.isEditingMode()}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},,function(e,t,n){"use strict";function r(e,t){if(!e)return t;if(!t)return null;var n={};return o(e,t,function(r,i,o){"_widget_pool"===r?n._widget_pool=s(i,o):t.hasOwnProperty(r)?o&&(n[r]=o):n[r]=e[r]}),n}function i(e,t){if(!e)return t;if(!t)return null;var n={};return o(e,t,function(e,t,r){if("_widget_pool"===e){var i=c(t,r);d.default.isEmpty(i)||(n._widget_pool=i)}else{var o=u(t,r,function(){if(!d.default.isEqual(t,r))return r});void 0!==o&&(n[e]=o)}}),n}function o(e,t,n){d.default.union(d.default.keys(e),d.default.keys(t)).forEach(function(r){return n(r,a(e[r]),a(t[r]))})}function a(e){if(d.default.isArray(e)){var t=l(e,2),n=t[0],r=t[1];return"binary"===n&&r?[n,d.default.omit(r,"url")]:e}return e}function s(e,t){if(!t||d.default.isEmpty(t))return e;var n={};return o(e||{},t||{},function(e,i,o){t.hasOwnProperty(e)?o&&!i?n[e]=o:o&&(n[e]=r(i,o)):n[e]=i}),n}function u(e,t,n){return!e&&t?t:e&&!t?null:e&&t?n():void 0}function c(e,t){if(e===t)return{};var n={};return o(e,t,function(e,t,r){var o=u(t,r,function(){var e=i(t,r);if(!d.default.isEmpty(e))return e});void 0!==o&&(n[e]=o)}),n}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.apply=r,t.diff=i;var f=n(0),d=function(e){return e&&e.__esModule?e:{default:e}}(f)},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function i(e){if(l===setTimeout)return setTimeout(e,0);if((l===n||!l)&&setTimeout)return l=setTimeout,setTimeout(e,0);try{return l(e,0)}catch(t){try{return l.call(null,e,0)}catch(t){return l.call(this,e,0)}}}function o(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function a(){v&&h&&(v=!1,h.length?p=h.concat(p):m=-1,p.length&&s())}function s(){if(!v){var e=i(a);v=!0;for(var t=p.length;t;){for(h=p,p=[];++m<t;)h&&h[m].run();m=-1,t=p.length}h=null,v=!1,o(e)}}function u(e,t){this.fun=e,this.array=t}function c(){}var l,f,d=e.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:n}catch(e){l=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(e){f=r}}();var h,p=[],v=!1,m=-1;d.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];p.push(new u(e,t)),1!==p.length||v||i(s)},u.prototype.run=function(){this.fun.apply(null,this.array)},d.title="browser",d.browser=!0,d.env={},d.argv=[],d.version="",d.versions={},d.on=c,d.addListener=c,d.once=c,d.off=c,d.removeListener=c,d.removeAllListeners=c,d.emit=c,d.binding=function(e){throw new Error("process.binding is not supported")},d.cwd=function(){return"/"},d.chdir=function(e){throw new Error("process.chdir is not supported")},d.umask=function(){return 0}},function(e,t,n){"use strict";function r(e,t){(0,l.failIfFrozen)("navigateTo"),m(e,t);var n=void 0,r=void 0;if(t){n=t.params||{},r=t.hash;var a=(0,o.omit)(t,"hash","params");g(e,a),n=(0,o.extend)(a,n)}(0,d.setCurrentPage)(function(){return{obj:(0,h.unwrapAppClassValue)((0,o.isFunction)(e)?e():e),queryParameters:n,hash:r}},i)}function i(e){var t=e.obj,n=e.queryParameters,r=e.hash;t&&((0,u.default)(),scrivito.BrowserLocation.pushWith({obj:t,queryParameters:n,hash:r}))}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var o=n(0),a=n(21),s=n(259),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=n(54),l=n(5),f=n(34),d=n(65),h=n(22),p=a.tcomb.union([a.tcomb.Function,a.tcomb.irreducible("null",function(e){return null===e}),c.ObjType,c.LinkType]),v=a.tcomb.dict(a.tcomb.String,a.tcomb.maybe(a.tcomb.String)),m=(0,f.checkArgumentsFor)("navigateTo",[["target",p],["options",a.tcomb.maybe(a.tcomb.struct({hash:a.tcomb.maybe(a.tcomb.String),params:a.tcomb.maybe(v)},{strict:!1}))]],{docPermalink:"js-sdk/navigateTo"}),g=(0,f.checkArgumentsFor)("navigateTo",[["target",p],["options",a.tcomb.maybe(v)]],{docPermalink:"js-sdk/navigateTo"})},,,function(e,t,n){(function(e,r){var i;!function(o){function a(e){throw new RangeError(N[e])}function s(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function u(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),e=e.replace(P,"."),r+s(e.split("."),t).join(".")}function c(e){for(var t,n,r=[],i=0,o=e.length;i<o;)t=e.charCodeAt(i++),t>=55296&&t<=56319&&i<o?(n=e.charCodeAt(i++),56320==(64512&n)?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),i--)):r.push(t);return r}function l(e){return s(e,function(e){var t="";return e>65535&&(e-=65536,t+=I(e>>>10&1023|55296),e=56320|1023&e),t+=I(e)}).join("")}function f(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:_}function d(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function h(e,t,n){var r=0;for(e=n?M(e/x):e>>1,e+=M(e/t);e>D*k>>1;r+=_)e=M(e/D);return M(r+(D+1)*e/(e+E))}function p(e){var t,n,r,i,o,s,u,c,d,p,v=[],m=e.length,g=0,y=T,b=S;for(n=e.lastIndexOf(A),n<0&&(n=0),r=0;r<n;++r)e.charCodeAt(r)>=128&&a("not-basic"),v.push(e.charCodeAt(r));for(i=n>0?n+1:0;i<m;){for(o=g,s=1,u=_;i>=m&&a("invalid-input"),c=f(e.charCodeAt(i++)),(c>=_||c>M((w-g)/s))&&a("overflow"),g+=c*s,d=u<=b?C:u>=b+k?k:u-b,!(c<d);u+=_)p=_-d,s>M(w/p)&&a("overflow"),s*=p;t=v.length+1,b=h(g-o,t,0==o),M(g/t)>w-y&&a("overflow"),y+=M(g/t),g%=t,v.splice(g++,0,y)}return l(v)}function v(e){var t,n,r,i,o,s,u,l,f,p,v,m,g,y,b,E=[];for(e=c(e),m=e.length,t=T,n=0,o=S,s=0;s<m;++s)(v=e[s])<128&&E.push(I(v));for(r=i=E.length,i&&E.push(A);r<m;){for(u=w,s=0;s<m;++s)(v=e[s])>=t&&v<u&&(u=v);for(g=r+1,u-t>M((w-n)/g)&&a("overflow"),n+=(u-t)*g,t=u,s=0;s<m;++s)if(v=e[s],v<t&&++n>w&&a("overflow"),v==t){for(l=n,f=_;p=f<=o?C:f>=o+k?k:f-o,!(l<p);f+=_)b=l-p,y=_-p,E.push(I(d(p+b%y,0))),l=M(b/y);E.push(I(d(l,0))),o=h(n,g,r==i),n=0,++r}++n,++t}return E.join("")}function m(e){return u(e,function(e){return j.test(e)?p(e.slice(4).toLowerCase()):e})}function g(e){return u(e,function(e){return O.test(e)?"xn--"+v(e):e})}var y=("object"==typeof t&&t&&t.nodeType,"object"==typeof e&&e&&e.nodeType,"object"==typeof r&&r);var b,w=2147483647,_=36,C=1,k=26,E=38,x=700,S=72,T=128,A="-",j=/^xn--/,O=/[^\x20-\x7E]/,P=/[\x2E\u3002\uFF0E\uFF61]/g,N={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},D=_-C,M=Math.floor,I=String.fromCharCode;b={version:"1.3.2",ucs2:{decode:c,encode:l},decode:p,encode:v,toASCII:g,toUnicode:m},void 0!==(i=function(){return b}.call(t,n,t,e))&&(e.exports=i)}()}).call(t,n(78)(e),n(51))},function(e,t,n){var r,i;/*!
43
+ function(t){function e(t,e,n,r){var i,o,a,s,c,f,d,h,p,v;if((e?e.ownerDocument||e:M)!==T&&A(e),e=e||T,n=n||[],!t||"string"!=typeof t)return n;if(1!==(s=e.nodeType)&&9!==s)return[];if(P&&!r){if(i=yt.exec(t))if(a=i[1]){if(9===s){if(!(o=e.getElementById(a))||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(e.ownerDocument&&(o=e.ownerDocument.getElementById(a))&&q(e,o)&&o.id===a)return n.push(o),n}else{if(i[2])return G.apply(n,e.getElementsByTagName(t)),n;if((a=i[3])&&g.getElementsByClassName&&e.getElementsByClassName)return G.apply(n,e.getElementsByClassName(a)),n}if(g.qsa&&(!L||!L.test(t))){if(h=d=R,p=e,v=9===s&&t,1===s&&"object"!==e.nodeName.toLowerCase()){for(f=O(t),(d=e.getAttribute("id"))?h=d.replace(bt,"\\$&"):e.setAttribute("id",h),h="[id='"+h+"'] ",c=f.length;c--;)f[c]=h+l(f[c]);p=mt.test(t)&&u(e.parentNode)||e,v=f.join(",")}if(v)try{return G.apply(n,p.querySelectorAll(v)),n}catch(t){}finally{d||e.removeAttribute("id")}}}return x(t.replace(at,"$1"),e,n,r)}function n(){function t(n,r){return e.push(n+" ")>w.cacheLength&&delete t[e.shift()],t[n+" "]=r}var e=[];return t}function r(t){return t[R]=!0,t}function i(t){var e=T.createElement("div");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function o(t,e){for(var n=t.split("|"),r=t.length;r--;)w.attrHandle[n[r]]=e}function a(t,e){var n=e&&t,r=n&&1===t.nodeType&&1===e.nodeType&&(~e.sourceIndex||V)-(~t.sourceIndex||V);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function s(t){return r(function(e){return e=+e,r(function(n,r){for(var i,o=t([],n.length,e),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function u(t){return t&&typeof t.getElementsByTagName!==K&&t}function c(){}function l(t){for(var e=0,n=t.length,r="";e<n;e++)r+=t[e].value;return r}function f(t,e,n){var r=e.dir,i=n&&"parentNode"===r,o=F++;return e.first?function(e,n,o){for(;e=e[r];)if(1===e.nodeType||i)return t(e,n,o)}:function(e,n,a){var s,u,c=[B,o];if(a){for(;e=e[r];)if((1===e.nodeType||i)&&t(e,n,a))return!0}else for(;e=e[r];)if(1===e.nodeType||i){if(u=e[R]||(e[R]={}),(s=u[r])&&s[0]===B&&s[1]===o)return c[2]=s[2];if(u[r]=c,c[2]=t(e,n,a))return!0}}}function d(t){return t.length>1?function(e,n,r){for(var i=t.length;i--;)if(!t[i](e,n,r))return!1;return!0}:t[0]}function h(t,n,r){for(var i=0,o=n.length;i<o;i++)e(t,n[i],r);return r}function p(t,e,n,r,i){for(var o,a=[],s=0,u=t.length,c=null!=e;s<u;s++)(o=t[s])&&(n&&!n(o,r,i)||(a.push(o),c&&e.push(s)));return a}function v(t,e,n,i,o,a){return i&&!i[R]&&(i=v(i)),o&&!o[R]&&(o=v(o,a)),r(function(r,a,s,u){var c,l,f,d=[],v=[],y=a.length,m=r||h(e||"*",s.nodeType?[s]:s,[]),b=!t||!r&&e?m:p(m,d,t,s,u),g=n?o||(r?t:y||i)?[]:a:b;if(n&&n(b,g,s,u),i)for(c=p(g,v),i(c,[],s,u),l=c.length;l--;)(f=c[l])&&(g[v[l]]=!(b[v[l]]=f));if(r){if(o||t){if(o){for(c=[],l=g.length;l--;)(f=g[l])&&c.push(b[l]=f);o(null,g=[],c,u)}for(l=g.length;l--;)(f=g[l])&&(c=o?J.call(r,f):d[l])>-1&&(r[c]=!(a[c]=f))}}else g=p(g===a?g.splice(y,g.length):g),o?o(null,a,g,u):G.apply(a,g)})}function y(t){for(var e,n,r,i=t.length,o=w.relative[t[0].type],a=o||w.relative[" "],s=o?1:0,u=f(function(t){return t===e},a,!0),c=f(function(t){return J.call(e,t)>-1},a,!0),h=[function(t,n,r){return!o&&(r||n!==C)||((e=n).nodeType?u(t,n,r):c(t,n,r))}];s<i;s++)if(n=w.relative[t[s].type])h=[f(d(h),n)];else{if(n=w.filter[t[s].type].apply(null,t[s].matches),n[R]){for(r=++s;r<i&&!w.relative[t[r].type];r++);return v(s>1&&d(h),s>1&&l(t.slice(0,s-1).concat({value:" "===t[s-2].type?"*":""})).replace(at,"$1"),n,s<r&&y(t.slice(s,r)),r<i&&y(t=t.slice(r)),r<i&&l(t))}h.push(n)}return d(h)}function m(t,n){var i=n.length>0,o=t.length>0,a=function(r,a,s,u,c){var l,f,d,h=0,v="0",y=r&&[],m=[],b=C,g=r||o&&w.find.TAG("*",c),_=B+=null==b?1:Math.random()||.1,k=g.length;for(c&&(C=a!==T&&a);v!==k&&null!=(l=g[v]);v++){if(o&&l){for(f=0;d=t[f++];)if(d(l,a,s)){u.push(l);break}c&&(B=_)}i&&((l=!d&&l)&&h--,r&&y.push(l))}if(h+=v,i&&v!==h){for(f=0;d=n[f++];)d(y,m,a,s);if(r){if(h>0)for(;v--;)y[v]||m[v]||(m[v]=$.call(u));m=p(m)}G.apply(u,m),c&&!r&&m.length>0&&h+n.length>1&&e.uniqueSort(u)}return c&&(B=_,C=b),y};return i?r(a):a}var b,g,w,_,k,O,E,x,C,j,S,A,T,N,P,L,I,D,q,R="sizzle"+-new Date,M=t.document,B=0,F=0,z=n(),U=n(),H=n(),W=function(t,e){return t===e&&(S=!0),0},K="undefined",V=1<<31,Q={}.hasOwnProperty,Y=[],$=Y.pop,Z=Y.push,G=Y.push,X=Y.slice,J=Y.indexOf||function(t){for(var e=0,n=this.length;e<n;e++)if(this[e]===t)return e;return-1},tt="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",et="[\\x20\\t\\r\\n\\f]",nt="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",rt=nt.replace("w","w#"),it="\\["+et+"*("+nt+")(?:"+et+"*([*^$|!~]?=)"+et+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+rt+"))|)"+et+"*\\]",ot=":("+nt+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+it+")*)|.*)\\)|)",at=new RegExp("^"+et+"+|((?:^|[^\\\\])(?:\\\\.)*)"+et+"+$","g"),st=new RegExp("^"+et+"*,"+et+"*"),ut=new RegExp("^"+et+"*([>+~]|"+et+")"+et+"*"),ct=new RegExp("="+et+"*([^\\]'\"]*?)"+et+"*\\]","g"),lt=new RegExp(ot),ft=new RegExp("^"+rt+"$"),dt={ID:new RegExp("^#("+nt+")"),CLASS:new RegExp("^\\.("+nt+")"),TAG:new RegExp("^("+nt.replace("w","w*")+")"),ATTR:new RegExp("^"+it),PSEUDO:new RegExp("^"+ot),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+et+"*(even|odd|(([+-]|)(\\d*)n|)"+et+"*(?:([+-]|)"+et+"*(\\d+)|))"+et+"*\\)|)","i"),bool:new RegExp("^(?:"+tt+")$","i"),needsContext:new RegExp("^"+et+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+et+"*((?:-\\d)?\\d*)"+et+"*\\)|)(?=[^-]|$)","i")},ht=/^(?:input|select|textarea|button)$/i,pt=/^h\d$/i,vt=/^[^{]+\{\s*\[native \w/,yt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,mt=/[+~]/,bt=/'|\\/g,gt=new RegExp("\\\\([\\da-f]{1,6}"+et+"?|("+et+")|.)","ig"),wt=function(t,e,n){var r="0x"+e-65536;return r!==r||n?e:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)};try{G.apply(Y=X.call(M.childNodes),M.childNodes),Y[M.childNodes.length].nodeType}catch(t){G={apply:Y.length?function(t,e){Z.apply(t,X.call(e))}:function(t,e){for(var n=t.length,r=0;t[n++]=e[r++];);t.length=n-1}}}g=e.support={},k=e.isXML=function(t){var e=t&&(t.ownerDocument||t).documentElement;return!!e&&"HTML"!==e.nodeName},A=e.setDocument=function(t){var e,n=t?t.ownerDocument||t:M,r=n.defaultView;return n!==T&&9===n.nodeType&&n.documentElement?(T=n,N=n.documentElement,P=!k(n),r&&r!==r.top&&(r.addEventListener?r.addEventListener("unload",function(){A()},!1):r.attachEvent&&r.attachEvent("onunload",function(){A()})),g.attributes=i(function(t){return t.className="i",!t.getAttribute("className")}),g.getElementsByTagName=i(function(t){return t.appendChild(n.createComment("")),!t.getElementsByTagName("*").length}),g.getElementsByClassName=vt.test(n.getElementsByClassName)&&i(function(t){return t.innerHTML="<div class='a'></div><div class='a i'></div>",t.firstChild.className="i",2===t.getElementsByClassName("i").length}),g.getById=i(function(t){return N.appendChild(t).id=R,!n.getElementsByName||!n.getElementsByName(R).length}),g.getById?(w.find.ID=function(t,e){if(typeof e.getElementById!==K&&P){var n=e.getElementById(t);return n&&n.parentNode?[n]:[]}},w.filter.ID=function(t){var e=t.replace(gt,wt);return function(t){return t.getAttribute("id")===e}}):(delete w.find.ID,w.filter.ID=function(t){var e=t.replace(gt,wt);return function(t){var n=typeof t.getAttributeNode!==K&&t.getAttributeNode("id");return n&&n.value===e}}),w.find.TAG=g.getElementsByTagName?function(t,e){if(typeof e.getElementsByTagName!==K)return e.getElementsByTagName(t)}:function(t,e){var n,r=[],i=0,o=e.getElementsByTagName(t);if("*"===t){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},w.find.CLASS=g.getElementsByClassName&&function(t,e){if(typeof e.getElementsByClassName!==K&&P)return e.getElementsByClassName(t)},I=[],L=[],(g.qsa=vt.test(n.querySelectorAll))&&(i(function(t){t.innerHTML="<select msallowclip=''><option selected=''></option></select>",t.querySelectorAll("[msallowclip^='']").length&&L.push("[*^$]="+et+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||L.push("\\["+et+"*(?:value|"+tt+")"),t.querySelectorAll(":checked").length||L.push(":checked")}),i(function(t){var e=n.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&L.push("name"+et+"*[*^$|!~]?="),t.querySelectorAll(":enabled").length||L.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),L.push(",.*:")})),(g.matchesSelector=vt.test(D=N.matches||N.webkitMatchesSelector||N.mozMatchesSelector||N.oMatchesSelector||N.msMatchesSelector))&&i(function(t){g.disconnectedMatch=D.call(t,"div"),D.call(t,"[s!='']:x"),I.push("!=",ot)}),L=L.length&&new RegExp(L.join("|")),I=I.length&&new RegExp(I.join("|")),e=vt.test(N.compareDocumentPosition),q=e||vt.test(N.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,r=e&&e.parentNode;return t===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):t.compareDocumentPosition&&16&t.compareDocumentPosition(r)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},W=e?function(t,e){if(t===e)return S=!0,0;var r=!t.compareDocumentPosition-!e.compareDocumentPosition;return r||(r=(t.ownerDocument||t)===(e.ownerDocument||e)?t.compareDocumentPosition(e):1,1&r||!g.sortDetached&&e.compareDocumentPosition(t)===r?t===n||t.ownerDocument===M&&q(M,t)?-1:e===n||e.ownerDocument===M&&q(M,e)?1:j?J.call(j,t)-J.call(j,e):0:4&r?-1:1)}:function(t,e){if(t===e)return S=!0,0;var r,i=0,o=t.parentNode,s=e.parentNode,u=[t],c=[e];if(!o||!s)return t===n?-1:e===n?1:o?-1:s?1:j?J.call(j,t)-J.call(j,e):0;if(o===s)return a(t,e);for(r=t;r=r.parentNode;)u.unshift(r);for(r=e;r=r.parentNode;)c.unshift(r);for(;u[i]===c[i];)i++;return i?a(u[i],c[i]):u[i]===M?-1:c[i]===M?1:0},n):T},e.matches=function(t,n){return e(t,null,null,n)},e.matchesSelector=function(t,n){if((t.ownerDocument||t)!==T&&A(t),n=n.replace(ct,"='$1']"),g.matchesSelector&&P&&(!I||!I.test(n))&&(!L||!L.test(n)))try{var r=D.call(t,n);if(r||g.disconnectedMatch||t.document&&11!==t.document.nodeType)return r}catch(t){}return e(n,T,null,[t]).length>0},e.contains=function(t,e){return(t.ownerDocument||t)!==T&&A(t),q(t,e)},e.attr=function(t,e){(t.ownerDocument||t)!==T&&A(t);var n=w.attrHandle[e.toLowerCase()],r=n&&Q.call(w.attrHandle,e.toLowerCase())?n(t,e,!P):void 0;return void 0!==r?r:g.attributes||!P?t.getAttribute(e):(r=t.getAttributeNode(e))&&r.specified?r.value:null},e.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},e.uniqueSort=function(t){var e,n=[],r=0,i=0;if(S=!g.detectDuplicates,j=!g.sortStable&&t.slice(0),t.sort(W),S){for(;e=t[i++];)e===t[i]&&(r=n.push(i));for(;r--;)t.splice(n[r],1)}return j=null,t},_=e.getText=function(t){var e,n="",r=0,i=t.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=_(t)}else if(3===i||4===i)return t.nodeValue}else for(;e=t[r++];)n+=_(e);return n},w=e.selectors={cacheLength:50,createPseudo:r,match:dt,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(gt,wt),t[3]=(t[3]||t[4]||t[5]||"").replace(gt,wt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||e.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&e.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return dt.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&lt.test(n)&&(e=O(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(gt,wt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=z[t+" "];return e||(e=new RegExp("(^|"+et+")"+t+"("+et+"|$)"))&&z(t,function(t){return e.test("string"==typeof t.className&&t.className||typeof t.getAttribute!==K&&t.getAttribute("class")||"")})},ATTR:function(t,n,r){return function(i){var o=e.attr(i,t);return null==o?"!="===n:!n||(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o+" ").indexOf(r)>-1:"|="===n&&(o===r||o.slice(0,r.length+1)===r+"-"))}},CHILD:function(t,e,n,r,i){var o="nth"!==t.slice(0,3),a="last"!==t.slice(-4),s="of-type"===e;return 1===r&&0===i?function(t){return!!t.parentNode}:function(e,n,u){var c,l,f,d,h,p,v=o!==a?"nextSibling":"previousSibling",y=e.parentNode,m=s&&e.nodeName.toLowerCase(),b=!u&&!s;if(y){if(o){for(;v;){for(f=e;f=f[v];)if(s?f.nodeName.toLowerCase()===m:1===f.nodeType)return!1;p=v="only"===t&&!p&&"nextSibling"}return!0}if(p=[a?y.firstChild:y.lastChild],a&&b){for(l=y[R]||(y[R]={}),c=l[t]||[],h=c[0]===B&&c[1],d=c[0]===B&&c[2],f=h&&y.childNodes[h];f=++h&&f&&f[v]||(d=h=0)||p.pop();)if(1===f.nodeType&&++d&&f===e){l[t]=[B,h,d];break}}else if(b&&(c=(e[R]||(e[R]={}))[t])&&c[0]===B)d=c[1];else for(;(f=++h&&f&&f[v]||(d=h=0)||p.pop())&&((s?f.nodeName.toLowerCase()!==m:1!==f.nodeType)||!++d||(b&&((f[R]||(f[R]={}))[t]=[B,d]),f!==e)););return(d-=i)===r||d%r==0&&d/r>=0}}},PSEUDO:function(t,n){var i,o=w.pseudos[t]||w.setFilters[t.toLowerCase()]||e.error("unsupported pseudo: "+t);return o[R]?o(n):o.length>1?(i=[t,t,"",n],w.setFilters.hasOwnProperty(t.toLowerCase())?r(function(t,e){for(var r,i=o(t,n),a=i.length;a--;)r=J.call(t,i[a]),t[r]=!(e[r]=i[a])}):function(t){return o(t,0,i)}):o}},pseudos:{not:r(function(t){var e=[],n=[],i=E(t.replace(at,"$1"));return i[R]?r(function(t,e,n,r){for(var o,a=i(t,null,r,[]),s=t.length;s--;)(o=a[s])&&(t[s]=!(e[s]=o))}):function(t,r,o){return e[0]=t,i(e,null,o,n),!n.pop()}}),has:r(function(t){return function(n){return e(t,n).length>0}}),contains:r(function(t){return function(e){return(e.textContent||e.innerText||_(e)).indexOf(t)>-1}}),lang:r(function(t){return ft.test(t||"")||e.error("unsupported lang: "+t),t=t.replace(gt,wt).toLowerCase(),function(e){var n;do{if(n=P?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(n=n.toLowerCase())===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===N},focus:function(t){return t===T.activeElement&&(!T.hasFocus||T.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:function(t){return!1===t.disabled},disabled:function(t){return!0===t.disabled},checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!w.pseudos.empty(t)},header:function(t){return pt.test(t.nodeName)},input:function(t){return ht.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:s(function(){return[0]}),last:s(function(t,e){return[e-1]}),eq:s(function(t,e,n){return[n<0?n+e:n]}),even:s(function(t,e){for(var n=0;n<e;n+=2)t.push(n);return t}),odd:s(function(t,e){for(var n=1;n<e;n+=2)t.push(n);return t}),lt:s(function(t,e,n){for(var r=n<0?n+e:n;--r>=0;)t.push(r);return t}),gt:s(function(t,e,n){for(var r=n<0?n+e:n;++r<e;)t.push(r);return t})}},w.pseudos.nth=w.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})w.pseudos[b]=function(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}(b);for(b in{submit:!0,reset:!0})w.pseudos[b]=function(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}(b);return c.prototype=w.filters=w.pseudos,w.setFilters=new c,O=e.tokenize=function(t,n){var r,i,o,a,s,u,c,l=U[t+" "];if(l)return n?0:l.slice(0);for(s=t,u=[],c=w.preFilter;s;){r&&!(i=st.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),r=!1,(i=ut.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(at," ")}),s=s.slice(r.length));for(a in w.filter)!(i=dt[a].exec(s))||c[a]&&!(i=c[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?e.error(t):U(t,u).slice(0)},E=e.compile=function(t,e){var n,r=[],i=[],o=H[t+" "];if(!o){for(e||(e=O(t)),n=e.length;n--;)o=y(e[n]),o[R]?r.push(o):i.push(o);o=H(t,m(i,r)),o.selector=t}return o},x=e.select=function(t,e,n,r){var i,o,a,s,c,f="function"==typeof t&&t,d=!r&&O(t=f.selector||t);if(n=n||[],1===d.length){if(o=d[0]=d[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&g.getById&&9===e.nodeType&&P&&w.relative[o[1].type]){if(!(e=(w.find.ID(a.matches[0].replace(gt,wt),e)||[])[0]))return n;f&&(e=e.parentNode),t=t.slice(o.shift().value.length)}for(i=dt.needsContext.test(t)?0:o.length;i--&&(a=o[i],!w.relative[s=a.type]);)if((c=w.find[s])&&(r=c(a.matches[0].replace(gt,wt),mt.test(o[0].type)&&u(e.parentNode)||e))){if(o.splice(i,1),!(t=r.length&&l(o)))return G.apply(n,r),n;break}}return(f||E(t,d))(r,e,!P,n,mt.test(t)&&u(e.parentNode)||e),n},g.sortStable=R.split("").sort(W).join("")===R,g.detectDuplicates=!!S,A(),g.sortDetached=i(function(t){return 1&t.compareDocumentPosition(T.createElement("div"))}),i(function(t){return t.innerHTML="<a href='#'></a>","#"===t.firstChild.getAttribute("href")})||o("type|href|height|width",function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)}),g.attributes&&i(function(t){return t.innerHTML="<input/>",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")})||o("value",function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue}),i(function(t){return null==t.getAttribute("disabled")})||o(tt,function(t,e,n){var r;if(!n)return!0===t[e]?e.toLowerCase():(r=t.getAttributeNode(e))&&r.specified?r.value:null}),e}(n);st.find=dt,st.expr=dt.selectors,st.expr[":"]=st.expr.pseudos,st.unique=dt.uniqueSort,st.text=dt.getText,st.isXMLDoc=dt.isXML,st.contains=dt.contains;var ht=st.expr.match.needsContext,pt=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,vt=/^.[^:#\[\.,]*$/;st.filter=function(t,e,n){var r=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===r.nodeType?st.find.matchesSelector(r,t)?[r]:[]:st.find.matches(t,st.grep(e,function(t){return 1===t.nodeType}))},st.fn.extend({find:function(t){var e,n=[],r=this,i=r.length;if("string"!=typeof t)return this.pushStack(st(t).filter(function(){for(e=0;e<i;e++)if(st.contains(r[e],this))return!0}));for(e=0;e<i;e++)st.find(t,r[e],n);return n=this.pushStack(i>1?st.unique(n):n),n.selector=this.selector?this.selector+" "+t:t,n},filter:function(t){return this.pushStack(s(this,t||[],!1))},not:function(t){return this.pushStack(s(this,t||[],!0))},is:function(t){return!!s(this,"string"==typeof t&&ht.test(t)?st(t):t||[],!1).length}});var yt,mt=n.document,bt=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(st.fn.init=function(t,e){var n,r;if(!t)return this;if("string"==typeof t){if(!(n="<"===t.charAt(0)&&">"===t.charAt(t.length-1)&&t.length>=3?[null,t,null]:bt.exec(t))||!n[1]&&e)return!e||e.jquery?(e||yt).find(t):this.constructor(e).find(t);if(n[1]){if(e=e instanceof st?e[0]:e,st.merge(this,st.parseHTML(n[1],e&&e.nodeType?e.ownerDocument||e:mt,!0)),pt.test(n[1])&&st.isPlainObject(e))for(n in e)st.isFunction(this[n])?this[n](e[n]):this.attr(n,e[n]);return this}if((r=mt.getElementById(n[2]))&&r.parentNode){if(r.id!==n[2])return yt.find(t);this.length=1,this[0]=r}return this.context=mt,this.selector=t,this}return t.nodeType?(this.context=this[0]=t,this.length=1,this):st.isFunction(t)?void 0!==yt.ready?yt.ready(t):t(st):(void 0!==t.selector&&(this.selector=t.selector,this.context=t.context),st.makeArray(t,this))}).prototype=st.fn,yt=st(mt);var gt=/^(?:parents|prev(?:Until|All))/,wt={children:!0,contents:!0,next:!0,prev:!0};st.extend({dir:function(t,e,n){for(var r=[],i=t[e];i&&9!==i.nodeType&&(void 0===n||1!==i.nodeType||!st(i).is(n));)1===i.nodeType&&r.push(i),i=i[e];return r},sibling:function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n}}),st.fn.extend({has:function(t){var e,n=st(t,this),r=n.length;return this.filter(function(){for(e=0;e<r;e++)if(st.contains(this,n[e]))return!0})},closest:function(t,e){for(var n,r=0,i=this.length,o=[],a=ht.test(t)||"string"!=typeof t?st(t,e||this.context):0;r<i;r++)for(n=this[r];n&&n!==e;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&st.find.matchesSelector(n,t))){o.push(n);break}return this.pushStack(o.length>1?st.unique(o):o)},index:function(t){return t?"string"==typeof t?st.inArray(this[0],st(t)):st.inArray(t.jquery?t[0]:t,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(st.unique(st.merge(this.get(),st(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),st.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return st.dir(t,"parentNode")},parentsUntil:function(t,e,n){return st.dir(t,"parentNode",n)},next:function(t){return u(t,"nextSibling")},prev:function(t){return u(t,"previousSibling")},nextAll:function(t){return st.dir(t,"nextSibling")},prevAll:function(t){return st.dir(t,"previousSibling")},nextUntil:function(t,e,n){return st.dir(t,"nextSibling",n)},prevUntil:function(t,e,n){return st.dir(t,"previousSibling",n)},siblings:function(t){return st.sibling((t.parentNode||{}).firstChild,t)},children:function(t){return st.sibling(t.firstChild)},contents:function(t){return st.nodeName(t,"iframe")?t.contentDocument||t.contentWindow.document:st.merge([],t.childNodes)}},function(t,e){st.fn[t]=function(n,r){var i=st.map(this,e,n);return"Until"!==t.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=st.filter(r,i)),this.length>1&&(wt[t]||(i=st.unique(i)),gt.test(t)&&(i=i.reverse())),this.pushStack(i)}});var _t=/\S+/g,kt={};st.Callbacks=function(t){t="string"==typeof t?kt[t]||c(t):st.extend({},t);var e,n,r,i,o,a,s=[],u=!t.once&&[],l=function(c){for(n=t.memory&&c,r=!0,o=a||0,a=0,i=s.length,e=!0;s&&o<i;o++)if(!1===s[o].apply(c[0],c[1])&&t.stopOnFalse){n=!1;break}e=!1,s&&(u?u.length&&l(u.shift()):n?s=[]:f.disable())},f={add:function(){if(s){var r=s.length;!function e(n){st.each(n,function(n,r){var i=st.type(r);"function"===i?t.unique&&f.has(r)||s.push(r):r&&r.length&&"string"!==i&&e(r)})}(arguments),e?i=s.length:n&&(a=r,l(n))}return this},remove:function(){return s&&st.each(arguments,function(t,n){for(var r;(r=st.inArray(n,s,r))>-1;)s.splice(r,1),e&&(r<=i&&i--,r<=o&&o--)}),this},has:function(t){return t?st.inArray(t,s)>-1:!(!s||!s.length)},empty:function(){return s=[],i=0,this},disable:function(){return s=u=n=void 0,this},disabled:function(){return!s},lock:function(){return u=void 0,n||f.disable(),this},locked:function(){return!u},fireWith:function(t,n){return!s||r&&!u||(n=n||[],n=[t,n.slice?n.slice():n],e?u.push(n):l(n)),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!r}};return f},st.extend({Deferred:function(t){var e=[["resolve","done",st.Callbacks("once memory"),"resolved"],["reject","fail",st.Callbacks("once memory"),"rejected"],["notify","progress",st.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var t=arguments;return st.Deferred(function(n){st.each(e,function(e,o){var a=st.isFunction(t[e])&&t[e];i[o[1]](function(){var t=a&&a.apply(this,arguments);t&&st.isFunction(t.promise)?t.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[o[0]+"With"](this===r?n.promise():this,a?[t]:arguments)})}),t=null}).promise()},promise:function(t){return null!=t?st.extend(t,r):r}},i={};return r.pipe=r.then,st.each(e,function(t,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},e[1^t][2].disable,e[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),t&&t.call(i,i),i},when:function(t){var e,n,r,i=0,o=J.call(arguments),a=o.length,s=1!==a||t&&st.isFunction(t.promise)?a:0,u=1===s?t:st.Deferred(),c=function(t,n,r){return function(i){n[t]=this,r[t]=arguments.length>1?J.call(arguments):i,r===e?u.notifyWith(n,r):--s||u.resolveWith(n,r)}};if(a>1)for(e=new Array(a),n=new Array(a),r=new Array(a);i<a;i++)o[i]&&st.isFunction(o[i].promise)?o[i].promise().done(c(i,r,o)).fail(u.reject).progress(c(i,n,e)):--s;return s||u.resolveWith(r,o),u.promise()}});var Ot;st.fn.ready=function(t){return st.ready.promise().done(t),this},st.extend({isReady:!1,readyWait:1,holdReady:function(t){t?st.readyWait++:st.ready(!0)},ready:function(t){if(!0===t?!--st.readyWait:!st.isReady){if(!mt.body)return setTimeout(st.ready);st.isReady=!0,!0!==t&&--st.readyWait>0||(Ot.resolveWith(mt,[st]),st.fn.triggerHandler&&(st(mt).triggerHandler("ready"),st(mt).off("ready")))}}}),st.ready.promise=function(t){if(!Ot)if(Ot=st.Deferred(),"complete"===mt.readyState)setTimeout(st.ready);else if(mt.addEventListener)mt.addEventListener("DOMContentLoaded",f,!1),n.addEventListener("load",f,!1);else{mt.attachEvent("onreadystatechange",f),n.attachEvent("onload",f);var e=!1;try{e=null==n.frameElement&&mt.documentElement}catch(t){}e&&e.doScroll&&function t(){if(!st.isReady){try{e.doScroll("left")}catch(e){return setTimeout(t,50)}l(),st.ready()}}()}return Ot.promise(t)};var Et,xt="undefined";for(Et in st(at))break;at.ownLast="0"!==Et,at.inlineBlockNeedsLayout=!1,st(function(){var t,e,n,r;(n=mt.getElementsByTagName("body")[0])&&n.style&&(e=mt.createElement("div"),r=mt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(e),typeof e.style.zoom!==xt&&(e.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",at.inlineBlockNeedsLayout=t=3===e.offsetWidth,t&&(n.style.zoom=1)),n.removeChild(r))}),function(){var t=mt.createElement("div");if(null==at.deleteExpando){at.deleteExpando=!0;try{delete t.test}catch(t){at.deleteExpando=!1}}t=null}(),st.acceptData=function(t){var e=st.noData[(t.nodeName+" ").toLowerCase()],n=+t.nodeType||1;return(1===n||9===n)&&(!e||!0!==e&&t.getAttribute("classid")===e)};var Ct=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,jt=/([A-Z])/g;st.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(t){return!!(t=t.nodeType?st.cache[t[st.expando]]:t[st.expando])&&!h(t)},data:function(t,e,n){return p(t,e,n)},removeData:function(t,e){return v(t,e)},_data:function(t,e,n){return p(t,e,n,!0)},_removeData:function(t,e){return v(t,e,!0)}}),st.fn.extend({data:function(t,e){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===t){if(this.length&&(i=st.data(o),1===o.nodeType&&!st._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=st.camelCase(r.slice(5)),d(o,r,i[r])));st._data(o,"parsedAttrs",!0)}return i}return"object"==typeof t?this.each(function(){st.data(this,t)}):arguments.length>1?this.each(function(){st.data(this,t,e)}):o?d(o,t,st.data(o,t)):void 0},removeData:function(t){return this.each(function(){st.removeData(this,t)})}}),st.extend({queue:function(t,e,n){var r;if(t)return e=(e||"fx")+"queue",r=st._data(t,e),n&&(!r||st.isArray(n)?r=st._data(t,e,st.makeArray(n)):r.push(n)),r||[]},dequeue:function(t,e){e=e||"fx";var n=st.queue(t,e),r=n.length,i=n.shift(),o=st._queueHooks(t,e),a=function(){st.dequeue(t,e)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===e&&n.unshift("inprogress"),delete o.stop,i.call(t,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return st._data(t,n)||st._data(t,n,{empty:st.Callbacks("once memory").add(function(){st._removeData(t,e+"queue"),st._removeData(t,n)})})}}),st.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length<n?st.queue(this[0],t):void 0===e?this:this.each(function(){var n=st.queue(this,t,e);st._queueHooks(this,t),"fx"===t&&"inprogress"!==n[0]&&st.dequeue(this,t)})},dequeue:function(t){return this.each(function(){st.dequeue(this,t)})},clearQueue:function(t){return this.queue(t||"fx",[])},promise:function(t,e){var n,r=1,i=st.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof t&&(e=t,t=void 0),t=t||"fx";a--;)(n=st._data(o[a],t+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(e)}});var St=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,At=["Top","Right","Bottom","Left"],Tt=function(t,e){return t=e||t,"none"===st.css(t,"display")||!st.contains(t.ownerDocument,t)},Nt=st.access=function(t,e,n,r,i,o,a){var s=0,u=t.length,c=null==n;if("object"===st.type(n)){i=!0;for(s in n)st.access(t,e,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,st.isFunction(r)||(a=!0),c&&(a?(e.call(t,r),e=null):(c=e,e=function(t,e,n){return c.call(st(t),n)})),e))for(;s<u;s++)e(t[s],n,a?r:r.call(t[s],s,e(t[s],n)));return i?t:c?e.call(t):u?e(t[0],n):o},Pt=/^(?:checkbox|radio)$/i;!function(){var t=mt.createElement("input"),e=mt.createElement("div"),n=mt.createDocumentFragment();if(e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",at.leadingWhitespace=3===e.firstChild.nodeType,at.tbody=!e.getElementsByTagName("tbody").length,at.htmlSerialize=!!e.getElementsByTagName("link").length,at.html5Clone="<:nav></:nav>"!==mt.createElement("nav").cloneNode(!0).outerHTML,t.type="checkbox",t.checked=!0,n.appendChild(t),at.appendChecked=t.checked,e.innerHTML="<textarea>x</textarea>",at.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue,n.appendChild(e),e.innerHTML="<input type='radio' checked='checked' name='t'/>",at.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,at.noCloneEvent=!0,e.attachEvent&&(e.attachEvent("onclick",function(){at.noCloneEvent=!1}),e.cloneNode(!0).click()),null==at.deleteExpando){at.deleteExpando=!0;try{delete e.test}catch(t){at.deleteExpando=!1}}}(),function(){var t,e,r=mt.createElement("div");for(t in{submit:!0,change:!0,focusin:!0})e="on"+t,(at[t+"Bubbles"]=e in n)||(r.setAttribute(e,"t"),at[t+"Bubbles"]=!1===r.attributes[e].expando);r=null}();var Lt=/^(?:input|select|textarea)$/i,It=/^key/,Dt=/^(?:mouse|pointer|contextmenu)|click/,qt=/^(?:focusinfocus|focusoutblur)$/,Rt=/^([^.]*)(?:\.(.+)|)$/;st.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,c,l,f,d,h,p,v,y=st._data(t);if(y){for(n.handler&&(u=n,n=u.handler,i=u.selector),n.guid||(n.guid=st.guid++),(a=y.events)||(a=y.events={}),(l=y.handle)||(l=y.handle=function(t){return typeof st===xt||t&&st.event.triggered===t.type?void 0:st.event.dispatch.apply(l.elem,arguments)},l.elem=t),e=(e||"").match(_t)||[""],s=e.length;s--;)o=Rt.exec(e[s])||[],h=v=o[1],p=(o[2]||"").split(".").sort(),h&&(c=st.event.special[h]||{},h=(i?c.delegateType:c.bindType)||h,c=st.event.special[h]||{},f=st.extend({type:h,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&st.expr.match.needsContext.test(i),namespace:p.join(".")},u),(d=a[h])||(d=a[h]=[],d.delegateCount=0,c.setup&&!1!==c.setup.call(t,r,p,l)||(t.addEventListener?t.addEventListener(h,l,!1):t.attachEvent&&t.attachEvent("on"+h,l))),c.add&&(c.add.call(t,f),f.handler.guid||(f.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,f):d.push(f),st.event.global[h]=!0);t=null}},remove:function(t,e,n,r,i){var o,a,s,u,c,l,f,d,h,p,v,y=st.hasData(t)&&st._data(t);if(y&&(l=y.events)){for(e=(e||"").match(_t)||[""],c=e.length;c--;)if(s=Rt.exec(e[c])||[],h=v=s[1],p=(s[2]||"").split(".").sort(),h){for(f=st.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,d=l[h]||[],s=s[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=d.length;o--;)a=d[o],!i&&v!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(d.splice(o,1),a.selector&&d.delegateCount--,f.remove&&f.remove.call(t,a));u&&!d.length&&(f.teardown&&!1!==f.teardown.call(t,p,y.handle)||st.removeEvent(t,h,y.handle),delete l[h])}else for(h in l)st.event.remove(t,h+e[c],n,r,!0);st.isEmptyObject(l)&&(delete y.handle,st._removeData(t,"events"))}},trigger:function(t,e,r,i){var o,a,s,u,c,l,f,d=[r||mt],h=ot.call(t,"type")?t.type:t,p=ot.call(t,"namespace")?t.namespace.split("."):[];if(s=l=r=r||mt,3!==r.nodeType&&8!==r.nodeType&&!qt.test(h+st.event.triggered)&&(h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,t=t[st.expando]?t:new st.Event(h,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=p.join("."),t.namespace_re=t.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),e=null==e?[t]:st.makeArray(e,[t]),c=st.event.special[h]||{},i||!c.trigger||!1!==c.trigger.apply(r,e))){if(!i&&!c.noBubble&&!st.isWindow(r)){for(u=c.delegateType||h,qt.test(u+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),l=s;l===(r.ownerDocument||mt)&&d.push(l.defaultView||l.parentWindow||n)}for(f=0;(s=d[f++])&&!t.isPropagationStopped();)t.type=f>1?u:c.bindType||h,o=(st._data(s,"events")||{})[t.type]&&st._data(s,"handle"),o&&o.apply(s,e),(o=a&&s[a])&&o.apply&&st.acceptData(s)&&(t.result=o.apply(s,e),!1===t.result&&t.preventDefault());if(t.type=h,!i&&!t.isDefaultPrevented()&&(!c._default||!1===c._default.apply(d.pop(),e))&&st.acceptData(r)&&a&&r[h]&&!st.isWindow(r)){l=r[a],l&&(r[a]=null),st.event.triggered=h;try{r[h]()}catch(t){}st.event.triggered=void 0,l&&(r[a]=l)}return t.result}},dispatch:function(t){t=st.event.fix(t);var e,n,r,i,o,a=[],s=J.call(arguments),u=(st._data(this,"events")||{})[t.type]||[],c=st.event.special[t.type]||{};if(s[0]=t,t.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,t)){for(a=st.event.handlers.call(this,t,u),e=0;(i=a[e++])&&!t.isPropagationStopped();)for(t.currentTarget=i.elem,o=0;(r=i.handlers[o++])&&!t.isImmediatePropagationStopped();)t.namespace_re&&!t.namespace_re.test(r.namespace)||(t.handleObj=r,t.data=r.data,void 0!==(n=((st.event.special[r.origType]||{}).handle||r.handler).apply(i.elem,s))&&!1===(t.result=n)&&(t.preventDefault(),t.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,t),t.result}},handlers:function(t,e){var n,r,i,o,a=[],s=e.delegateCount,u=t.target;if(s&&u.nodeType&&(!t.button||"click"!==t.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(!0!==u.disabled||"click"!==t.type)){for(i=[],o=0;o<s;o++)r=e[o],n=r.selector+" ",void 0===i[n]&&(i[n]=r.needsContext?st(n,this).index(u)>=0:st.find(n,this,null,[u]).length),i[n]&&i.push(r);i.length&&a.push({elem:u,handlers:i})}return s<e.length&&a.push({elem:this,handlers:e.slice(s)}),a},fix:function(t){if(t[st.expando])return t;var e,n,r,i=t.type,o=t,a=this.fixHooks[i];for(a||(this.fixHooks[i]=a=Dt.test(i)?this.mouseHooks:It.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,t=new st.Event(o),e=r.length;e--;)n=r[e],t[n]=o[n];return t.target||(t.target=o.srcElement||mt),3===t.target.nodeType&&(t.target=t.target.parentNode),t.metaKey=!!t.metaKey,a.filter?a.filter(t,o):t},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(t,e){return null==t.which&&(t.which=null!=e.charCode?e.charCode:e.keyCode),t}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(t,e){var n,r,i,o=e.button,a=e.fromElement;return null==t.pageX&&null!=e.clientX&&(r=t.target.ownerDocument||mt,i=r.documentElement,n=r.body,t.pageX=e.clientX+(i&&i.scrollLeft||n&&n.scrollLeft||0)-(i&&i.clientLeft||n&&n.clientLeft||0),t.pageY=e.clientY+(i&&i.scrollTop||n&&n.scrollTop||0)-(i&&i.clientTop||n&&n.clientTop||0)),!t.relatedTarget&&a&&(t.relatedTarget=a===t.target?e.toElement:a),t.which||void 0===o||(t.which=1&o?1:2&o?3:4&o?2:0),t}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==b()&&this.focus)try{return this.focus(),!1}catch(t){}},delegateType:"focusin"},blur:{trigger:function(){if(this===b()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if(st.nodeName(this,"input")&&"checkbox"===this.type&&this.click)return this.click(),!1},_default:function(t){return st.nodeName(t.target,"a")}},beforeunload:{postDispatch:function(t){void 0!==t.result&&t.originalEvent&&(t.originalEvent.returnValue=t.result)}}},simulate:function(t,e,n,r){var i=st.extend(new st.Event,n,{type:t,isSimulated:!0,originalEvent:{}});r?st.event.trigger(i,null,e):st.event.dispatch.call(e,i),i.isDefaultPrevented()&&n.preventDefault()}},st.removeEvent=mt.removeEventListener?function(t,e,n){t.removeEventListener&&t.removeEventListener(e,n,!1)}:function(t,e,n){var r="on"+e;t.detachEvent&&(typeof t[r]===xt&&(t[r]=null),t.detachEvent(r,n))},st.Event=function(t,e){if(!(this instanceof st.Event))return new st.Event(t,e);t&&t.type?(this.originalEvent=t,this.type=t.type,this.isDefaultPrevented=t.defaultPrevented||void 0===t.defaultPrevented&&!1===t.returnValue?y:m):this.type=t,e&&st.extend(this,e),this.timeStamp=t&&t.timeStamp||st.now(),this[st.expando]=!0},st.Event.prototype={isDefaultPrevented:m,isPropagationStopped:m,isImmediatePropagationStopped:m,preventDefault:function(){var t=this.originalEvent;this.isDefaultPrevented=y,t&&(t.preventDefault?t.preventDefault():t.returnValue=!1)},stopPropagation:function(){var t=this.originalEvent;this.isPropagationStopped=y,t&&(t.stopPropagation&&t.stopPropagation(),t.cancelBubble=!0)},stopImmediatePropagation:function(){var t=this.originalEvent;this.isImmediatePropagationStopped=y,t&&t.stopImmediatePropagation&&t.stopImmediatePropagation(),this.stopPropagation()}},st.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(t,e){st.event.special[t]={delegateType:e,bindType:e,handle:function(t){var n,r=this,i=t.relatedTarget,o=t.handleObj;return i&&(i===r||st.contains(r,i))||(t.type=o.origType,n=o.handler.apply(this,arguments),t.type=e),n}}}),at.submitBubbles||(st.event.special.submit={setup:function(){if(st.nodeName(this,"form"))return!1;st.event.add(this,"click._submit keypress._submit",function(t){var e=t.target,n=st.nodeName(e,"input")||st.nodeName(e,"button")?e.form:void 0;n&&!st._data(n,"submitBubbles")&&(st.event.add(n,"submit._submit",function(t){t._submit_bubble=!0}),st._data(n,"submitBubbles",!0))})},postDispatch:function(t){t._submit_bubble&&(delete t._submit_bubble,this.parentNode&&!t.isTrigger&&st.event.simulate("submit",this.parentNode,t,!0))},teardown:function(){if(st.nodeName(this,"form"))return!1;st.event.remove(this,"._submit")}}),at.changeBubbles||(st.event.special.change={setup:function(){if(Lt.test(this.nodeName))return"checkbox"!==this.type&&"radio"!==this.type||(st.event.add(this,"propertychange._change",function(t){"checked"===t.originalEvent.propertyName&&(this._just_changed=!0)}),st.event.add(this,"click._change",function(t){this._just_changed&&!t.isTrigger&&(this._just_changed=!1),st.event.simulate("change",this,t,!0)})),!1;st.event.add(this,"beforeactivate._change",function(t){var e=t.target;Lt.test(e.nodeName)&&!st._data(e,"changeBubbles")&&(st.event.add(e,"change._change",function(t){!this.parentNode||t.isSimulated||t.isTrigger||st.event.simulate("change",this.parentNode,t,!0)}),st._data(e,"changeBubbles",!0))})},handle:function(t){var e=t.target;if(this!==e||t.isSimulated||t.isTrigger||"radio"!==e.type&&"checkbox"!==e.type)return t.handleObj.handler.apply(this,arguments)},teardown:function(){return st.event.remove(this,"._change"),!Lt.test(this.nodeName)}}),at.focusinBubbles||st.each({focus:"focusin",blur:"focusout"},function(t,e){var n=function(t){st.event.simulate(e,t.target,st.event.fix(t),!0)};st.event.special[e]={setup:function(){var r=this.ownerDocument||this,i=st._data(r,e);i||r.addEventListener(t,n,!0),st._data(r,e,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=st._data(r,e)-1;i?st._data(r,e,i):(r.removeEventListener(t,n,!0),st._removeData(r,e))}}}),st.fn.extend({on:function(t,e,n,r,i){var o,a;if("object"==typeof t){"string"!=typeof e&&(n=n||e,e=void 0);for(o in t)this.on(o,e,n,t[o],i);return this}if(null==n&&null==r?(r=e,n=e=void 0):null==r&&("string"==typeof e?(r=n,n=void 0):(r=n,n=e,e=void 0)),!1===r)r=m;else if(!r)return this;return 1===i&&(a=r,r=function(t){return st().off(t),a.apply(this,arguments)},r.guid=a.guid||(a.guid=st.guid++)),this.each(function(){st.event.add(this,t,r,n,e)})},one:function(t,e,n,r){return this.on(t,e,n,r,1)},off:function(t,e,n){var r,i;if(t&&t.preventDefault&&t.handleObj)return r=t.handleObj,st(t.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof t){for(i in t)this.off(i,e,t[i]);return this}return!1!==e&&"function"!=typeof e||(n=e,e=void 0),!1===n&&(n=m),this.each(function(){st.event.remove(this,t,n,e)})},trigger:function(t,e){return this.each(function(){st.event.trigger(t,e,this)})},triggerHandler:function(t,e){var n=this[0];if(n)return st.event.trigger(t,e,n,!0)}});var Mt="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Bt=/ jQuery\d+="(?:null|\d+)"/g,Ft=new RegExp("<(?:"+Mt+")[\\s/>]","i"),zt=/^\s+/,Ut=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Ht=/<([\w:]+)/,Wt=/<tbody/i,Kt=/<|&#?\w+;/,Vt=/<(?:script|style|link)/i,Qt=/checked\s*(?:[^=]|=\s*.checked.)/i,Yt=/^$|\/(?:java|ecma)script/i,$t=/^true\/(.*)/,Zt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Gt={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:at.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},Xt=g(mt),Jt=Xt.appendChild(mt.createElement("div"));Gt.optgroup=Gt.option,Gt.tbody=Gt.tfoot=Gt.colgroup=Gt.caption=Gt.thead,Gt.th=Gt.td,st.extend({clone:function(t,e,n){var r,i,o,a,s,u=st.contains(t.ownerDocument,t);if(at.html5Clone||st.isXMLDoc(t)||!Ft.test("<"+t.nodeName+">")?o=t.cloneNode(!0):(Jt.innerHTML=t.outerHTML,Jt.removeChild(o=Jt.firstChild)),!(at.noCloneEvent&&at.noCloneChecked||1!==t.nodeType&&11!==t.nodeType||st.isXMLDoc(t)))for(r=w(o),s=w(t),a=0;null!=(i=s[a]);++a)r[a]&&j(i,r[a]);if(e)if(n)for(s=s||w(t),r=r||w(o),a=0;null!=(i=s[a]);a++)C(i,r[a]);else C(t,o);return r=w(o,"script"),r.length>0&&x(r,!u&&w(t,"script")),r=s=i=null,o},buildFragment:function(t,e,n,r){for(var i,o,a,s,u,c,l,f=t.length,d=g(e),h=[],p=0;p<f;p++)if((o=t[p])||0===o)if("object"===st.type(o))st.merge(h,o.nodeType?[o]:o);else if(Kt.test(o)){for(s=s||d.appendChild(e.createElement("div")),u=(Ht.exec(o)||["",""])[1].toLowerCase(),l=Gt[u]||Gt._default,s.innerHTML=l[1]+o.replace(Ut,"<$1></$2>")+l[2],i=l[0];i--;)s=s.lastChild;if(!at.leadingWhitespace&&zt.test(o)&&h.push(e.createTextNode(zt.exec(o)[0])),!at.tbody)for(o="table"!==u||Wt.test(o)?"<table>"!==l[1]||Wt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)st.nodeName(c=o.childNodes[i],"tbody")&&!c.childNodes.length&&o.removeChild(c);for(st.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(e.createTextNode(o));for(s&&d.removeChild(s),at.appendChecked||st.grep(w(h,"input"),_),p=0;o=h[p++];)if((!r||-1===st.inArray(o,r))&&(a=st.contains(o.ownerDocument,o),s=w(d.appendChild(o),"script"),a&&x(s),n))for(i=0;o=s[i++];)Yt.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(t,e){for(var n,r,i,o,a=0,s=st.expando,u=st.cache,c=at.deleteExpando,l=st.event.special;null!=(n=t[a]);a++)if((e||st.acceptData(n))&&(i=n[s],o=i&&u[i])){if(o.events)for(r in o.events)l[r]?st.event.remove(n,r):st.removeEvent(n,r,o.handle);u[i]&&(delete u[i],c?delete n[s]:typeof n.removeAttribute!==xt?n.removeAttribute(s):n[s]=null,X.push(i))}}}),st.fn.extend({text:function(t){return Nt(this,function(t){return void 0===t?st.text(this):this.empty().append((this[0]&&this[0].ownerDocument||mt).createTextNode(t))},null,t,arguments.length)},append:function(){return this.domManip(arguments,function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){k(this,t).appendChild(t)}})},prepend:function(){return this.domManip(arguments,function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=k(this,t);e.insertBefore(t,e.firstChild)}})},before:function(){return this.domManip(arguments,function(t){this.parentNode&&this.parentNode.insertBefore(t,this)})},after:function(){return this.domManip(arguments,function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)})},remove:function(t,e){for(var n,r=t?st.filter(t,this):this,i=0;null!=(n=r[i]);i++)e||1!==n.nodeType||st.cleanData(w(n)),n.parentNode&&(e&&st.contains(n.ownerDocument,n)&&x(w(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){for(var t,e=0;null!=(t=this[e]);e++){for(1===t.nodeType&&st.cleanData(w(t,!1));t.firstChild;)t.removeChild(t.firstChild);t.options&&st.nodeName(t,"select")&&(t.options.length=0)}return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map(function(){return st.clone(this,t,e)})},html:function(t){return Nt(this,function(t){var e=this[0]||{},n=0,r=this.length;if(void 0===t)return 1===e.nodeType?e.innerHTML.replace(Bt,""):void 0;if("string"==typeof t&&!Vt.test(t)&&(at.htmlSerialize||!Ft.test(t))&&(at.leadingWhitespace||!zt.test(t))&&!Gt[(Ht.exec(t)||["",""])[1].toLowerCase()]){t=t.replace(Ut,"<$1></$2>");try{for(;n<r;n++)e=this[n]||{},1===e.nodeType&&(st.cleanData(w(e,!1)),e.innerHTML=t);e=0}catch(t){}}e&&this.empty().append(t)},null,t,arguments.length)},replaceWith:function(){var t=arguments[0];return this.domManip(arguments,function(e){t=this.parentNode,st.cleanData(w(this)),t&&t.replaceChild(e,this)}),t&&(t.length||t.nodeType)?this:this.remove()},detach:function(t){return this.remove(t,!0)},domManip:function(t,e){t=tt.apply([],t);var n,r,i,o,a,s,u=0,c=this.length,l=this,f=c-1,d=t[0],h=st.isFunction(d);if(h||c>1&&"string"==typeof d&&!at.checkClone&&Qt.test(d))return this.each(function(n){var r=l.eq(n);h&&(t[0]=d.call(this,n,r.html())),r.domManip(t,e)});if(c&&(s=st.buildFragment(t,this[0].ownerDocument,!1,this),n=s.firstChild,1===s.childNodes.length&&(s=n),n)){for(o=st.map(w(s,"script"),O),i=o.length;u<c;u++)r=s,u!==f&&(r=st.clone(r,!0,!0),i&&st.merge(o,w(r,"script"))),e.call(this[u],r,u);if(i)for(a=o[o.length-1].ownerDocument,st.map(o,E),u=0;u<i;u++)r=o[u],Yt.test(r.type||"")&&!st._data(r,"globalEval")&&st.contains(a,r)&&(r.src?st._evalUrl&&st._evalUrl(r.src):st.globalEval((r.text||r.textContent||r.innerHTML||"").replace(Zt,"")));s=n=null}return this}}),st.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(t,e){st.fn[t]=function(t){for(var n,r=0,i=[],o=st(t),a=o.length-1;r<=a;r++)n=r===a?this:this.clone(!0),st(o[r])[e](n),et.apply(i,n.get());return this.pushStack(i)}});var te,ee={};!function(){var t;at.shrinkWrapBlocks=function(){if(null!=t)return t;t=!1;var e,n,r;return(n=mt.getElementsByTagName("body")[0])&&n.style?(e=mt.createElement("div"),r=mt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(e),typeof e.style.zoom!==xt&&(e.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",e.appendChild(mt.createElement("div")).style.width="5px",t=3!==e.offsetWidth),n.removeChild(r),t):void 0}}();var ne,re,ie=/^margin/,oe=new RegExp("^("+St+")(?!px)[a-z%]+$","i"),ae=/^(top|right|bottom|left)$/;n.getComputedStyle?(ne=function(t){return t.ownerDocument.defaultView.getComputedStyle(t,null)},re=function(t,e,n){var r,i,o,a,s=t.style;return n=n||ne(t),a=n?n.getPropertyValue(e)||n[e]:void 0,n&&(""!==a||st.contains(t.ownerDocument,t)||(a=st.style(t,e)),oe.test(a)&&ie.test(e)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0===a?a:a+""}):mt.documentElement.currentStyle&&(ne=function(t){return t.currentStyle},re=function(t,e,n){var r,i,o,a,s=t.style;return n=n||ne(t),a=n?n[e]:void 0,null==a&&s&&s[e]&&(a=s[e]),oe.test(a)&&!ae.test(e)&&(r=s.left,i=t.runtimeStyle,o=i&&i.left,o&&(i.left=t.currentStyle.left),s.left="fontSize"===e?"1em":a,a=s.pixelLeft+"px",s.left=r,o&&(i.left=o)),void 0===a?a:a+""||"auto"}),function(){function t(){var t,e,r,i;(e=mt.getElementsByTagName("body")[0])&&e.style&&(t=mt.createElement("div"),r=mt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",e.appendChild(r).appendChild(t),t.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",o=a=!1,u=!0,n.getComputedStyle&&(o="1%"!==(n.getComputedStyle(t,null)||{}).top,a="4px"===(n.getComputedStyle(t,null)||{width:"4px"}).width,i=t.appendChild(mt.createElement("div")),i.style.cssText=t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",t.style.width="1px",u=!parseFloat((n.getComputedStyle(i,null)||{}).marginRight)),t.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=t.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",s=0===i[0].offsetHeight,s&&(i[0].style.display="",i[1].style.display="none",s=0===i[0].offsetHeight),e.removeChild(r))}var e,r,i,o,a,s,u;e=mt.createElement("div"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",i=e.getElementsByTagName("a")[0],(r=i&&i.style)&&(r.cssText="float:left;opacity:.5",at.opacity="0.5"===r.opacity,at.cssFloat=!!r.cssFloat,e.style.backgroundClip="content-box",e.cloneNode(!0).style.backgroundClip="",at.clearCloneStyle="content-box"===e.style.backgroundClip,at.boxSizing=""===r.boxSizing||""===r.MozBoxSizing||""===r.WebkitBoxSizing,st.extend(at,{reliableHiddenOffsets:function(){return null==s&&t(),s},boxSizingReliable:function(){return null==a&&t(),a},pixelPosition:function(){return null==o&&t(),o},reliableMarginRight:function(){return null==u&&t(),u}}))}(),st.swap=function(t,e,n,r){var i,o,a={};for(o in e)a[o]=t.style[o],t.style[o]=e[o];i=n.apply(t,r||[]);for(o in e)t.style[o]=a[o];return i};var se=/alpha\([^)]*\)/i,ue=/opacity\s*=\s*([^)]*)/,ce=/^(none|table(?!-c[ea]).+)/,le=new RegExp("^("+St+")(.*)$","i"),fe=new RegExp("^([+-])=("+St+")","i"),de={position:"absolute",visibility:"hidden",display:"block"},he={letterSpacing:"0",fontWeight:"400"},pe=["Webkit","O","Moz","ms"];st.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=re(t,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:at.cssFloat?"cssFloat":"styleFloat"},style:function(t,e,n,r){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var i,o,a,s=st.camelCase(e),u=t.style;if(e=st.cssProps[s]||(st.cssProps[s]=N(u,s)),a=st.cssHooks[e]||st.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(t,!1,r))?i:u[e];if(o=typeof n,"string"===o&&(i=fe.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(st.css(t,e)),o="number"),null!=n&&n===n&&("number"!==o||st.cssNumber[s]||(n+="px"),at.clearCloneStyle||""!==n||0!==e.indexOf("background")||(u[e]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(t,n,r)))))try{u[e]=n}catch(t){}}},css:function(t,e,n,r){var i,o,a,s=st.camelCase(e);return e=st.cssProps[s]||(st.cssProps[s]=N(t.style,s)),a=st.cssHooks[e]||st.cssHooks[s],a&&"get"in a&&(o=a.get(t,!0,n)),void 0===o&&(o=re(t,e,r)),"normal"===o&&e in he&&(o=he[e]),""===n||n?(i=parseFloat(o),!0===n||st.isNumeric(i)?i||0:o):o}}),st.each(["height","width"],function(t,e){st.cssHooks[e]={get:function(t,n,r){if(n)return ce.test(st.css(t,"display"))&&0===t.offsetWidth?st.swap(t,de,function(){return D(t,e,r)}):D(t,e,r)},set:function(t,n,r){var i=r&&ne(t);return L(t,n,r?I(t,e,r,at.boxSizing&&"border-box"===st.css(t,"boxSizing",!1,i),i):0)}}}),at.opacity||(st.cssHooks.opacity={get:function(t,e){return ue.test((e&&t.currentStyle?t.currentStyle.filter:t.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":e?"1":""},set:function(t,e){var n=t.style,r=t.currentStyle,i=st.isNumeric(e)?"alpha(opacity="+100*e+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(e>=1||""===e)&&""===st.trim(o.replace(se,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===e||r&&!r.filter)||(n.filter=se.test(o)?o.replace(se,i):o+" "+i)}}),st.cssHooks.marginRight=T(at.reliableMarginRight,function(t,e){if(e)return st.swap(t,{display:"inline-block"},re,[t,"marginRight"])}),st.each({margin:"",padding:"",border:"Width"},function(t,e){st.cssHooks[t+e]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[t+At[r]+e]=o[r]||o[r-2]||o[0];return i}},ie.test(t)||(st.cssHooks[t+e].set=L)}),st.fn.extend({css:function(t,e){return Nt(this,function(t,e,n){var r,i,o={},a=0;if(st.isArray(e)){for(r=ne(t),i=e.length;a<i;a++)o[e[a]]=st.css(t,e[a],!1,r);return o}return void 0!==n?st.style(t,e,n):st.css(t,e)},t,e,arguments.length>1)},show:function(){return P(this,!0)},hide:function(){return P(this)},toggle:function(t){return"boolean"==typeof t?t?this.show():this.hide():this.each(function(){Tt(this)?st(this).show():st(this).hide()})}}),st.Tween=q,q.prototype={constructor:q,init:function(t,e,n,r,i,o){this.elem=t,this.prop=n,this.easing=i||"swing",this.options=e,this.start=this.now=this.cur(),this.end=r,this.unit=o||(st.cssNumber[n]?"":"px")},cur:function(){var t=q.propHooks[this.prop];return t&&t.get?t.get(this):q.propHooks._default.get(this)},run:function(t){var e,n=q.propHooks[this.prop];return this.options.duration?this.pos=e=st.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):q.propHooks._default.set(this),this}},q.prototype.init.prototype=q.prototype,q.propHooks={_default:{get:function(t){var e;return null==t.elem[t.prop]||t.elem.style&&null!=t.elem.style[t.prop]?(e=st.css(t.elem,t.prop,""),e&&"auto"!==e?e:0):t.elem[t.prop]},set:function(t){st.fx.step[t.prop]?st.fx.step[t.prop](t):t.elem.style&&(null!=t.elem.style[st.cssProps[t.prop]]||st.cssHooks[t.prop])?st.style(t.elem,t.prop,t.now+t.unit):t.elem[t.prop]=t.now}}},q.propHooks.scrollTop=q.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},st.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2}},st.fx=q.prototype.init,st.fx.step={};var ve,ye,me=/^(?:toggle|show|hide)$/,be=new RegExp("^(?:([+-])=|)("+St+")([a-z%]*)$","i"),ge=/queueHooks$/,we=[F],_e={"*":[function(t,e){var n=this.createTween(t,e),r=n.cur(),i=be.exec(e),o=i&&i[3]||(st.cssNumber[t]?"":"px"),a=(st.cssNumber[t]||"px"!==o&&+r)&&be.exec(st.css(n.elem,t)),s=1,u=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do{s=s||".5",a/=s,st.style(n.elem,t,a+o)}while(s!==(s=n.cur()/r)&&1!==s&&--u)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};st.Animation=st.extend(U,{tweener:function(t,e){st.isFunction(t)?(e=t,t=["*"]):t=t.split(" ");for(var n,r=0,i=t.length;r<i;r++)n=t[r],_e[n]=_e[n]||[],_e[n].unshift(e)},prefilter:function(t,e){e?we.unshift(t):we.push(t)}}),st.speed=function(t,e,n){var r=t&&"object"==typeof t?st.extend({},t):{complete:n||!n&&e||st.isFunction(t)&&t,duration:t,easing:n&&e||e&&!st.isFunction(e)&&e};return r.duration=st.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in st.fx.speeds?st.fx.speeds[r.duration]:st.fx.speeds._default,null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){st.isFunction(r.old)&&r.old.call(this),r.queue&&st.dequeue(this,r.queue)},r},st.fn.extend({fadeTo:function(t,e,n,r){return this.filter(Tt).css("opacity",0).show().end().animate({opacity:e},t,n,r)},animate:function(t,e,n,r){var i=st.isEmptyObject(t),o=st.speed(e,n,r),a=function(){var e=U(this,st.extend({},t),o);(i||st._data(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(t,e,n){var r=function(t){var e=t.stop;delete t.stop,e(n)};return"string"!=typeof t&&(n=e,e=t,t=void 0),e&&!1!==t&&this.queue(t||"fx",[]),this.each(function(){var e=!0,i=null!=t&&t+"queueHooks",o=st.timers,a=st._data(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ge.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=t&&o[i].queue!==t||(o[i].anim.stop(n),e=!1,o.splice(i,1));!e&&n||st.dequeue(this,t)})},finish:function(t){return!1!==t&&(t=t||"fx"),this.each(function(){var e,n=st._data(this),r=n[t+"queue"],i=n[t+"queueHooks"],o=st.timers,a=r?r.length:0;for(n.finish=!0,st.queue(this,t,[]),i&&i.stop&&i.stop.call(this,!0),e=o.length;e--;)o[e].elem===this&&o[e].queue===t&&(o[e].anim.stop(!0),o.splice(e,1));for(e=0;e<a;e++)r[e]&&r[e].finish&&r[e].finish.call(this);delete n.finish})}}),st.each(["toggle","show","hide"],function(t,e){var n=st.fn[e];st.fn[e]=function(t,r,i){return null==t||"boolean"==typeof t?n.apply(this,arguments):this.animate(M(e,!0),t,r,i)}}),st.each({slideDown:M("show"),slideUp:M("hide"),slideToggle:M("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(t,e){st.fn[t]=function(t,n,r){return this.animate(e,t,n,r)}}),st.timers=[],st.fx.tick=function(){var t,e=st.timers,n=0;for(ve=st.now();n<e.length;n++)(t=e[n])()||e[n]!==t||e.splice(n--,1);e.length||st.fx.stop(),ve=void 0},st.fx.timer=function(t){st.timers.push(t),t()?st.fx.start():st.timers.pop()},st.fx.interval=13,st.fx.start=function(){ye||(ye=setInterval(st.fx.tick,st.fx.interval))},st.fx.stop=function(){clearInterval(ye),ye=null},st.fx.speeds={slow:600,fast:200,_default:400},st.fn.delay=function(t,e){return t=st.fx?st.fx.speeds[t]||t:t,e=e||"fx",this.queue(e,function(e,n){var r=setTimeout(e,t);n.stop=function(){clearTimeout(r)}})},function(){var t,e,n,r,i;e=mt.createElement("div"),e.setAttribute("className","t"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=e.getElementsByTagName("a")[0],n=mt.createElement("select"),i=n.appendChild(mt.createElement("option")),t=e.getElementsByTagName("input")[0],r.style.cssText="top:1px",at.getSetAttribute="t"!==e.className,at.style=/top/.test(r.getAttribute("style")),at.hrefNormalized="/a"===r.getAttribute("href"),at.checkOn=!!t.value,at.optSelected=i.selected,at.enctype=!!mt.createElement("form").enctype,n.disabled=!0,at.optDisabled=!i.disabled,t=mt.createElement("input"),t.setAttribute("value",""),at.input=""===t.getAttribute("value"),t.value="t",t.setAttribute("type","radio"),at.radioValue="t"===t.value}();var ke=/\r/g;st.fn.extend({val:function(t){var e,n,r,i=this[0];{if(arguments.length)return r=st.isFunction(t),this.each(function(n){var i;1===this.nodeType&&(i=r?t.call(this,n,st(this).val()):t,null==i?i="":"number"==typeof i?i+="":st.isArray(i)&&(i=st.map(i,function(t){return null==t?"":t+""})),(e=st.valHooks[this.type]||st.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,i,"value")||(this.value=i))});if(i)return(e=st.valHooks[i.type]||st.valHooks[i.nodeName.toLowerCase()])&&"get"in e&&void 0!==(n=e.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(ke,""):null==n?"":n)}}}),st.extend({valHooks:{option:{get:function(t){var e=st.find.attr(t,"value");return null!=e?e:st.trim(st.text(t))}},select:{get:function(t){for(var e,n,r=t.options,i=t.selectedIndex,o="select-one"===t.type||i<0,a=o?null:[],s=o?i+1:r.length,u=i<0?s:o?i:0;u<s;u++)if(n=r[u],(n.selected||u===i)&&(at.optDisabled?!n.disabled:null===n.getAttribute("disabled"))&&(!n.parentNode.disabled||!st.nodeName(n.parentNode,"optgroup"))){if(e=st(n).val(),o)return e;a.push(e)}return a},set:function(t,e){for(var n,r,i=t.options,o=st.makeArray(e),a=i.length;a--;)if(r=i[a],st.inArray(st.valHooks.option.get(r),o)>=0)try{r.selected=n=!0}catch(t){r.scrollHeight}else r.selected=!1;return n||(t.selectedIndex=-1),i}}}}),st.each(["radio","checkbox"],function(){st.valHooks[this]={set:function(t,e){if(st.isArray(e))return t.checked=st.inArray(st(t).val(),e)>=0}},at.checkOn||(st.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})});var Oe,Ee,xe=st.expr.attrHandle,Ce=/^(?:checked|selected)$/i,je=at.getSetAttribute,Se=at.input;st.fn.extend({attr:function(t,e){return Nt(this,st.attr,t,e,arguments.length>1)},removeAttr:function(t){return this.each(function(){st.removeAttr(this,t)})}}),st.extend({attr:function(t,e,n){var r,i,o=t.nodeType;if(t&&3!==o&&8!==o&&2!==o)return typeof t.getAttribute===xt?st.prop(t,e,n):(1===o&&st.isXMLDoc(t)||(e=e.toLowerCase(),r=st.attrHooks[e]||(st.expr.match.bool.test(e)?Ee:Oe)),void 0===n?r&&"get"in r&&null!==(i=r.get(t,e))?i:(i=st.find.attr(t,e),null==i?void 0:i):null!==n?r&&"set"in r&&void 0!==(i=r.set(t,n,e))?i:(t.setAttribute(e,n+""),n):void st.removeAttr(t,e))},removeAttr:function(t,e){var n,r,i=0,o=e&&e.match(_t);if(o&&1===t.nodeType)for(;n=o[i++];)r=st.propFix[n]||n,st.expr.match.bool.test(n)?Se&&je||!Ce.test(n)?t[r]=!1:t[st.camelCase("default-"+n)]=t[r]=!1:st.attr(t,n,""),t.removeAttribute(je?n:r)},attrHooks:{type:{set:function(t,e){if(!at.radioValue&&"radio"===e&&st.nodeName(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}}}),Ee={set:function(t,e,n){return!1===e?st.removeAttr(t,n):Se&&je||!Ce.test(n)?t.setAttribute(!je&&st.propFix[n]||n,n):t[st.camelCase("default-"+n)]=t[n]=!0,n}},st.each(st.expr.match.bool.source.match(/\w+/g),function(t,e){var n=xe[e]||st.find.attr;xe[e]=Se&&je||!Ce.test(e)?function(t,e,r){var i,o;return r||(o=xe[e],xe[e]=i,i=null!=n(t,e,r)?e.toLowerCase():null,xe[e]=o),i}:function(t,e,n){if(!n)return t[st.camelCase("default-"+e)]?e.toLowerCase():null}}),Se&&je||(st.attrHooks.value={set:function(t,e,n){if(!st.nodeName(t,"input"))return Oe&&Oe.set(t,e,n);t.defaultValue=e}}),je||(Oe={set:function(t,e,n){var r=t.getAttributeNode(n);if(r||t.setAttributeNode(r=t.ownerDocument.createAttribute(n)),r.value=e+="","value"===n||e===t.getAttribute(n))return e}},xe.id=xe.name=xe.coords=function(t,e,n){var r;if(!n)return(r=t.getAttributeNode(e))&&""!==r.value?r.value:null},st.valHooks.button={get:function(t,e){var n=t.getAttributeNode(e);if(n&&n.specified)return n.value},set:Oe.set},st.attrHooks.contenteditable={set:function(t,e,n){Oe.set(t,""!==e&&e,n)}},st.each(["width","height"],function(t,e){st.attrHooks[e]={set:function(t,n){if(""===n)return t.setAttribute(e,"auto"),n}}})),at.style||(st.attrHooks.style={get:function(t){return t.style.cssText||void 0},set:function(t,e){return t.style.cssText=e+""}});var Ae=/^(?:input|select|textarea|button|object)$/i,Te=/^(?:a|area)$/i;st.fn.extend({prop:function(t,e){return Nt(this,st.prop,t,e,arguments.length>1)},removeProp:function(t){return t=st.propFix[t]||t,this.each(function(){try{this[t]=void 0,delete this[t]}catch(t){}})}}),st.extend({propFix:{for:"htmlFor",class:"className"},prop:function(t,e,n){var r,i,o,a=t.nodeType;if(t&&3!==a&&8!==a&&2!==a)return o=1!==a||!st.isXMLDoc(t),o&&(e=st.propFix[e]||e,i=st.propHooks[e]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:t[e]=n:i&&"get"in i&&null!==(r=i.get(t,e))?r:t[e]},propHooks:{tabIndex:{get:function(t){var e=st.find.attr(t,"tabindex");return e?parseInt(e,10):Ae.test(t.nodeName)||Te.test(t.nodeName)&&t.href?0:-1}}}}),at.hrefNormalized||st.each(["href","src"],function(t,e){st.propHooks[e]={get:function(t){return t.getAttribute(e,4)}}}),at.optSelected||(st.propHooks.selected={get:function(t){var e=t.parentNode;return e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex),null}}),st.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){st.propFix[this.toLowerCase()]=this}),at.enctype||(st.propFix.enctype="encoding");var Ne=/[\t\r\n\f]/g;st.fn.extend({addClass:function(t){var e,n,r,i,o,a,s=0,u=this.length,c="string"==typeof t&&t;if(st.isFunction(t))return this.each(function(e){st(this).addClass(t.call(this,e,this.className))});if(c)for(e=(t||"").match(_t)||[];s<u;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Ne," "):" ")){for(o=0;i=e[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=st.trim(r),n.className!==a&&(n.className=a)}return this},removeClass:function(t){var e,n,r,i,o,a,s=0,u=this.length,c=0===arguments.length||"string"==typeof t&&t;if(st.isFunction(t))return this.each(function(e){st(this).removeClass(t.call(this,e,this.className))});if(c)for(e=(t||"").match(_t)||[];s<u;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Ne," "):"")){for(o=0;i=e[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");a=t?st.trim(r):"",n.className!==a&&(n.className=a)}return this},toggleClass:function(t,e){var n=typeof t;return"boolean"==typeof e&&"string"===n?e?this.addClass(t):this.removeClass(t):st.isFunction(t)?this.each(function(n){st(this).toggleClass(t.call(this,n,this.className,e),e)}):this.each(function(){if("string"===n)for(var e,r=0,i=st(this),o=t.match(_t)||[];e=o[r++];)i.hasClass(e)?i.removeClass(e):i.addClass(e);else n!==xt&&"boolean"!==n||(this.className&&st._data(this,"__className__",this.className),this.className=this.className||!1===t?"":st._data(this,"__className__")||"")})},hasClass:function(t){for(var e=" "+t+" ",n=0,r=this.length;n<r;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Ne," ").indexOf(e)>=0)return!0;return!1}}),st.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(t,e){st.fn[e]=function(t,n){return arguments.length>0?this.on(e,null,t,n):this.trigger(e)}}),st.fn.extend({hover:function(t,e){return this.mouseenter(t).mouseleave(e||t)},bind:function(t,e,n){return this.on(t,null,e,n)},unbind:function(t,e){return this.off(t,null,e)},delegate:function(t,e,n,r){return this.on(e,t,n,r)},undelegate:function(t,e,n){return 1===arguments.length?this.off(t,"**"):this.off(e,t||"**",n)}});var Pe=st.now(),Le=/\?/,Ie=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;st.parseJSON=function(t){if(n.JSON&&n.JSON.parse)return n.JSON.parse(t+"");var e,r=null,i=st.trim(t+"");return i&&!st.trim(i.replace(Ie,function(t,n,i,o){return e&&n&&(r=0),0===r?t:(e=i||n,r+=!o-!i,"")}))?Function("return "+i)():st.error("Invalid JSON: "+t)},st.parseXML=function(t){var e,r;if(!t||"string"!=typeof t)return null;try{n.DOMParser?(r=new DOMParser,e=r.parseFromString(t,"text/xml")):(e=new ActiveXObject("Microsoft.XMLDOM"),e.async="false",e.loadXML(t))}catch(t){e=void 0}return e&&e.documentElement&&!e.getElementsByTagName("parsererror").length||st.error("Invalid XML: "+t),e};var De,qe,Re=/#.*$/,Me=/([?&])_=[^&]*/,Be=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Fe=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,ze=/^(?:GET|HEAD)$/,Ue=/^\/\//,He=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,We={},Ke={},Ve="*/".concat("*");try{qe=location.href}catch(t){qe=mt.createElement("a"),qe.href="",qe=qe.href}De=He.exec(qe.toLowerCase())||[],st.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qe,type:"GET",isLocal:Fe.test(De[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ve,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":st.parseJSON,"text xml":st.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?K(K(t,st.ajaxSettings),e):K(st.ajaxSettings,t)},ajaxPrefilter:H(We),ajaxTransport:H(Ke),ajax:function(t,e){function n(t,e,n,r){var i,l,m,b,w,k=e;2!==g&&(g=2,s&&clearTimeout(s),c=void 0,a=r||"",_.readyState=t>0?4:0,i=t>=200&&t<300||304===t,n&&(b=V(f,_,n)),b=Q(f,b,_,i),i?(f.ifModified&&(w=_.getResponseHeader("Last-Modified"),w&&(st.lastModified[o]=w),(w=_.getResponseHeader("etag"))&&(st.etag[o]=w)),204===t||"HEAD"===f.type?k="nocontent":304===t?k="notmodified":(k=b.state,l=b.data,m=b.error,i=!m)):(m=k,!t&&k||(k="error",t<0&&(t=0))),_.status=t,_.statusText=(e||k)+"",i?p.resolveWith(d,[l,k,_]):p.rejectWith(d,[_,k,m]),_.statusCode(y),y=void 0,u&&h.trigger(i?"ajaxSuccess":"ajaxError",[_,f,i?l:m]),v.fireWith(d,[_,k]),u&&(h.trigger("ajaxComplete",[_,f]),--st.active||st.event.trigger("ajaxStop")))}"object"==typeof t&&(e=t,t=void 0),e=e||{};var r,i,o,a,s,u,c,l,f=st.ajaxSetup({},e),d=f.context||f,h=f.context&&(d.nodeType||d.jquery)?st(d):st.event,p=st.Deferred(),v=st.Callbacks("once memory"),y=f.statusCode||{},m={},b={},g=0,w="canceled",_={readyState:0,getResponseHeader:function(t){var e;if(2===g){if(!l)for(l={};e=Be.exec(a);)l[e[1].toLowerCase()]=e[2];e=l[t.toLowerCase()]}return null==e?null:e},getAllResponseHeaders:function(){return 2===g?a:null},setRequestHeader:function(t,e){var n=t.toLowerCase();return g||(t=b[n]=b[n]||t,m[t]=e),this},overrideMimeType:function(t){return g||(f.mimeType=t),this},statusCode:function(t){var e;if(t)if(g<2)for(e in t)y[e]=[y[e],t[e]];else _.always(t[_.status]);return this},abort:function(t){var e=t||w;return c&&c.abort(e),n(0,e),this}};if(p.promise(_).complete=v.add,_.success=_.done,_.error=_.fail,f.url=((t||f.url||qe)+"").replace(Re,"").replace(Ue,De[1]+"//"),f.type=e.method||e.type||f.method||f.type,f.dataTypes=st.trim(f.dataType||"*").toLowerCase().match(_t)||[""],null==f.crossDomain&&(r=He.exec(f.url.toLowerCase()),f.crossDomain=!(!r||r[1]===De[1]&&r[2]===De[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(De[3]||("http:"===De[1]?"80":"443")))),f.data&&f.processData&&"string"!=typeof f.data&&(f.data=st.param(f.data,f.traditional)),W(We,f,e,_),2===g)return _;u=f.global,u&&0==st.active++&&st.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!ze.test(f.type),o=f.url,f.hasContent||(f.data&&(o=f.url+=(Le.test(o)?"&":"?")+f.data,delete f.data),!1===f.cache&&(f.url=Me.test(o)?o.replace(Me,"$1_="+Pe++):o+(Le.test(o)?"&":"?")+"_="+Pe++)),f.ifModified&&(st.lastModified[o]&&_.setRequestHeader("If-Modified-Since",st.lastModified[o]),st.etag[o]&&_.setRequestHeader("If-None-Match",st.etag[o])),(f.data&&f.hasContent&&!1!==f.contentType||e.contentType)&&_.setRequestHeader("Content-Type",f.contentType),_.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Ve+"; q=0.01":""):f.accepts["*"]);for(i in f.headers)_.setRequestHeader(i,f.headers[i]);if(f.beforeSend&&(!1===f.beforeSend.call(d,_,f)||2===g))return _.abort();w="abort";for(i in{success:1,error:1,complete:1})_[i](f[i]);if(c=W(Ke,f,e,_)){_.readyState=1,u&&h.trigger("ajaxSend",[_,f]),f.async&&f.timeout>0&&(s=setTimeout(function(){_.abort("timeout")},f.timeout));try{g=1,c.send(m,n)}catch(t){if(!(g<2))throw t;n(-1,t)}}else n(-1,"No Transport");return _},getJSON:function(t,e,n){return st.get(t,e,n,"json")},getScript:function(t,e){return st.get(t,void 0,e,"script")}}),st.each(["get","post"],function(t,e){st[e]=function(t,n,r,i){return st.isFunction(n)&&(i=i||r,r=n,n=void 0),st.ajax({url:t,type:e,dataType:i,data:n,success:r})}}),st.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(t,e){st.fn[e]=function(t){return this.on(e,t)}}),st._evalUrl=function(t){return st.ajax({url:t,type:"GET",dataType:"script",async:!1,global:!1,throws:!0})},st.fn.extend({wrapAll:function(t){if(st.isFunction(t))return this.each(function(e){st(this).wrapAll(t.call(this,e))});if(this[0]){var e=st(t,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&e.insertBefore(this[0]),e.map(function(){for(var t=this;t.firstChild&&1===t.firstChild.nodeType;)t=t.firstChild;return t}).append(this)}return this},wrapInner:function(t){return st.isFunction(t)?this.each(function(e){st(this).wrapInner(t.call(this,e))}):this.each(function(){var e=st(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)})},wrap:function(t){var e=st.isFunction(t);return this.each(function(n){st(this).wrapAll(e?t.call(this,n):t)})},unwrap:function(){return this.parent().each(function(){st.nodeName(this,"body")||st(this).replaceWith(this.childNodes)}).end()}}),st.expr.filters.hidden=function(t){return t.offsetWidth<=0&&t.offsetHeight<=0||!at.reliableHiddenOffsets()&&"none"===(t.style&&t.style.display||st.css(t,"display"))},st.expr.filters.visible=function(t){return!st.expr.filters.hidden(t)};var Qe=/%20/g,Ye=/\[\]$/,$e=/\r?\n/g,Ze=/^(?:submit|button|image|reset|file)$/i,Ge=/^(?:input|select|textarea|keygen)/i;st.param=function(t,e){var n,r=[],i=function(t,e){e=st.isFunction(e)?e():null==e?"":e,r[r.length]=encodeURIComponent(t)+"="+encodeURIComponent(e)};if(void 0===e&&(e=st.ajaxSettings&&st.ajaxSettings.traditional),st.isArray(t)||t.jquery&&!st.isPlainObject(t))st.each(t,function(){i(this.name,this.value)});else for(n in t)Y(n,t[n],e,i);return r.join("&").replace(Qe,"+")},st.fn.extend({serialize:function(){return st.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var t=st.prop(this,"elements");return t?st.makeArray(t):this}).filter(function(){var t=this.type;return this.name&&!st(this).is(":disabled")&&Ge.test(this.nodeName)&&!Ze.test(t)&&(this.checked||!Pt.test(t))}).map(function(t,e){var n=st(this).val();return null==n?null:st.isArray(n)?st.map(n,function(t){return{name:e.name,value:t.replace($e,"\r\n")}}):{name:e.name,value:n.replace($e,"\r\n")}}).get()}}),st.ajaxSettings.xhr=void 0!==n.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&$()||Z()}:$;var Xe=0,Je={},tn=st.ajaxSettings.xhr();n.ActiveXObject&&st(n).on("unload",function(){for(var t in Je)Je[t](void 0,!0)}),at.cors=!!tn&&"withCredentials"in tn,tn=at.ajax=!!tn,tn&&st.ajaxTransport(function(t){if(!t.crossDomain||at.cors){var e;return{send:function(n,r){var i,o=t.xhr(),a=++Xe;if(o.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(i in t.xhrFields)o[i]=t.xhrFields[i];t.mimeType&&o.overrideMimeType&&o.overrideMimeType(t.mimeType),t.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)void 0!==n[i]&&o.setRequestHeader(i,n[i]+"");o.send(t.hasContent&&t.data||null),e=function(n,i){var s,u,c;if(e&&(i||4===o.readyState))if(delete Je[a],e=void 0,o.onreadystatechange=st.noop,i)4!==o.readyState&&o.abort();else{c={},s=o.status,"string"==typeof o.responseText&&(c.text=o.responseText);try{u=o.statusText}catch(t){u=""}s||!t.isLocal||t.crossDomain?1223===s&&(s=204):s=c.text?200:404}c&&r(s,u,c,o.getAllResponseHeaders())},t.async?4===o.readyState?setTimeout(e):o.onreadystatechange=Je[a]=e:e()},abort:function(){e&&e(void 0,!0)}}}}),st.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(t){return st.globalEval(t),t}}}),st.ajaxPrefilter("script",function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET",t.global=!1)}),st.ajaxTransport("script",function(t){if(t.crossDomain){var e,n=mt.head||st("head")[0]||mt.documentElement;return{send:function(r,i){e=mt.createElement("script"),e.async=!0,t.scriptCharset&&(e.charset=t.scriptCharset),e.src=t.url,e.onload=e.onreadystatechange=function(t,n){(n||!e.readyState||/loaded|complete/.test(e.readyState))&&(e.onload=e.onreadystatechange=null,e.parentNode&&e.parentNode.removeChild(e),e=null,n||i(200,"success"))},n.insertBefore(e,n.firstChild)},abort:function(){e&&e.onload(void 0,!0)}}}});var en=[],nn=/(=)\?(?=&|$)|\?\?/;st.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var t=en.pop()||st.expando+"_"+Pe++;return this[t]=!0,t}}),st.ajaxPrefilter("json jsonp",function(t,e,r){var i,o,a,s=!1!==t.jsonp&&(nn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&nn.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=st.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(nn,"$1"+i):!1!==t.jsonp&&(t.url+=(Le.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||st.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=n[i],n[i]=function(){a=arguments},r.always(function(){n[i]=o,t[i]&&(t.jsonpCallback=e.jsonpCallback,en.push(i)),a&&st.isFunction(o)&&o(a[0]),a=o=void 0}),"script"}),st.parseHTML=function(t,e,n){if(!t||"string"!=typeof t)return null;"boolean"==typeof e&&(n=e,e=!1),e=e||mt;var r=pt.exec(t),i=!n&&[];return r?[e.createElement(r[1])]:(r=st.buildFragment([t],e,i),i&&i.length&&st(i).remove(),st.merge([],r.childNodes))};var rn=st.fn.load;st.fn.load=function(t,e,n){if("string"!=typeof t&&rn)return rn.apply(this,arguments);var r,i,o,a=this,s=t.indexOf(" ");return s>=0&&(r=st.trim(t.slice(s,t.length)),t=t.slice(0,s)),st.isFunction(e)?(n=e,e=void 0):e&&"object"==typeof e&&(o="POST"),a.length>0&&st.ajax({url:t,type:o,dataType:"html",data:e}).done(function(t){i=arguments,a.html(r?st("<div>").append(st.parseHTML(t)).find(r):t)}).complete(n&&function(t,e){a.each(n,i||[t.responseText,e,t])}),this},st.expr.filters.animated=function(t){return st.grep(st.timers,function(e){return t===e.elem}).length};var on=n.document.documentElement;st.offset={setOffset:function(t,e,n){var r,i,o,a,s,u,c,l=st.css(t,"position"),f=st(t),d={};"static"===l&&(t.style.position="relative"),s=f.offset(),o=st.css(t,"top"),u=st.css(t,"left"),c=("absolute"===l||"fixed"===l)&&st.inArray("auto",[o,u])>-1,c?(r=f.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),st.isFunction(e)&&(e=e.call(t,n,s)),null!=e.top&&(d.top=e.top-s.top+a),null!=e.left&&(d.left=e.left-s.left+i),"using"in e?e.using.call(t,d):f.css(d)}},st.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){st.offset.setOffset(this,t,e)});var e,n,r={top:0,left:0},i=this[0],o=i&&i.ownerDocument;if(o)return e=o.documentElement,st.contains(e,i)?(typeof i.getBoundingClientRect!==xt&&(r=i.getBoundingClientRect()),n=G(o),{top:r.top+(n.pageYOffset||e.scrollTop)-(e.clientTop||0),left:r.left+(n.pageXOffset||e.scrollLeft)-(e.clientLeft||0)}):r},position:function(){if(this[0]){var t,e,n={top:0,left:0},r=this[0];return"fixed"===st.css(r,"position")?e=r.getBoundingClientRect():(t=this.offsetParent(),e=this.offset(),st.nodeName(t[0],"html")||(n=t.offset()),n.top+=st.css(t[0],"borderTopWidth",!0),n.left+=st.css(t[0],"borderLeftWidth",!0)),{top:e.top-n.top-st.css(r,"marginTop",!0),left:e.left-n.left-st.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent||on;t&&!st.nodeName(t,"html")&&"static"===st.css(t,"position");)t=t.offsetParent;return t||on})}}),st.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,e){var n=/Y/.test(e);st.fn[t]=function(r){return Nt(this,function(t,r,i){var o=G(t);if(void 0===i)return o?e in o?o[e]:o.document.documentElement[r]:t[r];o?o.scrollTo(n?st(o).scrollLeft():i,n?i:st(o).scrollTop()):t[r]=i},t,r,arguments.length,null)}}),st.each(["top","left"],function(t,e){st.cssHooks[e]=T(at.pixelPosition,function(t,n){if(n)return n=re(t,e),oe.test(n)?st(t).position()[e]+"px":n})}),st.each({Height:"height",Width:"width"},function(t,e){st.each({padding:"inner"+t,content:e,"":"outer"+t},function(n,r){st.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),a=n||(!0===r||!0===i?"margin":"border");return Nt(this,function(e,n,r){var i;return st.isWindow(e)?e.document.documentElement["client"+t]:9===e.nodeType?(i=e.documentElement,Math.max(e.body["scroll"+t],i["scroll"+t],e.body["offset"+t],i["offset"+t],i["client"+t])):void 0===r?st.css(e,n,a):st.style(e,n,r,a)},e,o?r:void 0,o,null)}})}),st.fn.size=function(){return this.length},st.fn.andSelf=st.fn.addBack,r=[],void 0!==(i=function(){return st}.apply(e,r))&&(t.exports=i);var an=n.jQuery,sn=n.$;return st.noConflict=function(t){return n.$===st&&(n.$=sn),t&&n.jQuery===st&&(n.jQuery=an),st},typeof o===xt&&(n.jQuery=n.$=st),st})},function(t,e,n){var r=n(17);t.exports=r("Any",function(){return!0})},function(t,e,n){function r(t,e){return"{"+c(t)+" | "+l(e)+"}"}function i(t,e,n){function i(e,n){var r=s(t,e,n);return r}var c=n||r(t,e),l=a(t);return i.meta={kind:"subtype",type:t,predicate:e,name:n,identity:l},i.displayName=c,i.is=function(n){return u(n,t)&&e(n)},i.update=function(t,e){return i(o.update(t,e))},i}var o=n(5),a=(n(20),n(10),n(52),n(30)),s=n(31),u=n(32),c=n(8),l=n(51);i.getDefaultName=r,t.exports=i},function(t,e,n){var r=n(17),i=n(65);t.exports=r("String",i)},function(t,e,n){function r(t,e){return"{[key: "+a(t)+"]: "+a(e)+"}"}function i(t,e,n){function i(n,r){if(d)return n;var i=!0,o={};for(var a in n)if(n.hasOwnProperty(a)){a=c(t,a,null);var s=n[a],u=c(e,s,null);i=i&&s===u,o[a]=u}return i&&(o=n),o}var f=n||r(t,e),d=(a(t),a(e),s(t)&&s(e));return i.meta={kind:"dict",domain:t,codomain:e,name:n,identity:d},i.displayName=f,i.is=function(n){if(!u(n))return!1;for(var r in n)if(n.hasOwnProperty(r)&&(!l(r,t)||!l(n[r],e)))return!1;return!0},i.update=function(t,e){return i(o.update(t,e))},i}var o=n(5),a=(n(20),n(10),n(8)),s=n(30),u=n(28),c=n(31),l=n(32);i.getDefaultName=r,t.exports=i},function(t,e,n){var r=n(26);n(5);t.exports=function(t,e,n){if(r(e))return t;for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}},function(t,e,n){"use strict";function r(){return u||(u=new c.a,Object(f.a)(s)),u.promise}function i(){return h+=1,a()}function o(t){var e=i();return d.a(t,e)}function a(){var t=!1;return function(){if(t)throw new l.InternalError("Unregister must not be called twice");h-=1,t=!0,0===h&&Object(f.a)(s)}}function s(){u&&0===h&&(u.resolve(void 0),u=void 0)}e.a=r,e.c=i,e.b=o;var u,c=n(13),l=n(1),f=n(37),d=n(50),h=0},function(t,e,n){"use strict";function r(t,e){var n=u[t];if(n)return n[e]}function i(t,e){p(t,e),u[t]=e}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r});var o=n(24),a=n(39),s=n(59),u={},c=o.a.struct({value:o.a.String,title:o.a.String}),l=o.a.dict(o.a.String,o.a.struct({title:o.a.maybe(o.a.String),description:o.a.maybe(o.a.String),values:o.a.maybe(o.a.list(c))})),f=o.a.list(o.a.struct({title:o.a.String,component:o.a.maybe(o.a.String),properties:o.a.maybe(o.a.list(o.a.String))})),d=o.a.dict(o.a.String,o.a.union([s.b,o.a.Date,o.a.Function,o.a.Nil,o.a.Number,o.a.String,o.a.list(s.b),o.a.list(s.e),o.a.list(o.a.String)])),h=o.a.struct({attributes:o.a.maybe(l),propertiesGroups:o.a.maybe(f),title:o.a.maybe(o.a.String),description:o.a.maybe(o.a.String),thumbnail:o.a.maybe(o.a.String),titleForContent:o.a.maybe(o.a.Function),descriptionForContent:o.a.maybe(o.a.Function),hideInSelectionDialogs:o.a.maybe(o.a.Boolean),properties:o.a.maybe(o.a.list(o.a.String)),initialContent:o.a.maybe(d)}),p=Object(a.a)("provideEditingConfig",[["className",o.a.String],["editingConfig",h]],{docPermalink:"js-sdk/provideEditingConfig"})},function(t,e,n){"use strict";var r=function(){};t.exports=r},function(t,e,n){"use strict";n.d(e,"a",function(){return r}),n.d(e,"f",function(){return i}),n.d(e,"c",function(){return o}),n.d(e,"e",function(){return a}),n.d(e,"g",function(){return s}),n.d(e,"d",function(){return u}),n.d(e,"b",function(){return c});var r=function(t){return"/"===t.charAt(0)?t:"/"+t},i=function(t){return"/"===t.charAt(0)?t.substr(1):t},o=function(t,e){return new RegExp("^"+e+"(\\/|\\?|#|$)","i").test(t)},a=function(t,e){return o(t,e)?t.substr(e.length):t},s=function(t){return"/"===t.charAt(t.length-1)?t.slice(0,-1):t},u=function(t){var e=t||"/",n="",r="",i=e.indexOf("#");-1!==i&&(r=e.substr(i),e=e.substr(0,i));var o=e.indexOf("?");return-1!==o&&(n=e.substr(o),e=e.substr(0,o)),{pathname:e,search:"?"===n?"":n,hash:"#"===r?"":r}},c=function(t){var e=t.pathname,n=t.search,r=t.hash,i=e||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i}},function(t,e){t.exports=ReactDOM},function(t,e,n){"use strict";function r(t,e){u[t]=e}function i(t){return u[t]||null}function o(t,e){r(s(t),e)}function a(t){return i(s(t))}function s(t){return"appClass-".concat(t)}n.d(e,"a",function(){return a}),n.d(e,"b",function(){return i}),n.d(e,"c",function(){return o}),n.d(e,"d",function(){return r});var u={}},function(t,e,n){"use strict";function r(){return!!i.b&&i.b.isEditingMode()}e.a=r;var i=n(18)},function(t,e,n){"use strict";function r(t,e){return a(t)||o(t,e)||i()}function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function o(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function a(t){if(Array.isArray(t))return t}function s(t,e){if(!t)return e;if(!e)return null;var n={};return c(t,e,function(r,i,o){"_widget_pool"===r?n._widget_pool=f(i,o):e.hasOwnProperty(r)?o&&(n[r]=o):n[r]=t[r]}),n}function u(t,e){if(!t)return e;if(!e)return null;var n={};return c(t,e,function(t,e,r){if("_widget_pool"===t){var i=h(e,r);v.a.isEmpty(i)||(n._widget_pool=i)}else{var o=d(e,r,function(){if(!v.a.isEqual(e,r))return r});void 0!==o&&(n[t]=o)}}),n}function c(t,e,n){v.a.union(v.a.keys(t),v.a.keys(e)).forEach(function(r){return n(r,l(t[r]),l(e[r]))})}function l(t){if(v.a.isArray(t)){var e=r(t,2),n=e[0],i=e[1];return"binary"===n&&i?[n,v.a.omit(i,"url")]:t}return t}function f(t,e){if(!e||v.a.isEmpty(e))return t;var n={};return c(t||{},e||{},function(t,r,i){e.hasOwnProperty(t)?i&&!r?n[t]=i:i&&(n[t]=s(r,i)):n[t]=r}),n}function d(t,e,n){return!t&&e?e:t&&!e?null:t&&e?n():void 0}function h(t,e){if(t===e)return{};var n={};return c(t,e,function(t,e,r){var i=d(e,r,function(){var t=u(e,r);if(!v.a.isEmpty(t))return t});void 0!==i&&(n[t]=i)}),n}e.a=s,e.b=u;var p=n(0),v=n.n(p)},,,function(t,e){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function i(t){if(l===setTimeout)return setTimeout(t,0);if((l===n||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}function o(t){if(f===clearTimeout)return clearTimeout(t);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(t);try{return f(t)}catch(e){try{return f.call(null,t)}catch(e){return f.call(this,t)}}}function a(){v&&h&&(v=!1,h.length?p=h.concat(p):y=-1,p.length&&s())}function s(){if(!v){var t=i(a);v=!0;for(var e=p.length;e;){for(h=p,p=[];++y<e;)h&&h[y].run();y=-1,e=p.length}h=null,v=!1,o(t)}}function u(t,e){this.fun=t,this.array=e}function c(){}var l,f,d=t.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:n}catch(t){l=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(t){f=r}}();var h,p=[],v=!1,y=-1;d.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];p.push(new u(t,e)),1!==p.length||v||i(s)},u.prototype.run=function(){this.fun.apply(null,this.array)},d.title="browser",d.browser=!0,d.env={},d.argv=[],d.version="",d.versions={},d.on=c,d.addListener=c,d.once=c,d.off=c,d.removeListener=c,d.removeAllListeners=c,d.emit=c,d.prependListener=c,d.prependOnceListener=c,d.listeners=function(t){return[]},d.binding=function(t){throw new Error("process.binding is not supported")},d.cwd=function(){return"/"},d.chdir=function(t){throw new Error("process.chdir is not supported")},d.umask=function(){return 0}},function(t,e,n){"use strict";function r(){return o().get()}function i(t){o().set(t)}function o(){return a.b.subState("contentStateId")}e.a=r,e.b=i;var a=n(4)},function(t,e,n){"use strict";n.d(e,"a",function(){return s}),n.d(e,"b",function(){return u});var r=n(306),i=n(307),o=n(84),a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=function(t,e,n,i){var s=void 0;"string"==typeof t?(s=Object(o.d)(t),s.state=e):(s=a({},t),void 0===s.pathname&&(s.pathname=""),s.search?"?"!==s.search.charAt(0)&&(s.search="?"+s.search):s.search="",s.hash?"#"!==s.hash.charAt(0)&&(s.hash="#"+s.hash):s.hash="",void 0!==e&&void 0===s.state&&(s.state=e));try{s.pathname=decodeURI(s.pathname)}catch(t){throw t instanceof URIError?new URIError('Pathname "'+s.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):t}return n&&(s.key=n),i?s.pathname?"/"!==s.pathname.charAt(0)&&(s.pathname=Object(r.a)(s.pathname,i.pathname)):s.pathname=i.pathname:s.pathname||(s.pathname="/"),s},u=function(t,e){return t.pathname===e.pathname&&t.search===e.search&&t.hash===e.hash&&t.key===e.key&&Object(i.a)(t.state,e.state)}},,,function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}function s(t,e){return y.b(t,e)}function u(t,e){return y.a(t,e)}function c(t,e){return l(t,e)>0?t:e}function l(t,e){return t?e?f(t._version,e._version):1:-1}function f(t,e){return t>e?1:e>t?-1:0}n.d(e,"a",function(){return _});var d=n(0),h=n.n(d),p=n(21),v=n(58),y=n(88),m=n(53),b=n(13),g=n(37),w=n(1),_=function(){function t(e){var n=this;i(this,t),this._id=e,this._replicationActive=!1,this._scheduledReplication=!1,this._currentRequestDeferred=null,this._nextRequestDeferred=null,this._performThrottledReplication=scrivito.throttle(function(){return n._performReplication()},1e3)}return a(t,[{key:"notifyLocalState",value:function(t){if(!m.a.isDisabled()){if(void 0===this._backendState)throw new w.InternalError("Can not set local state before backend state.");if(this._backendState&&this._backendState._deleted)throw new w.InternalError("Can not update a fully deleted obj.");this._localState=t,this._startReplication()}}},{key:"notifyBackendState",value:function(t){if(void 0===this._backendState)return this._backendState=t,void this._updateLocalState(t);if(l(t,this._bufferedBackendState||this._backendState)>0)if(this._replicationActive)this._bufferedBackendState=t;else{if(t._deleted)this._updateLocalState(null);else{var e=s(this._backendState,t);this._updateLocalState(u(this.localState,e))}this._backendState=t}}},{key:"finishSaving",value:function(){var t;if(this._nextRequestDeferred)t=this._nextRequestDeferred.promise;else{if(!this._currentRequestDeferred)return scrivito.Promise.resolve();t=this._currentRequestDeferred.promise}return t.catch(function(){return scrivito.Promise.reject()})}},{key:"_startReplication",value:function(){var t=this;h.a.isEmpty(s(this._backendState,this._localState))?this._nextRequestDeferred&&(this._nextRequestDeferred.resolve(),this._nextRequestDeferred=null):this._replicationActive?this._nextRequestDeferred||(this._nextRequestDeferred=new b.a):this._scheduledReplication||(this._scheduledReplication=!0,this._initDeferredForRequest(),m.a.writeStarted(this._currentRequestDeferred.promise),Object(g.a)(function(){return t._performThrottledReplication()}))}},{key:"_performReplication",value:function(){var t=this,e=this._localState,n=s(this._backendState,this._localState);this._scheduledReplication=!1,this._replicationActive=!0,this._replicatePatchToBackend(n).then(function(n){t._handleBackendUpdate(e,n),t._currentRequestDeferred.resolve(t._id),t._currentRequestDeferred=null,t._replicationActive=!1,t._startReplication()},function(e){t._currentRequestDeferred.reject(e),t._currentRequestDeferred=null,t._replicationActive=!1})}},{key:"_replicatePatchToBackend",value:function(t){if(h.a.isEmpty(t))return scrivito.Promise.resolve(this._backendState);var e=scrivito.currentWorkspaceId(),n="workspaces/".concat(e,"/objs/").concat(this._id);return p.a.put(n,{obj:t})}},{key:"_initDeferredForRequest",value:function(){if(this._nextRequestDeferred){var t=this._nextRequestDeferred;this._nextRequestDeferred=null,this._currentRequestDeferred=t}else this._currentRequestDeferred=new b.a}},{key:"_handleBackendUpdate",value:function(t,e){var n=s(t,this._localState);this._backendState=c(e,this._bufferedBackendState),this._bufferedBackendState=void 0,this._updateLocalState(u(this._backendState,n))}},{key:"_updateLocalState",value:function(t){this._localState=t,v.d(this._id,this._localState)}},{key:"isNotStoredInBackend",value:function(){return null===this._backendState}},{key:"isRequestInFlight",value:function(){return this._replicationActive}},{key:"backendState",get:function(){return this._backendState}},{key:"localState",get:function(){return this._localState}}]),t}()},function(t,e,n){(function(t,r){var i;!function(o){function a(t){throw new RangeError(P[t])}function s(t,e){for(var n=t.length,r=[];n--;)r[n]=e(t[n]);return r}function u(t,e){var n=t.split("@"),r="";return n.length>1&&(r=n[0]+"@",t=n[1]),t=t.replace(N,"."),r+s(t.split("."),e).join(".")}function c(t){for(var e,n,r=[],i=0,o=t.length;i<o;)e=t.charCodeAt(i++),e>=55296&&e<=56319&&i<o?(n=t.charCodeAt(i++),56320==(64512&n)?r.push(((1023&e)<<10)+(1023&n)+65536):(r.push(e),i--)):r.push(e);return r}function l(t){return s(t,function(t){var e="";return t>65535&&(t-=65536,e+=D(t>>>10&1023|55296),t=56320|1023&t),e+=D(t)}).join("")}function f(t){return t-48<10?t-22:t-65<26?t-65:t-97<26?t-97:_}function d(t,e){return t+22+75*(t<26)-((0!=e)<<5)}function h(t,e,n){var r=0;for(t=n?I(t/x):t>>1,t+=I(t/e);t>L*O>>1;r+=_)t=I(t/L);return I(r+(L+1)*t/(t+E))}function p(t){var e,n,r,i,o,s,u,c,d,p,v=[],y=t.length,m=0,b=j,g=C;for(n=t.lastIndexOf(S),n<0&&(n=0),r=0;r<n;++r)t.charCodeAt(r)>=128&&a("not-basic"),v.push(t.charCodeAt(r));for(i=n>0?n+1:0;i<y;){for(o=m,s=1,u=_;i>=y&&a("invalid-input"),c=f(t.charCodeAt(i++)),(c>=_||c>I((w-m)/s))&&a("overflow"),m+=c*s,d=u<=g?k:u>=g+O?O:u-g,!(c<d);u+=_)p=_-d,s>I(w/p)&&a("overflow"),s*=p;e=v.length+1,g=h(m-o,e,0==o),I(m/e)>w-b&&a("overflow"),b+=I(m/e),m%=e,v.splice(m++,0,b)}return l(v)}function v(t){var e,n,r,i,o,s,u,l,f,p,v,y,m,b,g,E=[];for(t=c(t),y=t.length,e=j,n=0,o=C,s=0;s<y;++s)(v=t[s])<128&&E.push(D(v));for(r=i=E.length,i&&E.push(S);r<y;){for(u=w,s=0;s<y;++s)(v=t[s])>=e&&v<u&&(u=v);for(m=r+1,u-e>I((w-n)/m)&&a("overflow"),n+=(u-e)*m,e=u,s=0;s<y;++s)if(v=t[s],v<e&&++n>w&&a("overflow"),v==e){for(l=n,f=_;p=f<=o?k:f>=o+O?O:f-o,!(l<p);f+=_)g=l-p,b=_-p,E.push(D(d(p+g%b,0))),l=I(g/b);E.push(D(d(l,0))),o=h(n,m,r==i),n=0,++r}++n,++e}return E.join("")}function y(t){return u(t,function(t){return A.test(t)?p(t.slice(4).toLowerCase()):t})}function m(t){return u(t,function(t){return T.test(t)?"xn--"+v(t):t})}var b=("object"==typeof e&&e&&e.nodeType,"object"==typeof t&&t&&t.nodeType,"object"==typeof r&&r);var g,w=2147483647,_=36,k=1,O=26,E=38,x=700,C=72,j=128,S="-",A=/^xn--/,T=/[^\x20-\x7E]/,N=/[\x2E\u3002\uFF0E\uFF61]/g,P={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},L=_-k,I=Math.floor,D=String.fromCharCode;g={version:"1.3.2",ucs2:{decode:c,encode:l},decode:p,encode:v,toASCII:m,toUnicode:y},void 0!==(i=function(){return g}.call(e,n,e,t))&&(t.exports=i)}()}).call(e,n(98)(t),n(40))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){var r,i;/*!
38
44
  * URI.js - Mutating URLs
39
45
  * IPv6 Support
40
46
  *
41
- * Version: 1.18.7
47
+ * Version: 1.19.1
42
48
  *
43
49
  * Author: Rodney Rehm
44
50
  * Web: http://medialize.github.io/URI.js/
@@ -47,11 +53,11 @@ function(e){function t(e,t,n,r){var i,o,a,s,c,f,d,h,p,v;if((t?t.ownerDocument||t
47
53
  * MIT License http://www.opensource.org/licenses/mit-license
48
54
  *
49
55
  */
50
- !function(o,a){"use strict";"object"==typeof e&&e.exports?e.exports=a():(r=a,void 0!==(i="function"==typeof r?r.call(t,n,t,e):r)&&(e.exports=i))}(0,function(e){"use strict";function t(e){var t=e.toLowerCase(),n=t.split(":"),r=n.length,i=8;""===n[0]&&""===n[1]&&""===n[2]?(n.shift(),n.shift()):""===n[0]&&""===n[1]?n.shift():""===n[r-1]&&""===n[r-2]&&n.pop(),r=n.length,-1!==n[r-1].indexOf(".")&&(i=7);var o;for(o=0;o<r&&""!==n[o];o++);if(o<i)for(n.splice(o,1,"0000");n.length<i;)n.splice(o,0,"0000");for(var a,s=0;s<i;s++){a=n[s].split("");for(var u=0;u<3&&("0"===a[0]&&a.length>1);u++)a.splice(0,1);n[s]=a.join("")}var c=-1,l=0,f=0,d=-1,h=!1;for(s=0;s<i;s++)h?"0"===n[s]?f+=1:(h=!1,f>l&&(c=d,l=f)):"0"===n[s]&&(h=!0,d=s,f=1);f>l&&(c=d,l=f),l>1&&n.splice(c,l,""),r=n.length;var p="";for(""===n[0]&&(p=":"),s=0;s<r&&(p+=n[s],s!==r-1);s++)p+=":";return""===n[r-1]&&(p+=":"),p}function n(){return e.IPv6===this&&(e.IPv6=r),this}var r=e&&e.IPv6;return{best:t,noConflict:n}})},function(e,t,n){var r,i;/*!
56
+ !function(o,a){"use strict";"object"==typeof t&&t.exports?t.exports=a():(r=a,void 0!==(i="function"==typeof r?r.call(e,n,e,t):r)&&(t.exports=i))}(0,function(t){"use strict";function e(t){var e=t.toLowerCase(),n=e.split(":"),r=n.length,i=8;""===n[0]&&""===n[1]&&""===n[2]?(n.shift(),n.shift()):""===n[0]&&""===n[1]?n.shift():""===n[r-1]&&""===n[r-2]&&n.pop(),r=n.length,-1!==n[r-1].indexOf(".")&&(i=7);var o;for(o=0;o<r&&""!==n[o];o++);if(o<i)for(n.splice(o,1,"0000");n.length<i;)n.splice(o,0,"0000");for(var a,s=0;s<i;s++){a=n[s].split("");for(var u=0;u<3&&("0"===a[0]&&a.length>1);u++)a.splice(0,1);n[s]=a.join("")}var c=-1,l=0,f=0,d=-1,h=!1;for(s=0;s<i;s++)h?"0"===n[s]?f+=1:(h=!1,f>l&&(c=d,l=f)):"0"===n[s]&&(h=!0,d=s,f=1);f>l&&(c=d,l=f),l>1&&n.splice(c,l,""),r=n.length;var p="";for(""===n[0]&&(p=":"),s=0;s<r&&(p+=n[s],s!==r-1);s++)p+=":";return""===n[r-1]&&(p+=":"),p}function n(){return t.IPv6===this&&(t.IPv6=r),this}var r=t&&t.IPv6;return{best:e,noConflict:n}})},function(t,e,n){var r,i;/*!
51
57
  * URI.js - Mutating URLs
52
58
  * Second Level Domain (SLD) Support
53
59
  *
54
- * Version: 1.18.7
60
+ * Version: 1.19.1
55
61
  *
56
62
  * Author: Rodney Rehm
57
63
  * Web: http://medialize.github.io/URI.js/
@@ -60,7 +66,7 @@ function(e){function t(e,t,n,r){var i,o,a,s,c,f,d,h,p,v;if((t?t.ownerDocument||t
60
66
  * MIT License http://www.opensource.org/licenses/mit-license
61
67
  *
62
68
  */
63
- !function(o,a){"use strict";"object"==typeof e&&e.exports?e.exports=a():(r=a,void 0!==(i="function"==typeof r?r.call(t,n,t,e):r)&&(e.exports=i))}(0,function(e){"use strict";var t=e&&e.SecondLevelDomains,n={list:{ac:" com gov mil net org ",ae:" ac co gov mil name net org pro sch ",af:" com edu gov net org ",al:" com edu gov mil net org ",ao:" co ed gv it og pb ",ar:" com edu gob gov int mil net org tur ",at:" ac co gv or ",au:" asn com csiro edu gov id net org ",ba:" co com edu gov mil net org rs unbi unmo unsa untz unze ",bb:" biz co com edu gov info net org store tv ",bh:" biz cc com edu gov info net org ",bn:" com edu gov net org ",bo:" com edu gob gov int mil net org tv ",br:" adm adv agr am arq art ato b bio blog bmd cim cng cnt com coop ecn edu eng esp etc eti far flog fm fnd fot fst g12 ggf gov imb ind inf jor jus lel mat med mil mus net nom not ntr odo org ppg pro psc psi qsl rec slg srv tmp trd tur tv vet vlog wiki zlg ",bs:" com edu gov net org ",bz:" du et om ov rg ",ca:" ab bc mb nb nf nl ns nt nu on pe qc sk yk ",ck:" biz co edu gen gov info net org ",cn:" ac ah bj com cq edu fj gd gov gs gx gz ha hb he hi hl hn jl js jx ln mil net nm nx org qh sc sd sh sn sx tj tw xj xz yn zj ",co:" com edu gov mil net nom org ",cr:" ac c co ed fi go or sa ",cy:" ac biz com ekloges gov ltd name net org parliament press pro tm ",do:" art com edu gob gov mil net org sld web ",dz:" art asso com edu gov net org pol ",ec:" com edu fin gov info med mil net org pro ",eg:" com edu eun gov mil name net org sci ",er:" com edu gov ind mil net org rochest w ",es:" com edu gob nom org ",et:" biz com edu gov info name net org ",fj:" ac biz com info mil name net org pro ",fk:" ac co gov net nom org ",fr:" asso com f gouv nom prd presse tm ",gg:" co net org ",gh:" com edu gov mil org ",gn:" ac com gov net org ",gr:" com edu gov mil net org ",gt:" com edu gob ind mil net org ",gu:" com edu gov net org ",hk:" com edu gov idv net org ",hu:" 2000 agrar bolt casino city co erotica erotika film forum games hotel info ingatlan jogasz konyvelo lakas media news org priv reklam sex shop sport suli szex tm tozsde utazas video ",id:" ac co go mil net or sch web ",il:" ac co gov idf k12 muni net org ",in:" ac co edu ernet firm gen gov i ind mil net nic org res ",iq:" com edu gov i mil net org ",ir:" ac co dnssec gov i id net org sch ",it:" edu gov ",je:" co net org ",jo:" com edu gov mil name net org sch ",jp:" ac ad co ed go gr lg ne or ",ke:" ac co go info me mobi ne or sc ",kh:" com edu gov mil net org per ",ki:" biz com de edu gov info mob net org tel ",km:" asso com coop edu gouv k medecin mil nom notaires pharmaciens presse tm veterinaire ",kn:" edu gov net org ",kr:" ac busan chungbuk chungnam co daegu daejeon es gangwon go gwangju gyeongbuk gyeonggi gyeongnam hs incheon jeju jeonbuk jeonnam k kg mil ms ne or pe re sc seoul ulsan ",kw:" com edu gov net org ",ky:" com edu gov net org ",kz:" com edu gov mil net org ",lb:" com edu gov net org ",lk:" assn com edu gov grp hotel int ltd net ngo org sch soc web ",lr:" com edu gov net org ",lv:" asn com conf edu gov id mil net org ",ly:" com edu gov id med net org plc sch ",ma:" ac co gov m net org press ",mc:" asso tm ",me:" ac co edu gov its net org priv ",mg:" com edu gov mil nom org prd tm ",mk:" com edu gov inf name net org pro ",ml:" com edu gov net org presse ",mn:" edu gov org ",mo:" com edu gov net org ",mt:" com edu gov net org ",mv:" aero biz com coop edu gov info int mil museum name net org pro ",mw:" ac co com coop edu gov int museum net org ",mx:" com edu gob net org ",my:" com edu gov mil name net org sch ",nf:" arts com firm info net other per rec store web ",ng:" biz com edu gov mil mobi name net org sch ",ni:" ac co com edu gob mil net nom org ",np:" com edu gov mil net org ",nr:" biz com edu gov info net org ",om:" ac biz co com edu gov med mil museum net org pro sch ",pe:" com edu gob mil net nom org sld ",ph:" com edu gov i mil net ngo org ",pk:" biz com edu fam gob gok gon gop gos gov net org web ",pl:" art bialystok biz com edu gda gdansk gorzow gov info katowice krakow lodz lublin mil net ngo olsztyn org poznan pwr radom slupsk szczecin torun warszawa waw wroc wroclaw zgora ",pr:" ac biz com edu est gov info isla name net org pro prof ",ps:" com edu gov net org plo sec ",pw:" belau co ed go ne or ",ro:" arts com firm info nom nt org rec store tm www ",rs:" ac co edu gov in org ",sb:" com edu gov net org ",sc:" com edu gov net org ",sh:" co com edu gov net nom org ",sl:" com edu gov net org ",st:" co com consulado edu embaixada gov mil net org principe saotome store ",sv:" com edu gob org red ",sz:" ac co org ",tr:" av bbs bel biz com dr edu gen gov info k12 name net org pol tel tsk tv web ",tt:" aero biz cat co com coop edu gov info int jobs mil mobi museum name net org pro tel travel ",tw:" club com ebiz edu game gov idv mil net org ",mu:" ac co com gov net or org ",mz:" ac co edu gov org ",na:" co com ",nz:" ac co cri geek gen govt health iwi maori mil net org parliament school ",pa:" abo ac com edu gob ing med net nom org sld ",pt:" com edu gov int net nome org publ ",py:" com edu gov mil net org ",qa:" com edu gov mil net org ",re:" asso com nom ",ru:" ac adygeya altai amur arkhangelsk astrakhan bashkiria belgorod bir bryansk buryatia cbg chel chelyabinsk chita chukotka chuvashia com dagestan e-burg edu gov grozny int irkutsk ivanovo izhevsk jar joshkar-ola kalmykia kaluga kamchatka karelia kazan kchr kemerovo khabarovsk khakassia khv kirov koenig komi kostroma kranoyarsk kuban kurgan kursk lipetsk magadan mari mari-el marine mil mordovia mosreg msk murmansk nalchik net nnov nov novosibirsk nsk omsk orenburg org oryol penza perm pp pskov ptz rnd ryazan sakhalin samara saratov simbirsk smolensk spb stavropol stv surgut tambov tatarstan tom tomsk tsaritsyn tsk tula tuva tver tyumen udm udmurtia ulan-ude vladikavkaz vladimir vladivostok volgograd vologda voronezh vrn vyatka yakutia yamal yekaterinburg yuzhno-sakhalinsk ",rw:" ac co com edu gouv gov int mil net ",sa:" com edu gov med net org pub sch ",sd:" com edu gov info med net org tv ",se:" a ac b bd c d e f g h i k l m n o org p parti pp press r s t tm u w x y z ",sg:" com edu gov idn net org per ",sn:" art com edu gouv org perso univ ",sy:" com edu gov mil net news org ",th:" ac co go in mi net or ",tj:" ac biz co com edu go gov info int mil name net nic org test web ",tn:" agrinet com defense edunet ens fin gov ind info intl mincom nat net org perso rnrt rns rnu tourism ",tz:" ac co go ne or ",ua:" biz cherkassy chernigov chernovtsy ck cn co com crimea cv dn dnepropetrovsk donetsk dp edu gov if in ivano-frankivsk kh kharkov kherson khmelnitskiy kiev kirovograd km kr ks kv lg lugansk lutsk lviv me mk net nikolaev od odessa org pl poltava pp rovno rv sebastopol sumy te ternopil uzhgorod vinnica vn zaporizhzhe zhitomir zp zt ",ug:" ac co go ne or org sc ",uk:" ac bl british-library co cym gov govt icnet jet lea ltd me mil mod national-library-scotland nel net nhs nic nls org orgn parliament plc police sch scot soc ",us:" dni fed isa kids nsn ",uy:" com edu gub mil net org ",ve:" co com edu gob info mil net org web ",vi:" co com k12 net org ",vn:" ac biz com edu gov health info int name net org pro ",ye:" co com gov ltd me net org plc ",yu:" ac co edu gov org ",za:" ac agric alt bourse city co cybernet db edu gov grondar iaccess imt inca landesign law mil net ngo nis nom olivetti org pix school tm web ",zm:" ac co com edu gov net org sch "},has:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return!1;var r=e.lastIndexOf(".",t-1);if(r<=0||r>=t-1)return!1;var i=n.list[e.slice(t+1)];return!!i&&i.indexOf(" "+e.slice(r+1,t)+" ")>=0},is:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return!1;if(e.lastIndexOf(".",t-1)>=0)return!1;var r=n.list[e.slice(t+1)];return!!r&&r.indexOf(" "+e.slice(0,t)+" ")>=0},get:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return null;var r=e.lastIndexOf(".",t-1);if(r<=0||r>=t-1)return null;var i=n.list[e.slice(t+1)];return i?i.indexOf(" "+e.slice(r+1,t)+" ")<0?null:e.slice(r+1):null},noConflict:function(){return e.SecondLevelDomains===this&&(e.SecondLevelDomains=t),this}};return n})},function(e,t,n){"use strict";function r(e){var t=[],n=c.runWith(t,e);return new f(t,n)}function i(e){var t=l();if(!t)throw e(),new s.ScrivitoError("Content not yet loaded. Forgot to use Scrivito.load or Scrivito.connect? See https://scrivito.com/content-not-yet-loaded-error");t.push({reason:"missing",loader:e})}function o(e){var t=l();t&&t.push({reason:"outdated",loader:e})}Object.defineProperty(t,"__esModule",{value:!0});var a=n(0),s=n(1),u=n(66),c=new u.default,l=function(){return c.current()};t.capture=r,t.notifyMissingData=i,t.notifyOutdatedData=o;var f=function(){function e(e,t){this.captureList=e,this.result=t}return e.prototype.isAllDataLoaded=function(){return!a.findWhere(this.captureList,{reason:"missing"})},e.prototype.isAllDataUpToDate=function(){return 0===this.captureList.length},e.prototype.loadRequiredData=function(){if(0===this.captureList.length)return null;this.captureList.forEach(function(e){return e.loader()})},e}();t.CaptureReport=f},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(15),o=n(36),a=function(){function e(e,t){var n=(void 0===t?{}:t).batchSize;this.mget=e,this.batchSize=n||100,this.deferreds={}}return e.prototype.retrieve=function(e){var t=this;if(r.isEmpty(this.deferreds)&&o.default(function(){return t.performRetrieval()}),!this.deferreds[e]){var n=new i.default;this.deferreds[e]=n}return this.deferreds[e].promise},e.prototype.reset=function(){this.deferreds={}},e.prototype.performRetrieval=function(){var e=this,t=r.keys(this.deferreds).slice(0,this.batchSize);if(0!==t.length){var n={};t.forEach(function(t){n[t]=e.deferreds[t],delete e.deferreds[t]}),this.mget(t).then(function(r){t.forEach(function(t,i){var o=n[t],a=r[i];i<r.length?o.resolve(a):e.retrieve(t).then(o.resolve,o.reject)})},function(e){r.each(n,function(t){return t.reject(e)})}),this.performRetrieval()}},e}();t.default=a},function(e,t,n){function r(e,t){return"function"==typeof t?i(t):t}var i=n(45);e.exports=function(e){try{return JSON.stringify(e,r,2)}catch(t){return String(e)}}},function(e,t,n){var r=n(14),i=n(61);e.exports=r("Boolean",i)},function(e,t,n){var r=n(14),i=n(23);e.exports=r("Nil",i)},function(e,t,n){var r=n(14),i=n(92);e.exports=r("Number",i)},function(e,t){e.exports=function(e){return"number"==typeof e&&isFinite(e)&&!isNaN(e)}},function(e,t,n){var r=n(10);e.exports=function(e){return r(e)&&"union"===e.meta.kind}},function(e,t,n){function r(e){return"Array<"+a(e)+">"}function i(e,t){function n(t,n){if(f)return t;for(var r=!0,i=[],o=0,a=t.length;o<a;o++){var s=t[o],c=u(e,s,null);r=r&&s===c,i.push(c)}return r&&(i=t),i}var i=t||r(e),f=(a(e),s(e));return n.meta={kind:"list",type:e,name:t,identity:f},n.displayName=i,n.is=function(t){return l(t)&&t.every(function(t){return c(t,e)})},n.update=function(e,t){return n(o.update(e,t))},n}var o=n(4),a=(n(18),n(9),n(7)),s=n(27),u=n(28),c=n(29),l=n(26);i.getDefaultName=r,e.exports=i},function(e,t,n){function r(e){return"{"+Object.keys(e).map(function(t){return t+": "+i(e[t])}).join(", ")+"}"}var i=n(7);e.exports=r},function(e,t,n){function r(e,t,n){var r=e.reduce(function(e,t){return l(e,t)},t);return n&&(r.displayName=n,r.meta.name=n),r}function i(e){return c(e)?e:e.meta.props}function o(e){return c(e)?null:e.meta.defaultProps}function a(e,t){Array.prototype.push.apply(e,t)}function s(e,t,n){var s={},c={},l=[],d={};t.forEach(function(e,t){var n=f(e),r=n.unrefinedType;a(l,n.predicates),u(s,i(r)),u(c,r.prototype),u(d,o(r),!0)}),n=e.getOptions(n),n.defaultProps=u(d,n.defaultProps,!0);var h=r(l,e(s,{strict:n.strict,defaultProps:n.defaultProps}),n.name);return u(h.prototype,c),h}var u=(n(4),n(9),n(26),n(71)),c=(n(171),n(172),n(25)),l=n(68),f=n(173);e.exports=s},function(e,t,n){function r(e){return"["+e.map(a).join(", ")+"]"}function i(e,t){function n(t,n){if(a)return t;for(var r=!0,i=[],o=0,s=e.length;o<s;o++){var u=e[o],l=t[o],f=c(u,l,null);r=r&&l===f,i.push(f)}return r&&(i=t),i}var i=t||r(e),a=e.every(s);return n.meta={kind:"tuple",types:e,name:t,identity:a},n.displayName=i,n.is=function(t){return u(t)&&t.length===e.length&&e.every(function(e,n){return l(t[n],e)})},n.update=function(e,t){return n(o.update(e,t))},n}var o=n(4),a=(n(18),n(9),n(7)),s=n(27),u=n(26),c=n(28),l=n(29);i.getDefaultName=r,e.exports=i},function(e,t){function n(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}e.exports=n},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){var t={};return W.default.each(e,function(e,n){var r=O(e,2),i=r[0],c=r[1],l=o(n);if((0,M.default)(l))t[l]=i;else{var f=O(c,2),d=f[0],h=f[1];t[l]=[a(d,n),u(s(d,h,i,n))]}}),t}function o(e){if(!(0,V.isCamelCase)(e))throw new q.ArgumentError("Attribute names have to be in camel case.");return(0,V.underscore)(e)}function a(e,t){switch(e){case"enum":return"string";case"float":case"integer":return"number";case"multienum":return"stringlist";case"binary":case"date":case"html":case"link":case"linklist":case"reference":case"referencelist":case"string":case"stringlist":case"widgetlist":return e;default:throw new q.ArgumentError('Attribute "'+t+'" is of unsupported type "'+e+'".')}}function s(e,t,n,r){if(null===n)return n;switch(e){case"binary":return l(n,r);case"date":return f(n,r);case"enum":return d(t,n,r);case"float":return h(n,r);case"html":return p(n,r);case"integer":return v(n,r);case"link":return m(n,r);case"linklist":return g(n,r);case"multienum":return w(t,n,r);case"reference":return _(n,r);case"referencelist":return C(n,r);case"string":return S(n,r);case"stringlist":return T(n,r);case"widgetlist":return j(n,r);default:throw new q.InternalError('serializeAttributeValue is not implemented for "'+e+'".')}}function u(e){return(W.default.isString(e)||W.default.isArray(e))&&W.default.isEmpty(e)?null:e}function c(e,t,n){throw new q.ArgumentError("Unexpected value "+(0,U.default)(e)+' for attribute "'+t+'". Expected: '+n)}function l(e,t){if(e instanceof K.default)return{id:e.id()};c(e,t,"A Binary.")}function f(e,t){return W.default.isDate(e)?(0,I.formatDateToString)(e):(0,I.isValidDateString)(e)?e:void c(e,t,"A Date.")}function d(e,t,n){var r=e.values;if(W.default.contains(r,t))return t;c(t,n,'Valid attribute values are contained in its "values" array ['+r+"].")}function h(e,t){if((0,I.isValidFloat)(e))return e;var n=e;W.default.isNumber(e)&&(n=String(e)),c(n,t,"A Number, that is #isFinite().")}function p(e,t){if(W.default.isString(e))return e;c(e,t,"A String.")}function v(e,t){if((0,I.isValidInteger)(e))return e;c(e,t,"A Number, that is #isSafeInteger().")}function m(e,t){if(y(e))return b(e);c(e,t,"A Link instance.")}function g(e,t){if(W.default.isArray(e)&&W.default.every(e,y))return W.default.map(e,b);c(e,t,"An array of Link instances.")}function y(e){if(e instanceof B.default)return!0;if(!W.default.isObject(e))return!1;var t=W.default.without(W.default.keys(e),"hash","obj_id","query","target","title","url");return W.default.isEmpty(t)}function b(e){var t={fragment:"function"==typeof e.hash?e.hash():e.hash,query:"function"==typeof e.query?e.query():e.query,target:"function"==typeof e.target?e.target():e.target,title:"function"==typeof e.title?e.title():e.title,url:"function"==typeof e.url?e.url():e.url};return t.obj_id="function"==typeof e.objId?e.objId():e.obj_id,W.default.mapObject(t,function(e){return e||null})}function w(e,t,n){var r=e.values,i="An array with values from "+(0,U.default)(r)+".";W.default.isArray(t)&&W.default.every(t,W.default.isString)||c(t,n,i);var o=W.default.difference(t,r);if(o.length){c(t,n,i+" Forbidden values: "+(0,U.default)(o)+".")}return t}function _(e,t){if(E(e))return k(e);c(e,t,"A BasicObj or a String ID.")}function C(e,t){if(x(e))return W.default.map(e,k);c(e,t,"An array with BasicObjs or String IDs.")}function k(e){return e instanceof N.default?e.id():e}function E(e){return W.default.isString(e)||e instanceof N.default}function x(e){return W.default.isArray(e)&&W.default.every(e,function(e){return E(e)})}function S(e,t){if(A(e))return e.toString();c(e,t,"A String.")}function T(e,t){if(W.default.isArray(e)&&W.default.every(e,function(e){return A(e)}))return W.default.invoke(e,"toString");c(e,t,"An array of strings.")}function A(e){return W.default.isString(e)||W.default.isNumber(e)}function j(e,t){if(W.default.isArray(e)&&W.default.every(e,function(e){return e instanceof F.default}))return W.default.invoke(e,"id");c(e,t,"An array of BasicWidget instances.")}Object.defineProperty(t,"__esModule",{value:!0});var O=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.serialize=i;var P=n(3),N=r(P),D=n(42),M=r(D),I=n(43),L=n(30),F=r(L),R=n(35),B=r(R),z=n(0),W=r(z),q=n(1),H=n(37),U=r(H),V=n(19),Q=n(24),K=r(Q)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(188),u=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(s),c=n(42),l=r(c),f=n(112),d=r(f),h=n(0),p=r(h),v=n(1),m=n(19),g=function(){function e(){i(this,e)}return a(e,[{key:"get",value:function(e,t){if(!(0,m.isCamelCase)(e))throw new v.ArgumentError("Attribute names have to be in camel case.");var n=(0,m.underscore)(e);{if(!(0,l.default)(n)){var r=scrivito.typeInfo.normalize(t),i=o(r,2),a=i[0],s=i[1],c=this._current[n];return c&&p.default.isArray(c)||(c=[]),u.deserialize(this,c,a,s)}if(p.default.has(this._systemAttributes,n)){var f=this._systemAttributes[n];return"function"==typeof this[f]?this[f]():this[f]}}}},{key:"field",value:function(e,t){return new d.default({container:this,attributeName:e,typeInfo:scrivito.typeInfo.normalize(t)})}},{key:"widget",value:function(e){throw new TypeError("Override in subclass.")}},{key:"serializeAttributes",value:function(){var e=this,t={};return p.default.each(this._current,function(n,r){if(p.default.isArray(n)&&"widgetlist"===p.default.first(n)){var i=(0,m.camelCase)(r),o=p.default.invoke(e.get(i,["widgetlist"]),"serializeAttributes");return void(t[r]=["widgetlist",o])}t[r]=n}),t}},{key:"_persistWidgets",value:function(e,t){p.default.each(t,function(t){var n=o(t,2),r=n[0],i=n[1];i&&"widgetlist"===i[0]&&p.default.each(r,function(t){t.isPersisted()||t.persistInObj(e)})})}},{key:"_objClass",get:function(){throw new TypeError("Override in subclass.")}},{key:"_current",get:function(){throw new TypeError("Override in subclass.")}}]),e}();t.default=g},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){l.default.store(e,t)}function o(e){return scrivito.computeCacheKey(e)}function a(e,t){return new d.default(e,t)}function s(){return h.cmsState.subState("objQuery")}function u(){s().clear()}Object.defineProperty(t,"__esModule",{value:!0}),t.store=i,t.computeCacheKey=o,t.get=a,t.stateContainer=s,t.clearCache=u;var c=n(102),l=r(c),f=n(191),d=r(f),h=n(5)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(189),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=function(){function e(t,n){r(this,e),this._params=t,this._batchSize=n}return i(e,null,[{key:"store",value:function(e,t){a.default.store(e,t)}},{key:"count",value:function(e){return a.default.countFor(e)}}]),i(e,[{key:"iterator",value:function(){function e(){if(!n)return{done:!0};var i=n.objIds();if(r<i.length){var o=i[r];return r++,t[o]?e():(t[o]=!0,{value:o,done:!1})}return n=n.nextBatch(),r=0,e()}var t={},n=a.default.firstBatchFor(this._params,this._batchSize),r=0;return{next:e}}}]),e}();t.default=s},function(e,t,n){"use strict";function r(){for(var e=Math.floor(Math.random()*Math.pow(16,8)).toString(16);e.length<8;)e="0"+e;return e}function i(){return r()+r()}Object.defineProperty(t,"__esModule",{value:!0}),t.randomId=i,t.randomHex=r},function(e,t,n){"use strict";function r(e,t){for(var n=e.iterator(),r=[];r.length!==t;){var i=n.next();if(i.done)return r;r.push(i.value)}return r}function i(e){return e.iterator().next().value||null}Object.defineProperty(t,"__esModule",{value:!0}),t.arrayFromIterable=r,t.firstValueFromIterable=i},function(e,t,n){"use strict";function r(e){return e.displayName||e.name}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},,,,function(e,t,n){"use strict";window.scrivito||(window.scrivito={}),window.scrivito.client={}},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e){return h.cmsState.subState("metadataCollection").subState(e)}function o(e){return(0,l.mapObject)(e.meta_data,function(e){var t=s(e,2),n=t[0],r=t[1];switch(n){case"date":return(0,c.deserializeAsDate)(r);case"number":return(0,c.deserializeAsInteger)(r);default:return r}})}function a(e){if(!(0,p.isCamelCase)(e))throw new v.ArgumentError('Metadata key "'+e+'" is not in camel case.')}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(43),l=n(0),f=n(16),d=function(e){return e&&e.__esModule?e:{default:e}}(f),h=n(5),p=n(19),v=n(1),m=function(){function e(t){var n=this;r(this,e),this._binaryId=t,t&&(this._loadableData=new d.default({state:i(t),loader:function(){return n._loadData()}}))}return u(e,[{key:"get",value:function(e){a(e);var t=this._getData();if(t)return t[(0,p.underscore)(e)]}},{key:"keys",value:function(){var e=this._getData();return e?(0,l.map)((0,l.keys)(e),p.camelCase):[]}},{key:"_getData",value:function(){if(this._binaryId)return this._loadableData.get()}},{key:"_loadData",value:function(){var e="blobs/"+encodeURIComponent(this._binaryId)+"/meta_data";return scrivito.CmsRestApi.get(e).then(o)}},{key:"binaryId",get:function(){return this._binaryId}}],[{key:"store",value:function(e,t){new d.default({state:i(e)}).set(o(t))}}]),e}();t.default=m},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileType=t.BlobType=void 0;var r=n(21),i=t.BlobType=r.tcomb.interface({size:r.tcomb.Number,type:r.tcomb.String},{name:"Blob",strict:!1});t.FileType=i.extend({name:r.tcomb.String},{name:"File",strict:!1})},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=function(e){return e&&e.__esModule?e:{default:e}}(a),u=n(0),c=n(1),l=function(){function e(t){var n=t.container,r=t.attributeName,o=t.typeInfo;i(this,e),this._container=n,this._attributeName=r,this._typeInfo=o}return o(e,[{key:"get",value:function(){return this._container.get(this.name(),this._typeInfo)}},{key:"update",value:function(e){this._container.update(r({},this.name(),[e,this._typeInfo]))}},{key:"container",value:function(){return this._container}},{key:"obj",value:function(){return this.container().obj()}},{key:"name",value:function(){return this._attributeName}},{key:"type",value:function(){return this._typeInfo[0]}},{key:"typeOptions",value:function(){return this._typeInfo[1]||{}}},{key:"equals",value:function(t){return t instanceof e&&(this.container().equals(t.container())&&this.name()===t.name())}},{key:"values",value:function(){return this._assertValidTypes(["enum","multienum"],"Only enum and multienum attributes can have values"),this._sortValuesByLocalization(this.typeOptions().values)}},{key:"titleForValue",value:function(e){this._assertValidTypes(["enum","multienum"],"Only enum and multienum attributes can have localized values");var t=(0,u.findWhere)(this.typeOptions().valuesLocalization,{value:e});return t&&t.title||e}},{key:"toString",value:function(){var e=this._dataForId(),t=e.name,n=e.objId,r=e.widgetId,i="<BasicField name="+t+" objId="+n;return i+=r?" widgetId="+r+">":">"}},{key:"id",value:function(){var e=this._dataForId(),t=e.name,n=e.objId,r=e.widgetId,i=t+"|"+n;return r&&(i+="|"+r),i}},{key:"_assertValidTypes",value:function(e,t){if(!(0,u.include)(e,this.type()))throw new c.InternalError(t)}},{key:"_dataForId",value:function(){var e={name:this.name()},t=this.container();return t instanceof s.default?e.objId=t.id():(e.objId=t.obj().id(),e.widgetId=t.id()),e}},{key:"_sortValuesByLocalization",value:function(e){var t=this;return e?this.typeOptions().valuesLocalization?(0,u.sortBy)(e,function(n){var r=(0,u.findIndex)(t.typeOptions().valuesLocalization,{value:n});return-1===r?e.length:r}):e:[]}}]),e}();t.default=l},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(3),s=r(a),u=n(38),c=r(u),l=n(1),f=n(22),d=function(){function e(t){i(this,e),this._registry=t}return o(e,[{key:"getObj",value:function(e,t){var n=s.default.get(t);return this._checkObjClassAndWrapInAppClass(e,n)}},{key:"getObjIncludingDeleted",value:function(e,t){var n=s.default.getIncludingDeleted(t);return this._checkObjClassAndWrapInAppClass(e,n)}},{key:"read",value:function(e,t){var n=c.default.basicFieldFor(e,t);if(n){var r=n.get();return(0,f.wrapInAppClass)(this._registry,r)}}},{key:"update",value:function(e,t){var n=this._registry.objClassNameFor(e.constructor);if(!n){var r=void 0;throw r=e.constructor===this._registry.defaultClassForObjs?"Obj":"Widget",new l.ArgumentError('Updating is not supported on the base class "'+r+'".')}if(t.constructor!==Object)throw new l.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");var i=c.default.forInstance(e),o=(0,f.unwrapAppAttributes)(t,i,n);e._scrivitoPrivateContent.update(o)}},{key:"wrapInAppClass",value:function(e){return(0,f.wrapInAppClass)(this._registry,e)}},{key:"_checkObjClassAndWrapInAppClass",value:function(e,t){var n=this._registry.objClassNameFor(e);if(n&&n!==t.objClass())throw new l.ResourceNotFoundError('Obj with id "'+t.id()+'" is not of type "'+n+'".');return this.wrapInAppClass(t)}}]),e}();t.default=d},function(e,t,n){"use strict";function r(e){return e.replace(u,function(e,t){var n=(0,o.default)(t),r=(0,a.recognizePath)(n);return r&&(0,s.store)(r,t),n})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(272),o=function(e){return e&&e.__esModule?e:{default:e}}(i),a=n(57),s=n(202),u=/\bobjid:([a-f0-9]{16})\b([^"']*)/g},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){return o(e),e instanceof d.default?u(e):e instanceof v.default?a(e):(0,g.default)(e)?s(e):(0,y.generate)({obj:e})}function o(e){if(!e)throw new h.ArgumentError("Missing target.");if(!(e instanceof d.default||e instanceof l.default||e instanceof v.default))throw new h.ArgumentError("Target is invalid. Valid targets are instances of Obj or Link.")}function a(e){return e.url()}function s(e){var t=e.get("blob",["binary"]);return t?a(t):"#__empty_blob"}function u(e){return e.isExternal()?e.url():i(e.obj())}Object.defineProperty(t,"__esModule",{value:!0}),t.basicUrlFor=i;var c=n(3),l=r(c),f=n(35),d=r(f),h=n(1),p=n(24),v=r(p),m=n(201),g=r(m),y=n(57)},function(e,t,n){"use strict";function r(){if(h)return{filters:h}}function i(){h=void 0}function o(e){if(scrivito.uiAdapter){A(e),e.filters&&(h=e.filters);var t=e.baseFilter;if(t){var n=t.query;n&&scrivito.uiAdapter.configureContentBrowser((0,u.default)({baseQuery:n}))}}}Object.defineProperty(t,"__esModule",{value:!0}),t.getContentBrowserConfiguration=r,t.resetContentBrowserConfiguration=i,t.default=o;var a=n(0),s=n(117),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=n(34),l=n(21),f=n(54),d=n(48),h=void 0,p=l.tcomb.union([l.tcomb.String,l.tcomb.list(l.tcomb.String)]),v=l.tcomb.enums.of((0,a.intersection)(d.OPERATORS,["contains","containsPrefix","equals","startsWith","isGreaterThan","isLessThan"])),m=l.tcomb.union([l.tcomb.String,l.tcomb.Date,l.tcomb.Nil,l.tcomb.Number,l.tcomb.list(l.tcomb.union([l.tcomb.String,l.tcomb.Nil])),l.tcomb.list(l.tcomb.union([l.tcomb.Date,l.tcomb.Nil])),l.tcomb.list(l.tcomb.union([l.tcomb.Number,l.tcomb.Nil]))],"SearchValue"),g=l.tcomb.struct({title:l.tcomb.maybe(l.tcomb.String)}),y=g.extend({field:l.tcomb.maybe(p),operator:l.tcomb.maybe(v),expanded:l.tcomb.maybe(l.tcomb.Boolean)}),b=g.extend({value:l.tcomb.maybe(m),query:l.tcomb.maybe(f.ObjSearchType),selected:l.tcomb.maybe(l.tcomb.Boolean)}),w=y.extend({type:l.tcomb.enums.of(["radioButton"]),options:l.tcomb.dict(l.tcomb.String,b)},"RadioFilterDefinition"),_=g.extend({value:l.tcomb.maybe(m),selected:l.tcomb.maybe(l.tcomb.Boolean)}),C=y.extend({type:l.tcomb.enums.of(["checkbox"]),options:l.tcomb.dict(l.tcomb.String,_)},"CheckboxFilterDefinition"),k=l.tcomb.declare("TreeFilterDefinition");k.define(g.extend({type:l.tcomb.maybe(l.tcomb.enums.of("tree")),icon:l.tcomb.maybe(l.tcomb.String),query:l.tcomb.maybe(f.ObjSearchType),expanded:l.tcomb.maybe(l.tcomb.Boolean),value:l.tcomb.maybe(m),field:l.tcomb.maybe(p),operator:l.tcomb.maybe(v),selected:l.tcomb.maybe(l.tcomb.Boolean),options:l.tcomb.maybe(l.tcomb.dict(l.tcomb.String,k))}));var E=l.tcomb.union([k,C,w]);E.dispatch=function(e){switch(e.type||"tree"){case"tree":return k;case"radioButton":return w;case"checkbox":return C}};var x=l.tcomb.dict(l.tcomb.String,E),S=l.tcomb.struct({query:f.ObjSearchType}),T=l.tcomb.struct({filters:l.tcomb.maybe(x),baseFilter:l.tcomb.maybe(S)},"Configuration"),A=(0,c.checkArgumentsFor)("configureContentBrowser",[["configuration",T]],{docPermalink:"js-sdk/configureContentBrowser"})},function(e,t,n){"use strict";function r(e){if(!e)return e;switch(void 0===e?"undefined":a(e)){case"string":case"number":case"boolean":return e;case"object":return e._scrivitoPrivateContent instanceof c.default?r(e._scrivitoPrivateContent.params()):(0,s.isDate)(e)?e:(0,s.isArray)(e)?i(e):o(e)}}function i(e){var t=[];return e.forEach(function(e){var n=r(e);void 0!==n&&t.push(n)}),t}function o(e){var t={};return(0,s.each)(e,function(e,n){var i=r(e);void 0!==i&&(t[n]=i)}),t}Object.defineProperty(t,"__esModule",{value:!0});var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.default=r;var s=n(0),u=n(48),c=function(e){return e&&e.__esModule?e:{default:e}}(u)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function c(e,t){var n=(0,x.default)(e),r=n.objId,i=n.widgetId;scrivito.uiAdapter.insertWidget(r,i,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.WIDGET_TAG_CONTEXT_KEY=void 0;var l=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),f=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),d=n(213),h=r(d),p=n(12),v=r(p),m=n(73),g=r(m),y=n(0),b=n(75),w=r(b),_=n(38),C=r(_),k=n(56),E=n(119),x=r(E),S=n(13),T=r(S),A=n(1),j=n(299),O=r(j),P=n(215),N=r(P),D=function(e){function t(e){a(this,t);var n=s(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={hasFocus:!1,isDragged:!1},n._onMouseOver=n._onMouseOver.bind(n),n._onMouseOut=n._onMouseOut.bind(n),n._onWidgetFocus=n._onWidgetFocus.bind(n),n._onWidgetBlur=n._onWidgetBlur.bind(n),n._setDragState=n._setDragState.bind(n),n}return u(t,e),f(t,[{key:"componentDidMount",value:function(){this._registerDropZone(),this._focusToken=scrivito.WidgetFocus.subscribe({onFocus:this._onWidgetFocus,onBlur:this._onWidgetBlur})}},{key:"componentDidUpdate",value:function(){this._widgetRef!==this._dropZoneWidgetRef&&this._registerDropZone()}},{key:"componentWillUnmount",value:function(){scrivito.WidgetFocus.unsubscribe(this._focusToken)}},{key:"getChildContext",value:function(){return o({},"_scrivitoWidget",null)}},{key:"render",value:function(){var e=this,t=this.context._scrivitoWidget;if(!t)throw new A.ScrivitoError("Detected inappropriate placing of Scrivito.WidgetTag: It is intended to be used exclusively as top-level element inside a Widget component.");return(0,w.default)()?v.default.createElement(this.props.tag,(0,y.extend)((0,y.omit)(this.props,"tag","className","style"),{ref:function(t){return e._widgetRef=t},className:this._className(),style:this._style(),onMouseOver:this._onMouseOver,onMouseOut:this._onMouseOut,children:[v.default.createElement(O.default,{key:"menuMarker",widget:t,setDragState:this._setDragState})].concat(i(v.default.Children.toArray(this.props.children)),[this._renderOptionMarker("top"),this._renderOptionMarker("bottom")])},this._dataProps())):v.default.createElement(this.props.tag,(0,y.omit)(this.props,"tag"))}},{key:"_setDragState",value:function(e){this.setState({isDragging:e})}},{key:"_className",value:function(){return this.state.hasFocus?this.props.className?this.props.className+" scrivito_active scrivito_entered":"scrivito_active scrivito_entered":this.props.className}},{key:"_dataProps",value:function(){var e={"data-scrivito-private-widget":!0,"data-scrivito-private-dropzone":!0};return this._isStructureMarker()&&(e["data-scrivito-private-structure-widget"]=!0),this.state.isDragging&&(e["data-scrivito-private-dropback"]=!0),e}},{key:"_style",value:function(){return this.state.isDragging?this.props.style?(0,y.extend)(this.props.style,{opacity:.5}):{opacity:.5}:this.props.style}},{key:"_isStructureMarker",value:function(){var e=(0,k.getWindowRegistry)(),t=e.widgetClassFor(this.context._scrivitoWidget.objClass()),n=C.default.forClass(t);return!!n&&(0,y.some)(n.attributes,function(e,t){var r=n.attributeDefinition(t);return"widgetlist"===l(r,1)[0]})}},{key:"_onMouseOver",value:function(e){e.stopPropagation(),scrivito.WidgetFocus.notifyFocus(this._focusToken)}},{key:"_onMouseOut",value:function(e){e.stopPropagation(),scrivito.WidgetFocus.notifyBlur(this._focusToken)}},{key:"_onWidgetFocus",value:function(){this.setState({hasFocus:!0})}},{key:"_onWidgetBlur",value:function(){this.setState({hasFocus:!1})}},{key:"_renderOptionMarker",value:function(e){return v.default.createElement(N.default,{key:"optionMarker-"+e,position:e,widget:this.context._scrivitoWidget,insertWidget:c,isAlwaysShown:scrivito.uiAdapter.alwaysShowOptionMarkers()})}},{key:"_registerDropZone",value:function(){if((0,w.default)()&&this._widgetRef){var e=(0,x.default)(this.context._scrivitoWidget),t=e.objId,n=e.widgetId,r=g.default.findDOMNode(this._widgetRef);scrivito.uiAdapter.registerWidgetDropZoneInDom(r,t,n),this._dropZoneWidgetRef=this._widgetRef}}}]),t}(v.default.Component);D.displayName="Scrivito.WidgetTag",D.defaultProps={tag:"div"},D.contextTypes=o({},"_scrivitoWidget",h.default.object),D.childContextTypes=o({},"_scrivitoWidget",h.default.object),t.WIDGET_TAG_CONTEXT_KEY="_scrivitoWidget",t.default=(0,T.default)(D)},function(e,t,n){"use strict";function r(e){return e instanceof o.default?{objId:e.id()}:{objId:e.obj().id(),widgetId:e.id()}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(3),o=function(e){return e&&e.__esModule?e:{default:e}}(i)},,,,,,,,,,function(e,t,n){"use strict";function r(e){i();var t=e.location,n=t.hash,r=n.indexOf(s);if(!(r<0)){var o=n.substr(r+s.length,3),a=n.substring(0,r);"#"===a&&(a="");var c=t.href.toString().replace(n,a);u=parseInt(o,10)||0,e.history.replaceState({},"",c)}}function i(){u=0}function o(e){var t=e.toString();return e.hash||(t+="#"),""+t+s+(u+1)}function a(){return u}Object.defineProperty(t,"__esModule",{value:!0});var s="&scrivito.authFailedCount=",u=void 0;t.default={init:r,augmentedRedirectUrl:o,reset:i,currentFailureCount:a}},function(e,t,n){"use strict";function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window.document,n=t.createElement("link");n.rel="stylesheet",n.href=e,t.head.appendChild(n)}function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window.document,n=t.createElement("script");n.src=e,t.head.appendChild(n)}Object.defineProperty(t,"__esModule",{value:!0}),t.loadCss=r,t.loadJs=i},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n=o(e,t);if(n)return n;var r=e._widget_pool;return l.default.find(r,function(e,r){if(n=o(e,t))return n.parentWidgetId=r,!0}),n}function o(e,t){var n=void 0;return l.default.find(e,function(e,r){if(!(0,u.default)(r)){var i=a(e,2),o=i[0],s=i[1];if(s&&"widgetlist"===o){var c=s.indexOf(t);if(-1!==c)return n={attributeName:r,index:c},!0}}}),n}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.default=i;var s=n(42),u=r(s),c=n(0),l=r(c)},function(e,t,n){e.exports=n(187)},,,,,,function(e,t,n){"use strict";function r(){if(window.parent!==window){var e=window.parent.connectAppDocument;return e?e(window.document):void 0}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";n(109),n(140),n(142),n(145),n(146),n(147),n(148),n(149),n(150),n(152),n(153),n(180),n(184),n(185)},function(e,t,n){"use strict";var r=n(36),i=function(e){return e&&e.__esModule?e:{default:e}}(r),o=n(5);!function(){function e(e){r()||(0,i.default)(function(){return(0,o.withBatchedUpdates)(function(){return t(n)})}),n.push(e)}function t(e){n=[];try{e.forEach(function(e){return e()})}finally{r()&&t(n)}}var n=[],r=function(){return n.length};scrivito.batchedStateUpdater={add:e}}()},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=n(0),a=n(1),s=n(66),u=0,c=Object.assign||o.extend,l=function(){function e(){}return e.prototype.get=function(){var e=this,t=this.untrackedGet();return this.recordDetector(function(){return t!==e.untrackedGet()}),t},e.prototype.recordDetector=function(e){this.getTree().recordDetector(e)},e.prototype.clear=function(){this.set(void 0)},e.prototype.subState=function(e){return new h(this,e)},e.prototype.setSubState=function(e,t){var n=this.untrackedGet();if(void 0===n){var r=(o={},o[e]=t,o);this.set(r)}else{var i=c({},n);i[e]=t,this.set(i)}var o},e.prototype.getSubState=function(e){var t=this.untrackedGet();if(void 0!==t)return t[e]},e}(),f=function(e){function t(){var t=e.call(this)||this;return t.treeId=(u++).toString(),t.clearListeners(),t.detectorRecording=new s.default,t.batchUpdates=new s.default,t.version=0,t.frozenContextContainer=new s.default,t}return r(t,e),t.prototype.untrackedGet=function(){return this.state},t.prototype.withFrozenState=function(e,t){return this.frozenContextContainer.runWith(e,t)},t.prototype.failIfFrozen=function(e){var t=this.frozenContextContainer.current();if(t){var n=e+" is not permitted inside '"+t.contextName+"'. "+(t.message||"");throw new d(n)}},t.prototype.set=function(e){this.failIfFrozen("Changing state"),this.state=e,this.version++,this.insideBatchUpdate()||this.notifyListeners()},t.prototype.trackChanges=function(e){var t=this,n=this.version,r=this.recordDetectors(e);return function(){return t.version!==n&&!!o.find(r,function(e){return e()})}},t.prototype.recordDetector=function(e){var t=this.detectorRecording.current();void 0!==t&&t.push(e)},t.prototype.getTree=function(){return this},t.prototype.id=function(){return this.treeId},t.prototype.subscribe=function(e){var t=this,n=!0,r=function(){n&&e()};return this.ensureCanMutateListeners(),this.listeners.push(r),function(){n=!1;var e=t.listeners.indexOf(r);t.ensureCanMutateListeners(),t.listeners.splice(e,1)}},t.prototype.withBatchedUpdates=function(e){var t=this.state;try{this.batchUpdates.runWith(!0,e)}finally{this.insideBatchUpdate()||t===this.state||this.notifyListeners()}},t.prototype.listenerCount=function(){return this.listeners.length},t.prototype.clearListeners=function(){this.listeners=[]},t.prototype.recordDetectors=function(e){if(void 0!==this.detectorRecording.current())throw new i.InternalError("no nested detector recording!");var t=[];return this.detectorRecording.runWith(t,e),t},t.prototype.notifyListeners=function(){this.listenersToNotify=this.listeners,this.listenersToNotify.forEach(function(e){return e()})},t.prototype.ensureCanMutateListeners=function(){this.listenersToNotify===this.listeners&&(this.listeners=this.listeners.slice())},t.prototype.insideBatchUpdate=function(){return!!this.batchUpdates.current()},t}(l);t.default=f;var d=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t}(a.ScrivitoError);t.StateChangePreventedError=d;var h=function(e){function t(t,n){var r=e.call(this)||this;return r.parentState=t,r.key=n,r.tree=t.getTree(),r}return r(t,e),t.prototype.getTree=function(){return this.tree},t.prototype.untrackedGet=function(){return this.parentState.getSubState(this.key)},t.prototype.set=function(e){this.parentState.setSubState(this.key,e)},t.prototype.id=function(){var e=this.key.replace(/\\/g,"\\\\").replace(/\//g,"\\/");return this.parentState.id()+"/"+e},t}(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(15),s=r(a),u=n(33),c=r(u),l=n(0),f=r(l),d=n(1),h=n(129),p=r(h),v=n(143),m=r(v),g=n(52);!function(){function e(){return k?scrivito.Promise.resolve():(E||(E=new s.default),E.promise)}function t(t,r,i){return e().then(function(){return n(t,r,i).then(function(e){return e&&e.task&&1===f.default.size(e)?w(e.task):e})})}function n(e,t,n){return a(e,function(i){return x.perform(function(o){return r(b({method:e,path:t,requestParams:n,timeout:i,authorization:o}))})})}function r(e){return scrivito.Promise.resolve(e).catch(v)}function a(e,t){var n=new T;return u(n,e,function(){return l(n,function(){return t(n.remainingTime())})})}function u(e,t,n){return"POST"===t?n():n().catch(function(t){if(!e.timedOut()&&t instanceof d.CommunicationError)return n();throw t})}function l(e,t){return function n(r){return t().catch(function(t){if(t instanceof d.NetworkError&&429===t.httpCode){var i=t.response,o=h(i.getResponseHeader("Retry-After"),r);if(e.cover(Date.now()+o))return scrivito.Promise.resolve(scrivito.waitMs(o)).then(function(){return n(r+1)});throw new d.RateLimitExceededError("rate limit exceeded")}throw t})}(0)}function h(e,t){var n=.5*Math.pow(2,t)*1e3;return Math.max(n,1e3*e)}function v(e){if(void 0===e.status||!f.default.isNumber(e.status))throw e;var t=void 0;try{t=JSON.parse(e.responseText)}catch(t){throw new d.NetworkError(e)}if("auth_missing"===t.code&&t.details){var n=p.default.augmentedRedirectUrl((0,g.location)()),r=t.details.visit.replace("retry=RETRY","retry="+p.default.currentFailureCount()).replace(/\$RETURN_TO/,encodeURIComponent(n));return(0,g.redirectTo)(r)}var i=t.error;if(401===e.status)throw new d.UnauthorizedError(i,e.status,t.code,t.details);if(403===e.status)throw new d.AccessDeniedError(i,e.status,t.code);if(429===e.status)throw new d.NetworkError(e);if(i){if(500===e.status)throw new d.BackendError(i,e.status);if("4"===e.status.toString()[0]&&t.error)throw d.ClientError.for(i,e.status,t.code)}throw new d.NetworkError(e)}function y(e,t){return{path:t,verb:e,params:arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}}}function b(e){var t=e.method,n=e.path,r=e.requestParams,i=e.timeout,o=e.authorization,a=(0,c.default)(C+"/tenants/"+k+"/perform").scheme("https").toString(),s=y(t,n,r);return scrivito.fetch(t,a,{params:s,timeout:i,authorization:o,forceVerification:S})}function w(e){switch(e.status){case"success":return e.result;case"error":throw d.ClientError.for(e.message,412,e.code);case"open":return scrivito.wait(2).then(function(){return n("GET","tasks/"+e.id).then(function(e){return w(e)})});default:throw new d.ScrivitoError("Invalid task response (unknown status)")}}var _=15e3,C=void 0,k=void 0,E=void 0,x=void 0,S=void 0;scrivito.CmsRestApi={init:function(e,t,n){t&&(C=e,k=t,E&&E.resolve()),x=n||x||m.default},reset:function(){C=void 0,k=void 0,E=void 0,x=void 0,S=void 0},get:function(e,n){return t("GET",e,n)},put:function(e,n){return t("PUT",e,n)},post:function(e,n){return t("POST",e,n)},delete:function(e,n){return t("DELETE",e,n)},requestBuiltInUserSession:function(t){return e().then(function(){var e="sessions/"+t,n=a("PUT",function(t){return r(b({method:"PUT",path:e,timeout:t}))});return n.then(p.default.reset),n})},enableForceVerification:function(){S=!0},currentPublicAuthorizationState:function(){return x?x.currentState?"[API] "+x.currentState():"[API]: authorization provider without currentState()":"[API]: no authorization provider"},get endpoint(){return C},get tenant(){return k}};var T=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_;i(this,e),this.timesOutAt=Date.now()+t}return o(e,[{key:"timedOut",value:function(){return this.remainingTime()<5}},{key:"remainingTime",value:function(){return Math.max(this.timesOutAt-Date.now(),0)}},{key:"cover",value:function(e){return e<=this.timesOutAt-5}}]),e}()}()},function(e,t,n){"use strict";function r(e){return new scrivito.Promise(function(t){return t(e(s()))}).catch(function(t){if(!(t instanceof c.UnauthorizedError))throw t;if(t.backendCode!==d)throw t;return i(t.details.verificator,t.details.data).then(function(t){return e(t.authorization)})})}function i(e,t){return h&&h.pending||(h={promise:f.default.fetch(e.id,e.url).then(function(e){return new scrivito.Promise(function(n){return e(t,n)})}),challenge:{verificator:e,data:t},pending:!0},h.promise.then(o,function(){h.pending=!1})),h.promise}function o(e){h=void 0,p=e}function a(){o()}function s(){if(p)return p.expiresAfter<new Date?void(p=void 0):p.authorization}function u(){var e=s();if(e)return"Authorization: "+e;if(!h)return null;var t=h.challenge,n=t.verificator,r=n.id,i=t.data;if(h.pending)return"Pending computation: "+r+" with "+i;var o="Orphaned computation: "+r+" with "+i;if(!p)return o+" (verification not present?!?)";var a=p&&p.expiresAfter;if(!a)return o+" (verification present, but without expiry?)";var u="(verification expiresAfter: "+a+")";return new Date<=a?o+" "+u:o+" "+u+" (expired)"}Object.defineProperty(t,"__esModule",{value:!0});var c=n(1),l=n(144),f=function(e){return e&&e.__esModule?e:{default:e}}(l),d="client_verification_required",h=void 0,p=void 0;a(),t.default={perform:r,reset:a,currentState:u,ERROR_CODE_CLIENT_VERIFICATION_REQUIRED:d}},function(e,t,n){"use strict";function r(){u={}}function i(e,t){var n=u[e];return n||(n=new a.default,u[e]=n,(0,s.loadJs)(t)),n.promise}Object.defineProperty(t,"__esModule",{value:!0});var o=n(15),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=n(130),u=void 0;r(),window._scrivitoRegisterVerificator=function(e,t){u[e].resolve(t)},t.default={fetch:i,reset:r}},function(e,t,n){"use strict";var r=n(0),i=function(e){return e&&e.__esModule?e:{default:e}}(r);!function(){function e(t){return i.default.isArray(t)?i.default.map(t,e):i.default.isObject(t)?i.default.chain(t).mapObject(e).pairs().sortBy(i.default.first):t}scrivito.computeCacheKey=function(t){var n=e(t);return JSON.stringify(n)}}()},function(e,t,n){"use strict";!function(){scrivito.currentWorkspaceId=function(){return scrivito.uiAdapter?scrivito.uiAdapter.currentWorkspaceId():"published"}}()},function(e,t,n){"use strict";!function(){function e(){if(window&&window.console&&!n){var e;(e=window.console).error.apply(e,arguments)}}function t(){n=!0}var n=!1;scrivito.logError=e,scrivito.disableConsoleError=t}()},function(e,t,n){"use strict";var r=n(15),i=function(e){return e&&e.__esModule?e:{default:e}}(r),o=n(1);!function(){function e(e,r,i,a,s){function u(e){n(new o.RequestFailedError(e),s)}var c=new XMLHttpRequest;return c.open("POST"===e?"POST":"PUT",r),c.timeout=Math.max(i||1,1),c.withCredentials=!0,c.onload=function(){return t(c,a,s)},c.onerror=function(){return u("XMLHttpRequest Error")},c.ontimeout=function(){return u("XMLHttpRequest Timeout")},c.onabort=function(){return u("XMLHttpRequest Aborted")},c}function t(e,t,n){if(a-=1,e.status>=200&&e.status<300)try{return t(JSON.parse(e.responseText))}catch(e){if(e instanceof SyntaxError)throw new o.RequestFailedError("JSON parse error");throw e}return n(e)}function n(e,t){a-=1,t(e)}var r=!1,a=0;scrivito.isFetchingActive=function(){return a>0},scrivito.disableFetching=function(){r=!0},scrivito.enableFetching=function(){r=!1},scrivito.fetch=function(t,n,o){var s=o.params,u=o.timeout,c=o.authorization,l=o.forceVerification;return r?(new i.default).promise:(a+=1,new scrivito.Promise(function(r,i){var o=e(t,n,u,r,i);c&&o.setRequestHeader("Authorization",c),l&&o.setRequestHeader("Scrivito-Force-Verification","true"),o.setRequestHeader("Content-type","application/json; charset=utf-8"),o.send(JSON.stringify(s))}))}}()},function(e,t,n){"use strict";var r=n(5);!function(){function e(e){var t=e.clientModulesForExport();i.forEach(function(e){scrivito[e]=t[e]})}function t(){var e={};return i.forEach(function(t){e[t]=scrivito[t]}),e}function n(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.ui;n&&e(n),(0,r.initializeGlobalState)(n)}var i=["BinaryRequest","CmsRestApi","ObjReplication"];scrivito.client.init=n,scrivito.client.modulesForExport=t}()},function(e,t,n){"use strict";var r=n(16),i=function(e){return e&&e.__esModule?e:{default:e}}(r);!function(){function e(e,t){var n=i.default.run(t);return n.allDataLoaded?n.result:e}scrivito.loadableWithDefault=e,scrivito.loadWithDefault=e}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i={},o={status:void 0},a=function(){function e(e){if(!e)throw new r.InternalError("LoadableValue needs stateContainer");this.container=e,this.id=e.id()}return e.resetLoadingState=function(){i={}},e.prototype.setLoading=function(e){i[this.id]=e},e.prototype.getLoading=function(){return i[this.id]},e.prototype.status=function(){return this.getState().status||"MISSING"},e.prototype.value=function(){var e=this.getState();if("AVAILABLE"===e.status)return e.value},e.prototype.error=function(){var e=this.getState();if("ERROR"===e.status)return e.error},e.prototype.version=function(){var e=this.getState();if(void 0!==e.status)return e.version},e.prototype.transitionToMissing=function(){this.setState({status:void 0})},e.prototype.transitionToAvailable=function(e,t){this.setState({status:"AVAILABLE",value:e,version:t})},e.prototype.transitionToError=function(e,t){this.setState({status:"ERROR",error:e,version:t})},e.prototype.setState=function(e){delete i[this.id],this.container.set(e)},e.prototype.getState=function(){return this.container.get()||o},e}();t.default=a},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(1);!function(){var e=function(e){function t(e){return r(this,t),i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,"Data is not yet loaded.",e))}return o(t,e),t}(a.ScrivitoError);scrivito.NotLoadedError=e}()},function(e,t,n){"use strict";function r(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function i(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=n(0),u=i(s),c=n(53),l=r(c),f=n(77),d=r(f),h=n(15),p=i(h),v=n(36),m=i(v),g=n(1);!function(){function e(e,t){return d.diff(e,t)}function t(e,t){return d.apply(e,t)}function n(e,t){return r(e,t)>0?e:t}function r(e,t){return e?t?i(e._version,t._version):1:-1}function i(e,t){return e>t?1:t>e?-1:0}function s(e){u.default.each(h,function(t){t(e)})}var c={},f=void 0,h={},v=0,y=0;scrivito.ObjReplication=function(){function i(e){var t=this;o(this,i),this._id=e,this._replicationActive=!1,this._scheduledReplication=!1,this._currentRequestDeferred=null,this._nextRequestDeferred=null,this._performThrottledReplication=scrivito.throttle(function(){return t._performReplication()},1e3)}return a(i,null,[{key:"get",value:function(e){return c[e]||(c[e]=new scrivito.ObjReplication(e)),c[e]}},{key:"subscribeWrites",value:function(e){return v+=1,h[v]=e,v}},{key:"unsubscribeWrites",value:function(e){delete h[e]}},{key:"getWorkspaceVersion",value:function(){return y}}]),a(i,[{key:"notifyLocalState",value:function(e){if(!f){if(void 0===this._backendState)throw new g.InternalError("Can not set local state before backend state.");if(this._backendState&&this._backendState._deleted)throw new g.InternalError("Can not update a fully deleted obj.");this._localState=e,this._startReplication()}}},{key:"notifyBackendState",value:function(n){if(void 0===this._backendState)return this._updateBackendState(n),void this._updateLocalState(n);if(r(n,this._bufferedBackendState||this._backendState)>0)if(this._replicationActive)this._bufferedBackendState=n;else{if(n._deleted)this._updateLocalState(null);else{var i=e(this._backendState,n);this._updateLocalState(t(this.localState,i))}this._updateBackendState(n)}}},{key:"finishSaving",value:function(){var e=void 0;if(this._nextRequestDeferred)e=this._nextRequestDeferred.promise;else{if(!this._currentRequestDeferred)return scrivito.Promise.resolve();e=this._currentRequestDeferred.promise}return e.catch(function(){return scrivito.Promise.reject()})}},{key:"_startReplication",value:function(){var t=this;u.default.isEmpty(e(this._backendState,this._localState))?this._nextRequestDeferred&&(this._nextRequestDeferred.resolve(),this._nextRequestDeferred=null):this._replicationActive?this._nextRequestDeferred||(this._nextRequestDeferred=new p.default):this._scheduledReplication||(this._scheduledReplication=!0,this._initDeferredForRequest(),s(this._currentRequestDeferred.promise),(0,m.default)(function(){return t._performThrottledReplication()}))}},{key:"_performReplication",value:function(){var t=this,n=this._localState,r=e(this._backendState,this._localState);this._scheduledReplication=!1,this._replicationActive=!0,this._replicatePatchToBackend(r).then(function(e){t._handleBackendUpdate(n,e),t._currentRequestDeferred.resolve(t._id),t._currentRequestDeferred=null,t._replicationActive=!1,t._startReplication()},function(e){t._currentRequestDeferred.reject(e),t._currentRequestDeferred=null,t._replicationActive=!1})}},{key:"_replicatePatchToBackend",value:function(e){if(u.default.isEmpty(e))return scrivito.Promise.resolve(this._backendState);var t=scrivito.currentWorkspaceId(),n="workspaces/"+t+"/objs/"+this._id;return scrivito.CmsRestApi.put(n,{obj:e})}},{key:"_initDeferredForRequest",value:function(){if(this._nextRequestDeferred){var e=this._nextRequestDeferred;this._nextRequestDeferred=null,this._currentRequestDeferred=e}else this._currentRequestDeferred=new p.default}},{key:"_handleBackendUpdate",value:function(r,i){var o=e(r,this._localState);this._updateBackendState(n(i,this._bufferedBackendState)),this._bufferedBackendState=void 0,this._updateLocalState(t(this._backendState,o))}},{key:"_updateLocalState",value:function(e){this._localState=e,l.set(this._id,this._localState)}},{key:"_updateBackendState",value:function(e){void 0!==this._backendState&&y++,this._backendState=e}},{key:"isNotStoredInBackend",value:function(){return null===this._backendState}},{key:"isRequestInFlight",value:function(){return this._replicationActive}},{key:"backendState",get:function(){return this._backendState}},{key:"localState",get:function(){return this._localState}}],[{key:"disableReplication",value:function(){f=!0}},{key:"enableReplication",value:function(){f=!1}},{key:"clearWriteCallbacks",value:function(){h={}}},{key:"clearCache",value:function(){c={}}}]),i}()}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(155),i=n(77),o=n(16),a=n(5),s=function(){function e(e,t){var n=this;this._loadableData=new o.default({state:t,loader:function(e){var t=e.push;return r.retrieveObj(n._id).then(function(e){return t(function(){return n._replication().notifyBackendState(e)}),e})}}),this._id=e}return Object.defineProperty(e.prototype,"current",{get:function(){return this._loadableData.get()},enumerable:!0,configurable:!0}),e.prototype.set=function(e){a.failIfFrozen("Changing CMS content"),this._loadableData.set(e)},e.prototype.setError=function(e){this._loadableData.setError(e)},e.prototype.isAvailable=function(){return this._loadableData.isAvailable()},e.prototype.update=function(e){var t=i.apply(this.current,e);this.set(t),this._replication().notifyLocalState(t)},e.prototype.finishSaving=function(){return this._replication().finishSaving()},e.prototype._replication=function(){return scrivito.ObjReplication.get(this._id)},e}();t.default=s},function(e,t,n){"use strict";function r(e){var t=scrivito.currentWorkspaceId();return scrivito.CmsRestApi.get("workspaces/"+t+"/objs/mget",{ids:e,include_deleted:!0}).then(function(e){return e.results})}function i(e){return s.retrieve(e).then(function(t){return t||{_deleted:e}})}function o(){s.reset()}Object.defineProperty(t,"__esModule",{value:!0});var a=n(87),s=new a.default(r,{batchSize:17});t.retrieveObj=i,t.reset=o},function(e,t,n){"use strict";function r(e,t,n){var r=s.getTypeName(t),i=n.length?"/"+n.join("/")+": "+r:r;return"Invalid value "+u(e)+" supplied to "+i}function i(e,t,n,i){return s.Function.is(t.getValidationErrorMessage)?t.getValidationErrorMessage(e,n,i):r(e,t,n)}function o(e,t,n){n=n||{};var r=s.Array.is(n)?n:n.path||[];return new f(a(e,t,r,n))}function a(e,t,n,r){return s.isType(t)?d[t.meta.kind](e,t,n,r):d.es6classes(e,t,n,r)}var s=n(157),u=s.stringify,c={},l=s.struct({message:s.Any,actual:s.Any,expected:s.Any,path:s.list(s.union([s.String,s.Number]))},"ValidationError");l.of=function(e,t,n,r){return new l({message:i(e,t,n,r),actual:e,expected:t,path:n})};var f=s.struct({errors:s.list(l),value:s.Any},"ValidationResult");f.prototype.isValid=function(){return!this.errors.length},f.prototype.firstError=function(){return this.isValid()?null:this.errors[0]},f.prototype.toString=function(){return this.isValid()?"[ValidationResult, true, "+u(this.value)+"]":"[ValidationResult, false, ("+this.errors.map(function(e){return u(e.message)}).join(", ")+")]"};var d=o.validators={};d.es6classes=function(e,t,n,r){return{value:e,errors:e instanceof t?[]:[l.of(e,t,n,r.context)]}},d.irreducible=d.enums=function(e,t,n,r){return{value:e,errors:t.is(e)?[]:[l.of(e,t,n,r.context)]}},d.list=function(e,t,n,r){if(!s.Array.is(e))return{value:e,errors:[l.of(e,t,n,r.context)]};for(var i={value:[],errors:[]},o=0,u=e.length;o<u;o++){var c=a(e[o],t.meta.type,n.concat(o),r);i.value[o]=c.value,i.errors=i.errors.concat(c.errors)}return i},d.subtype=function(e,t,n,r){var i=a(e,t.meta.type,n,r);return i.errors.length?i:(t.meta.predicate(i.value)||(i.errors=[l.of(e,t,n,r.context)]),i)},d.maybe=function(e,t,n,r){return s.Nil.is(e)?{value:e,errors:[]}:a(e,t.meta.type,n,r)},d.struct=function(e,t,n,r){if(!s.Object.is(e))return{value:e,errors:[l.of(e,t,n,r.context)]};if(t.is(e))return{value:e,errors:[]};var i={value:{},errors:[]},o=t.meta.props,u=t.meta.defaultProps||c;for(var f in o)if(o.hasOwnProperty(f)){var d=e[f];void 0===d&&(d=u[f]);var h=a(d,o[f],n.concat(f),r);i.value[f]=h.value,i.errors=i.errors.concat(h.errors)}if(r.hasOwnProperty("strict")?r.strict:t.meta.strict)for(var p in e)e.hasOwnProperty(p)&&!o.hasOwnProperty(p)&&i.errors.push(l.of(e[p],s.Nil,n.concat(p),r.context));return i.errors.length||(i.value=new t(i.value)),i},d.tuple=function(e,t,n,r){var i=t.meta.types,o=i.length;if(!s.Array.is(e)||e.length>o)return{value:e,errors:[l.of(e,t,n,r.context)]};for(var u={value:[],errors:[]},c=0;c<o;c++){var f=a(e[c],i[c],n.concat(c),r);u.value[c]=f.value,u.errors=u.errors.concat(f.errors)}return u},d.dict=function(e,t,n,r){if(!s.Object.is(e))return{value:e,errors:[l.of(e,t,n,r.context)]};var i={value:{},errors:[]};for(var o in e)if(e.hasOwnProperty(o)){var u=n.concat(o),c=a(o,t.meta.domain,u,r),f=a(e[o],t.meta.codomain,u,r);i.value[o]=f.value,i.errors=i.errors.concat(c.errors,f.errors)}return i},d.union=function(e,t,n,r){var i=t.dispatch(e);return s.Function.is(i)?a(e,i,n.concat(t.meta.types.indexOf(i)),r):{value:e,errors:[l.of(e,t,n,r.context)]}},d.intersection=function(e,t,n,r){for(var i=t.meta.types,o=i.length,s={value:e,errors:[]},u=0,c=0;c<o;c++){"struct"===i[c].meta.kind&&u++;var f=a(e,i[c],n,r);s.errors=s.errors.concat(f.errors)}return u>1&&s.errors.push(l.of(e,t,n,r.context)),s},d.interface=function(e,t,n,r){if(!s.Object.is(e))return{value:e,errors:[l.of(e,t,n,r.context)]};var i={value:{},errors:[]},o=t.meta.props;for(var u in o){var c=a(e[u],o[u],n.concat(u),r);i.value[u]=c.value,i.errors=i.errors.concat(c.errors)}if(r.hasOwnProperty("strict")?r.strict:t.meta.strict)for(var f in e)o.hasOwnProperty(f)||s.Nil.is(e[f])||i.errors.push(l.of(e[f],s.Nil,n.concat(f),r.context));return i},s.mixin(s,{ValidationError:l,ValidationResult:f,validate:o}),e.exports=s},function(e,t,n){/*! @preserve
69
+ !function(o,a){"use strict";"object"==typeof t&&t.exports?t.exports=a():(r=a,void 0!==(i="function"==typeof r?r.call(e,n,e,t):r)&&(t.exports=i))}(0,function(t){"use strict";var e=t&&t.SecondLevelDomains,n={list:{ac:" com gov mil net org ",ae:" ac co gov mil name net org pro sch ",af:" com edu gov net org ",al:" com edu gov mil net org ",ao:" co ed gv it og pb ",ar:" com edu gob gov int mil net org tur ",at:" ac co gv or ",au:" asn com csiro edu gov id net org ",ba:" co com edu gov mil net org rs unbi unmo unsa untz unze ",bb:" biz co com edu gov info net org store tv ",bh:" biz cc com edu gov info net org ",bn:" com edu gov net org ",bo:" com edu gob gov int mil net org tv ",br:" adm adv agr am arq art ato b bio blog bmd cim cng cnt com coop ecn edu eng esp etc eti far flog fm fnd fot fst g12 ggf gov imb ind inf jor jus lel mat med mil mus net nom not ntr odo org ppg pro psc psi qsl rec slg srv tmp trd tur tv vet vlog wiki zlg ",bs:" com edu gov net org ",bz:" du et om ov rg ",ca:" ab bc mb nb nf nl ns nt nu on pe qc sk yk ",ck:" biz co edu gen gov info net org ",cn:" ac ah bj com cq edu fj gd gov gs gx gz ha hb he hi hl hn jl js jx ln mil net nm nx org qh sc sd sh sn sx tj tw xj xz yn zj ",co:" com edu gov mil net nom org ",cr:" ac c co ed fi go or sa ",cy:" ac biz com ekloges gov ltd name net org parliament press pro tm ",do:" art com edu gob gov mil net org sld web ",dz:" art asso com edu gov net org pol ",ec:" com edu fin gov info med mil net org pro ",eg:" com edu eun gov mil name net org sci ",er:" com edu gov ind mil net org rochest w ",es:" com edu gob nom org ",et:" biz com edu gov info name net org ",fj:" ac biz com info mil name net org pro ",fk:" ac co gov net nom org ",fr:" asso com f gouv nom prd presse tm ",gg:" co net org ",gh:" com edu gov mil org ",gn:" ac com gov net org ",gr:" com edu gov mil net org ",gt:" com edu gob ind mil net org ",gu:" com edu gov net org ",hk:" com edu gov idv net org ",hu:" 2000 agrar bolt casino city co erotica erotika film forum games hotel info ingatlan jogasz konyvelo lakas media news org priv reklam sex shop sport suli szex tm tozsde utazas video ",id:" ac co go mil net or sch web ",il:" ac co gov idf k12 muni net org ",in:" ac co edu ernet firm gen gov i ind mil net nic org res ",iq:" com edu gov i mil net org ",ir:" ac co dnssec gov i id net org sch ",it:" edu gov ",je:" co net org ",jo:" com edu gov mil name net org sch ",jp:" ac ad co ed go gr lg ne or ",ke:" ac co go info me mobi ne or sc ",kh:" com edu gov mil net org per ",ki:" biz com de edu gov info mob net org tel ",km:" asso com coop edu gouv k medecin mil nom notaires pharmaciens presse tm veterinaire ",kn:" edu gov net org ",kr:" ac busan chungbuk chungnam co daegu daejeon es gangwon go gwangju gyeongbuk gyeonggi gyeongnam hs incheon jeju jeonbuk jeonnam k kg mil ms ne or pe re sc seoul ulsan ",kw:" com edu gov net org ",ky:" com edu gov net org ",kz:" com edu gov mil net org ",lb:" com edu gov net org ",lk:" assn com edu gov grp hotel int ltd net ngo org sch soc web ",lr:" com edu gov net org ",lv:" asn com conf edu gov id mil net org ",ly:" com edu gov id med net org plc sch ",ma:" ac co gov m net org press ",mc:" asso tm ",me:" ac co edu gov its net org priv ",mg:" com edu gov mil nom org prd tm ",mk:" com edu gov inf name net org pro ",ml:" com edu gov net org presse ",mn:" edu gov org ",mo:" com edu gov net org ",mt:" com edu gov net org ",mv:" aero biz com coop edu gov info int mil museum name net org pro ",mw:" ac co com coop edu gov int museum net org ",mx:" com edu gob net org ",my:" com edu gov mil name net org sch ",nf:" arts com firm info net other per rec store web ",ng:" biz com edu gov mil mobi name net org sch ",ni:" ac co com edu gob mil net nom org ",np:" com edu gov mil net org ",nr:" biz com edu gov info net org ",om:" ac biz co com edu gov med mil museum net org pro sch ",pe:" com edu gob mil net nom org sld ",ph:" com edu gov i mil net ngo org ",pk:" biz com edu fam gob gok gon gop gos gov net org web ",pl:" art bialystok biz com edu gda gdansk gorzow gov info katowice krakow lodz lublin mil net ngo olsztyn org poznan pwr radom slupsk szczecin torun warszawa waw wroc wroclaw zgora ",pr:" ac biz com edu est gov info isla name net org pro prof ",ps:" com edu gov net org plo sec ",pw:" belau co ed go ne or ",ro:" arts com firm info nom nt org rec store tm www ",rs:" ac co edu gov in org ",sb:" com edu gov net org ",sc:" com edu gov net org ",sh:" co com edu gov net nom org ",sl:" com edu gov net org ",st:" co com consulado edu embaixada gov mil net org principe saotome store ",sv:" com edu gob org red ",sz:" ac co org ",tr:" av bbs bel biz com dr edu gen gov info k12 name net org pol tel tsk tv web ",tt:" aero biz cat co com coop edu gov info int jobs mil mobi museum name net org pro tel travel ",tw:" club com ebiz edu game gov idv mil net org ",mu:" ac co com gov net or org ",mz:" ac co edu gov org ",na:" co com ",nz:" ac co cri geek gen govt health iwi maori mil net org parliament school ",pa:" abo ac com edu gob ing med net nom org sld ",pt:" com edu gov int net nome org publ ",py:" com edu gov mil net org ",qa:" com edu gov mil net org ",re:" asso com nom ",ru:" ac adygeya altai amur arkhangelsk astrakhan bashkiria belgorod bir bryansk buryatia cbg chel chelyabinsk chita chukotka chuvashia com dagestan e-burg edu gov grozny int irkutsk ivanovo izhevsk jar joshkar-ola kalmykia kaluga kamchatka karelia kazan kchr kemerovo khabarovsk khakassia khv kirov koenig komi kostroma kranoyarsk kuban kurgan kursk lipetsk magadan mari mari-el marine mil mordovia mosreg msk murmansk nalchik net nnov nov novosibirsk nsk omsk orenburg org oryol penza perm pp pskov ptz rnd ryazan sakhalin samara saratov simbirsk smolensk spb stavropol stv surgut tambov tatarstan tom tomsk tsaritsyn tsk tula tuva tver tyumen udm udmurtia ulan-ude vladikavkaz vladimir vladivostok volgograd vologda voronezh vrn vyatka yakutia yamal yekaterinburg yuzhno-sakhalinsk ",rw:" ac co com edu gouv gov int mil net ",sa:" com edu gov med net org pub sch ",sd:" com edu gov info med net org tv ",se:" a ac b bd c d e f g h i k l m n o org p parti pp press r s t tm u w x y z ",sg:" com edu gov idn net org per ",sn:" art com edu gouv org perso univ ",sy:" com edu gov mil net news org ",th:" ac co go in mi net or ",tj:" ac biz co com edu go gov info int mil name net nic org test web ",tn:" agrinet com defense edunet ens fin gov ind info intl mincom nat net org perso rnrt rns rnu tourism ",tz:" ac co go ne or ",ua:" biz cherkassy chernigov chernovtsy ck cn co com crimea cv dn dnepropetrovsk donetsk dp edu gov if in ivano-frankivsk kh kharkov kherson khmelnitskiy kiev kirovograd km kr ks kv lg lugansk lutsk lviv me mk net nikolaev od odessa org pl poltava pp rovno rv sebastopol sumy te ternopil uzhgorod vinnica vn zaporizhzhe zhitomir zp zt ",ug:" ac co go ne or org sc ",uk:" ac bl british-library co cym gov govt icnet jet lea ltd me mil mod national-library-scotland nel net nhs nic nls org orgn parliament plc police sch scot soc ",us:" dni fed isa kids nsn ",uy:" com edu gub mil net org ",ve:" co com edu gob info mil net org web ",vi:" co com k12 net org ",vn:" ac biz com edu gov health info int name net org pro ",ye:" co com gov ltd me net org plc ",yu:" ac co edu gov org ",za:" ac agric alt bourse city co cybernet db edu gov grondar iaccess imt inca landesign law mil net ngo nis nom olivetti org pix school tm web ",zm:" ac co com edu gov net org sch ",com:"ar br cn de eu gb gr hu jpn kr no qc ru sa se uk us uy za ",net:"gb jp se uk ",org:"ae",de:"com "},has:function(t){var e=t.lastIndexOf(".");if(e<=0||e>=t.length-1)return!1;var r=t.lastIndexOf(".",e-1);if(r<=0||r>=e-1)return!1;var i=n.list[t.slice(e+1)];return!!i&&i.indexOf(" "+t.slice(r+1,e)+" ")>=0},is:function(t){var e=t.lastIndexOf(".");if(e<=0||e>=t.length-1)return!1;if(t.lastIndexOf(".",e-1)>=0)return!1;var r=n.list[t.slice(e+1)];return!!r&&r.indexOf(" "+t.slice(0,e)+" ")>=0},get:function(t){var e=t.lastIndexOf(".");if(e<=0||e>=t.length-1)return null;var r=t.lastIndexOf(".",e-1);if(r<=0||r>=e-1)return null;var i=n.list[t.slice(e+1)];return i?i.indexOf(" "+t.slice(r+1,e)+" ")<0?null:t.slice(r+1):null},noConflict:function(){return t.SecondLevelDomains===this&&(t.SecondLevelDomains=e),this}};return n})},function(t,e,n){"use strict";function r(){return f>0}function i(t,e,n){var r=n.params,i=n.authorization,a=n.forceVerification;return l?scrivito.Promise.resolve(new XMLHttpRequest):(f+=1,new scrivito.Promise(function(n,s){var u=o(t,e,n,s);i&&u.setRequestHeader("Authorization",i),u.setRequestHeader("Scrivito-Client","jssdk/1.2.0-rc1"),a&&u.setRequestHeader("Scrivito-Force-Verification","true"),u.setRequestHeader("Content-type","application/json; charset=utf-8"),u.send(JSON.stringify(r))}))}function o(t,e,n,r){function i(t){s(new c.RequestFailedError(t),r)}var o=new XMLHttpRequest;return o.open("POST"===t?"POST":"PUT",e),o.timeout=15e3,o.withCredentials=!0,o.onload=function(){return a(o,n,r)},o.onerror=function(){return i("XMLHttpRequest Error")},o.ontimeout=function(){return i("XMLHttpRequest Timeout")},o.onabort=function(){return i("XMLHttpRequest Aborted")},o}function a(t,e,n){f-=1;var r=t.status;if(!r||!Object(u.isNumber)(r)){var i="Unexpected response status: "+r+"; body: "+(0===r?t.statusText:t.responseText);n(new c.RequestFailedError(i))}e(t)}function s(t,e){f-=1,e(t)}e.b=r,e.a=i;var u=n(0),c=(n.n(u),n(1)),l=!1,f=0},function(t,e,n){"use strict";var r=n(169),i=n.n(r);scrivito.Promise=window.Promise||i.a},function(t,e,n){"use strict";function r(t){var e=[],n=c.runWith(e,t);return new f(e,n)}function i(t){var e=l();if(!e)throw t(),new s.ScrivitoError("Content not yet loaded. Forgot to use Scrivito.load or Scrivito.connect? See https://scrivito.com/content-not-yet-loaded-error");e.push({reason:"missing",loader:t})}function o(t){var e=l();e&&e.push({reason:"outdated",loader:t})}e.a=r,e.b=i,e.c=o;var a=n(0),s=(n.n(a),n(1)),u=n(69),c=new u.a,l=function(){return c.current()},f=function(){function t(t,e){this.captureList=t,this.result=e}return t.prototype.isAllDataLoaded=function(){return!Object(a.findWhere)(this.captureList,{reason:"missing"})},t.prototype.isAllDataUpToDate=function(){return 0===this.captureList.length},t.prototype.loadRequiredData=function(){if(0===this.captureList.length)return null;this.captureList.forEach(function(t){return t.loader()})},t}()},function(t,e,n){"use strict";var r=n(0),i=(n.n(r),n(13)),o=n(37),a=function(){function t(t,e){var n=(void 0===e?{}:e).batchSize;this.mget=t,this.batchSize=n||100,this.deferreds={}}return t.prototype.retrieve=function(t){var e=this;if(Object(r.isEmpty)(this.deferreds)&&Object(o.a)(function(){return e.performRetrieval()}),!this.deferreds[t]){var n=new i.a;this.deferreds[t]=n}return this.deferreds[t].promise},t.prototype.reset=function(){this.deferreds={}},t.prototype.performRetrieval=function(){var t=this,e=Object(r.keys)(this.deferreds).slice(0,this.batchSize);if(0!==e.length){var n={};e.forEach(function(e){n[e]=t.deferreds[e],delete t.deferreds[e]}),this.mget(e).then(function(r){e.forEach(function(e,i){var o=n[e],a=r[i];i<r.length?o.resolve(a):t.retrieve(e).then(o.resolve,o.reject)})},function(t){Object(r.each)(n,function(e){return e.reject(t)})}),this.performRetrieval()}},t}();e.a=a},function(t,e,n){function r(t,e){return"function"==typeof e?i(e):e}var i=n(51);t.exports=function(t){try{return JSON.stringify(t,r,2)}catch(e){return String(t)}}},function(t,e,n){var r=n(17),i=n(66);t.exports=r("Boolean",i)},function(t,e,n){var r=n(17),i=n(26);t.exports=r("Nil",i)},function(t,e,n){var r=n(17),i=n(109);t.exports=r("Number",i)},function(t,e){t.exports=function(t){return"number"==typeof t&&isFinite(t)&&!isNaN(t)}},function(t,e,n){var r=n(11);t.exports=function(t){return r(t)&&"union"===t.meta.kind}},function(t,e,n){function r(t){return"Array<"+a(t)+">"}function i(t,e){function n(e,n){if(f)return e;for(var r=!0,i=[],o=0,a=e.length;o<a;o++){var s=e[o],c=u(t,s,null);r=r&&s===c,i.push(c)}return r&&(i=e),i}var i=e||r(t),f=(a(t),s(t));return n.meta={kind:"list",type:t,name:e,identity:f},n.displayName=i,n.is=function(e){return l(e)&&e.every(function(e){return c(e,t)})},n.update=function(t,e){return n(o.update(t,e))},n}var o=n(5),a=(n(20),n(10),n(8)),s=n(30),u=n(31),c=n(32),l=n(29);i.getDefaultName=r,t.exports=i},function(t,e,n){function r(t){return"{"+Object.keys(t).map(function(e){return e+": "+i(t[e])}).join(", ")+"}"}var i=n(8);t.exports=r},function(t,e,n){function r(t,e,n){var r=t.reduce(function(t,e){return l(t,e)},e);return n&&(r.displayName=n,r.meta.name=n),r}function i(t){return c(t)?t:t.meta.props}function o(t){return c(t)?null:t.meta.defaultProps}function a(t,e){Array.prototype.push.apply(t,e)}function s(t,e,n){var s={},c={},l=[],d={};e.forEach(function(t,e){var n=f(t),r=n.unrefinedType;a(l,n.predicates),u(s,i(r)),u(c,r.prototype),u(d,o(r),!0)}),n=t.getOptions(n),n.defaultProps=u(d,n.defaultProps,!0);var h=r(l,t(s,{strict:n.strict,defaultProps:n.defaultProps}),n.name);return u(h.prototype,c),h}var u=(n(5),n(10),n(29),n(80)),c=(n(197),n(198),n(28)),l=n(77),f=n(199);t.exports=s},function(t,e,n){function r(t){return"["+t.map(a).join(", ")+"]"}function i(t,e){function n(e,n){if(a)return e;for(var r=!0,i=[],o=0,s=t.length;o<s;o++){var u=t[o],l=e[o],f=c(u,l,null);r=r&&l===f,i.push(f)}return r&&(i=e),i}var i=e||r(t),a=t.every(s);return n.meta={kind:"tuple",types:t,name:e,identity:a},n.displayName=i,n.is=function(e){return u(e)&&e.length===t.length&&t.every(function(t,n){return l(e[n],t)})},n.update=function(t,e){return n(o.update(t,e))},n}var o=n(5),a=(n(20),n(10),n(8)),s=n(30),u=n(29),c=n(31),l=n(32);i.getDefaultName=r,t.exports=i},function(t,e){function n(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}t.exports=n},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){return s(t)||a(t,e)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function a(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function s(t){if(Array.isArray(t))return t}function u(t){var e={};return F.a.each(t,function(t,n){var r=i(t,2),o=r[0],a=r[1],s=c(n);if(Object(D.a)(s))e[s]=o;else{var u=i(a,2),h=u[0],p=u[1];e[s]=[l(h,n),d(f(h,p,o,n))]}}),e}function c(t){if(!Object(H.c)(t))throw new z.ArgumentError("Attribute names have to be in camel case.");return Object(H.e)(t)}function l(t,e){switch(t){case"enum":return"string";case"float":case"integer":return"number";case"multienum":return"stringlist";case"binary":case"date":case"html":case"link":case"linklist":case"reference":case"referencelist":case"string":case"stringlist":case"widgetlist":return t;default:throw new z.ArgumentError('Attribute "'.concat(e,'" is of unsupported type "').concat(t,'".'))}}function f(t,e,n,r){if(null===n)return n;switch(t){case"binary":return p(n,r);case"date":return v(n,r);case"enum":return y(e,n,r);case"float":return m(n,r);case"html":return b(n,r);case"integer":return g(n,r);case"link":return w(n,r);case"linklist":return _(n,r);case"multienum":return E(e,n,r);case"reference":return x(n,r);case"referencelist":return C(n,r);case"string":return T(n,r);case"stringlist":return N(n,r);case"widgetlist":return L(n,r);default:throw new z.InternalError('serializeAttributeValue is not implemented for "'.concat(t,'".'))}}function d(t){return(F.a.isString(t)||F.a.isArray(t))&&F.a.isEmpty(t)?null:t}function h(t,e,n){throw new z.ArgumentError("Unexpected value ".concat(Object(U.a)(t)," for")+' attribute "'.concat(e,'". Expected: ').concat(n))}function p(t,e){if(r(t,W.a))return{id:t.id()};h(t,e,"A Binary.")}function v(t,e){return F.a.isDate(t)?Object(q.c)(t):Object(q.d)(t)?t:void h(t,e,"A Date.")}function y(t,e,n){var r=t.values;if(F.a.contains(r,e))return e;h(e,n,'Valid attribute values are contained in its "values" array ['.concat(r,"]."))}function m(t,e){if(Object(q.e)(t))return t;var n=t;F.a.isNumber(t)&&(n=String(t)),h(n,e,"A Number, that is #isFinite().")}function b(t,e){if(F.a.isString(t))return t;h(t,e,"A String.")}function g(t,e){if(Object(q.f)(t))return t;h(t,e,"A Number, that is #isSafeInteger().")}function w(t,e){if(k(t))return O(t);h(t,e,"A Link instance.")}function _(t,e){if(F.a.isArray(t)&&F.a.every(t,k))return F.a.map(t,O);h(t,e,"An array of Link instances.")}function k(t){if(r(t,M.a))return!0;if(!F.a.isObject(t))return!1;var e=F.a.without(F.a.keys(t),"hash","obj_id","query","target","title","url");return F.a.isEmpty(e)}function O(t){var e={fragment:"function"==typeof t.hash?t.hash():t.hash,query:"function"==typeof t.query?t.query():t.query,target:"function"==typeof t.target?t.target():t.target,title:"function"==typeof t.title?t.title():t.title,url:"function"==typeof t.url?t.url():t.url};return e.obj_id="function"==typeof t.objId?t.objId():t.obj_id,F.a.mapObject(e,function(t){return t||null})}function E(t,e,n){var r=t.values,i="An array with values from ".concat(Object(U.a)(r),".");F.a.isArray(e)&&F.a.every(e,F.a.isString)||h(e,n,i);var o=F.a.difference(e,r);if(o.length){h(e,n,"".concat(i," Forbidden values: ").concat(Object(U.a)(o),"."))}return e}function x(t,e){if(S(t))return j(t);h(t,e,"A BasicObj or a String ID.")}function C(t,e){if(A(t))return F.a.map(t,j);h(t,e,"An array with BasicObjs or String IDs.")}function j(t){return r(t,I.default)?t.id():t}function S(t){return F.a.isString(t)||r(t,I.default)}function A(t){return F.a.isArray(t)&&F.a.every(t,function(t){return S(t)})}function T(t,e){if(P(t))return t.toString();h(t,e,"A String.")}function N(t,e){if(F.a.isArray(t)&&F.a.every(t,function(t){return P(t)}))return F.a.invoke(t,"toString");h(t,e,"An array of strings.")}function P(t){return F.a.isString(t)||F.a.isNumber(t)}function L(t,e){if(F.a.isArray(t)&&F.a.every(t,function(t){return r(t,R.a)}))return F.a.invoke(t,"id");h(t,e,"An array of BasicWidget instances.")}e.a=u;var I=n(3),D=n(47),q=n(48),R=n(27),M=n(34),B=n(0),F=n.n(B),z=n(1),U=n(41),H=n(23),W=n(25)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){return s(t)||a(t,e)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function a(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function s(t){if(Array.isArray(t))return t}function u(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}n.d(e,"a",function(){return b});var f=n(213),d=n(47),h=n(132),p=n(0),v=n.n(p),y=n(1),m=n(23),b=function(){function t(){u(this,t)}return l(t,[{key:"get",value:function(t,e){if(!Object(m.c)(t))throw new y.ArgumentError("Attribute names have to be in camel case.");var n=Object(m.e)(t);{if(!Object(d.a)(n)){var r=scrivito.typeInfo.normalize(e),o=i(r,2),a=o[0],s=o[1],u=this.getAttributeData(n);return u&&v.a.isArray(u)||(u=[]),f.a(this,u,a,s)}if(v.a.has(this._systemAttributes,n)){var c=this._systemAttributes[n];return"function"==typeof this[c]?this[c]():this[c]}}}},{key:"field",value:function(t,e){return new h.a({container:this,attributeName:t,typeInfo:scrivito.typeInfo.normalize(e)})}},{key:"widget",value:function(t){throw new TypeError("Override in subclass.")}},{key:"serializeAttributes",value:function(){var t=this,e={};return v.a.each(this.getData(),function(n,r){if(v.a.isArray(n)&&"widgetlist"===v.a.first(n)){var i=Object(m.a)(r),o=v.a.invoke(t.get(i,["widgetlist"]),"serializeAttributes");return void(e[r]=["widgetlist",o])}e[r]=n}),e}},{key:"_persistWidgets",value:function(t,e){v.a.each(e,function(e){var n=i(e,2),r=n[0],o=n[1];o&&"widgetlist"===o[0]&&v.a.each(r,function(e){e.isPersisted()||e.persistInObj(t)})})}},{key:"getAttributeData",value:function(){throw new TypeError("Override in subclass.")}},{key:"getData",value:function(){throw new TypeError("Override in subclass.")}},{key:"_objClass",get:function(){throw new TypeError("Override in subclass.")}}]),t}()},function(t,e,n){"use strict";function r(t,e,n){s.a.store(t,e,n)}function i(t){return scrivito.computeCacheKey(t)}function o(t,e){return new u.a(t,e)}function a(){return c.b.subState("objQuery")}e.d=r,e.a=i,e.b=o,e.c=a;var s=n(119),u=n(216),c=n(4)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}n.d(e,"a",function(){return u});var s=n(215),u=function(){function t(e,n){i(this,t),this._params=e,this._batchSize=n}return a(t,null,[{key:"store",value:function(t,e,n){s.a.store(t,e,n)}},{key:"count",value:function(t){return s.a.countFor(t)}}]),a(t,[{key:"iterator",value:function(){function t(){if(!n)return{done:!0};var i=n.objIds();if(r<i.length){var o=i[r];return r++,e[o]?t():(e[o]=!0,{value:o,done:!1})}return n=n.nextBatch(),r=0,t()}var e={},n=s.a.firstBatchFor(this._params,this._batchSize),r=0;return{next:t}}}]),t}()},function(t,e,n){"use strict";function r(){for(var t=Math.floor(Math.random()*Math.pow(16,8)).toString(16);t.length<8;)t="0".concat(t);return t}function i(){return r()+r()}n.d(e,"b",function(){return i}),n.d(e,"a",function(){return r})},function(t,e,n){"use strict";function r(t,e){for(var n=t.iterator(),r=[];r.length!==e;){var i=n.next();if(i.done)return r;r.push(i.value)}return r}function i(t){return t.iterator().next().value||null}e.a=r,e.b=i},function(t,e,n){"use strict";function r(t){return t.displayName||t.name}e.a=r},,,,,function(t,e){window.scrivito||(window.scrivito={}),window.scrivito.client={}},function(t,e,n){"use strict";function r(t){return i(1e3*t)}function i(t){return new scrivito.Promise(function(e){setTimeout(e,t)})}e.a=r,e.b=i;n(102)},function(t,e,n){"use strict";function r(t,e){Object(c.d)("navigateTo"),y(t,e);var n,r;if(e){n=e.params||{},r=e.hash;var a=Object(o.omit)(e,"hash","params");m(t,a),n=Object(o.extend)(a,n)}Object(f.e)(function(){return{obj:Object(d.c)(Object(o.isFunction)(t)?t():t),queryParameters:n,hash:r}},i)}function i(t){var e=t.obj,n=t.queryParameters,r=t.hash;e&&(Object(s.a)(),Object(h.d)({obj:e,queryParameters:n,hash:r}))}e.a=r;var o=n(0),a=(n.n(o),n(24)),s=n(295),u=n(59),c=n(4),l=n(39),f=n(60),d=n(22),h=n(72),p=a.a.union([a.a.Function,a.a.irreducible("null",function(t){return null===t}),u.d,u.b]),v=a.a.dict(a.a.String,a.a.maybe(a.a.String)),y=Object(l.a)("navigateTo",[["target",p],["options",a.a.maybe(a.a.struct({hash:a.a.maybe(a.a.String),params:a.a.maybe(v)},{strict:!1}))]],{docPermalink:"js-sdk/navigateTo"}),m=Object(l.a)("navigateTo",[["target",p],["options",a.a.maybe(v)]],{docPermalink:"js-sdk/navigateTo"})},function(t,e,n){"use strict";function r(t){return function(){return d.a.retrieveBinaryMetadata(t).then(function(t){return o(t)})}}function i(t){return h.b.subState("metadataCollection").subState(t)}function o(t){for(var e=t.meta_data,n={},r=0,i=Object.keys(e);r<i.length;r++){var o=i[r],a=e[o],u=a[0],c=a[1];if(null===c||void 0===c)throw new l.InternalError('Invalid backend value "null" or "undefined" for metadata "'+o+'"');var f=void 0;if(u===s.Date){if("string"!=typeof c)throw new l.InternalError('Invalid non-string backend value for a date metadata "'+o+'"');f=Object(p.a)(c)}else f=c;n[o]=f}return n}function a(t){if(!Object(f.c)(t))throw new l.ArgumentError('Metadata key "'+t+'" is not in camel case.')}var s,u=n(0),c=(n.n(u),n(12)),l=n(1),f=n(23),d=n(43),h=n(4),p=n(48);!function(t){t.Date="date",t.Number="number",t.String="string",t.Stringlist="stringlist"}(s||(s={}));var v=function(){function t(t){this._binaryId=t,t&&(this._loadableData=new c.b({state:i(t),loader:r(t)}))}return t.store=function(t,e){new c.b({state:i(t),loader:r(t)}).set(o(e))},t.prototype.get=function(t){a(t);var e=this._getData();if(e)return e[Object(f.e)(t)]},t.prototype.keys=function(){var t=this._getData();return t?Object(u.map)(Object(u.keys)(t),f.a):[]},Object.defineProperty(t.prototype,"binaryId",{get:function(){return this._binaryId},enumerable:!0,configurable:!0}),t.prototype._getData=function(){if(this._loadableData)return this._loadableData.get()},t}();e.a=v},function(t,e,n){"use strict";n.d(e,"a",function(){return i}),n.d(e,"b",function(){return o});var r=n(24),i=r.a.interface({size:r.a.Number,type:r.a.String},{name:"Blob",strict:!1}),o=i.extend({name:r.a.String},{name:"File",strict:!1})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function s(t,e,n){return e&&a(t.prototype,e),n&&a(t,n),t}n.d(e,"a",function(){return p});var u=n(3),c=n(214),l=n(4),f=n(12),d=n(0),h=(n.n(d),n(1)),p=function(){function t(e){var n=e.container,r=e.attributeName,i=e.typeInfo;o(this,t),this._container=n,this._attributeName=r,this._typeInfo=i}return s(t,[{key:"get",value:function(){return this._container.get(this.name(),this._typeInfo)}},{key:"getWithoutLoading",value:function(){var t=this;return Object(f.a)(function(){return t.get()}).result}},{key:"update",value:function(t){this._container.update(i({},this.name(),[t,this._typeInfo]))}},{key:"container",value:function(){return this._container}},{key:"obj",value:function(){return this.container().obj()}},{key:"name",value:function(){return this._attributeName}},{key:"type",value:function(){return this._typeInfo[0]}},{key:"typeOptions",value:function(){return this._typeInfo[1]||{}}},{key:"equals",value:function(e){return!!r(e,t)&&(this.container().equals(e.container())&&this.name()===e.name())}},{key:"values",value:function(){return this._assertValidTypes(["enum","multienum"],"Only enum and multienum attributes can have values"),this._sortValuesByLocalization(this.typeOptions().values)}},{key:"titleForValue",value:function(t){this._assertValidTypes(["enum","multienum"],"Only enum and multienum attributes can have localized values");var e=Object(d.findWhere)(this.typeOptions().valuesLocalization,{value:t});return e&&e.title||t}},{key:"toString",value:function(){var t=this._dataForId(),e=t.name,n=t.objId,r=t.widgetId,i="<BasicField name=".concat(e," objId=").concat(n);return i+=r?" widgetId=".concat(r,">"):">"}},{key:"id",value:function(){var t=this._dataForId(),e=t.name,n=t.objId,r=t.widgetId,i="".concat(e,"|").concat(n);return r&&(i+="|".concat(r)),i}},{key:"subscribe",value:function(t){var e=this,n=this.getWithoutLoading();return l.g(function(){var r=e.getWithoutLoading();Object(c.a)(n,r)||(n=r,t())})}},{key:"_assertValidTypes",value:function(t,e){if(!Object(d.include)(t,this.type()))throw new h.InternalError(e)}},{key:"_dataForId",value:function(){var t={name:this.name()},e=this.container();return r(e,u.default)?t.objId=e.id():(t.objId=e.obj().id(),t.widgetId=e.id()),t}},{key:"_sortValuesByLocalization",value:function(t){var e=this;return t?this.typeOptions().valuesLocalization?Object(d.sortBy)(t,function(n){var r=Object(d.findIndex)(e.typeOptions().valuesLocalization,{value:n});return-1===r?t.length:r}):t:[]}}]),t}()},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}n.d(e,"a",function(){return f});var s=n(3),u=n(42),c=n(1),l=n(22),f=function(){function t(e){i(this,t),this._registry=e}return a(t,[{key:"getObj",value:function(t,e){var n=s.default.get(e);return this._checkObjClassAndWrapInAppClass(t,n)}},{key:"getObjIncludingDeleted",value:function(t,e){var n=s.default.getIncludingDeleted(e);return this._checkObjClassAndWrapInAppClass(t,n)}},{key:"read",value:function(t,e){var n=u.a.basicFieldFor(t,e);if(n){var r=n.get();return Object(l.e)(this._registry,r)}}},{key:"update",value:function(t,e){var n=this._registry.objClassNameFor(t.constructor);if(!n){var r;throw r=t.constructor===this._registry.defaultClassForObjs?"Obj":"Widget",new c.ArgumentError('Updating is not supported on the base class "'.concat(r,'".'))}if(e.constructor!==Object)throw new c.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");var i=u.a.forInstance(t),o=Object(l.b)(e,i,n);t._scrivitoPrivateContent.update(o)}},{key:"wrapInAppClass",value:function(t){return Object(l.e)(this._registry,t)}},{key:"_checkObjClassAndWrapInAppClass",value:function(t,e){var n=this._registry.objClassNameFor(t);if(n&&n!==e.objClass())throw new c.ResourceNotFoundError('Obj with id "'.concat(e.id(),'" is not of type "').concat(n,'".'));return this.wrapInAppClass(e)}}]),t}()},function(t,e,n){"use strict";var r=n(83),i=n.n(r),o=function(){var t=null,e=function(e){return i()(null==t,"A history supports only one prompt at a time"),t=e,function(){t===e&&(t=null)}},n=function(e,n,r,o){if(null!=t){var a="function"==typeof t?t(e,n):t;"string"==typeof a?"function"==typeof r?r(a,o):(i()(!1,"A history needs a getUserConfirmation function in order to use a prompt message"),o(!0)):o(!1!==a)}else o(!0)},r=[];return{setPrompt:e,confirmTransitionTo:n,appendListener:function(t){var e=!0,n=function(){e&&t.apply(void 0,arguments)};return r.push(n),function(){e=!1,r=r.filter(function(t){return t!==n})}},notifyListeners:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];r.forEach(function(t){return t.apply(void 0,e)})}}};e.a=o},function(t,e,n){"use strict";function r(t){return t.replace(s,function(t,e){var n=Object(i.a)(e),r=o.i(n);return r&&(Object(a.a)(r,e),o.g(r))?o.b(r,t):n.toString()})}e.a=r;var i=n(314),o=n(63),a=n(315),s=/\bobjid:([a-f0-9]{16})\b([^"']*)/g},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return o(t),r(t,l.a)?u(t):r(t,d.a)?a(t):Object(h.a)(t)?s(t):Object(p.a)({obj:t})}function o(t){if(!t)throw new f.ArgumentError("Missing target.");if(!r(t,l.a)&&!r(t,c.default)&&!r(t,d.a))throw new f.ArgumentError("Target is invalid. Valid targets are instances of Obj or Link.")}function a(t){return t.url()}function s(t){var e=t.get("blob",["binary"]);return e?a(e):Object(p.a)({obj:t})}function u(t){return t.isExternal()?t.url():i(t.obj())}e.a=i;var c=n(3),l=n(34),f=n(1),d=n(25),h=n(227),p=n(63)},function(t,e,n){"use strict";function r(){if(o)return{filters:o}}function i(t){if(d.b){j(t),t.filters&&(o=t.filters);var e=t.baseFilter;if(e){var n=e.query;n&&d.b.configureContentBrowser(Object(s.a)({baseQuery:n}))}}}e.b=r,e.a=i;var o,a=n(0),s=(n.n(a),n(138)),u=n(39),c=n(24),l=n(59),f=n(54),d=n(18),h=c.a.union([c.a.String,c.a.list(c.a.String)]),p=c.a.enums.of(Object(a.intersection)(f.a,["contains","containsPrefix","equals","startsWith","isGreaterThan","isLessThan"])),v=c.a.union([c.a.String,c.a.Date,c.a.Nil,c.a.Number,c.a.list(c.a.union([c.a.String,c.a.Nil])),c.a.list(c.a.union([c.a.Date,c.a.Nil])),c.a.list(c.a.union([c.a.Number,c.a.Nil]))],"SearchValue"),y=c.a.struct({title:c.a.maybe(c.a.String)}),m=y.extend({field:c.a.maybe(h),operator:c.a.maybe(p),expanded:c.a.maybe(c.a.Boolean)}),b=y.extend({value:c.a.maybe(v),query:c.a.maybe(l.c),selected:c.a.maybe(c.a.Boolean)}),g=m.extend({type:c.a.enums.of(["radioButton"]),options:c.a.dict(c.a.String,b)},"RadioFilterDefinition"),w=y.extend({value:c.a.maybe(v),selected:c.a.maybe(c.a.Boolean)}),_=m.extend({type:c.a.enums.of(["checkbox"]),options:c.a.dict(c.a.String,w)},"CheckboxFilterDefinition"),k=c.a.declare("TreeFilterDefinition");k.define(y.extend({type:c.a.maybe(c.a.enums.of("tree")),icon:c.a.maybe(c.a.String),query:c.a.maybe(l.c),expanded:c.a.maybe(c.a.Boolean),value:c.a.maybe(v),field:c.a.maybe(h),operator:c.a.maybe(p),selected:c.a.maybe(c.a.Boolean),options:c.a.maybe(c.a.dict(c.a.String,k))}));var O=c.a.union([k,_,g]);O.dispatch=function(t){switch(t.type||"tree"){case"tree":return k;case"radioButton":return g;case"checkbox":return _}};var E=c.a.dict(c.a.String,O),x=c.a.struct({query:l.c}),C=c.a.struct({filters:c.a.maybe(E),baseFilter:c.a.maybe(x)},"Configuration"),j=Object(u.a)("configureContentBrowser",[["configuration",C]],{docPermalink:"js-sdk/configureContentBrowser"})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){if(!t)return t;switch(i(t)){case"string":case"number":case"boolean":return t;case"object":return r(t._scrivitoPrivateContent,c.b)?o(t._scrivitoPrivateContent.params()):Object(u.isDate)(t)?t:Object(u.isArray)(t)?a(t):s(t)}}function a(t){var e=[];return t.forEach(function(t){var n=o(t);void 0!==n&&e.push(n)}),e}function s(t){var e={};return Object(u.each)(t,function(t,n){var r=o(t);void 0!==r&&(e[n]=r)}),e}e.a=o;var u=n(0),c=(n.n(u),n(54))},function(t,e,n){"use strict";var r=function(){function t(t){var e=t.controller;this._controller=e}return t.canEdit=function(t){t.type,t.tag;return!1},t.prototype.onClick=function(t){},t.prototype.contentDidChange=function(){},t.prototype.editorWillBeActivated=function(){},t.prototype.editorWillBeDeactivated=function(){},t.prototype.editorDomWasMounted=function(t){},t.prototype.editorDomWasUnmounted=function(){},t}();e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return u(t)||s(t)||a()}function a(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function s(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function u(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function l(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function f(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");d(t.prototype,e&&e.prototype),e&&d(t,e)}function d(t,e){return(d=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function p(t,e,n){return e&&h(t.prototype,e),n&&h(t,n),t}function v(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?m(t):e}function y(t){return(y=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function m(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function b(t,e){var n=Object(A.a)(t),r=n.objId,i=n.widgetId;P.b.insertWidget(r,i,e)}n.d(e,"a",function(){return q});var g=n(238),w=n.n(g),_=n(14),k=n.n(_),O=n(85),E=n.n(O),x=n(0),C=(n.n(x),n(87)),j=n(42),S=n(62),A=n(141),T=n(15),N=n(1),P=n(18),L=n(352),I=n(240),D=n(241),q="_scrivitoWidget",R=function(t){function e(t){var n;return l(this,e),n=v(this,y(e).call(this,t)),n.state={hasFocus:!1,isDragged:!1,isFocusFadedOut:!0},n._onMouseOver=n._onMouseOver.bind(m(m(n))),n._onMouseOut=n._onMouseOut.bind(m(m(n))),n._onWidgetFocus=n._onWidgetFocus.bind(m(m(n))),n._onWidgetBlur=n._onWidgetBlur.bind(m(m(n))),n._lockFocus=n._lockFocus.bind(m(m(n))),n._unlockFocus=n._unlockFocus.bind(m(m(n))),n._setDragState=n._setDragState.bind(m(m(n))),n}return p(e,[{key:"componentDidMount",value:function(){this._registerDropZone(),this._focusToken=scrivito.WidgetFocus.subscribe({onFocus:this._onWidgetFocus,onBlur:this._onWidgetBlur})}},{key:"componentDidUpdate",value:function(){this._widgetRef!==this._dropZoneWidgetRef&&this._registerDropZone()}},{key:"componentWillUnmount",value:function(){scrivito.WidgetFocus.unsubscribe(this._focusToken)}},{key:"getChildContext",value:function(){return c({},q,null)}},{key:"render",value:function(){var t=this,e=this.context[q];if(!e)throw new N.ScrivitoError("Detected inappropriate placing of Scrivito.WidgetTag: It is intended to be used exclusively as top-level element inside a Widget component.");return Object(C.a)()?k.a.createElement(this.props.tag,Object(x.extend)(Object(x.omit)(this.props,"tag","className","style"),{ref:function(e){return t._widgetRef=e},className:this._className(),style:this._style(),onMouseOver:this._onMouseOver,onMouseOut:this._onMouseOut,children:[k.a.createElement(L.a,{key:"menuMarker",widget:e,setDragState:this._setDragState,onMouseOver:this._lockFocus,onMouseOut:this._unlockFocus})].concat(o(k.a.Children.toArray(this.props.children)),[this._renderOptionMarker("top"),this._renderOptionMarker("bottom")])},this._dataProps())):k.a.createElement(this.props.tag,Object(x.omit)(this.props,"tag"))}},{key:"_setDragState",value:function(t){this.setState({isDragging:t})}},{key:"_className",value:function(){return this._hasVisibleFocus()?this.props.className?"".concat(this.props.className," scrivito_active scrivito_entered"):"scrivito_active scrivito_entered":this.props.className}},{key:"_hasVisibleFocus",value:function(){return this.state.hasFocus&&!this.state.isFocusFadedOut}},{key:"_dataProps",value:function(){var t={"data-scrivito-private-widget":"true","data-scrivito-private-dropzone":"true"};return this._isStructureMarker()&&(t["data-scrivito-private-structure-widget"]="true"),this.state.isDragging&&(t["data-scrivito-private-dropback"]="true"),t}},{key:"_style",value:function(){return this.state.isDragging?this.props.style?Object(x.extend)(this.props.style,{opacity:.5}):{opacity:.5}:this.props.style}},{key:"_isStructureMarker",value:function(){var t=Object(S.a)(),e=t.widgetClassFor(this.context[q].objClass()),n=j.a.forClass(e);return!!n&&Object(x.some)(n.attributes,function(t,e){return"widgetlist"===t[0]})}},{key:"_onMouseOver",value:function(t){t.stopPropagation(),scrivito.WidgetFocus.notifyFocus(this._focusToken)}},{key:"_onMouseOut",value:function(t){t.stopPropagation(),scrivito.WidgetFocus.notifyBlur(this._focusToken)}},{key:"_onWidgetFocus",value:function(){var t=this;this.setState({hasFocus:!0,isFocusFadedOut:!1}),this._fadeOutFocusTimeout&&clearTimeout(this._fadeOutFocusTimeout),this._isStructureMarker()||(this._fadeOutFocusTimeout=setTimeout(function(){return t._fadeOutFocus()},1e3))}},{key:"_fadeOutFocus",value:function(){this.state.isFocusFadedOut||this._isFocusLocked||this.setState({isFocusFadedOut:!0})}},{key:"_lockFocus",value:function(){this._isFocusLocked=!0}},{key:"_unlockFocus",value:function(){this._isFocusLocked=!1}},{key:"_onWidgetBlur",value:function(){this.setState({hasFocus:!1})}},{key:"_renderOptionMarker",value:function(t){return k.a.createElement(I.a,{key:"optionMarker-".concat(t),position:t,widget:this.context[q],insertWidget:b,isAlwaysShown:D.b,onMouseOver:this._lockFocus,onMouseOut:this._unlockFocus})}},{key:"_registerDropZone",value:function(){if(Object(C.a)()&&this._widgetRef){var t=Object(A.a)(this.context[q]),e=t.objId,n=t.widgetId,r=E.a.findDOMNode(this._widgetRef);P.b.registerWidgetDropZoneInDom(r,e,n),this._dropZoneWidgetRef=this._widgetRef}}}]),f(e,t),e}(k.a.Component);R.displayName="Scrivito.WidgetTag",R.defaultProps={tag:"div"},R.contextTypes=c({},q,w.a.object),R.childContextTypes=c({},q,w.a.object),e.b=Object(T.a)(R)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return r(t,o.default)?{objId:t.id()}:{objId:t.obj().id(),widgetId:t.id()}}e.a=i;var o=n(3)},,,,,,,,,,,function(t,e,n){"use strict";function r(t){i();var e=t.location,n=e.hash,r=n.indexOf(u);if(!(r<0)){var o=n.substr(r+u.length,3),a=n.substring(0,r);"#"===a&&(a="");var c=e.href.toString().replace(n,a);s=parseInt(o,10)||0,t.history.replaceState({},"",c)}}function i(){s=0}function o(t){var e=t.toString();return t.hash||(e="".concat(e,"#")),"".concat(e).concat(u).concat(s+1)}function a(){return s}var s,u="&scrivito.authFailedCount=";e.a={init:r,augmentedRedirectUrl:o,reset:i,currentFailureCount:a}},function(t,e,n){"use strict";function r(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window.document,n=e.createElement("link");n.rel="stylesheet",n.href=t,e.head.appendChild(n)}function i(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window.document,n=e.createElement("script");n.src=t,e.head.appendChild(n)}e.a=r,e.b=i},function(t,e,n){"use strict";function r(t){var e=scrivito.currentWorkspaceId();if(t!==e)throw new i.InternalError("Requested and the actual current workspace differ! Expected "+e+", but saw "+t+".")}e.a=r;var i=n(1)},function(t,e,n){"use strict";function r(t,e){return a(t)||o(t,e)||i()}function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function o(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function a(t){if(Array.isArray(t))return t}function s(t,e){var n=u(t,e);if(n)return n;var r=t._widget_pool;return f.a.find(r,function(t,r){if(n=u(t,e))return n.parentWidgetId=r,!0}),n}function u(t,e){var n;return f.a.find(t,function(t,i){if(!Object(c.a)(i)){var o=r(t,2),a=o[0],s=o[1];if(s&&"widgetlist"===a){var u=s.indexOf(e);if(-1!==u)return n={attributeName:i,index:u},!0}}}),n}e.a=s;var c=n(47),l=n(0),f=n.n(l)},function(t,e,n){t.exports=n(212)},,,,,function(t,e,n){"use strict";function r(){if(window.parent!==window){var t=window.parent.connectAppDocument;return t?t(window.document):void 0}}e.a=r},function(t,e,n){"use strict";var r=n(127),i=(n.n(r),n(163),n(165),n(166),n(167));n.n(i),n(168),n(206),n(207),n(96),n(102),n(208),n(209)},function(t,e,n){"use strict";var r=n(37),i=n(4);!function(){function t(t){o()||Object(r.a)(function(){return Object(i.j)(function(){return e(n)})}),n.push(t)}function e(t){n=[];try{t.forEach(function(t){return t()})}finally{o()&&e(n)}}var n=[],o=function(){return n.length};scrivito.batchedStateUpdater={add:t}}()},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(1),o=n(0),a=(n.n(o),n(69)),s=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),u=0,c=Object.assign||o.extend,l=function(){function t(){}return t.prototype.get=function(){var t=this,e=this.untrackedGet();return this.recordDetector(function(){return e!==t.untrackedGet()}),e},t.prototype.recordDetector=function(t){this.getTree().recordDetector(t)},t.prototype.clear=function(){this.set(void 0)},t.prototype.subState=function(t){return new h(this,t)},t.prototype.reader=function(){return this},t.prototype.setSubState=function(t,e){var n=this.untrackedGet();if(void 0===n){var r=(o={},o[t]=e,o);this.set(r)}else{var i=c({},n);i[t]=e,this.set(i)}var o},t.prototype.getSubState=function(t){var e=this.untrackedGet();if(e)return e[t]},t}(),f=function(t){function e(){var e=t.call(this)||this;return e.treeId=(u++).toString(),e.listeners=[],e.detectorRecording=new a.a,e.batchUpdates=new a.a,e.version=0,e.frozenContextContainer=new a.a,e}return s(e,t),e.prototype.untrackedGet=function(){return this.state},e.prototype.withFrozenState=function(t,e){return this.frozenContextContainer.runWith(t,e)},e.prototype.failIfTracking=function(t){if(this.detectorRecording.current())throw new i.InternalError(t)},e.prototype.failIfFrozen=function(t){var e=this.frozenContextContainer.current();if(e){var n=t+" is not permitted inside '"+e.contextName+"'. "+(e.message||"");throw new d(n)}},e.prototype.set=function(t){this.failIfFrozen("Changing state"),this.state=t,this.version++,this.insideBatchUpdate()||this.notifyListeners()},e.prototype.trackChanges=function(t){var e=this,n=this.version,r=this.recordDetectors(t);return function(){return e.version!==n&&!!Object(o.find)(r,function(t){return t()})}},e.prototype.recordDetector=function(t){var e=this.detectorRecording.current();void 0!==e&&e.push(t)},e.prototype.getTree=function(){return this},e.prototype.id=function(){return this.treeId},e.prototype.subscribe=function(t){var e=this,n=!0,r=function(){n&&t()};return this.ensureCanMutateListeners(),this.listeners.push(r),function(){n=!1;var t=e.listeners.indexOf(r);e.ensureCanMutateListeners(),e.listeners.splice(t,1)}},e.prototype.withBatchedUpdates=function(t){var e=this.state;try{this.batchUpdates.runWith(!0,t)}finally{this.insideBatchUpdate()||e===this.state||this.notifyListeners()}},e.prototype.listenerCount=function(){return this.listeners.length},e.prototype.clearListeners=function(){this.listeners=[]},e.prototype.recordDetectors=function(t){if(void 0!==this.detectorRecording.current())throw new i.InternalError("no nested detector recording!");var e=[];return this.detectorRecording.runWith(e,t),e},e.prototype.notifyListeners=function(){this.listenersToNotify=this.listeners,this.listenersToNotify.forEach(function(t){return t()})},e.prototype.ensureCanMutateListeners=function(){this.listenersToNotify===this.listeners&&(this.listeners=this.listeners.slice())},e.prototype.insideBatchUpdate=function(){return!!this.batchUpdates.current()},e}(l);e.a=f;var d=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return s(e,t),e}(i.ScrivitoError),h=function(t){function e(e,n){var r=t.call(this)||this;return r.parentState=e,r.key=n,r.tree=e.getTree(),r}return s(e,t),e.prototype.getTree=function(){return this.tree},e.prototype.untrackedGet=function(){return this.parentState.getSubState(this.key)},e.prototype.set=function(t){this.parentState.setSubState(this.key,t)},e.prototype.id=function(){var t=this.key.replace(/\\/g,"\\\\").replace(/\//g,"\\/");return this.parentState.id()+"/"+t},e}(l)},function(t,e,n){"use strict";var r=n(0),i=n.n(r);!function(){function t(e){return i.a.isArray(e)?i.a.map(e,t):i.a.isObject(e)?i.a.chain(e).mapObject(t).pairs().sortBy(i.a.first):e}scrivito.computeCacheKey=function(e){var n=t(e);return JSON.stringify(n)}}()},function(t,e,n){"use strict";var r=n(18);!function(){scrivito.currentWorkspaceId=function(){return r.b?r.b.currentWorkspaceId():"published"}}()},function(t,e){!function(){function t(){if(window&&window.console&&!n){var t;(t=window.console).error.apply(t,arguments)}}function e(){n=!0}var n=!1;scrivito.logError=t,scrivito.disableConsoleError=e}()},function(t,e,n){"use strict";var r=n(4),i=n(53);!function(){function t(t){var e=t.clientModulesForExport();o.forEach(function(t){scrivito[t]=e[t]}),Object(i.b)(e.objReplicationPool)}function e(){var t={objReplicationPool:i.a};return o.forEach(function(e){t[e]=scrivito[e]}),t}function n(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.ui;n&&t(n),Object(r.f)(n)}var o=["BinaryRequest"];scrivito.client.init=n,scrivito.client.modulesForExport=e}()},function(t,e,n){"use strict";(function(e){function n(){}function r(t,e){return function(){t.apply(e,arguments)}}function i(t){if(!(this instanceof i))throw new TypeError("Promises must be constructed via new");if("function"!=typeof t)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],l(t,this)}function o(t,e){for(;3===t._state;)t=t._value;if(0===t._state)return void t._deferreds.push(e);t._handled=!0,i._immediateFn(function(){var n=1===t._state?e.onFulfilled:e.onRejected;if(null===n)return void(1===t._state?a:s)(e.promise,t._value);var r;try{r=n(t._value)}catch(t){return void s(e.promise,t)}a(e.promise,r)})}function a(t,e){try{if(e===t)throw new TypeError("A promise cannot be resolved with itself.");if(e&&("object"==typeof e||"function"==typeof e)){var n=e.then;if(e instanceof i)return t._state=3,t._value=e,void u(t);if("function"==typeof n)return void l(r(n,e),t)}t._state=1,t._value=e,u(t)}catch(e){s(t,e)}}function s(t,e){t._state=2,t._value=e,u(t)}function u(t){2===t._state&&0===t._deferreds.length&&i._immediateFn(function(){t._handled||i._unhandledRejectionFn(t._value)});for(var e=0,n=t._deferreds.length;e<n;e++)o(t,t._deferreds[e]);t._deferreds=null}function c(t,e,n){this.onFulfilled="function"==typeof t?t:null,this.onRejected="function"==typeof e?e:null,this.promise=n}function l(t,e){var n=!1;try{t(function(t){n||(n=!0,a(e,t))},function(t){n||(n=!0,s(e,t))})}catch(t){if(n)return;n=!0,s(e,t)}}var f=setTimeout;i.prototype.catch=function(t){return this.then(null,t)},i.prototype.then=function(t,e){var r=new this.constructor(n);return o(this,new c(t,e,r)),r},i.prototype.finally=function(t){var e=this.constructor;return this.then(function(n){return e.resolve(t()).then(function(){return n})},function(n){return e.resolve(t()).then(function(){return e.reject(n)})})},i.all=function(t){return new i(function(e,n){function r(t,a){try{if(a&&("object"==typeof a||"function"==typeof a)){var s=a.then;if("function"==typeof s)return void s.call(a,function(e){r(t,e)},n)}i[t]=a,0==--o&&e(i)}catch(t){n(t)}}if(!t||void 0===t.length)throw new TypeError("Promise.all accepts an array");var i=Array.prototype.slice.call(t);if(0===i.length)return e([]);for(var o=i.length,a=0;a<i.length;a++)r(a,i[a])})},i.resolve=function(t){return t&&"object"==typeof t&&t.constructor===i?t:new i(function(e){e(t)})},i.reject=function(t){return new i(function(e,n){n(t)})},i.race=function(t){return new i(function(e,n){for(var r=0,i=t.length;r<i;r++)t[r].then(e,n)})},i._immediateFn="function"==typeof e&&function(t){e(t)}||function(t){f(t,0)},i._unhandledRejectionFn=function(t){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",t)},t.exports=i}).call(e,n(170).setImmediate)},function(t,e,n){(function(t){function r(t,e){this._id=t,this._clearFn=e}var i=void 0!==t&&t||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;e.setTimeout=function(){return new r(o.call(setTimeout,i,arguments),clearTimeout)},e.setInterval=function(){return new r(o.call(setInterval,i,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(i,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},n(171),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(e,n(40))},function(t,e,n){(function(t,e){!function(t,n){"use strict";function r(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var r={callback:t,args:e};return c[u]=r,s(u),u++}function i(t){delete c[t]}function o(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(n,r)}}function a(t){if(l)setTimeout(a,0,t);else{var e=c[t];if(e){l=!0;try{o(e)}finally{i(t),l=!1}}}}if(!t.setImmediate){var s,u=1,c={},l=!1,f=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,"[object process]"==={}.toString.call(t.process)?function(){s=function(t){e.nextTick(function(){a(t)})}}():function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?function(){var e="setImmediate$"+Math.random()+"$",n=function(n){n.source===t&&"string"==typeof n.data&&0===n.data.indexOf(e)&&a(+n.data.slice(e.length))};t.addEventListener?t.addEventListener("message",n,!1):t.attachEvent("onmessage",n),s=function(n){t.postMessage(e+n,"*")}}():t.MessageChannel?function(){var t=new MessageChannel;t.port1.onmessage=function(t){a(t.data)},s=function(e){t.port2.postMessage(e)}}():f&&"onreadystatechange"in f.createElement("script")?function(){var t=f.documentElement;s=function(e){var n=f.createElement("script");n.onreadystatechange=function(){a(e),n.onreadystatechange=null,t.removeChild(n),n=null},t.appendChild(n)}}():function(){s=function(t){setTimeout(a,0,t)}}(),d.setImmediate=r,d.clearImmediate=i}}("undefined"==typeof self?void 0===t?this:t:self)}).call(e,n(40),n(91))},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){function e(e){if(!u(e))throw e;return o(e.details).then(t)}return t(s()).catch(e)}function o(t){if(!l){var e=t.verificator,n=t.data,r=Object(h.a)(e.id,e.url).then(function(t){return new scrivito.Promise(function(e){function r(t){f=t,e(f.authorization)}t(n,r)})});l={challenge:{verificator:e,data:n},promise:p.a(r,function(){l=void 0})}}return l.promise}function a(){l=void 0,f=void 0}function s(){if(f)return f.expiresAfter<new Date?void(f=void 0):f.authorization}function u(t){return r(t,d.UnauthorizedError)&&t.backendCode===y}function c(){var t=s();if(t)return"Authorization: "+t;if(l){var e=l.challenge;return"Pending computation: "+e.verificator.id+" with "+e.data}return null}Object.defineProperty(e,"__esModule",{value:!0}),n.d(e,"ERROR_CODE_CLIENT_VERIFICATION_REQUIRED",function(){return y}),e.perform=i,e.reset=a,e.currentState=c;var l,f,d=n(1),h=n(173),p=n(50),v=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),y="client_verification_required";!function(t){function e(){return null!==t&&t.apply(this,arguments)||this}v(e,t)}(d.UnauthorizedError)},function(t,e,n){"use strict";function r(t,e){var n=i[t];return n||(n=new o.a,i[t]=n,Object(a.b)(e)),n.promise}e.a=r;var i,o=n(13),a=n(153);!function(){i={}}(),window._scrivitoRegisterVerificator=function(t,e){i[t].resolve(e)}},function(t,e,n){"use strict";var r=n(88),i=n(53),o=n(12),a=n(4),s=n(1),u=n(43),c=function(){function t(t,e){var n=this;this._loadableData=new o.b({state:e,loader:function(t){var e=t.push;return u.a.retrieveObj(scrivito.currentWorkspaceId(),n._id).then(function(t){return e(function(){return n._replication().notifyBackendState(t)}),t})}}),this._id=t}return t.prototype.get=function(){return Object(a.e)("for performance reasons, avoid this method when rendering"),this._loadableData.get()},t.prototype.getWidget=function(t){return Object(a.e)("for performance reasons, avoid this method when rendering"),this.getWidgetState(t).get()},t.prototype.getAttribute=function(t){if("_widget_pool"===t)throw new s.InternalError("_widget_pool is not an attribute, use getWidget or getWidgetAttribute");return this.getSubReader(t).get()},t.prototype.getWidgetAttribute=function(t,e){return this.getWidgetState(t).subState(e).get()},t.prototype.isNonExistent=function(){return!!this.getSubReader("_deleted").get()||!this.getSubReader("_id").get()},t.prototype.set=function(t){Object(a.d)("Changing CMS content"),this._loadableData.set(t)},t.prototype.setError=function(t){this._loadableData.setError(t)},t.prototype.ensureAvailable=function(){return this._loadableData.ensureAvailable()},t.prototype.isAvailable=function(){return this._loadableData.isAvailable()},t.prototype.update=function(t){var e=r.a(this.get(),t);this.set(e),this._replication().notifyLocalState(e)},t.prototype.finishSaving=function(){return this._replication().finishSaving()},t.prototype._replication=function(){return i.a.get(this._id)},t.prototype.getWidgetState=function(t){return this.getSubReader("_widget_pool").subState(t)},t.prototype.getSubReader=function(t){return this._loadableData.reader().subState(t)},t}();e.a=c},function(t,e,n){"use strict";var r=function(){function t(t){this.container=t}return t.prototype.reader=function(){return this.container.reader().subState("value")},t.prototype.status=function(){return this.getStateKey("status")||"MISSING"},t.prototype.value=function(){return this.getStateKey("value")},t.prototype.error=function(){return this.getStateKey("error")},t.prototype.version=function(){return this.getStateKey("version")},t.prototype.transitionToMissing=function(){this.setState({status:void 0})},t.prototype.transitionToAvailable=function(t,e){this.setState({status:"AVAILABLE",value:t,version:e})},t.prototype.transitionToError=function(t,e){this.setState({status:"ERROR",error:t,version:e})},t.prototype.setState=function(t){this.container.set(t)},t.prototype.getStateKey=function(t){return this.container.subState(t).get()},t}();e.a=r},function(t,e,n){"use strict";function r(t){return void 0!==a[t]}function i(t){delete a[t]}function o(t,e,n,o){function u(t){l()&&t()}if(!r(t)){var c=s++,l=function(){return a[t]===c},f=[],d=function(t){return f.push(t)},h=function(){return f.forEach(function(t){return t()})};e({push:d,wasCancelled:function(){return!l()}}).then(function(e){return u(function(){return scrivito.batchedStateUpdater.add(function(){i(t),n(e),h()})})},function(e){return u(function(){return scrivito.batchedStateUpdater.add(function(){i(t),o(e),h()})})}),a[t]=c}}e.a=r,e.c=i,e.b=o;var a={},s=0},function(t,e,n){"use strict";function r(t){return i.a.get("blobs/"+encodeURIComponent(t||"")+"/meta_data")}e.a=r;var i=n(21)},function(t,e,n){"use strict";function r(t){var e=scrivito.currentWorkspaceId();return o.a.get("workspaces/"+e+"/objs/mget",{ids:t,include_deleted:!0}).then(function(t){return t.results})}function i(t){return s.retrieve(t).then(function(e){return e||{_deleted:t}})}e.a=i;var o=n(21),a=n(104),s=new a.a(r,{batchSize:17})},function(t,e,n){"use strict";function r(t){var e=scrivito.currentWorkspaceId(),n=a({consistent:!0},t);return o.a.get("workspaces/"+e+"/objs/search",n).then(function(t){var e=i(t);return{results:e.results.map(function(t){return t.id}),continuation:e.continuation,total:e.total,objs:e.objs}})}function i(t){var e={results:t.results,total:t.total},n=t.continuation;void 0!==n&&(e.continuation=n);var r=t.objs;return void 0!==r&&(e.objs=r),e}e.a=r;var o=n(21),a=this&&this.__assign||Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t}},function(t,e,n){"use strict";function r(t,e){return i.a.get("workspaces/"+t+"/objs/search",e).then(function(t){return{facets:t.facets.map(function(t){return t.map(function(t){return{total:t.total,value:t.value,results:t.results}})})}})}e.a=r;var i=n(21)},function(t,e,n){"use strict";function r(t,e){var n,r="blobs/"+encodeURIComponent(t);return e&&(r+="/optimize",n={transformation:e}),a.a.get(r,n).then(function(e){return i(t,e)})}function i(t,e){var n=e.public_access,r=n.get;if(!r.url)throw new o.InternalError('Missing public access URL for binary "'+t+'"');var i={public_access:{get:{url:r.url}}},a=e.private_access;if(a){var s=a.get;s.url&&(i.private_access={get:{url:s.url}})}return i}e.a=r;var o=n(1),a=n(21)},function(t,e,n){"use strict";function r(t,e,n){var r=s.getTypeName(e),i=n.length?"/"+n.join("/")+": "+r:r;return"Invalid value "+u(t)+" supplied to "+i}function i(t,e,n,i){return s.Function.is(e.getValidationErrorMessage)?e.getValidationErrorMessage(t,n,i):r(t,e,n)}function o(t,e,n){n=n||{};var r=s.Array.is(n)?n:n.path||[];return new f(a(t,e,r,n))}function a(t,e,n,r){return s.isType(e)?d[e.meta.kind](t,e,n,r):d.es6classes(t,e,n,r)}var s=n(183),u=s.stringify,c={},l=s.struct({message:s.Any,actual:s.Any,expected:s.Any,path:s.list(s.union([s.String,s.Number]))},"ValidationError");l.of=function(t,e,n,r){return new l({message:i(t,e,n,r),actual:t,expected:e,path:n})};var f=s.struct({errors:s.list(l),value:s.Any},"ValidationResult");f.prototype.isValid=function(){return!this.errors.length},f.prototype.firstError=function(){return this.isValid()?null:this.errors[0]},f.prototype.toString=function(){return this.isValid()?"[ValidationResult, true, "+u(this.value)+"]":"[ValidationResult, false, ("+this.errors.map(function(t){return u(t.message)}).join(", ")+")]"};var d=o.validators={};d.es6classes=function(t,e,n,r){return{value:t,errors:t instanceof e?[]:[l.of(t,e,n,r.context)]}},d.irreducible=d.enums=function(t,e,n,r){return{value:t,errors:e.is(t)?[]:[l.of(t,e,n,r.context)]}},d.list=function(t,e,n,r){if(!s.Array.is(t))return{value:t,errors:[l.of(t,e,n,r.context)]};for(var i={value:[],errors:[]},o=0,u=t.length;o<u;o++){var c=a(t[o],e.meta.type,n.concat(o),r);i.value[o]=c.value,i.errors=i.errors.concat(c.errors)}return i},d.subtype=function(t,e,n,r){var i=a(t,e.meta.type,n,r);return i.errors.length?i:(e.meta.predicate(i.value)||(i.errors=[l.of(t,e,n,r.context)]),i)},d.maybe=function(t,e,n,r){return s.Nil.is(t)?{value:t,errors:[]}:a(t,e.meta.type,n,r)},d.struct=function(t,e,n,r){if(!s.Object.is(t))return{value:t,errors:[l.of(t,e,n,r.context)]};if(e.is(t))return{value:t,errors:[]};var i={value:{},errors:[]},o=e.meta.props,u=e.meta.defaultProps||c;for(var f in o)if(o.hasOwnProperty(f)){var d=t[f];void 0===d&&(d=u[f]);var h=a(d,o[f],n.concat(f),r);i.value[f]=h.value,i.errors=i.errors.concat(h.errors)}if(r.hasOwnProperty("strict")?r.strict:e.meta.strict)for(var p in t)t.hasOwnProperty(p)&&!o.hasOwnProperty(p)&&i.errors.push(l.of(t[p],s.Nil,n.concat(p),r.context));return i.errors.length||(i.value=new e(i.value)),i},d.tuple=function(t,e,n,r){var i=e.meta.types,o=i.length;if(!s.Array.is(t)||t.length>o)return{value:t,errors:[l.of(t,e,n,r.context)]};for(var u={value:[],errors:[]},c=0;c<o;c++){var f=a(t[c],i[c],n.concat(c),r);u.value[c]=f.value,u.errors=u.errors.concat(f.errors)}return u},d.dict=function(t,e,n,r){if(!s.Object.is(t))return{value:t,errors:[l.of(t,e,n,r.context)]};var i={value:{},errors:[]};for(var o in t)if(t.hasOwnProperty(o)){var u=n.concat(o),c=a(o,e.meta.domain,u,r),f=a(t[o],e.meta.codomain,u,r);i.value[o]=f.value,i.errors=i.errors.concat(c.errors,f.errors)}return i},d.union=function(t,e,n,r){var i=e.dispatch(t);return s.Function.is(i)?a(t,i,n.concat(e.meta.types.indexOf(i)),r):{value:t,errors:[l.of(t,e,n,r.context)]}},d.intersection=function(t,e,n,r){for(var i=e.meta.types,o=i.length,s={value:t,errors:[]},u=0,c=0;c<o;c++){"struct"===i[c].meta.kind&&u++;var f=a(t,i[c],n,r);s.errors=s.errors.concat(f.errors)}return u>1&&s.errors.push(l.of(t,e,n,r.context)),s},d.interface=function(t,e,n,r){if(!s.Object.is(t))return{value:t,errors:[l.of(t,e,n,r.context)]};var i={value:{},errors:[]},o=e.meta.props;for(var u in o){var c=a(t[u],o[u],n.concat(u),r);i.value[u]=c.value,i.errors=i.errors.concat(c.errors)}if(r.hasOwnProperty("strict")?r.strict:e.meta.strict)for(var f in t)o.hasOwnProperty(f)||s.Nil.is(t[f])||i.errors.push(l.of(t[f],s.Nil,n.concat(f),r.context));return i},s.mixin(s,{ValidationError:l,ValidationResult:f,validate:o}),t.exports=s},function(t,e,n){/*! @preserve
64
70
  *
65
71
  * tcomb.js - Type checking and DDD for JavaScript
66
72
  *
@@ -69,6 +75,12 @@ function(e){function t(e,t,n,r){var i,o,a,s,c,f,d,h,p,v;if((t?t.ownerDocument||t
69
75
  * Copyright (c) 2014-2016 Giulio Canti
70
76
  *
71
77
  */
72
- var r=n(4);r.Any=n(67),r.Array=n(159),r.Boolean=n(89),r.Date=n(160),r.Error=n(161),r.Function=n(62),r.Nil=n(90),r.Number=n(91),r.Integer=n(162),r.IntegerT=r.Integer,r.Object=n(163),r.RegExp=n(164),r.String=n(69),r.Type=n(165),r.TypeT=r.Type,r.Arr=r.Array,r.Bool=r.Boolean,r.Dat=r.Date,r.Err=r.Error,r.Func=r.Function,r.Num=r.Number,r.Obj=r.Object,r.Re=r.RegExp,r.Str=r.String,r.dict=n(70),r.declare=n(166),r.enums=n(167),r.irreducible=n(14),r.list=n(94),r.maybe=n(168),r.refinement=n(68),r.struct=n(170),r.tuple=n(97),r.union=n(174),r.func=n(175),r.intersection=n(176),r.subtype=r.refinement,r.inter=n(177),r.interface=r.inter,r.assert=r,r.update=n(178),r.mixin=n(71),r.isType=n(10),r.is=n(29),r.getTypeName=n(7),r.match=n(179),e.exports=r},function(e,t){e.exports=function(e){throw new TypeError("[tcomb] "+e)}},function(e,t,n){var r=n(14),i=n(26);e.exports=r("Array",i)},function(e,t,n){var r=n(14);e.exports=r("Date",function(e){return e instanceof Date})},function(e,t,n){var r=n(14);e.exports=r("Error",function(e){return e instanceof Error})},function(e,t,n){var r=n(68),i=n(91);e.exports=r(i,function(e){return e%1==0},"Integer")},function(e,t,n){var r=n(14),i=n(25);e.exports=r("Object",i)},function(e,t,n){var r=n(14);e.exports=r("RegExp",function(e){return e instanceof RegExp})},function(e,t,n){var r=n(14),i=n(10);e.exports=r("Type",i)},function(e,t,n){var r=(n(4),n(18),n(10),n(23),n(71)),i=n(7),o=n(93),a=1;e.exports=function(e){function t(e,t){return n(e,t)}var n;return t.define=function(i){return o(i)&&t.hasOwnProperty("dispatch")&&(i.dispatch=t.dispatch),n=i,r(t,n,!0),e&&(n.displayName=t.displayName=e,t.meta.name=e),t.meta.identity=n.meta.identity,t.prototype=n.prototype,t},t.displayName=e||i(t)+"$"+a++,t.meta={identity:!1},t.prototype=null,t}},function(e,t,n){function r(e){return Object.keys(e).map(function(e){return o.stringify(e)}).join(" | ")}function i(e,t){function n(e,t){return e}var i=t||r(e);return n.meta={kind:"enums",map:e,name:t,identity:!0},n.displayName=i,n.is=function(t){return e.hasOwnProperty(t)},n}var o=n(4),a=(n(18),n(46),n(60));n(25);i.of=function(e,t){e=a(e)?e.split(" "):e;var n={};return e.forEach(function(e){n[e]=e}),i(n,t)},i.getDefaultName=r,e.exports=i},function(e,t,n){function r(e){return"?"+f(e)}function i(e,t){function n(t,n){return c.is(t)?t:u(e,t,n)}if(o(e)||e===s||e===c)return e;var i=t||r(e),f=a(e);return n.meta={kind:"maybe",type:e,name:t,identity:f},n.displayName=i,n.is=function(t){return c.is(t)||l(t,e)},n}var o=(n(4),n(18),n(9),n(169)),a=n(27),s=n(67),u=n(28),c=n(90),l=(n(46),n(29)),f=n(7);i.getDefaultName=r,e.exports=i},function(e,t,n){var r=n(10);e.exports=function(e){return r(e)&&"maybe"===e.meta.kind}},function(e,t,n){function r(e){return"Struct"+f(e)}function i(e,t){return d(a,e,t)}function o(e){return u(e)||(e=c(e)?{}:{name:e}),e.hasOwnProperty("strict")||(e.strict=a.strict),e.hasOwnProperty("defaultProps")||(e.defaultProps={}),e}function a(e,t){function n(t,r){if(n.is(t))return t;if(!(this instanceof n))return new n(t,r);for(var i in e)if(e.hasOwnProperty(i)){var o=e[i],a=t[i];void 0===a&&(a=c[i]),this[i]=l(o,a,null)}}t=o(t);var a=t.name,u=t.strict,c=t.defaultProps,f=a||r(e);return n.meta={kind:"struct",props:e,name:a,identity:!1,strict:u,defaultProps:c},n.displayName=f,n.is=function(e){return e instanceof n},n.update=function(e,t){return new n(s.update(e,t))},n.extend=function(e,t){return i([n].concat(e),t)},n}var s=n(4),u=(n(18),n(69),n(62),n(61),n(25)),c=n(23),l=n(28),f=(n(7),n(70),n(95)),d=n(96);a.strict=!1,a.getOptions=o,a.getDefaultName=r,a.extend=i,e.exports=a},function(e,t,n){var r=n(10);e.exports=function(e){return r(e)&&"struct"===e.meta.kind}},function(e,t,n){var r=n(10);e.exports=function(e){return r(e)&&"interface"===e.meta.kind}},function(e,t,n){function r(e){return s(e)&&"subtype"===e.meta.kind}function i(e){return r(e)?[e.meta.predicate].concat(i(e.meta.type)):[]}function o(e){return r(e)?o(e.meta.type):e}function a(e){return{predicates:i(e),unrefinedType:o(e)}}var s=n(10);e.exports=a},function(e,t,n){function r(e){return e.map(a).join(" | ")}function i(e,t){function n(e,t){if(a)return e;var r=n.dispatch(e);return!r&&n.is(e)?e:u(r,e,t)}var i=t||r(e),a=e.every(s);return n.meta={kind:"union",types:e,name:t,identity:a},n.displayName=i,n.is=function(t){return e.some(function(e){return c(t,e)})},n.dispatch=function(t){for(var n=0,r=e.length;n<r;n++){var i=e[n];if(l(i)){var o=i.dispatch(t);if(!f(o))return o}else if(c(t,i))return i}},n.update=function(e,t){return n(o.update(e,t))},n}var o=n(4),a=(n(18),n(9),n(7)),s=n(27),u=(n(26),n(28)),c=n(29),l=(n(46),n(93)),f=n(23);i.getDefaultName=r,e.exports=i},function(e,t,n){function r(e,t){return"("+e.map(d).join(", ")+") => "+d(t)}function i(e){return s.is(e)&&c(e.instrumentation)}function o(e){for(var t=e.length,n=!1,r=t-1;r>=0;r--){var i=e[r];if(!h(i)||"maybe"!==i.meta.kind)return r+1;n=!0}return n?0:t}function a(e,t,n){function s(e,t){return i(e)?e:s.of(e)}e=u(e)?e:[e];var c=n||r(e,t),d=e.length;o(e);return s.meta={kind:"func",domain:e,codomain:t,name:n,identity:!0},s.displayName=c,s.is=function(n){return i(n)&&n.instrumentation.domain.length===d&&n.instrumentation.domain.every(function(t,n){return t===e[n]})&&n.instrumentation.codomain===t},s.of=function(n,r){function i(){var i=Array.prototype.slice.call(arguments),o=i.length;if(r&&o<d){var s=Function.prototype.bind.apply(n,[this].concat(i));return a(e.slice(o),t).of(s,!0)}return l(t,n.apply(this,i))}return s.is(n)?n:(i.instrumentation={domain:e,codomain:t,f:n},i.displayName=f(n),i)},s}var s=(n(4),n(18),n(62)),u=n(26),c=(n(94),n(25)),l=n(28),f=(n(23),n(61),n(97),n(45)),d=n(7),h=n(10);a.getDefaultName=r,a.getOptionalArgumentsIndex=o,e.exports=a},function(e,t,n){function r(e){return e.map(s).join(" & ")}function i(e,t){function n(e,t){return e}var i=t||r(e),s=e.every(u);return n.meta={kind:"intersection",types:e,name:t,identity:s},n.displayName=i,n.is=function(t){return e.every(function(e){return a(t,e)})},n.update=function(e,t){return n(o.update(e,t))},n}var o=n(4),a=(n(18),n(9),n(26),n(27),n(29)),s=n(7),u=n(27);i.getDefaultName=r,e.exports=i},function(e,t,n){function r(e,t){return h(o,e,t)}function i(e){return s(e)||(e=u(e)?{}:{name:e}),e.hasOwnProperty("strict")||(e.strict=o.strict),e}function o(e,t){function n(t,n){if(v)return t;var r=!0,i=v?{}:p({},t);for(var o in e){var a=e[o],s=t[o],u=c(a,s,null);r=r&&s===u,i[o]=u}return r&&(i=t),i}t=i(t);var o=t.name,s=t.strict,h=o||l(e),v=Object.keys(e).map(function(t){return e[t]}).every(f);return n.meta={kind:"interface",props:e,name:o,identity:v,strict:s},n.displayName=h,n.is=function(t){if(u(t))return!1;if(s)for(var n in t)if(!e.hasOwnProperty(n))return!1;for(var r in e)if(!d(t[r],e[r]))return!1;return!0},n.update=function(e,t){return n(a.update(e,t))},n.extend=function(e,t){return r([n].concat(e),t)},n}var a=n(4),s=(n(18),n(69),n(62),n(61),n(25)),u=n(23),c=n(28),l=(n(7),n(70),n(95)),f=n(27),d=n(29),h=n(96),p=n(98);o.strict=!1,o.getOptions=i,o.getDefaultName=l,o.extend=r,e.exports=o},function(e,t,n){function r(e){return v(e)?e instanceof Date||e instanceof RegExp?e:g({},e):m(e)?e.concat():e}function i(e){return a.commands.hasOwnProperty(e)}function o(e){return a.commands[e]}function a(e,t){var n,s=e,u=!1;for(var c in t)t.hasOwnProperty(c)&&(i(c)?(n=o(c)(t[c],s),n!==e?(u=!0,s=n):s=e):(s===e&&(s=r(e)),n=a(s[c],t[c]),u=u||n!==s[c],s[c]=n));return u?s:e}function s(e,t){return e(t)}function u(e,t){return e.length>0?t.concat(e):t}function c(e,t){if(e.length>0){t=r(t);for(var n=0,i=e.length;n<i;n++)delete t[e[n]]}return t}function l(e){return e}function f(e,t){return e.length>0?(t=r(t),e.reduce(function(e,t){return e.splice.apply(e,t),e},t)):t}function d(e,t){if(e.from!==e.to){t=r(t);var n=t[e.to];t[e.to]=t[e.from],t[e.from]=n}return t}function h(e,t){return e.length>0?e.concat(t):t}function p(e,t){var n=!1,i=r(t);for(var o in e)e.hasOwnProperty(o)&&(i[o]=e[o],n=n||i[o]!==t[o]);return n?i:t}var v=(n(4),n(25)),m=(n(9),n(26)),g=(n(92),n(98));a.commands={$apply:s,$push:u,$remove:c,$set:l,$splice:f,$swap:d,$unshift:h,$merge:p},e.exports=a},function(e,t,n){var r=n(4),i=n(9),o=n(10),a=n(67);e.exports=function(e){for(var t,n,s,u=1,c=arguments.length;u<c;)if(t=arguments[u],n=arguments[u+1],s=arguments[u+2],i(s)&&!o(s)?u+=3:(s=n,n=a.is,u+=2),t.is(e)&&n(e))return s(e);r.fail("Match error")}},function(e,t,n){"use strict";var r=n(181),i=function(e){return e&&e.__esModule?e:{default:e}}(r);scrivito.Promise=window.Promise||i.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){function n(){}function r(e,t){return function(){e.apply(t,arguments)}}function i(e,t){for(;3===e._state;)e=e._value;if(0===e._state)return void e._deferreds.push(t);e._handled=!0,l._immediateFn(function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null===n)return void(1===e._state?o:a)(t.promise,e._value);var r;try{r=n(e._value)}catch(e){return void a(t.promise,e)}o(t.promise,r)})}function o(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var n=t.then;if(t instanceof l)return e._state=3,e._value=t,void s(e);if("function"==typeof n)return void c(r(n,t),e)}e._state=1,e._value=t,s(e)}catch(t){a(e,t)}}function a(e,t){e._state=2,e._value=t,s(e)}function s(e){2===e._state&&0===e._deferreds.length&&l._immediateFn(function(){e._handled||l._unhandledRejectionFn(e._value)});for(var t=0,n=e._deferreds.length;t<n;t++)i(e,e._deferreds[t]);e._deferreds=null}function u(e,t,n){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=n}function c(e,t){var n=!1;try{e(function(e){n||(n=!0,o(t,e))},function(e){n||(n=!0,a(t,e))})}catch(e){if(n)return;n=!0,a(t,e)}}function l(e){if(!(this instanceof l))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],c(e,this)}var f=setTimeout,d=l.prototype;d.catch=function(e){return this.then(null,e)},d.then=function(e,t){var r=new this.constructor(n);return i(this,new u(e,t,r)),r},l.all=function(e){return new l(function(t,n){function r(e,a){try{if(a&&("object"==typeof a||"function"==typeof a)){var s=a.then;if("function"==typeof s)return void s.call(a,function(t){r(e,t)},n)}i[e]=a,0==--o&&t(i)}catch(e){n(e)}}if(!e||void 0===e.length)throw new TypeError("Promise.all accepts an array");var i=Array.prototype.slice.call(e);if(0===i.length)return t([]);for(var o=i.length,a=0;a<i.length;a++)r(a,i[a])})},l.resolve=function(e){return e&&"object"==typeof e&&e.constructor===l?e:new l(function(t){t(e)})},l.reject=function(e){return new l(function(t,n){n(e)})},l.race=function(e){return new l(function(t,n){for(var r=0,i=e.length;r<i;r++)e[r].then(t,n)})},l._immediateFn="function"==typeof e&&function(t){e(t)}||function(e){f(e,0)},l._unhandledRejectionFn=function(e){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},t.default=l}.call(t,n(182).setImmediate)},function(e,t,n){function r(e,t){this._id=e,this._clearFn=t}var i=Function.prototype.apply;t.setTimeout=function(){return new r(i.call(setTimeout,window,arguments),clearTimeout)},t.setInterval=function(){return new r(i.call(setInterval,window,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(window,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},n(183),t.setImmediate=setImmediate,t.clearImmediate=clearImmediate},function(e,t,n){(function(e,t){!function(e,n){"use strict";function r(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var r={callback:e,args:t};return c[u]=r,s(u),u++}function i(e){delete c[e]}function o(e){var t=e.callback,r=e.args;switch(r.length){case 0:t();break;case 1:t(r[0]);break;case 2:t(r[0],r[1]);break;case 3:t(r[0],r[1],r[2]);break;default:t.apply(n,r)}}function a(e){if(l)setTimeout(a,0,e);else{var t=c[e];if(t){l=!0;try{o(t)}finally{i(e),l=!1}}}}if(!e.setImmediate){var s,u=1,c={},l=!1,f=e.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(e);d=d&&d.setTimeout?d:e,"[object process]"==={}.toString.call(e.process)?function(){s=function(e){t.nextTick(function(){a(e)})}}():function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?function(){var t="setImmediate$"+Math.random()+"$",n=function(n){n.source===e&&"string"==typeof n.data&&0===n.data.indexOf(t)&&a(+n.data.slice(t.length))};e.addEventListener?e.addEventListener("message",n,!1):e.attachEvent("onmessage",n),s=function(n){e.postMessage(t+n,"*")}}():e.MessageChannel?function(){var e=new MessageChannel;e.port1.onmessage=function(e){a(e.data)},s=function(t){e.port2.postMessage(t)}}():f&&"onreadystatechange"in f.createElement("script")?function(){var e=f.documentElement;s=function(t){var n=f.createElement("script");n.onreadystatechange=function(){a(t),n.onreadystatechange=null,e.removeChild(n),n=null},e.appendChild(n)}}():function(){s=function(e){setTimeout(a,0,e)}}(),d.setImmediate=r,d.clearImmediate=i}}("undefined"==typeof self?void 0===e?this:e:self)}).call(t,n(51),n(79))},function(e,t,n){"use strict";var r=n(0),i=function(e){return e&&e.__esModule?e:{default:e}}(r);!function(){function e(e,t,r){return n?e:i.default.throttle(e,t,r)}function t(){n=!0}var n=!1;scrivito.throttle=e,scrivito.bypassThrottle=t}()},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=n(0),a=r(o),s=n(42),u=r(s),c=n(1);!function(){scrivito.typeInfo={normalize:function(e){if(a.default.isString(e))return[e];if(a.default.isArray(e))return e;throw new c.InternalError("Type Info needs to be a string or an array containing a string and optionally a hash")},normalizeAttrs:function(e){var t=this;return a.default.mapObject(e,function(e,n){var r=i(e,2),o=r[0],a=r[1];return(0,u.default)(n)?[o]:[o,t.normalize(a)]})},unwrapAttributes:function(e){return a.default.mapObject(e,function(e){return i(e,1)[0]})}}}()},function(e,t,n){"use strict";function r(e){return(0,o.default)(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(132),o=function(e){return e&&e.__esModule?e:{default:e}}(i)},function(e,t,n){var r,i;!function(n,o){"use strict";var a=function(e,t){var n,r,i,o,a,s,l,f,d,h,p,v,m,g,y,b="-",w=[";","?",":","@","&","=","+","$",",","/"],_=[";","?",":","@","&","=","+","$",","],C=[".","!","~","*","'","(",")"],k="",E="",x=!0,S={},T={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"Ae","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"Oe","Ő":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"Ue","Ű":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"ae","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"oe","ő":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"ue","ű":"u","ý":"y","þ":"th","ÿ":"y","ẞ":"SS","ا":"a","أ":"a","إ":"i","آ":"aa","ؤ":"u","ئ":"e","ء":"a","ب":"b","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ي":"y","ى":"a","ة":"h","ﻻ":"la","ﻷ":"laa","ﻹ":"lai","ﻵ":"laa","گ":"g","چ":"ch","پ":"p","ژ":"zh","ک":"k","ی":"y","َ":"a","ً":"an","ِ":"e","ٍ":"en","ُ":"u","ٌ":"on","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","က":"k","ခ":"kh","ဂ":"g","ဃ":"ga","င":"ng","စ":"s","ဆ":"sa","ဇ":"z","စျ":"za","ည":"ny","ဋ":"t","ဌ":"ta","ဍ":"d","ဎ":"da","ဏ":"na","တ":"t","ထ":"ta","ဒ":"d","ဓ":"da","န":"n","ပ":"p","ဖ":"pa","ဗ":"b","ဘ":"ba","မ":"m","ယ":"y","ရ":"ya","လ":"l","ဝ":"w","သ":"th","ဟ":"h","ဠ":"la","အ":"a","ြ":"y","ျ":"ya","ွ":"w","ြွ":"yw","ျွ":"ywa","ှ":"h","ဧ":"e","၏":"-e","ဣ":"i","ဤ":"-i","ဉ":"u","ဦ":"-u","ဩ":"aw","သြော":"aw","ဪ":"aw","၀":"0","၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","္":"","့":"","း":"","č":"c","ď":"d","ě":"e","ň":"n","ř":"r","š":"s","ť":"t","ů":"u","ž":"z","Č":"C","Ď":"D","Ě":"E","Ň":"N","Ř":"R","Š":"S","Ť":"T","Ů":"U","Ž":"Z","ހ":"h","ށ":"sh","ނ":"n","ރ":"r","ބ":"b","ޅ":"lh","ކ":"k","އ":"a","ވ":"v","މ":"m","ފ":"f","ދ":"dh","ތ":"th","ލ":"l","ގ":"g","ޏ":"gn","ސ":"s","ޑ":"d","ޒ":"z","ޓ":"t","ޔ":"y","ޕ":"p","ޖ":"j","ޗ":"ch","ޘ":"tt","ޙ":"hh","ޚ":"kh","ޛ":"th","ޜ":"z","ޝ":"sh","ޞ":"s","ޟ":"d","ޠ":"t","ޡ":"z","ޢ":"a","ޣ":"gh","ޤ":"q","ޥ":"w","ަ":"a","ާ":"aa","ި":"i","ީ":"ee","ު":"u","ޫ":"oo","ެ":"e","ޭ":"ey","ޮ":"o","ޯ":"oa","ް":"","α":"a","β":"v","γ":"g","δ":"d","ε":"e","ζ":"z","η":"i","θ":"th","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"ks","ο":"o","π":"p","ρ":"r","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"o","ά":"a","έ":"e","ί":"i","ό":"o","ύ":"y","ή":"i","ώ":"o","ς":"s","ϊ":"i","ΰ":"y","ϋ":"y","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"I","Θ":"TH","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"KS","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"O","Ά":"A","Έ":"E","Ί":"I","Ό":"O","Ύ":"Y","Ή":"I","Ώ":"O","Ϊ":"I","Ϋ":"Y","ā":"a","ē":"e","ģ":"g","ī":"i","ķ":"k","ļ":"l","ņ":"n","ū":"u","Ā":"A","Ē":"E","Ģ":"G","Ī":"I","Ķ":"k","Ļ":"L","Ņ":"N","Ū":"U","Ќ":"Kj","ќ":"kj","Љ":"Lj","љ":"lj","Њ":"Nj","њ":"nj","Тс":"Ts","тс":"ts","ą":"a","ć":"c","ę":"e","ł":"l","ń":"n","ś":"s","ź":"z","ż":"z","Ą":"A","Ć":"C","Ę":"E","Ł":"L","Ń":"N","Ś":"S","Ź":"Z","Ż":"Z","Є":"Ye","І":"I","Ї":"Yi","Ґ":"G","є":"ye","і":"i","ї":"yi","ґ":"g","ă":"a","Ă":"A","ș":"s","Ș":"S","ț":"t","Ț":"T","ţ":"t","Ţ":"T","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ё":"yo","ж":"zh","з":"z","и":"i","й":"i","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"kh","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ё":"Yo","Ж":"Zh","З":"Z","И":"I","Й":"I","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"Kh","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","ђ":"dj","ј":"j","ћ":"c","џ":"dz","Ђ":"Dj","Ј":"j","Ћ":"C","Џ":"Dz","ľ":"l","ĺ":"l","ŕ":"r","Ľ":"L","Ĺ":"L","Ŕ":"R","ş":"s","Ş":"S","ı":"i","İ":"I","ğ":"g","Ğ":"G","ả":"a","Ả":"A","ẳ":"a","Ẳ":"A","ẩ":"a","Ẩ":"A","đ":"d","Đ":"D","ẹ":"e","Ẹ":"E","ẽ":"e","Ẽ":"E","ẻ":"e","Ẻ":"E","ế":"e","Ế":"E","ề":"e","Ề":"E","ệ":"e","Ệ":"E","ễ":"e","Ễ":"E","ể":"e","Ể":"E","ọ":"o","Ọ":"o","ố":"o","Ố":"O","ồ":"o","Ồ":"O","ổ":"o","Ổ":"O","ộ":"o","Ộ":"O","ỗ":"o","Ỗ":"O","ơ":"o","Ơ":"O","ớ":"o","Ớ":"O","ờ":"o","Ờ":"O","ợ":"o","Ợ":"O","ỡ":"o","Ỡ":"O","Ở":"o","ở":"o","ị":"i","Ị":"I","ĩ":"i","Ĩ":"I","ỉ":"i","Ỉ":"i","ủ":"u","Ủ":"U","ụ":"u","Ụ":"U","ũ":"u","Ũ":"U","ư":"u","Ư":"U","ứ":"u","Ứ":"U","ừ":"u","Ừ":"U","ự":"u","Ự":"U","ữ":"u","Ữ":"U","ử":"u","Ử":"ư","ỷ":"y","Ỷ":"y","ỳ":"y","Ỳ":"Y","ỵ":"y","Ỵ":"Y","ỹ":"y","Ỹ":"Y","ạ":"a","Ạ":"A","ấ":"a","Ấ":"A","ầ":"a","Ầ":"A","ậ":"a","Ậ":"A","ẫ":"a","Ẫ":"A","ắ":"a","Ắ":"A","ằ":"a","Ằ":"A","ặ":"a","Ặ":"A","ẵ":"a","Ẵ":"A","“":'"',"”":'"',"‘":"'","’":"'","∂":"d","ƒ":"f","™":"(TM)","©":"(C)","œ":"oe","Œ":"OE","®":"(R)","†":"+","℠":"(SM)","…":"...","˚":"o","º":"o","ª":"a","•":"*","၊":",","။":".",$:"USD","€":"EUR","₢":"BRN","₣":"FRF","£":"GBP","₤":"ITL","₦":"NGN","₧":"ESP","₩":"KRW","₪":"ILS","₫":"VND","₭":"LAK","₮":"MNT","₯":"GRD","₱":"ARS","₲":"PYG","₳":"ARA","₴":"UAH","₵":"GHS","¢":"cent","¥":"CNY","元":"CNY","円":"YEN","﷼":"IRR","₠":"EWE","฿":"THB","₨":"INR","₹":"INR","₰":"PF","₺":"TRY","؋":"AFN","₼":"AZN","лв":"BGN","៛":"KHR","₡":"CRC","₸":"KZT","ден":"MKD","zł":"PLN","₽":"RUB","₾":"GEL"},A=["်","ް"],j={"ာ":"a","ါ":"a","ေ":"e","ဲ":"e","ိ":"i","ီ":"i","ို":"o","ု":"u","ူ":"u","ေါင်":"aung","ော":"aw","ော်":"aw","ေါ":"aw","ေါ်":"aw","်":"်","က်":"et","ိုက်":"aik","ောက်":"auk","င်":"in","ိုင်":"aing","ောင်":"aung","စ်":"it","ည်":"i","တ်":"at","ိတ်":"eik","ုတ်":"ok","ွတ်":"ut","ေတ်":"it","ဒ်":"d","ိုဒ်":"ok","ုဒ်":"ait","န်":"an","ာန်":"an","ိန်":"ein","ုန်":"on","ွန်":"un","ပ်":"at","ိပ်":"eik","ုပ်":"ok","ွပ်":"ut","န်ုပ်":"nub","မ်":"an","ိမ်":"ein","ုမ်":"on","ွမ်":"un","ယ်":"e","ိုလ်":"ol","ဉ်":"in","ံ":"an","ိံ":"ein","ုံ":"on","ައް":"ah","ަށް":"ah"},O={en:{},az:{"ç":"c","ə":"e","ğ":"g","ı":"i","ö":"o","ş":"s","ü":"u","Ç":"C","Ə":"E","Ğ":"G","İ":"I","Ö":"O","Ş":"S","Ü":"U"},cs:{"č":"c","ď":"d","ě":"e","ň":"n","ř":"r","š":"s","ť":"t","ů":"u","ž":"z","Č":"C","Ď":"D","Ě":"E","Ň":"N","Ř":"R","Š":"S","Ť":"T","Ů":"U","Ž":"Z"},fi:{"ä":"a","Ä":"A","ö":"o","Ö":"O"},hu:{"ä":"a","Ä":"A","ö":"o","Ö":"O","ü":"u","Ü":"U","ű":"u","Ű":"U"},lt:{"ą":"a","č":"c","ę":"e","ė":"e","į":"i","š":"s","ų":"u","ū":"u","ž":"z","Ą":"A","Č":"C","Ę":"E","Ė":"E","Į":"I","Š":"S","Ų":"U","Ū":"U"},lv:{"ā":"a","č":"c","ē":"e","ģ":"g","ī":"i","ķ":"k","ļ":"l","ņ":"n","š":"s","ū":"u","ž":"z","Ā":"A","Č":"C","Ē":"E","Ģ":"G","Ī":"i","Ķ":"k","Ļ":"L","Ņ":"N","Š":"S","Ū":"u","Ž":"Z"},pl:{"ą":"a","ć":"c","ę":"e","ł":"l","ń":"n","ó":"o","ś":"s","ź":"z","ż":"z","Ą":"A","Ć":"C","Ę":"e","Ł":"L","Ń":"N","Ó":"O","Ś":"S","Ź":"Z","Ż":"Z"},sk:{"ä":"a","Ä":"A"},sr:{"љ":"lj","њ":"nj","Љ":"Lj","Њ":"Nj","đ":"dj","Đ":"Dj"},tr:{"Ü":"U","Ö":"O","ü":"u","ö":"o"}},P={ar:{"∆":"delta","∞":"la-nihaya","♥":"hob","&":"wa","|":"aw","<":"aqal-men",">":"akbar-men","∑":"majmou","¤":"omla"},az:{},ca:{"∆":"delta","∞":"infinit","♥":"amor","&":"i","|":"o","<":"menys que",">":"mes que","∑":"suma dels","¤":"moneda"},cs:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"nebo","<":"mensi nez",">":"vetsi nez","∑":"soucet","¤":"mena"},de:{"∆":"delta","∞":"unendlich","♥":"Liebe","&":"und","|":"oder","<":"kleiner als",">":"groesser als","∑":"Summe von","¤":"Waehrung"},dv:{"∆":"delta","∞":"kolunulaa","♥":"loabi","&":"aai","|":"noonee","<":"ah vure kuda",">":"ah vure bodu","∑":"jumula","¤":"faisaa"},en:{"∆":"delta","∞":"infinity","♥":"love","&":"and","|":"or","<":"less than",">":"greater than","∑":"sum","¤":"currency"},es:{"∆":"delta","∞":"infinito","♥":"amor","&":"y","|":"u","<":"menos que",">":"mas que","∑":"suma de los","¤":"moneda"},fa:{"∆":"delta","∞":"bi-nahayat","♥":"eshgh","&":"va","|":"ya","<":"kamtar-az",">":"bishtar-az","∑":"majmooe","¤":"vahed"},fi:{"∆":"delta","∞":"aarettomyys","♥":"rakkaus","&":"ja","|":"tai","<":"pienempi kuin",">":"suurempi kuin","∑":"summa","¤":"valuutta"},fr:{"∆":"delta","∞":"infiniment","♥":"Amour","&":"et","|":"ou","<":"moins que",">":"superieure a","∑":"somme des","¤":"monnaie"},gr:{},hu:{"∆":"delta","∞":"vegtelen","♥":"szerelem","&":"es","|":"vagy","<":"kisebb mint",">":"nagyobb mint","∑":"szumma","¤":"penznem"},it:{"∆":"delta","∞":"infinito","♥":"amore","&":"e","|":"o","<":"minore di",">":"maggiore di","∑":"somma","¤":"moneta"},lt:{"∆":"delta","∞":"begalybe","♥":"meile","&":"ir","|":"ar","<":"maziau nei",">":"daugiau nei","∑":"suma","¤":"valiuta"},lv:{"∆":"delta","∞":"bezgaliba","♥":"milestiba","&":"un","|":"vai","<":"mazak neka",">":"lielaks neka","∑":"summa","¤":"valuta"},my:{"∆":"kwahkhyaet","∞":"asaonasme","♥":"akhyait","&":"nhin","|":"tho","<":"ngethaw",">":"kyithaw","∑":"paungld","¤":"ngwekye"},mk:{},nl:{"∆":"delta","∞":"oneindig","♥":"liefde","&":"en","|":"of","<":"kleiner dan",">":"groter dan","∑":"som","¤":"valuta"},pl:{"∆":"delta","∞":"nieskonczonosc","♥":"milosc","&":"i","|":"lub","<":"mniejsze niz",">":"wieksze niz","∑":"suma","¤":"waluta"},pt:{"∆":"delta","∞":"infinito","♥":"amor","&":"e","|":"ou","<":"menor que",">":"maior que","∑":"soma","¤":"moeda"},ro:{"∆":"delta","∞":"infinit","♥":"dragoste","&":"si","|":"sau","<":"mai mic ca",">":"mai mare ca","∑":"suma","¤":"valuta"},ru:{"∆":"delta","∞":"beskonechno","♥":"lubov","&":"i","|":"ili","<":"menshe",">":"bolshe","∑":"summa","¤":"valjuta"},sk:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"alebo","<":"menej ako",">":"viac ako","∑":"sucet","¤":"mena"},sr:{},tr:{"∆":"delta","∞":"sonsuzluk","♥":"ask","&":"ve","|":"veya","<":"kucuktur",">":"buyuktur","∑":"toplam","¤":"para birimi"},uk:{"∆":"delta","∞":"bezkinechnist","♥":"lubov","&":"i","|":"abo","<":"menshe",">":"bilshe","∑":"suma","¤":"valjuta"},vn:{"∆":"delta","∞":"vo cuc","♥":"yeu","&":"va","|":"hoac","<":"nho hon",">":"lon hon","∑":"tong","¤":"tien te"}};if("string"!=typeof e)return"";if("string"==typeof t&&(b=t),l=P.en,f=O.en,"object"==typeof t){n=t.maintainCase||!1,S=t.custom&&"object"==typeof t.custom?t.custom:S,i=+t.truncate>1&&t.truncate||!1,o=t.uric||!1,a=t.uricNoSlash||!1,s=t.mark||!1,x=!1!==t.symbols&&!1!==t.lang,b=t.separator||b,o&&(y+=w.join("")),a&&(y+=_.join("")),s&&(y+=C.join("")),l=t.lang&&P[t.lang]&&x?P[t.lang]:x?P.en:{},f=t.lang&&O[t.lang]?O[t.lang]:!1===t.lang||!0===t.lang?{}:O.en,t.titleCase&&"number"==typeof t.titleCase.length&&Array.prototype.toString.call(t.titleCase)?(t.titleCase.forEach(function(e){S[e+""]=e+""}),r=!0):r=!!t.titleCase,t.custom&&"number"==typeof t.custom.length&&Array.prototype.toString.call(t.custom)&&t.custom.forEach(function(e){S[e+""]=e+""}),Object.keys(S).forEach(function(t){var n;n=t.length>1?new RegExp("\\b"+u(t)+"\\b","gi"):new RegExp(u(t),"gi"),e=e.replace(n,S[t])});for(p in S)y+=p}for(y+=b,y=u(y),e=e.replace(/(^\s+|\s+$)/g,""),m=!1,g=!1,h=0,v=e.length;h<v;h++)p=e[h],c(p,S)?m=!1:f[p]?(p=m&&f[p].match(/[A-Za-z0-9]/)?" "+f[p]:f[p],m=!1):p in T?(h+1<v&&A.indexOf(e[h+1])>=0?(E+=p,p=""):!0===g?(p=j[E]+T[p],E=""):p=m&&T[p].match(/[A-Za-z0-9]/)?" "+T[p]:T[p],m=!1,g=!1):p in j?(E+=p,p="",h===v-1&&(p=j[E]),g=!0):!l[p]||o&&-1!==w.join("").indexOf(p)||a&&-1!==_.join("").indexOf(p)?(!0===g?(p=j[E]+p,E="",g=!1):m&&(/[A-Za-z0-9]/.test(p)||k.substr(-1).match(/A-Za-z0-9]/))&&(p=" "+p),m=!1):(p=m||k.substr(-1).match(/[A-Za-z0-9]/)?b+l[p]:l[p],p+=void 0!==e[h+1]&&e[h+1].match(/[A-Za-z0-9]/)?b:"",m=!0),k+=p.replace(new RegExp("[^\\w\\s"+y+"_-]","g"),b);return r&&(k=k.replace(/(\w)(\S*)/g,function(e,t,n){var r=t.toUpperCase()+(null!==n?n:"");return Object.keys(S).indexOf(r.toLowerCase())<0?r:r.toLowerCase()})),k=k.replace(/\s+/g,b).replace(new RegExp("\\"+b+"+","g"),b).replace(new RegExp("(^\\"+b+"+|\\"+b+"+$)","g"),""),i&&k.length>i&&(d=k.charAt(i)===b,k=k.slice(0,i),d||(k=k.slice(0,k.lastIndexOf(b)))),n||r||(k=k.toLowerCase()),k},s=function(e){return function(t){return a(t,e)}},u=function(e){return e.replace(/[-\\^$*+?.()|[\]{}\/]/g,"\\$&")},c=function(e,t){for(var n in t)if(t[n]===e)return!0};void 0!==e&&e.exports?(e.exports=a,e.exports.createSlug=s):(r=[],void 0!==(i=function(){return a}.apply(t,r))&&(e.exports=i))}()},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n,r){var i=C(t,2),f=i[0],v=i[1];switch(n){case"binary":return o(f,v);case"date":return a(f,v);case"float":return l(f,v);case"enum":return u(f,v,r);case"html":return s(f,v);case"integer":return d(f,v);case"link":return h(f,v);case"linklist":return p(f,v);case"multienum":return c(f,v,r);case"reference":return g(f,v);case"referencelist":return y(f,v);case"string":return b(f,v);case"stringlist":return w(f,v);case"widgetlist":return _(f,v,e)}}function o(e,t){if("binary"===e&&t){var n=t.id,r="published"===scrivito.currentWorkspaceId();return new P.default(n,r).optimizeFor({})}return null}function a(e,t){return"date"!==e?null:(0,x.deserializeAsDate)(t)}function s(e,t){return j.default.contains(["html","string"],e)&&j.default.isString(t)?t:""}function u(e,t,n){var r=n.values;return"string"===e&&j.default.contains(r,t)?t:null}function c(e,t,n){var r=n.values;return"stringlist"===e&&Array.isArray(t)?j.default.intersection(t,r):[]}function l(e,t){switch(e){case"string":return t.match(/^-?\d+(\.\d+)?$/)?f(t):null;case"number":return f(t);default:return null}}function f(e){var t=parseFloat(e);return(0,x.isValidFloat)(t)?t:null}function d(e,t){switch(e){case"string":case"number":return(0,x.deserializeAsInteger)(t);default:return null}}function h(e,t){return"link"===e&&j.default.isObject(t)?v(t):null}function p(e,t){return j.default.isArray(t)?j.default.compact(t.map(v)):[]}function v(e){var t=j.default.pick(e,"title","query","fragment","target","url");t.hash=t.fragment,delete t.fragment,t.objId=e.obj_id;var n=T.default.build(t);return n.isBroken()?null:n}function m(e){var t=E.default.get(e);return t||null}function g(e,t){return"reference"===e&&t?m(t):null}function y(e,t){if("referencelist"!==e)return[];if(!t)return[];var n=t.map(m);return j.default.compact(n)}function b(e,t){return j.default.contains(["html","string"],e)&&j.default.isString(t)?t:""}function w(e,t){return"stringlist"===e&&Array.isArray(t)?t:[]}function _(e,t,n){return"widgetlist"!==e?[]:j.default.map(t,function(e){return n.widget(e)})}Object.defineProperty(t,"__esModule",{value:!0});var C=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();t.deserialize=i;var k=n(3),E=r(k),x=n(43),S=n(35),T=r(S),A=n(0),j=r(A),O=n(24),P=r(O)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e){(0,g.each)(e,function(e){return m.preload(e)})}function s(e,t){var n=(0,g.extend)({},e,{index:t}),r=d.computeCacheKey(n);return d.stateContainer().subState(r)}function u(e){return function(){return e+"|"+scrivito.ObjReplication.getWorkspaceVersion()}}function c(e){var t=(0,g.omit)({query:e.query,offset:e.offset,sort_by:e.sortBy,sort_order:e.sortDirection},g.isUndefined);return e.includeDeleted&&(t.options={include_deleted:!0}),t}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),f=n(101),d=i(f),h=n(190),p=i(h),v=n(53),m=i(v),g=n(0),y=n(8),b=r(y),w=n(16),_=r(w),C={results:[]},k=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;o(this,e),this._params=t,this._batchSize=n,r?(this._index=r.index+1,this._continuation=r.continuationForNextBatch(),this._previousBatch=r):this._index=0}return l(e,null,[{key:"store",value:function(e,t){var n=s(c(e),0),r=u(void 0);new _.default({state:n,invalidation:r}).set({results:t})}},{key:"firstBatchFor",value:function(t,n){return new e(c(t),n)}},{key:"countFor",value:function(e){return this.firstBatchFor(e,0).count()}}]),l(e,[{key:"objIds",value:function(){return this._response().results}},{key:"count",value:function(){return this._response().total||0}},{key:"nextBatch",value:function(){if(this.continuationForNextBatch())return new e(this._params,this._batchSize,this)}},{key:"continuationForNextBatch",value:function(){return this._response().continuation}},{key:"_response",value:function(){return this._data().get()||C}},{key:"_data",value:function(){return new _.default({state:s(this._params,this._index),loader:this._load.bind(this),invalidation:u(this._continuation)})}},{key:"_load",value:function(e){var t=this,n=e.push,r=e.isReload,i=e.wasCancelled;return this._fetchContinuation().then(function(e){if(!i()){var o={size:t._batchSize,continuation:e,include_objs:!r()},s=(0,g.extend)({},t._params,o);return p.retrieve(s).then(function(e){return e.objs&&n(function(){return e.objs.forEach(function(e){return m.store(e)})}),a(e.results),e})}})}},{key:"_fetchContinuation",value:function(){var e=this;return this._previousBatch?(0,b.default)(function(){return e._previousBatch.continuationForNextBatch()}):scrivito.Promise.resolve()}},{key:"index",get:function(){return this._index}}]),e}();t.default=k},function(e,t,n){"use strict";function r(e){var t=scrivito.currentWorkspaceId(),n=o.default.extend({consistent:!0},e);return scrivito.CmsRestApi.get("workspaces/"+t+"/objs/search",n).then(function(e){return e.results=o.default.pluck(e.results,"id"),o.default.pick(e,"results","continuation","total","objs")})}Object.defineProperty(t,"__esModule",{value:!0}),t.retrieve=r;var i=n(0),o=function(e){return e&&e.__esModule?e:{default:e}}(i)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e){return!!e.current._deleted}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(53),s=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(a),u=n(102),c=function(e){return e&&e.__esModule?e:{default:e}}(u),l=function(){function e(t,n){r(this,e),this._params=t,this._batchSize=n}return o(e,[{key:"count",value:function(){return c.default.count(this._params)}},{key:"iterator",value:function(){return new f(this._params,this._batchSize)}}]),e}();t.default=l;var f=function(){function e(t,n){r(this,e),this._iterator=new c.default(t,n).iterator()}return o(e,[{key:"next",value:function(){if(!this._iterator)return{done:!0};var e=this._iterator.next().value;if(!e)return{done:!0};var t=s.get(e);return void 0===t?(this._iterator=void 0,{done:!0}):i(t)?this.next():{value:t,done:!1}}}]),e}()},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return scrivito.ObjReplication.getWorkspaceVersion()}function a(e){var t=scrivito.computeCacheKey(e);return m.cmsState.subState("facetQuery").subState(t)}function s(e){var t=v.default.without.apply(v.default,[v.default.keys(e)].concat(w));if(t.length)throw new g.ArgumentError("Invalid options: "+(0,b.default)(t)+". Valid options: "+w)}function u(e,t,n){var r={facets:[{attribute:e,limit:t.limit||10,include_objs:t.includeObjs||0}],size:0};return n&&n.length&&(r.query=n),r}Object.defineProperty(t,"__esModule",{value:!0});var c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(193),f=r(l),d=n(16),h=r(d),p=n(0),v=r(p),m=n(5),g=n(1),y=n(37),b=r(y),w=["limit","includeObjs"],_=function(){function e(t,n,r){var c=this;i(this,e),s(n),this._requestParams=u(t,n,r),this._loadableData=new h.default({state:a(this._requestParams),loader:function(){return c._loadData()},invalidation:o})}return c(e,[{key:"result",value:function(){var e=this._loadableData.get();if(!e)return[];var t=v.default.first(e.facets);return v.default.map(t,function(e){var t=e.value,n=e.total,r=e.results.map(function(e){return e.id});return new f.default(t,n,r)})}},{key:"_loadData",value:function(){var e=scrivito.currentWorkspaceId();return scrivito.CmsRestApi.get("workspaces/"+e+"/objs/search",this._requestParams)}}],[{key:"store",value:function(e,t,n,r){s(t);var i=u(e,t,n);new h.default({state:a(i),invalidation:o,throwNotLoaded:!0}).set(r)}}]),e}();t.default=_},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(3),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=function(){function e(t,n,i){r(this,e),this._name=t,this._count=n,this._includedObjs=i}return i(e,[{key:"name",value:function(){return this._name}},{key:"count",value:function(){return this._count}},{key:"includedObjs",value:function(){return this._includedObjs.map(function(e){return a.default.get(e)})}}]),e}();t.default=s},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e){return function(){function t(){r(this,t)}return o(t,[{key:"id",value:function(){return this._scrivitoPrivateContent.id()}},{key:"objClass",value:function(){return this._scrivitoPrivateContent.objClass()}},{key:"finishSaving",value:function(){return this._scrivitoPrivateContent.finishSaving()}},{key:"get",value:function(t){return e.read(this,t)}},{key:"update",value:function(t){e.update(this,t)}}]),t}()}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.default=i},function(e,t,n){"use strict";function r(e,t,n,r){var i={};return Object.keys(n.definition.attributes).forEach(function(n){if(!e.hasOwnProperty(n)){var o=t.initialContentFor(r,n);void 0!==o&&(i[n]=o)}}),i}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(22),a=function(){function e(t,n){r(this,e),this._registry=t,this._basicObjFacetValue=n}return i(e,[{key:"name",value:function(){return this._basicObjFacetValue.name()}},{key:"count",value:function(){return this._basicObjFacetValue.count()}},{key:"includedObjs",value:function(){var e=this._basicObjFacetValue.includedObjs();return(0,o.wrapInAppClass)(this._registry,e)}}]),e}();t.default=a},function(e,t,n){"use strict";function r(e,t){var n=d.getEditingConfigFor(e,"initialContent");if(n){var r=n[t];if(c.isFunction(r))return r();if(i(r)){var o=v.getWindowRegistry();return r.map(function(e){var t=e._scrivitoPrivateContent,n=t.copy();return p.wrapInAppClass(o,n)})}return r}}function i(e){return c.isArray(e)&&c.every(e,o)}function o(e){return e._scrivitoPrivateContent&&e._scrivitoPrivateContent instanceof f.default}function a(e){u(l.default.get(e))}function s(e,t){u(l.default.get(e).widget(t))}function u(e){var t=e.objClass(),n=h.getWindowContext().getClass(t)._scrivitoPrivateSchema,i={};c.each(n.definition.attributes,function(n,o){var a=e.get(o,n);if(c.isEmpty(a)){var s=r(t,o);s&&(i[o]=s)}});var o=p.unwrapAppAttributes(i,n,t);e.update(o)}Object.defineProperty(t,"__esModule",{value:!0});var c=n(0),l=n(3),f=n(30),d=n(72),h=n(55),p=n(22),v=n(56);t.initialContentFor=r,t.initializeContentForObj=a,t.initializeContentForWidget=s},function(e,t,n){"use strict";function r(e,t){var n=(0,o.getEditingConfigFor)(e,t);if((0,i.isFunction)(n))try{for(var r=arguments.length,s=Array(r>2?r-2:0),u=2;u<r;u++)s[u-2]=arguments[u];return n.apply(null,s)}catch(e){(0,a.throwNextTick)(e)}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(0),o=n(72),a=n(36)},function(e,t,n){"use strict";function r(e){p(e);var t=e.endpoint,n=e.homepage,r=e.routingBasePath,i=e.tenant;scrivito.CmsRestApi.init(t||"api.scrivito.com",i),(0,f.init)(n||function(){return u.default.root()}),(0,l.init)({routingBasePath:r}),d=!0}function i(){return d}function o(){d=!1}Object.defineProperty(t,"__esModule",{value:!0}),t.resetIsConfigured=t.isConfigured=t.configure=void 0;var a=n(21),s=n(3),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=n(34),l=n(57),f=n(200),d=!1,h=a.tcomb.struct({tenant:a.tcomb.String,endpoint:a.tcomb.maybe(a.tcomb.String),homepage:a.tcomb.maybe(a.tcomb.Function),routingBasePath:a.tcomb.maybe(a.tcomb.String)}),p=(0,c.checkArgumentsFor)("configure",[["options",h]],{docPermalink:"js-sdk/configure"});t.configure=r,t.isConfigured=i,t.resetIsConfigured=o},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){_=e}function o(e){if(l(e),c(e))return"/";if(e.permalink())return"/"+e.permalink();var t=d(e);return t?"/"+t+"-"+e.id():"/"+e.id()}function a(e){f(e);var t=e.replace(new RegExp("^/+|/+$","g"),"");if(""===t)return(0,w.unwrapAppClassValue)(_());var n=g.default.getByPermalink(t);return n||g.default.get(h(t))}function s(){return _}function u(){_=void 0}function c(e){if(!_)return!1;var t=scrivito.loadableWithDefault(null,_);return!!t&&t.id()===e.id()}function l(e){if(!(e instanceof g.default))throw new y.ArgumentError("Parameter obj needs to be a BasicObj.")}function f(e){if(!v.default.isString(e))throw new y.ArgumentError("Parameter path needs to be a String.")}function d(e){var t=(0,b.getWindowRegistry)();return(0,w.wrapInAppClass)(t,e).slug()}function h(e){var t=v.default.last(e.split("-"));return v.default.last(t.split("/"))}Object.defineProperty(t,"__esModule",{value:!0}),t.init=i,t.generate=o,t.recognize=a,t.getHomepageCallback=s,t.resetHomepageCallback=u;var p=n(0),v=r(p),m=n(3),g=r(m),y=n(1),b=n(56),w=n(22),_=void 0},function(e,t,n){"use strict";function r(e){if(!e)return!1;var t=e.objClass();if(!t)return!1;var n=(0,a.getWindowContext)().getClass(t);return!!n&&o.default.forClass(n).isBinary()}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(38),o=function(e){return e&&e.__esModule?e:{default:e}}(i),a=n(55)},function(e,t,n){"use strict";function r(e,t){a[e]=t}function i(e){return a[e]}function o(){a={}}Object.defineProperty(t,"__esModule",{value:!0}),t.store=r,t.lookup=i,t.clear=o;var a={}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n=u.default.getIncludingDeleted(e),r=n.widget(t);return o(r)||a(r.objClass())}function o(e){var t=(0,p.wrapInAppClass)((0,d.getWindowRegistry)(),e),n=e.objClass();return(0,l.default)(n,"titleForContent",t)}function a(e){return(0,f.getEditingConfigFor)(e,"title")||(0,h.sentenceCase)(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=i;var s=n(3),u=r(s),c=n(198),l=r(c),f=n(72),d=n(56),h=n(19),p=n(22)},function(e,t,n){"use strict";function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function i(){return++f}function o(e){var t=i();d[t]=e;var n=s(),o=n.get()||[];n.set([].concat(r(o),[t]))}function a(e){var t=s().get();if(t){var n=(0,c.find)(t,function(t){return d[t]&&d[t].canEdit(e)});if(n){return{id:n,editorClass:d[n]}}}}function s(){return l.appState.subState("editors")}function u(){f=0,d={},s().clear()}Object.defineProperty(t,"__esModule",{value:!0}),t.registerEditor=t.editorRegistrationFor=t.clearEditorRegistry=void 0;var c=n(0),l=n(5),f=0,d={};t.clearEditorRegistry=u,t.editorRegistrationFor=a,t.registerEditor=o},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(49),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=function(){function e(t,n){r(this,e),this.domNode=t,this.controller=n}return i(e,[{key:"content",value:function(){return this.controller.content}},{key:"idFromPath",value:function(e){if(e.match(/^objid:/))return e.replace(/^objid:/,"")}},{key:"edQuery",value:function(){return a.default.apply(void 0,arguments)}},{key:"jQueryElement",value:function(){return this.edQuery(this.domNode)}},{key:"pathForId",value:function(e){return"objid:"+e}},{key:"save",value:function(e){this.controller.content=e;var t={done:function(e){return e(),t}};return t}},{key:"trigger",value:function(){}}]),e}();t.default=s},function(e,t,n){"use strict";function r(e){var t=(0,o.default)(e);t.not("[data-scrivito-editors-placeholder]")&&t.attr("data-scrivito-editors-placeholder","Click to edit")}Object.defineProperty(t,"__esModule",{value:!0});var i=n(49),o=function(e){return e&&e.__esModule?e:{default:e}}(i);t.default=r},function(e,t,n){"use strict";function r(e){return e.isRaw()||e.isExplicitlyTransformed()?e:e.optimizeFor({width:i.screen().width*i.devicePixelRatio()})}Object.defineProperty(t,"__esModule",{value:!0});var i=n(52);t.default=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(12),c=r(u),l=n(0),f=n(22),d=n(35),h=r(d),p=n(3),v=r(p),m=n(24),g=r(m),y=n(80),b=r(y),w=n(13),_=r(w),C=n(209),k=r(C),E=n(115),x=n(294),S=n(54),T=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"render",value:function(){return c.default.createElement("a",this._linkProps(),this.props.children)}},{key:"_linkProps",value:function(){var e=(0,l.omit)(this.props,"to");return e.href=this._href(),e.onClick=this._onClick,e.target=this._target(),e}},{key:"_href",value:function(){return this._to()?this._to():"#"}},{key:"_onClick",value:function(e){e.preventDefault(),this._to()&&((0,l.isString)(this.props.to)?scrivito.openInNewWindow(this.props.to):this._openLink(e))}},{key:"_openLink",value:function(e){var t=this._target();"_blank"===t||(0,k.default)(e)?this._openLinkInNewWindow():t?scrivito.openLocation(this._href(),t):(0,b.default)(this.props.to)}},{key:"_openLinkInNewWindow",value:function(){var e=this._href();scrivito.uiAdapter?scrivito.uiAdapter.openInNewWindow(e):scrivito.openInNewWindow(e)}},{key:"_target",value:function(){return this.props.target?this.props.target:this.props.to&&this.props.to._scrivitoPrivateContent instanceof h.default?this.props.to.target():void 0}},{key:"_to",value:function(){if(this.props.to){if((0,l.isString)(this.props.to))return this.props.to;var e=(0,f.unwrapAppClassValue)(this.props.to);if(e instanceof h.default||e instanceof v.default||e instanceof g.default)return(0,E.basicUrlFor)(e)}}}]),t}(c.default.Component);T.displayName="Scrivito.LinkTag",T.propTypes=(0,x.propTypes)({to:x.tcomb.maybe(x.tcomb.union([S.ObjType,S.LinkType,S.BinaryType,x.tcomb.String]))},{strict:!1}),t.default=(0,_.default)(T)},function(e,t,n){"use strict";function r(e){return e.ctrlKey||e.metaKey||e.shiftKey||e.which===i}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=2},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(75),c=r(u),l=n(38),f=r(l),d=n(0),h=n(12),p=r(h),v=n(1),m=n(22),g=n(211),y=r(g),b=n(13),w=r(b),_=n(204),C=n(36),k=n(212),E=r(k),x=n(301),S=r(x),T=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),s(t,[{key:"render",value:function(){if(!this.props.content)return null;var e=f.default.basicFieldFor(this.props.content,this.props.attribute);if(!e){var t=this.props.attribute;return(0,C.throwNextTick)(new v.ArgumentError('Component "Scrivito.ContentTag" received prop "attribute" with invalid value: Attribute "'+t+'" is not defined for content specified in prop "content".')),null}var n=void 0,r=void 0,i=(0,_.editorRegistrationFor)({type:e.type(),tag:this.props.tag});return i&&(n=i.id,r=i.editorClass),(0,c.default)()?p.default.createElement(S.default,{key:this._editorKey(n),field:e,editorClass:r,tag:this.props.tag,customProps:this._customProps(),content:this.props.content},this.props.children):p.default.createElement(E.default,{field:e,tag:this.props.tag,customProps:this._customProps()},this.props.children)}},{key:"_customProps",value:function(){return(0,d.omit)(this.props,"content","attribute","tag")}},{key:"_editorKey",value:function(e){var t=(0,m.unwrapAppClassValue)(this.props.content);return[this.props.tag,(0,y.default)(t),this.props.attribute,e].join("|")}}]),t}(p.default.Component);T.displayName="Scrivito.ContentTag",T.defaultProps={tag:"div"},t.default=(0,w.default)(T)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){if(e instanceof a.default)return e.id();if(e instanceof u.default)return e.obj().id()+"|"+e.id();var t=(0,f.default)(e).substr(0,100);throw new c.InternalError('keyForBasicContent called with "'+t+'". Expected an instance of BasicObj or BasicWidget.')}Object.defineProperty(t,"__esModule",{value:!0}),t.default=i;var o=n(3),a=r(o),s=n(30),u=r(s),c=n(1),l=n(37),f=r(l)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(75),c=r(u),l=n(114),f=r(l),d=n(0),h=n(12),p=r(h),v=n(80),m=r(v),g=n(13),y=r(g),b=n(297),w=r(b),_=n(298),C=r(_),k=n(300),E=r(k),x=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"render",value:function(){switch(this.props.field.type()){case"html":return this._renderHtml();case"float":case"integer":case"string":return this._renderAsString();case"widgetlist":return this._renderWidgetlist();default:return this._renderContent({children:this.props.children})}}},{key:"_renderHtml",value:function(){if(this.props.children)return this._renderContent({children:this.props.children});var e=(0,f.default)(this._attributeValue()),t={dangerouslySetInnerHTML:{__html:e},onClick:this._onClick};return this._renderContent({props:t})}},{key:"_onClick",value:function(e){var t=(0,w.default)(e);t&&(t.openInNewWindow?this._openInNewWindow(e,t):this._navigateTo(e,t))}},{key:"_openInNewWindow",value:function(e,t){var n=t.openInNewWindow;scrivito.uiAdapter&&(e.preventDefault(),e.stopPropagation(),scrivito.uiAdapter.openInNewWindow(n))}},{key:"_navigateTo",value:function(e,t){var n=t.obj,r=t.options;e.preventDefault(),e.stopPropagation(),(0,m.default)(n,r)}},{key:"_renderAsString",value:function(){var e=this.props.children||this._attributeValue();return this._renderContent({children:e})}},{key:"_renderWidgetlist",value:function(){var e=void 0,t=this._attributeValue();return t.length?e=t.map(function(e){return p.default.createElement(C.default,{key:e.id(),widget:e})}):(0,c.default)()&&(e=p.default.createElement(E.default,{field:this.props.field})),this._renderContent({children:e})}},{key:"_renderContent",value:function(e){var t=e.props,n=e.children,r=(0,d.extend)({},this.props.customProps,t,this._editingProps());return p.default.createElement(this.props.tag,r,n)}},{key:"_editingProps",value:function(){return this.props.onClick?{onClick:this.props.onClick}:{}}},{key:"_attributeValue",value:function(){return this.props.field.get()}}]),t}(p.default.Component);x.displayName="Scrivito.ContentTag.AttributeValue",t.default=(0,y.default)(x)},function(e,t){e.exports=PropTypes},function(e,t,n){"use strict";function r(e){e.dataTransfer.effectAllowed="move";try{e.dataTransfer.setData("text/plain",e.target.id)}catch(e){}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(12),c=r(u),l=n(13),f=r(l),d=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"render",value:function(){var e="scrivito_option_marker scrivito_"+this.props.position;return this.props.isAlwaysShown&&(e+=" scrivito_visible"),c.default.createElement("span",{className:e,onClick:this._onClick},c.default.createElement("i",{className:"scrivito_icon scrivito_icon_marker_plus"}))}},{key:"_onClick",value:function(e){e.preventDefault(),e.stopPropagation(),this.props.insertWidget(this.props.widget,this.props.position)}}]),t}(c.default.Component);d.displayName="Scrivito.OptionMarker",t.default=(0,f.default)(d)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";function r(){window.scrivito||(window.scrivito={}),window.scrivito.on||(window.scrivito.on=function(e,t){"content"===e&&document.addEventListener("DOMContentLoaded",function(){return t(window.document)})}),window.scrivito.in_editable_view||(window.scrivito.in_editable_view=function(){return!1})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e){e&&(e.setAppAdapter("1.0.0-57-gb24824e2",scrivito.AppAdapter),scrivito.uiAdapter=e.uiAdapter()),scrivito.client.init({ui:e}),document.addEventListener("DOMContentLoaded",function(){return scrivito.BrowserLocation.init()})}Object.defineProperty(t,"__esModule",{value:!0}),t.initializeSdk=r,n(139),n(255),n(256),n(275);var i=n(278),o=function(e){return e&&e.__esModule?e:{default:e}}(i),a=n(204);window.scrivito||(window.scrivito={}),window.scrivito.registerEditor=a.registerEditor,window.scrivito.openContentBrowser=o.default},function(e,t,n){"use strict";n(109)},function(e,t,n){"use strict";n(257),n(258),n(273),n(274)},function(e,t,n){"use strict";window.scrivito||(window.scrivito={}),window.scrivito.AppSupport={}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=function(){function e(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&s.return&&s.return()}finally{if(i)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),o=n(38),a=r(o),s=n(0),u=n(80),c=r(u),l=n(72),f=n(198),d=r(f),h=n(55),p=n(56),v=n(268),m=n(271),g=r(m),y=n(52),b=n(114),w=r(b),_=n(116),C=n(117),k=r(C),E=n(197),x=n(22),S=n(3),T=r(S),A=n(203),j=r(A);!function(){function e(e,i,o){var u=a.default.forClass(o),c={name:i,type:e,attributes:t(u,(0,s.keys)(u.attributes)),validContainerClasses:u.validContainerClasses};return n(c,i),r(c,i),c}function t(e,t){return t.map(function(t){var n=e.attributeDefinition(t),r=i(n,2),o=r[0],a=r[1],s={name:t,type:o};return a&&(a.only&&(s.only=a.only),a.values&&(s.values=a.values)),s})}function n(e,t){f.forEach(function(n){var r=(0,l.getEditingConfigFor)(t,n);r&&(e[n]=r)})}function r(e,t){var n=(0,l.getEditingConfigFor)(t,"attributes");n&&Object.keys(n).forEach(function(t){var r=(0,s.findWhere)(e.attributes,{name:t});if(r){var i=n[t],o=i.title,a=i.description,u=i.values,c={title:o,description:a};u&&(c.valuesLocalization=u),(0,s.extend)(r,c)}})}function o(e,t){var n=T.default.getIncludingDeleted(t),r=(0,x.wrapInAppClass)((0,p.getWindowRegistry)(),n);return(0,d.default)(n.objClass(),e,r)}function u(e){var t={obj_id:e.obj.id()};return e.url.fragment()&&(t.fragment=e.url.fragment()),e.url.search()&&(t.query=e.url.search()),t}var f=["title","description","thumbnail"],m={contentBrowserConfiguration:function(){return(0,k.default)((0,_.getContentBrowserConfiguration)())},titleForClass:function(e){return(0,l.getEditingConfigFor)(e,"title")},propertiesGroupsForClass:function(e){return(0,l.getEditingConfigFor)(e,"propertiesGroups")},generalPropertiesForClass:function(e){return(0,l.getEditingConfigFor)(e,"properties")},hideInSelectionDialogsForClass:function(e){return(0,l.getEditingConfigFor)(e,"hideInSelectionDialogs")},titleForObj:function(e){return o("titleForContent",e)},descriptionForObj:function(e){return o("descriptionForContent",e)},titleForWidget:j.default,thumbnailForObj:function(e){return o("thumbnailForContent",e)},initializeContentForObj:E.initializeContentForObj,initializeContentForWidget:E.initializeContentForWidget,getClasses:function(){var t=(0,h.getWindowContext)(),n=[];return(0,s.each)(t.allObjClasses(),function(t,r){return n.push(e("Obj",r,t))}),(0,s.each)(t.allWidgetClasses(),function(t,r){return n.push(e("Widget",r,t))}),n},navigateTo:function(e){(0,c.default)(function(){return(0,x.wrapInAppClass)((0,p.getWindowRegistry)(),T.default.get(e))})},mountComponent:v.mountComponent,resolveUrl:function(e){return(0,g.default)(e).then(function(e){return e&&e.obj?u(e):null})},getDocumentHeight:function(){return(0,y.getDocument)().querySelector("html").getBoundingClientRect().height},replaceInternalLinks:function(e){return(0,w.default)(e)}};scrivito.AppAdapter=m}()},function(e,t,n){"use strict";function r(){window.scrollTo(0,0)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(261),s=r(a),u=n(262),c=r(u),l=n(263),f=r(l),d=n(264),h=r(d),p=n(265),v=r(p),m=n(113),g=r(m),y=n(266),b=n(267),w=function(){function e(){i(this,e),this._registry=new v.default,this._registry.defaultClassForObjs=(0,f.default)(this._registry),this._registry.defaultClassForWidgets=(0,s.default)(this._registry),this._registry.defaultClassForLinks=(0,h.default)(this._registry),this._registry.ObjSearch=(0,c.default)(this._registry),this.appModelAccessor=new g.default(this._registry)}return o(e,null,[{key:"init",value:function(t){var n=new e;return t.Obj=n.Obj,t.Widget=n.Widget,t.Link=n.Link,t.ObjSearch=n.ObjSearch,t.appModelAccessor=n.appModelAccessor,t.provideObjClass=function(){return n.provideObjClass.apply(n,arguments)},t.provideWidgetClass=function(){return n.provideWidgetClass.apply(n,arguments)},t.createObjClass=function(){return n.createObjClass.apply(n,arguments)},t.createWidgetClass=function(){return n.createWidgetClass.apply(n,arguments)},t.getClass=function(){return n.getClass.apply(n,arguments)},t.allObjClasses=function(){return n.allObjClasses()},t.allWidgetClasses=function(){return n.allWidgetClasses()},t._privateRealm=n,n}}]),o(e,[{key:"provideObjClass",value:function(e,t){return(0,b.checkProvideObjClass)(e,t),(0,y.provideObjClass)(this._registry,e,t)}},{key:"provideWidgetClass",value:function(e,t){return(0,b.checkProvideWidgetClass)(e,t),(0,y.provideWidgetClass)(this._registry,e,t)}},{key:"createObjClass",value:function(e){return(0,b.checkCreateObjClass)(e),(0,y.createObjClass)(this._registry,e)}},{key:"createWidgetClass",value:function(e){return(0,b.checkCreateWidgetClass)(e),(0,y.createWidgetClass)(this._registry,e)}},{key:"getClass",value:function(e){return this._registry.getClass(e)}},{key:"allObjClasses",value:function(){return this._registry.allObjClasses()}},{key:"allWidgetClasses",value:function(){return this._registry.allWidgetClasses()}},{key:"setInitialContentFor",value:function(e){this._registry.setInitialContentFor(e)}},{key:"Obj",get:function(){return this._registry.defaultClassForObjs}},{key:"Widget",get:function(){return this._registry.defaultClassForWidgets}},{key:"Link",get:function(){return this._registry.defaultClassForLinks}},{key:"ObjSearch",get:function(){return this._registry.ObjSearch}}]),e}();t.default=w},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e){var t=new g.default(e);return function(t){function n(e){i(this,n);var t=o(this,(n.__proto__||Object.getPrototypeOf(n)).call(this)),r=t._prepareAttributesForConstructor(e),a=new p.default(r);return t._scrivitoPrivateContent=a,t}return a(n,t),c(n,[{key:"obj",value:function(){var t=this._scrivitoPrivateContent.obj();return(0,C.wrapInAppClass)(e,t)}},{key:"copy",value:function(){var t=e.widgetClassFor(this.objClass()),n=this._scrivitoPrivateContent.copy();return(0,C.buildAppClassInstance)(n,t)}},{key:"_prepareAttributesForConstructor",value:function(t){var n=e.objClassNameFor(this.constructor),r=d.default.forInstance(this);u(n,t);var i=(0,_.default)(t,e,r,n),o={_objClass:n},a=(0,l.extend)({},t,i,o);return(0,C.unwrapAppAttributes)(a,r,n)}}]),n}((0,b.default)(t))}function u(e,t){if(!e)throw new v.ArgumentError("Creating widgets is not supported for the class Widget or abstract classes.");if(t.constructor!==Object)throw new v.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");if(t._objClass)throw new v.ArgumentError('Invalid attribute "_objClass". "new '+t._objClass+'" will automatically set the CMS object class correctly.')}Object.defineProperty(t,"__esModule",{value:!0});var c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.default=s;var l=n(0),f=n(38),d=r(f),h=n(30),p=r(h),v=n(1),m=n(113),g=r(m),y=n(194),b=r(y),w=n(195),_=r(w),C=n(22)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e){var t=function(){function t(e){i(this,t),this._scrivitoPrivateContent=new c.default(e)}return a(t,[{key:"and",value:function(e,n,r){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(e instanceof t)this._scrivitoPrivateContent.and(e._scrivitoPrivateContent);else{var o=(0,d.unwrapAppClassValues)(r);this._scrivitoPrivateContent.and(e,n,o,i)}return this}},{key:"andNot",value:function(e,t,n){var r=(0,d.unwrapAppClassValues)(n);return this._scrivitoPrivateContent.andNot(e,t,r),this}},{key:"facet",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=this._scrivitoPrivateContent.facet(t,n);return p.default.map(r,function(t){return new f.default(e,t)})}},{key:"take",value:function(t){return this._scrivitoPrivateContent.batchSize(t),(0,s.arrayFromIterable)(this._scrivitoPrivateContent,t).map(function(t){return(0,d.wrapInAppClass)(e,t)})}},{key:"offset",value:function(e){return this._scrivitoPrivateContent.offset(e),this}},{key:"order",value:function(e,t){return this._scrivitoPrivateContent.order(e,t),this}},{key:"count",value:function(){return this._scrivitoPrivateContent.count()}}]),t}();if("function"==typeof window.Symbol){var n=window.Symbol.iterator;if(n){t.prototype[n]=function(){var t=this._scrivitoPrivateContent.iterator();return{next:function(){var n=t.next(),r=n.done,i=n.value;return r?{done:r}:{done:r,value:(0,d.wrapInAppClass)(e,i)}}}}}}return t}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.default=o;var s=n(104),u=n(48),c=r(u),l=n(196),f=r(l),d=n(22),h=n(0),p=r(h)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e){function t(t,n){var r=new e.ObjSearch;return t&&r.and("_objClass","equals",t),n&&r._scrivitoPrivateContent.batchSize(n),r}function n(t){return(0,y.wrapInAppClass)(e,t)}var r=new g.default(e);return function(s){function f(){return i(this,f),o(this,(f.__proto__||Object.getPrototypeOf(f)).apply(this,arguments))}return a(f,s),c(f,[{key:"lastChanged",value:function(){return this._scrivitoPrivateContent.lastChanged()}},{key:"path",value:function(){return this._scrivitoPrivateContent.path()}},{key:"parent",value:function(){return n(this._scrivitoPrivateContent.parent())}},{key:"ancestors",value:function(){return n(this._scrivitoPrivateContent.ancestors())}},{key:"backlinks",value:function(){return n(this._scrivitoPrivateContent.backlinks())}},{key:"children",value:function(){return n(this._scrivitoPrivateContent.children())}},{key:"orderedChildren",value:function(){return n(this._scrivitoPrivateContent.orderedChildren())}},{key:"permalink",value:function(){return this._scrivitoPrivateContent.permalink()}},{key:"slug",value:function(){return this._scrivitoPrivateContent.slug()}},{key:"isBinary",value:function(){var e=p.default.forInstance(this);return!!e&&e.isBinary()}},{key:"contentLength",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentLength():0}},{key:"contentType",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentType():""}},{key:"contentUrl",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentUrl():""}},{key:"metadata",value:function(){return this.isBinary()?this._scrivitoPrivateContent.metadata():new w.default}},{key:"destroy",value:function(){this._scrivitoPrivateContent.destroy()}},{key:"widget",value:function(e){return n(this._scrivitoPrivateContent.widget(e))}},{key:"widgets",value:function(){return n(this._scrivitoPrivateContent.widgets())}}],[{key:"get",value:function(e){return r.getObj(this,e)}},{key:"getIncludingDeleted",value:function(e){return r.getObjIncludingDeleted(this,e)}},{key:"getByPath",value:function(e){return n(d.default.getByPath(e))}},{key:"getByPermalink",value:function(e){return n(d.default.getByPermalink(e))}},{key:"all",value:function(){return t(e.objClassNameFor(this),1e3)}},{key:"root",value:function(){return n(d.default.root())}},{key:"where",value:function(n,r,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return t(e.objClassNameFor(this)).and(n,r,i,o)}},{key:"create",value:function(e){var t=this._prepareAttributesForCreate(e);return n(d.default.create(t))}},{key:"_prepareAttributesForCreate",value:function(t){var n=e.objClassNameFor(this),r=p.default.forClass(this);u(t,n);var i=(0,E.default)(t,e,r,n),o={_objClass:n},a=(0,l.extend)({},t,i,o);return(0,y.unwrapAppAttributes)(a,r,n)}}]),f}((0,C.default)(r))}function u(e,t){if(!t)throw new v.ArgumentError("Creating CMS objects is not supported for the class Obj or abstract classes.");if(e.constructor!==Object)throw new v.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");if(e._objClass)throw new v.ArgumentError('Invalid attribute "_objClass". "'+e._objClass+'.create" will automatically set the CMS object class correctly.')}Object.defineProperty(t,"__esModule",{value:!0});var c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.default=s;var l=n(0),f=n(3),d=r(f),h=n(38),p=r(h),v=n(1),m=n(113),g=r(m),y=n(22),b=n(110),w=r(b),_=n(194),C=r(_),k=n(195),E=r(k)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e){return function(t){function n(e){return r(this,n),i(this,(n.__proto__||Object.getPrototypeOf(n)).call(this,e))}return o(n,t),s(n,[{key:"obj",value:function(){return(0,f.wrapInAppClass)(e,u(n.prototype.__proto__||Object.getPrototypeOf(n.prototype),"obj",this).call(this))}},{key:"fetchObj",value:function(t){return u(n.prototype.__proto__||Object.getPrototypeOf(n.prototype),"fetchObj",this).call(this,t).then(function(t){return(0,f.wrapInAppClass)(e,t)})}},{key:"_scrivitoPrivateContent",get:function(){return l.default.build(this.buildAttributes())}}]),n}(l.default)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)};t.default=a;var c=n(35),l=function(e){return e&&e.__esModule?e:{default:e}}(c),f=n(22)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(){this.mapping={}}return e.prototype.register=function(e,t){this.mapping[e]=t},e.prototype.getClass=function(e){return this.mapping[e]},e.prototype.allObjClasses=function(){return this.allForBaseClass(this.defaultClassForObjs)},e.prototype.allWidgetClasses=function(){return this.allForBaseClass(this.defaultClassForWidgets)},e.prototype.objClassFor=function(e){return this.appClassFor(e,this.defaultClassForObjs)},e.prototype.widgetClassFor=function(e){return this.appClassFor(e,this.defaultClassForWidgets)},e.prototype.objClassNameFor=function(e){return r.findKey(this.mapping,function(t){return t===e})},e.prototype.setInitialContentFor=function(e){this.initialContentForFuntion=e},e.prototype.initialContentFor=function(e,t){if(this.initialContentForFuntion)return this.initialContentForFuntion(e,t)},e.prototype.appClassFor=function(e,t){var n=this.getClass(e);return n&&t.isPrototypeOf(n)?n:t},e.prototype.allForBaseClass=function(e){return r.pick(this.mapping,function(t){return e.isPrototypeOf(t)})},e}();t.default=i},function(e,t,n){"use strict";function r(e,t){if(t.extend&&!f(t.extend,e.defaultClassForObjs))throw new p.ArgumentError('Invalid value for "extend": not a Scrivito Obj class');var n=t.extend||e.defaultClassForObjs,r=new v.default(t,n);return function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return d(t,e),Object.defineProperty(t,"_scrivitoPrivateSchema",{get:function(){return r},enumerable:!0,configurable:!0}),t}(n)}function i(e,t){if(t.extend&&!f(t.extend,e.defaultClassForWidgets))throw new p.ArgumentError('Invalid value for "extend": not a Scrivito Widget class');var n=t.extend||e.defaultClassForWidgets,r=new v.default(c(t),n);return function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return d(t,e),Object.defineProperty(t,"_scrivitoPrivateSchema",{get:function(){return r},enumerable:!0,configurable:!0}),t}(n)}function o(e,t,n){var r=a(e,t,n);return e.register(t,r),r}function a(e,t,n){return l(n)?n:r(e,h.extend(n,{name:t}))}function s(e,t,n){var r=u(e,t,n);return e.register(t,r),r}function u(e,t,n){return l(n)?n:i(e,h.extend(n,{name:t}))}function c(e){var t=h.extend({},e),n=e.onlyInside;return n&&(delete t.onlyInside,t.validContainerClasses=[n]),t}function l(e){return!(!e||!e._scrivitoPrivateSchema)}function f(e,t){return!!e&&(e===t||e.prototype instanceof t)}var d=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var h=n(0),p=n(1),v=n(38);t.createObjClass=r,t.createWidgetClass=i,t.provideObjClass=o,t.provideWidgetClass=s},function(e,t,n){"use strict";function r(e){return e&&e._scrivitoPrivateSchema}Object.defineProperty(t,"__esModule",{value:!0}),t.checkProvideWidgetClass=t.checkProvideObjClass=t.checkCreateWidgetClass=t.checkCreateObjClass=void 0;var i=n(21),o=n(34),a=n(19),s=i.tcomb.refinement(i.tcomb.Function,r,"ObjClass"),u=i.tcomb.interface({attributes:i.tcomb.maybe(i.tcomb.dict(i.tcomb.refinement(i.tcomb.String,a.isCamelCase,"String (camelCase)"),i.tcomb.union([i.tcomb.enums.of(["binary","date","float","html","integer","link","linklist","reference","referencelist","string","stringlist","widgetlist"]),i.tcomb.union([i.tcomb.tuple([i.tcomb.enums.of(["enum","multienum"]),i.tcomb.interface({values:i.tcomb.list(i.tcomb.String)})]),i.tcomb.tuple([i.tcomb.enums.of(["widgetlist"]),i.tcomb.interface({only:i.tcomb.union([i.tcomb.String,i.tcomb.list(i.tcomb.String)])})])])]),"Attributes Specification")),extend:i.tcomb.maybe(s)}),c=u.meta.props.attributes,l=i.tcomb.refinement(i.tcomb.Function,r,"WidgetClass"),f=i.tcomb.interface({attributes:c,extend:i.tcomb.maybe(l),onlyInside:i.tcomb.maybe(i.tcomb.String)}),d=(t.checkCreateObjClass=(0,o.checkArgumentsFor)("createObjClass",[["options",u]],{docPermalink:"js-sdk/createObjClass"}),t.checkCreateWidgetClass=(0,o.checkArgumentsFor)("createWidgetClass",[["options",f]],{docPermalink:"js-sdk/createWidgetClass"}),i.tcomb.union([u,s])),h=(t.checkProvideObjClass=(0,o.checkArgumentsFor)("provideObjClass",[["name",i.tcomb.String],["objClassOrDefinition",d]],{docPermalink:"js-sdk/provideObjClass"}),i.tcomb.union([f,l]));t.checkProvideWidgetClass=(0,o.checkArgumentsFor)("provideWidgetClass",[["name",i.tcomb.String],["widgetClassOrDefinition",h]],{docPermalink:"js-sdk/provideWidgetClass"})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!b){var n=(0,v.getComponentForId)(e);if(!n)throw new p.ArgumentError('Component with ID "'+e+'" not found. Please make sure you registered it using "Scrivito.registerComponent".');var r=void 0,i=void 0,o=f.default.get(t.objId);if(t.widgetId){var s=o.widget(t.widgetId);i=(0,y.wrapInAppClass)((0,g.getWindowRegistry)(),s)}else r=(0,y.wrapInAppClass)((0,g.getWindowRegistry)(),o);b=!0;var u=a((0,m.getDocument)(),n,{obj:r,widget:i});(0,h.default)(u,function(){return scrivito.uiAdapter.notifyDocumentResize()}),scrivito.uiAdapter.notifyDocumentResize()}}function o(){b=!1}function a(e,t,n){var r=e.createElement("div");return e.body.innerHTML="",e.body.appendChild(r),(0,c.render)(u.default.createElement(t,n),r),r}Object.defineProperty(t,"__esModule",{value:!0}),t.reset=t.mountComponent=void 0;var s=n(12),u=r(s),c=n(73),l=n(3),f=r(l),d=n(269),h=r(d),p=n(1),v=n(74),m=n(52),g=n(56),y=n(22),b=!1;t.mountComponent=i,t.reset=o},function(e,t,n){"use strict";function r(e,t){if(!e._scrivitoResizeListeners){e._scrivitoResizeListeners=[],e.style.position="relative";var n=i();n.resizeElement=e,e._scrivitoResizeTrigger=n,(0,u.default)()&&e.appendChild(n),n.data="about:blank",(0,u.default)()||e.appendChild(n)}e._scrivitoResizeListeners.push(t)}function i(){var e=document.createElement("object");return e.type="text/html",e.onload=o,e.style.display="block",e.style.position="absolute",e.style.top=0,e.style.left=0,e.style.height="100%",e.style.width="100%",e.style.overflow="hidden",e.style.pointerEvents="none",e.style.zIndex=-1,e}function o(){this.contentDocument.defaultView._scrivitoResizeTrigger=this.resizeElement,this.contentDocument.defaultView.addEventListener("resize",a)}function a(e){var t=e.target||e.srcElement,n=t._scrivitoResizeTrigger;n._scrivitoResizeListeners.forEach(function(t){return t(n,e)})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var s=n(270),u=function(e){return e&&e.__esModule?e:{default:e}}(s)},function(e,t,n){"use strict";function r(){var e=window.navigator.userAgent;return e.indexOf("MSIE")>=0||e.indexOf("Trident")>=0}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){var t=(0,a.default)(e);return(0,l.isConfigured)()?(0,c.default)(function(){return(0,f.recognize)(e)}).then(function(e){return e.path?(0,s.include)(["/",""],e.path)?null:{obj:e.obj,url:t}:null}):scrivito.Promise.resolve(null)}Object.defineProperty(t,"__esModule",{value:!0});var o=n(33),a=r(o),s=n(0),u=n(8),c=r(u),l=n(199),f=n(57);t.default=i},function(e,t,n){"use strict";function r(e){var t=o.default.get(e);return t?(0,a.basicUrlFor)(t):(0,s.generateUrl)({path:e})}Object.defineProperty(t,"__esModule",{value:!0});var i=n(3),o=function(e){return e&&e.__esModule?e:{default:e}}(i),a=n(115),s=n(57);t.default=r},function(e,t,n){"use strict";var r=n(3),i=function(e){return e&&e.__esModule?e:{default:e}}(r),o=n(0),a=n(65),s=n(52),u=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(s),c=n(57);!function(){function e(e){var t=e.obj,n=e.queryParameters,r=e.hash,i={scrivitoObjId:t.id(),scrivitoQueryParameters:n,scrivitoHash:r},a=(0,c.generate)({obj:t,queryParameters:n,hash:r}),s=u.history();s.state&&s.state.scrivitoObjId===t.id()&&(0,o.isEqual)(s.state.scrivitoQueryParameters,n)&&s.state.scrivitoHash===r||s.pushState(i,"",a)}function t(e){var t=e.obj,n=e.queryParameters,r=e.hash,i={scrivitoObjId:t.id(),scrivitoQueryParameters:n,scrivitoHash:r},o=(0,c.generate)({obj:t,queryParameters:n,hash:r});u.history().replaceState(i,"",o)}function n(){u.setOnpopstate(l)}function r(){var e=u.location().toString();(0,a.replaceCurrentPage)(function(){var t=(0,c.recognize)(e),n=t.obj,r=t.queryParameters,i=t.hash;return n?{obj:n,queryParameters:r,hash:i}:{queryParameters:r,hash:i}})}function s(){r(),n()}function l(e){var t=void 0,n=void 0,o=void 0;e.state&&(t=e.state.scrivitoObjId,n=e.state.scrivitoHash,o=e.state.scrivitoQueryParameters),t?(0,a.replaceCurrentPage)(function(){return{obj:i.default.get(t),queryParameters:o,hash:n}}):r()}scrivito.BrowserLocation={},scrivito.BrowserLocation.init=s,scrivito.BrowserLocation.pushWith=e,scrivito.BrowserLocation.replaceWith=t}()},function(e,t,n){"use strict";!function(){function e(e){scrivito.uiAdapter?scrivito.uiAdapter.navigateToExternalUrl(e):scrivito.setWindowLocation(e)}function t(e){window.location=e}function n(e,t){window.open(e,t)}function r(e){n(e,"_blank")}scrivito.setWindowLocation=t,scrivito.changeLocation=e,scrivito.openLocation=n,scrivito.openInNewWindow=r}()},function(e,t,n){"use strict";n(276),n(277)},function(e,t,n){"use strict";window.scrivito||(window.scrivito={})},function(e,t,n){"use strict";!function(){var e=void 0,t=0,n={},r={subscribe:function(e){var r=e.onFocus,i=e.onBlur,o=t;return n[o]={onFocus:r,onBlur:i},t+=1,o},unsubscribe:function(e){delete n[e]},notifyFocus:function(t){e=t,n[e].onFocus()},notifyBlur:function(t){t===e&&n[t].onBlur()},get handlers(){return n},reset:function(){e=void 0,t=0,n={}}};scrivito.WidgetFocus=r}()},function(e,t,n){"use strict";function r(e){return scrivito.uiAdapter.openContentBrowser((0,a.default)((0,i.extend)({},(0,s.getContentBrowserConfiguration)(),(0,i.pick)(e,"selection","selectionMode"))))}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(0),o=n(117),a=function(e){return e&&e.__esModule?e:{default:e}}(o),s=n(116)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){scrivito.registerEditor(a.default),scrivito.registerEditor(u.default),scrivito.registerEditor(l.default)}Object.defineProperty(t,"__esModule",{value:!0}),t.initializeEditors=i;var o=n(280),a=r(o),s=n(284),u=r(s),c=n(285),l=r(c)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(49),s=r(a),u=n(205),c=r(u),l=n(206),f=r(l),d=n(281),h=r(d),p=function(){function e(t){var n=t.controller;i(this,e),this.controller=n}return o(e,null,[{key:"canEdit",value:function(e){return"html"===e.type}}]),o(e,[{key:"editorWillBeActivated",value:function(){this.controller.setDomMode("Replace")}},{key:"editorDomWasMounted",value:function(e){(0,f.default)(e),(0,s.default)(e).html(this.controller.content);var t=new c.default(e,this.controller);(0,h.default)(t)}}]),e}();t.default=p},function(e,t,n){var r,i,o,a,s,u;i=n(282),r=n(283),o=i.extensions.anchor.extend({name:"scrivito_anchor",proxy:null,contentDefault:'<i class="scrivito_customer_icon sci_link"></i>',init:function(){var e;return i.extensions.anchor.prototype.init.apply(this,arguments),this.targetCheckbox=null!=(e=this.getEditorOption("anchor"))?e.targetCheckbox:void 0},handleClick:function(e){var t,n,r,o,a;return e.preventDefault(),e.stopPropagation(),this.isDisplayed()||(o=i.selection.getSelectionRange(this.document),r=i.selection.getSelectedParentElement(o),n=i.util.getClosestTag(r,"a"),t=a=null,n&&(n=this.proxy.edQuery(n),t=n.attr("href")||null,a=n.attr("target")||null),this.showForm({value:t,target:a})),!1},getTemplate:function(){var e;return e="",this.targetCheckbox&&(e="<div class='medium-editor-toolbar-form-row medium-editor-toolbar-anchor-target-toggle'>\n <label>\n <input type='checkbox' class='medium-editor-toolbar-anchor-target'>\n <i class='scrivito_customer_icon sci_inv_check'></i>\n <i class='scrivito_customer_icon sci_rounded_square'></i>\n "+this.targetCheckboxText+"\n </label>\n</div>"),("<i class='medium-editor-toolbar-browse scrivito_customer_icon sci_collection'></i>\n<input type='text' class='medium-editor-toolbar-input' placeholder='"+this.placeholderText+"'>\n<i class='medium-editor-toolbar-save scrivito_customer_icon sci_check'></i>\n<i class='medium-editor-toolbar-close scrivito_customer_icon sci_cross'></i>\n"+e).replace(/\n\s*/g,"")},attachFormEvents:function(e){var t;return i.extensions.anchor.prototype.attachFormEvents.call(this,e),e=this.proxy.edQuery(e),t=e.find(".medium-editor-toolbar-input"),e.find(".medium-editor-toolbar-browse").on("click",function(e){return function(){var n,r;return r=(n=e.proxy.idFromPath(t.val()))?[n]:[],scrivito.openContentBrowser({selection:r,selectionMode:"single"}).catch(function(e){throw t.focus(),e}).then(function(n){var r,i;if(r=n.isSelected,i=n.selection,r)return t.focus(),i.length?t.val(e.proxy.pathForId(i[0])):t.val("")}),!1}}(this))},completeFormSave:function(e){return this.base.restoreSelection(),e.value?this.execAction(this.action,e):this.execAction("unlink"),this.base.checkSelection()}}),s=function(){var e,t;return e=["bold","italic","scrivito_anchor","h2","h3","unorderedlist","orderedlist"],("undefined"!=typeof ScrivitoEditors&&null!==ScrivitoEditors&&null!=(t=ScrivitoEditors._config)?t.showHtmlEditorCodeButton:void 0)&&e.splice(2,0,"scrivito_code"),e},u=function(){return{anchor:{targetCheckbox:!0},anchorPreview:!1,extensions:{scrivito_anchor:new o,scrivito_code:new r({label:'<i class="scrivito_customer_icon sci_code"></i>',start:"<code>",end:"</code>"}),imageDragging:{}},placeholder:!1,toolbar:{buttons:s(),standardizeSelectionStart:!0}}},a=function(e){var t,n,r;return t=e.jQueryElement(),n=u(),null!=(r=n.extensions.scrivito_anchor)&&(r.proxy=e),new i(t,n).subscribe("editableInput",function(){return e.save(t.html())})},e.exports=a},function(e,t,n){(function(r){var i;/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */
73
- "classList"in document.createElement("_")||function(e){"use strict";if("Element"in e){var t=e.Element.prototype,n=Object,r=String.prototype.trim||function(){return this.replace(/^\s+|\s+$/g,"")},i=Array.prototype.indexOf||function(e){for(var t=0,n=this.length;t<n;t++)if(t in this&&this[t]===e)return t;return-1},o=function(e,t){this.name=e,this.code=DOMException[e],this.message=t},a=function(e,t){if(""===t)throw new o("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(t))throw new o("INVALID_CHARACTER_ERR","String contains an invalid character");return i.call(e,t)},s=function(e){for(var t=r.call(e.getAttribute("class")||""),n=t?t.split(/\s+/):[],i=0,o=n.length;i<o;i++)this.push(n[i]);this._updateClassName=function(){e.setAttribute("class",this.toString())}},u=s.prototype=[],c=function(){return new s(this)};if(o.prototype=Error.prototype,u.item=function(e){return this[e]||null},u.contains=function(e){return e+="",-1!==a(this,e)},u.add=function(){var e,t=arguments,n=0,r=t.length,i=!1;do{e=t[n]+"",-1===a(this,e)&&(this.push(e),i=!0)}while(++n<r);i&&this._updateClassName()},u.remove=function(){var e,t,n=arguments,r=0,i=n.length,o=!1;do{for(e=n[r]+"",t=a(this,e);-1!==t;)this.splice(t,1),o=!0,t=a(this,e)}while(++r<i);o&&this._updateClassName()},u.toggle=function(e,t){e+="";var n=this.contains(e),r=n?!0!==t&&"remove":!1!==t&&"add";return r&&this[r](e),!0===t||!1===t?t:!n},u.toString=function(){return this.join(" ")},n.defineProperty){var l={get:c,enumerable:!0,configurable:!0};try{n.defineProperty(t,"classList",l)}catch(e){-2146823252===e.number&&(l.enumerable=!1,n.defineProperty(t,"classList",l))}}else n.prototype.__defineGetter__&&t.__defineGetter__("classList",c)}}(self),/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
74
- function(e){"use strict";if(e.URL=e.URL||e.webkitURL,e.Blob&&e.URL)try{return void new Blob}catch(e){}var t=e.BlobBuilder||e.WebKitBlobBuilder||e.MozBlobBuilder||function(e){var t=function(e){return Object.prototype.toString.call(e).match(/^\[object\s(.*)\]$/)[1]},n=function(){this.data=[]},r=function(e,t,n){this.data=e,this.size=e.length,this.type=t,this.encoding=n},i=n.prototype,o=r.prototype,a=e.FileReaderSync,s=function(e){this.code=this[this.name=e]},u="NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR".split(" "),c=u.length,l=e.URL||e.webkitURL||e,f=l.createObjectURL,d=l.revokeObjectURL,h=l,p=e.btoa,v=e.atob,m=e.ArrayBuffer,g=e.Uint8Array,y=/^[\w-]+:\/*\[?[\w\.:-]+\]?(?::[0-9]+)?/;for(r.fake=o.fake=!0;c--;)s.prototype[u[c]]=c+1;return l.createObjectURL||(h=e.URL=function(e){var t,n=document.createElementNS("http://www.w3.org/1999/xhtml","a");return n.href=e,"origin"in n||("data:"===n.protocol.toLowerCase()?n.origin=null:(t=e.match(y),n.origin=t&&t[1])),n}),h.createObjectURL=function(e){var t,n=e.type;return null===n&&(n="application/octet-stream"),e instanceof r?(t="data:"+n,"base64"===e.encoding?t+";base64,"+e.data:"URI"===e.encoding?t+","+decodeURIComponent(e.data):p?t+";base64,"+p(e.data):t+","+encodeURIComponent(e.data)):f?f.call(l,e):void 0},h.revokeObjectURL=function(e){"data:"!==e.substring(0,5)&&d&&d.call(l,e)},i.append=function(e){var n=this.data;if(g&&(e instanceof m||e instanceof g)){for(var i="",o=new g(e),u=0,c=o.length;u<c;u++)i+=String.fromCharCode(o[u]);n.push(i)}else if("Blob"===t(e)||"File"===t(e)){if(!a)throw new s("NOT_READABLE_ERR");var l=new a;n.push(l.readAsBinaryString(e))}else e instanceof r?"base64"===e.encoding&&v?n.push(v(e.data)):"URI"===e.encoding?n.push(decodeURIComponent(e.data)):"raw"===e.encoding&&n.push(e.data):("string"!=typeof e&&(e+=""),n.push(unescape(encodeURIComponent(e))))},i.getBlob=function(e){return arguments.length||(e=null),new r(this.data.join(""),e,"raw")},i.toString=function(){return"[object BlobBuilder]"},o.slice=function(e,t,n){var i=arguments.length;return i<3&&(n=null),new r(this.data.slice(e,i>1?t:this.data.length),n,this.encoding)},o.toString=function(){return"[object Blob]"},o.close=function(){this.size=0,delete this.data},n}(e);e.Blob=function(e,n){var r=n?n.type||"":"",i=new t;if(e)for(var o=0,a=e.length;o<a;o++)Uint8Array&&e[o]instanceof Uint8Array?i.append(e[o].buffer):i.append(e[o]);var s=i.getBlob(r);return!s.slice&&s.webkitSlice&&(s.slice=s.webkitSlice),s};var n=Object.getPrototypeOf||function(e){return e.__proto__};e.Blob.prototype=n(new e.Blob)}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content||this),function(o,a){"use strict";"object"==typeof e&&void 0!==r&&r&&r.versions&&r.versions.electron||"object"!=typeof e?void 0!==(i=function(){return a}.call(t,n,t,e))&&(e.exports=i):e.exports=a}(0,function(){"use strict";function e(e,t){return this.init(e,t)}return e.extensions={},function(t){function n(e,t){var n,r=Array.prototype.slice.call(arguments,2);t=t||{};for(var i=0;i<r.length;i++){var o=r[i];if(o)for(n in o)o.hasOwnProperty(n)&&void 0!==o[n]&&(e||!1===t.hasOwnProperty(n))&&(t[n]=o[n])}return t}var r=!1;try{var i=document.createElement("div"),o=document.createTextNode(" ");i.appendChild(o),r=i.contains(o)}catch(e){}var a={isIE:"Microsoft Internet Explorer"===navigator.appName||"Netscape"===navigator.appName&&null!==new RegExp("Trident/.*rv:([0-9]{1,}[.0-9]{0,})").exec(navigator.userAgent),isEdge:null!==/Edge\/\d+/.exec(navigator.userAgent),isFF:navigator.userAgent.toLowerCase().indexOf("firefox")>-1,isMac:t.navigator.platform.toUpperCase().indexOf("MAC")>=0,keyCode:{BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,SPACE:32,DELETE:46,K:75,M:77,V:86},isMetaCtrlKey:function(e){return!!(a.isMac&&e.metaKey||!a.isMac&&e.ctrlKey)},isKey:function(e,t){var n=a.getKeyCode(e);return!1===Array.isArray(t)?n===t:-1!==t.indexOf(n)},getKeyCode:function(e){var t=e.which;return null===t&&(t=null!==e.charCode?e.charCode:e.keyCode),t},blockContainerElementNames:["p","h1","h2","h3","h4","h5","h6","blockquote","pre","ul","li","ol","address","article","aside","audio","canvas","dd","dl","dt","fieldset","figcaption","figure","footer","form","header","hgroup","main","nav","noscript","output","section","video","table","thead","tbody","tfoot","tr","th","td"],emptyElementNames:["br","col","colgroup","hr","img","input","source","wbr"],extend:function(){var e=[!0].concat(Array.prototype.slice.call(arguments));return n.apply(this,e)},defaults:function(){var e=[!1].concat(Array.prototype.slice.call(arguments));return n.apply(this,e)},createLink:function(e,t,n,r){var i=e.createElement("a");return a.moveTextRangeIntoElement(t[0],t[t.length-1],i),i.setAttribute("href",n),r&&("_blank"===r&&i.setAttribute("rel","noopener noreferrer"),i.setAttribute("target",r)),i},findOrCreateMatchingTextNodes:function(e,t,n){for(var r=e.createTreeWalker(t,NodeFilter.SHOW_ALL,null,!1),i=[],o=0,s=!1,u=null,c=null;null!==(u=r.nextNode());)if(!(u.nodeType>3))if(3===u.nodeType){if(!s&&n.start<o+u.nodeValue.length&&(s=!0,c=a.splitStartNodeIfNeeded(u,n.start,o)),s&&a.splitEndNodeIfNeeded(u,c,n.end,o),s&&o===n.end)break;if(s&&o>n.end+1)throw new Error("PerformLinking overshot the target!");s&&i.push(c||u),o+=u.nodeValue.length,null!==c&&(o+=c.nodeValue.length,r.nextNode()),c=null}else"img"===u.tagName.toLowerCase()&&(!s&&n.start<=o&&(s=!0),s&&i.push(u));return i},splitStartNodeIfNeeded:function(e,t,n){return t!==n?e.splitText(t-n):null},splitEndNodeIfNeeded:function(e,t,n,r){var i,o;i=r+e.nodeValue.length+(t?t.nodeValue.length:0)-1,o=n-r-(t?e.nodeValue.length:0),i>=n&&r!==i&&0!==o&&(t||e).splitText(o)},splitByBlockElements:function(t){if(3!==t.nodeType&&1!==t.nodeType)return[];var n=[],r=e.util.blockContainerElementNames.join(",");if(3===t.nodeType||0===t.querySelectorAll(r).length)return[t];for(var i=0;i<t.childNodes.length;i++){var o=t.childNodes[i];if(3===o.nodeType)n.push(o);else if(1===o.nodeType){var a=o.querySelectorAll(r);0===a.length?n.push(o):n=n.concat(e.util.splitByBlockElements(o))}}return n},findAdjacentTextNodeWithContent:function(e,t,n){var r,i=!1,o=n.createNodeIterator(e,NodeFilter.SHOW_TEXT,null,!1);for(r=o.nextNode();r;){if(r===t)i=!0;else if(i&&3===r.nodeType&&r.nodeValue&&r.nodeValue.trim().length>0)break;r=o.nextNode()}return r},findPreviousSibling:function(e){if(!e||a.isMediumEditorElement(e))return!1;for(var t=e.previousSibling;!t&&!a.isMediumEditorElement(e.parentNode);)e=e.parentNode,t=e.previousSibling;return t},isDescendant:function(e,t,n){if(!e||!t)return!1;if(e===t)return!!n;if(1!==e.nodeType)return!1;if(r||3!==t.nodeType)return e.contains(t);for(var i=t.parentNode;null!==i;){if(i===e)return!0;i=i.parentNode}return!1},isElement:function(e){return!(!e||1!==e.nodeType)},throttle:function(e,t){var n,r,i,o=null,a=0,s=function(){a=Date.now(),o=null,i=e.apply(n,r),o||(n=r=null)};return t||0===t||(t=50),function(){var u=Date.now(),c=t-(u-a);return n=this,r=arguments,c<=0||c>t?(o&&(clearTimeout(o),o=null),a=u,i=e.apply(n,r),o||(n=r=null)):o||(o=setTimeout(s,c)),i}},traverseUp:function(e,t){if(!e)return!1;do{if(1===e.nodeType){if(t(e))return e;if(a.isMediumEditorElement(e))return!1}e=e.parentNode}while(e);return!1},htmlEntities:function(e){return String(e).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")},insertHTMLCommand:function(t,n){var r,i,o,s,u,c,l,f=!1,d=["insertHTML",!1,n];if(!e.util.isEdge&&t.queryCommandSupported("insertHTML"))try{return t.execCommand.apply(t,d)}catch(e){}if(r=t.getSelection(),r.rangeCount){if(i=r.getRangeAt(0),l=i.commonAncestorContainer,a.isMediumEditorElement(l)&&!l.firstChild)i.selectNode(l.appendChild(t.createTextNode("")));else if(3===l.nodeType&&0===i.startOffset&&i.endOffset===l.nodeValue.length||3!==l.nodeType&&l.innerHTML===i.toString()){for(;!a.isMediumEditorElement(l)&&l.parentNode&&1===l.parentNode.childNodes.length&&!a.isMediumEditorElement(l.parentNode);)l=l.parentNode;i.selectNode(l)}for(i.deleteContents(),o=t.createElement("div"),o.innerHTML=n,s=t.createDocumentFragment();o.firstChild;)u=o.firstChild,c=s.appendChild(u);i.insertNode(s),c&&(i=i.cloneRange(),i.setStartAfter(c),i.collapse(!0),e.selection.selectRange(t,i)),f=!0}return t.execCommand.callListeners&&t.execCommand.callListeners(d,f),f},execFormatBlock:function(t,n){var r,i=a.getTopBlockContainer(e.selection.getSelectionStart(t));if("blockquote"===n){if(i&&(r=Array.prototype.slice.call(i.childNodes),r.some(function(e){return a.isBlockContainer(e)})))return t.execCommand("outdent",!1,null);if(a.isIE)return t.execCommand("indent",!1,n)}if(i&&n===i.nodeName.toLowerCase()&&(n="p"),a.isIE&&(n="<"+n+">"),i&&"blockquote"===i.nodeName.toLowerCase()){if(a.isIE&&"<p>"===n)return t.execCommand("outdent",!1,n);if((a.isFF||a.isEdge)&&"p"===n)return r=Array.prototype.slice.call(i.childNodes),r.some(function(e){return!a.isBlockContainer(e)})&&t.execCommand("formatBlock",!1,n),t.execCommand("outdent",!1,n)}return t.execCommand("formatBlock",!1,n)},setTargetBlank:function(e,t){var n,r=t||!1;if("a"===e.nodeName.toLowerCase())e.target="_blank",e.rel="noopener noreferrer";else for(e=e.getElementsByTagName("a"),n=0;n<e.length;n+=1)!1!==r&&r!==e[n].attributes.href.value||(e[n].target="_blank",e[n].rel="noopener noreferrer")},removeTargetBlank:function(e,t){var n;if("a"===e.nodeName.toLowerCase())e.removeAttribute("target"),e.removeAttribute("rel");else for(e=e.getElementsByTagName("a"),n=0;n<e.length;n+=1)t===e[n].attributes.href.value&&(e[n].removeAttribute("target"),e[n].removeAttribute("rel"))},addClassToAnchors:function(e,t){var n,r,i=t.split(" ");if("a"===e.nodeName.toLowerCase())for(r=0;r<i.length;r+=1)e.classList.add(i[r]);else{var o=e.getElementsByTagName("a");if(0===o.length){var s=a.getClosestTag(e,"a");e=s?[s]:[]}else e=o;for(n=0;n<e.length;n+=1)for(r=0;r<i.length;r+=1)e[n].classList.add(i[r])}},isListItem:function(e){if(!e)return!1;if("li"===e.nodeName.toLowerCase())return!0;for(var t=e.parentNode,n=t.nodeName.toLowerCase();"li"===n||!a.isBlockContainer(t)&&"div"!==n;){if("li"===n)return!0;if(!(t=t.parentNode))return!1;n=t.nodeName.toLowerCase()}return!1},cleanListDOM:function(t,n){if("li"===n.nodeName.toLowerCase()){var r=n.parentElement;"p"===r.parentElement.nodeName.toLowerCase()&&(a.unwrap(r.parentElement,t),e.selection.moveCursor(t,n.firstChild,n.firstChild.textContent.length))}},splitOffDOMTree:function(e,t,n){for(var r=t,i=null,o=!n;r!==e;){var a,s=r.parentNode,u=s.cloneNode(!1),c=o?r:s.firstChild;for(i&&(o?u.appendChild(i):a=i),i=u;c;){var l=c.nextSibling;c===r?(c.hasChildNodes()?c=c.cloneNode(!1):c.parentNode.removeChild(c),c.textContent&&i.appendChild(c),c=o?l:null):(c.parentNode.removeChild(c),(c.hasChildNodes()||c.textContent)&&i.appendChild(c),c=l)}a&&i.appendChild(a),r=s}return i},moveTextRangeIntoElement:function(e,t,n){if(!e||!t)return!1;var r=a.findCommonRoot(e,t);if(!r)return!1;if(t===e){var i=e.parentNode,o=e.nextSibling;return i.removeChild(e),n.appendChild(e),o?i.insertBefore(n,o):i.appendChild(n),n.hasChildNodes()}for(var s,u,c,l=[],f=0;f<r.childNodes.length;f++)if(c=r.childNodes[f],s){if(a.isDescendant(c,t,!0)){u=c;break}l.push(c)}else a.isDescendant(c,e,!0)&&(s=c);var d=u.nextSibling,h=r.ownerDocument.createDocumentFragment();return s===e?(s.parentNode.removeChild(s),h.appendChild(s)):h.appendChild(a.splitOffDOMTree(s,e)),l.forEach(function(e){e.parentNode.removeChild(e),h.appendChild(e)}),u===t?(u.parentNode.removeChild(u),h.appendChild(u)):h.appendChild(a.splitOffDOMTree(u,t,!0)),n.appendChild(h),u.parentNode===r?r.insertBefore(n,u):d?r.insertBefore(n,d):r.appendChild(n),n.hasChildNodes()},depthOfNode:function(e){for(var t=0,n=e;null!==n.parentNode;)n=n.parentNode,t++;return t},findCommonRoot:function(e,t){for(var n=a.depthOfNode(e),r=a.depthOfNode(t),i=e,o=t;n!==r;)n>r?(i=i.parentNode,n-=1):(o=o.parentNode,r-=1);for(;i!==o;)i=i.parentNode,o=o.parentNode;return i},isElementAtBeginningOfBlock:function(e){for(var t,n;!a.isBlockContainer(e)&&!a.isMediumEditorElement(e);){for(n=e;n=n.previousSibling;)if(t=3===n.nodeType?n.nodeValue:n.textContent,t.length>0)return!1;e=e.parentNode}return!0},isMediumEditorElement:function(e){return e&&e.getAttribute&&!!e.getAttribute("data-medium-editor-element")},getContainerEditorElement:function(e){return a.traverseUp(e,function(e){return a.isMediumEditorElement(e)})},isBlockContainer:function(e){return e&&3!==e.nodeType&&-1!==a.blockContainerElementNames.indexOf(e.nodeName.toLowerCase())},getClosestBlockContainer:function(e){return a.traverseUp(e,function(e){return a.isBlockContainer(e)||a.isMediumEditorElement(e)})},getTopBlockContainer:function(e){var t=!!a.isBlockContainer(e)&&e;return a.traverseUp(e,function(e){return a.isBlockContainer(e)&&(t=e),!(t||!a.isMediumEditorElement(e))&&(t=e,!0)}),t},getFirstSelectableLeafNode:function(e){for(;e&&e.firstChild;)e=e.firstChild;if(e=a.traverseUp(e,function(e){return-1===a.emptyElementNames.indexOf(e.nodeName.toLowerCase())}),"table"===e.nodeName.toLowerCase()){var t=e.querySelector("th, td");t&&(e=t)}return e},getFirstTextNode:function(e){return a.warn("getFirstTextNode is deprecated and will be removed in version 6.0.0"),a._getFirstTextNode(e)},_getFirstTextNode:function(e){if(3===e.nodeType)return e;for(var t=0;t<e.childNodes.length;t++){var n=a._getFirstTextNode(e.childNodes[t]);if(null!==n)return n}return null},ensureUrlHasProtocol:function(e){return-1===e.indexOf("://")?"http://"+e:e},warn:function(){void 0!==t.console&&"function"==typeof t.console.warn&&t.console.warn.apply(t.console,arguments)},deprecated:function(e,t,n){var r=e+" is deprecated, please use "+t+" instead.";n&&(r+=" Will be removed in "+n),a.warn(r)},deprecatedMethod:function(e,t,n,r){a.deprecated(e,t,r),"function"==typeof this[t]&&this[t].apply(this,n)},cleanupAttrs:function(e,t){t.forEach(function(t){e.removeAttribute(t)})},cleanupTags:function(e,t){-1!==t.indexOf(e.nodeName.toLowerCase())&&e.parentNode.removeChild(e)},unwrapTags:function(t,n){-1!==n.indexOf(t.nodeName.toLowerCase())&&e.util.unwrap(t,document)},getClosestTag:function(e,t){return a.traverseUp(e,function(e){return e.nodeName.toLowerCase()===t.toLowerCase()})},unwrap:function(e,t){for(var n=t.createDocumentFragment(),r=Array.prototype.slice.call(e.childNodes),i=0;i<r.length;i++)n.appendChild(r[i]);n.childNodes.length?e.parentNode.replaceChild(n,e):e.parentNode.removeChild(e)},guid:function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}};e.util=a}(window),function(){var t=function(t){e.util.extend(this,t)};t.extend=function(t){var n,r=this;n=t&&t.hasOwnProperty("constructor")?t.constructor:function(){return r.apply(this,arguments)},e.util.extend(n,r);var i=function(){this.constructor=n};return i.prototype=r.prototype,n.prototype=new i,t&&e.util.extend(n.prototype,t),n},t.prototype={init:function(){},base:void 0,name:void 0,checkState:void 0,destroy:void 0,queryCommandState:void 0,isActive:void 0,isAlreadyApplied:void 0,setActive:void 0,setInactive:void 0,getInteractionElements:void 0,window:void 0,document:void 0,getEditorElements:function(){return this.base.elements},getEditorId:function(){return this.base.id},getEditorOption:function(e){return this.base.options[e]}},["execAction","on","off","subscribe","trigger"].forEach(function(e){t.prototype[e]=function(){return this.base[e].apply(this.base,arguments)}}),e.Extension=t}(),function(){function t(t){return e.util.isBlockContainer(t)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}var n={findMatchingSelectionParent:function(t,n){var r,i,o=n.getSelection();return 0!==o.rangeCount&&(r=o.getRangeAt(0),i=r.commonAncestorContainer,e.util.traverseUp(i,t))},getSelectionElement:function(t){return this.findMatchingSelectionParent(function(t){return e.util.isMediumEditorElement(t)},t)},exportSelection:function(e,t){if(!e)return null;var n=null,r=t.getSelection();if(r.rangeCount>0){var i,o=r.getRangeAt(0),a=o.cloneRange();a.selectNodeContents(e),a.setEnd(o.startContainer,o.startOffset),i=a.toString().length,n={start:i,end:i+o.toString().length},this.doesRangeStartWithImages(o,t)&&(n.startsWithImage=!0);var s=this.getTrailingImageCount(e,n,o.endContainer,o.endOffset);if(s&&(n.trailingImageCount=s),0!==i){var u=this.getIndexRelativeToAdjacentEmptyBlocks(t,e,o.startContainer,o.startOffset);-1!==u&&(n.emptyBlocksIndex=u)}}return n},importSelection:function(e,t,n,r){if(e&&t){var i=n.createRange();i.setStart(t,0),i.collapse(!0);var o,a=t,s=[],u=0,c=!1,l=!1,f=0,d=!1,h=!1,p=null;for((r||e.startsWithImage||void 0!==e.emptyBlocksIndex)&&(h=!0);!d&&a;)if(a.nodeType>3)a=s.pop();else{if(3!==a.nodeType||l){if(e.trailingImageCount&&l&&("img"===a.nodeName.toLowerCase()&&f++,f===e.trailingImageCount)){for(var v=0;a.parentNode.childNodes[v]!==a;)v++;i.setEnd(a.parentNode,v+1),d=!0}if(!d&&1===a.nodeType)for(var m=a.childNodes.length-1;m>=0;)s.push(a.childNodes[m]),m-=1}else o=u+a.length,!c&&e.start>=u&&e.start<=o&&(h||e.start<o?(i.setStart(a,e.start-u),c=!0):p=a),c&&e.end>=u&&e.end<=o&&(e.trailingImageCount?l=!0:(i.setEnd(a,e.end-u),d=!0)),u=o;d||(a=s.pop())}!c&&p&&(i.setStart(p,p.length),i.setEnd(p,p.length)),void 0!==e.emptyBlocksIndex&&(i=this.importSelectionMoveCursorPastBlocks(n,t,e.emptyBlocksIndex,i)),r&&(i=this.importSelectionMoveCursorPastAnchor(e,i)),this.selectRange(n,i)}},importSelectionMoveCursorPastAnchor:function(t,n){var r=function(e){return"a"===e.nodeName.toLowerCase()};if(t.start===t.end&&3===n.startContainer.nodeType&&n.startOffset===n.startContainer.nodeValue.length&&e.util.traverseUp(n.startContainer,r)){for(var i=n.startContainer,o=n.startContainer.parentNode;null!==o&&"a"!==o.nodeName.toLowerCase();)o.childNodes[o.childNodes.length-1]!==i?o=null:(i=o,o=o.parentNode);if(null!==o&&"a"===o.nodeName.toLowerCase()){for(var a=null,s=0;null===a&&s<o.parentNode.childNodes.length;s++)o.parentNode.childNodes[s]===o&&(a=s);n.setStart(o.parentNode,a+1),n.collapse(!0)}}return n},importSelectionMoveCursorPastBlocks:function(n,r,i,o){var a,s,u=n.createTreeWalker(r,NodeFilter.SHOW_ELEMENT,t,!1),c=o.startContainer,l=0;for(i=i||1,a=3===c.nodeType&&e.util.isBlockContainer(c.previousSibling)?c.previousSibling:e.util.getClosestBlockContainer(c);u.nextNode();)if(s){if(s=u.currentNode,++l===i)break;if(s.textContent.length>0)break}else a===u.currentNode&&(s=u.currentNode);return s||(s=a),o.setStart(e.util.getFirstSelectableLeafNode(s),0),o},getIndexRelativeToAdjacentEmptyBlocks:function(n,r,i,o){if(i.textContent.length>0&&o>0)return-1;var a=i;if(3!==a.nodeType&&(a=i.childNodes[o]),a){if(!e.util.isElementAtBeginningOfBlock(a))return-1;var s=e.util.findPreviousSibling(a);if(!s)return-1;if(s.nodeValue)return-1}for(var u=e.util.getClosestBlockContainer(i),c=n.createTreeWalker(r,NodeFilter.SHOW_ELEMENT,t,!1),l=0;c.nextNode();){var f=""===c.currentNode.textContent;if((f||l>0)&&(l+=1),c.currentNode===u)return l;f||(l=0)}return l},doesRangeStartWithImages:function(e,t){if(0!==e.startOffset||1!==e.startContainer.nodeType)return!1;if("img"===e.startContainer.nodeName.toLowerCase())return!0;var n=e.startContainer.querySelector("img");if(!n)return!1;for(var r=t.createTreeWalker(e.startContainer,NodeFilter.SHOW_ALL,null,!1);r.nextNode();){var i=r.currentNode;if(i===n)break;if(i.nodeValue)return!1}return!0},getTrailingImageCount:function(e,t,n,r){if(0===r||1!==n.nodeType)return 0;if("img"!==n.nodeName.toLowerCase()&&!n.querySelector("img"))return 0;for(var i=n.childNodes[r-1];i.hasChildNodes();)i=i.lastChild;for(var o,a=e,s=[],u=0,c=!1,l=!1,f=!1,d=0;!f&&a;)if(a.nodeType>3)a=s.pop();else{if(3!==a.nodeType||l){if("img"===a.nodeName.toLowerCase()&&d++,a===i)f=!0;else if(1===a.nodeType)for(var h=a.childNodes.length-1;h>=0;)s.push(a.childNodes[h]),h-=1}else d=0,o=u+a.length,!c&&t.start>=u&&t.start<=o&&(c=!0),c&&t.end>=u&&t.end<=o&&(l=!0),u=o;f||(a=s.pop())}return d},selectionContainsContent:function(e){var t=e.getSelection();if(!t||t.isCollapsed||!t.rangeCount)return!1;if(""!==t.toString().trim())return!0;var n=this.getSelectedParentElement(t.getRangeAt(0));return!(!n||!("img"===n.nodeName.toLowerCase()||1===n.nodeType&&n.querySelector("img")))},selectionInContentEditableFalse:function(e){var t,n=this.findMatchingSelectionParent(function(e){var n=e&&e.getAttribute("contenteditable");return"true"===n&&(t=!0),"#text"!==e.nodeName&&"false"===n},e);return!t&&n},getSelectionHtml:function(e){var t,n,r,i="",o=e.getSelection();if(o.rangeCount){for(r=e.createElement("div"),t=0,n=o.rangeCount;t<n;t+=1)r.appendChild(o.getRangeAt(t).cloneContents());i=r.innerHTML}return i},getCaretOffsets:function(e,t){var n,r;return t||(t=window.getSelection().getRangeAt(0)),n=t.cloneRange(),r=t.cloneRange(),n.selectNodeContents(e),n.setEnd(t.endContainer,t.endOffset),r.selectNodeContents(e),r.setStart(t.endContainer,t.endOffset),{left:n.toString().length,right:r.toString().length}},rangeSelectsSingleNode:function(e){var t=e.startContainer;return t===e.endContainer&&t.hasChildNodes()&&e.endOffset===e.startOffset+1},getSelectedParentElement:function(e){return e?this.rangeSelectsSingleNode(e)&&3!==e.startContainer.childNodes[e.startOffset].nodeType?e.startContainer.childNodes[e.startOffset]:3===e.startContainer.nodeType?e.startContainer.parentNode:e.startContainer:null},getSelectedElements:function(e){var t,n,r,i=e.getSelection();if(!i.rangeCount||i.isCollapsed||!i.getRangeAt(0).commonAncestorContainer)return[];if(t=i.getRangeAt(0),3===t.commonAncestorContainer.nodeType){for(n=[],r=t.commonAncestorContainer;r.parentNode&&1===r.parentNode.childNodes.length;)n.push(r.parentNode),r=r.parentNode;return n}return[].filter.call(t.commonAncestorContainer.getElementsByTagName("*"),function(e){return"function"!=typeof i.containsNode||i.containsNode(e,!0)})},selectNode:function(e,t){var n=t.createRange();n.selectNodeContents(e),this.selectRange(t,n)},select:function(e,t,n,r,i){var o=e.createRange();return o.setStart(t,n),r?o.setEnd(r,i):o.collapse(!0),this.selectRange(e,o),o},clearSelection:function(e,t){t?e.getSelection().collapseToStart():e.getSelection().collapseToEnd()},moveCursor:function(e,t,n){this.select(e,t,n)},getSelectionRange:function(e){var t=e.getSelection();return 0===t.rangeCount?null:t.getRangeAt(0)},selectRange:function(e,t){var n=e.getSelection();n.removeAllRanges(),n.addRange(t)},getSelectionStart:function(e){var t=e.getSelection().anchorNode;return t&&3===t.nodeType?t.parentNode:t}};e.selection=n}(),function(){function t(t,n){return t.some(function(t){if("function"!=typeof t.getInteractionElements)return!1;var r=t.getInteractionElements();return!!r&&(Array.isArray(r)||(r=[r]),r.some(function(t){return e.util.isDescendant(t,n,!0)}))})}var n=function(e){this.base=e,this.options=this.base.options,this.events=[],this.disabledEvents={},this.customEvents={},this.listeners={}};n.prototype={InputEventOnContenteditableSupported:!e.util.isIE&&!e.util.isEdge,attachDOMEvent:function(t,n,r,i){var o=this.base.options.contentWindow,a=this.base.options.ownerDocument;t=e.util.isElement(t)||[o,a].indexOf(t)>-1?[t]:t,Array.prototype.forEach.call(t,function(e){e.addEventListener(n,r,i),this.events.push([e,n,r,i])}.bind(this))},detachDOMEvent:function(t,n,r,i){var o,a,s=this.base.options.contentWindow,u=this.base.options.ownerDocument;null!==t&&(t=e.util.isElement(t)||[s,u].indexOf(t)>-1?[t]:t,Array.prototype.forEach.call(t,function(e){-1!==(o=this.indexOfListener(e,n,r,i))&&(a=this.events.splice(o,1)[0],a[0].removeEventListener(a[1],a[2],a[3]))}.bind(this)))},indexOfListener:function(e,t,n,r){var i,o,a;for(i=0,o=this.events.length;i<o;i+=1)if(a=this.events[i],a[0]===e&&a[1]===t&&a[2]===n&&a[3]===r)return i;return-1},detachAllDOMEvents:function(){for(var e=this.events.pop();e;)e[0].removeEventListener(e[1],e[2],e[3]),e=this.events.pop()},detachAllEventsFromElement:function(e){for(var t=this.events.filter(function(t){return t&&t[0].getAttribute&&t[0].getAttribute("medium-editor-index")===e.getAttribute("medium-editor-index")}),n=0,r=t.length;n<r;n++){var i=t[n];this.detachDOMEvent(i[0],i[1],i[2],i[3])}},attachAllEventsToElement:function(e){this.listeners.editableInput&&(this.contentCache[e.getAttribute("medium-editor-index")]=e.innerHTML),this.eventsCache&&this.eventsCache.forEach(function(t){this.attachDOMEvent(e,t.name,t.handler.bind(this))},this)},enableCustomEvent:function(e){void 0!==this.disabledEvents[e]&&delete this.disabledEvents[e]},disableCustomEvent:function(e){this.disabledEvents[e]=!0},attachCustomEvent:function(e,t){this.setupListener(e),this.customEvents[e]||(this.customEvents[e]=[]),this.customEvents[e].push(t)},detachCustomEvent:function(e,t){var n=this.indexOfCustomListener(e,t);-1!==n&&this.customEvents[e].splice(n,1)},indexOfCustomListener:function(e,t){return this.customEvents[e]&&this.customEvents[e].length?this.customEvents[e].indexOf(t):-1},detachAllCustomEvents:function(){this.customEvents={}},triggerCustomEvent:function(e,t,n){this.customEvents[e]&&!this.disabledEvents[e]&&this.customEvents[e].forEach(function(e){e(t,n)})},destroy:function(){this.detachAllDOMEvents(),this.detachAllCustomEvents(),this.detachExecCommand(),this.base.elements&&this.base.elements.forEach(function(e){e.removeAttribute("data-medium-focused")})},attachToExecCommand:function(){this.execCommandListener||(this.execCommandListener=function(e){this.handleDocumentExecCommand(e)}.bind(this),this.wrapExecCommand(),this.options.ownerDocument.execCommand.listeners.push(this.execCommandListener))},detachExecCommand:function(){var e=this.options.ownerDocument;if(this.execCommandListener&&e.execCommand.listeners){var t=e.execCommand.listeners.indexOf(this.execCommandListener);-1!==t&&e.execCommand.listeners.splice(t,1),e.execCommand.listeners.length||this.unwrapExecCommand()}},wrapExecCommand:function(){var e=this.options.ownerDocument;if(!e.execCommand.listeners){var t=function(t,n){e.execCommand.listeners&&e.execCommand.listeners.forEach(function(e){e({command:t[0],value:t[2],args:t,result:n})})},n=function(){var n=e.execCommand.orig.apply(this,arguments);if(!e.execCommand.listeners)return n;var r=Array.prototype.slice.call(arguments);return t(r,n),n};n.orig=e.execCommand,n.listeners=[],n.callListeners=t,e.execCommand=n}},unwrapExecCommand:function(){var e=this.options.ownerDocument;e.execCommand.orig&&(e.execCommand=e.execCommand.orig)},setupListener:function(e){if(!this.listeners[e]){switch(e){case"externalInteraction":this.attachDOMEvent(this.options.ownerDocument.body,"mousedown",this.handleBodyMousedown.bind(this),!0),this.attachDOMEvent(this.options.ownerDocument.body,"click",this.handleBodyClick.bind(this),!0),this.attachDOMEvent(this.options.ownerDocument.body,"focus",this.handleBodyFocus.bind(this),!0);break;case"blur":case"focus":this.setupListener("externalInteraction");break;case"editableInput":this.contentCache={},this.base.elements.forEach(function(e){this.contentCache[e.getAttribute("medium-editor-index")]=e.innerHTML},this),this.InputEventOnContenteditableSupported&&this.attachToEachElement("input",this.handleInput),this.InputEventOnContenteditableSupported||(this.setupListener("editableKeypress"),this.keypressUpdateInput=!0,this.attachDOMEvent(document,"selectionchange",this.handleDocumentSelectionChange.bind(this)),this.attachToExecCommand());break;case"editableClick":this.attachToEachElement("click",this.handleClick);break;case"editableBlur":this.attachToEachElement("blur",this.handleBlur);break;case"editableKeypress":this.attachToEachElement("keypress",this.handleKeypress);break;case"editableKeyup":this.attachToEachElement("keyup",this.handleKeyup);break;case"editableKeydown":this.attachToEachElement("keydown",this.handleKeydown);break;case"editableKeydownSpace":case"editableKeydownEnter":case"editableKeydownTab":case"editableKeydownDelete":this.setupListener("editableKeydown");break;case"editableMouseover":this.attachToEachElement("mouseover",this.handleMouseover);break;case"editableDrag":this.attachToEachElement("dragover",this.handleDragging),this.attachToEachElement("dragleave",this.handleDragging);break;case"editableDrop":this.attachToEachElement("drop",this.handleDrop);break;case"editablePaste":this.attachToEachElement("paste",this.handlePaste)}this.listeners[e]=!0}},attachToEachElement:function(e,t){this.eventsCache||(this.eventsCache=[]),this.base.elements.forEach(function(n){this.attachDOMEvent(n,e,t.bind(this))},this),this.eventsCache.push({name:e,handler:t})},cleanupElement:function(e){var t=e.getAttribute("medium-editor-index");t&&(this.detachAllEventsFromElement(e),this.contentCache&&delete this.contentCache[t])},focusElement:function(e){e.focus(),this.updateFocus(e,{target:e,type:"focus"})},updateFocus:function(n,r){var i,o=this.base.getFocusedElement();o&&"click"===r.type&&this.lastMousedownTarget&&(e.util.isDescendant(o,this.lastMousedownTarget,!0)||t(this.base.extensions,this.lastMousedownTarget))&&(i=o),i||this.base.elements.some(function(t){return!i&&e.util.isDescendant(t,n,!0)&&(i=t),!!i},this);var a=!e.util.isDescendant(o,n,!0)&&!t(this.base.extensions,n);i!==o&&(o&&a&&(o.removeAttribute("data-medium-focused"),this.triggerCustomEvent("blur",r,o)),i&&(i.setAttribute("data-medium-focused",!0),this.triggerCustomEvent("focus",r,i))),a&&this.triggerCustomEvent("externalInteraction",r)},updateInput:function(e,t){if(this.contentCache){var n=e.getAttribute("medium-editor-index"),r=e.innerHTML;r!==this.contentCache[n]&&this.triggerCustomEvent("editableInput",t,e),this.contentCache[n]=r}},handleDocumentSelectionChange:function(t){if(t.currentTarget&&t.currentTarget.activeElement){var n,r=t.currentTarget.activeElement;this.base.elements.some(function(t){return!!e.util.isDescendant(t,r,!0)&&(n=t,!0)},this),n&&this.updateInput(n,{target:r,currentTarget:n})}},handleDocumentExecCommand:function(){var e=this.base.getFocusedElement();e&&this.updateInput(e,{target:e,currentTarget:e})},handleBodyClick:function(e){this.updateFocus(e.target,e)},handleBodyFocus:function(e){this.updateFocus(e.target,e)},handleBodyMousedown:function(e){this.lastMousedownTarget=e.target},handleInput:function(e){this.updateInput(e.currentTarget,e)},handleClick:function(e){this.triggerCustomEvent("editableClick",e,e.currentTarget)},handleBlur:function(e){this.triggerCustomEvent("editableBlur",e,e.currentTarget)},handleKeypress:function(e){if(this.triggerCustomEvent("editableKeypress",e,e.currentTarget),this.keypressUpdateInput){var t={target:e.target,currentTarget:e.currentTarget};setTimeout(function(){this.updateInput(t.currentTarget,t)}.bind(this),0)}},handleKeyup:function(e){this.triggerCustomEvent("editableKeyup",e,e.currentTarget)},handleMouseover:function(e){this.triggerCustomEvent("editableMouseover",e,e.currentTarget)},handleDragging:function(e){this.triggerCustomEvent("editableDrag",e,e.currentTarget)},handleDrop:function(e){this.triggerCustomEvent("editableDrop",e,e.currentTarget)},handlePaste:function(e){this.triggerCustomEvent("editablePaste",e,e.currentTarget)},handleKeydown:function(t){return this.triggerCustomEvent("editableKeydown",t,t.currentTarget),e.util.isKey(t,e.util.keyCode.SPACE)?this.triggerCustomEvent("editableKeydownSpace",t,t.currentTarget):e.util.isKey(t,e.util.keyCode.ENTER)||t.ctrlKey&&e.util.isKey(t,e.util.keyCode.M)?this.triggerCustomEvent("editableKeydownEnter",t,t.currentTarget):e.util.isKey(t,e.util.keyCode.TAB)?this.triggerCustomEvent("editableKeydownTab",t,t.currentTarget):e.util.isKey(t,[e.util.keyCode.DELETE,e.util.keyCode.BACKSPACE])?this.triggerCustomEvent("editableKeydownDelete",t,t.currentTarget):void 0}},e.Events=n}(),function(){var t=e.Extension.extend({action:void 0,aria:void 0,tagNames:void 0,style:void 0,useQueryState:void 0,contentDefault:void 0,contentFA:void 0,classList:void 0,attrs:void 0,constructor:function(n){t.isBuiltInButton(n)?e.Extension.call(this,this.defaults[n]):e.Extension.call(this,n)},init:function(){e.Extension.prototype.init.apply(this,arguments),this.button=this.createButton(),this.on(this.button,"click",this.handleClick.bind(this))},getButton:function(){return this.button},getAction:function(){return"function"==typeof this.action?this.action(this.base.options):this.action},getAria:function(){return"function"==typeof this.aria?this.aria(this.base.options):this.aria},getTagNames:function(){return"function"==typeof this.tagNames?this.tagNames(this.base.options):this.tagNames},createButton:function(){var e=this.document.createElement("button"),t=this.contentDefault,n=this.getAria(),r=this.getEditorOption("buttonLabels");return e.classList.add("medium-editor-action"),e.classList.add("medium-editor-action-"+this.name),this.classList&&this.classList.forEach(function(t){e.classList.add(t)}),e.setAttribute("data-action",this.getAction()),n&&(e.setAttribute("title",n),e.setAttribute("aria-label",n)),this.attrs&&Object.keys(this.attrs).forEach(function(t){e.setAttribute(t,this.attrs[t])},this),"fontawesome"===r&&this.contentFA&&(t=this.contentFA),e.innerHTML=t,e},handleClick:function(e){e.preventDefault(),e.stopPropagation();var t=this.getAction();t&&this.execAction(t)},isActive:function(){return this.button.classList.contains(this.getEditorOption("activeButtonClass"))},setInactive:function(){this.button.classList.remove(this.getEditorOption("activeButtonClass")),delete this.knownState},setActive:function(){this.button.classList.add(this.getEditorOption("activeButtonClass")),delete this.knownState},queryCommandState:function(){var e=null;return this.useQueryState&&(e=this.base.queryCommandState(this.getAction())),e},isAlreadyApplied:function(e){var t,n,r=!1,i=this.getTagNames();return!1===this.knownState||!0===this.knownState?this.knownState:(i&&i.length>0&&(r=-1!==i.indexOf(e.nodeName.toLowerCase())),!r&&this.style&&(t=this.style.value.split("|"),n=this.window.getComputedStyle(e,null).getPropertyValue(this.style.prop),t.forEach(function(e){this.knownState||((r=-1!==n.indexOf(e))||"text-decoration"!==this.style.prop)&&(this.knownState=r)},this)),r)}});t.isBuiltInButton=function(t){return"string"==typeof t&&e.extensions.button.prototype.defaults.hasOwnProperty(t)},e.extensions.button=t}(),function(){e.extensions.button.prototype.defaults={bold:{name:"bold",action:"bold",aria:"bold",tagNames:["b","strong"],style:{prop:"font-weight",value:"700|bold"},useQueryState:!0,contentDefault:"<b>B</b>",contentFA:'<i class="fa fa-bold"></i>'},italic:{name:"italic",action:"italic",aria:"italic",tagNames:["i","em"],style:{prop:"font-style",value:"italic"},useQueryState:!0,contentDefault:"<b><i>I</i></b>",contentFA:'<i class="fa fa-italic"></i>'},underline:{name:"underline",action:"underline",aria:"underline",tagNames:["u"],style:{prop:"text-decoration",value:"underline"},useQueryState:!0,contentDefault:"<b><u>U</u></b>",contentFA:'<i class="fa fa-underline"></i>'},strikethrough:{name:"strikethrough",action:"strikethrough",aria:"strike through",tagNames:["strike"],style:{prop:"text-decoration",value:"line-through"},useQueryState:!0,contentDefault:"<s>A</s>",contentFA:'<i class="fa fa-strikethrough"></i>'},superscript:{name:"superscript",action:"superscript",aria:"superscript",tagNames:["sup"],contentDefault:"<b>x<sup>1</sup></b>",contentFA:'<i class="fa fa-superscript"></i>'},subscript:{name:"subscript",action:"subscript",aria:"subscript",tagNames:["sub"],contentDefault:"<b>x<sub>1</sub></b>",contentFA:'<i class="fa fa-subscript"></i>'},image:{name:"image",action:"image",aria:"image",tagNames:["img"],contentDefault:"<b>image</b>",contentFA:'<i class="fa fa-picture-o"></i>'},html:{name:"html",action:"html",aria:"evaluate html",tagNames:["iframe","object"],contentDefault:"<b>html</b>",contentFA:'<i class="fa fa-code"></i>'},orderedlist:{name:"orderedlist",action:"insertorderedlist",aria:"ordered list",tagNames:["ol"],useQueryState:!0,contentDefault:"<b>1.</b>",contentFA:'<i class="fa fa-list-ol"></i>'},unorderedlist:{name:"unorderedlist",action:"insertunorderedlist",aria:"unordered list",tagNames:["ul"],useQueryState:!0,contentDefault:"<b>&bull;</b>",contentFA:'<i class="fa fa-list-ul"></i>'},indent:{name:"indent",action:"indent",aria:"indent",tagNames:[],contentDefault:"<b>&rarr;</b>",contentFA:'<i class="fa fa-indent"></i>'},outdent:{name:"outdent",action:"outdent",aria:"outdent",tagNames:[],contentDefault:"<b>&larr;</b>",contentFA:'<i class="fa fa-outdent"></i>'},justifyCenter:{name:"justifyCenter",action:"justifyCenter",aria:"center justify",tagNames:[],style:{prop:"text-align",value:"center"},contentDefault:"<b>C</b>",contentFA:'<i class="fa fa-align-center"></i>'},justifyFull:{name:"justifyFull",action:"justifyFull",aria:"full justify",tagNames:[],style:{prop:"text-align",value:"justify"},contentDefault:"<b>J</b>",contentFA:'<i class="fa fa-align-justify"></i>'},justifyLeft:{name:"justifyLeft",action:"justifyLeft",aria:"left justify",tagNames:[],style:{prop:"text-align",value:"left"},contentDefault:"<b>L</b>",contentFA:'<i class="fa fa-align-left"></i>'},justifyRight:{name:"justifyRight",action:"justifyRight",aria:"right justify",tagNames:[],style:{prop:"text-align",value:"right"},contentDefault:"<b>R</b>",contentFA:'<i class="fa fa-align-right"></i>'},removeFormat:{name:"removeFormat",aria:"remove formatting",action:"removeFormat",contentDefault:"<b>X</b>",contentFA:'<i class="fa fa-eraser"></i>'},quote:{name:"quote",action:"append-blockquote",aria:"blockquote",tagNames:["blockquote"],contentDefault:"<b>&ldquo;</b>",contentFA:'<i class="fa fa-quote-right"></i>'},pre:{name:"pre",action:"append-pre",aria:"preformatted text",tagNames:["pre"],contentDefault:"<b>0101</b>",contentFA:'<i class="fa fa-code fa-lg"></i>'},h1:{name:"h1",action:"append-h1",aria:"header type one",tagNames:["h1"],contentDefault:"<b>H1</b>",contentFA:'<i class="fa fa-header"><sup>1</sup>'},h2:{name:"h2",action:"append-h2",aria:"header type two",tagNames:["h2"],contentDefault:"<b>H2</b>",contentFA:'<i class="fa fa-header"><sup>2</sup>'},h3:{name:"h3",action:"append-h3",aria:"header type three",tagNames:["h3"],contentDefault:"<b>H3</b>",contentFA:'<i class="fa fa-header"><sup>3</sup>'},h4:{name:"h4",action:"append-h4",aria:"header type four",tagNames:["h4"],contentDefault:"<b>H4</b>",contentFA:'<i class="fa fa-header"><sup>4</sup>'},h5:{name:"h5",action:"append-h5",aria:"header type five",tagNames:["h5"],contentDefault:"<b>H5</b>",contentFA:'<i class="fa fa-header"><sup>5</sup>'},h6:{name:"h6",action:"append-h6",aria:"header type six",tagNames:["h6"],contentDefault:"<b>H6</b>",contentFA:'<i class="fa fa-header"><sup>6</sup>'}}}(),function(){var t=e.extensions.button.extend({init:function(){e.extensions.button.prototype.init.apply(this,arguments)},formSaveLabel:"&#10003;",formCloseLabel:"&times;",activeClass:"medium-editor-toolbar-form-active",hasForm:!0,getForm:function(){},isDisplayed:function(){return!!this.hasForm&&this.getForm().classList.contains(this.activeClass)},showForm:function(){this.hasForm&&this.getForm().classList.add(this.activeClass)},hideForm:function(){this.hasForm&&this.getForm().classList.remove(this.activeClass)},showToolbarDefaultActions:function(){var e=this.base.getExtensionByName("toolbar");e&&e.showToolbarDefaultActions()},hideToolbarDefaultActions:function(){var e=this.base.getExtensionByName("toolbar");e&&e.hideToolbarDefaultActions()},setToolbarPosition:function(){var e=this.base.getExtensionByName("toolbar");e&&e.setToolbarPosition()}});e.extensions.form=t}(),function(){var t=e.extensions.form.extend({customClassOption:null,customClassOptionText:"Button",linkValidation:!1,placeholderText:"Paste or type a link",targetCheckbox:!1,targetCheckboxText:"Open in new window",name:"anchor",action:"createLink",aria:"link",tagNames:["a"],contentDefault:"<b>#</b>",contentFA:'<i class="fa fa-link"></i>',init:function(){e.extensions.form.prototype.init.apply(this,arguments),this.subscribe("editableKeydown",this.handleKeydown.bind(this))},handleClick:function(t){t.preventDefault(),t.stopPropagation();var n=e.selection.getSelectionRange(this.document);return"a"===n.startContainer.nodeName.toLowerCase()||"a"===n.endContainer.nodeName.toLowerCase()||e.util.getClosestTag(e.selection.getSelectedParentElement(n),"a")?this.execAction("unlink"):(this.isDisplayed()||this.showForm(),!1)},handleKeydown:function(t){e.util.isKey(t,e.util.keyCode.K)&&e.util.isMetaCtrlKey(t)&&!t.shiftKey&&this.handleClick(t)},getForm:function(){return this.form||(this.form=this.createForm()),this.form},getTemplate:function(){var e=['<input type="text" class="medium-editor-toolbar-input" placeholder="',this.placeholderText,'">'];return e.push('<a href="#" class="medium-editor-toolbar-save">',"fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':this.formSaveLabel,"</a>"),e.push('<a href="#" class="medium-editor-toolbar-close">',"fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':this.formCloseLabel,"</a>"),this.targetCheckbox&&e.push('<div class="medium-editor-toolbar-form-row">','<input type="checkbox" class="medium-editor-toolbar-anchor-target" id="medium-editor-toolbar-anchor-target-field-'+this.getEditorId()+'">','<label for="medium-editor-toolbar-anchor-target-field-'+this.getEditorId()+'">',this.targetCheckboxText,"</label>","</div>"),this.customClassOption&&e.push('<div class="medium-editor-toolbar-form-row">','<input type="checkbox" class="medium-editor-toolbar-anchor-button">',"<label>",this.customClassOptionText,"</label>","</div>"),e.join("")},isDisplayed:function(){return e.extensions.form.prototype.isDisplayed.apply(this)},hideForm:function(){e.extensions.form.prototype.hideForm.apply(this),this.getInput().value=""},showForm:function(t){var n=this.getInput(),r=this.getAnchorTargetCheckbox(),i=this.getAnchorButtonCheckbox();if(t=t||{value:""},"string"==typeof t&&(t={value:t}),this.base.saveSelection(),this.hideToolbarDefaultActions(),e.extensions.form.prototype.showForm.apply(this),this.setToolbarPosition(),n.value=t.value,n.focus(),r&&(r.checked="_blank"===t.target),i){var o=t.buttonClass?t.buttonClass.split(" "):[];i.checked=-1!==o.indexOf(this.customClassOption)}},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},getFormOpts:function(){var e=this.getAnchorTargetCheckbox(),t=this.getAnchorButtonCheckbox(),n={value:this.getInput().value.trim()};return this.linkValidation&&(n.value=this.checkLinkFormat(n.value)),n.target="_self",e&&e.checked&&(n.target="_blank"),t&&t.checked&&(n.buttonClass=this.customClassOption),n},doFormSave:function(){var e=this.getFormOpts();this.completeFormSave(e)},completeFormSave:function(e){this.base.restoreSelection(),this.execAction(this.action,e),this.base.checkSelection()},ensureEncodedUri:function(e){return e===decodeURI(e)?encodeURI(e):e},ensureEncodedUriComponent:function(e){return e===decodeURIComponent(e)?encodeURIComponent(e):e},ensureEncodedParam:function(e){var t=e.split("="),n=t[0],r=t[1];return n+(void 0===r?"":"="+this.ensureEncodedUriComponent(r))},ensureEncodedQuery:function(e){return e.split("&").map(this.ensureEncodedParam.bind(this)).join("&")},checkLinkFormat:function(e){var t=/^([a-z]+:)?\/\/|^(mailto|tel|maps):|^\#/i,n=t.test(e),r="",i=/^\+?\s?\(?(?:\d\s?\-?\)?){3,20}$/,o=e.match(/^(.*?)(?:\?(.*?))?(?:#(.*))?$/),a=o[1],s=o[2],u=o[3];if(i.test(e))return"tel:"+e;if(!n){var c=a.split("/")[0];(c.match(/.+(\.|:).+/)||"localhost"===c)&&(r="http://")}return r+this.ensureEncodedUri(a)+(void 0===s?"":"?"+this.ensureEncodedQuery(s))+(void 0===u?"":"#"+u)},doFormCancel:function(){this.base.restoreSelection(),this.base.checkSelection()},attachFormEvents:function(e){var t=e.querySelector(".medium-editor-toolbar-close"),n=e.querySelector(".medium-editor-toolbar-save"),r=e.querySelector(".medium-editor-toolbar-input");this.on(e,"click",this.handleFormClick.bind(this)),this.on(r,"keyup",this.handleTextboxKeyup.bind(this)),this.on(t,"click",this.handleCloseClick.bind(this)),this.on(n,"click",this.handleSaveClick.bind(this),!0)},createForm:function(){var e=this.document,t=e.createElement("div");return t.className="medium-editor-toolbar-form",t.id="medium-editor-toolbar-form-anchor-"+this.getEditorId(),t.innerHTML=this.getTemplate(),this.attachFormEvents(t),t},getInput:function(){return this.getForm().querySelector("input.medium-editor-toolbar-input")},getAnchorTargetCheckbox:function(){return this.getForm().querySelector(".medium-editor-toolbar-anchor-target")},getAnchorButtonCheckbox:function(){return this.getForm().querySelector(".medium-editor-toolbar-anchor-button")},handleTextboxKeyup:function(t){if(t.keyCode===e.util.keyCode.ENTER)return t.preventDefault(),void this.doFormSave();t.keyCode===e.util.keyCode.ESCAPE&&(t.preventDefault(),this.doFormCancel())},handleFormClick:function(e){e.stopPropagation()},handleSaveClick:function(e){e.preventDefault(),this.doFormSave()},handleCloseClick:function(e){e.preventDefault(),this.doFormCancel()}});e.extensions.anchor=t}(),function(){var t=e.Extension.extend({name:"anchor-preview",hideDelay:500,previewValueSelector:"a",showWhenToolbarIsVisible:!1,showOnEmptyLinks:!0,init:function(){this.anchorPreview=this.createPreview(),this.getEditorOption("elementsContainer").appendChild(this.anchorPreview),this.attachToEditables()},getInteractionElements:function(){return this.getPreviewElement()},getPreviewElement:function(){return this.anchorPreview},createPreview:function(){var e=this.document.createElement("div");return e.id="medium-editor-anchor-preview-"+this.getEditorId(),e.className="medium-editor-anchor-preview",e.innerHTML=this.getTemplate(),this.on(e,"click",this.handleClick.bind(this)),e},getTemplate:function(){return'<div class="medium-editor-toolbar-anchor-preview" id="medium-editor-toolbar-anchor-preview"> <a class="medium-editor-toolbar-anchor-preview-inner"></a></div>'},destroy:function(){this.anchorPreview&&(this.anchorPreview.parentNode&&this.anchorPreview.parentNode.removeChild(this.anchorPreview),delete this.anchorPreview)},hidePreview:function(){this.anchorPreview&&this.anchorPreview.classList.remove("medium-editor-anchor-preview-active"),this.activeAnchor=null},showPreview:function(e){return!(!this.anchorPreview.classList.contains("medium-editor-anchor-preview-active")&&!e.getAttribute("data-disable-preview"))||(this.previewValueSelector&&(this.anchorPreview.querySelector(this.previewValueSelector).textContent=e.attributes.href.value,this.anchorPreview.querySelector(this.previewValueSelector).href=e.attributes.href.value),this.anchorPreview.classList.add("medium-toolbar-arrow-over"),this.anchorPreview.classList.remove("medium-toolbar-arrow-under"),this.anchorPreview.classList.contains("medium-editor-anchor-preview-active")||this.anchorPreview.classList.add("medium-editor-anchor-preview-active"),this.activeAnchor=e,this.positionPreview(),this.attachPreviewHandlers(),this)},positionPreview:function(e){e=e||this.activeAnchor;var t,n,r,i,o,a=this.window.innerWidth,s=this.anchorPreview.offsetHeight,u=e.getBoundingClientRect(),c=this.diffLeft,l=this.diffTop,f=this.getEditorOption("elementsContainer"),d=["absolute","fixed"].indexOf(window.getComputedStyle(f).getPropertyValue("position"))>-1,h={};t=this.anchorPreview.offsetWidth/2;var p=this.base.getExtensionByName("toolbar");p&&(c=p.diffLeft,l=p.diffTop),n=c-t,d?(i=f.getBoundingClientRect(),["top","left"].forEach(function(e){h[e]=u[e]-i[e]}),h.width=u.width,h.height=u.height,u=h,a=i.width,o=f.scrollTop):o=this.window.pageYOffset,r=u.left+u.width/2,o+=s+u.top+u.height-l-this.anchorPreview.offsetHeight,this.anchorPreview.style.top=Math.round(o)+"px",this.anchorPreview.style.right="initial",r<t?(this.anchorPreview.style.left=n+t+"px",this.anchorPreview.style.right="initial"):a-r<t?(this.anchorPreview.style.left="auto",this.anchorPreview.style.right=0):(this.anchorPreview.style.left=n+r+"px",this.anchorPreview.style.right="initial")},attachToEditables:function(){this.subscribe("editableMouseover",this.handleEditableMouseover.bind(this)),this.subscribe("positionedToolbar",this.handlePositionedToolbar.bind(this))},handlePositionedToolbar:function(){this.showWhenToolbarIsVisible||this.hidePreview()},handleClick:function(e){var t=this.base.getExtensionByName("anchor"),n=this.activeAnchor;t&&n&&(e.preventDefault(),this.base.selectElement(this.activeAnchor),this.base.delay(function(){if(n){var e={value:n.attributes.href.value,target:n.getAttribute("target"),buttonClass:n.getAttribute("class")};t.showForm(e),n=null}}.bind(this))),this.hidePreview()},handleAnchorMouseout:function(){this.anchorToPreview=null,this.off(this.activeAnchor,"mouseout",this.instanceHandleAnchorMouseout),this.instanceHandleAnchorMouseout=null},handleEditableMouseover:function(t){var n=e.util.getClosestTag(t.target,"a");if(!1!==n){if(!this.showOnEmptyLinks&&(!/href=["']\S+["']/.test(n.outerHTML)||/href=["']#\S+["']/.test(n.outerHTML)))return!0;var r=this.base.getExtensionByName("toolbar");if(!this.showWhenToolbarIsVisible&&r&&r.isDisplayed&&r.isDisplayed())return!0;this.activeAnchor&&this.activeAnchor!==n&&this.detachPreviewHandlers(),this.anchorToPreview=n,this.instanceHandleAnchorMouseout=this.handleAnchorMouseout.bind(this),this.on(this.anchorToPreview,"mouseout",this.instanceHandleAnchorMouseout),this.base.delay(function(){this.anchorToPreview&&this.showPreview(this.anchorToPreview)}.bind(this))}},handlePreviewMouseover:function(){this.lastOver=(new Date).getTime(),this.hovering=!0},handlePreviewMouseout:function(e){e.relatedTarget&&/anchor-preview/.test(e.relatedTarget.className)||(this.hovering=!1)},updatePreview:function(){if(this.hovering)return!0;(new Date).getTime()-this.lastOver>this.hideDelay&&this.detachPreviewHandlers()},detachPreviewHandlers:function(){clearInterval(this.intervalTimer),this.instanceHandlePreviewMouseover&&(this.off(this.anchorPreview,"mouseover",this.instanceHandlePreviewMouseover),this.off(this.anchorPreview,"mouseout",this.instanceHandlePreviewMouseout),this.activeAnchor&&(this.off(this.activeAnchor,"mouseover",this.instanceHandlePreviewMouseover),this.off(this.activeAnchor,"mouseout",this.instanceHandlePreviewMouseout))),this.hidePreview(),this.hovering=this.instanceHandlePreviewMouseover=this.instanceHandlePreviewMouseout=null},attachPreviewHandlers:function(){this.lastOver=(new Date).getTime(),this.hovering=!0,this.instanceHandlePreviewMouseover=this.handlePreviewMouseover.bind(this),this.instanceHandlePreviewMouseout=this.handlePreviewMouseout.bind(this),this.intervalTimer=setInterval(this.updatePreview.bind(this),200),this.on(this.anchorPreview,"mouseover",this.instanceHandlePreviewMouseover),this.on(this.anchorPreview,"mouseout",this.instanceHandlePreviewMouseout),this.on(this.activeAnchor,"mouseover",this.instanceHandlePreviewMouseover),this.on(this.activeAnchor,"mouseout",this.instanceHandlePreviewMouseout)}});e.extensions.anchorPreview=t}(),function(){function t(t){return!e.util.getClosestTag(t,"a")}var n,r,i,o,a;n=[" ","\t","\n","\r"," "," "," "," "," ","\u2028","\u2029"],r="com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw",i="(((?:(https?://|ftps?://|nntp://)|www\\d{0,3}[.]|[a-z0-9.\\-]+[.]("+r+")\\/)\\S+(?:[^\\s`!\\[\\]{};:'\".,?«»“”‘’])))|(([a-z0-9\\-]+\\.)?[a-z0-9\\-]+\\.("+r+"))",o=new RegExp("^("+r+")$","i"),a=new RegExp(i,"gi");var s=e.Extension.extend({init:function(){e.Extension.prototype.init.apply(this,arguments),this.disableEventHandling=!1,this.subscribe("editableKeypress",this.onKeypress.bind(this)),this.subscribe("editableBlur",this.onBlur.bind(this)),this.document.execCommand("AutoUrlDetect",!1,!1)},isLastInstance:function(){for(var e=0,t=0;t<this.window._mediumEditors.length;t++){var n=this.window._mediumEditors[t];null!==n&&void 0!==n.getExtensionByName("autoLink")&&e++}return 1===e},destroy:function(){this.document.queryCommandSupported("AutoUrlDetect")&&this.isLastInstance()&&this.document.execCommand("AutoUrlDetect",!1,!0)},onBlur:function(e,t){this.performLinking(t)},onKeypress:function(t){this.disableEventHandling||e.util.isKey(t,[e.util.keyCode.SPACE,e.util.keyCode.ENTER])&&(clearTimeout(this.performLinkingTimeout),this.performLinkingTimeout=setTimeout(function(){try{var e=this.base.exportSelection();this.performLinking(t.target)&&this.base.importSelection(e,!0)}catch(e){window.console&&window.console.error("Failed to perform linking",e),this.disableEventHandling=!0}}.bind(this),0))},performLinking:function(t){var n=e.util.splitByBlockElements(t),r=!1;0===n.length&&(n=[t]);for(var i=0;i<n.length;i++)r=this.removeObsoleteAutoLinkSpans(n[i])||r,r=this.performLinkingWithinElement(n[i])||r;return this.base.events.updateInput(t,{target:t,currentTarget:t}),r},removeObsoleteAutoLinkSpans:function(n){if(!n||3===n.nodeType)return!1;for(var r=n.querySelectorAll('span[data-auto-link="true"]'),i=!1,o=0;o<r.length;o++){var a=r[o].textContent;if(-1===a.indexOf("://")&&(a=e.util.ensureUrlHasProtocol(a)),r[o].getAttribute("data-href")!==a&&t(r[o])){i=!0;var s=a.replace(/\s+$/,"");if(r[o].getAttribute("data-href")===s){var u=a.length-s.length,c=e.util.splitOffDOMTree(r[o],this.splitTextBeforeEnd(r[o],u));r[o].parentNode.insertBefore(c,r[o].nextSibling)}else e.util.unwrap(r[o],this.document)}}return i},splitTextBeforeEnd:function(e,t){for(var n=this.document.createTreeWalker(e,NodeFilter.SHOW_TEXT,null,!1),r=!0;r;)r=null!==n.lastChild();for(var i,o,a;t>0&&null!==a;)i=n.currentNode,o=i.nodeValue,o.length>t?(a=i.splitText(o.length-t),t=0):(a=n.previousNode(),t-=o.length);return a},performLinkingWithinElement:function(t){for(var n=this.findLinkableText(t),r=0;r<n.length;r++){var i=e.util.findOrCreateMatchingTextNodes(this.document,t,n[r]);this.shouldNotLink(i)||this.createAutoLink(i,n[r].href)}return!1},shouldNotLink:function(t){for(var n=!1,r=0;r<t.length&&!1===n;r++)n=!!e.util.traverseUp(t[r],function(e){return"a"===e.nodeName.toLowerCase()||e.getAttribute&&"true"===e.getAttribute("data-auto-link")});return n},findLinkableText:function(e){for(var t=e.textContent,r=null,i=[];null!==(r=a.exec(t));){var s=!0,u=r.index+r[0].length;s=!(0!==r.index&&-1===n.indexOf(t[r.index-1])||u!==t.length&&-1===n.indexOf(t[u])),s=s&&(-1!==r[0].indexOf("/")||o.test(r[0].split(".").pop().split("?").shift())),s&&i.push({href:r[0],start:r.index,end:u})}return i},createAutoLink:function(t,n){n=e.util.ensureUrlHasProtocol(n);var r=e.util.createLink(this.document,t,n,this.getEditorOption("targetBlank")?"_blank":null),i=this.document.createElement("span");for(i.setAttribute("data-auto-link","true"),i.setAttribute("data-href",n),r.insertBefore(i,r.firstChild);r.childNodes.length>1;)i.appendChild(r.childNodes[1])}});e.extensions.autoLink=s}(),function(){function t(t){var r=e.util.getContainerEditorElement(t);Array.prototype.slice.call(r.parentElement.querySelectorAll("."+n)).forEach(function(e){e.classList.remove(n)})}var n="medium-editor-dragover",r=e.Extension.extend({name:"fileDragging",allowedTypes:["image"],init:function(){e.Extension.prototype.init.apply(this,arguments),this.subscribe("editableDrag",this.handleDrag.bind(this)),this.subscribe("editableDrop",this.handleDrop.bind(this))},handleDrag:function(e){e.preventDefault(),e.dataTransfer.dropEffect="copy";var r=e.target.classList?e.target:e.target.parentElement;t(r),"dragover"===e.type&&r.classList.add(n)},handleDrop:function(e){e.preventDefault(),e.stopPropagation(),this.base.selectElement(e.target);var n=this.base.exportSelection();n.start=n.end,this.base.importSelection(n),e.dataTransfer.files&&Array.prototype.slice.call(e.dataTransfer.files).forEach(function(e){this.isAllowedFile(e)&&e.type.match("image")&&this.insertImageFile(e)},this),t(e.target)},isAllowedFile:function(e){return this.allowedTypes.some(function(t){return!!e.type.match(t)})},insertImageFile:function(t){if("function"==typeof FileReader){var n=new FileReader;n.readAsDataURL(t),n.addEventListener("load",function(t){var n=this.document.createElement("img");n.src=t.target.result,e.util.insertHTMLCommand(this.document,n.outerHTML)}.bind(this))}}});e.extensions.fileDragging=r}(),function(){var t=e.Extension.extend({name:"keyboard-commands",commands:[{command:"bold",key:"B",meta:!0,shift:!1,alt:!1},{command:"italic",key:"I",meta:!0,shift:!1,alt:!1},{command:"underline",key:"U",meta:!0,shift:!1,alt:!1}],init:function(){e.Extension.prototype.init.apply(this,arguments),this.subscribe("editableKeydown",this.handleKeydown.bind(this)),this.keys={},this.commands.forEach(function(e){var t=e.key.charCodeAt(0);this.keys[t]||(this.keys[t]=[]),this.keys[t].push(e)},this)},handleKeydown:function(t){var n=e.util.getKeyCode(t);if(this.keys[n]){var r=e.util.isMetaCtrlKey(t),i=!!t.shiftKey,o=!!t.altKey;this.keys[n].forEach(function(e){e.meta!==r||e.shift!==i||e.alt!==o&&void 0!==e.alt||(t.preventDefault(),t.stopPropagation(),"function"==typeof e.command?e.command.apply(this):!1!==e.command&&this.execAction(e.command))},this)}}});e.extensions.keyboardCommands=t}(),function(){var t=e.extensions.form.extend({name:"fontname",action:"fontName",aria:"change font name",contentDefault:"&#xB1;",contentFA:'<i class="fa fa-font"></i>',fonts:["","Arial","Verdana","Times New Roman"],init:function(){e.extensions.form.prototype.init.apply(this,arguments)},handleClick:function(e){if(e.preventDefault(),e.stopPropagation(),!this.isDisplayed()){var t=this.document.queryCommandValue("fontName")+"";this.showForm(t)}return!1},getForm:function(){return this.form||(this.form=this.createForm()),this.form},isDisplayed:function(){return"block"===this.getForm().style.display},hideForm:function(){this.getForm().style.display="none",this.getSelect().value=""},showForm:function(e){var t=this.getSelect();this.base.saveSelection(),this.hideToolbarDefaultActions(),this.getForm().style.display="block",this.setToolbarPosition(),t.value=e||"",t.focus()},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},doFormSave:function(){this.base.restoreSelection(),this.base.checkSelection()},doFormCancel:function(){this.base.restoreSelection(),this.clearFontName(),this.base.checkSelection()},createForm:function(){var e,t=this.document,n=t.createElement("div"),r=t.createElement("select"),i=t.createElement("a"),o=t.createElement("a");n.className="medium-editor-toolbar-form",n.id="medium-editor-toolbar-form-fontname-"+this.getEditorId(),this.on(n,"click",this.handleFormClick.bind(this));for(var a=0;a<this.fonts.length;a++)e=t.createElement("option"),e.innerHTML=this.fonts[a],e.value=this.fonts[a],r.appendChild(e);return r.className="medium-editor-toolbar-select",n.appendChild(r),this.on(r,"change",this.handleFontChange.bind(this)),o.setAttribute("href","#"),o.className="medium-editor-toobar-save",o.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':"&#10003;",n.appendChild(o),this.on(o,"click",this.handleSaveClick.bind(this),!0),i.setAttribute("href","#"),i.className="medium-editor-toobar-close",i.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':"&times;",n.appendChild(i),this.on(i,"click",this.handleCloseClick.bind(this)),n},getSelect:function(){return this.getForm().querySelector("select.medium-editor-toolbar-select")},clearFontName:function(){e.selection.getSelectedElements(this.document).forEach(function(e){"font"===e.nodeName.toLowerCase()&&e.hasAttribute("face")&&e.removeAttribute("face")})},handleFontChange:function(){var e=this.getSelect().value;""===e?this.clearFontName():this.execAction("fontName",{value:e})},handleFormClick:function(e){e.stopPropagation()},handleSaveClick:function(e){e.preventDefault(),this.doFormSave()},handleCloseClick:function(e){e.preventDefault(),this.doFormCancel()}});e.extensions.fontName=t}(),function(){var t=e.extensions.form.extend({name:"fontsize",action:"fontSize",aria:"increase/decrease font size",contentDefault:"&#xB1;",contentFA:'<i class="fa fa-text-height"></i>',init:function(){e.extensions.form.prototype.init.apply(this,arguments)},handleClick:function(e){if(e.preventDefault(),e.stopPropagation(),!this.isDisplayed()){var t=this.document.queryCommandValue("fontSize")+"";this.showForm(t)}return!1},getForm:function(){return this.form||(this.form=this.createForm()),this.form},isDisplayed:function(){return"block"===this.getForm().style.display},hideForm:function(){this.getForm().style.display="none",this.getInput().value=""},showForm:function(e){var t=this.getInput();this.base.saveSelection(),this.hideToolbarDefaultActions(),this.getForm().style.display="block",this.setToolbarPosition(),t.value=e||"",t.focus()},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},doFormSave:function(){this.base.restoreSelection(),this.base.checkSelection()},doFormCancel:function(){this.base.restoreSelection(),this.clearFontSize(),this.base.checkSelection()},createForm:function(){var e=this.document,t=e.createElement("div"),n=e.createElement("input"),r=e.createElement("a"),i=e.createElement("a");return t.className="medium-editor-toolbar-form",t.id="medium-editor-toolbar-form-fontsize-"+this.getEditorId(),this.on(t,"click",this.handleFormClick.bind(this)),n.setAttribute("type","range"),n.setAttribute("min","1"),n.setAttribute("max","7"),n.className="medium-editor-toolbar-input",t.appendChild(n),this.on(n,"change",this.handleSliderChange.bind(this)),i.setAttribute("href","#"),i.className="medium-editor-toobar-save",i.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':"&#10003;",t.appendChild(i),this.on(i,"click",this.handleSaveClick.bind(this),!0),r.setAttribute("href","#"),r.className="medium-editor-toobar-close",r.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':"&times;",t.appendChild(r),this.on(r,"click",this.handleCloseClick.bind(this)),t},getInput:function(){return this.getForm().querySelector("input.medium-editor-toolbar-input")},clearFontSize:function(){e.selection.getSelectedElements(this.document).forEach(function(e){"font"===e.nodeName.toLowerCase()&&e.hasAttribute("size")&&e.removeAttribute("size")})},handleSliderChange:function(){var e=this.getInput().value;"4"===e?this.clearFontSize():this.execAction("fontSize",{value:e})},handleFormClick:function(e){e.stopPropagation()},handleSaveClick:function(e){e.preventDefault(),this.doFormSave()},handleCloseClick:function(e){e.preventDefault(),this.doFormCancel()}});e.extensions.fontSize=t}(),function(){function t(){return[[new RegExp(/^[\s\S]*<body[^>]*>\s*|\s*<\/body[^>]*>[\s\S]*$/g),""],[new RegExp(/<!--StartFragment-->|<!--EndFragment-->/g),""],[new RegExp(/<br>$/i),""],[new RegExp(/<[^>]*docs-internal-guid[^>]*>/gi),""],[new RegExp(/<\/b>(<br[^>]*>)?$/gi),""],[new RegExp(/<span class="Apple-converted-space">\s+<\/span>/g)," "],[new RegExp(/<br class="Apple-interchange-newline">/g),"<br>"],[new RegExp(/<span[^>]*(font-style:italic;font-weight:(bold|700)|font-weight:(bold|700);font-style:italic)[^>]*>/gi),'<span class="replace-with italic bold">'],[new RegExp(/<span[^>]*font-style:italic[^>]*>/gi),'<span class="replace-with italic">'],[new RegExp(/<span[^>]*font-weight:(bold|700)[^>]*>/gi),'<span class="replace-with bold">'],[new RegExp(/&lt;(\/?)(i|b|a)&gt;/gi),"<$1$2>"],[new RegExp(/&lt;a(?:(?!href).)+href=(?:&quot;|&rdquo;|&ldquo;|"|“|”)(((?!&quot;|&rdquo;|&ldquo;|"|“|”).)*)(?:&quot;|&rdquo;|&ldquo;|"|“|”)(?:(?!&gt;).)*&gt;/gi),'<a href="$1">'],[new RegExp(/<\/p>\n+/gi),"</p>"],[new RegExp(/\n+<p/gi),"<p"],[new RegExp(/<\/?o:[a-z]*>/gi),""],[new RegExp(/<!\[if !supportLists\]>(((?!<!).)*)<!\[endif]\>/gi),"$1"]]}function n(e,t,n){var r=e.clipboardData||t.clipboardData||n.dataTransfer,i={};if(!r)return i;if(r.getData){var o=r.getData("Text");o&&o.length>0&&(i["text/plain"]=o)}if(r.types)for(var a=0;a<r.types.length;a++){var s=r.types[a];i[s]=r.getData(s)}return i}var r=null,i=null,o=function(e){e.stopPropagation()},a=e.Extension.extend({forcePlainText:!0,cleanPastedHTML:!1,preCleanReplacements:[],cleanReplacements:[],cleanAttrs:["class","style","dir"],cleanTags:["meta"],unwrapTags:[],init:function(){e.Extension.prototype.init.apply(this,arguments),(this.forcePlainText||this.cleanPastedHTML)&&(this.subscribe("editableKeydown",this.handleKeydown.bind(this)),this.getEditorElements().forEach(function(e){this.on(e,"paste",this.handlePaste.bind(this))},this),this.subscribe("addElement",this.handleAddElement.bind(this)))},handleAddElement:function(e,t){this.on(t,"paste",this.handlePaste.bind(this))},destroy:function(){(this.forcePlainText||this.cleanPastedHTML)&&this.removePasteBin()},handlePaste:function(e,t){if(!e.defaultPrevented){var r=n(e,this.window,this.document),i=r["text/html"],o=r["text/plain"];this.window.clipboardData&&void 0===e.clipboardData&&!i&&(i=o),(i||o)&&(e.preventDefault(),this.doPaste(i,o,t))}},doPaste:function(t,n,r){var i,o,a="";if(this.cleanPastedHTML&&t)return this.cleanPaste(t);if(this.getEditorOption("disableReturn")||r&&r.getAttribute("data-disable-return"))a=e.util.htmlEntities(n);else if(i=n.split(/[\r\n]+/g),i.length>1)for(o=0;o<i.length;o+=1)""!==i[o]&&(a+="<p>"+e.util.htmlEntities(i[o])+"</p>");else a=e.util.htmlEntities(i[0]);e.util.insertHTMLCommand(this.document,a)},handlePasteBinPaste:function(e){if(e.defaultPrevented)return void this.removePasteBin();var t=n(e,this.window,this.document),r=t["text/html"],o=t["text/plain"],a=i;if(!this.cleanPastedHTML||r)return e.preventDefault(),this.removePasteBin(),this.doPaste(r,o,a),void this.trigger("editablePaste",{currentTarget:a,target:a},a);setTimeout(function(){this.cleanPastedHTML&&(r=this.getPasteBinHtml()),this.removePasteBin(),this.doPaste(r,o,a),this.trigger("editablePaste",{currentTarget:a,target:a},a)}.bind(this),0)},handleKeydown:function(t,n){e.util.isKey(t,e.util.keyCode.V)&&e.util.isMetaCtrlKey(t)&&(t.stopImmediatePropagation(),this.removePasteBin(),this.createPasteBin(n))},createPasteBin:function(t){var n,a=e.selection.getSelectionRange(this.document),s=this.window.pageYOffset;i=t,a&&(n=a.getClientRects(),n.length?s+=n[0].top:void 0!==a.startContainer.getBoundingClientRect?s+=a.startContainer.getBoundingClientRect().top:s+=a.getBoundingClientRect().top),r=a;var u=this.document.createElement("div");u.id=this.pasteBinId="medium-editor-pastebin-"+ +Date.now(),u.setAttribute("style","border: 1px red solid; position: absolute; top: "+s+"px; width: 10px; height: 10px; overflow: hidden; opacity: 0"),u.setAttribute("contentEditable",!0),u.innerHTML="%ME_PASTEBIN%",this.document.body.appendChild(u),this.on(u,"focus",o),this.on(u,"focusin",o),this.on(u,"focusout",o),u.focus(),e.selection.selectNode(u,this.document),this.boundHandlePaste||(this.boundHandlePaste=this.handlePasteBinPaste.bind(this)),this.on(u,"paste",this.boundHandlePaste)},removePasteBin:function(){null!==r&&(e.selection.selectRange(this.document,r),r=null),null!==i&&(i=null);var t=this.getPasteBin();t&&t&&(this.off(t,"focus",o),this.off(t,"focusin",o),this.off(t,"focusout",o),this.off(t,"paste",this.boundHandlePaste),t.parentElement.removeChild(t))},getPasteBin:function(){return this.document.getElementById(this.pasteBinId)},getPasteBinHtml:function(){var e=this.getPasteBin();if(!e)return!1;if(e.firstChild&&"mcepastebin"===e.firstChild.id)return!1;var t=e.innerHTML;return!(!t||"%ME_PASTEBIN%"===t)&&t},cleanPaste:function(e){var n,r,i,o,a=/<p|<br|<div/.test(e),s=[].concat(this.preCleanReplacements||[],t(),this.cleanReplacements||[]);for(n=0;n<s.length;n+=1)e=e.replace(s[n][0],s[n][1]);if(!a)return this.pasteHTML(e);for(i=this.document.createElement("div"),i.innerHTML="<p>"+e.split("<br><br>").join("</p><p>")+"</p>",r=i.querySelectorAll("a,p,div,br"),n=0;n<r.length;n+=1)switch(o=r[n],o.innerHTML=o.innerHTML.replace(/\n/gi," "),o.nodeName.toLowerCase()){case"p":case"div":this.filterCommonBlocks(o);break;case"br":this.filterLineBreak(o)}this.pasteHTML(i.innerHTML)},pasteHTML:function(t,n){n=e.util.defaults({},n,{cleanAttrs:this.cleanAttrs,cleanTags:this.cleanTags,unwrapTags:this.unwrapTags});var r,i,o,a,s=this.document.createDocumentFragment();for(s.appendChild(this.document.createElement("body")),a=s.querySelector("body"),a.innerHTML=t,this.cleanupSpans(a),r=a.querySelectorAll("*"),o=0;o<r.length;o+=1)i=r[o],"a"===i.nodeName.toLowerCase()&&this.getEditorOption("targetBlank")&&e.util.setTargetBlank(i),e.util.cleanupAttrs(i,n.cleanAttrs),e.util.cleanupTags(i,n.cleanTags),e.util.unwrapTags(i,n.unwrapTags);e.util.insertHTMLCommand(this.document,a.innerHTML.replace(/&nbsp;/g," "))},isCommonBlock:function(e){return e&&("p"===e.nodeName.toLowerCase()||"div"===e.nodeName.toLowerCase())},filterCommonBlocks:function(e){/^\s*$/.test(e.textContent)&&e.parentNode&&e.parentNode.removeChild(e)},filterLineBreak:function(e){this.isCommonBlock(e.previousElementSibling)?this.removeWithParent(e):!this.isCommonBlock(e.parentNode)||e.parentNode.firstChild!==e&&e.parentNode.lastChild!==e?e.parentNode&&1===e.parentNode.childElementCount&&""===e.parentNode.textContent&&this.removeWithParent(e):this.removeWithParent(e)},removeWithParent:function(e){e&&e.parentNode&&(e.parentNode.parentNode&&1===e.parentNode.childElementCount?e.parentNode.parentNode.removeChild(e.parentNode):e.parentNode.removeChild(e))},cleanupSpans:function(t){var n,r,i,o=t.querySelectorAll(".replace-with"),a=function(e){return e&&"#text"!==e.nodeName&&"false"===e.getAttribute("contenteditable")};for(n=0;n<o.length;n+=1)r=o[n],i=this.document.createElement(r.classList.contains("bold")?"b":"i"),r.classList.contains("bold")&&r.classList.contains("italic")?i.innerHTML="<i>"+r.innerHTML+"</i>":i.innerHTML=r.innerHTML,r.parentNode.replaceChild(i,r);for(o=t.querySelectorAll("span"),n=0;n<o.length;n+=1){if(r=o[n],e.util.traverseUp(r,a))return!1;e.util.unwrap(r,this.document)}}});e.extensions.paste=a}(),function(){var t=e.Extension.extend({name:"placeholder",text:"Type your text",hideOnClick:!0,init:function(){e.Extension.prototype.init.apply(this,arguments),this.initPlaceholders(),this.attachEventHandlers()},initPlaceholders:function(){this.getEditorElements().forEach(this.initElement,this)},handleAddElement:function(e,t){this.initElement(t)},initElement:function(e){e.getAttribute("data-placeholder")||e.setAttribute("data-placeholder",this.text),this.updatePlaceholder(e)},destroy:function(){this.getEditorElements().forEach(this.cleanupElement,this)},handleRemoveElement:function(e,t){this.cleanupElement(t)},cleanupElement:function(e){e.getAttribute("data-placeholder")===this.text&&e.removeAttribute("data-placeholder")},showPlaceholder:function(t){t&&(e.util.isFF&&0===t.childNodes.length?(t.classList.add("medium-editor-placeholder-relative"),t.classList.remove("medium-editor-placeholder")):(t.classList.add("medium-editor-placeholder"),t.classList.remove("medium-editor-placeholder-relative")))},hidePlaceholder:function(e){e&&(e.classList.remove("medium-editor-placeholder"),e.classList.remove("medium-editor-placeholder-relative"))},updatePlaceholder:function(e,t){if(e.querySelector("img, blockquote, ul, ol, table")||""!==e.textContent.replace(/^\s+|\s+$/g,""))return this.hidePlaceholder(e);t||this.showPlaceholder(e)},attachEventHandlers:function(){this.hideOnClick&&this.subscribe("focus",this.handleFocus.bind(this)),this.subscribe("editableInput",this.handleInput.bind(this)),this.subscribe("blur",this.handleBlur.bind(this)),this.subscribe("addElement",this.handleAddElement.bind(this)),this.subscribe("removeElement",this.handleRemoveElement.bind(this))},handleInput:function(e,t){var n=this.hideOnClick&&t===this.base.getFocusedElement();this.updatePlaceholder(t,n)},handleFocus:function(e,t){this.hidePlaceholder(t)},handleBlur:function(e,t){this.updatePlaceholder(t)}});e.extensions.placeholder=t}(),function(){var t=e.Extension.extend({name:"toolbar",align:"center",allowMultiParagraphSelection:!0,buttons:["bold","italic","underline","anchor","h2","h3","quote"],diffLeft:0,diffTop:-10,firstButtonClass:"medium-editor-button-first",lastButtonClass:"medium-editor-button-last",standardizeSelectionStart:!1,static:!1,sticky:!1,stickyTopOffset:0,updateOnEmptySelection:!1,relativeContainer:null,init:function(){e.Extension.prototype.init.apply(this,arguments),this.initThrottledMethods(),this.relativeContainer?this.relativeContainer.appendChild(this.getToolbarElement()):this.getEditorOption("elementsContainer").appendChild(this.getToolbarElement())},forEachExtension:function(e,t){return this.base.extensions.forEach(function(n){if(n!==this)return e.apply(t||this,arguments)},this)},createToolbar:function(){var e=this.document.createElement("div");return e.id="medium-editor-toolbar-"+this.getEditorId(),e.className="medium-editor-toolbar",this.static?e.className+=" static-toolbar":this.relativeContainer?e.className+=" medium-editor-relative-toolbar":e.className+=" medium-editor-stalker-toolbar",e.appendChild(this.createToolbarButtons()),this.forEachExtension(function(t){t.hasForm&&e.appendChild(t.getForm())}),this.attachEventHandlers(),e},createToolbarButtons:function(){var t,n,r,i,o,a,s=this.document.createElement("ul");return s.id="medium-editor-toolbar-actions"+this.getEditorId(),s.className="medium-editor-toolbar-actions",s.style.display="block",this.buttons.forEach(function(r){"string"==typeof r?(o=r,a=null):(o=r.name,a=r),(i=this.base.addBuiltInExtension(o,a))&&"function"==typeof i.getButton&&(n=i.getButton(this.base),t=this.document.createElement("li"),e.util.isElement(n)?t.appendChild(n):t.innerHTML=n,s.appendChild(t))},this),r=s.querySelectorAll("button"),r.length>0&&(r[0].classList.add(this.firstButtonClass),r[r.length-1].classList.add(this.lastButtonClass)),s},destroy:function(){this.toolbar&&(this.toolbar.parentNode&&this.toolbar.parentNode.removeChild(this.toolbar),delete this.toolbar)},getInteractionElements:function(){return this.getToolbarElement()},getToolbarElement:function(){return this.toolbar||(this.toolbar=this.createToolbar()),this.toolbar},getToolbarActionsElement:function(){return this.getToolbarElement().querySelector(".medium-editor-toolbar-actions")},initThrottledMethods:function(){this.throttledPositionToolbar=e.util.throttle(function(){this.base.isActive&&this.positionToolbarIfShown()}.bind(this))},attachEventHandlers:function(){this.subscribe("blur",this.handleBlur.bind(this)),this.subscribe("focus",this.handleFocus.bind(this)),this.subscribe("editableClick",this.handleEditableClick.bind(this)),this.subscribe("editableKeyup",this.handleEditableKeyup.bind(this)),this.on(this.document.documentElement,"mouseup",this.handleDocumentMouseup.bind(this)),this.static&&this.sticky&&this.on(this.window,"scroll",this.handleWindowScroll.bind(this),!0),this.on(this.window,"resize",this.handleWindowResize.bind(this))},handleWindowScroll:function(){this.positionToolbarIfShown()},handleWindowResize:function(){this.throttledPositionToolbar()},handleDocumentMouseup:function(t){if(t&&t.target&&e.util.isDescendant(this.getToolbarElement(),t.target))return!1;this.checkState()},handleEditableClick:function(){setTimeout(function(){this.checkState()}.bind(this),0)},handleEditableKeyup:function(){this.checkState()},handleBlur:function(){clearTimeout(this.hideTimeout),clearTimeout(this.delayShowTimeout),this.hideTimeout=setTimeout(function(){this.hideToolbar()}.bind(this),1)},handleFocus:function(){this.checkState()},isDisplayed:function(){return this.getToolbarElement().classList.contains("medium-editor-toolbar-active")},showToolbar:function(){clearTimeout(this.hideTimeout),this.isDisplayed()||(this.getToolbarElement().classList.add("medium-editor-toolbar-active"),this.trigger("showToolbar",{},this.base.getFocusedElement()))},hideToolbar:function(){this.isDisplayed()&&(this.getToolbarElement().classList.remove("medium-editor-toolbar-active"),this.trigger("hideToolbar",{},this.base.getFocusedElement()))},isToolbarDefaultActionsDisplayed:function(){return"block"===this.getToolbarActionsElement().style.display},hideToolbarDefaultActions:function(){this.isToolbarDefaultActionsDisplayed()&&(this.getToolbarActionsElement().style.display="none")},showToolbarDefaultActions:function(){this.hideExtensionForms(),this.isToolbarDefaultActionsDisplayed()||(this.getToolbarActionsElement().style.display="block"),this.delayShowTimeout=this.base.delay(function(){this.showToolbar()}.bind(this))},hideExtensionForms:function(){this.forEachExtension(function(e){e.hasForm&&e.isDisplayed()&&e.hideForm()})},multipleBlockElementsSelected:function(){var t=/<[^\/>][^>]*><\/[^>]+>/gim,n=new RegExp("<("+e.util.blockContainerElementNames.join("|")+")[^>]*>","g"),r=e.selection.getSelectionHtml(this.document).replace(t,""),i=r.match(n);return!!i&&i.length>1},modifySelection:function(){var t=this.window.getSelection(),n=t.getRangeAt(0);if(this.standardizeSelectionStart&&n.startContainer.nodeValue&&n.startOffset===n.startContainer.nodeValue.length){var r=e.util.findAdjacentTextNodeWithContent(e.selection.getSelectionElement(this.window),n.startContainer,this.document);if(r){for(var i=0;0===r.nodeValue.substr(i,1).trim().length;)i+=1;n=e.selection.select(this.document,r,i,n.endContainer,n.endOffset)}}},checkState:function(){if(!this.base.preventSelectionUpdates){if(!this.base.getFocusedElement()||e.selection.selectionInContentEditableFalse(this.window))return this.hideToolbar();var t=e.selection.getSelectionElement(this.window);return!t||-1===this.getEditorElements().indexOf(t)||t.getAttribute("data-disable-toolbar")?this.hideToolbar():this.updateOnEmptySelection&&this.static?this.showAndUpdateToolbar():!e.selection.selectionContainsContent(this.document)||!1===this.allowMultiParagraphSelection&&this.multipleBlockElementsSelected()?this.hideToolbar():void this.showAndUpdateToolbar()}},showAndUpdateToolbar:function(){this.modifySelection(),this.setToolbarButtonStates(),this.trigger("positionToolbar",{},this.base.getFocusedElement()),this.showToolbarDefaultActions(),this.setToolbarPosition()},setToolbarButtonStates:function(){this.forEachExtension(function(e){"function"==typeof e.isActive&&"function"==typeof e.setInactive&&e.setInactive()}),this.checkActiveButtons()},checkActiveButtons:function(){var t,n=[],r=null,i=e.selection.getSelectionRange(this.document),o=function(e){"function"==typeof e.checkState?e.checkState(t):"function"==typeof e.isActive&&"function"==typeof e.isAlreadyApplied&&"function"==typeof e.setActive&&!e.isActive()&&e.isAlreadyApplied(t)&&e.setActive()};if(i&&(this.forEachExtension(function(e){if("function"==typeof e.queryCommandState&&null!==(r=e.queryCommandState()))return void(r&&"function"==typeof e.setActive&&e.setActive());n.push(e)}),t=e.selection.getSelectedParentElement(i),this.getEditorElements().some(function(n){return e.util.isDescendant(n,t,!0)})))for(;t&&(n.forEach(o),!e.util.isMediumEditorElement(t));)t=t.parentNode},positionToolbarIfShown:function(){this.isDisplayed()&&this.setToolbarPosition()},setToolbarPosition:function(){var e=this.base.getFocusedElement(),t=this.window.getSelection();if(!e)return this;!this.static&&t.isCollapsed||(this.showToolbar(),this.relativeContainer||(this.static?this.positionStaticToolbar(e):this.positionToolbar(t)),this.trigger("positionedToolbar",{},this.base.getFocusedElement()))},positionStaticToolbar:function(e){this.getToolbarElement().style.left="0";var t,n=this.document.documentElement&&this.document.documentElement.scrollTop||this.document.body.scrollTop,r=this.window.innerWidth,i=this.getToolbarElement(),o=e.getBoundingClientRect(),a=o.top+n,s=o.left+o.width/2,u=i.offsetHeight,c=i.offsetWidth,l=c/2;switch(this.sticky?n>a+e.offsetHeight-u-this.stickyTopOffset?(i.style.top=a+e.offsetHeight-u+"px",i.classList.remove("medium-editor-sticky-toolbar")):n>a-u-this.stickyTopOffset?(i.classList.add("medium-editor-sticky-toolbar"),i.style.top=this.stickyTopOffset+"px"):(i.classList.remove("medium-editor-sticky-toolbar"),i.style.top=a-u+"px"):i.style.top=a-u+"px",this.align){case"left":t=o.left;break;case"right":t=o.right-c;break;case"center":t=s-l}t<0?t=0:t+c>r&&(t=r-Math.ceil(c)-1),i.style.left=t+"px"},positionToolbar:function(e){this.getToolbarElement().style.left="0",this.getToolbarElement().style.right="initial";var t=e.getRangeAt(0),n=t.getBoundingClientRect();(!n||0===n.height&&0===n.width&&t.startContainer===t.endContainer)&&(n=1===t.startContainer.nodeType&&t.startContainer.querySelector("img")?t.startContainer.querySelector("img").getBoundingClientRect():t.startContainer.getBoundingClientRect());var r,i,o=this.window.innerWidth,a=this.getToolbarElement(),s=a.offsetHeight,u=a.offsetWidth,c=u/2,l=this.diffLeft-c,f=this.getEditorOption("elementsContainer"),d=["absolute","fixed"].indexOf(window.getComputedStyle(f).getPropertyValue("position"))>-1,h={},p={};d?(i=f.getBoundingClientRect(),["top","left"].forEach(function(e){p[e]=n[e]-i[e]}),p.width=n.width,p.height=n.height,n=p,o=i.width,h.top=f.scrollTop):h.top=this.window.pageYOffset,r=n.left+n.width/2,h.top+=n.top-s,n.top<50?(a.classList.add("medium-toolbar-arrow-over"),a.classList.remove("medium-toolbar-arrow-under"),h.top+=50+n.height-this.diffTop):(a.classList.add("medium-toolbar-arrow-under"),a.classList.remove("medium-toolbar-arrow-over"),h.top+=this.diffTop),r<c?(h.left=l+c,h.right="initial"):o-r<c?(h.left="auto",h.right=0):(h.left=l+r,h.right="initial"),["top","left","right"].forEach(function(e){a.style[e]=h[e]+(isNaN(h[e])?"":"px")})}});e.extensions.toolbar=t}(),function(){var t=e.Extension.extend({init:function(){e.Extension.prototype.init.apply(this,arguments),this.subscribe("editableDrag",this.handleDrag.bind(this)),this.subscribe("editableDrop",this.handleDrop.bind(this))},handleDrag:function(e){e.preventDefault(),e.dataTransfer.dropEffect="copy","dragover"===e.type?e.target.classList.add("medium-editor-dragover"):"dragleave"===e.type&&e.target.classList.remove("medium-editor-dragover")},handleDrop:function(t){var n;t.preventDefault(),t.stopPropagation(),t.dataTransfer.files&&(n=Array.prototype.slice.call(t.dataTransfer.files,0),n.some(function(t){if(t.type.match("image")){var n,r;n=new FileReader,n.readAsDataURL(t),r="medium-img-"+ +new Date,e.util.insertHTMLCommand(this.document,'<img class="medium-editor-image-loading" id="'+r+'" />'),n.onload=function(){var e=this.document.getElementById(r);e&&(e.removeAttribute("id"),e.removeAttribute("class"),e.src=n.result)}.bind(this)}}.bind(this))),t.target.classList.remove("medium-editor-dragover")}});e.extensions.imageDragging=t}(),function(){function t(t){var n=e.selection.getSelectionStart(this.options.ownerDocument),r=n.textContent,i=e.selection.getCaretOffsets(n);(void 0===r[i.left-1]||""===r[i.left-1].trim()||void 0!==r[i.left]&&""===r[i.left].trim())&&t.preventDefault()}function n(t,n){if(this.options.disableReturn||n.getAttribute("data-disable-return"))t.preventDefault();else if(this.options.disableDoubleReturn||n.getAttribute("data-disable-double-return")){var r=e.selection.getSelectionStart(this.options.ownerDocument);(r&&""===r.textContent.trim()&&"li"!==r.nodeName.toLowerCase()||r.previousElementSibling&&"br"!==r.previousElementSibling.nodeName.toLowerCase()&&""===r.previousElementSibling.textContent.trim())&&t.preventDefault()}}function r(t){var n=e.selection.getSelectionStart(this.options.ownerDocument);"pre"===(n&&n.nodeName.toLowerCase())&&(t.preventDefault(),e.util.insertHTMLCommand(this.options.ownerDocument," ")),e.util.isListItem(n)&&(t.preventDefault(),t.shiftKey?this.options.ownerDocument.execCommand("outdent",!1,null):this.options.ownerDocument.execCommand("indent",!1,null))}function i(t){var n,r=e.selection.getSelectionStart(this.options.ownerDocument),i=r.nodeName.toLowerCase(),o=/^(\s+|<br\/?>)?$/i,a=/h\d/i;e.util.isKey(t,[e.util.keyCode.BACKSPACE,e.util.keyCode.ENTER])&&r.previousElementSibling&&a.test(i)&&0===e.selection.getCaretOffsets(r).left?e.util.isKey(t,e.util.keyCode.BACKSPACE)&&o.test(r.previousElementSibling.innerHTML)?(r.previousElementSibling.parentNode.removeChild(r.previousElementSibling),t.preventDefault()):!this.options.disableDoubleReturn&&e.util.isKey(t,e.util.keyCode.ENTER)&&(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.previousElementSibling.parentNode.insertBefore(n,r),t.preventDefault()):e.util.isKey(t,e.util.keyCode.DELETE)&&r.nextElementSibling&&r.previousElementSibling&&!a.test(i)&&o.test(r.innerHTML)&&a.test(r.nextElementSibling.nodeName.toLowerCase())?(e.selection.moveCursor(this.options.ownerDocument,r.nextElementSibling),r.previousElementSibling.parentNode.removeChild(r),t.preventDefault()):e.util.isKey(t,e.util.keyCode.BACKSPACE)&&"li"===i&&o.test(r.innerHTML)&&!r.previousElementSibling&&!r.parentElement.previousElementSibling&&r.nextElementSibling&&"li"===r.nextElementSibling.nodeName.toLowerCase()?(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.parentElement.parentElement.insertBefore(n,r.parentElement),e.selection.moveCursor(this.options.ownerDocument,n),r.parentElement.removeChild(r),t.preventDefault()):e.util.isKey(t,e.util.keyCode.BACKSPACE)&&!1!==e.util.getClosestTag(r,"blockquote")&&0===e.selection.getCaretOffsets(r).left?(t.preventDefault(),e.util.execFormatBlock(this.options.ownerDocument,"p")):e.util.isKey(t,e.util.keyCode.ENTER)&&!1!==e.util.getClosestTag(r,"blockquote")&&0===e.selection.getCaretOffsets(r).right?(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.parentElement.insertBefore(n,r.nextSibling),e.selection.moveCursor(this.options.ownerDocument,n),t.preventDefault()):e.util.isKey(t,e.util.keyCode.BACKSPACE)&&e.util.isMediumEditorElement(r.parentElement)&&!r.previousElementSibling&&r.nextElementSibling&&o.test(r.innerHTML)&&(t.preventDefault(),e.selection.moveCursor(this.options.ownerDocument,r.nextSibling),r.parentElement.removeChild(r))}function o(t){var n,r=e.selection.getSelectionStart(this.options.ownerDocument);r&&(e.util.isMediumEditorElement(r)&&0===r.children.length&&!e.util.isBlockContainer(r)&&this.options.ownerDocument.execCommand("formatBlock",!1,"p"),!e.util.isKey(t,e.util.keyCode.ENTER)||e.util.isListItem(r)||e.util.isBlockContainer(r)||(n=r.nodeName.toLowerCase(),"a"===n?this.options.ownerDocument.execCommand("unlink",!1,null):t.shiftKey||t.ctrlKey||this.options.ownerDocument.execCommand("formatBlock",!1,"p")))}function a(e,t){var n=t.parentNode.querySelector('textarea[medium-editor-textarea-id="'+t.getAttribute("medium-editor-textarea-id")+'"]');n&&(n.value=t.innerHTML.trim())}function s(e){e._mediumEditors||(e._mediumEditors=[null]),this.id||(this.id=e._mediumEditors.length),e._mediumEditors[this.id]=this}function u(e){e._mediumEditors&&e._mediumEditors[this.id]&&(e._mediumEditors[this.id]=null)}function c(t,n,r){var i=[];if(t||(t=[]),"string"==typeof t&&(t=n.querySelectorAll(t)),e.util.isElement(t)&&(t=[t]),r)for(var o=0;o<t.length;o++){var a=t[o];!e.util.isElement(a)||a.getAttribute("data-medium-editor-element")||a.getAttribute("medium-editor-textarea-id")||i.push(a)}else i=Array.prototype.slice.apply(t);return i}function l(e){var t=e.parentNode.querySelector('textarea[medium-editor-textarea-id="'+e.getAttribute("medium-editor-textarea-id")+'"]');t&&(t.classList.remove("medium-editor-hidden"),t.removeAttribute("medium-editor-textarea-id")),e.parentNode&&e.parentNode.removeChild(e)}function f(e,t){return Object.keys(t).forEach(function(n){void 0===e[n]&&(e[n]=t[n])}),e}function d(e,t,n){return e=f(e,{window:n.options.contentWindow,document:n.options.ownerDocument,base:n}),"function"==typeof e.init&&e.init(),e.name||(e.name=t),e}function h(){return!this.elements.every(function(e){return!!e.getAttribute("data-disable-toolbar")})&&!1!==this.options.toolbar}function p(){return!!h.call(this)&&!1!==this.options.anchorPreview}function v(){return!1!==this.options.placeholder}function m(){return!1!==this.options.autoLink}function g(){return!1!==this.options.imageDragging}function y(){return!1!==this.options.keyboardCommands}function b(){return!this.options.extensions.imageDragging}function w(e){for(var t=this.options.ownerDocument.createElement("div"),n=Date.now(),r="medium-editor-"+n,i=e.attributes;this.options.ownerDocument.getElementById(r);)n++,r="medium-editor-"+n;t.className=e.className,t.id=r,t.innerHTML=e.value,e.setAttribute("medium-editor-textarea-id",r);for(var o=0,a=i.length;o<a;o++)t.hasAttribute(i[o].nodeName)||t.setAttribute(i[o].nodeName,i[o].nodeValue);return e.form&&this.on(e.form,"reset",function(e){e.defaultPrevented||this.resetContent(this.options.ownerDocument.getElementById(r))}.bind(this)),e.classList.add("medium-editor-hidden"),e.parentNode.insertBefore(t,e),t}function _(t,r){if(!t.getAttribute("data-medium-editor-element")){"textarea"===t.nodeName.toLowerCase()&&(t=w.call(this,t),this.instanceHandleEditableInput||(this.instanceHandleEditableInput=a.bind(this),this.subscribe("editableInput",this.instanceHandleEditableInput))),this.options.disableEditing||t.getAttribute("data-disable-editing")||(t.setAttribute("contentEditable",!0),t.setAttribute("spellcheck",this.options.spellcheck)),this.instanceHandleEditableKeydownEnter||(t.getAttribute("data-disable-return")||t.getAttribute("data-disable-double-return"))&&(this.instanceHandleEditableKeydownEnter=n.bind(this),this.subscribe("editableKeydownEnter",this.instanceHandleEditableKeydownEnter)),this.options.disableReturn||t.getAttribute("data-disable-return")||this.on(t,"keyup",o.bind(this));var i=e.util.guid();t.setAttribute("data-medium-editor-element",!0),t.classList.add("medium-editor-element"),t.setAttribute("role","textbox"),t.setAttribute("aria-multiline",!0),t.setAttribute("data-medium-editor-editor-index",r),t.setAttribute("medium-editor-index",i),T[i]=t.innerHTML,this.events.attachAllEventsToElement(t)}return t}function C(){this.subscribe("editableKeydownTab",r.bind(this)),this.subscribe("editableKeydownDelete",i.bind(this)),this.subscribe("editableKeydownEnter",i.bind(this)),this.options.disableExtraSpaces&&this.subscribe("editableKeydownSpace",t.bind(this)),this.instanceHandleEditableKeydownEnter||(this.options.disableReturn||this.options.disableDoubleReturn)&&(this.instanceHandleEditableKeydownEnter=n.bind(this),this.subscribe("editableKeydownEnter",this.instanceHandleEditableKeydownEnter))}function k(){if(this.extensions=[],Object.keys(this.options.extensions).forEach(function(e){"toolbar"!==e&&this.options.extensions[e]&&this.extensions.push(d(this.options.extensions[e],e,this))},this),b.call(this)){var t=this.options.fileDragging;t||(t={},g.call(this)||(t.allowedTypes=[])),this.addBuiltInExtension("fileDragging",t)}var n={paste:!0,"anchor-preview":p.call(this),autoLink:m.call(this),keyboardCommands:y.call(this),placeholder:v.call(this)};Object.keys(n).forEach(function(e){n[e]&&this.addBuiltInExtension(e)},this);var r=this.options.extensions.toolbar;if(!r&&h.call(this)){var i=e.util.extend({},this.options.toolbar,{allowMultiParagraphSelection:this.options.allowMultiParagraphSelection});r=new e.extensions.toolbar(i)}r&&this.extensions.push(d(r,"toolbar",this))}function E(t,n){var r=[["allowMultiParagraphSelection","toolbar.allowMultiParagraphSelection"]];return n&&r.forEach(function(t){n.hasOwnProperty(t[0])&&void 0!==n[t[0]]&&e.util.deprecated(t[0],t[1],"v6.0.0")}),e.util.defaults({},n,t)}function x(t,n){var r,i,o=/^append-(.+)$/gi,a=/justify([A-Za-z]*)$/g;if(r=o.exec(t))return e.util.execFormatBlock(this.options.ownerDocument,r[1]);if("fontSize"===t)return n.size&&e.util.deprecated(".size option for fontSize command",".value","6.0.0"),i=n.value||n.size,this.options.ownerDocument.execCommand("fontSize",!1,i);if("fontName"===t)return n.name&&e.util.deprecated(".name option for fontName command",".value","6.0.0"),i=n.value||n.name,this.options.ownerDocument.execCommand("fontName",!1,i);if("createLink"===t)return this.createLink(n);if("image"===t){var s=this.options.contentWindow.getSelection().toString().trim();return this.options.ownerDocument.execCommand("insertImage",!1,s)}if("html"===t){var u=this.options.contentWindow.getSelection().toString().trim();return e.util.insertHTMLCommand(this.options.ownerDocument,u)}if(a.exec(t)){var c=this.options.ownerDocument.execCommand(t,!1,null),l=e.selection.getSelectedParentElement(e.selection.getSelectionRange(this.options.ownerDocument));return l&&S.call(this,e.util.getTopBlockContainer(l)),c}return i=n&&n.value,this.options.ownerDocument.execCommand(t,!1,i)}function S(t){if(t){var n,r=Array.prototype.slice.call(t.childNodes).filter(function(e){var t="div"===e.nodeName.toLowerCase();return t&&!n&&(n=e.style.textAlign),t});r.length&&(this.saveSelection(),r.forEach(function(t){if(t.style.textAlign===n){var r=t.lastChild;if(r){e.util.unwrap(t,this.options.ownerDocument);var i=this.options.ownerDocument.createElement("BR");r.parentNode.insertBefore(i,r.nextSibling)}}},this),t.style.textAlign=n,this.restoreSelection())}}var T={};e.prototype={init:function(e,t){return this.options=E.call(this,this.defaults,t),this.origElements=e,this.options.elementsContainer||(this.options.elementsContainer=this.options.ownerDocument.body),this.setup()},setup:function(){this.isActive||(s.call(this,this.options.contentWindow),this.events=new e.Events(this),this.elements=[],this.addElements(this.origElements),0!==this.elements.length&&(this.isActive=!0,k.call(this),C.call(this)))},destroy:function(){this.isActive&&(this.isActive=!1,this.extensions.forEach(function(e){"function"==typeof e.destroy&&e.destroy()},this),this.events.destroy(),this.elements.forEach(function(e){this.options.spellcheck&&(e.innerHTML=e.innerHTML),e.removeAttribute("contentEditable"),e.removeAttribute("spellcheck"),e.removeAttribute("data-medium-editor-element"),e.classList.remove("medium-editor-element"),e.removeAttribute("role"),e.removeAttribute("aria-multiline"),e.removeAttribute("medium-editor-index"),e.removeAttribute("data-medium-editor-editor-index"),e.getAttribute("medium-editor-textarea-id")&&l(e)},this),this.elements=[],this.instanceHandleEditableKeydownEnter=null,this.instanceHandleEditableInput=null,u.call(this,this.options.contentWindow))},on:function(e,t,n,r){return this.events.attachDOMEvent(e,t,n,r),this},off:function(e,t,n,r){return this.events.detachDOMEvent(e,t,n,r),this},subscribe:function(e,t){return this.events.attachCustomEvent(e,t),this},unsubscribe:function(e,t){return this.events.detachCustomEvent(e,t),this},trigger:function(e,t,n){return this.events.triggerCustomEvent(e,t,n),this},delay:function(e){var t=this;return setTimeout(function(){t.isActive&&e()},this.options.delay)},serialize:function(){var e,t,n={},r=this.elements.length;for(e=0;e<r;e+=1)t=""!==this.elements[e].id?this.elements[e].id:"element-"+e,n[t]={value:this.elements[e].innerHTML.trim()};return n},getExtensionByName:function(e){var t;return this.extensions&&this.extensions.length&&this.extensions.some(function(n){return n.name===e&&(t=n,!0)}),t},addBuiltInExtension:function(t,n){var r,i=this.getExtensionByName(t);if(i)return i;switch(t){case"anchor":r=e.util.extend({},this.options.anchor,n),i=new e.extensions.anchor(r);break;case"anchor-preview":i=new e.extensions.anchorPreview(this.options.anchorPreview);break;case"autoLink":i=new e.extensions.autoLink;break;case"fileDragging":i=new e.extensions.fileDragging(n);break;case"fontname":i=new e.extensions.fontName(this.options.fontName);break;case"fontsize":i=new e.extensions.fontSize(n);break;case"keyboardCommands":i=new e.extensions.keyboardCommands(this.options.keyboardCommands);break;case"paste":i=new e.extensions.paste(this.options.paste);break;case"placeholder":i=new e.extensions.placeholder(this.options.placeholder);break;default:e.extensions.button.isBuiltInButton(t)&&(n?(r=e.util.defaults({},n,e.extensions.button.prototype.defaults[t]),i=new e.extensions.button(r)):i=new e.extensions.button(t))}return i&&this.extensions.push(d(i,t,this)),i},stopSelectionUpdates:function(){this.preventSelectionUpdates=!0},startSelectionUpdates:function(){this.preventSelectionUpdates=!1},checkSelection:function(){var e=this.getExtensionByName("toolbar");return e&&e.checkState(),this},queryCommandState:function(e){var t,n=/^full-(.+)$/gi,r=null;(t=n.exec(e))&&(e=t[1]);try{r=this.options.ownerDocument.queryCommandState(e)}catch(e){r=null}return r},execAction:function(t,n){var r,i,o=/^full-(.+)$/gi;return r=o.exec(t),r?(this.saveSelection(),this.selectAllContents(),i=x.call(this,r[1],n),this.restoreSelection()):i=x.call(this,t,n),"insertunorderedlist"!==t&&"insertorderedlist"!==t||e.util.cleanListDOM(this.options.ownerDocument,this.getSelectedParentElement()),this.checkSelection(),i},getSelectedParentElement:function(t){return void 0===t&&(t=this.options.contentWindow.getSelection().getRangeAt(0)),e.selection.getSelectedParentElement(t)},selectAllContents:function(){var t=e.selection.getSelectionElement(this.options.contentWindow);if(t){for(;1===t.children.length;)t=t.children[0];this.selectElement(t)}},selectElement:function(t){e.selection.selectNode(t,this.options.ownerDocument);var n=e.selection.getSelectionElement(this.options.contentWindow);n&&this.events.focusElement(n)},getFocusedElement:function(){var e;return this.elements.some(function(t){return!e&&t.getAttribute("data-medium-focused")&&(e=t),!!e},this),e},exportSelection:function(){var t=e.selection.getSelectionElement(this.options.contentWindow),n=this.elements.indexOf(t),r=null;return n>=0&&(r=e.selection.exportSelection(t,this.options.ownerDocument)),null!==r&&0!==n&&(r.editableElementIndex=n),r},saveSelection:function(){this.selectionState=this.exportSelection()},importSelection:function(t,n){if(t){var r=this.elements[t.editableElementIndex||0];e.selection.importSelection(t,r,this.options.ownerDocument,n)}},restoreSelection:function(){this.importSelection(this.selectionState)},createLink:function(t){var n,r=e.selection.getSelectionElement(this.options.contentWindow),i={};if(-1!==this.elements.indexOf(r)){try{if(this.events.disableCustomEvent("editableInput"),t.url&&e.util.deprecated(".url option for createLink",".value","6.0.0"),(n=t.url||t.value)&&n.trim().length>0){var o=this.options.contentWindow.getSelection();if(o){var a,s,u,c,l=o.getRangeAt(0),f=l.commonAncestorContainer;if(3===l.endContainer.nodeType&&3!==l.startContainer.nodeType&&0===l.startOffset&&l.startContainer.firstChild===l.endContainer&&(f=l.endContainer),s=e.util.getClosestBlockContainer(l.startContainer),u=e.util.getClosestBlockContainer(l.endContainer),3!==f.nodeType&&0!==f.textContent.length&&s===u){var d=s||r,h=this.options.ownerDocument.createDocumentFragment();this.execAction("unlink"),a=this.exportSelection(),h.appendChild(d.cloneNode(!0)),r===d?e.selection.select(this.options.ownerDocument,d.firstChild,0,d.lastChild,3===d.lastChild.nodeType?d.lastChild.nodeValue.length:d.lastChild.childNodes.length):e.selection.select(this.options.ownerDocument,d,0,d,d.childNodes.length);var p=this.exportSelection();c=e.util.findOrCreateMatchingTextNodes(this.options.ownerDocument,h,{start:a.start-p.start,end:a.end-p.start,editableElementIndex:a.editableElementIndex}),0===c.length&&(h=this.options.ownerDocument.createDocumentFragment(),h.appendChild(f.cloneNode(!0)),c=[h.firstChild.firstChild,h.firstChild.lastChild]),e.util.createLink(this.options.ownerDocument,c,n.trim());var v=(h.firstChild.innerHTML.match(/^\s+/)||[""])[0].length;e.util.insertHTMLCommand(this.options.ownerDocument,h.firstChild.innerHTML.replace(/^\s+/,"")),a.start-=v,a.end-=v,this.importSelection(a)}else this.options.ownerDocument.execCommand("createLink",!1,n);this.options.targetBlank||"_blank"===t.target?e.util.setTargetBlank(e.selection.getSelectionStart(this.options.ownerDocument),n):e.util.removeTargetBlank(e.selection.getSelectionStart(this.options.ownerDocument),n),t.buttonClass&&e.util.addClassToAnchors(e.selection.getSelectionStart(this.options.ownerDocument),t.buttonClass)}}if(this.options.targetBlank||"_blank"===t.target||t.buttonClass){i=this.options.ownerDocument.createEvent("HTMLEvents"),i.initEvent("input",!0,!0,this.options.contentWindow);for(var m=0,g=this.elements.length;m<g;m+=1)this.elements[m].dispatchEvent(i)}}finally{this.events.enableCustomEvent("editableInput")}this.events.triggerCustomEvent("editableInput",i,r)}},cleanPaste:function(e){this.getExtensionByName("paste").cleanPaste(e)},pasteHTML:function(e,t){this.getExtensionByName("paste").pasteHTML(e,t)},setContent:function(e,t){if(t=t||0,this.elements[t]){var n=this.elements[t];n.innerHTML=e,this.checkContentChanged(n)}},getContent:function(e){return e=e||0,this.elements[e]?this.elements[e].innerHTML.trim():null},checkContentChanged:function(t){t=t||e.selection.getSelectionElement(this.options.contentWindow),this.events.updateInput(t,{target:t,currentTarget:t})},resetContent:function(e){if(e){var t=this.elements.indexOf(e);return void(-1!==t&&this.setContent(T[e.getAttribute("medium-editor-index")],t))}this.elements.forEach(function(e,t){this.setContent(T[e.getAttribute("medium-editor-index")],t)},this)},addElements:function(e){var t=c(e,this.options.ownerDocument,!0);if(0===t.length)return!1;t.forEach(function(e){e=_.call(this,e,this.id),this.elements.push(e),this.trigger("addElement",{target:e,currentTarget:e},e)},this)},removeElements:function(e){var t=c(e,this.options.ownerDocument),n=t.map(function(e){return e.getAttribute("medium-editor-textarea-id")&&e.parentNode?e.parentNode.querySelector('div[medium-editor-textarea-id="'+e.getAttribute("medium-editor-textarea-id")+'"]'):e});this.elements=this.elements.filter(function(e){return-1===n.indexOf(e)||(this.events.cleanupElement(e),e.getAttribute("medium-editor-textarea-id")&&l(e),this.trigger("removeElement",{target:e,currentTarget:e},e),!1)},this)}},e.getEditorFromElement=function(e){var t=e.getAttribute("data-medium-editor-editor-index"),n=e&&e.ownerDocument&&(e.ownerDocument.defaultView||e.ownerDocument.parentWindow);return n&&n._mediumEditors&&n._mediumEditors[t]?n._mediumEditors[t]:null}}(),function(){e.prototype.defaults={activeButtonClass:"medium-editor-button-active",buttonLabels:!1,delay:0,disableReturn:!1,disableDoubleReturn:!1,disableExtraSpaces:!1,disableEditing:!1,autoLink:!1,elementsContainer:!1,contentWindow:window,ownerDocument:document,targetBlank:!1,extensions:{},spellcheck:!0}}(),e.parseVersionString=function(e){var t=e.split("-"),n=t[0].split("."),r=t.length>1?t[1]:"";return{major:parseInt(n[0],10),minor:parseInt(n[1],10),revision:parseInt(n[2],10),preRelease:r,toString:function(){return[n[0],n[1],n[2]].join(".")+(r?"-"+r:"")}}},e.version=e.parseVersionString.call(this,{version:"5.23.2"}.version),e}())}).call(t,n(79))},function(e,t,n){"use strict";function r(e){if(!(void 0!==e.label&&/\S{1}/.test(e.label)&&void 0!==e.start&&/\S{1}/.test(e.start)&&void 0!==e.end&&/\S{1}/.test(e.end)||void 0!==e.label&&/\S{1}/.test(e.label)&&void 0!==e.action&&/\S{1}/.test(e.action)))return void console.error('[Custom-Button] You need to specify "label", "start" and "end" OR "label" and "action"');e.start=void 0===e.start?"":e.start,e.end=void 0===e.end?"":e.end;var t=this;this.options=e,this.button=document.createElement("button"),this.button.className="medium-editor-action",this.button.innerHTML=e.label,this.button.onclick=function(){var n=i(),r=window.getSelection(),o=r.anchorNode.parentElement;void 0===e.start||-1==n.indexOf(e.start)&&-1==n.indexOf(e.end)?(void 0!=e.action&&(n=e.action(n,!0,o)),n=e.start+n+e.end):(void 0!=e.action&&(n=e.action(n,!1,o)),n=String(n).split(e.start).join(""),n=String(n).split(e.end).join(""));var a,s;if(r.getRangeAt&&r.rangeCount){if(a=window.getSelection().getRangeAt(0),a.deleteContents(),a.createContextualFragment)s=a.createContextualFragment(n);else{var u=document.createElement("div");for(u.innerHTML=n,s=document.createDocumentFragment();child=u.firstChild;)s.appendChild(child)}var c=s.firstChild,l=s.lastChild;a.insertNode(s),c&&(a.setStartBefore(c),a.setEndAfter(l)),r.removeAllRanges(),r.addRange(a)}t.base.checkContentChanged()}}function i(){var e,t="";if(void 0!==window.getSelection){if(e=window.getSelection(),e.rangeCount){for(var n=document.createElement("div"),r=0,i=e.rangeCount;r<i;++r)n.appendChild(e.getRangeAt(r).cloneContents());t=n.innerHTML}}else void 0!==document.selection&&"Text"==document.selection.type&&(t=document.selection.createRange().htmlText);return t}r.prototype.getButton=function(){return this.button},r.prototype.checkState=function(e){var t=i();""!=this.options.start&&t.indexOf(this.options.start)>-1&&t.indexOf(this.options.end)>-1?this.button.classList.add("medium-editor-button-active"):this.button.classList.remove("medium-editor-button-active")},void 0!==e&&e.exports&&(t=e.exports=r),t.MediumButton=r},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function(){function e(t){var n=t.controller;r(this,e),this._controller=n}return i(e,null,[{key:"canEdit",value:function(e){return"reference"===e.type}}]),i(e,[{key:"onClick",value:function(){var e=this;scrivito.openContentBrowser({selection:this._currentSelection(),selectionMode:"single"}).then(function(t){var n=t.isSelected,r=t.selection;n&&e._saveContentBrowserSelection(r)})}},{key:"_currentSelection",value:function(){return this._controller.content?[this._controller.content.id()]:[]}},{key:"_saveContentBrowserSelection",value:function(e){this._controller.content=e[0]||null}}]),e}();t.default=o},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(205),s=r(a),u=n(206),c=r(u),l=n(286),f=r(l),d=function(){function e(t){var n=t.attributeInfo,r=t.controller;i(this,e),this.attributeInfo=n,this.controller=r}return o(e,null,[{key:"canEdit",value:function(e){return"string"===e.type}}]),o(e,[{key:"editorWillBeActivated",value:function(){this.controller.setDomMode("Replace")}},{key:"editorDomWasMounted",value:function(e){(0,c.default)(e);var t=new s.default(e,this.controller);t.edQuery(e).text(this.controller.content),(0,f.default)(t)}}]),e}();t.default=d},function(e,t){var n,r,i,o,a,s,u,c,l,f,d,h,p,v,m;p=function(e,t){var n;switch(n=t.jQueryElement(),e.keyCode||e.which){case 13:if(!c(n))return e.preventDefault(),n.blur();break;case 27:return e.stopPropagation(),n.blur()}},h=function(e){return m(e)},d=function(e){return v(e.jQueryElement())},f=function(e){return s(e.jQueryElement())},l=function(e){return m(e).done(function(){return e.trigger("scrivito_editors:blur")}),a(e),v(e.jQueryElement())},m=function(e){var t;return t=u(e.jQueryElement()),e.save(t).done(function(){return e.trigger("scrivito_editors:save")})},u=function(e){return i(e),e[0].innerText.replace(/\r\n/g,"\n").replace(/\n+$/,"")},i=function(e){var t,n;if(n=o(e),t=n.not(e),t.length>0)return t.remove(),e.text(n.text())},o=function(e){var t,n,r;return r=e.data("scrivito_editors_siblings_before_edit"),n=e.siblings(),t=!r||n.filter(r).length<r.length,t?e.data("scrivito_editors_siblings_before_edit",n):e.siblings().addBack().not(r)},c=function(e){return!0===e.data("scrivitoEditorsMultiline")||!1!==e.data("scrivitoEditorsMultiline")&&e.css("white-space").match(/pre/)},v=function(e){var t,n;if(c(e)&&!e.data("scrivito_editors_prepared_for_editing")&&(e.data("scrivito_editors_prepared_for_editing",!0),t=e.html(),n=t.replace(/\r?\n/g,"<br />"),t!==n))return e.html(n)},a=function(e){var t;return t=e.jQueryElement(),t.data("scrivito_editors_prepared_for_editing",!1),t.text(e.content())},n=300,s=function(e){var t;if(t=document.getSelection(),t.anchorNode&&t.focusNode)return e.find(t.anchorNode).addBack(t.anchorNode).length&&e.find(t.focusNode).addBack(t.focusNode).length?void 0:t.selectAllChildren(e[0])},r=function(e){var t;return t=e.jQueryElement(),t.attr("contenteditable",!0).blur(function(){return l(e)}).click(function(){return f(e)}).focus(function(){return d(e)}).keypress(function(t){return p(t,e)}).keyup(function(t){return p(t,e)}),"false"!==t.attr("data-scrivito-editors-autosave")&&t.on("cut input keypress keyup paste",function(){return h(e)}),v(t),t.on("click",function(e){return t.attr("contenteditable",!0),i(t),e.timeStamp-t.data("scrivito_editors_last_click")<n||e.preventDefault(),t.data("scrivito_editors_last_click",e.timeStamp)})},e.exports=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.provideWidgetClass=t.provideObjClass=t.getClass=t.createWidgetClass=t.createObjClass=t.Widget=t.ObjSearch=t.Obj=t.Link=t.registerComponent=t.provideComponent=t.connect=t.WidgetTag=t.NotFoundErrorPage=t.LinkTag=t.ImageTag=t.CurrentPage=t.ContentTag=t.ChildListTag=t.BackgroundImageTag=t.urlFor=t.provideEditingConfig=t.navigateTo=t.isInPlaceEditingActive=t.currentPageParams=t.currentPage=t.configureContentBrowser=t.configure=t.ScrivitoError=t.ArgumentError=t.load=t.ObjFacetValue=t.FutureBinary=t.Binary=void 0;var i=n(24);Object.defineProperty(t,"Binary",{enumerable:!0,get:function(){return r(i).default}});var o=n(64);Object.defineProperty(t,"FutureBinary",{enumerable:!0,get:function(){return r(o).default}});var a=n(196);Object.defineProperty(t,"ObjFacetValue",{enumerable:!0,get:function(){return r(a).default}});var s=n(8);Object.defineProperty(t,"load",{enumerable:!0,get:function(){return r(s).default}});var u=n(1);Object.defineProperty(t,"ArgumentError",{enumerable:!0,get:function(){return u.ArgumentError}}),Object.defineProperty(t,"ScrivitoError",{enumerable:!0,get:function(){return u.ScrivitoError}});var c=n(199);Object.defineProperty(t,"configure",{enumerable:!0,get:function(){return c.configure}});var l=n(116);Object.defineProperty(t,"configureContentBrowser",{enumerable:!0,get:function(){return r(l).default}});var f=n(65);Object.defineProperty(t,"currentPage",{enumerable:!0,get:function(){return f.currentPage}}),Object.defineProperty(t,"currentPageParams",{enumerable:!0,get:function(){return f.currentPageParams}});var d=n(288);Object.defineProperty(t,"isInPlaceEditingActive",{enumerable:!0,get:function(){return r(d).default}});var h=n(80);Object.defineProperty(t,"navigateTo",{enumerable:!0,get:function(){return r(h).default}});var p=n(72);Object.defineProperty(t,"provideEditingConfig",{enumerable:!0,get:function(){return p.provideEditingConfig}});var v=n(289);Object.defineProperty(t,"urlFor",{enumerable:!0,get:function(){return v.urlFor}});var m=n(290);Object.defineProperty(t,"BackgroundImageTag",{enumerable:!0,get:function(){return r(m).default}});var g=n(292);Object.defineProperty(t,"ChildListTag",{enumerable:!0,get:function(){return r(g).default}});var y=n(210);Object.defineProperty(t,"ContentTag",{enumerable:!0,get:function(){return r(y).default}});var b=n(305);Object.defineProperty(t,"CurrentPage",{enumerable:!0,get:function(){return r(b).default}});var w=n(306);Object.defineProperty(t,"ImageTag",{enumerable:!0,get:function(){return r(w).default}});var _=n(208);Object.defineProperty(t,"LinkTag",{enumerable:!0,get:function(){return r(_).default}});var C=n(308);Object.defineProperty(t,"NotFoundErrorPage",{enumerable:!0,get:function(){return r(C).default}});var k=n(118);Object.defineProperty(t,"WidgetTag",{enumerable:!0,get:function(){return r(k).default}});var E=n(13);Object.defineProperty(t,"connect",{enumerable:!0,get:function(){return r(E).default}});var x=n(309);Object.defineProperty(t,"provideComponent",{enumerable:!0,get:function(){return r(x).default}});var S=n(310);Object.defineProperty(t,"registerComponent",{enumerable:!0,get:function(){return r(S).default}});var T=n(55),A=(0,T.getWindowContext)();t.Link=A.Link,t.Obj=A.Obj,t.ObjSearch=A.ObjSearch,t.Widget=A.Widget,t.createObjClass=A.createObjClass,t.createWidgetClass=A.createWidgetClass,t.getClass=A.getClass,t.provideObjClass=A.provideObjClass,t.provideWidgetClass=A.provideWidgetClass},function(e,t,n){"use strict";function r(){return"published"!==scrivito.currentWorkspaceId()&&(!!scrivito.uiAdapter&&scrivito.uiAdapter.isEditingMode())}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";function r(e,t){f(e,t);var n=t||{},r=n.query,a=n.fragment,s=(0,i.unwrapAppClassValue)(e),u=r?"?"+r:"",c=a?"#"+a:"";return(0,o.basicUrlFor)(s).concat(u).concat(c)}Object.defineProperty(t,"__esModule",{value:!0}),t.urlFor=r;var i=n(22),o=n(115),a=n(21),s=n(34),u=n(54),c=a.tcomb.union([u.ObjType,u.LinkType,u.BinaryType]),l=a.tcomb.struct({query:a.tcomb.maybe(a.tcomb.String),fragment:a.tcomb.maybe(a.tcomb.String)}),f=(0,s.checkArgumentsFor)("urlFor",[["target",c],["options",a.tcomb.maybe(l)]],{docPermalink:"js-sdk/urlFor"})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(12),l=r(c),f=n(0),d=n(291),h=r(d),p=n(13),v=r(p),m=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),u(t,[{key:"render",value:function(){var e=this.props,t=e.style,n=e.tag,r=(0,f.omit)(this.props,"style","tag");return l.default.createElement(n,s({},r,{style:(0,h.default)(t)}))}}]),t}(l.default.Component);m.displayName="Scrivito.BackgroundImageTag",m.defaultProps={tag:"div"},t.default=(0,v.default)(m)},function(e,t,n){"use strict";function r(e){var t=i(e),n=t.backgrounds,r=t.passThroughStyle,a=o(n);return l.extend(a,r)}function i(e){var t={backgrounds:[],passThroughStyle:{}};for(var n in e)if(0!==n.indexOf("background"))t.passThroughStyle[n]=e[n];else if("background"===n){var r=e[n];t.backgrounds=l.isArray(r)?r:[r]}return t}function o(e){var t=e.map(a);return{backgroundAttachment:l.pluck(t,"backgroundAttachment").join(", "),backgroundImage:l.pluck(t,"backgroundImage").join(", "),backgroundOrigin:l.pluck(t,"backgroundOrigin").join(", "),backgroundPosition:l.pluck(t,"backgroundPosition").join(", "),backgroundRepeat:l.pluck(t,"backgroundRepeat").join(", "),backgroundSize:l.pluck(t,"backgroundSize").join(", ")}}function a(e){if(s(e))return u(e.image);if(e.image instanceof f.default)return c(e.image);if(d.default(e.image)){var t=e.image.get("blob");if(t)return c(t)}return u("none")}function s(e){return l.isString(e.image)}function u(e){return{backgroundAttachment:"scroll",backgroundImage:e,backgroundOrigin:"padding-box",backgroundPosition:"0% 0%",backgroundRepeat:"repeat",backgroundSize:"auto"}}function c(e){return{backgroundAttachment:"scroll",backgroundImage:"url("+h.default(e).url()+")",backgroundOrigin:"padding-box",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"}}Object.defineProperty(t,"__esModule",{value:!0});var l=n(0),f=n(24),d=n(201),h=n(207);t.default=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(75),l=r(c),f=n(0),d=n(12),h=r(d),p=n(65),v=n(13),m=r(v),g=n(293),y=r(g),b=n(296),w=r(b),_=function(e){function t(e){o(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={hasFocus:!1},n._onMouseOver=n._onMouseOver.bind(n),n._onMouseOut=n._onMouseOut.bind(n),n}return s(t,e),u(t,[{key:"render",value:function(){var e=this,t=this.props.parent||(0,p.currentPage)();if(!t)return null;t=t._scrivitoPrivateContent;var n=(0,f.omit)(this.props,"parent","tag","renderChild"),r=void 0;return(0,l.default)()&&(n.onMouseOver=this._onMouseOver,n.onMouseOut=this._onMouseOut,n["data-scrivito-private-child-list-path"]=!0,this.state.hasFocus&&(n.className="scrivito_active scrivito_entered "+n.className),r=h.default.createElement(w.default,{key:"menuMarker",parent:t})),h.default.createElement(this.props.tag,n,[r].concat(i(t.orderedChildren().map(function(t){return h.default.createElement(y.default,{key:t.id(),child:t,renderChild:e.props.renderChild})}))))}},{key:"_onMouseOver",value:function(e){e.stopPropagation(),this.setState({hasFocus:!0})}},{key:"_onMouseOut",value:function(e){e.stopPropagation(),this.setState({hasFocus:!1})}}]),t}(h.default.Component);_.displayName="Scrivito.ChildListTag",_.defaultProps={tag:"ul"},t.default=(0,m.default)(_)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){var t=e.child,n=e.renderChild,r=(0,s.getWindowContext)().appModelAccessor.wrapInAppClass(t);return n?n(r):a.default.createElement("li",null,a.default.createElement(f.default,{to:r},t.get("title","string")))}Object.defineProperty(t,"__esModule",{value:!0});var o=n(12),a=r(o),s=n(55),u=n(13),c=r(u),l=n(208),f=r(l);i.displayName="Scrivito.ChildListTag.ChildItem",t.default=(0,c.default)(i)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.propTypes=t.tcomb=void 0;var r=n(21),i=n(295);t.tcomb=r.tcomb,t.propTypes=i.propTypes},function(e,t,n){"use strict";function r(e,t,n,r){return["Invalid "+t+" supplied to "+n+", should be a "+a.tcomb.getTypeName(r)+".","Detected errors ("+e.length+"):"].concat(e.map(function(e,t){return" "+(t+1)+". "+e.message})).join("\n")}function i(e){return a.tcomb.Object.is(e)?a.tcomb.struct(e):e}function o(e,t){var n=i(e),o="subtype"===n.meta.kind;a.tcomb.assert(a.tcomb.isType(n),"Invalid argument type supplied to propTypes()");var s={},u=o?n.meta.type:n;if("struct"===u.meta.kind||"interface"===u.meta.kind){var c=u.meta.props;Object.keys(c).forEach(function(e){var t=c[e],n=function e(n,i,o){var s=n[i],u=a.tcomb.validate(s,t);if(!u.isValid()){var c=r(u.errors,"prop "+a.tcomb.stringify(i),o,t);e.displayName=c,a.tcomb.fail(c)}};n.tcomb=t,s[e]=n}),t&&!1===t.strict||(s.__strict__=function(e,t,n){var r=[];for(var i in e)"__strict__"!==i&&"__subtype__"!==i&&e.hasOwnProperty(i)&&!c.hasOwnProperty(i)&&r.push(i);if(r.length>0){var o=a.tcomb.stringify(r);a.tcomb.fail("Invalid additional prop(s):\n\n"+o+"\n\nsupplied to "+n+".")}})}else s.__generictype__=function(e,t,n){var i=a.tcomb.validate(e,u);i.isValid()||a.tcomb.fail(r(i.errors,"props",n,u))};return o&&(s.__subtype__=function(e,t,r){n.meta.predicate(e)||a.tcomb.fail("Invalid props:\n\n "+a.tcomb.stringify(e)+"\n\nsupplied to "+r+", should be a "+a.tcomb.getTypeName(n)+".")},s.__subtype__.predicate=n.meta.predicate),s}Object.defineProperty(t,"__esModule",{value:!0}),t.propTypes=void 0;var a=n(21);t.propTypes=o},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(12),c=r(u),l=n(73),f=n(13),d=r(f),h=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"render",value:function(){var e=this;return c.default.createElement("span",{ref:function(t){return e._menuMarker=t},className:"scrivito_editing_marker",onClick:this._onClick},c.default.createElement("i",{className:"scrivito_icon"}),c.default.createElement("span",{className:"scrivito_editing_marker_title"},this.props.parent.objClass()))}},{key:"_onClick",value:function(e){e.preventDefault(),e.stopPropagation(),this._menuMarker&&scrivito.uiAdapter.showChildListMenu((0,l.findDOMNode)(this._menuMarker),this.props.parent.id())}}]),t}(c.default.Component);h.displayName="Scrivito.ChildListTag.MenuMarker",t.default=(0,d.default)(h)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e){return o(e.target,e.currentTarget,(0,f.default)(e))}function o(e,t,n){if(e===t)return null;if("A"===e.nodeName){var r=e.href,i=s.recognizePath(r);if(!i)return null;if(n||"_blank"===e.getAttribute("target"))return{openInNewWindow:r};return{obj:function(){var e=(0,d.lookup)(i);return e?c.default.get(e):s.recognize(r).obj},options:{params:s.recognizeQueryParameters(r),hash:s.recognizeHash(r)}}}return o(e.parentNode,t,n)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=i;var a=n(57),s=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(a),u=n(3),c=r(u),l=n(209),f=r(l),d=n(202)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(213),l=r(c),f=n(12),d=r(f),h=n(1),p=n(22),v=n(75),m=r(v),g=n(56),y=n(74),b=n(13),w=r(b),_=n(118),C=r(_),k=function(e){function t(e){o(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={hasError:!1},n}return s(t,e),u(t,[{key:"componentDidCatch",value:function(){this.setState({hasError:!0})}},{key:"shouldComponentUpdate",value:function(e){return this.props.widget.equals(e.widget)}},{key:"getChildContext",value:function(){return i({},_.WIDGET_TAG_CONTEXT_KEY,this.props.widget)}},{key:"render",value:function(){return this.state.hasError?(0,m.default)()?d.default.createElement(C.default,null,d.default.createElement("div",{className:"content_error"},"Widget could not be rendered due to application error.")):d.default.createElement(C.default,null):d.default.createElement(E,{widget:this.props.widget})}}]),t}(d.default.Component),E=function(e){function t(){return o(this,t),a(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return s(t,e),u(t,[{key:"render",value:function(){var e=(0,p.wrapInAppClass)((0,g.getWindowRegistry)(),this.props.widget);return d.default.createElement(this._getAppWidgetComponent(),{widget:e})}},{key:"_getAppWidgetComponent",value:function(){var e=this.props.widget.objClass(),t=(0,y.getComponentForAppClass)(e);if(!t)throw new h.ArgumentError('No component registered for widget class "'+e+'"');return t}}]),t}(d.default.Component);k.displayName="Scrivito.ContentTag.WidgetContent",k.childContextTypes=i({},_.WIDGET_TAG_CONTEXT_KEY,l.default.object),t.default=(0,w.default)(k)},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),o=n(13),a=n(119),s=n(214),u=n(203),c=function(e){function t(t){var n=e.call(this,t)||this;return n._onClick=n._onClick.bind(n),n._onDragStart=n._onDragStart.bind(n),n._onDragEnd=n._onDragEnd.bind(n),n}return r(t,e),t.prototype.render=function(){var e=this;return i.createElement("span",{ref:function(t){return e._menuMarker=t},className:"scrivito_editing_marker",onClick:this._onClick,onDragStart:this._onDragStart,onDragEnd:this._onDragEnd,draggable:!0},i.createElement("i",{className:"scrivito_icon"}),i.createElement("span",{className:"scrivito_editing_marker_title"},this._title()))},t.prototype._onClick=function(e){if(e.preventDefault(),e.stopPropagation(),this._menuMarker){var t=a.default(this.props.widget),n=t.objId,r=t.widgetId;scrivito.uiAdapter.showWidgetMenu(this._menuMarker,n,r)}},t.prototype._onDragStart=function(e){s.default(e);var t=a.default(this.props.widget),n=t.objId,r=t.widgetId;scrivito.uiAdapter.onDragStart(n,r),this.props.setDragState(!0)},t.prototype._onDragEnd=function(){scrivito.uiAdapter.onDragEnd(),this.props.setDragState(!1)},t.prototype._title=function(){var e=a.default(this.props.widget),t=e.objId,n=e.widgetId;return u.default(t,n)},t}(i.Component);c.displayName="Scrivito.ContentTag.MenuMarker",t.default=o.default(c)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(12),c=r(u),l=n(73),f=n(119),d=r(f),h=n(13),p=r(h),v=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"componentDidMount",value:function(){if(this._widgetPlaceholder){var e=(0,l.findDOMNode)(this._widgetPlaceholder),t=(0,d.default)(this.props.field.container()),n=t.objId,r=t.widgetId,i=this.props.field.name();scrivito.uiAdapter.registerEmptyWidgetlistDropZoneInDom({domNode:e,objId:n,widgetId:r,attributeName:i})}}},{key:"render",value:function(){var e=this;return c.default.createElement("div",{ref:function(t){return e._widgetPlaceholder=t},className:"scrivito_empty_widget_field","data-scrivito-private-dropzone":"true",onClick:this._onClick})}},{key:"_onClick",value:function(e){if(e.preventDefault(),e.stopPropagation(),this._widgetPlaceholder){var t=this.props.field.name(),n=(0,d.default)(this.props.field.container()),r=n.objId,i=n.widgetId;scrivito.uiAdapter.showWidgetlistMenu((0,l.findDOMNode)(this._widgetPlaceholder),{objId:r,widgetId:i,attributeName:t,mousePosition:{x:e.pageX,y:e.pageY}})}}}]),t}(c.default.Component);v.displayName="Scrivito.ContentTag.WidgetlistPlaceholder",t.default=(0,p.default)(v)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=n(12),c=r(u),l=n(73),f=n(0),d=n(212),h=r(d),p=n(302),v=r(p),m=n(304),g=r(m),y=n(13),b=r(y),w=function(e){function t(e){i(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={domMode:"None"},n._onClick=n._onClick.bind(n),n}return a(t,e),s(t,[{key:"componentWillMount",value:function(){var e=this,t=this.props.field,n=t.type(),r=t.typeOptions(),i=this.props.editorClass;if(i){var o=(0,f.extend)({type:n},(0,f.pick)(r,"validClasses","values")),a=new v.default(t,function(t){return e._setDomMode(t)});this._editor=new i({attributeInfo:o,controller:a}),this._editorWillBeActivated()}}},{key:"componentDidMount",value:function(){"Replace"===this.state.domMode&&this._editorDomWasMounted()}},{key:"componentDidUpdate",value:function(e,t){var n=t.domMode,r=this.state.domMode;n!==r&&("Replace"===r?this._editorDomWasMounted():this._editorDomWasUnmounted())}},{key:"componentWillUnmount",value:function(){this._editorWillBeDeactivated()}},{key:"render",value:function(){var e=this;return"Replace"===this.state.domMode?c.default.createElement(this.props.tag,(0,f.extend)((0,f.omit)(this.props.customProps,"children"),{ref:function(t){return e._editorComponent=t}})):c.default.createElement(h.default,{ref:function(t){return e._editorComponent=t},children:this.props.children,customProps:this.props.customProps,field:this.props.field,key:this.state.domMode,tag:this.props.tag,onClick:function(t){return e._onClick(t)}})}},{key:"_onClick",value:function(e){this._editor&&this._editor.onClick&&this._editor.onClick(new g.default(e))}},{key:"_editorWillBeActivated",value:function(){this._editor&&this._editor.editorWillBeActivated&&this._editor.editorWillBeActivated()}},{key:"_editorWillBeDeactivated",value:function(){this._editor&&this._editor.editorWillBeDeactivated&&this._editor.editorWillBeDeactivated()}},{key:"_editorDomWasMounted",value:function(){this._editor&&this._editor.editorDomWasMounted&&this._editorComponent&&this._editor.editorDomWasMounted((0,l.findDOMNode)(this._editorComponent))}},{key:"_editorDomWasUnmounted",value:function(){this._editor&&this._editor.editorDomWasUnmounted&&this._editor.editorDomWasUnmounted()}},{key:"_setDomMode",value:function(e){this.setState({domMode:e})}}]),t}(c.default.Component);w.displayName="Scrivito.ContentTag.Editor",t.default=(0,b.default)(w)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(303),s=r(a),u=n(114),c=r(u),l=n(16),f=function(){function e(t,n){i(this,e),this.setDomMode=n,this._buffer=new s.default({get:function(){return"html"===t.type()?(0,l.capture)(function(){return(0,c.default)(t.get())}).result:t.get()},set:function(e){return t.update(e)},flushRate:100})}return o(e,[{key:"content",get:function(){return this._buffer.get()},set:function(e){this._buffer.set(e)}}]),e}();t.default=f},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o={},a=function(){function e(t){var n=t.get,i=t.set,a=t.flushRate;r(this,e),this._getUnderlying=n,this._setUnderlying=i,this._flushRate=a,this._bufferedValue=o}return i(e,[{key:"get",value:function(){var e=this._bufferedValue;return e!==o?e:this._getUnderlying()}},{key:"set",value:function(e){this._bufferedValue=e,this._flushRunning||this._runFlush()}},{key:"_runFlush",value:function(){var e=this;if(this._bufferedValue===o)return void(this._flushRunning=!1);this._setUnderlying(this._bufferedValue),this._bufferedValue=o,setTimeout(function(){return e._runFlush()},this._flushRate),this._flushRunning=!0}}]),e}();t.default=a},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function(){function e(t){r(this,e),this._internalEvent=t}return i(e,[{key:"preventDefault",value:function(){this._internalEvent.preventDefault()}},{key:"stopPropagation",value:function(){this._internalEvent.stopPropagation()}}]),e}();t.default=o},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(){var e=(0,s.currentPage)(),t=(0,s.currentPageParams)();if(!e)return null;var n=e.objClass(),r=(0,c.getComponentForAppClass)(n);if(!r)throw new u.ArgumentError('No component registered for obj class "'+n+'"');return a.default.createElement(r,{page:e,params:t})}Object.defineProperty(t,"__esModule",{value:!0});var o=n(12),a=r(o),s=n(65),u=n(1),c=n(74),l=n(13),f=r(l);i.displayName="Scrivito.CurrentPage",t.default=(0,f.default)(i)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(12),l=r(c),f=n(0),d=n(24),h=r(d),p=n(210),v=r(p),m=n(38),g=r(m),y=n(13),b=r(y),w=n(307),_=r(w),C=n(207),k=r(C),E=n(1),x=n(36),S=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),u(t,[{key:"render",value:function(){if(!this.props.content)return null;var e=(0,f.omit)(this.props,"content","attribute");if(this.props.content instanceof h.default)return l.default.createElement("img",s({src:(0,k.default)(this.props.content).url()},e));var t=this._getBinary();if(void 0===t)return null;var n=void 0;return null===t?(n=_.default,e["data-scrivito-image-placeholder"]=!0):n=(0,k.default)(t).url(),l.default.createElement(v.default,s({attribute:this.props.attribute,content:this.props.content,tag:"img",src:n},e))}},{key:"_getBinary",value:function(){var e=g.default.forInstance(this.props.content),t=e.attributes[this.props.attribute];return t?"binary"===t?this.props.content.get(this.props.attribute):"reference"===t?this._getReferencedBinary():void(0,x.throwNextTick)(new E.ArgumentError('Component "Scrivito.ImageTag" received prop "content" with an object, whose attribute "'+this.props.attribute+'" is of unexpected type "'+t+'". Valid attribute types are "binary" and "reference".')):void(0,x.throwNextTick)(new E.ArgumentError('Component "Scrivito.ImageTag" received prop "content" with an object missing attribute "'+this.props.attribute+'".'))}},{key:"_getReferencedBinary",value:function(){var e=this.props.content.get(this.props.attribute);if(e){var t=e.get("blob");if(t)return t}return null}}]),t}(l.default.Component);S.displayName="Scrivito.ImageTag",S.defaultProps={attribute:"blob"},t.default=(0,b.default)(S)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default="data:image/gif;base64,R0lGODlhyADIAIAAAP///wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMjEgNzkuMTU0OTExLCAyMDEzLzEwLzI5LTExOjQ3OjE2ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDBEQjBEMDdFODMzMTFFNTg0QzY4MUNBMUVCQUU2MjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDBEQjBEMDhFODMzMTFFNTg0QzY4MUNBMUVCQUU2MjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMERCMEQwNUU4MzMxMUU1ODRDNjgxQ0ExRUJBRTYyNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowMERCMEQwNkU4MzMxMUU1ODRDNjgxQ0ExRUJBRTYyNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAAAALAAAAADIAMgAAAL/hI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8YhMKpfMpvMJjUqn1Kr1is1qt9yu9wsOi8fksvmMTqvX7Lb7DY/L5/S6/Y7P6/f8vv8PGCg4SFhoeIiYqLjI2Oj4CBkpOUlZaXmJmam5ydnp+QkaKjpKWmp6ipqqusra6voKGys7S1tre4ubq7vL2+v7CxwsPExcbHyMnKy8zNzs/AwdLT1NXW19jZ2tvc3d7f0NHi4+Tl5ufo6err7O3u7+Dh8vP09fb3+Pn6+/z9/v/w8woMCBBAsaPIgwocKFDBs6fAgxosSJFCtavIgxo8aNBhw7eixTAAA7"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),i=n(65),o=n(1),a=n(13),s=function(e){var t=e.children;return i.currentPageError()instanceof o.CurrentPageNotFoundError?t?r.createElement("div",null,t):r.createElement("div",null,r.createElement("h1",null,"The page you were looking for doesn't exist."),r.createElement("p",null,"You may have mistyped the address or the page may have moved.")):null};s.displayName="Scrivito.NotFoundErrorPage",t.default=a.default(s)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e,t){u(t),c(t),f(t)&&(t.displayName=e);var n=(0,w.default)(t),r=l(n);(0,y.registerComponentForAppClass)(e,r)}function u(e){if("function"!=typeof e)throw new g.ArgumentError("Scrivito.provideComponent expected a valid React component, but received "+(0,C.default)(e))}function c(e){if(e.propTypes)throw new g.ArgumentError("Custom props are not allowed when providing a component.")}function l(e){var t=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),d(t,[{key:"render",value:function(){if(this.props.widget){var e=h(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"render",this).call(this);return(0,m.isArray)(e)||(0,m.isBoolean)(e)||(0,m.isNumber)(e)||(0,m.isString)(e)||null===e||e&&e.type!==E.default?v.default.createElement(E.default,{children:e}):e}return h(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"render",this).call(this)}}]),t}(e);return t.displayName=(0,S.default)(e),t}function f(e){return!(e.displayName||e.name&&"_class"!==e.name)}Object.defineProperty(t,"__esModule",{value:!0});var d=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),h=function e(t,n,r){null===t&&(t=Function.prototype);var i=Object.getOwnPropertyDescriptor(t,n);if(void 0===i){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,r)}if("value"in i)return i.value;var a=i.get;if(void 0!==a)return a.call(r)};t.default=s;var p=n(12),v=r(p),m=n(0),g=n(1),y=n(74),b=n(13),w=r(b),_=n(37),C=r(_),k=n(118),E=r(k),x=n(105),S=r(x)},function(e,t,n){"use strict";function r(e,t){(0,a.registerComponentForId)(e,(0,o.default)(t))}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r;var i=n(13),o=function(e){return e&&e.__esModule?e:{default:e}}(i),a=n(74)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(253),o=r(i),a=n(254),s=n(138),u=r(s),c=n(279),l=n(287),f=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(l);window.Scrivito=f;var d=(0,u.default)();d?d.installRailsApi():(0,o.default)(),(0,a.initializeSdk)(d),(0,c.initializeEditors)()}]);
78
+ var r=n(5);r.Any=n(76),r.Array=n(185),r.Boolean=n(106),r.Date=n(186),r.Error=n(187),r.Function=n(67),r.Nil=n(107),r.Number=n(108),r.Integer=n(188),r.IntegerT=r.Integer,r.Object=n(189),r.RegExp=n(190),r.String=n(78),r.Type=n(191),r.TypeT=r.Type,r.Arr=r.Array,r.Bool=r.Boolean,r.Dat=r.Date,r.Err=r.Error,r.Func=r.Function,r.Num=r.Number,r.Obj=r.Object,r.Re=r.RegExp,r.Str=r.String,r.dict=n(79),r.declare=n(192),r.enums=n(193),r.irreducible=n(17),r.list=n(111),r.maybe=n(194),r.refinement=n(77),r.struct=n(196),r.tuple=n(114),r.union=n(200),r.func=n(201),r.intersection=n(202),r.subtype=r.refinement,r.inter=n(203),r.interface=r.inter,r.assert=r,r.update=n(204),r.mixin=n(80),r.isType=n(11),r.is=n(32),r.getTypeName=n(8),r.match=n(205),t.exports=r},function(t,e){t.exports=function(t){throw new TypeError("[tcomb] "+t)}},function(t,e,n){var r=n(17),i=n(29);t.exports=r("Array",i)},function(t,e,n){var r=n(17);t.exports=r("Date",function(t){return t instanceof Date})},function(t,e,n){var r=n(17);t.exports=r("Error",function(t){return t instanceof Error})},function(t,e,n){var r=n(77),i=n(108);t.exports=r(i,function(t){return t%1==0},"Integer")},function(t,e,n){var r=n(17),i=n(28);t.exports=r("Object",i)},function(t,e,n){var r=n(17);t.exports=r("RegExp",function(t){return t instanceof RegExp})},function(t,e,n){var r=n(17),i=n(11);t.exports=r("Type",i)},function(t,e,n){var r=(n(5),n(20),n(11),n(26),n(80)),i=n(8),o=n(110),a=1;t.exports=function(t){function e(t,e){return n(t,e)}var n;return e.define=function(i){return o(i)&&e.hasOwnProperty("dispatch")&&(i.dispatch=e.dispatch),n=i,r(e,n,!0),t&&(n.displayName=e.displayName=t,e.meta.name=t),e.meta.identity=n.meta.identity,e.prototype=n.prototype,e},e.displayName=t||i(e)+"$"+a++,e.meta={identity:!1},e.prototype=null,e}},function(t,e,n){function r(t){return Object.keys(t).map(function(t){return o.stringify(t)}).join(" | ")}function i(t,e){function n(t,e){return t}var i=e||r(t);return n.meta={kind:"enums",map:t,name:e,identity:!0},n.displayName=i,n.is=function(e){return t.hasOwnProperty(e)},n}var o=n(5),a=(n(20),n(52),n(65));n(28);i.of=function(t,e){t=a(t)?t.split(" "):t;var n={};return t.forEach(function(t){n[t]=t}),i(n,e)},i.getDefaultName=r,t.exports=i},function(t,e,n){function r(t){return"?"+f(t)}function i(t,e){function n(e,n){return c.is(e)?e:u(t,e,n)}if(o(t)||t===s||t===c)return t;var i=e||r(t),f=a(t);return n.meta={kind:"maybe",type:t,name:e,identity:f},n.displayName=i,n.is=function(e){return c.is(e)||l(e,t)},n}var o=(n(5),n(20),n(10),n(195)),a=n(30),s=n(76),u=n(31),c=n(107),l=(n(52),n(32)),f=n(8);i.getDefaultName=r,t.exports=i},function(t,e,n){var r=n(11);t.exports=function(t){return r(t)&&"maybe"===t.meta.kind}},function(t,e,n){function r(t){return"Struct"+f(t)}function i(t,e){return d(a,t,e)}function o(t){return u(t)||(t=c(t)?{}:{name:t}),t.hasOwnProperty("strict")||(t.strict=a.strict),t.hasOwnProperty("defaultProps")||(t.defaultProps={}),t}function a(t,e){function n(e,r){if(n.is(e))return e;if(!(this instanceof n))return new n(e,r);for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a=e[i];void 0===a&&(a=c[i]),this[i]=l(o,a,null)}}e=o(e);var a=e.name,u=e.strict,c=e.defaultProps,f=a||r(t);return n.meta={kind:"struct",props:t,name:a,identity:!1,strict:u,defaultProps:c},n.displayName=f,n.is=function(t){return t instanceof n},n.update=function(t,e){return new n(s.update(t,e))},n.extend=function(t,e){return i([n].concat(t),e)},n}var s=n(5),u=(n(20),n(78),n(67),n(66),n(28)),c=n(26),l=n(31),f=(n(8),n(79),n(112)),d=n(113);a.strict=!1,a.getOptions=o,a.getDefaultName=r,a.extend=i,t.exports=a},function(t,e,n){var r=n(11);t.exports=function(t){return r(t)&&"struct"===t.meta.kind}},function(t,e,n){var r=n(11);t.exports=function(t){return r(t)&&"interface"===t.meta.kind}},function(t,e,n){function r(t){return s(t)&&"subtype"===t.meta.kind}function i(t){return r(t)?[t.meta.predicate].concat(i(t.meta.type)):[]}function o(t){return r(t)?o(t.meta.type):t}function a(t){return{predicates:i(t),unrefinedType:o(t)}}var s=n(11);t.exports=a},function(t,e,n){function r(t){return t.map(a).join(" | ")}function i(t,e){function n(t,e){if(a)return t;var r=n.dispatch(t);return!r&&n.is(t)?t:u(r,t,e)}var i=e||r(t),a=t.every(s);return n.meta={kind:"union",types:t,name:e,identity:a},n.displayName=i,n.is=function(e){return t.some(function(t){return c(e,t)})},n.dispatch=function(e){for(var n=0,r=t.length;n<r;n++){var i=t[n];if(l(i)){var o=i.dispatch(e);if(!f(o))return o}else if(c(e,i))return i}},n.update=function(t,e){return n(o.update(t,e))},n}var o=n(5),a=(n(20),n(10),n(8)),s=n(30),u=(n(29),n(31)),c=n(32),l=(n(52),n(110)),f=n(26);i.getDefaultName=r,t.exports=i},function(t,e,n){function r(t,e){return"("+t.map(d).join(", ")+") => "+d(e)}function i(t){return s.is(t)&&c(t.instrumentation)}function o(t){for(var e=t.length,n=!1,r=e-1;r>=0;r--){var i=t[r];if(!h(i)||"maybe"!==i.meta.kind)return r+1;n=!0}return n?0:e}function a(t,e,n){function s(t,e){return i(t)?t:s.of(t)}t=u(t)?t:[t];var c=n||r(t,e),d=t.length;o(t);return s.meta={kind:"func",domain:t,codomain:e,name:n,identity:!0},s.displayName=c,s.is=function(n){return i(n)&&n.instrumentation.domain.length===d&&n.instrumentation.domain.every(function(e,n){return e===t[n]})&&n.instrumentation.codomain===e},s.of=function(n,r){function i(){var i=Array.prototype.slice.call(arguments),o=i.length;if(r&&o<d){var s=Function.prototype.bind.apply(n,[this].concat(i));return a(t.slice(o),e).of(s,!0)}return l(e,n.apply(this,i))}return s.is(n)?n:(i.instrumentation={domain:t,codomain:e,f:n},i.displayName=f(n),i)},s}var s=(n(5),n(20),n(67)),u=n(29),c=(n(111),n(28)),l=n(31),f=(n(26),n(66),n(114),n(51)),d=n(8),h=n(11);a.getDefaultName=r,a.getOptionalArgumentsIndex=o,t.exports=a},function(t,e,n){function r(t){return t.map(s).join(" & ")}function i(t,e){function n(t,e){return t}var i=e||r(t),s=t.every(u);return n.meta={kind:"intersection",types:t,name:e,identity:s},n.displayName=i,n.is=function(e){return t.every(function(t){return a(e,t)})},n.update=function(t,e){return n(o.update(t,e))},n}var o=n(5),a=(n(20),n(10),n(29),n(30),n(32)),s=n(8),u=n(30);i.getDefaultName=r,t.exports=i},function(t,e,n){function r(t,e){return h(o,t,e)}function i(t){return s(t)||(t=u(t)?{}:{name:t}),t.hasOwnProperty("strict")||(t.strict=o.strict),t}function o(t,e){function n(e,n){if(v)return e;var r=!0,i=v?{}:p({},e);for(var o in t){var a=t[o],s=e[o],u=c(a,s,null);r=r&&s===u,i[o]=u}return r&&(i=e),i}e=i(e);var o=e.name,s=e.strict,h=o||l(t),v=Object.keys(t).map(function(e){return t[e]}).every(f);return n.meta={kind:"interface",props:t,name:o,identity:v,strict:s},n.displayName=h,n.is=function(e){if(u(e))return!1;if(s)for(var n in e)if(!t.hasOwnProperty(n))return!1;for(var r in t)if(!d(e[r],t[r]))return!1;return!0},n.update=function(t,e){return n(a.update(t,e))},n.extend=function(t,e){return r([n].concat(t),e)},n}var a=n(5),s=(n(20),n(78),n(67),n(66),n(28)),u=n(26),c=n(31),l=(n(8),n(79),n(112)),f=n(30),d=n(32),h=n(113),p=n(115);o.strict=!1,o.getOptions=i,o.getDefaultName=l,o.extend=r,t.exports=o},function(t,e,n){function r(t){return v(t)?t instanceof Date||t instanceof RegExp?t:m({},t):y(t)?t.concat():t}function i(t){return a.commands.hasOwnProperty(t)}function o(t){return a.commands[t]}function a(t,e){var n,s=t,u=!1;for(var c in e)e.hasOwnProperty(c)&&(i(c)?(n=o(c)(e[c],s),n!==t?(u=!0,s=n):s=t):(s===t&&(s=r(t)),n=a(s[c],e[c]),u=u||n!==s[c],s[c]=n));return u?s:t}function s(t,e){return t(e)}function u(t,e){return t.length>0?e.concat(t):e}function c(t,e){if(t.length>0){e=r(e);for(var n=0,i=t.length;n<i;n++)delete e[t[n]]}return e}function l(t){return t}function f(t,e){return t.length>0?(e=r(e),t.reduce(function(t,e){return t.splice.apply(t,e),t},e)):e}function d(t,e){if(t.from!==t.to){e=r(e);var n=e[t.to];e[t.to]=e[t.from],e[t.from]=n}return e}function h(t,e){return t.length>0?t.concat(e):e}function p(t,e){var n=!1,i=r(e);for(var o in t)t.hasOwnProperty(o)&&(i[o]=t[o],n=n||i[o]!==e[o]);return n?i:e}var v=(n(5),n(28)),y=(n(10),n(29)),m=(n(109),n(115));a.commands={$apply:s,$push:u,$remove:c,$set:l,$splice:f,$swap:d,$unshift:h,$merge:p},t.exports=a},function(t,e,n){var r=n(5),i=n(10),o=n(11),a=n(76);t.exports=function(t){for(var e,n,s,u=1,c=arguments.length;u<c;)if(e=arguments[u],n=arguments[u+1],s=arguments[u+2],i(s)&&!o(s)?u+=3:(s=n,n=a.is,u+=2),e.is(t)&&n(t))return s(t);r.fail("Match error")}},function(t,e,n){"use strict";var r=n(12);!function(){function t(t,e){var n=r.b.run(e);return n.allDataLoaded?n.result:t}scrivito.loadableWithDefault=t,scrivito.loadWithDefault=t}()},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function l(t){return(l=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var f=n(1);!function(){var t=function(t){function e(t){return o(this,e),u(this,l(e).call(this,"Data is not yet loaded.",t))}return a(e,t),e}(f.ScrivitoError);scrivito.NotLoadedError=t}()},function(t,e,n){"use strict";var r=n(0),i=n.n(r);!function(){function t(t,e,r){return n?t:i.a.throttle(t,e,r)}function e(){n=!0}var n=!1;scrivito.throttle=t,scrivito.bypassThrottle=e}()},function(t,e,n){"use strict";function r(t,e){return a(t)||o(t,e)||i()}function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function o(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function a(t){if(Array.isArray(t))return t}var s=n(0),u=n.n(s),c=n(47),l=n(1);!function(){scrivito.typeInfo={normalize:function(t){if(u.a.isString(t))return[t];if(u.a.isArray(t))return t;throw new l.InternalError("Type Info needs to be a string or an array containing a string and optionally a hash")},normalizeAttrs:function(t){var e=this;return u.a.mapObject(t,function(t,n){if(Object(c.a)(n))return u.a.isArray(t)?t:[t];if(!u.a.isArray(t))throw new l.InternalError("Value for ".concat(n," should be a tuple: [value, typeInfo]"));var i=r(t,2),o=i[0],a=i[1];return[o,e.normalize(a)]})},unwrapAttributes:function(t){return u.a.mapObject(t,function(t){return r(t,1)[0]})}}}()},function(t,e,n){"use strict";function r(t,e,n){var r=s.a.forClass(n);return Object(a.pick)({name:e,type:t,attributes:i(r.attributes,Object(c.a)(e,"attributes")),onlyInside:r.onlyInside,description:Object(c.a)(e,"description"),hideInSelectionDialogs:Object(c.a)(e,"hideInSelectionDialogs"),properties:Object(c.a)(e,"properties"),propertiesGroups:Object(c.a)(e,"propertiesGroups"),thumbnail:Object(c.a)(e,"thumbnail"),title:Object(c.a)(e,"title")},a.identity)}function i(t,e){var n=Object(a.map)(t,function(t,e){var n=t[0],r=t[1],i={name:e,type:n};return r.only&&(i.only=r.only),r.values&&(i.values=r.values),i});return e&&Object.keys(e).forEach(function(t){var r=Object(a.findWhere)(n,{name:t});if(r){var i=e[t],o=i.title,s=i.description,u=i.values;u?Object(a.extend)(r,{title:o,description:s,valuesLocalization:u}):Object(a.extend)(r,{title:o,description:s})}}),n}function o(t,e){var n=_.default.getIncludingDeleted(e);if(n){var r=Object(w.e)(Object(d.a)(),n);return Object(l.a)(n.objClass(),t,r)}}var a=n(0),s=(n.n(a),n(42)),u=n(129),c=n(82),l=n(225),f=n(61),d=n(62),h=n(310),p=n(313),v=n(70),y=n(135),m=n(137),b=n(138),g=n(222),w=n(22),_=n(3),k=n(228),O=function(){function t(){}return t.prototype.contentBrowserConfiguration=function(){return Object(b.a)(Object(m.b)())},t.prototype.titleForObj=function(t){return o("titleForContent",t)},t.prototype.descriptionForObj=function(t){return o("descriptionForContent",t)},t.prototype.titleForWidget=function(t,e){return Object(k.a)(t,e)},t.prototype.initializeContentForObj=function(t){Object(g.b)(t)},t.prototype.initializeContentForWidget=function(t,e){Object(g.c)(t,e)},t.prototype.getClasses=function(){var t=Object(f.a)(),e=[];return Object(a.each)(t.allObjClasses(),function(t,n){return e.push(r("Obj",n,t))}),Object(a.each)(t.allWidgetClasses(),function(t,n){return e.push(r("Widget",n,t))}),e},t.prototype.navigateTo=function(t){Object(u.a)(function(){var e=_.default.get(t);if(e)return Object(w.e)(Object(d.a)(),e)})},t.prototype.mountComponent=function(t,e){Object(h.a)(t,e)},t.prototype.resolveUrl=function(t){return Object(p.a)(t).then(function(t){if(!t||!t.obj)return null;var e=t.obj,n=t.url.fragment(),r=t.url.search(),i={obj_id:e.id()};return n&&(i.fragment=n),r&&(i.query=r),i})},t.prototype.getDocumentHeight=function(){return Object(v.b)().querySelector("html").getBoundingClientRect().height},t.prototype.replaceInternalLinks=function(t){return Object(y.a)(t)},t}();e.a=O},function(t,e,n){"use strict";function r(t){return o()(t)}e.a=r;var i=n(156),o=n.n(i)},function(t,e,n){var r,i;!function(n){"use strict";var o={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"Ae","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"Oe","Ő":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"Ue","Ű":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"ae","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"oe","ő":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"ue","ű":"u","ý":"y","þ":"th","ÿ":"y","ẞ":"SS","ا":"a","أ":"a","إ":"i","آ":"aa","ؤ":"u","ئ":"e","ء":"a","ب":"b","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ي":"y","ى":"a","ة":"h","ﻻ":"la","ﻷ":"laa","ﻹ":"lai","ﻵ":"laa","گ":"g","چ":"ch","پ":"p","ژ":"zh","ک":"k","ی":"y","َ":"a","ً":"an","ِ":"e","ٍ":"en","ُ":"u","ٌ":"on","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","က":"k","ခ":"kh","ဂ":"g","ဃ":"ga","င":"ng","စ":"s","ဆ":"sa","ဇ":"z","စျ":"za","ည":"ny","ဋ":"t","ဌ":"ta","ဍ":"d","ဎ":"da","ဏ":"na","တ":"t","ထ":"ta","ဒ":"d","ဓ":"da","န":"n","ပ":"p","ဖ":"pa","ဗ":"b","ဘ":"ba","မ":"m","ယ":"y","ရ":"ya","လ":"l","ဝ":"w","သ":"th","ဟ":"h","ဠ":"la","အ":"a","ြ":"y","ျ":"ya","ွ":"w","ြွ":"yw","ျွ":"ywa","ှ":"h","ဧ":"e","၏":"-e","ဣ":"i","ဤ":"-i","ဉ":"u","ဦ":"-u","ဩ":"aw","သြော":"aw","ဪ":"aw","၀":"0","၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","္":"","့":"","း":"","č":"c","ď":"d","ě":"e","ň":"n","ř":"r","š":"s","ť":"t","ů":"u","ž":"z","Č":"C","Ď":"D","Ě":"E","Ň":"N","Ř":"R","Š":"S","Ť":"T","Ů":"U","Ž":"Z","ހ":"h","ށ":"sh","ނ":"n","ރ":"r","ބ":"b","ޅ":"lh","ކ":"k","އ":"a","ވ":"v","މ":"m","ފ":"f","ދ":"dh","ތ":"th","ލ":"l","ގ":"g","ޏ":"gn","ސ":"s","ޑ":"d","ޒ":"z","ޓ":"t","ޔ":"y","ޕ":"p","ޖ":"j","ޗ":"ch","ޘ":"tt","ޙ":"hh","ޚ":"kh","ޛ":"th","ޜ":"z","ޝ":"sh","ޞ":"s","ޟ":"d","ޠ":"t","ޡ":"z","ޢ":"a","ޣ":"gh","ޤ":"q","ޥ":"w","ަ":"a","ާ":"aa","ި":"i","ީ":"ee","ު":"u","ޫ":"oo","ެ":"e","ޭ":"ey","ޮ":"o","ޯ":"oa","ް":"","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"p","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","α":"a","β":"v","γ":"g","δ":"d","ε":"e","ζ":"z","η":"i","θ":"th","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"ks","ο":"o","π":"p","ρ":"r","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"o","ά":"a","έ":"e","ί":"i","ό":"o","ύ":"y","ή":"i","ώ":"o","ς":"s","ϊ":"i","ΰ":"y","ϋ":"y","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"I","Θ":"TH","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"KS","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"O","Ά":"A","Έ":"E","Ί":"I","Ό":"O","Ύ":"Y","Ή":"I","Ώ":"O","Ϊ":"I","Ϋ":"Y","ā":"a","ē":"e","ģ":"g","ī":"i","ķ":"k","ļ":"l","ņ":"n","ū":"u","Ā":"A","Ē":"E","Ģ":"G","Ī":"I","Ķ":"k","Ļ":"L","Ņ":"N","Ū":"U","Ќ":"Kj","ќ":"kj","Љ":"Lj","љ":"lj","Њ":"Nj","њ":"nj","Тс":"Ts","тс":"ts","ą":"a","ć":"c","ę":"e","ł":"l","ń":"n","ś":"s","ź":"z","ż":"z","Ą":"A","Ć":"C","Ę":"E","Ł":"L","Ń":"N","Ś":"S","Ź":"Z","Ż":"Z","Є":"Ye","І":"I","Ї":"Yi","Ґ":"G","є":"ye","і":"i","ї":"yi","ґ":"g","ă":"a","Ă":"A","ș":"s","Ș":"S","ț":"t","Ț":"T","ţ":"t","Ţ":"T","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ё":"yo","ж":"zh","з":"z","и":"i","й":"i","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"kh","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ё":"Yo","Ж":"Zh","З":"Z","И":"I","Й":"I","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"Kh","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","ђ":"dj","ј":"j","ћ":"c","џ":"dz","Ђ":"Dj","Ј":"j","Ћ":"C","Џ":"Dz","ľ":"l","ĺ":"l","ŕ":"r","Ľ":"L","Ĺ":"L","Ŕ":"R","ş":"s","Ş":"S","ı":"i","İ":"I","ğ":"g","Ğ":"G","ả":"a","Ả":"A","ẳ":"a","Ẳ":"A","ẩ":"a","Ẩ":"A","đ":"d","Đ":"D","ẹ":"e","Ẹ":"E","ẽ":"e","Ẽ":"E","ẻ":"e","Ẻ":"E","ế":"e","Ế":"E","ề":"e","Ề":"E","ệ":"e","Ệ":"E","ễ":"e","Ễ":"E","ể":"e","Ể":"E","ỏ":"o","ọ":"o","Ọ":"o","ố":"o","Ố":"O","ồ":"o","Ồ":"O","ổ":"o","Ổ":"O","ộ":"o","Ộ":"O","ỗ":"o","Ỗ":"O","ơ":"o","Ơ":"O","ớ":"o","Ớ":"O","ờ":"o","Ờ":"O","ợ":"o","Ợ":"O","ỡ":"o","Ỡ":"O","Ở":"o","ở":"o","ị":"i","Ị":"I","ĩ":"i","Ĩ":"I","ỉ":"i","Ỉ":"i","ủ":"u","Ủ":"U","ụ":"u","Ụ":"U","ũ":"u","Ũ":"U","ư":"u","Ư":"U","ứ":"u","Ứ":"U","ừ":"u","Ừ":"U","ự":"u","Ự":"U","ữ":"u","Ữ":"U","ử":"u","Ử":"ư","ỷ":"y","Ỷ":"y","ỳ":"y","Ỳ":"Y","ỵ":"y","Ỵ":"Y","ỹ":"y","Ỹ":"Y","ạ":"a","Ạ":"A","ấ":"a","Ấ":"A","ầ":"a","Ầ":"A","ậ":"a","Ậ":"A","ẫ":"a","Ẫ":"A","ắ":"a","Ắ":"A","ằ":"a","Ằ":"A","ặ":"a","Ặ":"A","ẵ":"a","Ẵ":"A","⓪":"0","①":"1","②":"2","③":"3","④":"4","⑤":"5","⑥":"6","⑦":"7","⑧":"8","⑨":"9","⑩":"10","⑪":"11","⑫":"12","⑬":"13","⑭":"14","⑮":"15","⑯":"16","⑰":"17","⑱":"18","⑲":"18","⑳":"18","⓵":"1","⓶":"2","⓷":"3","⓸":"4","⓹":"5","⓺":"6","⓻":"7","⓼":"8","⓽":"9","⓾":"10","⓿":"0","⓫":"11","⓬":"12","⓭":"13","⓮":"14","⓯":"15","⓰":"16","⓱":"17","⓲":"18","⓳":"19","⓴":"20","Ⓐ":"A","Ⓑ":"B","Ⓒ":"C","Ⓓ":"D","Ⓔ":"E","Ⓕ":"F","Ⓖ":"G","Ⓗ":"H","Ⓘ":"I","Ⓙ":"J","Ⓚ":"K","Ⓛ":"L","Ⓜ":"M","Ⓝ":"N","Ⓞ":"O","Ⓟ":"P","Ⓠ":"Q","Ⓡ":"R","Ⓢ":"S","Ⓣ":"T","Ⓤ":"U","Ⓥ":"V","Ⓦ":"W","Ⓧ":"X","Ⓨ":"Y","Ⓩ":"Z","ⓐ":"a","ⓑ":"b","ⓒ":"c","ⓓ":"d","ⓔ":"e","ⓕ":"f","ⓖ":"g","ⓗ":"h","ⓘ":"i","ⓙ":"j","ⓚ":"k","ⓛ":"l","ⓜ":"m","ⓝ":"n","ⓞ":"o","ⓟ":"p","ⓠ":"q","ⓡ":"r","ⓢ":"s","ⓣ":"t","ⓤ":"u","ⓦ":"v","ⓥ":"w","ⓧ":"x","ⓨ":"y","ⓩ":"z","“":'"',"”":'"',"‘":"'","’":"'","∂":"d","ƒ":"f","™":"(TM)","©":"(C)","œ":"oe","Œ":"OE","®":"(R)","†":"+","℠":"(SM)","…":"...","˚":"o","º":"o","ª":"a","•":"*","၊":",","။":".",$:"USD","€":"EUR","₢":"BRN","₣":"FRF","£":"GBP","₤":"ITL","₦":"NGN","₧":"ESP","₩":"KRW","₪":"ILS","₫":"VND","₭":"LAK","₮":"MNT","₯":"GRD","₱":"ARS","₲":"PYG","₳":"ARA","₴":"UAH","₵":"GHS","¢":"cent","¥":"CNY","元":"CNY","円":"YEN","﷼":"IRR","₠":"EWE","฿":"THB","₨":"INR","₹":"INR","₰":"PF","₺":"TRY","؋":"AFN","₼":"AZN","лв":"BGN","៛":"KHR","₡":"CRC","₸":"KZT","ден":"MKD","zł":"PLN","₽":"RUB","₾":"GEL"},a=["်","ް"],s={"ာ":"a","ါ":"a","ေ":"e","ဲ":"e","ိ":"i","ီ":"i","ို":"o","ု":"u","ူ":"u","ေါင်":"aung","ော":"aw","ော်":"aw","ေါ":"aw","ေါ်":"aw","်":"်","က်":"et","ိုက်":"aik","ောက်":"auk","င်":"in","ိုင်":"aing","ောင်":"aung","စ်":"it","ည်":"i","တ်":"at","ိတ်":"eik","ုတ်":"ok","ွတ်":"ut","ေတ်":"it","ဒ်":"d","ိုဒ်":"ok","ုဒ်":"ait","န်":"an","ာန်":"an","ိန်":"ein","ုန်":"on","ွန်":"un","ပ်":"at","ိပ်":"eik","ုပ်":"ok","ွပ်":"ut","န်ုပ်":"nub","မ်":"an","ိမ်":"ein","ုမ်":"on","ွမ်":"un","ယ်":"e","ိုလ်":"ol","ဉ်":"in","ံ":"an","ိံ":"ein","ုံ":"on","ައް":"ah","ަށް":"ah"},u={en:{},az:{"ç":"c","ə":"e","ğ":"g","ı":"i","ö":"o","ş":"s","ü":"u","Ç":"C","Ə":"E","Ğ":"G","İ":"I","Ö":"O","Ş":"S","Ü":"U"},cs:{"č":"c","ď":"d","ě":"e","ň":"n","ř":"r","š":"s","ť":"t","ů":"u","ž":"z","Č":"C","Ď":"D","Ě":"E","Ň":"N","Ř":"R","Š":"S","Ť":"T","Ů":"U","Ž":"Z"},fi:{"ä":"a","Ä":"A","ö":"o","Ö":"O"},hu:{"ä":"a","Ä":"A","ö":"o","Ö":"O","ü":"u","Ü":"U","ű":"u","Ű":"U"},lt:{"ą":"a","č":"c","ę":"e","ė":"e","į":"i","š":"s","ų":"u","ū":"u","ž":"z","Ą":"A","Č":"C","Ę":"E","Ė":"E","Į":"I","Š":"S","Ų":"U","Ū":"U"},lv:{"ā":"a","č":"c","ē":"e","ģ":"g","ī":"i","ķ":"k","ļ":"l","ņ":"n","š":"s","ū":"u","ž":"z","Ā":"A","Č":"C","Ē":"E","Ģ":"G","Ī":"i","Ķ":"k","Ļ":"L","Ņ":"N","Š":"S","Ū":"u","Ž":"Z"},pl:{"ą":"a","ć":"c","ę":"e","ł":"l","ń":"n","ó":"o","ś":"s","ź":"z","ż":"z","Ą":"A","Ć":"C","Ę":"e","Ł":"L","Ń":"N","Ó":"O","Ś":"S","Ź":"Z","Ż":"Z"},sv:{"ä":"a","Ä":"A","ö":"o","Ö":"O"},sk:{"ä":"a","Ä":"A"},sr:{"љ":"lj","њ":"nj","Љ":"Lj","Њ":"Nj","đ":"dj","Đ":"Dj"},tr:{"Ü":"U","Ö":"O","ü":"u","ö":"o"}},c={ar:{"∆":"delta","∞":"la-nihaya","♥":"hob","&":"wa","|":"aw","<":"aqal-men",">":"akbar-men","∑":"majmou","¤":"omla"},az:{},ca:{"∆":"delta","∞":"infinit","♥":"amor","&":"i","|":"o","<":"menys que",">":"mes que","∑":"suma dels","¤":"moneda"},cs:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"nebo","<":"mensi nez",">":"vetsi nez","∑":"soucet","¤":"mena"},de:{"∆":"delta","∞":"unendlich","♥":"Liebe","&":"und","|":"oder","<":"kleiner als",">":"groesser als","∑":"Summe von","¤":"Waehrung"},dv:{"∆":"delta","∞":"kolunulaa","♥":"loabi","&":"aai","|":"noonee","<":"ah vure kuda",">":"ah vure bodu","∑":"jumula","¤":"faisaa"},en:{"∆":"delta","∞":"infinity","♥":"love","&":"and","|":"or","<":"less than",">":"greater than","∑":"sum","¤":"currency"},es:{"∆":"delta","∞":"infinito","♥":"amor","&":"y","|":"u","<":"menos que",">":"mas que","∑":"suma de los","¤":"moneda"},fa:{"∆":"delta","∞":"bi-nahayat","♥":"eshgh","&":"va","|":"ya","<":"kamtar-az",">":"bishtar-az","∑":"majmooe","¤":"vahed"},fi:{"∆":"delta","∞":"aarettomyys","♥":"rakkaus","&":"ja","|":"tai","<":"pienempi kuin",">":"suurempi kuin","∑":"summa","¤":"valuutta"},fr:{"∆":"delta","∞":"infiniment","♥":"Amour","&":"et","|":"ou","<":"moins que",">":"superieure a","∑":"somme des","¤":"monnaie"},ge:{"∆":"delta","∞":"usasruloba","♥":"siqvaruli","&":"da","|":"an","<":"naklebi",">":"meti","∑":"jami","¤":"valuta"},gr:{},hu:{"∆":"delta","∞":"vegtelen","♥":"szerelem","&":"es","|":"vagy","<":"kisebb mint",">":"nagyobb mint","∑":"szumma","¤":"penznem"},it:{"∆":"delta","∞":"infinito","♥":"amore","&":"e","|":"o","<":"minore di",">":"maggiore di","∑":"somma","¤":"moneta"},lt:{"∆":"delta","∞":"begalybe","♥":"meile","&":"ir","|":"ar","<":"maziau nei",">":"daugiau nei","∑":"suma","¤":"valiuta"},lv:{"∆":"delta","∞":"bezgaliba","♥":"milestiba","&":"un","|":"vai","<":"mazak neka",">":"lielaks neka","∑":"summa","¤":"valuta"},my:{"∆":"kwahkhyaet","∞":"asaonasme","♥":"akhyait","&":"nhin","|":"tho","<":"ngethaw",">":"kyithaw","∑":"paungld","¤":"ngwekye"},mk:{},nl:{"∆":"delta","∞":"oneindig","♥":"liefde","&":"en","|":"of","<":"kleiner dan",">":"groter dan","∑":"som","¤":"valuta"},pl:{"∆":"delta","∞":"nieskonczonosc","♥":"milosc","&":"i","|":"lub","<":"mniejsze niz",">":"wieksze niz","∑":"suma","¤":"waluta"},pt:{"∆":"delta","∞":"infinito","♥":"amor","&":"e","|":"ou","<":"menor que",">":"maior que","∑":"soma","¤":"moeda"},ro:{"∆":"delta","∞":"infinit","♥":"dragoste","&":"si","|":"sau","<":"mai mic ca",">":"mai mare ca","∑":"suma","¤":"valuta"},ru:{"∆":"delta","∞":"beskonechno","♥":"lubov","&":"i","|":"ili","<":"menshe",">":"bolshe","∑":"summa","¤":"valjuta"},sk:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"alebo","<":"menej ako",">":"viac ako","∑":"sucet","¤":"mena"},sr:{},tr:{"∆":"delta","∞":"sonsuzluk","♥":"ask","&":"ve","|":"veya","<":"kucuktur",">":"buyuktur","∑":"toplam","¤":"para birimi"},uk:{"∆":"delta","∞":"bezkinechnist","♥":"lubov","&":"i","|":"abo","<":"menshe",">":"bilshe","∑":"suma","¤":"valjuta"},vn:{"∆":"delta","∞":"vo cuc","♥":"yeu","&":"va","|":"hoac","<":"nho hon",">":"lon hon","∑":"tong","¤":"tien te"}},l=[";","?",":","@","&","=","+","$",",","/"].join(""),f=[";","?",":","@","&","=","+","$",","].join(""),d=[".","!","~","*","'","(",")"].join(""),h=function(t,e){var n,r,i,h,p,m,b,g,w,_,k,O,E,x,C="-",j="",S="",A=!0,T={},N="";if("string"!=typeof t)return"";if("string"==typeof e&&(C=e),b=c.en,g=u.en,"object"==typeof e){n=e.maintainCase||!1,T=e.custom&&"object"==typeof e.custom?e.custom:T,i=+e.truncate>1&&e.truncate||!1,h=e.uric||!1,p=e.uricNoSlash||!1,m=e.mark||!1,A=!1!==e.symbols&&!1!==e.lang,C=e.separator||C,h&&(N+=l),p&&(N+=f),m&&(N+=d),b=e.lang&&c[e.lang]&&A?c[e.lang]:A?c.en:{},g=e.lang&&u[e.lang]?u[e.lang]:!1===e.lang||!0===e.lang?{}:u.en,e.titleCase&&"number"==typeof e.titleCase.length&&Array.prototype.toString.call(e.titleCase)?(e.titleCase.forEach(function(t){T[t+""]=t+""}),r=!0):r=!!e.titleCase,e.custom&&"number"==typeof e.custom.length&&Array.prototype.toString.call(e.custom)&&e.custom.forEach(function(t){T[t+""]=t+""}),Object.keys(T).forEach(function(e){var n;n=e.length>1?new RegExp("\\b"+v(e)+"\\b","gi"):new RegExp(v(e),"gi"),t=t.replace(n,T[e])});for(k in T)N+=k}for(N+=C,N=v(N),t=t.replace(/(^\s+|\s+$)/g,""),E=!1,x=!1,_=0,O=t.length;_<O;_++)k=t[_],y(k,T)?E=!1:g[k]?(k=E&&g[k].match(/[A-Za-z0-9]/)?" "+g[k]:g[k],E=!1):k in o?(_+1<O&&a.indexOf(t[_+1])>=0?(S+=k,k=""):!0===x?(k=s[S]+o[k],S=""):k=E&&o[k].match(/[A-Za-z0-9]/)?" "+o[k]:o[k],E=!1,x=!1):k in s?(S+=k,k="",_===O-1&&(k=s[S]),x=!0):!b[k]||h&&-1!==l.indexOf(k)||p&&-1!==f.indexOf(k)?(!0===x?(k=s[S]+k,S="",x=!1):E&&(/[A-Za-z0-9]/.test(k)||j.substr(-1).match(/A-Za-z0-9]/))&&(k=" "+k),E=!1):(k=E||j.substr(-1).match(/[A-Za-z0-9]/)?C+b[k]:b[k],k+=void 0!==t[_+1]&&t[_+1].match(/[A-Za-z0-9]/)?C:"",E=!0),j+=k.replace(new RegExp("[^\\w\\s"+N+"_-]","g"),C);return r&&(j=j.replace(/(\w)(\S*)/g,function(t,e,n){var r=e.toUpperCase()+(null!==n?n:"");return Object.keys(T).indexOf(r.toLowerCase())<0?r:r.toLowerCase()})),j=j.replace(/\s+/g,C).replace(new RegExp("\\"+C+"+","g"),C).replace(new RegExp("(^\\"+C+"+|\\"+C+"+$)","g"),""),i&&j.length>i&&(w=j.charAt(i)===C,j=j.slice(0,i),w||(j=j.slice(0,j.lastIndexOf(C)))),n||r||(j=j.toLowerCase()),j},p=function(t){return function(e){return h(e,t)}},v=function(t){return t.replace(/[-\\^$*+?.()|[\]{}\/]/g,"\\$&")},y=function(t,e){for(var n in e)if(e[n]===t)return!0};void 0!==t&&t.exports?(t.exports=h,t.exports.createSlug=p):(r=[],void 0!==(i=function(){return h}.apply(e,r))&&(t.exports=i))}()},function(t,e,n){"use strict";function r(t,e){return a(t)||o(t,e)||i()}function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function o(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{r||null==s.return||s.return()}finally{if(i)throw o}}return n}function a(t){if(Array.isArray(t))return t}function s(t,e,n,i){var o=r(e,2),a=o[0],s=o[1];switch(n){case"binary":return u(a,s);case"date":return c(a,s);case"float":return h(a,s);case"enum":return f(a,s,i);case"html":return l(a,s);case"integer":return v(a,s);case"link":return y(a,s);case"linklist":return m(a,s);case"multienum":return d(a,s,i);case"reference":return w(a,s);case"referencelist":return _(a,s);case"string":return k(a,s);case"stringlist":return O(a,s);case"widgetlist":return E(a,s,t)}}function u(t,e){if("binary"===t&&e){var n=e.id,r="published"===scrivito.currentWorkspaceId();return new T.a(n,r).optimizeFor({})}return null}function c(t,e){return"date"!==t?null:Object(C.a)(e)}function l(t,e){return A.a.contains(["html","string"],t)&&A.a.isString(e)?e:""}function f(t,e,n){var r=n.values;return"string"===t&&A.a.contains(r,e)?e:null}function d(t,e,n){var r=n.values;return"stringlist"===t&&Array.isArray(e)?A.a.intersection(e,r):[]}function h(t,e){switch(t){case"string":return e.match(/^-?\d+(\.\d+)?$/)?p(e):null;case"number":return p(e);default:return null}}function p(t){var e=parseFloat(t);return Object(C.e)(e)?e:null}function v(t,e){switch(t){case"string":case"number":return Object(C.b)(e);default:return null}}function y(t,e){return"link"===t&&A.a.isObject(e)?b(e):null}function m(t,e){return A.a.isArray(e)?A.a.compact(e.map(b)):[]}function b(t){var e=A.a.pick(t,"title","query","fragment","target","url");e.hash=e.fragment,delete e.fragment,e.objId=t.obj_id;var n=j.a.build(e);return n.isBroken()?null:n}function g(t){var e=x.default.get(t);return e||null}function w(t,e){return"reference"===t&&e?g(e):null}function _(t,e){if("referencelist"!==t)return[];if(!e)return[];var n=e.map(g);return A.a.compact(n)}function k(t,e){return A.a.contains(["html","string"],t)&&A.a.isString(e)?e:""}function O(t,e){return"stringlist"===t&&Array.isArray(e)?e:[]}function E(t,e,n){return"widgetlist"!==t?[]:A.a.map(e,function(t){return n.widget(t)})}e.a=s;var x=n(3),C=n(48),j=n(34),S=n(0),A=n.n(S),T=n(25)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){return!!o(t,e)||!(!Array.isArray(t)||!Array.isArray(e))&&(t.length===e.length&&Object(a.every)(Object(a.zip)(t,e),function(t){return o(t[0],t[1])}))}function o(t,e){return!Array.isArray(t)&&!Array.isArray(e)&&(r(t,s.a)?t.equals(e):r(t,u.default)?t.equals(e):r(t,l.a)?t.equals(e):r(t,c.a)?t.equals(e):Object(a.isEqual)(t,e))}e.a=i;var a=n(0),s=(n.n(a),n(25)),u=n(3),c=n(34),l=n(27)},function(t,e,n){"use strict";function r(t){t.forEach(function(t){return u.c(t)})}function i(t,e){var n=v({},t,{index:e}),r=s.a(n);return s.c().subState(r)}function o(t){return function(){return t+"|"+Object(d.a)()}}function a(t){var e=Object(c.omit)({query:t.query,offset:t.offset,sort_by:t.sortBy,sort_order:t.sortDirection},c.isUndefined);return t.includeDeleted&&(e.options={include_deleted:!0}),e}var s=n(118),u=n(58),c=n(0),l=(n.n(c),n(7)),f=n(12),d=n(92),h=n(1),p=n(43),v=this&&this.__assign||Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t},y={results:[],total:0},m=function(){function t(t,e,n){this._params=t,this._batchSize=e,n?(this._index=n.index+1,this._continuation=n.continuationForNextBatch(),this._previousBatch=n):this._index=0}return t.store=function(t,e,n){void 0===n&&(n=e.length);var r=i(a(t),0),s=o(void 0);new f.b({state:r,invalidation:s,loader:function(){throw new h.InternalError("this should never be called")}}).set({results:e,total:n})},t.firstBatchFor=function(e,n){return new t(a(e),n)},t.countFor=function(t){return this.firstBatchFor(t,0).count()},t.prototype.objIds=function(){return this._response().results},t.prototype.count=function(){return this._response().total||0},t.prototype.nextBatch=function(){if(this.continuationForNextBatch())return new t(this._params,this._batchSize,this)},Object.defineProperty(t.prototype,"index",{get:function(){return this._index},enumerable:!0,configurable:!0}),t.prototype.continuationForNextBatch=function(){return this._response().continuation},t.prototype._response=function(){return this._data().get()||y},t.prototype._data=function(){return new f.b({state:i(this._params,this._index),loader:this._load.bind(this),invalidation:o(this._continuation)})},t.prototype._load=function(t){var e=this,n=t.push,i=t.isReload,o=t.wasCancelled;return this._fetchContinuation().then(function(t){if(o())throw new Error;var a={size:e._batchSize,continuation:t,include_objs:!i()},s=v({},e._params,a);return p.a.retrieveObjQuery(scrivito.currentWorkspaceId(),s).then(function(t){var e=t.objs;return e&&n(function(){return e.forEach(function(t){return u.e(t)})}),r(t.results),t})})},t.prototype._fetchContinuation=function(){var t=this._previousBatch;return t?Object(l.a)(function(){return t.continuationForNextBatch()}):scrivito.Promise.resolve()},t}();e.a=m},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}n.d(e,"a",function(){return c});var s=n(58),u=n(119),c=function(){function t(e,n){i(this,t),this._params=e,this._batchSize=n}return a(t,[{key:"count",value:function(){return u.a.count(this._params)}},{key:"iterator",value:function(){return new l(this._params,this._batchSize)}}]),t}(),l=function(){function t(e,n){i(this,t),this._iterator=new u.a(e,n).iterator()}return a(t,[{key:"next",value:function(){if(!this._iterator)return{done:!0};var t=this._iterator.next().value;if(!t)return{done:!0};var e=s.b(t);return void 0===e?(this._iterator=void 0,{done:!0}):e.isNonExistent()?this.next():{value:e,done:!1}}}]),t}()},function(t,e,n){"use strict";function r(t){var e=scrivito.computeCacheKey(t);return h.b.subState("facetQuery").subState(e)}function i(t){return function(){return v.a.retrieveFacetQuery(scrivito.currentWorkspaceId(),t)}}function o(){return Object(p.a)()||""}function a(t){var e=u.without.apply(void 0,[Object.keys(t)].concat(y));if(e.length)throw new d.ArgumentError("Invalid options: "+Object(f.a)(e)+". Valid options: "+y)}function s(t,e,n){var r={facets:[{attribute:t,limit:e.limit||10,include_objs:e.includeObjs||0}],size:0};return Object(u.isEmpty)(n)||(r.query=n),r}var u=n(0),c=(n.n(u),n(218)),l=n(12),f=n(41),d=n(1),h=n(4),p=n(92),v=n(43),y=["limit","includeObjs"],m=function(){function t(t,e,n){a(e),this._requestParams=s(t,e,n),this._loadableData=new l.b({state:r(this._requestParams),loader:i(this._requestParams),invalidation:o})}return t.store=function(t,e,n,u){a(e);var c=s(t,e,n);new l.b({state:r(c),loader:i(c),invalidation:o,throwNotLoaded:!0}).set(u)},t.prototype.result=function(){var t=this._loadableData.get();return t?t.facets[0].map(function(t){var e=t.value,n=t.total,r=t.results.map(function(t){return t.id});return new c.a(e,n,r)}):[]},t}();e.a=m},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}n.d(e,"a",function(){return u});var s=n(3),u=function(){function t(e,n,r){i(this,t),this._name=e,this._count=n,this._includedObjs=r}return a(t,[{key:"name",value:function(){return this._name}},{key:"count",value:function(){return this._count}},{key:"includedObjs",value:function(){return this._includedObjs.map(function(t){return s.default.get(t)})}}]),t}()},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}var s=n(22),u=function(){function t(e,n){i(this,t),this._registry=e,this._basicObjFacetValue=n}return a(t,[{key:"name",value:function(){return this._basicObjFacetValue.name()}},{key:"count",value:function(){return this._basicObjFacetValue.count()}},{key:"includedObjs",value:function(){var t=this._basicObjFacetValue.includedObjs();return Object(s.e)(this._registry,t)}}]),t}();e.a=u},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}function s(t){return function(){function e(){i(this,e)}return a(e,[{key:"id",value:function(){return this._scrivitoPrivateContent.id()}},{key:"objClass",value:function(){return this._scrivitoPrivateContent.objClass()}},{key:"finishSaving",value:function(){return this._scrivitoPrivateContent.finishSaving()}},{key:"get",value:function(e){return t.read(this,e)}},{key:"update",value:function(e){t.update(this,e)}}]),e}()}e.a=s},function(t,e,n){"use strict";function r(t,e,n,r){var i={};return Object.keys(n.definition.attributes).forEach(function(n){if(!t.hasOwnProperty(n)){var o=e.initialContentFor(r,n);void 0!==o&&(i[n]=o)}}),i}e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){var n=Object(h.a)(t,"initialContent");if(n){var r=n[e];if(Object(l.isFunction)(r))return r();if(o(r)){var i=Object(y.a)();return r.map(function(t){var e=t._scrivitoPrivateContent,n=e.copy();return Object(v.e)(i,n)})}return r}}function o(t){return Object(l.isArray)(t)&&Object(l.every)(t,a)}function a(t){return t._scrivitoPrivateContent&&r(t._scrivitoPrivateContent,d.a)}function s(t){c(f.default.get(t))}function u(t,e){c(f.default.get(t).widget(e))}function c(t){var e=t.objClass(),n=Object(p.a)().getClass(e)._scrivitoPrivateSchema,r={};Object(l.each)(n.attributes,function(n,o){var a=t.get(o,n);if(Object(l.isEmpty)(a)){var s=i(e,o);s&&(r[o]=s)}});var o=Object(v.b)(r,n,e);t.update(o)}e.a=i,e.b=s,e.c=u;var l=n(0),f=(n.n(l),n(3)),d=n(27),h=n(82),p=n(61),v=n(22),y=n(62)},function(t,e,n){"use strict";n.d(e,"b",function(){return r}),n.d(e,"a",function(){return i}),n.d(e,"e",function(){return o}),n.d(e,"c",function(){return a}),n.d(e,"g",function(){return s}),n.d(e,"h",function(){return u}),n.d(e,"f",function(){return c}),n.d(e,"d",function(){return l});var r=!("undefined"==typeof window||!window.document||!window.document.createElement),i=function(t,e,n){return t.addEventListener?t.addEventListener(e,n,!1):t.attachEvent("on"+e,n)},o=function(t,e,n){return t.removeEventListener?t.removeEventListener(e,n,!1):t.detachEvent("on"+e,n)},a=function(t,e){return e(window.confirm(t))},s=function(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)},u=function(){return-1===window.navigator.userAgent.indexOf("Trident")},c=function(){return-1===window.navigator.userAgent.indexOf("Firefox")},l=function(t){return void 0===t.state&&-1===navigator.userAgent.indexOf("CriOS")}},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){d=t}function o(t){if(u(t),s(t))return"/";if(t.permalink())return"/".concat(t.permalink());var e=l(t);return e?"/".concat(e,"-").concat(t.id()):"/".concat(t.id())}function a(t){c(t);var e=t.replace(new RegExp("^/+|/+$","g"),"");if(""===e)return Object(b.c)(d());var n=v.default.getByPermalink(e);return n||v.default.get(f(e))}function s(t){if(!d)return!1;var e=scrivito.loadableWithDefault(null,d);return!!e&&e.id()===t.id()}function u(t){if(!r(t,v.default))throw new y.ArgumentError("Parameter obj needs to be a BasicObj.")}function c(t){if(!p.a.isString(t))throw new y.ArgumentError("Parameter path needs to be a String.")}function l(t){var e=Object(m.a)();return Object(b.e)(e,t).slug()}function f(t){var e=p.a.last(t.split("-"));return p.a.last(e.split("/"))}e.b=i,e.a=o,e.c=a;var d,h=n(0),p=n.n(h),v=n(3),y=n(1),m=n(62),b=n(22)},function(t,e,n){"use strict";function r(t,e){var n=Object(o.a)(t,e);if(Object(i.isFunction)(n))try{for(var r=arguments.length,s=new Array(r>2?r-2:0),u=2;u<r;u++)s[u-2]=arguments[u];return n.apply(null,s)}catch(t){Object(a.b)(t)}}e.a=r;var i=n(0),o=(n.n(i),n(82)),a=n(37)},function(t,e,n){"use strict";function r(t){p(t);var e=t.tenant,n=t.homepage,r=t.routingBasePath,i=t.unstable,o=t.endpoint||"api.scrivito.com";if(f.b){var u={tenant:e,endpoint:o};i&&i.useRailsAuth&&(u.useRailsAuth=i.useRailsAuth),f.b.configureTenant(u)}else s.a.init(o,e);Object(l.b)(n||function(){return a.default.root()}),Object(c.e)({routingBasePath:r}),d=!0}function i(){return d}n.d(e,"a",function(){return r}),n.d(e,"b",function(){return i});var o=n(24),a=n(3),s=n(21),u=n(39),c=n(63),l=n(224),f=n(18),d=!1,h=o.a.struct({tenant:o.a.String,endpoint:o.a.maybe(o.a.String),homepage:o.a.maybe(o.a.Function),routingBasePath:o.a.maybe(o.a.String),unstable:o.a.maybe(o.a.Object)}),p=Object(u.a)("configure",[["configuration",h]],{docPermalink:"js-sdk/configure"})},function(t,e,n){"use strict";function r(t){if(!t)return!1;var e=t.objClass();if(!e)return!1;var n=Object(o.a)().getClass(e);return!!n&&i.a.forClass(n).isBinary()}e.a=r;var i=n(42),o=n(61)},function(t,e,n){"use strict";function r(t,e){var n=a.default.getIncludingDeleted(t),r=n.widget(e);return i(r)||o(r.objClass())}function i(t){var e=Object(f.e)(Object(c.a)(),t),n=t.objClass();return Object(s.a)(n,"titleForContent",e)}function o(t){return Object(u.a)(t,"title")||Object(l.d)(t)}e.a=r;var a=n(3),s=n(225),u=n(82),c=n(62),l=n(23),f=n(22)},function(t,e,n){"use strict";function r(){return++c}function i(t){var e=r();l[e]=t;var n=a(),i=n.get()||[];n.set(i.concat([e]))}function o(t){var e=t.type,n=t.tag,r=a().get();if(r){var i=Object(s.find)(r,function(t){return l[t]&&l[t].canEdit({type:e,tag:n})});if(i){return{id:i,editorClass:l[i]}}}}function a(){return u.a.subState("editors")}n.d(e,"a",function(){return o}),n.d(e,"b",function(){return i});var s=n(0),u=(n.n(s),n(4)),c=0,l={}},function(t,e,n){"use strict";function r(t){t.getAttribute("data-scrivito-editors-placeholder")||t.setAttribute("data-scrivito-editors-placeholder","Click to edit")}e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}var s=n(75),u=n.n(s),c=function(){function t(e,n){i(this,t),this.domNode=e,this.controller=n}return a(t,[{key:"content",value:function(){return this.controller.getContent()}},{key:"idFromPath",value:function(t){if(t.match(/^objid:/))return t.replace(/^objid:/,"")}},{key:"edQuery",value:function(){return u.a.apply(void 0,arguments)}},{key:"jQueryElement",value:function(){return this.edQuery(this.domNode)}},{key:"pathForId",value:function(t){return"objid:".concat(t)}},{key:"save",value:function(t){this.controller.setContent(t);var e={done:function(t){return t(),e}};return e}},{key:"trigger",value:function(){}}]),t}();e.a=c},function(t,e,n){"use strict";function r(t){return t.isRaw()||t.isExplicitlyTransformed()?t:t.optimizeFor({width:Object(i.e)().width*Object(i.a)()})}e.a=r;var i=n(70)},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function o(t,e){if(!i(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var h=n(14),p=n.n(h),v=n(0),y=(n.n(v),n(22)),m=n(34),b=n(3),g=n(25),w=n(129),_=n(15),k=n(234),O=n(136),E=n(347),x=n(59),C=n(18),j=function(t){function e(t){var n;return o(this,e),n=l(this,f(e).call(this,t)),n._onClick=n._onClick.bind(d(d(n))),n}return c(e,[{key:"render",value:function(){return p.a.createElement("a",this._linkProps(),this.props.children)}},{key:"_linkProps",value:function(){var t=Object(v.omit)(this.props,"to");return t.href=this._href(),t.onClick=this._onClick,t.target=this._target(),t}},{key:"_href",value:function(){return this._to()||"#"}},{key:"_onClick",value:function(t){t.preventDefault(),this.props.to&&(Object(v.isString)(this.props.to)?scrivito.openInNewWindow(this.props.to):this._openLink(t))}},{key:"_openLink",value:function(t){var e=this._to();if(e){var n=this._target();"_blank"===n||Object(k.a)(t)?this._openLinkInNewWindow(e):n?scrivito.openLocation(e,n):Object(w.a)(this.props.to)}}},{key:"_openLinkInNewWindow",value:function(t){C.b?C.b.openInNewWindow(t):scrivito.openInNewWindow(t)}},{key:"_target",value:function(){return this.props.target?this.props.target:this.props.to&&i(this.props.to._scrivitoPrivateContent,m.a)?this.props.to.target():void 0}},{key:"_to",value:function(){if(this.props.to){if(Object(v.isString)(this.props.to))return this.props.to;var t=Object(y.c)(this.props.to);if(i(t,m.a)||i(t,b.default)||i(t,g.a))return Object(O.a)(t)}}}]),a(e,t),e}(p.a.Component);j.displayName="Scrivito.LinkTag",j.propTypes=Object(E.a)({to:E.b.maybe(E.b.union([x.d,x.b,x.a,E.b.String]))},{strict:!1}),e.a=Object(_.a)(j)},function(t,e,n){"use strict";function r(t){return t.ctrlKey||t.metaKey||t.shiftKey||t.which===i}e.a=r;var i=2},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t){return(d=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var h=n(87),p=n(42),v=n(0),y=(n.n(v),n(14)),m=n.n(y),b=n(1),g=n(22),w=n(236),_=n(15),k=n(229),O=n(37),E=n(237),x=n(354),C=function(t){function e(){return o(this,e),l(this,d(e).apply(this,arguments))}return c(e,[{key:"render",value:function(){if(!this.props.content)return null;var t=p.a.basicFieldFor(this.props.content,this.props.attribute);if(!t){var e=this.props.attribute;return Object(O.b)(new b.ArgumentError('Component "Scrivito.ContentTag" received prop "attribute" with invalid value: '+'Attribute "'.concat(e,'" is not defined for content specified in prop "content".'))),null}var n,r,i=Object(k.a)({type:t.type(),tag:this.props.tag});return i&&(n=i.id,r=i.editorClass),Object(h.a)()?m.a.createElement(x.a,{key:this._editorKey(n),field:t,editorClass:r,tag:this.props.tag,customProps:this._customProps(),content:this.props.content},this.props.children):m.a.createElement(E.a,{field:t,tag:this.props.tag,customProps:this._customProps()},this.props.children)}},{key:"_customProps",value:function(){return Object(v.omit)(this.props,"content","attribute","tag")}},{key:"_editorKey",value:function(t){var e=Object(g.c)(this.props.content);return[this.props.tag,Object(w.a)(e),this.props.attribute,t].join("|")}}]),a(e,t),e}(m.a.Component);C.displayName="Scrivito.ContentTag",C.defaultProps={tag:"div"},e.a=Object(_.a)(C)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){if(r(t,o.default))return t.id();if(r(t,a.a))return"".concat(t.obj().id(),"|").concat(t.id());var e=Object(u.a)(t).substr(0,100);throw new s.InternalError('keyForBasicContent called with "'.concat(e,'". Expected an instance of')+" BasicObj or BasicWidget.")}e.a=i;var o=n(3),a=n(27),s=n(1),u=n(41)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var h=n(0),p=(n.n(h),n(14)),v=n.n(p),y=n(87),m=n(135),b=n(18),g=n(72),w=n(15),_=n(350),k=n(351),O=n(353),E=function(t){function e(t){var n;return o(this,e),n=l(this,f(e).call(this,t)),n._onClick=n._onClick.bind(d(d(n))),n}return c(e,[{key:"render",value:function(){switch(this.props.field.type()){case"html":return this._renderHtml();case"float":case"integer":case"string":return this._renderAsString();case"widgetlist":return this._renderWidgetlist();default:return this._renderContent({children:this.props.children})}}},{key:"_renderHtml",value:function(){if(this.props.children)return this._renderContent({children:this.props.children});var t=Object(m.a)(this._attributeValue()),e={dangerouslySetInnerHTML:{__html:t},onClick:this._onClick};return this._renderContent({props:e})}},{key:"_onClick",value:function(t){var e=Object(_.a)(t);e&&(e.openInNewWindow?this._openInNewWindow(t,e):this._openInCurrentWindow(t,e))}},{key:"_openInNewWindow",value:function(t,e){var n=e.openInNewWindow;b.b&&(t.preventDefault(),t.stopPropagation(),b.b.openInNewWindow(n))}},{key:"_openInCurrentWindow",value:function(t,e){var n=e.openInCurrentWindow;t.preventDefault(),t.stopPropagation(),Object(g.c)(n)}},{key:"_renderAsString",value:function(){var t=this.props.children||this._attributeValue();return this._renderContent({children:t})}},{key:"_renderWidgetlist",value:function(){var t,e=this._attributeValue();return e.length?t=e.map(function(t){return v.a.createElement(k.a,{key:t.id(),widget:t})}):Object(y.a)()&&(t=v.a.createElement(O.a,{field:this.props.field})),this._renderContent({children:t})}},{key:"_renderContent",value:function(t){var e=t.props,n=t.children,r=Object(h.extend)({},this.props.customProps,e,this._editingProps());return v.a.createElement(this.props.tag,r,n)}},{key:"_editingProps",value:function(){return this.props.onClick?{onClick:this.props.onClick,"data-scrivito-is-clickable":!0}:{}}},{key:"_attributeValue",value:function(){return this.props.field.get()}}]),a(e,t),e}(v.a.Component);E.displayName="Scrivito.ContentTag.AttributeValue",e.a=Object(w.a)(E)},function(t,e){t.exports=PropTypes},function(t,e,n){"use strict";function r(t){t.dataTransfer.effectAllowed="move";try{t.dataTransfer.setData("text/plain",t.target.id)}catch(t){}}e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var h=n(14),p=n.n(h),v=n(15),y=function(t){function e(t){var n;return o(this,e),n=l(this,f(e).call(this,t)),n._onClick=n._onClick.bind(d(d(n))),n}return c(e,[{key:"render",value:function(){var t="scrivito_option_marker scrivito_".concat(this.props.position);return this.props.isAlwaysShown&&(t+=" scrivito_visible"),p.a.createElement("span",{className:t,onClick:this._onClick,onMouseOver:this.props.onMouseOver,onMouseOut:this.props.onMouseOut},p.a.createElement("i",{className:"scrivito_icon scrivito_icon_marker_plus"}))}},{key:"_onClick",value:function(t){t.preventDefault(),t.stopPropagation(),this.props.insertWidget(this.props.widget,this.props.position)}}]),a(e,t),e}(p.a.Component);y.displayName="Scrivito.OptionMarker",e.a=Object(v.a)(y)},function(t,e,n){"use strict";function r(){i=!0}n.d(e,"b",function(){return i}),e.a=r;var i=!1},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";function r(){window.scrivito||(window.scrivito={}),window.scrivito.on||(window.scrivito.on=function(t,e){"content"===t&&document.addEventListener("DOMContentLoaded",function(){return e(window.document)})}),window.scrivito.in_editable_view||(window.scrivito.in_editable_view=function(){return!1})}e.a=r},function(t,e,n){"use strict";function r(t){if(t){t.setAppAdapter("1.2.0-rc1",new u.a);var e=t.uiAdapter();Object(l.a)(e),Object(c.b)(e)}scrivito.client.init({ui:t});var n=new i.a;Object(o.b)(n.promise),document.addEventListener("DOMContentLoaded",n.resolve)}e.a=r;var i=(n(162),n(292),n(293),n(317),n(13)),o=n(81),a=n(320),s=n(229),u=n(210),c=n(43),l=n(18);window.scrivito||(window.scrivito={}),window.scrivito.registerEditor=s.b,window.scrivito.openContentBrowser=a.a},function(t,e,n){"use strict";var r=n(127);n.n(r)},function(t,e,n){"use strict";var r=n(294);n.n(r),n(210),n(72),n(316)},function(t,e){window.scrivito||(window.scrivito={}),window.scrivito.AppSupport={}},function(t,e,n){"use strict";function r(){window.scrollTo(0,0)}e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}n.d(e,"a",function(){return h});var s=n(297),u=n(298),c=n(299),l=n(133),f=n(302),d=n(303),h=function(){function t(){i(this,t),this._registry=new c.a,this._registry.defaultClassForLinks=Object(u.a)(this._registry),this._registry.ObjSearch=Object(s.a)(this._registry),this.appModelAccessor=new l.a(this._registry)}return a(t,null,[{key:"init",value:function(e){var n=new t;return e.Obj=n.Obj,e.Widget=n.Widget,e.Link=n.Link,e.ObjSearch=n.ObjSearch,e.appModelAccessor=n.appModelAccessor,e.provideObjClass=function(){return n.provideObjClass.apply(n,arguments)},e.provideWidgetClass=function(){return n.provideWidgetClass.apply(n,arguments)},e.createObjClass=function(){return n.createObjClass.apply(n,arguments)},e.createWidgetClass=function(){return n.createWidgetClass.apply(n,arguments)},e.getClass=function(){return n.getClass.apply(n,arguments)},e.allObjClasses=function(){return n.allObjClasses()},e.allWidgetClasses=function(){return n.allWidgetClasses()},e._privateRealm=n,n}}]),a(t,[{key:"provideObjClass",value:function(t,e){return Object(d.c)(t,e),Object(f.c)(this._registry,t,e)}},{key:"provideWidgetClass",value:function(t,e){return Object(d.d)(t,e),Object(f.d)(this._registry,t,e)}},{key:"createObjClass",value:function(t){return Object(d.a)(t),Object(f.a)(this._registry,t)}},{key:"createWidgetClass",value:function(t){return Object(d.b)(t),Object(f.b)(this._registry,t)}},{key:"getClass",value:function(t){return this._registry.getClass(t)}},{key:"allObjClasses",value:function(){return this._registry.allObjClasses()}},{key:"allWidgetClasses",value:function(){return this._registry.allWidgetClasses()}},{key:"setInitialContentFor",value:function(t){this._registry.setInitialContentFor(t)}},{key:"Obj",get:function(){return this._registry.defaultClassForObjs}},{key:"Widget",get:function(){return this._registry.defaultClassForWidgets}},{key:"Link",get:function(){return this._registry.defaultClassForLinks}},{key:"ObjSearch",get:function(){return this._registry.ObjSearch}}]),t}()},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}function s(t){var e=function(){function e(t){i(this,e),this._scrivitoPrivateContent=new c.b(t)}return a(e,[{key:"and",value:function(t,n,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(r(t,e))this._scrivitoPrivateContent.and(t._scrivitoPrivateContent);else{var a=Object(f.d)(i);this._scrivitoPrivateContent.and(t,n,a,o)}return this}},{key:"andNot",value:function(t,e,n){var r=Object(f.d)(n);return this._scrivitoPrivateContent.andNot(t,e,r),this}},{key:"facet",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=this._scrivitoPrivateContent.facet(e,n);return h.a.map(r,function(e){return new l.a(t,e)})}},{key:"take",value:function(e){return this._scrivitoPrivateContent.batchSize(e),Object(u.a)(this._scrivitoPrivateContent,e).map(function(e){return Object(f.e)(t,e)})}},{key:"offset",value:function(t){return this._scrivitoPrivateContent.offset(t),this}},{key:"order",value:function(t,e){return this._scrivitoPrivateContent.order(t,e),this}},{key:"count",value:function(){return this._scrivitoPrivateContent.count()}}]),e}();if("function"==typeof window.Symbol){var n=window.Symbol.iterator;if(n){e.prototype[n]=function(){var e=this._scrivitoPrivateContent.iterator();return{next:function(){var n=e.next(),r=n.done,i=n.value;return r?{done:r}:{done:r,value:Object(f.e)(t,i)}}}}}}return e}e.a=s;var u=n(121),c=n(54),l=n(219),f=n(22),d=n(0),h=n.n(d)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t,e,n){return(d="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=h(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(n):i.value}})(t,e,n||t)}function h(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=p(t)););return t}function p(t){return(p=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function v(t){return function(e){function n(t){return o(this,n),l(this,p(n).call(this,t))}return c(n,[{key:"obj",value:function(){return Object(m.e)(t,d(p(n.prototype),"obj",this).call(this))}},{key:"fetchObj",value:function(e){return d(p(n.prototype),"fetchObj",this).call(this,e).then(function(e){return Object(m.e)(t,e)})}},{key:"_scrivitoPrivateContent",get:function(){return y.a.build(this.buildAttributes())}}]),a(n,e),n}(y.a)}e.a=v;var y=n(34),m=n(22)},function(t,e,n){"use strict";var r=n(0),i=(n.n(r),n(300)),o=n(301),a=function(){function t(){this.mapping={},this.defaultClassForObjs=Object(o.a)(this),this.defaultClassForWidgets=Object(i.a)(this)}return t.prototype.register=function(t,e){this.mapping[t]=e},t.prototype.getClass=function(t){return this.mapping[t]},t.prototype.allObjClasses=function(){return this.allForBaseClass(this.defaultClassForObjs)},t.prototype.allWidgetClasses=function(){return this.allForBaseClass(this.defaultClassForWidgets)},t.prototype.objClassFor=function(t){return this.appClassFor(t,this.defaultClassForObjs)},t.prototype.widgetClassFor=function(t){return this.appClassFor(t,this.defaultClassForWidgets)},t.prototype.objClassNameFor=function(t){return r.findKey(this.mapping,function(e){return e===t})},t.prototype.setInitialContentFor=function(t){this.initialContentForFunction=t},t.prototype.initialContentFor=function(t,e){if(this.initialContentForFunction)return this.initialContentForFunction(t,e)},t.prototype.appClassFor=function(t,e){var n=this.getClass(t);return n&&e.isPrototypeOf(n)?n:e},t.prototype.allForBaseClass=function(t){return r.pick(this.mapping,function(e){return t.isPrototypeOf(e)})},t}();e.a=a},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function h(t){var e=new g.a(t);return function(e){function n(e){var r;o(this,n),r=l(this,f(n).call(this));var i=y.a.forInstance(d(d(r))),a=t.objClassNameFor(r.constructor),s=r._prepareAttributesForConstructor(e,i,a),u=new m.a(s);return u.onDidPersist(function(e){var n=Object(k.e)(t,e),r=Object(_.a)(s,t,i,a);n.update(r)}),r._scrivitoPrivateContent=u,r}return c(n,[{key:"obj",value:function(){var e=this._scrivitoPrivateContent.obj();return Object(k.e)(t,e)}},{key:"copy",value:function(){var e=t.widgetClassFor(this.objClass()),n=this._scrivitoPrivateContent.copy();return Object(k.a)(n,e)}},{key:"_prepareAttributesForConstructor",value:function(t,e,n){p(n,t);var r={_objClass:n},i=Object(v.extend)({},t,r);return Object(k.b)(i,e,n)}}]),a(n,e),n}(Object(w.a)(e))}function p(t,e){if(!t)throw new b.ArgumentError("Creating widgets is not supported for the class Widget or abstract classes.");if(e.constructor!==Object)throw new b.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");if(e._objClass)throw new b.ArgumentError('Invalid attribute "_objClass". '+'"new '.concat(e._objClass,'" will automatically set the CMS object class correctly.'))}e.a=h;var v=n(0),y=(n.n(v),n(42)),m=n(27),b=n(1),g=n(133),w=n(220),_=n(221),k=n(22)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t){return(d=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function h(t){function e(e,n){var r=new t.ObjSearch;return e&&r.and("_objClass","equals",e),n&&r._scrivitoPrivateContent.batchSize(n),r}function n(e){return Object(w.e)(t,e)}var r=new g.a(t);return function(i){function s(){return o(this,s),l(this,d(s).apply(this,arguments))}return c(s,[{key:"lastChanged",value:function(){return this._scrivitoPrivateContent.lastChanged()}},{key:"path",value:function(){return this._scrivitoPrivateContent.path()}},{key:"parent",value:function(){return n(this._scrivitoPrivateContent.parent())}},{key:"ancestors",value:function(){return n(this._scrivitoPrivateContent.ancestors())}},{key:"backlinks",value:function(){return n(this._scrivitoPrivateContent.backlinks())}},{key:"children",value:function(){return n(this._scrivitoPrivateContent.children())}},{key:"orderedChildren",value:function(){return n(this._scrivitoPrivateContent.orderedChildren())}},{key:"permalink",value:function(){return this._scrivitoPrivateContent.permalink()}},{key:"slug",value:function(){return this._scrivitoPrivateContent.slug()}},{key:"isBinary",value:function(){var t=m.a.forInstance(this);return!!t&&t.isBinary()}},{key:"contentLength",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentLength():0}},{key:"contentType",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentType():""}},{key:"contentUrl",value:function(){return this.isBinary()?this._scrivitoPrivateContent.contentUrl():""}},{key:"metadata",value:function(){return this.isBinary()?this._scrivitoPrivateContent.metadata():new _.a}},{key:"destroy",value:function(){this._scrivitoPrivateContent.destroy()}},{key:"widget",value:function(t){return n(this._scrivitoPrivateContent.widget(t))}},{key:"widgets",value:function(){return n(this._scrivitoPrivateContent.widgets())}}],[{key:"get",value:function(t){return r.getObj(this,t)}},{key:"getIncludingDeleted",value:function(t){return r.getObjIncludingDeleted(this,t)}},{key:"getByPath",value:function(t){return n(y.default.getByPath(t))}},{key:"getByPermalink",value:function(t){return n(y.default.getByPermalink(t))}},{key:"all",value:function(){return e(t.objClassNameFor(this),1e3)}},{key:"root",value:function(){return n(y.default.root())}},{key:"where",value:function(n,r,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return e(t.objClassNameFor(this)).and(n,r,i,o)}},{key:"create",value:function(t){var e=this._prepareAttributesForCreate(t);return n(y.default.create(e))}},{key:"_prepareAttributesForCreate",value:function(e){var n=t.objClassNameFor(this),r=m.a.forClass(this);p(e,n);var i=Object(O.a)(e,t,r,n),o={_objClass:n},a=Object(v.extend)({},e,i,o);return Object(w.b)(a,r,n)}}]),a(s,i),s}(Object(k.a)(r))}function p(t,e){if(!e)throw new b.ArgumentError("Creating CMS objects is not supported for the class Obj or abstract classes.");if(t.constructor!==Object)throw new b.ArgumentError("The provided attributes are invalid. They have to be an Object with valid Scrivito attribute values.");if(t._objClass)throw new b.ArgumentError('Invalid attribute "_objClass". '+'"'.concat(t._objClass,'.create" will automatically set the CMS object class ')+"correctly.")}e.a=h;var v=n(0),y=(n.n(v),n(3)),m=n(42),b=n(1),g=n(133),w=n(22),_=n(130),k=n(220),O=n(221)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t,e){if(e.extend&&!f(e.extend,t.defaultClassForObjs))throw new h.ArgumentError('Invalid value for "extend": not a Scrivito Obj class');var n=e.extend||t.defaultClassForObjs,r=new p.a(e,n);return function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return v(e,t),Object.defineProperty(e,"_scrivitoPrivateSchema",{get:function(){return r},enumerable:!0,configurable:!0}),e}(n)}function o(t,e){if(e.extend&&!f(e.extend,t.defaultClassForWidgets))throw new h.ArgumentError('Invalid value for "extend": not a Scrivito Widget class');var n=e.extend||t.defaultClassForWidgets,r=new p.a(e,n);return function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return v(e,t),Object.defineProperty(e,"_scrivitoPrivateSchema",{get:function(){return r},enumerable:!0,configurable:!0}),e}(n)}function a(t,e,n){var r=s(t,e,n);return t.register(e,r),r}function s(t,e,n){return l(n)?n:i(t,Object(d.extend)({},n,{name:e}))}function u(t,e,n){var r=c(t,e,n);return t.register(e,r),r}function c(t,e,n){return l(n)?n:o(t,Object(d.extend)({},n,{name:e}))}function l(t){return!(!t||!t._scrivitoPrivateSchema)}function f(t,e){return!!t&&(t===e||r(t.prototype,e))}e.a=i,e.b=o,e.c=a,e.d=u;var d=n(0),h=(n.n(d),n(1)),p=n(42),v=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}()},function(t,e,n){"use strict";function r(t){return/^[a-z](_+[A-Z0-9]|[A-Za-z0-9])*$/.test(t)}function i(t){return t&&t._scrivitoPrivateSchema}n.d(e,"a",function(){return d}),n.d(e,"b",function(){return h}),n.d(e,"c",function(){return v}),n.d(e,"d",function(){return m});var o=n(24),a=n(39),s=o.a.refinement(o.a.Function,i,"ObjClass"),u=o.a.interface({attributes:o.a.maybe(o.a.dict(o.a.refinement(o.a.String,r,"String (alphanumeric, starting with a lower-case character)"),o.a.union([o.a.enums.of(["binary","date","float","html","integer","link","linklist","reference","referencelist","string","stringlist","widgetlist"]),o.a.union([o.a.tuple([o.a.enums.of(["enum","multienum"]),o.a.interface({values:o.a.list(o.a.String)})]),o.a.tuple([o.a.enums.of(["widgetlist"]),o.a.interface({only:o.a.union([o.a.String,o.a.list(o.a.String)])})])])]),"Attributes Specification")),extend:o.a.maybe(s)}),c=u.meta.props.attributes,l=o.a.refinement(o.a.Function,i,"WidgetClass"),f=o.a.interface({attributes:c,extend:o.a.maybe(l),onlyInside:o.a.maybe(o.a.String)}),d=Object(a.a)("createObjClass",[["options",u]],{docPermalink:"js-sdk/createObjClass"}),h=Object(a.a)("createWidgetClass",[["options",f]],{docPermalink:"js-sdk/createWidgetClass"}),p=o.a.union([u,s]),v=Object(a.a)("provideObjClass",[["name",o.a.String],["objClassOrDefinition",p]],{docPermalink:"js-sdk/provideObjClass"}),y=o.a.union([f,l]),m=Object(a.a)("provideWidgetClass",[["name",o.a.String],["widgetClassOrDefinition",y]],{docPermalink:"js-sdk/provideWidgetClass"})},function(t,e,n){"use strict";var r=n(305);n.d(e,"a",function(){return r.a});n(308),n(309),n(93),n(84)},function(t,e,n){"use strict";var r=n(83),i=n.n(r),o=n(38),a=n.n(o),s=n(93),u=n(84),c=n(134),l=n(223),f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},h=function(){try{return window.history.state||{}}catch(t){return{}}},p=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a()(l.b,"Browser history needs a DOM");var e=window.history,n=Object(l.g)(),r=!Object(l.h)(),o=t.forceRefresh,p=void 0!==o&&o,v=t.getUserConfirmation,y=void 0===v?l.c:v,m=t.keyLength,b=void 0===m?6:m,g=t.basename?Object(u.g)(Object(u.a)(t.basename)):"",w=function(t){var e=t||{},n=e.key,r=e.state,o=window.location,a=o.pathname,c=o.search,l=o.hash,f=a+c+l;return i()(!g||Object(u.c)(f,g),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+f+'" to begin with "'+g+'".'),g&&(f=Object(u.e)(f,g)),Object(s.a)(f,r,n)},_=function(){return Math.random().toString(36).substr(2,b)},k=Object(c.a)(),O=function(t){d(U,t),U.length=e.length,k.notifyListeners(U.location,U.action)},E=function(t){Object(l.d)(t)||j(w(t.state))},x=function(){j(w(h()))},C=!1,j=function(t){if(C)C=!1,O();else{k.confirmTransitionTo(t,"POP",y,function(e){e?O({action:"POP",location:t}):S(t)})}},S=function(t){var e=U.location,n=T.indexOf(e.key);-1===n&&(n=0);var r=T.indexOf(t.key);-1===r&&(r=0);var i=n-r;i&&(C=!0,I(i))},A=w(h()),T=[A.key],N=function(t){return g+Object(u.b)(t)},P=function(t,r){i()(!("object"===(void 0===t?"undefined":f(t))&&void 0!==t.state&&void 0!==r),"You should avoid providing a 2nd state argument to push when the 1st argument is a location-like object that already has state; it is ignored");var o=Object(s.a)(t,r,_(),U.location);k.confirmTransitionTo(o,"PUSH",y,function(t){if(t){var r=N(o),a=o.key,s=o.state;if(n)if(e.pushState({key:a,state:s},null,r),p)window.location.href=r;else{var u=T.indexOf(U.location.key),c=T.slice(0,-1===u?0:u+1);c.push(o.key),T=c,O({action:"PUSH",location:o})}else i()(void 0===s,"Browser history cannot push state in browsers that do not support HTML5 history"),window.location.href=r}})},L=function(t,r){i()(!("object"===(void 0===t?"undefined":f(t))&&void 0!==t.state&&void 0!==r),"You should avoid providing a 2nd state argument to replace when the 1st argument is a location-like object that already has state; it is ignored");var o=Object(s.a)(t,r,_(),U.location);k.confirmTransitionTo(o,"REPLACE",y,function(t){if(t){var r=N(o),a=o.key,s=o.state;if(n)if(e.replaceState({key:a,state:s},null,r),p)window.location.replace(r);else{var u=T.indexOf(U.location.key);-1!==u&&(T[u]=o.key),O({action:"REPLACE",location:o})}else i()(void 0===s,"Browser history cannot replace state in browsers that do not support HTML5 history"),window.location.replace(r)}})},I=function(t){e.go(t)},D=function(){return I(-1)},q=function(){return I(1)},R=0,M=function(t){R+=t,1===R?(Object(l.a)(window,"popstate",E),r&&Object(l.a)(window,"hashchange",x)):0===R&&(Object(l.e)(window,"popstate",E),r&&Object(l.e)(window,"hashchange",x))},B=!1,F=function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=k.setPrompt(t);return B||(M(1),B=!0),function(){return B&&(B=!1,M(-1)),e()}},z=function(t){var e=k.appendListener(t);return M(1),function(){M(-1),e()}},U={length:e.length,action:"POP",location:A,createHref:N,push:P,replace:L,go:I,goBack:D,goForward:q,block:F,listen:z};return U};e.a=p},function(t,e,n){"use strict";function r(t){return"/"===t.charAt(0)}function i(t,e){for(var n=e,r=n+1,i=t.length;r<i;n+=1,r+=1)t[n]=t[r];t.pop()}function o(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=t&&t.split("/")||[],o=e&&e.split("/")||[],a=t&&r(t),s=e&&r(e),u=a||s;if(t&&r(t)?o=n:n.length&&(o.pop(),o=o.concat(n)),!o.length)return"/";var c=void 0;if(o.length){var l=o[o.length-1];c="."===l||".."===l||""===l}else c=!1;for(var f=0,d=o.length;d>=0;d--){var h=o[d];"."===h?i(o,d):".."===h?(i(o,d),f++):f&&(i(o,d),f--)}if(!u)for(;f--;f)o.unshift("..");!u||""===o[0]||o[0]&&r(o[0])||o.unshift("");var p=o.join("/");return c&&"/"!==p.substr(-1)&&(p+="/"),p}e.a=o},function(t,e,n){"use strict";function r(t,e){if(t===e)return!0;if(null==t||null==e)return!1;if(Array.isArray(t))return Array.isArray(e)&&t.length===e.length&&t.every(function(t,n){return r(t,e[n])});var n=void 0===t?"undefined":i(t);if(n!==(void 0===e?"undefined":i(e)))return!1;if("object"===n){var o=t.valueOf(),a=e.valueOf();if(o!==t||a!==e)return r(o,a);var s=Object.keys(t),u=Object.keys(e);return s.length===u.length&&s.every(function(n){return r(t[n],e[n])})}return!1}var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.a=r},function(t,e,n){"use strict";var r=n(83),i=(n.n(r),n(38)),o=(n.n(i),n(93),n(84));n(134),n(223),Object.assign,o.f,o.a,o.a,o.a},function(t,e,n){"use strict";var r=n(83);n.n(r),n(84),n(93),n(134),"function"==typeof Symbol&&Symbol.iterator,Object.assign},function(t,e,n){"use strict";function r(t,e){if(!y){var n=Object(f.b)(t);if(!n)throw new l.ArgumentError('Component with ID "'.concat(t,'" not found. ')+'Please make sure you registered it using "Scrivito.registerComponent".');var r,o,a=u.default.get(e.objId);if(e.widgetId){var s=a.widget(e.widgetId);o=Object(p.e)(Object(h.a)(),s)}else r=Object(p.e)(Object(h.a)(),a);y=!0;var m=i(Object(d.b)(),n,{obj:r,widget:o});Object(c.a)(m,function(){return v.b.notifyDocumentResize()}),v.b.notifyDocumentResize()}}function i(t,e,n){var r=t.createElement("div");return t.body.innerHTML="",t.body.appendChild(r),Object(s.render)(a.a.createElement(e,n),r),r}n.d(e,"a",function(){return r});var o=n(14),a=n.n(o),s=n(85),u=(n.n(s),n(3)),c=n(311),l=n(1),f=n(86),d=n(70),h=n(62),p=n(22),v=n(18),y=!1},function(t,e,n){"use strict";function r(t,e){if(!t._scrivitoResizeListeners){t._scrivitoResizeListeners=[],t.style.position="relative";var n=i();n.resizeElement=t,t._scrivitoResizeTrigger=n,Object(s.a)()&&t.appendChild(n),n.data="about:blank",Object(s.a)()||t.appendChild(n)}t._scrivitoResizeListeners.push(e)}function i(){var t=document.createElement("object");return t.type="text/html",t.onload=o,t.style.display="block",t.style.position="absolute",t.style.top=0,t.style.left=0,t.style.height="100%",t.style.width="100%",t.style.overflow="hidden",t.style.pointerEvents="none",t.style.zIndex=-1,t}function o(){this.contentDocument.defaultView._scrivitoResizeTrigger=this.resizeElement,this.contentDocument.defaultView.addEventListener("resize",a)}function a(t){var e=t.target||t.srcElement,n=e._scrivitoResizeTrigger;n._scrivitoResizeListeners.forEach(function(e){return e(n,t)})}e.a=r;var s=n(312)},function(t,e,n){"use strict";function r(){var t=window.navigator.userAgent;return t.indexOf("MSIE")>=0||t.indexOf("Trident")>=0}e.a=r},function(t,e,n){"use strict";function r(t){var e=o()(t);return Object(u.b)()?Object(s.a)(function(){return Object(c.h)(t)}).then(function(t){return t.path?Object(a.include)(["/",""],t.path)?null:{obj:t.obj,url:e}:null}):scrivito.Promise.resolve(null)}var i=n(33),o=n.n(i),a=n(0),s=(n.n(a),n(7)),u=n(226),c=n(63);e.a=r},function(t,e,n){"use strict";function r(t){var e=o.default.get(t);return i(e?Object(a.a)(e):Object(s.d)({path:t}))}e.a=r;var i=n(33),o=(n.n(i),n(3)),a=n(136),s=n(63)},function(t,e,n){"use strict";function r(t,e){i[t]=e}e.a=r;var i={}},function(t,e,n){"use strict";var r=n(18);!function(){function t(t){r.b?r.b.navigateToExternalUrl(t):scrivito.setWindowLocation(t)}function e(t){window.location.assign(t)}function n(t,e){window.open(t,e)}function i(t){n(t,"_blank")}scrivito.setWindowLocation=e,scrivito.changeLocation=t,scrivito.openLocation=n,scrivito.openInNewWindow=i}()},function(t,e,n){"use strict";var r=n(318),i=(n.n(r),n(319));n.n(i)},function(t,e){window.scrivito||(window.scrivito={})},function(t,e){!function(){var t,e=0,n={},r={subscribe:function(t){var r=t.onFocus,i=t.onBlur,o=e;return n[o]={onFocus:r,onBlur:i},e+=1,o},unsubscribe:function(t){delete n[t]},notifyFocus:function(e){t=e,n[t].onFocus()},notifyBlur:function(e){e===t&&n[e].onBlur()},get handlers(){return n},reset:function(){t=void 0,e=0,n={}}};scrivito.WidgetFocus=r}()},function(t,e,n){"use strict";function r(t){return s.b.openContentBrowser(Object(o.a)(Object(i.extend)({},Object(a.b)(),Object(i.pick)(t,"selection","selectionMode"))))}e.a=r;var i=n(0),o=(n.n(i),n(138)),a=n(137),s=n(18)},function(t,e,n){"use strict";function r(){scrivito.registerEditor(i.a),scrivito.registerEditor(o.a),scrivito.registerEditor(a.a)}e.a=r;var i=n(322),o=n(337),a=n(338)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t){return(d=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var h=n(139),p=n(323),v=n.n(p),y=n(326),m=n(230),b=n(231),g=function(t){function e(){return o(this,e),l(this,d(e).apply(this,arguments))}return c(e,[{key:"contentDidChange",value:function(){this._updateContent&&this._updateContent()}},{key:"editorWillBeActivated",value:function(){this._controller.setDomMode("Replace")}},{key:"editorDomWasMounted",value:function(t){var e=this;if(Object(m.a)(t),"yes"===window.top.localStorage.getItem("__scrivito_enable_quill")){var n=Object(y.a)(t,this._controller);this._updateContent=function(){setTimeout(function(){var t=n.getSelection();n.clipboard.dangerouslyPasteHTML(e._controller.getContent()),n.setSelection(t)})}}else{t.innerHTML=this._controller.getContent();var r=new b.a(t,this._controller),i=v()(r);this._updateContent=function(){var n=i.exportSelection();t.innerHTML=e._controller.getContent(),i.importSelection(n)}}}},{key:"editorDomWasUnmounted",value:function(){this._updateContent=void 0}}],[{key:"canEdit",value:function(t){return"html"===t.type}}]),a(e,t),e}(h.a);e.a=g},function(t,e,n){var r,i,o,a,s,u;i=n(324),r=n(325),o=i.extensions.anchor.extend({name:"scrivito_anchor",proxy:null,contentDefault:'<i class="scrivito_customer_icon sci_link"></i>',init:function(){var t;return i.extensions.anchor.prototype.init.apply(this,arguments),this.targetCheckbox=null!=(t=this.getEditorOption("anchor"))?t.targetCheckbox:void 0},handleClick:function(t){var e,n,r,o,a;return t.preventDefault(),t.stopPropagation(),this.isDisplayed()||(o=i.selection.getSelectionRange(this.document),r=i.selection.getSelectedParentElement(o),n=i.util.getClosestTag(r,"a"),e=a=null,n&&(n=this.proxy.edQuery(n),e=n.attr("href")||null,a=n.attr("target")||null),this.showForm({value:e,target:a})),!1},getTemplate:function(){var t;return t="",this.targetCheckbox&&(t="<div class='medium-editor-toolbar-form-row medium-editor-toolbar-anchor-target-toggle'>\n <label>\n <input type='checkbox' class='medium-editor-toolbar-anchor-target'>\n <i class='scrivito_customer_icon sci_inv_check'></i>\n <i class='scrivito_customer_icon sci_rounded_square'></i>\n "+this.targetCheckboxText+"\n </label>\n</div>"),("<i class='medium-editor-toolbar-browse scrivito_customer_icon sci_collection'></i>\n<input type='text' class='medium-editor-toolbar-input' placeholder='"+this.placeholderText+"'>\n<i class='medium-editor-toolbar-save scrivito_customer_icon sci_check'></i>\n<i class='medium-editor-toolbar-close scrivito_customer_icon sci_cross'></i>\n"+t).replace(/\n\s*/g,"")},attachFormEvents:function(t){var e;return i.extensions.anchor.prototype.attachFormEvents.call(this,t),t=this.proxy.edQuery(t),e=t.find(".medium-editor-toolbar-input"),t.find(".medium-editor-toolbar-browse").on("click",function(t){return function(){var n,r;return r=(n=t.proxy.idFromPath(e.val()))?[n]:[],scrivito.openContentBrowser({selection:r,selectionMode:"single"}).catch(function(t){throw e.focus(),t}).then(function(n){var r,i;if(r=n.isSelected,i=n.selection,r)return e.focus(),i.length?e.val(t.proxy.pathForId(i[0])):e.val("")}),!1}}(this))},completeFormSave:function(t){return this.base.restoreSelection(),t.value?this.execAction(this.action,t):this.execAction("unlink"),this.base.checkSelection()}}),s=function(){var t,e;return t=["bold","italic","scrivito_anchor","h2","h3","unorderedlist","orderedlist"],("undefined"!=typeof ScrivitoEditors&&null!==ScrivitoEditors&&null!=(e=ScrivitoEditors._config)?e.showHtmlEditorCodeButton:void 0)&&t.splice(2,0,"scrivito_code"),t},u=function(){return{anchor:{targetCheckbox:!0},anchorPreview:!1,extensions:{scrivito_anchor:new o,scrivito_code:new r({label:'<i class="scrivito_customer_icon sci_code"></i>',start:"<code>",end:"</code>"}),imageDragging:{}},placeholder:!1,toolbar:{buttons:s(),standardizeSelectionStart:!0}}},a=function(t){var e,n,r;return e=t.jQueryElement(),n=u(),null!=(r=n.extensions.scrivito_anchor)&&(r.proxy=t),new i(e,n).subscribe("editableInput",function(){return t.save(e.html())})},t.exports=a},function(t,e,n){(function(r){var i;/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */
79
+ "classList"in document.createElement("_")||function(t){"use strict";if("Element"in t){var e=t.Element.prototype,n=Object,r=String.prototype.trim||function(){return this.replace(/^\s+|\s+$/g,"")},i=Array.prototype.indexOf||function(t){for(var e=0,n=this.length;e<n;e++)if(e in this&&this[e]===t)return e;return-1},o=function(t,e){this.name=t,this.code=DOMException[t],this.message=e},a=function(t,e){if(""===e)throw new o("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(e))throw new o("INVALID_CHARACTER_ERR","String contains an invalid character");return i.call(t,e)},s=function(t){for(var e=r.call(t.getAttribute("class")||""),n=e?e.split(/\s+/):[],i=0,o=n.length;i<o;i++)this.push(n[i]);this._updateClassName=function(){t.setAttribute("class",this.toString())}},u=s.prototype=[],c=function(){return new s(this)};if(o.prototype=Error.prototype,u.item=function(t){return this[t]||null},u.contains=function(t){return t+="",-1!==a(this,t)},u.add=function(){var t,e=arguments,n=0,r=e.length,i=!1;do{t=e[n]+"",-1===a(this,t)&&(this.push(t),i=!0)}while(++n<r);i&&this._updateClassName()},u.remove=function(){var t,e,n=arguments,r=0,i=n.length,o=!1;do{for(t=n[r]+"",e=a(this,t);-1!==e;)this.splice(e,1),o=!0,e=a(this,t)}while(++r<i);o&&this._updateClassName()},u.toggle=function(t,e){t+="";var n=this.contains(t),r=n?!0!==e&&"remove":!1!==e&&"add";return r&&this[r](t),!0===e||!1===e?e:!n},u.toString=function(){return this.join(" ")},n.defineProperty){var l={get:c,enumerable:!0,configurable:!0};try{n.defineProperty(e,"classList",l)}catch(t){-2146823252===t.number&&(l.enumerable=!1,n.defineProperty(e,"classList",l))}}else n.prototype.__defineGetter__&&e.__defineGetter__("classList",c)}}(self),/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
80
+ function(t){"use strict";if(t.URL=t.URL||t.webkitURL,t.Blob&&t.URL)try{return void new Blob}catch(t){}var e=t.BlobBuilder||t.WebKitBlobBuilder||t.MozBlobBuilder||function(t){var e=function(t){return Object.prototype.toString.call(t).match(/^\[object\s(.*)\]$/)[1]},n=function(){this.data=[]},r=function(t,e,n){this.data=t,this.size=t.length,this.type=e,this.encoding=n},i=n.prototype,o=r.prototype,a=t.FileReaderSync,s=function(t){this.code=this[this.name=t]},u="NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR".split(" "),c=u.length,l=t.URL||t.webkitURL||t,f=l.createObjectURL,d=l.revokeObjectURL,h=l,p=t.btoa,v=t.atob,y=t.ArrayBuffer,m=t.Uint8Array,b=/^[\w-]+:\/*\[?[\w\.:-]+\]?(?::[0-9]+)?/;for(r.fake=o.fake=!0;c--;)s.prototype[u[c]]=c+1;return l.createObjectURL||(h=t.URL=function(t){var e,n=document.createElementNS("http://www.w3.org/1999/xhtml","a");return n.href=t,"origin"in n||("data:"===n.protocol.toLowerCase()?n.origin=null:(e=t.match(b),n.origin=e&&e[1])),n}),h.createObjectURL=function(t){var e,n=t.type;return null===n&&(n="application/octet-stream"),t instanceof r?(e="data:"+n,"base64"===t.encoding?e+";base64,"+t.data:"URI"===t.encoding?e+","+decodeURIComponent(t.data):p?e+";base64,"+p(t.data):e+","+encodeURIComponent(t.data)):f?f.call(l,t):void 0},h.revokeObjectURL=function(t){"data:"!==t.substring(0,5)&&d&&d.call(l,t)},i.append=function(t){var n=this.data;if(m&&(t instanceof y||t instanceof m)){for(var i="",o=new m(t),u=0,c=o.length;u<c;u++)i+=String.fromCharCode(o[u]);n.push(i)}else if("Blob"===e(t)||"File"===e(t)){if(!a)throw new s("NOT_READABLE_ERR");var l=new a;n.push(l.readAsBinaryString(t))}else t instanceof r?"base64"===t.encoding&&v?n.push(v(t.data)):"URI"===t.encoding?n.push(decodeURIComponent(t.data)):"raw"===t.encoding&&n.push(t.data):("string"!=typeof t&&(t+=""),n.push(unescape(encodeURIComponent(t))))},i.getBlob=function(t){return arguments.length||(t=null),new r(this.data.join(""),t,"raw")},i.toString=function(){return"[object BlobBuilder]"},o.slice=function(t,e,n){var i=arguments.length;return i<3&&(n=null),new r(this.data.slice(t,i>1?e:this.data.length),n,this.encoding)},o.toString=function(){return"[object Blob]"},o.close=function(){this.size=0,delete this.data},n}(t);t.Blob=function(t,n){var r=n?n.type||"":"",i=new e;if(t)for(var o=0,a=t.length;o<a;o++)Uint8Array&&t[o]instanceof Uint8Array?i.append(t[o].buffer):i.append(t[o]);var s=i.getBlob(r);return!s.slice&&s.webkitSlice&&(s.slice=s.webkitSlice),s};var n=Object.getPrototypeOf||function(t){return t.__proto__};t.Blob.prototype=n(new t.Blob)}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content||this),function(o,a){"use strict";"object"==typeof t&&void 0!==r&&r&&r.versions&&r.versions.electron||"object"!=typeof t?void 0!==(i=function(){return a}.call(e,n,e,t))&&(t.exports=i):t.exports=a}(0,function(){"use strict";function t(t,e){return this.init(t,e)}return t.extensions={},function(e){function n(t,e){var n,r=Array.prototype.slice.call(arguments,2);e=e||{};for(var i=0;i<r.length;i++){var o=r[i];if(o)for(n in o)o.hasOwnProperty(n)&&void 0!==o[n]&&(t||!1===e.hasOwnProperty(n))&&(e[n]=o[n])}return e}var r=!1;try{var i=document.createElement("div"),o=document.createTextNode(" ");i.appendChild(o),r=i.contains(o)}catch(t){}var a={isIE:"Microsoft Internet Explorer"===navigator.appName||"Netscape"===navigator.appName&&null!==new RegExp("Trident/.*rv:([0-9]{1,}[.0-9]{0,})").exec(navigator.userAgent),isEdge:null!==/Edge\/\d+/.exec(navigator.userAgent),isFF:navigator.userAgent.toLowerCase().indexOf("firefox")>-1,isMac:e.navigator.platform.toUpperCase().indexOf("MAC")>=0,keyCode:{BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,SPACE:32,DELETE:46,K:75,M:77,V:86},isMetaCtrlKey:function(t){return!!(a.isMac&&t.metaKey||!a.isMac&&t.ctrlKey)},isKey:function(t,e){var n=a.getKeyCode(t);return!1===Array.isArray(e)?n===e:-1!==e.indexOf(n)},getKeyCode:function(t){var e=t.which;return null===e&&(e=null!==t.charCode?t.charCode:t.keyCode),e},blockContainerElementNames:["p","h1","h2","h3","h4","h5","h6","blockquote","pre","ul","li","ol","address","article","aside","audio","canvas","dd","dl","dt","fieldset","figcaption","figure","footer","form","header","hgroup","main","nav","noscript","output","section","video","table","thead","tbody","tfoot","tr","th","td"],emptyElementNames:["br","col","colgroup","hr","img","input","source","wbr"],extend:function(){var t=[!0].concat(Array.prototype.slice.call(arguments));return n.apply(this,t)},defaults:function(){var t=[!1].concat(Array.prototype.slice.call(arguments));return n.apply(this,t)},createLink:function(t,e,n,r){var i=t.createElement("a");return a.moveTextRangeIntoElement(e[0],e[e.length-1],i),i.setAttribute("href",n),r&&("_blank"===r&&i.setAttribute("rel","noopener noreferrer"),i.setAttribute("target",r)),i},findOrCreateMatchingTextNodes:function(t,e,n){for(var r=t.createTreeWalker(e,NodeFilter.SHOW_ALL,null,!1),i=[],o=0,s=!1,u=null,c=null;null!==(u=r.nextNode());)if(!(u.nodeType>3))if(3===u.nodeType){if(!s&&n.start<o+u.nodeValue.length&&(s=!0,c=a.splitStartNodeIfNeeded(u,n.start,o)),s&&a.splitEndNodeIfNeeded(u,c,n.end,o),s&&o===n.end)break;if(s&&o>n.end+1)throw new Error("PerformLinking overshot the target!");s&&i.push(c||u),o+=u.nodeValue.length,null!==c&&(o+=c.nodeValue.length,r.nextNode()),c=null}else"img"===u.tagName.toLowerCase()&&(!s&&n.start<=o&&(s=!0),s&&i.push(u));return i},splitStartNodeIfNeeded:function(t,e,n){return e!==n?t.splitText(e-n):null},splitEndNodeIfNeeded:function(t,e,n,r){var i,o;i=r+t.nodeValue.length+(e?e.nodeValue.length:0)-1,o=n-r-(e?t.nodeValue.length:0),i>=n&&r!==i&&0!==o&&(e||t).splitText(o)},splitByBlockElements:function(e){if(3!==e.nodeType&&1!==e.nodeType)return[];var n=[],r=t.util.blockContainerElementNames.join(",");if(3===e.nodeType||0===e.querySelectorAll(r).length)return[e];for(var i=0;i<e.childNodes.length;i++){var o=e.childNodes[i];if(3===o.nodeType)n.push(o);else if(1===o.nodeType){var a=o.querySelectorAll(r);0===a.length?n.push(o):n=n.concat(t.util.splitByBlockElements(o))}}return n},findAdjacentTextNodeWithContent:function(t,e,n){var r,i=!1,o=n.createNodeIterator(t,NodeFilter.SHOW_TEXT,null,!1);for(r=o.nextNode();r;){if(r===e)i=!0;else if(i&&3===r.nodeType&&r.nodeValue&&r.nodeValue.trim().length>0)break;r=o.nextNode()}return r},findPreviousSibling:function(t){if(!t||a.isMediumEditorElement(t))return!1;for(var e=t.previousSibling;!e&&!a.isMediumEditorElement(t.parentNode);)t=t.parentNode,e=t.previousSibling;return e},isDescendant:function(t,e,n){if(!t||!e)return!1;if(t===e)return!!n;if(1!==t.nodeType)return!1;if(r||3!==e.nodeType)return t.contains(e);for(var i=e.parentNode;null!==i;){if(i===t)return!0;i=i.parentNode}return!1},isElement:function(t){return!(!t||1!==t.nodeType)},throttle:function(t,e){var n,r,i,o=null,a=0,s=function(){a=Date.now(),o=null,i=t.apply(n,r),o||(n=r=null)};return e||0===e||(e=50),function(){var u=Date.now(),c=e-(u-a);return n=this,r=arguments,c<=0||c>e?(o&&(clearTimeout(o),o=null),a=u,i=t.apply(n,r),o||(n=r=null)):o||(o=setTimeout(s,c)),i}},traverseUp:function(t,e){if(!t)return!1;do{if(1===t.nodeType){if(e(t))return t;if(a.isMediumEditorElement(t))return!1}t=t.parentNode}while(t);return!1},htmlEntities:function(t){return String(t).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")},insertHTMLCommand:function(e,n){var r,i,o,s,u,c,l,f=!1,d=["insertHTML",!1,n];if(!t.util.isEdge&&e.queryCommandSupported("insertHTML"))try{return e.execCommand.apply(e,d)}catch(t){}if(r=e.getSelection(),r.rangeCount){if(i=r.getRangeAt(0),l=i.commonAncestorContainer,a.isMediumEditorElement(l)&&!l.firstChild)i.selectNode(l.appendChild(e.createTextNode("")));else if(3===l.nodeType&&0===i.startOffset&&i.endOffset===l.nodeValue.length||3!==l.nodeType&&l.innerHTML===i.toString()){for(;!a.isMediumEditorElement(l)&&l.parentNode&&1===l.parentNode.childNodes.length&&!a.isMediumEditorElement(l.parentNode);)l=l.parentNode;i.selectNode(l)}for(i.deleteContents(),o=e.createElement("div"),o.innerHTML=n,s=e.createDocumentFragment();o.firstChild;)u=o.firstChild,c=s.appendChild(u);i.insertNode(s),c&&(i=i.cloneRange(),i.setStartAfter(c),i.collapse(!0),t.selection.selectRange(e,i)),f=!0}return e.execCommand.callListeners&&e.execCommand.callListeners(d,f),f},execFormatBlock:function(e,n){var r,i=a.getTopBlockContainer(t.selection.getSelectionStart(e));if("blockquote"===n){if(i&&(r=Array.prototype.slice.call(i.childNodes),r.some(function(t){return a.isBlockContainer(t)})))return e.execCommand("outdent",!1,null);if(a.isIE)return e.execCommand("indent",!1,n)}if(i&&n===i.nodeName.toLowerCase()&&(n="p"),a.isIE&&(n="<"+n+">"),i&&"blockquote"===i.nodeName.toLowerCase()){if(a.isIE&&"<p>"===n)return e.execCommand("outdent",!1,n);if((a.isFF||a.isEdge)&&"p"===n)return r=Array.prototype.slice.call(i.childNodes),r.some(function(t){return!a.isBlockContainer(t)})&&e.execCommand("formatBlock",!1,n),e.execCommand("outdent",!1,n)}return e.execCommand("formatBlock",!1,n)},setTargetBlank:function(t,e){var n,r=e||!1;if("a"===t.nodeName.toLowerCase())t.target="_blank",t.rel="noopener noreferrer";else for(t=t.getElementsByTagName("a"),n=0;n<t.length;n+=1)!1!==r&&r!==t[n].attributes.href.value||(t[n].target="_blank",t[n].rel="noopener noreferrer")},removeTargetBlank:function(t,e){var n;if("a"===t.nodeName.toLowerCase())t.removeAttribute("target"),t.removeAttribute("rel");else for(t=t.getElementsByTagName("a"),n=0;n<t.length;n+=1)e===t[n].attributes.href.value&&(t[n].removeAttribute("target"),t[n].removeAttribute("rel"))},addClassToAnchors:function(t,e){var n,r,i=e.split(" ");if("a"===t.nodeName.toLowerCase())for(r=0;r<i.length;r+=1)t.classList.add(i[r]);else{var o=t.getElementsByTagName("a");if(0===o.length){var s=a.getClosestTag(t,"a");t=s?[s]:[]}else t=o;for(n=0;n<t.length;n+=1)for(r=0;r<i.length;r+=1)t[n].classList.add(i[r])}},isListItem:function(t){if(!t)return!1;if("li"===t.nodeName.toLowerCase())return!0;for(var e=t.parentNode,n=e.nodeName.toLowerCase();"li"===n||!a.isBlockContainer(e)&&"div"!==n;){if("li"===n)return!0;if(!(e=e.parentNode))return!1;n=e.nodeName.toLowerCase()}return!1},cleanListDOM:function(e,n){if("li"===n.nodeName.toLowerCase()){var r=n.parentElement;"p"===r.parentElement.nodeName.toLowerCase()&&(a.unwrap(r.parentElement,e),t.selection.moveCursor(e,n.firstChild,n.firstChild.textContent.length))}},splitOffDOMTree:function(t,e,n){for(var r=e,i=null,o=!n;r!==t;){var a,s=r.parentNode,u=s.cloneNode(!1),c=o?r:s.firstChild;for(i&&(o?u.appendChild(i):a=i),i=u;c;){var l=c.nextSibling;c===r?(c.hasChildNodes()?c=c.cloneNode(!1):c.parentNode.removeChild(c),c.textContent&&i.appendChild(c),c=o?l:null):(c.parentNode.removeChild(c),(c.hasChildNodes()||c.textContent)&&i.appendChild(c),c=l)}a&&i.appendChild(a),r=s}return i},moveTextRangeIntoElement:function(t,e,n){if(!t||!e)return!1;var r=a.findCommonRoot(t,e);if(!r)return!1;if(e===t){var i=t.parentNode,o=t.nextSibling;return i.removeChild(t),n.appendChild(t),o?i.insertBefore(n,o):i.appendChild(n),n.hasChildNodes()}for(var s,u,c,l=[],f=0;f<r.childNodes.length;f++)if(c=r.childNodes[f],s){if(a.isDescendant(c,e,!0)){u=c;break}l.push(c)}else a.isDescendant(c,t,!0)&&(s=c);var d=u.nextSibling,h=r.ownerDocument.createDocumentFragment();return s===t?(s.parentNode.removeChild(s),h.appendChild(s)):h.appendChild(a.splitOffDOMTree(s,t)),l.forEach(function(t){t.parentNode.removeChild(t),h.appendChild(t)}),u===e?(u.parentNode.removeChild(u),h.appendChild(u)):h.appendChild(a.splitOffDOMTree(u,e,!0)),n.appendChild(h),u.parentNode===r?r.insertBefore(n,u):d?r.insertBefore(n,d):r.appendChild(n),n.hasChildNodes()},depthOfNode:function(t){for(var e=0,n=t;null!==n.parentNode;)n=n.parentNode,e++;return e},findCommonRoot:function(t,e){for(var n=a.depthOfNode(t),r=a.depthOfNode(e),i=t,o=e;n!==r;)n>r?(i=i.parentNode,n-=1):(o=o.parentNode,r-=1);for(;i!==o;)i=i.parentNode,o=o.parentNode;return i},isElementAtBeginningOfBlock:function(t){for(var e,n;!a.isBlockContainer(t)&&!a.isMediumEditorElement(t);){for(n=t;n=n.previousSibling;)if(e=3===n.nodeType?n.nodeValue:n.textContent,e.length>0)return!1;t=t.parentNode}return!0},isMediumEditorElement:function(t){return t&&t.getAttribute&&!!t.getAttribute("data-medium-editor-element")},getContainerEditorElement:function(t){return a.traverseUp(t,function(t){return a.isMediumEditorElement(t)})},isBlockContainer:function(t){return t&&3!==t.nodeType&&-1!==a.blockContainerElementNames.indexOf(t.nodeName.toLowerCase())},getClosestBlockContainer:function(t){return a.traverseUp(t,function(t){return a.isBlockContainer(t)||a.isMediumEditorElement(t)})},getTopBlockContainer:function(t){var e=!!a.isBlockContainer(t)&&t;return a.traverseUp(t,function(t){return a.isBlockContainer(t)&&(e=t),!(e||!a.isMediumEditorElement(t))&&(e=t,!0)}),e},getFirstSelectableLeafNode:function(t){for(;t&&t.firstChild;)t=t.firstChild;if(t=a.traverseUp(t,function(t){return-1===a.emptyElementNames.indexOf(t.nodeName.toLowerCase())}),"table"===t.nodeName.toLowerCase()){var e=t.querySelector("th, td");e&&(t=e)}return t},getFirstTextNode:function(t){return a.warn("getFirstTextNode is deprecated and will be removed in version 6.0.0"),a._getFirstTextNode(t)},_getFirstTextNode:function(t){if(3===t.nodeType)return t;for(var e=0;e<t.childNodes.length;e++){var n=a._getFirstTextNode(t.childNodes[e]);if(null!==n)return n}return null},ensureUrlHasProtocol:function(t){return-1===t.indexOf("://")?"http://"+t:t},warn:function(){void 0!==e.console&&"function"==typeof e.console.warn&&e.console.warn.apply(e.console,arguments)},deprecated:function(t,e,n){var r=t+" is deprecated, please use "+e+" instead.";n&&(r+=" Will be removed in "+n),a.warn(r)},deprecatedMethod:function(t,e,n,r){a.deprecated(t,e,r),"function"==typeof this[e]&&this[e].apply(this,n)},cleanupAttrs:function(t,e){e.forEach(function(e){t.removeAttribute(e)})},cleanupTags:function(t,e){-1!==e.indexOf(t.nodeName.toLowerCase())&&t.parentNode.removeChild(t)},unwrapTags:function(e,n){-1!==n.indexOf(e.nodeName.toLowerCase())&&t.util.unwrap(e,document)},getClosestTag:function(t,e){return a.traverseUp(t,function(t){return t.nodeName.toLowerCase()===e.toLowerCase()})},unwrap:function(t,e){for(var n=e.createDocumentFragment(),r=Array.prototype.slice.call(t.childNodes),i=0;i<r.length;i++)n.appendChild(r[i]);n.childNodes.length?t.parentNode.replaceChild(n,t):t.parentNode.removeChild(t)},guid:function(){function t(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()}};t.util=a}(window),function(){var e=function(e){t.util.extend(this,e)};e.extend=function(e){var n,r=this;n=e&&e.hasOwnProperty("constructor")?e.constructor:function(){return r.apply(this,arguments)},t.util.extend(n,r);var i=function(){this.constructor=n};return i.prototype=r.prototype,n.prototype=new i,e&&t.util.extend(n.prototype,e),n},e.prototype={init:function(){},base:void 0,name:void 0,checkState:void 0,destroy:void 0,queryCommandState:void 0,isActive:void 0,isAlreadyApplied:void 0,setActive:void 0,setInactive:void 0,getInteractionElements:void 0,window:void 0,document:void 0,getEditorElements:function(){return this.base.elements},getEditorId:function(){return this.base.id},getEditorOption:function(t){return this.base.options[t]}},["execAction","on","off","subscribe","trigger"].forEach(function(t){e.prototype[t]=function(){return this.base[t].apply(this.base,arguments)}}),t.Extension=e}(),function(){function e(e){return t.util.isBlockContainer(e)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}var n={findMatchingSelectionParent:function(e,n){var r,i,o=n.getSelection();return 0!==o.rangeCount&&(r=o.getRangeAt(0),i=r.commonAncestorContainer,t.util.traverseUp(i,e))},getSelectionElement:function(e){return this.findMatchingSelectionParent(function(e){return t.util.isMediumEditorElement(e)},e)},exportSelection:function(t,e){if(!t)return null;var n=null,r=e.getSelection();if(r.rangeCount>0){var i,o=r.getRangeAt(0),a=o.cloneRange();a.selectNodeContents(t),a.setEnd(o.startContainer,o.startOffset),i=a.toString().length,n={start:i,end:i+o.toString().length},this.doesRangeStartWithImages(o,e)&&(n.startsWithImage=!0);var s=this.getTrailingImageCount(t,n,o.endContainer,o.endOffset);if(s&&(n.trailingImageCount=s),0!==i){var u=this.getIndexRelativeToAdjacentEmptyBlocks(e,t,o.startContainer,o.startOffset);-1!==u&&(n.emptyBlocksIndex=u)}}return n},importSelection:function(t,e,n,r){if(t&&e){var i=n.createRange();i.setStart(e,0),i.collapse(!0);var o,a=e,s=[],u=0,c=!1,l=!1,f=0,d=!1,h=!1,p=null;for((r||t.startsWithImage||void 0!==t.emptyBlocksIndex)&&(h=!0);!d&&a;)if(a.nodeType>3)a=s.pop();else{if(3!==a.nodeType||l){if(t.trailingImageCount&&l&&("img"===a.nodeName.toLowerCase()&&f++,f===t.trailingImageCount)){for(var v=0;a.parentNode.childNodes[v]!==a;)v++;i.setEnd(a.parentNode,v+1),d=!0}if(!d&&1===a.nodeType)for(var y=a.childNodes.length-1;y>=0;)s.push(a.childNodes[y]),y-=1}else o=u+a.length,!c&&t.start>=u&&t.start<=o&&(h||t.start<o?(i.setStart(a,t.start-u),c=!0):p=a),c&&t.end>=u&&t.end<=o&&(t.trailingImageCount?l=!0:(i.setEnd(a,t.end-u),d=!0)),u=o;d||(a=s.pop())}!c&&p&&(i.setStart(p,p.length),i.setEnd(p,p.length)),void 0!==t.emptyBlocksIndex&&(i=this.importSelectionMoveCursorPastBlocks(n,e,t.emptyBlocksIndex,i)),r&&(i=this.importSelectionMoveCursorPastAnchor(t,i)),this.selectRange(n,i)}},importSelectionMoveCursorPastAnchor:function(e,n){var r=function(t){return"a"===t.nodeName.toLowerCase()};if(e.start===e.end&&3===n.startContainer.nodeType&&n.startOffset===n.startContainer.nodeValue.length&&t.util.traverseUp(n.startContainer,r)){for(var i=n.startContainer,o=n.startContainer.parentNode;null!==o&&"a"!==o.nodeName.toLowerCase();)o.childNodes[o.childNodes.length-1]!==i?o=null:(i=o,o=o.parentNode);if(null!==o&&"a"===o.nodeName.toLowerCase()){for(var a=null,s=0;null===a&&s<o.parentNode.childNodes.length;s++)o.parentNode.childNodes[s]===o&&(a=s);n.setStart(o.parentNode,a+1),n.collapse(!0)}}return n},importSelectionMoveCursorPastBlocks:function(n,r,i,o){var a,s,u=n.createTreeWalker(r,NodeFilter.SHOW_ELEMENT,e,!1),c=o.startContainer,l=0;for(i=i||1,a=3===c.nodeType&&t.util.isBlockContainer(c.previousSibling)?c.previousSibling:t.util.getClosestBlockContainer(c);u.nextNode();)if(s){if(s=u.currentNode,++l===i)break;if(s.textContent.length>0)break}else a===u.currentNode&&(s=u.currentNode);return s||(s=a),o.setStart(t.util.getFirstSelectableLeafNode(s),0),o},getIndexRelativeToAdjacentEmptyBlocks:function(n,r,i,o){if(i.textContent.length>0&&o>0)return-1;var a=i;if(3!==a.nodeType&&(a=i.childNodes[o]),a){if(!t.util.isElementAtBeginningOfBlock(a))return-1;var s=t.util.findPreviousSibling(a);if(!s)return-1;if(s.nodeValue)return-1}for(var u=t.util.getClosestBlockContainer(i),c=n.createTreeWalker(r,NodeFilter.SHOW_ELEMENT,e,!1),l=0;c.nextNode();){var f=""===c.currentNode.textContent;if((f||l>0)&&(l+=1),c.currentNode===u)return l;f||(l=0)}return l},doesRangeStartWithImages:function(t,e){if(0!==t.startOffset||1!==t.startContainer.nodeType)return!1;if("img"===t.startContainer.nodeName.toLowerCase())return!0;var n=t.startContainer.querySelector("img");if(!n)return!1;for(var r=e.createTreeWalker(t.startContainer,NodeFilter.SHOW_ALL,null,!1);r.nextNode();){var i=r.currentNode;if(i===n)break;if(i.nodeValue)return!1}return!0},getTrailingImageCount:function(t,e,n,r){if(0===r||1!==n.nodeType)return 0;if("img"!==n.nodeName.toLowerCase()&&!n.querySelector("img"))return 0;for(var i=n.childNodes[r-1];i.hasChildNodes();)i=i.lastChild;for(var o,a=t,s=[],u=0,c=!1,l=!1,f=!1,d=0;!f&&a;)if(a.nodeType>3)a=s.pop();else{if(3!==a.nodeType||l){if("img"===a.nodeName.toLowerCase()&&d++,a===i)f=!0;else if(1===a.nodeType)for(var h=a.childNodes.length-1;h>=0;)s.push(a.childNodes[h]),h-=1}else d=0,o=u+a.length,!c&&e.start>=u&&e.start<=o&&(c=!0),c&&e.end>=u&&e.end<=o&&(l=!0),u=o;f||(a=s.pop())}return d},selectionContainsContent:function(t){var e=t.getSelection();if(!e||e.isCollapsed||!e.rangeCount)return!1;if(""!==e.toString().trim())return!0;var n=this.getSelectedParentElement(e.getRangeAt(0));return!(!n||!("img"===n.nodeName.toLowerCase()||1===n.nodeType&&n.querySelector("img")))},selectionInContentEditableFalse:function(t){var e,n=this.findMatchingSelectionParent(function(t){var n=t&&t.getAttribute("contenteditable");return"true"===n&&(e=!0),"#text"!==t.nodeName&&"false"===n},t);return!e&&n},getSelectionHtml:function(t){var e,n,r,i="",o=t.getSelection();if(o.rangeCount){for(r=t.createElement("div"),e=0,n=o.rangeCount;e<n;e+=1)r.appendChild(o.getRangeAt(e).cloneContents());i=r.innerHTML}return i},getCaretOffsets:function(t,e){var n,r;return e||(e=window.getSelection().getRangeAt(0)),n=e.cloneRange(),r=e.cloneRange(),n.selectNodeContents(t),n.setEnd(e.endContainer,e.endOffset),r.selectNodeContents(t),r.setStart(e.endContainer,e.endOffset),{left:n.toString().length,right:r.toString().length}},rangeSelectsSingleNode:function(t){var e=t.startContainer;return e===t.endContainer&&e.hasChildNodes()&&t.endOffset===t.startOffset+1},getSelectedParentElement:function(t){return t?this.rangeSelectsSingleNode(t)&&3!==t.startContainer.childNodes[t.startOffset].nodeType?t.startContainer.childNodes[t.startOffset]:3===t.startContainer.nodeType?t.startContainer.parentNode:t.startContainer:null},getSelectedElements:function(t){var e,n,r,i=t.getSelection();if(!i.rangeCount||i.isCollapsed||!i.getRangeAt(0).commonAncestorContainer)return[];if(e=i.getRangeAt(0),3===e.commonAncestorContainer.nodeType){for(n=[],r=e.commonAncestorContainer;r.parentNode&&1===r.parentNode.childNodes.length;)n.push(r.parentNode),r=r.parentNode;return n}return[].filter.call(e.commonAncestorContainer.getElementsByTagName("*"),function(t){return"function"!=typeof i.containsNode||i.containsNode(t,!0)})},selectNode:function(t,e){var n=e.createRange();n.selectNodeContents(t),this.selectRange(e,n)},select:function(t,e,n,r,i){var o=t.createRange();return o.setStart(e,n),r?o.setEnd(r,i):o.collapse(!0),this.selectRange(t,o),o},clearSelection:function(t,e){e?t.getSelection().collapseToStart():t.getSelection().collapseToEnd()},moveCursor:function(t,e,n){this.select(t,e,n)},getSelectionRange:function(t){var e=t.getSelection();return 0===e.rangeCount?null:e.getRangeAt(0)},selectRange:function(t,e){var n=t.getSelection();n.removeAllRanges(),n.addRange(e)},getSelectionStart:function(t){var e=t.getSelection().anchorNode;return e&&3===e.nodeType?e.parentNode:e}};t.selection=n}(),function(){function e(e,n){return e.some(function(e){if("function"!=typeof e.getInteractionElements)return!1;var r=e.getInteractionElements();return!!r&&(Array.isArray(r)||(r=[r]),r.some(function(e){return t.util.isDescendant(e,n,!0)}))})}var n=function(t){this.base=t,this.options=this.base.options,this.events=[],this.disabledEvents={},this.customEvents={},this.listeners={}};n.prototype={InputEventOnContenteditableSupported:!t.util.isIE&&!t.util.isEdge,attachDOMEvent:function(e,n,r,i){var o=this.base.options.contentWindow,a=this.base.options.ownerDocument;e=t.util.isElement(e)||[o,a].indexOf(e)>-1?[e]:e,Array.prototype.forEach.call(e,function(t){t.addEventListener(n,r,i),this.events.push([t,n,r,i])}.bind(this))},detachDOMEvent:function(e,n,r,i){var o,a,s=this.base.options.contentWindow,u=this.base.options.ownerDocument;null!==e&&(e=t.util.isElement(e)||[s,u].indexOf(e)>-1?[e]:e,Array.prototype.forEach.call(e,function(t){-1!==(o=this.indexOfListener(t,n,r,i))&&(a=this.events.splice(o,1)[0],a[0].removeEventListener(a[1],a[2],a[3]))}.bind(this)))},indexOfListener:function(t,e,n,r){var i,o,a;for(i=0,o=this.events.length;i<o;i+=1)if(a=this.events[i],a[0]===t&&a[1]===e&&a[2]===n&&a[3]===r)return i;return-1},detachAllDOMEvents:function(){for(var t=this.events.pop();t;)t[0].removeEventListener(t[1],t[2],t[3]),t=this.events.pop()},detachAllEventsFromElement:function(t){for(var e=this.events.filter(function(e){return e&&e[0].getAttribute&&e[0].getAttribute("medium-editor-index")===t.getAttribute("medium-editor-index")}),n=0,r=e.length;n<r;n++){var i=e[n];this.detachDOMEvent(i[0],i[1],i[2],i[3])}},attachAllEventsToElement:function(t){this.listeners.editableInput&&(this.contentCache[t.getAttribute("medium-editor-index")]=t.innerHTML),this.eventsCache&&this.eventsCache.forEach(function(e){this.attachDOMEvent(t,e.name,e.handler.bind(this))},this)},enableCustomEvent:function(t){void 0!==this.disabledEvents[t]&&delete this.disabledEvents[t]},disableCustomEvent:function(t){this.disabledEvents[t]=!0},attachCustomEvent:function(t,e){this.setupListener(t),this.customEvents[t]||(this.customEvents[t]=[]),this.customEvents[t].push(e)},detachCustomEvent:function(t,e){var n=this.indexOfCustomListener(t,e);-1!==n&&this.customEvents[t].splice(n,1)},indexOfCustomListener:function(t,e){return this.customEvents[t]&&this.customEvents[t].length?this.customEvents[t].indexOf(e):-1},detachAllCustomEvents:function(){this.customEvents={}},triggerCustomEvent:function(t,e,n){this.customEvents[t]&&!this.disabledEvents[t]&&this.customEvents[t].forEach(function(t){t(e,n)})},destroy:function(){this.detachAllDOMEvents(),this.detachAllCustomEvents(),this.detachExecCommand(),this.base.elements&&this.base.elements.forEach(function(t){t.removeAttribute("data-medium-focused")})},attachToExecCommand:function(){this.execCommandListener||(this.execCommandListener=function(t){this.handleDocumentExecCommand(t)}.bind(this),this.wrapExecCommand(),this.options.ownerDocument.execCommand.listeners.push(this.execCommandListener))},detachExecCommand:function(){var t=this.options.ownerDocument;if(this.execCommandListener&&t.execCommand.listeners){var e=t.execCommand.listeners.indexOf(this.execCommandListener);-1!==e&&t.execCommand.listeners.splice(e,1),t.execCommand.listeners.length||this.unwrapExecCommand()}},wrapExecCommand:function(){var t=this.options.ownerDocument;if(!t.execCommand.listeners){var e=function(e,n){t.execCommand.listeners&&t.execCommand.listeners.forEach(function(t){t({command:e[0],value:e[2],args:e,result:n})})},n=function(){var n=t.execCommand.orig.apply(this,arguments);if(!t.execCommand.listeners)return n;var r=Array.prototype.slice.call(arguments);return e(r,n),n};n.orig=t.execCommand,n.listeners=[],n.callListeners=e,t.execCommand=n}},unwrapExecCommand:function(){var t=this.options.ownerDocument;t.execCommand.orig&&(t.execCommand=t.execCommand.orig)},setupListener:function(t){if(!this.listeners[t]){switch(t){case"externalInteraction":this.attachDOMEvent(this.options.ownerDocument.body,"mousedown",this.handleBodyMousedown.bind(this),!0),this.attachDOMEvent(this.options.ownerDocument.body,"click",this.handleBodyClick.bind(this),!0),this.attachDOMEvent(this.options.ownerDocument.body,"focus",this.handleBodyFocus.bind(this),!0);break;case"blur":case"focus":this.setupListener("externalInteraction");break;case"editableInput":this.contentCache={},this.base.elements.forEach(function(t){this.contentCache[t.getAttribute("medium-editor-index")]=t.innerHTML},this),this.InputEventOnContenteditableSupported&&this.attachToEachElement("input",this.handleInput),this.InputEventOnContenteditableSupported||(this.setupListener("editableKeypress"),this.keypressUpdateInput=!0,this.attachDOMEvent(document,"selectionchange",this.handleDocumentSelectionChange.bind(this)),this.attachToExecCommand());break;case"editableClick":this.attachToEachElement("click",this.handleClick);break;case"editableBlur":this.attachToEachElement("blur",this.handleBlur);break;case"editableKeypress":this.attachToEachElement("keypress",this.handleKeypress);break;case"editableKeyup":this.attachToEachElement("keyup",this.handleKeyup);break;case"editableKeydown":this.attachToEachElement("keydown",this.handleKeydown);break;case"editableKeydownSpace":case"editableKeydownEnter":case"editableKeydownTab":case"editableKeydownDelete":this.setupListener("editableKeydown");break;case"editableMouseover":this.attachToEachElement("mouseover",this.handleMouseover);break;case"editableDrag":this.attachToEachElement("dragover",this.handleDragging),this.attachToEachElement("dragleave",this.handleDragging);break;case"editableDrop":this.attachToEachElement("drop",this.handleDrop);break;case"editablePaste":this.attachToEachElement("paste",this.handlePaste)}this.listeners[t]=!0}},attachToEachElement:function(t,e){this.eventsCache||(this.eventsCache=[]),this.base.elements.forEach(function(n){this.attachDOMEvent(n,t,e.bind(this))},this),this.eventsCache.push({name:t,handler:e})},cleanupElement:function(t){var e=t.getAttribute("medium-editor-index");e&&(this.detachAllEventsFromElement(t),this.contentCache&&delete this.contentCache[e])},focusElement:function(t){t.focus(),this.updateFocus(t,{target:t,type:"focus"})},updateFocus:function(n,r){var i,o=this.base.getFocusedElement();o&&"click"===r.type&&this.lastMousedownTarget&&(t.util.isDescendant(o,this.lastMousedownTarget,!0)||e(this.base.extensions,this.lastMousedownTarget))&&(i=o),i||this.base.elements.some(function(e){return!i&&t.util.isDescendant(e,n,!0)&&(i=e),!!i},this);var a=!t.util.isDescendant(o,n,!0)&&!e(this.base.extensions,n);i!==o&&(o&&a&&(o.removeAttribute("data-medium-focused"),this.triggerCustomEvent("blur",r,o)),i&&(i.setAttribute("data-medium-focused",!0),this.triggerCustomEvent("focus",r,i))),a&&this.triggerCustomEvent("externalInteraction",r)},updateInput:function(t,e){if(this.contentCache){var n=t.getAttribute("medium-editor-index"),r=t.innerHTML;r!==this.contentCache[n]&&this.triggerCustomEvent("editableInput",e,t),this.contentCache[n]=r}},handleDocumentSelectionChange:function(e){if(e.currentTarget&&e.currentTarget.activeElement){var n,r=e.currentTarget.activeElement;this.base.elements.some(function(e){return!!t.util.isDescendant(e,r,!0)&&(n=e,!0)},this),n&&this.updateInput(n,{target:r,currentTarget:n})}},handleDocumentExecCommand:function(){var t=this.base.getFocusedElement();t&&this.updateInput(t,{target:t,currentTarget:t})},handleBodyClick:function(t){this.updateFocus(t.target,t)},handleBodyFocus:function(t){this.updateFocus(t.target,t)},handleBodyMousedown:function(t){this.lastMousedownTarget=t.target},handleInput:function(t){this.updateInput(t.currentTarget,t)},handleClick:function(t){this.triggerCustomEvent("editableClick",t,t.currentTarget)},handleBlur:function(t){this.triggerCustomEvent("editableBlur",t,t.currentTarget)},handleKeypress:function(t){if(this.triggerCustomEvent("editableKeypress",t,t.currentTarget),this.keypressUpdateInput){var e={target:t.target,currentTarget:t.currentTarget};setTimeout(function(){this.updateInput(e.currentTarget,e)}.bind(this),0)}},handleKeyup:function(t){this.triggerCustomEvent("editableKeyup",t,t.currentTarget)},handleMouseover:function(t){this.triggerCustomEvent("editableMouseover",t,t.currentTarget)},handleDragging:function(t){this.triggerCustomEvent("editableDrag",t,t.currentTarget)},handleDrop:function(t){this.triggerCustomEvent("editableDrop",t,t.currentTarget)},handlePaste:function(t){this.triggerCustomEvent("editablePaste",t,t.currentTarget)},handleKeydown:function(e){return this.triggerCustomEvent("editableKeydown",e,e.currentTarget),t.util.isKey(e,t.util.keyCode.SPACE)?this.triggerCustomEvent("editableKeydownSpace",e,e.currentTarget):t.util.isKey(e,t.util.keyCode.ENTER)||e.ctrlKey&&t.util.isKey(e,t.util.keyCode.M)?this.triggerCustomEvent("editableKeydownEnter",e,e.currentTarget):t.util.isKey(e,t.util.keyCode.TAB)?this.triggerCustomEvent("editableKeydownTab",e,e.currentTarget):t.util.isKey(e,[t.util.keyCode.DELETE,t.util.keyCode.BACKSPACE])?this.triggerCustomEvent("editableKeydownDelete",e,e.currentTarget):void 0}},t.Events=n}(),function(){var e=t.Extension.extend({action:void 0,aria:void 0,tagNames:void 0,style:void 0,useQueryState:void 0,contentDefault:void 0,contentFA:void 0,classList:void 0,attrs:void 0,constructor:function(n){e.isBuiltInButton(n)?t.Extension.call(this,this.defaults[n]):t.Extension.call(this,n)},init:function(){t.Extension.prototype.init.apply(this,arguments),this.button=this.createButton(),this.on(this.button,"click",this.handleClick.bind(this))},getButton:function(){return this.button},getAction:function(){return"function"==typeof this.action?this.action(this.base.options):this.action},getAria:function(){return"function"==typeof this.aria?this.aria(this.base.options):this.aria},getTagNames:function(){return"function"==typeof this.tagNames?this.tagNames(this.base.options):this.tagNames},createButton:function(){var t=this.document.createElement("button"),e=this.contentDefault,n=this.getAria(),r=this.getEditorOption("buttonLabels");return t.classList.add("medium-editor-action"),t.classList.add("medium-editor-action-"+this.name),this.classList&&this.classList.forEach(function(e){t.classList.add(e)}),t.setAttribute("data-action",this.getAction()),n&&(t.setAttribute("title",n),t.setAttribute("aria-label",n)),this.attrs&&Object.keys(this.attrs).forEach(function(e){t.setAttribute(e,this.attrs[e])},this),"fontawesome"===r&&this.contentFA&&(e=this.contentFA),t.innerHTML=e,t},handleClick:function(t){t.preventDefault(),t.stopPropagation();var e=this.getAction();e&&this.execAction(e)},isActive:function(){return this.button.classList.contains(this.getEditorOption("activeButtonClass"))},setInactive:function(){this.button.classList.remove(this.getEditorOption("activeButtonClass")),delete this.knownState},setActive:function(){this.button.classList.add(this.getEditorOption("activeButtonClass")),delete this.knownState},queryCommandState:function(){var t=null;return this.useQueryState&&(t=this.base.queryCommandState(this.getAction())),t},isAlreadyApplied:function(t){var e,n,r=!1,i=this.getTagNames();return!1===this.knownState||!0===this.knownState?this.knownState:(i&&i.length>0&&(r=-1!==i.indexOf(t.nodeName.toLowerCase())),!r&&this.style&&(e=this.style.value.split("|"),n=this.window.getComputedStyle(t,null).getPropertyValue(this.style.prop),e.forEach(function(t){this.knownState||((r=-1!==n.indexOf(t))||"text-decoration"!==this.style.prop)&&(this.knownState=r)},this)),r)}});e.isBuiltInButton=function(e){return"string"==typeof e&&t.extensions.button.prototype.defaults.hasOwnProperty(e)},t.extensions.button=e}(),function(){t.extensions.button.prototype.defaults={bold:{name:"bold",action:"bold",aria:"bold",tagNames:["b","strong"],style:{prop:"font-weight",value:"700|bold"},useQueryState:!0,contentDefault:"<b>B</b>",contentFA:'<i class="fa fa-bold"></i>'},italic:{name:"italic",action:"italic",aria:"italic",tagNames:["i","em"],style:{prop:"font-style",value:"italic"},useQueryState:!0,contentDefault:"<b><i>I</i></b>",contentFA:'<i class="fa fa-italic"></i>'},underline:{name:"underline",action:"underline",aria:"underline",tagNames:["u"],style:{prop:"text-decoration",value:"underline"},useQueryState:!0,contentDefault:"<b><u>U</u></b>",contentFA:'<i class="fa fa-underline"></i>'},strikethrough:{name:"strikethrough",action:"strikethrough",aria:"strike through",tagNames:["strike"],style:{prop:"text-decoration",value:"line-through"},useQueryState:!0,contentDefault:"<s>A</s>",contentFA:'<i class="fa fa-strikethrough"></i>'},superscript:{name:"superscript",action:"superscript",aria:"superscript",tagNames:["sup"],contentDefault:"<b>x<sup>1</sup></b>",contentFA:'<i class="fa fa-superscript"></i>'},subscript:{name:"subscript",action:"subscript",aria:"subscript",tagNames:["sub"],contentDefault:"<b>x<sub>1</sub></b>",contentFA:'<i class="fa fa-subscript"></i>'},image:{name:"image",action:"image",aria:"image",tagNames:["img"],contentDefault:"<b>image</b>",contentFA:'<i class="fa fa-picture-o"></i>'},html:{name:"html",action:"html",aria:"evaluate html",tagNames:["iframe","object"],contentDefault:"<b>html</b>",contentFA:'<i class="fa fa-code"></i>'},orderedlist:{name:"orderedlist",action:"insertorderedlist",aria:"ordered list",tagNames:["ol"],useQueryState:!0,contentDefault:"<b>1.</b>",contentFA:'<i class="fa fa-list-ol"></i>'},unorderedlist:{name:"unorderedlist",action:"insertunorderedlist",aria:"unordered list",tagNames:["ul"],useQueryState:!0,contentDefault:"<b>&bull;</b>",contentFA:'<i class="fa fa-list-ul"></i>'},indent:{name:"indent",action:"indent",aria:"indent",tagNames:[],contentDefault:"<b>&rarr;</b>",contentFA:'<i class="fa fa-indent"></i>'},outdent:{name:"outdent",action:"outdent",aria:"outdent",tagNames:[],contentDefault:"<b>&larr;</b>",contentFA:'<i class="fa fa-outdent"></i>'},justifyCenter:{name:"justifyCenter",action:"justifyCenter",aria:"center justify",tagNames:[],style:{prop:"text-align",value:"center"},contentDefault:"<b>C</b>",contentFA:'<i class="fa fa-align-center"></i>'},justifyFull:{name:"justifyFull",action:"justifyFull",aria:"full justify",tagNames:[],style:{prop:"text-align",value:"justify"},contentDefault:"<b>J</b>",contentFA:'<i class="fa fa-align-justify"></i>'},justifyLeft:{name:"justifyLeft",action:"justifyLeft",aria:"left justify",tagNames:[],style:{prop:"text-align",value:"left"},contentDefault:"<b>L</b>",contentFA:'<i class="fa fa-align-left"></i>'},justifyRight:{name:"justifyRight",action:"justifyRight",aria:"right justify",tagNames:[],style:{prop:"text-align",value:"right"},contentDefault:"<b>R</b>",contentFA:'<i class="fa fa-align-right"></i>'},removeFormat:{name:"removeFormat",aria:"remove formatting",action:"removeFormat",contentDefault:"<b>X</b>",contentFA:'<i class="fa fa-eraser"></i>'},quote:{name:"quote",action:"append-blockquote",aria:"blockquote",tagNames:["blockquote"],contentDefault:"<b>&ldquo;</b>",contentFA:'<i class="fa fa-quote-right"></i>'},pre:{name:"pre",action:"append-pre",aria:"preformatted text",tagNames:["pre"],contentDefault:"<b>0101</b>",contentFA:'<i class="fa fa-code fa-lg"></i>'},h1:{name:"h1",action:"append-h1",aria:"header type one",tagNames:["h1"],contentDefault:"<b>H1</b>",contentFA:'<i class="fa fa-header"><sup>1</sup>'},h2:{name:"h2",action:"append-h2",aria:"header type two",tagNames:["h2"],contentDefault:"<b>H2</b>",contentFA:'<i class="fa fa-header"><sup>2</sup>'},h3:{name:"h3",action:"append-h3",aria:"header type three",tagNames:["h3"],contentDefault:"<b>H3</b>",contentFA:'<i class="fa fa-header"><sup>3</sup>'},h4:{name:"h4",action:"append-h4",aria:"header type four",tagNames:["h4"],contentDefault:"<b>H4</b>",contentFA:'<i class="fa fa-header"><sup>4</sup>'},h5:{name:"h5",action:"append-h5",aria:"header type five",tagNames:["h5"],contentDefault:"<b>H5</b>",contentFA:'<i class="fa fa-header"><sup>5</sup>'},h6:{name:"h6",action:"append-h6",aria:"header type six",tagNames:["h6"],contentDefault:"<b>H6</b>",contentFA:'<i class="fa fa-header"><sup>6</sup>'}}}(),function(){var e=t.extensions.button.extend({init:function(){t.extensions.button.prototype.init.apply(this,arguments)},formSaveLabel:"&#10003;",formCloseLabel:"&times;",activeClass:"medium-editor-toolbar-form-active",hasForm:!0,getForm:function(){},isDisplayed:function(){return!!this.hasForm&&this.getForm().classList.contains(this.activeClass)},showForm:function(){this.hasForm&&this.getForm().classList.add(this.activeClass)},hideForm:function(){this.hasForm&&this.getForm().classList.remove(this.activeClass)},showToolbarDefaultActions:function(){var t=this.base.getExtensionByName("toolbar");t&&t.showToolbarDefaultActions()},hideToolbarDefaultActions:function(){var t=this.base.getExtensionByName("toolbar");t&&t.hideToolbarDefaultActions()},setToolbarPosition:function(){var t=this.base.getExtensionByName("toolbar");t&&t.setToolbarPosition()}});t.extensions.form=e}(),function(){var e=t.extensions.form.extend({customClassOption:null,customClassOptionText:"Button",linkValidation:!1,placeholderText:"Paste or type a link",targetCheckbox:!1,targetCheckboxText:"Open in new window",name:"anchor",action:"createLink",aria:"link",tagNames:["a"],contentDefault:"<b>#</b>",contentFA:'<i class="fa fa-link"></i>',init:function(){t.extensions.form.prototype.init.apply(this,arguments),this.subscribe("editableKeydown",this.handleKeydown.bind(this))},handleClick:function(e){e.preventDefault(),e.stopPropagation();var n=t.selection.getSelectionRange(this.document);return"a"===n.startContainer.nodeName.toLowerCase()||"a"===n.endContainer.nodeName.toLowerCase()||t.util.getClosestTag(t.selection.getSelectedParentElement(n),"a")?this.execAction("unlink"):(this.isDisplayed()||this.showForm(),!1)},handleKeydown:function(e){t.util.isKey(e,t.util.keyCode.K)&&t.util.isMetaCtrlKey(e)&&!e.shiftKey&&this.handleClick(e)},getForm:function(){return this.form||(this.form=this.createForm()),this.form},getTemplate:function(){var t=['<input type="text" class="medium-editor-toolbar-input" placeholder="',this.placeholderText,'">'];return t.push('<a href="#" class="medium-editor-toolbar-save">',"fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':this.formSaveLabel,"</a>"),t.push('<a href="#" class="medium-editor-toolbar-close">',"fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':this.formCloseLabel,"</a>"),this.targetCheckbox&&t.push('<div class="medium-editor-toolbar-form-row">','<input type="checkbox" class="medium-editor-toolbar-anchor-target" id="medium-editor-toolbar-anchor-target-field-'+this.getEditorId()+'">','<label for="medium-editor-toolbar-anchor-target-field-'+this.getEditorId()+'">',this.targetCheckboxText,"</label>","</div>"),this.customClassOption&&t.push('<div class="medium-editor-toolbar-form-row">','<input type="checkbox" class="medium-editor-toolbar-anchor-button">',"<label>",this.customClassOptionText,"</label>","</div>"),t.join("")},isDisplayed:function(){return t.extensions.form.prototype.isDisplayed.apply(this)},hideForm:function(){t.extensions.form.prototype.hideForm.apply(this),this.getInput().value=""},showForm:function(e){var n=this.getInput(),r=this.getAnchorTargetCheckbox(),i=this.getAnchorButtonCheckbox();if(e=e||{value:""},"string"==typeof e&&(e={value:e}),this.base.saveSelection(),this.hideToolbarDefaultActions(),t.extensions.form.prototype.showForm.apply(this),this.setToolbarPosition(),n.value=e.value,n.focus(),r&&(r.checked="_blank"===e.target),i){var o=e.buttonClass?e.buttonClass.split(" "):[];i.checked=-1!==o.indexOf(this.customClassOption)}},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},getFormOpts:function(){var t=this.getAnchorTargetCheckbox(),e=this.getAnchorButtonCheckbox(),n={value:this.getInput().value.trim()};return this.linkValidation&&(n.value=this.checkLinkFormat(n.value)),n.target="_self",t&&t.checked&&(n.target="_blank"),e&&e.checked&&(n.buttonClass=this.customClassOption),n},doFormSave:function(){var t=this.getFormOpts();this.completeFormSave(t)},completeFormSave:function(t){this.base.restoreSelection(),this.execAction(this.action,t),this.base.checkSelection()},ensureEncodedUri:function(t){return t===decodeURI(t)?encodeURI(t):t},ensureEncodedUriComponent:function(t){return t===decodeURIComponent(t)?encodeURIComponent(t):t},ensureEncodedParam:function(t){var e=t.split("="),n=e[0],r=e[1];return n+(void 0===r?"":"="+this.ensureEncodedUriComponent(r))},ensureEncodedQuery:function(t){return t.split("&").map(this.ensureEncodedParam.bind(this)).join("&")},checkLinkFormat:function(t){var e=/^([a-z]+:)?\/\/|^(mailto|tel|maps):|^\#/i,n=e.test(t),r="",i=/^\+?\s?\(?(?:\d\s?\-?\)?){3,20}$/,o=t.match(/^(.*?)(?:\?(.*?))?(?:#(.*))?$/),a=o[1],s=o[2],u=o[3];if(i.test(t))return"tel:"+t;if(!n){var c=a.split("/")[0];(c.match(/.+(\.|:).+/)||"localhost"===c)&&(r="http://")}return r+this.ensureEncodedUri(a)+(void 0===s?"":"?"+this.ensureEncodedQuery(s))+(void 0===u?"":"#"+u)},doFormCancel:function(){this.base.restoreSelection(),this.base.checkSelection()},attachFormEvents:function(t){var e=t.querySelector(".medium-editor-toolbar-close"),n=t.querySelector(".medium-editor-toolbar-save"),r=t.querySelector(".medium-editor-toolbar-input");this.on(t,"click",this.handleFormClick.bind(this)),this.on(r,"keyup",this.handleTextboxKeyup.bind(this)),this.on(e,"click",this.handleCloseClick.bind(this)),this.on(n,"click",this.handleSaveClick.bind(this),!0)},createForm:function(){var t=this.document,e=t.createElement("div");return e.className="medium-editor-toolbar-form",e.id="medium-editor-toolbar-form-anchor-"+this.getEditorId(),e.innerHTML=this.getTemplate(),this.attachFormEvents(e),e},getInput:function(){return this.getForm().querySelector("input.medium-editor-toolbar-input")},getAnchorTargetCheckbox:function(){return this.getForm().querySelector(".medium-editor-toolbar-anchor-target")},getAnchorButtonCheckbox:function(){return this.getForm().querySelector(".medium-editor-toolbar-anchor-button")},handleTextboxKeyup:function(e){if(e.keyCode===t.util.keyCode.ENTER)return e.preventDefault(),void this.doFormSave();e.keyCode===t.util.keyCode.ESCAPE&&(e.preventDefault(),this.doFormCancel())},handleFormClick:function(t){t.stopPropagation()},handleSaveClick:function(t){t.preventDefault(),this.doFormSave()},handleCloseClick:function(t){t.preventDefault(),this.doFormCancel()}});t.extensions.anchor=e}(),function(){var e=t.Extension.extend({name:"anchor-preview",hideDelay:500,previewValueSelector:"a",showWhenToolbarIsVisible:!1,showOnEmptyLinks:!0,init:function(){this.anchorPreview=this.createPreview(),this.getEditorOption("elementsContainer").appendChild(this.anchorPreview),this.attachToEditables()},getInteractionElements:function(){return this.getPreviewElement()},getPreviewElement:function(){return this.anchorPreview},createPreview:function(){var t=this.document.createElement("div");return t.id="medium-editor-anchor-preview-"+this.getEditorId(),t.className="medium-editor-anchor-preview",t.innerHTML=this.getTemplate(),this.on(t,"click",this.handleClick.bind(this)),t},getTemplate:function(){return'<div class="medium-editor-toolbar-anchor-preview" id="medium-editor-toolbar-anchor-preview"> <a class="medium-editor-toolbar-anchor-preview-inner"></a></div>'},destroy:function(){this.anchorPreview&&(this.anchorPreview.parentNode&&this.anchorPreview.parentNode.removeChild(this.anchorPreview),delete this.anchorPreview)},hidePreview:function(){this.anchorPreview&&this.anchorPreview.classList.remove("medium-editor-anchor-preview-active"),this.activeAnchor=null},showPreview:function(t){return!(!this.anchorPreview.classList.contains("medium-editor-anchor-preview-active")&&!t.getAttribute("data-disable-preview"))||(this.previewValueSelector&&(this.anchorPreview.querySelector(this.previewValueSelector).textContent=t.attributes.href.value,this.anchorPreview.querySelector(this.previewValueSelector).href=t.attributes.href.value),this.anchorPreview.classList.add("medium-toolbar-arrow-over"),this.anchorPreview.classList.remove("medium-toolbar-arrow-under"),this.anchorPreview.classList.contains("medium-editor-anchor-preview-active")||this.anchorPreview.classList.add("medium-editor-anchor-preview-active"),this.activeAnchor=t,this.positionPreview(),this.attachPreviewHandlers(),this)},positionPreview:function(t){t=t||this.activeAnchor;var e,n,r,i,o,a=this.window.innerWidth,s=this.anchorPreview.offsetHeight,u=t.getBoundingClientRect(),c=this.diffLeft,l=this.diffTop,f=this.getEditorOption("elementsContainer"),d=["absolute","fixed"].indexOf(window.getComputedStyle(f).getPropertyValue("position"))>-1,h={};e=this.anchorPreview.offsetWidth/2;var p=this.base.getExtensionByName("toolbar");p&&(c=p.diffLeft,l=p.diffTop),n=c-e,d?(i=f.getBoundingClientRect(),["top","left"].forEach(function(t){h[t]=u[t]-i[t]}),h.width=u.width,h.height=u.height,u=h,a=i.width,o=f.scrollTop):o=this.window.pageYOffset,r=u.left+u.width/2,o+=s+u.top+u.height-l-this.anchorPreview.offsetHeight,this.anchorPreview.style.top=Math.round(o)+"px",this.anchorPreview.style.right="initial",r<e?(this.anchorPreview.style.left=n+e+"px",this.anchorPreview.style.right="initial"):a-r<e?(this.anchorPreview.style.left="auto",this.anchorPreview.style.right=0):(this.anchorPreview.style.left=n+r+"px",this.anchorPreview.style.right="initial")},attachToEditables:function(){this.subscribe("editableMouseover",this.handleEditableMouseover.bind(this)),this.subscribe("positionedToolbar",this.handlePositionedToolbar.bind(this))},handlePositionedToolbar:function(){this.showWhenToolbarIsVisible||this.hidePreview()},handleClick:function(t){var e=this.base.getExtensionByName("anchor"),n=this.activeAnchor;e&&n&&(t.preventDefault(),this.base.selectElement(this.activeAnchor),this.base.delay(function(){if(n){var t={value:n.attributes.href.value,target:n.getAttribute("target"),buttonClass:n.getAttribute("class")};e.showForm(t),n=null}}.bind(this))),this.hidePreview()},handleAnchorMouseout:function(){this.anchorToPreview=null,this.off(this.activeAnchor,"mouseout",this.instanceHandleAnchorMouseout),this.instanceHandleAnchorMouseout=null},handleEditableMouseover:function(e){var n=t.util.getClosestTag(e.target,"a");if(!1!==n){if(!this.showOnEmptyLinks&&(!/href=["']\S+["']/.test(n.outerHTML)||/href=["']#\S+["']/.test(n.outerHTML)))return!0;var r=this.base.getExtensionByName("toolbar");if(!this.showWhenToolbarIsVisible&&r&&r.isDisplayed&&r.isDisplayed())return!0;this.activeAnchor&&this.activeAnchor!==n&&this.detachPreviewHandlers(),this.anchorToPreview=n,this.instanceHandleAnchorMouseout=this.handleAnchorMouseout.bind(this),this.on(this.anchorToPreview,"mouseout",this.instanceHandleAnchorMouseout),this.base.delay(function(){this.anchorToPreview&&this.showPreview(this.anchorToPreview)}.bind(this))}},handlePreviewMouseover:function(){this.lastOver=(new Date).getTime(),this.hovering=!0},handlePreviewMouseout:function(t){t.relatedTarget&&/anchor-preview/.test(t.relatedTarget.className)||(this.hovering=!1)},updatePreview:function(){if(this.hovering)return!0;(new Date).getTime()-this.lastOver>this.hideDelay&&this.detachPreviewHandlers()},detachPreviewHandlers:function(){clearInterval(this.intervalTimer),this.instanceHandlePreviewMouseover&&(this.off(this.anchorPreview,"mouseover",this.instanceHandlePreviewMouseover),this.off(this.anchorPreview,"mouseout",this.instanceHandlePreviewMouseout),this.activeAnchor&&(this.off(this.activeAnchor,"mouseover",this.instanceHandlePreviewMouseover),this.off(this.activeAnchor,"mouseout",this.instanceHandlePreviewMouseout))),this.hidePreview(),this.hovering=this.instanceHandlePreviewMouseover=this.instanceHandlePreviewMouseout=null},attachPreviewHandlers:function(){this.lastOver=(new Date).getTime(),this.hovering=!0,this.instanceHandlePreviewMouseover=this.handlePreviewMouseover.bind(this),this.instanceHandlePreviewMouseout=this.handlePreviewMouseout.bind(this),this.intervalTimer=setInterval(this.updatePreview.bind(this),200),this.on(this.anchorPreview,"mouseover",this.instanceHandlePreviewMouseover),this.on(this.anchorPreview,"mouseout",this.instanceHandlePreviewMouseout),this.on(this.activeAnchor,"mouseover",this.instanceHandlePreviewMouseover),this.on(this.activeAnchor,"mouseout",this.instanceHandlePreviewMouseout)}});t.extensions.anchorPreview=e}(),function(){function e(e){return!t.util.getClosestTag(e,"a")}var n,r,i,o,a;n=[" ","\t","\n","\r"," "," "," "," "," ","\u2028","\u2029"],r="com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw",i="(((?:(https?://|ftps?://|nntp://)|www\\d{0,3}[.]|[a-z0-9.\\-]+[.]("+r+")\\/)\\S+(?:[^\\s`!\\[\\]{};:'\".,?«»“”‘’])))|(([a-z0-9\\-]+\\.)?[a-z0-9\\-]+\\.("+r+"))",o=new RegExp("^("+r+")$","i"),a=new RegExp(i,"gi");var s=t.Extension.extend({init:function(){t.Extension.prototype.init.apply(this,arguments),this.disableEventHandling=!1,this.subscribe("editableKeypress",this.onKeypress.bind(this)),this.subscribe("editableBlur",this.onBlur.bind(this)),this.document.execCommand("AutoUrlDetect",!1,!1)},isLastInstance:function(){for(var t=0,e=0;e<this.window._mediumEditors.length;e++){var n=this.window._mediumEditors[e];null!==n&&void 0!==n.getExtensionByName("autoLink")&&t++}return 1===t},destroy:function(){this.document.queryCommandSupported("AutoUrlDetect")&&this.isLastInstance()&&this.document.execCommand("AutoUrlDetect",!1,!0)},onBlur:function(t,e){this.performLinking(e)},onKeypress:function(e){this.disableEventHandling||t.util.isKey(e,[t.util.keyCode.SPACE,t.util.keyCode.ENTER])&&(clearTimeout(this.performLinkingTimeout),this.performLinkingTimeout=setTimeout(function(){try{var t=this.base.exportSelection();this.performLinking(e.target)&&this.base.importSelection(t,!0)}catch(t){window.console&&window.console.error("Failed to perform linking",t),this.disableEventHandling=!0}}.bind(this),0))},performLinking:function(e){var n=t.util.splitByBlockElements(e),r=!1;0===n.length&&(n=[e]);for(var i=0;i<n.length;i++)r=this.removeObsoleteAutoLinkSpans(n[i])||r,r=this.performLinkingWithinElement(n[i])||r;return this.base.events.updateInput(e,{target:e,currentTarget:e}),r},removeObsoleteAutoLinkSpans:function(n){if(!n||3===n.nodeType)return!1;for(var r=n.querySelectorAll('span[data-auto-link="true"]'),i=!1,o=0;o<r.length;o++){var a=r[o].textContent;if(-1===a.indexOf("://")&&(a=t.util.ensureUrlHasProtocol(a)),r[o].getAttribute("data-href")!==a&&e(r[o])){i=!0;var s=a.replace(/\s+$/,"");if(r[o].getAttribute("data-href")===s){var u=a.length-s.length,c=t.util.splitOffDOMTree(r[o],this.splitTextBeforeEnd(r[o],u));r[o].parentNode.insertBefore(c,r[o].nextSibling)}else t.util.unwrap(r[o],this.document)}}return i},splitTextBeforeEnd:function(t,e){for(var n=this.document.createTreeWalker(t,NodeFilter.SHOW_TEXT,null,!1),r=!0;r;)r=null!==n.lastChild();for(var i,o,a;e>0&&null!==a;)i=n.currentNode,o=i.nodeValue,o.length>e?(a=i.splitText(o.length-e),e=0):(a=n.previousNode(),e-=o.length);return a},performLinkingWithinElement:function(e){for(var n=this.findLinkableText(e),r=0;r<n.length;r++){var i=t.util.findOrCreateMatchingTextNodes(this.document,e,n[r]);this.shouldNotLink(i)||this.createAutoLink(i,n[r].href)}return!1},shouldNotLink:function(e){for(var n=!1,r=0;r<e.length&&!1===n;r++)n=!!t.util.traverseUp(e[r],function(t){return"a"===t.nodeName.toLowerCase()||t.getAttribute&&"true"===t.getAttribute("data-auto-link")});return n},findLinkableText:function(t){for(var e=t.textContent,r=null,i=[];null!==(r=a.exec(e));){var s=!0,u=r.index+r[0].length;s=!(0!==r.index&&-1===n.indexOf(e[r.index-1])||u!==e.length&&-1===n.indexOf(e[u])),s=s&&(-1!==r[0].indexOf("/")||o.test(r[0].split(".").pop().split("?").shift())),s&&i.push({href:r[0],start:r.index,end:u})}return i},createAutoLink:function(e,n){n=t.util.ensureUrlHasProtocol(n);var r=t.util.createLink(this.document,e,n,this.getEditorOption("targetBlank")?"_blank":null),i=this.document.createElement("span");for(i.setAttribute("data-auto-link","true"),i.setAttribute("data-href",n),r.insertBefore(i,r.firstChild);r.childNodes.length>1;)i.appendChild(r.childNodes[1])}});t.extensions.autoLink=s}(),function(){function e(e){var r=t.util.getContainerEditorElement(e);Array.prototype.slice.call(r.parentElement.querySelectorAll("."+n)).forEach(function(t){t.classList.remove(n)})}var n="medium-editor-dragover",r=t.Extension.extend({name:"fileDragging",allowedTypes:["image"],init:function(){t.Extension.prototype.init.apply(this,arguments),this.subscribe("editableDrag",this.handleDrag.bind(this)),this.subscribe("editableDrop",this.handleDrop.bind(this))},handleDrag:function(t){t.preventDefault(),t.dataTransfer.dropEffect="copy";var r=t.target.classList?t.target:t.target.parentElement;e(r),"dragover"===t.type&&r.classList.add(n)},handleDrop:function(t){t.preventDefault(),t.stopPropagation(),this.base.selectElement(t.target);var n=this.base.exportSelection();n.start=n.end,this.base.importSelection(n),t.dataTransfer.files&&Array.prototype.slice.call(t.dataTransfer.files).forEach(function(t){this.isAllowedFile(t)&&t.type.match("image")&&this.insertImageFile(t)},this),e(t.target)},isAllowedFile:function(t){return this.allowedTypes.some(function(e){return!!t.type.match(e)})},insertImageFile:function(e){if("function"==typeof FileReader){var n=new FileReader;n.readAsDataURL(e),n.addEventListener("load",function(e){var n=this.document.createElement("img");n.src=e.target.result,t.util.insertHTMLCommand(this.document,n.outerHTML)}.bind(this))}}});t.extensions.fileDragging=r}(),function(){var e=t.Extension.extend({name:"keyboard-commands",commands:[{command:"bold",key:"B",meta:!0,shift:!1,alt:!1},{command:"italic",key:"I",meta:!0,shift:!1,alt:!1},{command:"underline",key:"U",meta:!0,shift:!1,alt:!1}],init:function(){t.Extension.prototype.init.apply(this,arguments),this.subscribe("editableKeydown",this.handleKeydown.bind(this)),this.keys={},this.commands.forEach(function(t){var e=t.key.charCodeAt(0);this.keys[e]||(this.keys[e]=[]),this.keys[e].push(t)},this)},handleKeydown:function(e){var n=t.util.getKeyCode(e);if(this.keys[n]){var r=t.util.isMetaCtrlKey(e),i=!!e.shiftKey,o=!!e.altKey;this.keys[n].forEach(function(t){t.meta!==r||t.shift!==i||t.alt!==o&&void 0!==t.alt||(e.preventDefault(),e.stopPropagation(),"function"==typeof t.command?t.command.apply(this):!1!==t.command&&this.execAction(t.command))},this)}}});t.extensions.keyboardCommands=e}(),function(){var e=t.extensions.form.extend({name:"fontname",action:"fontName",aria:"change font name",contentDefault:"&#xB1;",contentFA:'<i class="fa fa-font"></i>',fonts:["","Arial","Verdana","Times New Roman"],init:function(){t.extensions.form.prototype.init.apply(this,arguments)},handleClick:function(t){if(t.preventDefault(),t.stopPropagation(),!this.isDisplayed()){var e=this.document.queryCommandValue("fontName")+"";this.showForm(e)}return!1},getForm:function(){return this.form||(this.form=this.createForm()),this.form},isDisplayed:function(){return"block"===this.getForm().style.display},hideForm:function(){this.getForm().style.display="none",this.getSelect().value=""},showForm:function(t){var e=this.getSelect();this.base.saveSelection(),this.hideToolbarDefaultActions(),this.getForm().style.display="block",this.setToolbarPosition(),e.value=t||"",e.focus()},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},doFormSave:function(){this.base.restoreSelection(),this.base.checkSelection()},doFormCancel:function(){this.base.restoreSelection(),this.clearFontName(),this.base.checkSelection()},createForm:function(){var t,e=this.document,n=e.createElement("div"),r=e.createElement("select"),i=e.createElement("a"),o=e.createElement("a");n.className="medium-editor-toolbar-form",n.id="medium-editor-toolbar-form-fontname-"+this.getEditorId(),this.on(n,"click",this.handleFormClick.bind(this));for(var a=0;a<this.fonts.length;a++)t=e.createElement("option"),t.innerHTML=this.fonts[a],t.value=this.fonts[a],r.appendChild(t);return r.className="medium-editor-toolbar-select",n.appendChild(r),this.on(r,"change",this.handleFontChange.bind(this)),o.setAttribute("href","#"),o.className="medium-editor-toobar-save",o.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':"&#10003;",n.appendChild(o),this.on(o,"click",this.handleSaveClick.bind(this),!0),i.setAttribute("href","#"),i.className="medium-editor-toobar-close",i.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':"&times;",n.appendChild(i),this.on(i,"click",this.handleCloseClick.bind(this)),n},getSelect:function(){return this.getForm().querySelector("select.medium-editor-toolbar-select")},clearFontName:function(){t.selection.getSelectedElements(this.document).forEach(function(t){"font"===t.nodeName.toLowerCase()&&t.hasAttribute("face")&&t.removeAttribute("face")})},handleFontChange:function(){var t=this.getSelect().value;""===t?this.clearFontName():this.execAction("fontName",{value:t})},handleFormClick:function(t){t.stopPropagation()},handleSaveClick:function(t){t.preventDefault(),this.doFormSave()},handleCloseClick:function(t){t.preventDefault(),this.doFormCancel()}});t.extensions.fontName=e}(),function(){var e=t.extensions.form.extend({name:"fontsize",action:"fontSize",aria:"increase/decrease font size",contentDefault:"&#xB1;",contentFA:'<i class="fa fa-text-height"></i>',init:function(){t.extensions.form.prototype.init.apply(this,arguments)},handleClick:function(t){if(t.preventDefault(),t.stopPropagation(),!this.isDisplayed()){var e=this.document.queryCommandValue("fontSize")+"";this.showForm(e)}return!1},getForm:function(){return this.form||(this.form=this.createForm()),this.form},isDisplayed:function(){return"block"===this.getForm().style.display},hideForm:function(){this.getForm().style.display="none",this.getInput().value=""},showForm:function(t){var e=this.getInput();this.base.saveSelection(),this.hideToolbarDefaultActions(),this.getForm().style.display="block",this.setToolbarPosition(),e.value=t||"",e.focus()},destroy:function(){if(!this.form)return!1;this.form.parentNode&&this.form.parentNode.removeChild(this.form),delete this.form},doFormSave:function(){this.base.restoreSelection(),this.base.checkSelection()},doFormCancel:function(){this.base.restoreSelection(),this.clearFontSize(),this.base.checkSelection()},createForm:function(){var t=this.document,e=t.createElement("div"),n=t.createElement("input"),r=t.createElement("a"),i=t.createElement("a");return e.className="medium-editor-toolbar-form",e.id="medium-editor-toolbar-form-fontsize-"+this.getEditorId(),this.on(e,"click",this.handleFormClick.bind(this)),n.setAttribute("type","range"),n.setAttribute("min","1"),n.setAttribute("max","7"),n.className="medium-editor-toolbar-input",e.appendChild(n),this.on(n,"change",this.handleSliderChange.bind(this)),i.setAttribute("href","#"),i.className="medium-editor-toobar-save",i.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-check"></i>':"&#10003;",e.appendChild(i),this.on(i,"click",this.handleSaveClick.bind(this),!0),r.setAttribute("href","#"),r.className="medium-editor-toobar-close",r.innerHTML="fontawesome"===this.getEditorOption("buttonLabels")?'<i class="fa fa-times"></i>':"&times;",e.appendChild(r),this.on(r,"click",this.handleCloseClick.bind(this)),e},getInput:function(){return this.getForm().querySelector("input.medium-editor-toolbar-input")},clearFontSize:function(){t.selection.getSelectedElements(this.document).forEach(function(t){"font"===t.nodeName.toLowerCase()&&t.hasAttribute("size")&&t.removeAttribute("size")})},handleSliderChange:function(){var t=this.getInput().value;"4"===t?this.clearFontSize():this.execAction("fontSize",{value:t})},handleFormClick:function(t){t.stopPropagation()},handleSaveClick:function(t){t.preventDefault(),this.doFormSave()},handleCloseClick:function(t){t.preventDefault(),this.doFormCancel()}});t.extensions.fontSize=e}(),function(){function e(){return[[new RegExp(/^[\s\S]*<body[^>]*>\s*|\s*<\/body[^>]*>[\s\S]*$/g),""],[new RegExp(/<!--StartFragment-->|<!--EndFragment-->/g),""],[new RegExp(/<br>$/i),""],[new RegExp(/<[^>]*docs-internal-guid[^>]*>/gi),""],[new RegExp(/<\/b>(<br[^>]*>)?$/gi),""],[new RegExp(/<span class="Apple-converted-space">\s+<\/span>/g)," "],[new RegExp(/<br class="Apple-interchange-newline">/g),"<br>"],[new RegExp(/<span[^>]*(font-style:italic;font-weight:(bold|700)|font-weight:(bold|700);font-style:italic)[^>]*>/gi),'<span class="replace-with italic bold">'],[new RegExp(/<span[^>]*font-style:italic[^>]*>/gi),'<span class="replace-with italic">'],[new RegExp(/<span[^>]*font-weight:(bold|700)[^>]*>/gi),'<span class="replace-with bold">'],[new RegExp(/&lt;(\/?)(i|b|a)&gt;/gi),"<$1$2>"],[new RegExp(/&lt;a(?:(?!href).)+href=(?:&quot;|&rdquo;|&ldquo;|"|“|”)(((?!&quot;|&rdquo;|&ldquo;|"|“|”).)*)(?:&quot;|&rdquo;|&ldquo;|"|“|”)(?:(?!&gt;).)*&gt;/gi),'<a href="$1">'],[new RegExp(/<\/p>\n+/gi),"</p>"],[new RegExp(/\n+<p/gi),"<p"],[new RegExp(/<\/?o:[a-z]*>/gi),""],[new RegExp(/<!\[if !supportLists\]>(((?!<!).)*)<!\[endif]\>/gi),"$1"]]}function n(t,e,n){var r=t.clipboardData||e.clipboardData||n.dataTransfer,i={};if(!r)return i;if(r.getData){var o=r.getData("Text");o&&o.length>0&&(i["text/plain"]=o)}if(r.types)for(var a=0;a<r.types.length;a++){var s=r.types[a];i[s]=r.getData(s)}return i}var r=null,i=null,o=function(t){t.stopPropagation()},a=t.Extension.extend({forcePlainText:!0,cleanPastedHTML:!1,preCleanReplacements:[],cleanReplacements:[],cleanAttrs:["class","style","dir"],cleanTags:["meta"],unwrapTags:[],init:function(){t.Extension.prototype.init.apply(this,arguments),(this.forcePlainText||this.cleanPastedHTML)&&(this.subscribe("editableKeydown",this.handleKeydown.bind(this)),this.getEditorElements().forEach(function(t){this.on(t,"paste",this.handlePaste.bind(this))},this),this.subscribe("addElement",this.handleAddElement.bind(this)))},handleAddElement:function(t,e){this.on(e,"paste",this.handlePaste.bind(this))},destroy:function(){(this.forcePlainText||this.cleanPastedHTML)&&this.removePasteBin()},handlePaste:function(t,e){if(!t.defaultPrevented){var r=n(t,this.window,this.document),i=r["text/html"],o=r["text/plain"];this.window.clipboardData&&void 0===t.clipboardData&&!i&&(i=o),(i||o)&&(t.preventDefault(),this.doPaste(i,o,e))}},doPaste:function(e,n,r){var i,o,a="";if(this.cleanPastedHTML&&e)return this.cleanPaste(e);if(this.getEditorOption("disableReturn")||r&&r.getAttribute("data-disable-return"))a=t.util.htmlEntities(n);else if(i=n.split(/[\r\n]+/g),i.length>1)for(o=0;o<i.length;o+=1)""!==i[o]&&(a+="<p>"+t.util.htmlEntities(i[o])+"</p>");else a=t.util.htmlEntities(i[0]);t.util.insertHTMLCommand(this.document,a)},handlePasteBinPaste:function(t){if(t.defaultPrevented)return void this.removePasteBin();var e=n(t,this.window,this.document),r=e["text/html"],o=e["text/plain"],a=i;if(!this.cleanPastedHTML||r)return t.preventDefault(),this.removePasteBin(),this.doPaste(r,o,a),void this.trigger("editablePaste",{currentTarget:a,target:a},a);setTimeout(function(){this.cleanPastedHTML&&(r=this.getPasteBinHtml()),this.removePasteBin(),this.doPaste(r,o,a),this.trigger("editablePaste",{currentTarget:a,target:a},a)}.bind(this),0)},handleKeydown:function(e,n){t.util.isKey(e,t.util.keyCode.V)&&t.util.isMetaCtrlKey(e)&&(e.stopImmediatePropagation(),this.removePasteBin(),this.createPasteBin(n))},createPasteBin:function(e){var n,a=t.selection.getSelectionRange(this.document),s=this.window.pageYOffset;i=e,a&&(n=a.getClientRects(),n.length?s+=n[0].top:void 0!==a.startContainer.getBoundingClientRect?s+=a.startContainer.getBoundingClientRect().top:s+=a.getBoundingClientRect().top),r=a;var u=this.document.createElement("div");u.id=this.pasteBinId="medium-editor-pastebin-"+ +Date.now(),u.setAttribute("style","border: 1px red solid; position: absolute; top: "+s+"px; width: 10px; height: 10px; overflow: hidden; opacity: 0"),u.setAttribute("contentEditable",!0),u.innerHTML="%ME_PASTEBIN%",this.document.body.appendChild(u),this.on(u,"focus",o),this.on(u,"focusin",o),this.on(u,"focusout",o),u.focus(),t.selection.selectNode(u,this.document),this.boundHandlePaste||(this.boundHandlePaste=this.handlePasteBinPaste.bind(this)),this.on(u,"paste",this.boundHandlePaste)},removePasteBin:function(){null!==r&&(t.selection.selectRange(this.document,r),r=null),null!==i&&(i=null);var e=this.getPasteBin();e&&e&&(this.off(e,"focus",o),this.off(e,"focusin",o),this.off(e,"focusout",o),this.off(e,"paste",this.boundHandlePaste),e.parentElement.removeChild(e))},getPasteBin:function(){return this.document.getElementById(this.pasteBinId)},getPasteBinHtml:function(){var t=this.getPasteBin();if(!t)return!1;if(t.firstChild&&"mcepastebin"===t.firstChild.id)return!1;var e=t.innerHTML;return!(!e||"%ME_PASTEBIN%"===e)&&e},cleanPaste:function(t){var n,r,i,o,a=/<p|<br|<div/.test(t),s=[].concat(this.preCleanReplacements||[],e(),this.cleanReplacements||[]);for(n=0;n<s.length;n+=1)t=t.replace(s[n][0],s[n][1]);if(!a)return this.pasteHTML(t);for(i=this.document.createElement("div"),i.innerHTML="<p>"+t.split("<br><br>").join("</p><p>")+"</p>",r=i.querySelectorAll("a,p,div,br"),n=0;n<r.length;n+=1)switch(o=r[n],o.innerHTML=o.innerHTML.replace(/\n/gi," "),o.nodeName.toLowerCase()){case"p":case"div":this.filterCommonBlocks(o);break;case"br":this.filterLineBreak(o)}this.pasteHTML(i.innerHTML)},pasteHTML:function(e,n){n=t.util.defaults({},n,{cleanAttrs:this.cleanAttrs,cleanTags:this.cleanTags,unwrapTags:this.unwrapTags});var r,i,o,a,s=this.document.createDocumentFragment();for(s.appendChild(this.document.createElement("body")),a=s.querySelector("body"),a.innerHTML=e,this.cleanupSpans(a),r=a.querySelectorAll("*"),o=0;o<r.length;o+=1)i=r[o],"a"===i.nodeName.toLowerCase()&&this.getEditorOption("targetBlank")&&t.util.setTargetBlank(i),t.util.cleanupAttrs(i,n.cleanAttrs),t.util.cleanupTags(i,n.cleanTags),t.util.unwrapTags(i,n.unwrapTags);t.util.insertHTMLCommand(this.document,a.innerHTML.replace(/&nbsp;/g," "))},isCommonBlock:function(t){return t&&("p"===t.nodeName.toLowerCase()||"div"===t.nodeName.toLowerCase())},filterCommonBlocks:function(t){/^\s*$/.test(t.textContent)&&t.parentNode&&t.parentNode.removeChild(t)},filterLineBreak:function(t){this.isCommonBlock(t.previousElementSibling)?this.removeWithParent(t):!this.isCommonBlock(t.parentNode)||t.parentNode.firstChild!==t&&t.parentNode.lastChild!==t?t.parentNode&&1===t.parentNode.childElementCount&&""===t.parentNode.textContent&&this.removeWithParent(t):this.removeWithParent(t)},removeWithParent:function(t){t&&t.parentNode&&(t.parentNode.parentNode&&1===t.parentNode.childElementCount?t.parentNode.parentNode.removeChild(t.parentNode):t.parentNode.removeChild(t))},cleanupSpans:function(e){var n,r,i,o=e.querySelectorAll(".replace-with"),a=function(t){return t&&"#text"!==t.nodeName&&"false"===t.getAttribute("contenteditable")};for(n=0;n<o.length;n+=1)r=o[n],i=this.document.createElement(r.classList.contains("bold")?"b":"i"),r.classList.contains("bold")&&r.classList.contains("italic")?i.innerHTML="<i>"+r.innerHTML+"</i>":i.innerHTML=r.innerHTML,r.parentNode.replaceChild(i,r);for(o=e.querySelectorAll("span"),n=0;n<o.length;n+=1){if(r=o[n],t.util.traverseUp(r,a))return!1;t.util.unwrap(r,this.document)}}});t.extensions.paste=a}(),function(){var e=t.Extension.extend({name:"placeholder",text:"Type your text",hideOnClick:!0,init:function(){t.Extension.prototype.init.apply(this,arguments),this.initPlaceholders(),this.attachEventHandlers()},initPlaceholders:function(){this.getEditorElements().forEach(this.initElement,this)},handleAddElement:function(t,e){this.initElement(e)},initElement:function(t){t.getAttribute("data-placeholder")||t.setAttribute("data-placeholder",this.text),this.updatePlaceholder(t)},destroy:function(){this.getEditorElements().forEach(this.cleanupElement,this)},handleRemoveElement:function(t,e){this.cleanupElement(e)},cleanupElement:function(t){t.getAttribute("data-placeholder")===this.text&&t.removeAttribute("data-placeholder")},showPlaceholder:function(e){e&&(t.util.isFF&&0===e.childNodes.length?(e.classList.add("medium-editor-placeholder-relative"),e.classList.remove("medium-editor-placeholder")):(e.classList.add("medium-editor-placeholder"),e.classList.remove("medium-editor-placeholder-relative")))},hidePlaceholder:function(t){t&&(t.classList.remove("medium-editor-placeholder"),t.classList.remove("medium-editor-placeholder-relative"))},updatePlaceholder:function(t,e){if(t.querySelector("img, blockquote, ul, ol, table")||""!==t.textContent.replace(/^\s+|\s+$/g,""))return this.hidePlaceholder(t);e||this.showPlaceholder(t)},attachEventHandlers:function(){this.hideOnClick&&this.subscribe("focus",this.handleFocus.bind(this)),this.subscribe("editableInput",this.handleInput.bind(this)),this.subscribe("blur",this.handleBlur.bind(this)),this.subscribe("addElement",this.handleAddElement.bind(this)),this.subscribe("removeElement",this.handleRemoveElement.bind(this))},handleInput:function(t,e){var n=this.hideOnClick&&e===this.base.getFocusedElement();this.updatePlaceholder(e,n)},handleFocus:function(t,e){this.hidePlaceholder(e)},handleBlur:function(t,e){this.updatePlaceholder(e)}});t.extensions.placeholder=e}(),function(){var e=t.Extension.extend({name:"toolbar",align:"center",allowMultiParagraphSelection:!0,buttons:["bold","italic","underline","anchor","h2","h3","quote"],diffLeft:0,diffTop:-10,firstButtonClass:"medium-editor-button-first",lastButtonClass:"medium-editor-button-last",standardizeSelectionStart:!1,static:!1,sticky:!1,stickyTopOffset:0,updateOnEmptySelection:!1,relativeContainer:null,init:function(){t.Extension.prototype.init.apply(this,arguments),this.initThrottledMethods(),this.relativeContainer?this.relativeContainer.appendChild(this.getToolbarElement()):this.getEditorOption("elementsContainer").appendChild(this.getToolbarElement())},forEachExtension:function(t,e){return this.base.extensions.forEach(function(n){if(n!==this)return t.apply(e||this,arguments)},this)},createToolbar:function(){var t=this.document.createElement("div");return t.id="medium-editor-toolbar-"+this.getEditorId(),t.className="medium-editor-toolbar",this.static?t.className+=" static-toolbar":this.relativeContainer?t.className+=" medium-editor-relative-toolbar":t.className+=" medium-editor-stalker-toolbar",t.appendChild(this.createToolbarButtons()),this.forEachExtension(function(e){e.hasForm&&t.appendChild(e.getForm())}),this.attachEventHandlers(),t},createToolbarButtons:function(){var e,n,r,i,o,a,s=this.document.createElement("ul");return s.id="medium-editor-toolbar-actions"+this.getEditorId(),s.className="medium-editor-toolbar-actions",s.style.display="block",this.buttons.forEach(function(r){"string"==typeof r?(o=r,a=null):(o=r.name,a=r),(i=this.base.addBuiltInExtension(o,a))&&"function"==typeof i.getButton&&(n=i.getButton(this.base),e=this.document.createElement("li"),t.util.isElement(n)?e.appendChild(n):e.innerHTML=n,s.appendChild(e))},this),r=s.querySelectorAll("button"),r.length>0&&(r[0].classList.add(this.firstButtonClass),r[r.length-1].classList.add(this.lastButtonClass)),s},destroy:function(){this.toolbar&&(this.toolbar.parentNode&&this.toolbar.parentNode.removeChild(this.toolbar),delete this.toolbar)},getInteractionElements:function(){return this.getToolbarElement()},getToolbarElement:function(){return this.toolbar||(this.toolbar=this.createToolbar()),this.toolbar},getToolbarActionsElement:function(){return this.getToolbarElement().querySelector(".medium-editor-toolbar-actions")},initThrottledMethods:function(){this.throttledPositionToolbar=t.util.throttle(function(){this.base.isActive&&this.positionToolbarIfShown()}.bind(this))},attachEventHandlers:function(){this.subscribe("blur",this.handleBlur.bind(this)),this.subscribe("focus",this.handleFocus.bind(this)),this.subscribe("editableClick",this.handleEditableClick.bind(this)),this.subscribe("editableKeyup",this.handleEditableKeyup.bind(this)),this.on(this.document.documentElement,"mouseup",this.handleDocumentMouseup.bind(this)),this.static&&this.sticky&&this.on(this.window,"scroll",this.handleWindowScroll.bind(this),!0),this.on(this.window,"resize",this.handleWindowResize.bind(this))},handleWindowScroll:function(){this.positionToolbarIfShown()},handleWindowResize:function(){this.throttledPositionToolbar()},handleDocumentMouseup:function(e){if(e&&e.target&&t.util.isDescendant(this.getToolbarElement(),e.target))return!1;this.checkState()},handleEditableClick:function(){setTimeout(function(){this.checkState()}.bind(this),0)},handleEditableKeyup:function(){this.checkState()},handleBlur:function(){clearTimeout(this.hideTimeout),clearTimeout(this.delayShowTimeout),this.hideTimeout=setTimeout(function(){this.hideToolbar()}.bind(this),1)},handleFocus:function(){this.checkState()},isDisplayed:function(){return this.getToolbarElement().classList.contains("medium-editor-toolbar-active")},showToolbar:function(){clearTimeout(this.hideTimeout),this.isDisplayed()||(this.getToolbarElement().classList.add("medium-editor-toolbar-active"),this.trigger("showToolbar",{},this.base.getFocusedElement()))},hideToolbar:function(){this.isDisplayed()&&(this.getToolbarElement().classList.remove("medium-editor-toolbar-active"),this.trigger("hideToolbar",{},this.base.getFocusedElement()))},isToolbarDefaultActionsDisplayed:function(){return"block"===this.getToolbarActionsElement().style.display},hideToolbarDefaultActions:function(){this.isToolbarDefaultActionsDisplayed()&&(this.getToolbarActionsElement().style.display="none")},showToolbarDefaultActions:function(){this.hideExtensionForms(),this.isToolbarDefaultActionsDisplayed()||(this.getToolbarActionsElement().style.display="block"),this.delayShowTimeout=this.base.delay(function(){this.showToolbar()}.bind(this))},hideExtensionForms:function(){this.forEachExtension(function(t){t.hasForm&&t.isDisplayed()&&t.hideForm()})},multipleBlockElementsSelected:function(){var e=/<[^\/>][^>]*><\/[^>]+>/gim,n=new RegExp("<("+t.util.blockContainerElementNames.join("|")+")[^>]*>","g"),r=t.selection.getSelectionHtml(this.document).replace(e,""),i=r.match(n);return!!i&&i.length>1},modifySelection:function(){var e=this.window.getSelection(),n=e.getRangeAt(0);if(this.standardizeSelectionStart&&n.startContainer.nodeValue&&n.startOffset===n.startContainer.nodeValue.length){var r=t.util.findAdjacentTextNodeWithContent(t.selection.getSelectionElement(this.window),n.startContainer,this.document);if(r){for(var i=0;0===r.nodeValue.substr(i,1).trim().length;)i+=1;n=t.selection.select(this.document,r,i,n.endContainer,n.endOffset)}}},checkState:function(){if(!this.base.preventSelectionUpdates){if(!this.base.getFocusedElement()||t.selection.selectionInContentEditableFalse(this.window))return this.hideToolbar();var e=t.selection.getSelectionElement(this.window);return!e||-1===this.getEditorElements().indexOf(e)||e.getAttribute("data-disable-toolbar")?this.hideToolbar():this.updateOnEmptySelection&&this.static?this.showAndUpdateToolbar():!t.selection.selectionContainsContent(this.document)||!1===this.allowMultiParagraphSelection&&this.multipleBlockElementsSelected()?this.hideToolbar():void this.showAndUpdateToolbar()}},showAndUpdateToolbar:function(){this.modifySelection(),this.setToolbarButtonStates(),this.trigger("positionToolbar",{},this.base.getFocusedElement()),this.showToolbarDefaultActions(),this.setToolbarPosition()},setToolbarButtonStates:function(){this.forEachExtension(function(t){"function"==typeof t.isActive&&"function"==typeof t.setInactive&&t.setInactive()}),this.checkActiveButtons()},checkActiveButtons:function(){var e,n=[],r=null,i=t.selection.getSelectionRange(this.document),o=function(t){"function"==typeof t.checkState?t.checkState(e):"function"==typeof t.isActive&&"function"==typeof t.isAlreadyApplied&&"function"==typeof t.setActive&&!t.isActive()&&t.isAlreadyApplied(e)&&t.setActive()};if(i&&(this.forEachExtension(function(t){if("function"==typeof t.queryCommandState&&null!==(r=t.queryCommandState()))return void(r&&"function"==typeof t.setActive&&t.setActive());n.push(t)}),e=t.selection.getSelectedParentElement(i),this.getEditorElements().some(function(n){return t.util.isDescendant(n,e,!0)})))for(;e&&(n.forEach(o),!t.util.isMediumEditorElement(e));)e=e.parentNode},positionToolbarIfShown:function(){this.isDisplayed()&&this.setToolbarPosition()},setToolbarPosition:function(){var t=this.base.getFocusedElement(),e=this.window.getSelection();if(!t)return this;!this.static&&e.isCollapsed||(this.showToolbar(),this.relativeContainer||(this.static?this.positionStaticToolbar(t):this.positionToolbar(e)),this.trigger("positionedToolbar",{},this.base.getFocusedElement()))},positionStaticToolbar:function(t){this.getToolbarElement().style.left="0";var e,n=this.document.documentElement&&this.document.documentElement.scrollTop||this.document.body.scrollTop,r=this.window.innerWidth,i=this.getToolbarElement(),o=t.getBoundingClientRect(),a=o.top+n,s=o.left+o.width/2,u=i.offsetHeight,c=i.offsetWidth,l=c/2;switch(this.sticky?n>a+t.offsetHeight-u-this.stickyTopOffset?(i.style.top=a+t.offsetHeight-u+"px",i.classList.remove("medium-editor-sticky-toolbar")):n>a-u-this.stickyTopOffset?(i.classList.add("medium-editor-sticky-toolbar"),i.style.top=this.stickyTopOffset+"px"):(i.classList.remove("medium-editor-sticky-toolbar"),i.style.top=a-u+"px"):i.style.top=a-u+"px",this.align){case"left":e=o.left;break;case"right":e=o.right-c;break;case"center":e=s-l}e<0?e=0:e+c>r&&(e=r-Math.ceil(c)-1),i.style.left=e+"px"},positionToolbar:function(t){this.getToolbarElement().style.left="0",this.getToolbarElement().style.right="initial";var e=t.getRangeAt(0),n=e.getBoundingClientRect();(!n||0===n.height&&0===n.width&&e.startContainer===e.endContainer)&&(n=1===e.startContainer.nodeType&&e.startContainer.querySelector("img")?e.startContainer.querySelector("img").getBoundingClientRect():e.startContainer.getBoundingClientRect());var r,i,o=this.window.innerWidth,a=this.getToolbarElement(),s=a.offsetHeight,u=a.offsetWidth,c=u/2,l=this.diffLeft-c,f=this.getEditorOption("elementsContainer"),d=["absolute","fixed"].indexOf(window.getComputedStyle(f).getPropertyValue("position"))>-1,h={},p={};d?(i=f.getBoundingClientRect(),["top","left"].forEach(function(t){p[t]=n[t]-i[t]}),p.width=n.width,p.height=n.height,n=p,o=i.width,h.top=f.scrollTop):h.top=this.window.pageYOffset,r=n.left+n.width/2,h.top+=n.top-s,n.top<50?(a.classList.add("medium-toolbar-arrow-over"),a.classList.remove("medium-toolbar-arrow-under"),h.top+=50+n.height-this.diffTop):(a.classList.add("medium-toolbar-arrow-under"),a.classList.remove("medium-toolbar-arrow-over"),h.top+=this.diffTop),r<c?(h.left=l+c,h.right="initial"):o-r<c?(h.left="auto",h.right=0):(h.left=l+r,h.right="initial"),["top","left","right"].forEach(function(t){a.style[t]=h[t]+(isNaN(h[t])?"":"px")})}});t.extensions.toolbar=e}(),function(){var e=t.Extension.extend({init:function(){t.Extension.prototype.init.apply(this,arguments),this.subscribe("editableDrag",this.handleDrag.bind(this)),this.subscribe("editableDrop",this.handleDrop.bind(this))},handleDrag:function(t){t.preventDefault(),t.dataTransfer.dropEffect="copy","dragover"===t.type?t.target.classList.add("medium-editor-dragover"):"dragleave"===t.type&&t.target.classList.remove("medium-editor-dragover")},handleDrop:function(e){var n;e.preventDefault(),e.stopPropagation(),e.dataTransfer.files&&(n=Array.prototype.slice.call(e.dataTransfer.files,0),n.some(function(e){if(e.type.match("image")){var n,r;n=new FileReader,n.readAsDataURL(e),r="medium-img-"+ +new Date,t.util.insertHTMLCommand(this.document,'<img class="medium-editor-image-loading" id="'+r+'" />'),n.onload=function(){var t=this.document.getElementById(r);t&&(t.removeAttribute("id"),t.removeAttribute("class"),t.src=n.result)}.bind(this)}}.bind(this))),e.target.classList.remove("medium-editor-dragover")}});t.extensions.imageDragging=e}(),function(){function e(e){var n=t.selection.getSelectionStart(this.options.ownerDocument),r=n.textContent,i=t.selection.getCaretOffsets(n);(void 0===r[i.left-1]||""===r[i.left-1].trim()||void 0!==r[i.left]&&""===r[i.left].trim())&&e.preventDefault()}function n(e,n){if(this.options.disableReturn||n.getAttribute("data-disable-return"))e.preventDefault();else if(this.options.disableDoubleReturn||n.getAttribute("data-disable-double-return")){var r=t.selection.getSelectionStart(this.options.ownerDocument);(r&&""===r.textContent.trim()&&"li"!==r.nodeName.toLowerCase()||r.previousElementSibling&&"br"!==r.previousElementSibling.nodeName.toLowerCase()&&""===r.previousElementSibling.textContent.trim())&&e.preventDefault()}}function r(e){var n=t.selection.getSelectionStart(this.options.ownerDocument);"pre"===(n&&n.nodeName.toLowerCase())&&(e.preventDefault(),t.util.insertHTMLCommand(this.options.ownerDocument," ")),t.util.isListItem(n)&&(e.preventDefault(),e.shiftKey?this.options.ownerDocument.execCommand("outdent",!1,null):this.options.ownerDocument.execCommand("indent",!1,null))}function i(e){var n,r=t.selection.getSelectionStart(this.options.ownerDocument),i=r.nodeName.toLowerCase(),o=/^(\s+|<br\/?>)?$/i,a=/h\d/i;t.util.isKey(e,[t.util.keyCode.BACKSPACE,t.util.keyCode.ENTER])&&r.previousElementSibling&&a.test(i)&&0===t.selection.getCaretOffsets(r).left?t.util.isKey(e,t.util.keyCode.BACKSPACE)&&o.test(r.previousElementSibling.innerHTML)?(r.previousElementSibling.parentNode.removeChild(r.previousElementSibling),e.preventDefault()):!this.options.disableDoubleReturn&&t.util.isKey(e,t.util.keyCode.ENTER)&&(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.previousElementSibling.parentNode.insertBefore(n,r),e.preventDefault()):t.util.isKey(e,t.util.keyCode.DELETE)&&r.nextElementSibling&&r.previousElementSibling&&!a.test(i)&&o.test(r.innerHTML)&&a.test(r.nextElementSibling.nodeName.toLowerCase())?(t.selection.moveCursor(this.options.ownerDocument,r.nextElementSibling),r.previousElementSibling.parentNode.removeChild(r),e.preventDefault()):t.util.isKey(e,t.util.keyCode.BACKSPACE)&&"li"===i&&o.test(r.innerHTML)&&!r.previousElementSibling&&!r.parentElement.previousElementSibling&&r.nextElementSibling&&"li"===r.nextElementSibling.nodeName.toLowerCase()?(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.parentElement.parentElement.insertBefore(n,r.parentElement),t.selection.moveCursor(this.options.ownerDocument,n),r.parentElement.removeChild(r),e.preventDefault()):t.util.isKey(e,t.util.keyCode.BACKSPACE)&&!1!==t.util.getClosestTag(r,"blockquote")&&0===t.selection.getCaretOffsets(r).left?(e.preventDefault(),t.util.execFormatBlock(this.options.ownerDocument,"p")):t.util.isKey(e,t.util.keyCode.ENTER)&&!1!==t.util.getClosestTag(r,"blockquote")&&0===t.selection.getCaretOffsets(r).right?(n=this.options.ownerDocument.createElement("p"),n.innerHTML="<br>",r.parentElement.insertBefore(n,r.nextSibling),t.selection.moveCursor(this.options.ownerDocument,n),e.preventDefault()):t.util.isKey(e,t.util.keyCode.BACKSPACE)&&t.util.isMediumEditorElement(r.parentElement)&&!r.previousElementSibling&&r.nextElementSibling&&o.test(r.innerHTML)&&(e.preventDefault(),t.selection.moveCursor(this.options.ownerDocument,r.nextSibling),r.parentElement.removeChild(r))}function o(e){var n,r=t.selection.getSelectionStart(this.options.ownerDocument);r&&(t.util.isMediumEditorElement(r)&&0===r.children.length&&!t.util.isBlockContainer(r)&&this.options.ownerDocument.execCommand("formatBlock",!1,"p"),!t.util.isKey(e,t.util.keyCode.ENTER)||t.util.isListItem(r)||t.util.isBlockContainer(r)||(n=r.nodeName.toLowerCase(),"a"===n?this.options.ownerDocument.execCommand("unlink",!1,null):e.shiftKey||e.ctrlKey||this.options.ownerDocument.execCommand("formatBlock",!1,"p")))}function a(t,e){var n=e.parentNode.querySelector('textarea[medium-editor-textarea-id="'+e.getAttribute("medium-editor-textarea-id")+'"]');n&&(n.value=e.innerHTML.trim())}function s(t){t._mediumEditors||(t._mediumEditors=[null]),this.id||(this.id=t._mediumEditors.length),t._mediumEditors[this.id]=this}function u(t){t._mediumEditors&&t._mediumEditors[this.id]&&(t._mediumEditors[this.id]=null)}function c(e,n,r){var i=[];if(e||(e=[]),"string"==typeof e&&(e=n.querySelectorAll(e)),t.util.isElement(e)&&(e=[e]),r)for(var o=0;o<e.length;o++){var a=e[o];!t.util.isElement(a)||a.getAttribute("data-medium-editor-element")||a.getAttribute("medium-editor-textarea-id")||i.push(a)}else i=Array.prototype.slice.apply(e);return i}function l(t){var e=t.parentNode.querySelector('textarea[medium-editor-textarea-id="'+t.getAttribute("medium-editor-textarea-id")+'"]');e&&(e.classList.remove("medium-editor-hidden"),e.removeAttribute("medium-editor-textarea-id")),t.parentNode&&t.parentNode.removeChild(t)}function f(t,e){return Object.keys(e).forEach(function(n){void 0===t[n]&&(t[n]=e[n])}),t}function d(t,e,n){return t=f(t,{window:n.options.contentWindow,document:n.options.ownerDocument,base:n}),"function"==typeof t.init&&t.init(),t.name||(t.name=e),t}function h(){return!this.elements.every(function(t){return!!t.getAttribute("data-disable-toolbar")})&&!1!==this.options.toolbar}function p(){return!!h.call(this)&&!1!==this.options.anchorPreview}function v(){return!1!==this.options.placeholder}function y(){return!1!==this.options.autoLink}function m(){return!1!==this.options.imageDragging}function b(){return!1!==this.options.keyboardCommands}function g(){return!this.options.extensions.imageDragging}function w(t){for(var e=this.options.ownerDocument.createElement("div"),n=Date.now(),r="medium-editor-"+n,i=t.attributes;this.options.ownerDocument.getElementById(r);)n++,r="medium-editor-"+n;e.className=t.className,e.id=r,e.innerHTML=t.value,t.setAttribute("medium-editor-textarea-id",r);for(var o=0,a=i.length;o<a;o++)e.hasAttribute(i[o].nodeName)||e.setAttribute(i[o].nodeName,i[o].nodeValue);return t.form&&this.on(t.form,"reset",function(t){t.defaultPrevented||this.resetContent(this.options.ownerDocument.getElementById(r))}.bind(this)),t.classList.add("medium-editor-hidden"),t.parentNode.insertBefore(e,t),e}function _(e,r){if(!e.getAttribute("data-medium-editor-element")){"textarea"===e.nodeName.toLowerCase()&&(e=w.call(this,e),this.instanceHandleEditableInput||(this.instanceHandleEditableInput=a.bind(this),this.subscribe("editableInput",this.instanceHandleEditableInput))),this.options.disableEditing||e.getAttribute("data-disable-editing")||(e.setAttribute("contentEditable",!0),e.setAttribute("spellcheck",this.options.spellcheck)),this.instanceHandleEditableKeydownEnter||(e.getAttribute("data-disable-return")||e.getAttribute("data-disable-double-return"))&&(this.instanceHandleEditableKeydownEnter=n.bind(this),this.subscribe("editableKeydownEnter",this.instanceHandleEditableKeydownEnter)),this.options.disableReturn||e.getAttribute("data-disable-return")||this.on(e,"keyup",o.bind(this));var i=t.util.guid();e.setAttribute("data-medium-editor-element",!0),e.classList.add("medium-editor-element"),e.setAttribute("role","textbox"),e.setAttribute("aria-multiline",!0),e.setAttribute("data-medium-editor-editor-index",r),e.setAttribute("medium-editor-index",i),j[i]=e.innerHTML,this.events.attachAllEventsToElement(e)}return e}function k(){this.subscribe("editableKeydownTab",r.bind(this)),this.subscribe("editableKeydownDelete",i.bind(this)),this.subscribe("editableKeydownEnter",i.bind(this)),this.options.disableExtraSpaces&&this.subscribe("editableKeydownSpace",e.bind(this)),this.instanceHandleEditableKeydownEnter||(this.options.disableReturn||this.options.disableDoubleReturn)&&(this.instanceHandleEditableKeydownEnter=n.bind(this),this.subscribe("editableKeydownEnter",this.instanceHandleEditableKeydownEnter))}function O(){if(this.extensions=[],Object.keys(this.options.extensions).forEach(function(t){"toolbar"!==t&&this.options.extensions[t]&&this.extensions.push(d(this.options.extensions[t],t,this))},this),g.call(this)){var e=this.options.fileDragging;e||(e={},m.call(this)||(e.allowedTypes=[])),this.addBuiltInExtension("fileDragging",e)}var n={paste:!0,"anchor-preview":p.call(this),autoLink:y.call(this),keyboardCommands:b.call(this),placeholder:v.call(this)};Object.keys(n).forEach(function(t){n[t]&&this.addBuiltInExtension(t)},this);var r=this.options.extensions.toolbar;if(!r&&h.call(this)){var i=t.util.extend({},this.options.toolbar,{allowMultiParagraphSelection:this.options.allowMultiParagraphSelection});r=new t.extensions.toolbar(i)}r&&this.extensions.push(d(r,"toolbar",this))}function E(e,n){var r=[["allowMultiParagraphSelection","toolbar.allowMultiParagraphSelection"]];return n&&r.forEach(function(e){n.hasOwnProperty(e[0])&&void 0!==n[e[0]]&&t.util.deprecated(e[0],e[1],"v6.0.0")}),t.util.defaults({},n,e)}function x(e,n){var r,i,o=/^append-(.+)$/gi,a=/justify([A-Za-z]*)$/g;if(r=o.exec(e))return t.util.execFormatBlock(this.options.ownerDocument,r[1]);if("fontSize"===e)return n.size&&t.util.deprecated(".size option for fontSize command",".value","6.0.0"),i=n.value||n.size,this.options.ownerDocument.execCommand("fontSize",!1,i);if("fontName"===e)return n.name&&t.util.deprecated(".name option for fontName command",".value","6.0.0"),i=n.value||n.name,this.options.ownerDocument.execCommand("fontName",!1,i);if("createLink"===e)return this.createLink(n);if("image"===e){var s=this.options.contentWindow.getSelection().toString().trim();return this.options.ownerDocument.execCommand("insertImage",!1,s)}if("html"===e){var u=this.options.contentWindow.getSelection().toString().trim();return t.util.insertHTMLCommand(this.options.ownerDocument,u)}if(a.exec(e)){var c=this.options.ownerDocument.execCommand(e,!1,null),l=t.selection.getSelectedParentElement(t.selection.getSelectionRange(this.options.ownerDocument));return l&&C.call(this,t.util.getTopBlockContainer(l)),c}return i=n&&n.value,this.options.ownerDocument.execCommand(e,!1,i)}function C(e){if(e){var n,r=Array.prototype.slice.call(e.childNodes).filter(function(t){var e="div"===t.nodeName.toLowerCase();return e&&!n&&(n=t.style.textAlign),e});r.length&&(this.saveSelection(),r.forEach(function(e){if(e.style.textAlign===n){var r=e.lastChild;if(r){t.util.unwrap(e,this.options.ownerDocument);var i=this.options.ownerDocument.createElement("BR");r.parentNode.insertBefore(i,r.nextSibling)}}},this),e.style.textAlign=n,this.restoreSelection())}}var j={};t.prototype={init:function(t,e){return this.options=E.call(this,this.defaults,e),this.origElements=t,this.options.elementsContainer||(this.options.elementsContainer=this.options.ownerDocument.body),this.setup()},setup:function(){this.isActive||(s.call(this,this.options.contentWindow),this.events=new t.Events(this),this.elements=[],this.addElements(this.origElements),0!==this.elements.length&&(this.isActive=!0,O.call(this),k.call(this)))},destroy:function(){this.isActive&&(this.isActive=!1,this.extensions.forEach(function(t){"function"==typeof t.destroy&&t.destroy()},this),this.events.destroy(),this.elements.forEach(function(t){this.options.spellcheck&&(t.innerHTML=t.innerHTML),t.removeAttribute("contentEditable"),t.removeAttribute("spellcheck"),t.removeAttribute("data-medium-editor-element"),t.classList.remove("medium-editor-element"),t.removeAttribute("role"),t.removeAttribute("aria-multiline"),t.removeAttribute("medium-editor-index"),t.removeAttribute("data-medium-editor-editor-index"),t.getAttribute("medium-editor-textarea-id")&&l(t)},this),this.elements=[],this.instanceHandleEditableKeydownEnter=null,this.instanceHandleEditableInput=null,u.call(this,this.options.contentWindow))},on:function(t,e,n,r){return this.events.attachDOMEvent(t,e,n,r),this},off:function(t,e,n,r){return this.events.detachDOMEvent(t,e,n,r),this},subscribe:function(t,e){return this.events.attachCustomEvent(t,e),this},unsubscribe:function(t,e){return this.events.detachCustomEvent(t,e),this},trigger:function(t,e,n){return this.events.triggerCustomEvent(t,e,n),this},delay:function(t){var e=this;return setTimeout(function(){e.isActive&&t()},this.options.delay)},serialize:function(){var t,e,n={},r=this.elements.length;for(t=0;t<r;t+=1)e=""!==this.elements[t].id?this.elements[t].id:"element-"+t,n[e]={value:this.elements[t].innerHTML.trim()};return n},getExtensionByName:function(t){var e;return this.extensions&&this.extensions.length&&this.extensions.some(function(n){return n.name===t&&(e=n,!0)}),e},addBuiltInExtension:function(e,n){var r,i=this.getExtensionByName(e);if(i)return i;switch(e){case"anchor":r=t.util.extend({},this.options.anchor,n),i=new t.extensions.anchor(r);break;case"anchor-preview":i=new t.extensions.anchorPreview(this.options.anchorPreview);break;case"autoLink":i=new t.extensions.autoLink;break;case"fileDragging":i=new t.extensions.fileDragging(n);break;case"fontname":i=new t.extensions.fontName(this.options.fontName);break;case"fontsize":i=new t.extensions.fontSize(n);break;case"keyboardCommands":i=new t.extensions.keyboardCommands(this.options.keyboardCommands);break;case"paste":i=new t.extensions.paste(this.options.paste);break;case"placeholder":i=new t.extensions.placeholder(this.options.placeholder);break;default:t.extensions.button.isBuiltInButton(e)&&(n?(r=t.util.defaults({},n,t.extensions.button.prototype.defaults[e]),i=new t.extensions.button(r)):i=new t.extensions.button(e))}return i&&this.extensions.push(d(i,e,this)),i},stopSelectionUpdates:function(){this.preventSelectionUpdates=!0},startSelectionUpdates:function(){this.preventSelectionUpdates=!1},checkSelection:function(){var t=this.getExtensionByName("toolbar");return t&&t.checkState(),this},queryCommandState:function(t){var e,n=/^full-(.+)$/gi,r=null;(e=n.exec(t))&&(t=e[1]);try{r=this.options.ownerDocument.queryCommandState(t)}catch(t){r=null}return r},execAction:function(e,n){var r,i,o=/^full-(.+)$/gi;return r=o.exec(e),r?(this.saveSelection(),this.selectAllContents(),i=x.call(this,r[1],n),this.restoreSelection()):i=x.call(this,e,n),"insertunorderedlist"!==e&&"insertorderedlist"!==e||t.util.cleanListDOM(this.options.ownerDocument,this.getSelectedParentElement()),this.checkSelection(),i},getSelectedParentElement:function(e){return void 0===e&&(e=this.options.contentWindow.getSelection().getRangeAt(0)),t.selection.getSelectedParentElement(e)},selectAllContents:function(){var e=t.selection.getSelectionElement(this.options.contentWindow);if(e){for(;1===e.children.length;)e=e.children[0];this.selectElement(e)}},selectElement:function(e){t.selection.selectNode(e,this.options.ownerDocument);var n=t.selection.getSelectionElement(this.options.contentWindow);n&&this.events.focusElement(n)},getFocusedElement:function(){var t;return this.elements.some(function(e){return!t&&e.getAttribute("data-medium-focused")&&(t=e),!!t},this),t},exportSelection:function(){var e=t.selection.getSelectionElement(this.options.contentWindow),n=this.elements.indexOf(e),r=null;return n>=0&&(r=t.selection.exportSelection(e,this.options.ownerDocument)),null!==r&&0!==n&&(r.editableElementIndex=n),r},saveSelection:function(){this.selectionState=this.exportSelection()},importSelection:function(e,n){if(e){var r=this.elements[e.editableElementIndex||0];t.selection.importSelection(e,r,this.options.ownerDocument,n)}},restoreSelection:function(){this.importSelection(this.selectionState)},createLink:function(e){var n,r=t.selection.getSelectionElement(this.options.contentWindow),i={};if(-1!==this.elements.indexOf(r)){try{if(this.events.disableCustomEvent("editableInput"),e.url&&t.util.deprecated(".url option for createLink",".value","6.0.0"),(n=e.url||e.value)&&n.trim().length>0){var o=this.options.contentWindow.getSelection();if(o){var a,s,u,c,l=o.getRangeAt(0),f=l.commonAncestorContainer;if(3===l.endContainer.nodeType&&3!==l.startContainer.nodeType&&0===l.startOffset&&l.startContainer.firstChild===l.endContainer&&(f=l.endContainer),s=t.util.getClosestBlockContainer(l.startContainer),u=t.util.getClosestBlockContainer(l.endContainer),3!==f.nodeType&&0!==f.textContent.length&&s===u){var d=s||r,h=this.options.ownerDocument.createDocumentFragment();this.execAction("unlink"),a=this.exportSelection(),h.appendChild(d.cloneNode(!0)),r===d?t.selection.select(this.options.ownerDocument,d.firstChild,0,d.lastChild,3===d.lastChild.nodeType?d.lastChild.nodeValue.length:d.lastChild.childNodes.length):t.selection.select(this.options.ownerDocument,d,0,d,d.childNodes.length);var p=this.exportSelection();c=t.util.findOrCreateMatchingTextNodes(this.options.ownerDocument,h,{start:a.start-p.start,end:a.end-p.start,editableElementIndex:a.editableElementIndex}),0===c.length&&(h=this.options.ownerDocument.createDocumentFragment(),h.appendChild(f.cloneNode(!0)),c=[h.firstChild.firstChild,h.firstChild.lastChild]),t.util.createLink(this.options.ownerDocument,c,n.trim());var v=(h.firstChild.innerHTML.match(/^\s+/)||[""])[0].length;t.util.insertHTMLCommand(this.options.ownerDocument,h.firstChild.innerHTML.replace(/^\s+/,"")),a.start-=v,a.end-=v,this.importSelection(a)}else this.options.ownerDocument.execCommand("createLink",!1,n);this.options.targetBlank||"_blank"===e.target?t.util.setTargetBlank(t.selection.getSelectionStart(this.options.ownerDocument),n):t.util.removeTargetBlank(t.selection.getSelectionStart(this.options.ownerDocument),n),e.buttonClass&&t.util.addClassToAnchors(t.selection.getSelectionStart(this.options.ownerDocument),e.buttonClass)}}if(this.options.targetBlank||"_blank"===e.target||e.buttonClass){i=this.options.ownerDocument.createEvent("HTMLEvents"),i.initEvent("input",!0,!0,this.options.contentWindow);for(var y=0,m=this.elements.length;y<m;y+=1)this.elements[y].dispatchEvent(i)}}finally{this.events.enableCustomEvent("editableInput")}this.events.triggerCustomEvent("editableInput",i,r)}},cleanPaste:function(t){this.getExtensionByName("paste").cleanPaste(t)},pasteHTML:function(t,e){this.getExtensionByName("paste").pasteHTML(t,e)},setContent:function(t,e){if(e=e||0,this.elements[e]){var n=this.elements[e];n.innerHTML=t,this.checkContentChanged(n)}},getContent:function(t){return t=t||0,this.elements[t]?this.elements[t].innerHTML.trim():null},checkContentChanged:function(e){e=e||t.selection.getSelectionElement(this.options.contentWindow),this.events.updateInput(e,{target:e,currentTarget:e})},resetContent:function(t){if(t){var e=this.elements.indexOf(t);return void(-1!==e&&this.setContent(j[t.getAttribute("medium-editor-index")],e))}this.elements.forEach(function(t,e){this.setContent(j[t.getAttribute("medium-editor-index")],e)},this)},addElements:function(t){var e=c(t,this.options.ownerDocument,!0);if(0===e.length)return!1;e.forEach(function(t){t=_.call(this,t,this.id),this.elements.push(t),this.trigger("addElement",{target:t,currentTarget:t},t)},this)},removeElements:function(t){var e=c(t,this.options.ownerDocument),n=e.map(function(t){return t.getAttribute("medium-editor-textarea-id")&&t.parentNode?t.parentNode.querySelector('div[medium-editor-textarea-id="'+t.getAttribute("medium-editor-textarea-id")+'"]'):t});this.elements=this.elements.filter(function(t){return-1===n.indexOf(t)||(this.events.cleanupElement(t),t.getAttribute("medium-editor-textarea-id")&&l(t),this.trigger("removeElement",{target:t,currentTarget:t},t),!1)},this)}},t.getEditorFromElement=function(t){var e=t.getAttribute("data-medium-editor-editor-index"),n=t&&t.ownerDocument&&(t.ownerDocument.defaultView||t.ownerDocument.parentWindow);return n&&n._mediumEditors&&n._mediumEditors[e]?n._mediumEditors[e]:null}}(),function(){t.prototype.defaults={activeButtonClass:"medium-editor-button-active",buttonLabels:!1,delay:0,disableReturn:!1,disableDoubleReturn:!1,disableExtraSpaces:!1,disableEditing:!1,autoLink:!1,elementsContainer:!1,contentWindow:window,ownerDocument:document,targetBlank:!1,extensions:{},spellcheck:!0}}(),t.parseVersionString=function(t){var e=t.split("-"),n=e[0].split("."),r=e.length>1?e[1]:"";return{major:parseInt(n[0],10),minor:parseInt(n[1],10),revision:parseInt(n[2],10),preRelease:r,toString:function(){return[n[0],n[1],n[2]].join(".")+(r?"-"+r:"")}}},t.version=t.parseVersionString.call(this,{version:"5.23.2"}.version),t}())}).call(e,n(91))},function(t,e,n){"use strict";function r(t){if(!(void 0!==t.label&&/\S{1}/.test(t.label)&&void 0!==t.start&&/\S{1}/.test(t.start)&&void 0!==t.end&&/\S{1}/.test(t.end)||void 0!==t.label&&/\S{1}/.test(t.label)&&void 0!==t.action&&/\S{1}/.test(t.action)))return void console.error('[Custom-Button] You need to specify "label", "start" and "end" OR "label" and "action"');t.start=void 0===t.start?"":t.start,t.end=void 0===t.end?"":t.end;var e=this;this.options=t,this.button=document.createElement("button"),this.button.className="medium-editor-action",this.button.innerHTML=t.label,this.button.onclick=function(){var n=i(),r=window.getSelection(),o=r.anchorNode.parentElement;void 0===t.start||-1==n.indexOf(t.start)&&-1==n.indexOf(t.end)?(void 0!=t.action&&(n=t.action(n,!0,o)),n=t.start+n+t.end):(void 0!=t.action&&(n=t.action(n,!1,o)),n=String(n).split(t.start).join(""),n=String(n).split(t.end).join(""));var a,s;if(r.getRangeAt&&r.rangeCount){if(a=window.getSelection().getRangeAt(0),a.deleteContents(),a.createContextualFragment)s=a.createContextualFragment(n);else{var u=document.createElement("div");for(u.innerHTML=n,s=document.createDocumentFragment();child=u.firstChild;)s.appendChild(child)}var c=s.firstChild,l=s.lastChild;a.insertNode(s),c&&(a.setStartBefore(c),a.setEndAfter(l)),r.removeAllRanges(),r.addRange(a)}e.base.checkContentChanged()}}function i(){var t,e="";if(void 0!==window.getSelection){if(t=window.getSelection(),t.rangeCount){for(var n=document.createElement("div"),r=0,i=t.rangeCount;r<i;++r)n.appendChild(t.getRangeAt(r).cloneContents());e=n.innerHTML}}else void 0!==document.selection&&"Text"==document.selection.type&&(e=document.selection.createRange().htmlText);return e}r.prototype.getButton=function(){return this.button},r.prototype.checkState=function(t){var e=i();""!=this.options.start&&e.indexOf(this.options.start)>-1&&e.indexOf(this.options.end)>-1?this.button.classList.add("medium-editor-button-active"):this.button.classList.remove("medium-editor-button-active")},void 0!==t&&t.exports&&(e=t.exports=r),e.MediumButton=r},function(t,e,n){"use strict";function r(t,e){var n=document.createElement("div");n.classList.add("ql-svt-container"),t.appendChild(n);var r=new a.a(n,i());return r.clipboard.dangerouslyPasteHTML(e.getContent()),r.history.clear(),r.on("text-change",function(){e.setContent(Object(s.a)(r))}),r.enable(),r}function i(){return{formats:["blockquote","bold","code","code-block","header","image","italic","link","list","script","strike","target","underline","video"],modules:{scrivitoApi:!0,scrivitoInternalLink:!0,scrivitoLinkTooltip:!0,toolbar:{container:["bold","italic",window.ScrivitoEditors&&window.ScrivitoEditors._config&&window.ScrivitoEditors._config.showHtmlEditorCodeButton?"code":void 0,"link",{header:2},{header:3},{list:"bullet"},{list:"ordered"}]}},placeholder:"Click to edit",readOnly:!0,theme:"scrivito"}}var o=n(73),a=n.n(o),s=n(331),u=n(332),c=(n(333),n(334));n(335),n(336);Object(u.a)(),Object(c.a)(),e.a=r},function(t,e,n){"use strict";(function(t){function r(){return o.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function i(t,e){if(r()<e)throw new RangeError("Invalid typed array length");return o.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=o.prototype):(null===t&&(t=new o(e)),t.length=e),t}function o(t,e,n){if(!(o.TYPED_ARRAY_SUPPORT||this instanceof o))return new o(t,e,n);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return c(this,t)}return a(this,t,e,n)}function a(t,e,n,r){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?d(t,e,n,r):"string"==typeof e?l(t,e,n):h(t,e)}function s(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function u(t,e,n,r){return s(e),e<=0?i(t,e):void 0!==n?"string"==typeof r?i(t,e).fill(n,r):i(t,e).fill(n):i(t,e)}function c(t,e){if(s(e),t=i(t,e<0?0:0|p(e)),!o.TYPED_ARRAY_SUPPORT)for(var n=0;n<e;++n)t[n]=0;return t}function l(t,e,n){if("string"==typeof n&&""!==n||(n="utf8"),!o.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|y(e,n);t=i(t,r);var a=t.write(e,n);return a!==r&&(t=t.slice(0,a)),t}function f(t,e){var n=e.length<0?0:0|p(e.length);t=i(t,n);for(var r=0;r<n;r+=1)t[r]=255&e[r];return t}function d(t,e,n,r){if(e.byteLength,n<0||e.byteLength<n)throw new RangeError("'offset' is out of bounds");if(e.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");return e=void 0===n&&void 0===r?new Uint8Array(e):void 0===r?new Uint8Array(e,n):new Uint8Array(e,n,r),o.TYPED_ARRAY_SUPPORT?(t=e,t.__proto__=o.prototype):t=f(t,e),t}function h(t,e){if(o.isBuffer(e)){var n=0|p(e.length);return t=i(t,n),0===t.length?t:(e.copy(t,0,0,n),t)}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||$(e.length)?i(t,0):f(t,e);if("Buffer"===e.type&&X(e.data))return f(t,e.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function p(t){if(t>=r())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r().toString(16)+" bytes");return 0|t}function v(t){return+t!=t&&(t=0),o.alloc(+t)}function y(t,e){if(o.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var r=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return W(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return Q(t).length;default:if(r)return W(t).length;e=(""+e).toLowerCase(),r=!0}}function m(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";for(t||(t="utf8");;)switch(t){case"hex":return P(this,e,n);case"utf8":case"utf-8":return S(this,e,n);case"ascii":return T(this,e,n);case"latin1":case"binary":return N(this,e,n);case"base64":return j(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return L(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function b(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function g(t,e,n,r,i){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof e&&(e=o.from(e,r)),o.isBuffer(e))return 0===e.length?-1:w(t,e,n,r,i);if("number"==typeof e)return e&=255,o.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):w(t,[e],n,r,i);throw new TypeError("val must be string, number or Buffer")}function w(t,e,n,r,i){function o(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}var a=1,s=t.length,u=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;a=2,s/=2,u/=2,n/=2}var c;if(i){var l=-1;for(c=n;c<s;c++)if(o(t,c)===o(e,-1===l?0:c-l)){if(-1===l&&(l=c),c-l+1===u)return l*a}else-1!==l&&(c-=c-l),l=-1}else for(n+u>s&&(n=s-u),c=n;c>=0;c--){for(var f=!0,d=0;d<u;d++)if(o(t,c+d)!==o(e,d)){f=!1;break}if(f)return c}return-1}function _(t,e,n,r){n=Number(n)||0;var i=t.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=e.length;if(o%2!=0)throw new TypeError("Invalid hex string");r>o/2&&(r=o/2);for(var a=0;a<r;++a){var s=parseInt(e.substr(2*a,2),16);if(isNaN(s))return a;t[n+a]=s}return a}function k(t,e,n,r){return Y(W(e,t.length-n),t,n,r)}function O(t,e,n,r){return Y(K(e),t,n,r)}function E(t,e,n,r){return O(t,e,n,r)}function x(t,e,n,r){return Y(Q(e),t,n,r)}function C(t,e,n,r){return Y(V(e,t.length-n),t,n,r)}function j(t,e,n){return 0===e&&n===t.length?Z.fromByteArray(t):Z.fromByteArray(t.slice(e,n))}function S(t,e,n){n=Math.min(t.length,n);for(var r=[],i=e;i<n;){var o=t[i],a=null,s=o>239?4:o>223?3:o>191?2:1;if(i+s<=n){var u,c,l,f;switch(s){case 1:o<128&&(a=o);break;case 2:u=t[i+1],128==(192&u)&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=t[i+1],c=t[i+2],128==(192&u)&&128==(192&c)&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=t[i+1],c=t[i+2],l=t[i+3],128==(192&u)&&128==(192&c)&&128==(192&l)&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,r.push(a>>>10&1023|55296),a=56320|1023&a),r.push(a),i+=s}return A(r)}function A(t){var e=t.length;if(e<=J)return String.fromCharCode.apply(String,t);for(var n="",r=0;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=J));return n}function T(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(127&t[i]);return r}function N(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(t[i]);return r}function P(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=e;o<n;++o)i+=H(t[o]);return i}function L(t,e,n){for(var r=t.slice(e,n),i="",o=0;o<r.length;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function I(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function D(t,e,n,r,i,a){if(!o.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<a)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function q(t,e,n,r){e<0&&(e=65535+e+1);for(var i=0,o=Math.min(t.length-n,2);i<o;++i)t[n+i]=(e&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function R(t,e,n,r){e<0&&(e=4294967295+e+1);for(var i=0,o=Math.min(t.length-n,4);i<o;++i)t[n+i]=e>>>8*(r?i:3-i)&255}function M(t,e,n,r,i,o){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function B(t,e,n,r,i){return i||M(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),G.write(t,e,n,r,23,4),n+4}function F(t,e,n,r,i){return i||M(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),G.write(t,e,n,r,52,8),n+8}function z(t){if(t=U(t).replace(tt,""),t.length<2)return"";for(;t.length%4!=0;)t+="=";return t}function U(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function H(t){return t<16?"0"+t.toString(16):t.toString(16)}function W(t,e){e=e||1/0;for(var n,r=t.length,i=null,o=[],a=0;a<r;++a){if((n=t.charCodeAt(a))>55295&&n<57344){if(!i){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(e-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function K(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}function V(t,e){for(var n,r,i,o=[],a=0;a<t.length&&!((e-=2)<0);++a)n=t.charCodeAt(a),r=n>>8,i=n%256,o.push(i),o.push(r);return o}function Q(t){return Z.toByteArray(z(t))}function Y(t,e,n,r){for(var i=0;i<r&&!(i+n>=e.length||i>=t.length);++i)e[i+n]=t[i];return i}function $(t){return t!==t}/*!
81
+ * The buffer module from node.js, for the browser.
82
+ *
83
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
84
+ * @license MIT
85
+ */
86
+ var Z=n(328),G=n(329),X=n(330);e.Buffer=o,e.SlowBuffer=v,e.INSPECT_MAX_BYTES=50,o.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=r(),o.poolSize=8192,o._augment=function(t){return t.__proto__=o.prototype,t},o.from=function(t,e,n){return a(null,t,e,n)},o.TYPED_ARRAY_SUPPORT&&(o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0})),o.alloc=function(t,e,n){return u(null,t,e,n)},o.allocUnsafe=function(t){return c(null,t)},o.allocUnsafeSlow=function(t){return c(null,t)},o.isBuffer=function(t){return!(null==t||!t._isBuffer)},o.compare=function(t,e){if(!o.isBuffer(t)||!o.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,r=e.length,i=0,a=Math.min(n,r);i<a;++i)if(t[i]!==e[i]){n=t[i],r=e[i];break}return n<r?-1:r<n?1:0},o.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(t,e){if(!X(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return o.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=o.allocUnsafe(e),i=0;for(n=0;n<t.length;++n){var a=t[n];if(!o.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,i),i+=a.length}return r},o.byteLength=y,o.prototype._isBuffer=!0,o.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)b(this,e,e+1);return this},o.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)b(this,e,e+3),b(this,e+1,e+2);return this},o.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)b(this,e,e+7),b(this,e+1,e+6),b(this,e+2,e+5),b(this,e+3,e+4);return this},o.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?S(this,0,t):m.apply(this,arguments)},o.prototype.equals=function(t){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===o.compare(this,t)},o.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),"<Buffer "+t+">"},o.prototype.compare=function(t,e,n,r,i){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),e<0||n>t.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&e>=n)return 0;if(r>=i)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,r>>>=0,i>>>=0,this===t)return 0;for(var a=i-r,s=n-e,u=Math.min(a,s),c=this.slice(r,i),l=t.slice(e,n),f=0;f<u;++f)if(c[f]!==l[f]){a=c[f],s=l[f];break}return a<s?-1:s<a?1:0},o.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},o.prototype.indexOf=function(t,e,n){return g(this,t,e,n,!0)},o.prototype.lastIndexOf=function(t,e,n){return g(this,t,e,n,!1)},o.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-e;if((void 0===n||n>i)&&(n=i),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return _(this,t,e,n);case"utf8":case"utf-8":return k(this,t,e,n);case"ascii":return O(this,t,e,n);case"latin1":case"binary":return E(this,t,e,n);case"base64":return x(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var J=4096;o.prototype.slice=function(t,e){var n=this.length;t=~~t,e=void 0===e?n:~~e,t<0?(t+=n)<0&&(t=0):t>n&&(t=n),e<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var r;if(o.TYPED_ARRAY_SUPPORT)r=this.subarray(t,e),r.__proto__=o.prototype;else{var i=e-t;r=new o(i,void 0);for(var a=0;a<i;++a)r[a]=this[a+t]}return r},o.prototype.readUIntLE=function(t,e,n){t|=0,e|=0,n||I(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return r},o.prototype.readUIntBE=function(t,e,n){t|=0,e|=0,n||I(t,e,this.length);for(var r=this[t+--e],i=1;e>0&&(i*=256);)r+=this[t+--e]*i;return r},o.prototype.readUInt8=function(t,e){return e||I(t,1,this.length),this[t]},o.prototype.readUInt16LE=function(t,e){return e||I(t,2,this.length),this[t]|this[t+1]<<8},o.prototype.readUInt16BE=function(t,e){return e||I(t,2,this.length),this[t]<<8|this[t+1]},o.prototype.readUInt32LE=function(t,e){return e||I(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},o.prototype.readUInt32BE=function(t,e){return e||I(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},o.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||I(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return i*=128,r>=i&&(r-=Math.pow(2,8*e)),r},o.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||I(t,e,this.length);for(var r=e,i=1,o=this[t+--r];r>0&&(i*=256);)o+=this[t+--r]*i;return i*=128,o>=i&&(o-=Math.pow(2,8*e)),o},o.prototype.readInt8=function(t,e){return e||I(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},o.prototype.readInt16LE=function(t,e){e||I(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt16BE=function(t,e){e||I(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt32LE=function(t,e){return e||I(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},o.prototype.readInt32BE=function(t,e){return e||I(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},o.prototype.readFloatLE=function(t,e){return e||I(t,4,this.length),G.read(this,t,!0,23,4)},o.prototype.readFloatBE=function(t,e){return e||I(t,4,this.length),G.read(this,t,!1,23,4)},o.prototype.readDoubleLE=function(t,e){return e||I(t,8,this.length),G.read(this,t,!0,52,8)},o.prototype.readDoubleBE=function(t,e){return e||I(t,8,this.length),G.read(this,t,!1,52,8)},o.prototype.writeUIntLE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){D(this,t,e,n,Math.pow(2,8*n)-1,0)}var i=1,o=0;for(this[e]=255&t;++o<n&&(i*=256);)this[e+o]=t/i&255;return e+n},o.prototype.writeUIntBE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){D(this,t,e,n,Math.pow(2,8*n)-1,0)}var i=n-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+n},o.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,1,255,0),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},o.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):q(this,t,e,!0),e+2},o.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):q(this,t,e,!1),e+2},o.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):R(this,t,e,!0),e+4},o.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):R(this,t,e,!1),e+4},o.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e|=0,!r){var i=Math.pow(2,8*n-1);D(this,t,e,n,i-1,-i)}var o=0,a=1,s=0;for(this[e]=255&t;++o<n&&(a*=256);)t<0&&0===s&&0!==this[e+o-1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+n},o.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e|=0,!r){var i=Math.pow(2,8*n-1);D(this,t,e,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[e+o]=255&t;--o>=0&&(a*=256);)t<0&&0===s&&0!==this[e+o+1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+n},o.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,1,127,-128),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},o.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):q(this,t,e,!0),e+2},o.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):q(this,t,e,!1),e+2},o.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,4,2147483647,-2147483648),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):R(this,t,e,!0),e+4},o.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||D(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):R(this,t,e,!1),e+4},o.prototype.writeFloatLE=function(t,e,n){return B(this,t,e,!0,n)},o.prototype.writeFloatBE=function(t,e,n){return B(this,t,e,!1,n)},o.prototype.writeDoubleLE=function(t,e,n){return F(this,t,e,!0,n)},o.prototype.writeDoubleBE=function(t,e,n){return F(this,t,e,!1,n)},o.prototype.copy=function(t,e,n,r){if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var i,a=r-n;if(this===t&&n<e&&e<r)for(i=a-1;i>=0;--i)t[i+e]=this[i+n];else if(a<1e3||!o.TYPED_ARRAY_SUPPORT)for(i=0;i<a;++i)t[i+e]=this[i+n];else Uint8Array.prototype.set.call(t,this.subarray(n,n+a),e);return a},o.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!o.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0);var a;if("number"==typeof t)for(a=e;a<n;++a)this[a]=t;else{var s=o.isBuffer(t)?t:W(new o(t,r).toString()),u=s.length;for(a=0;a<n-e;++a)this[a+e]=s[a%u]}return this};var tt=/[^+\/0-9A-Za-z-_]/g}).call(e,n(40))},function(t,e,n){"use strict";function r(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");return-1===n&&(n=e),[n,n===e?0:4-n%4]}function i(t){var e=r(t),n=e[0],i=e[1];return 3*(n+i)/4-i}function o(t,e,n){return 3*(e+n)/4-n}function a(t){for(var e,n=r(t),i=n[0],a=n[1],s=new d(o(t,i,a)),u=0,c=a>0?i-4:i,l=0;l<c;l+=4)e=f[t.charCodeAt(l)]<<18|f[t.charCodeAt(l+1)]<<12|f[t.charCodeAt(l+2)]<<6|f[t.charCodeAt(l+3)],s[u++]=e>>16&255,s[u++]=e>>8&255,s[u++]=255&e;return 2===a&&(e=f[t.charCodeAt(l)]<<2|f[t.charCodeAt(l+1)]>>4,s[u++]=255&e),1===a&&(e=f[t.charCodeAt(l)]<<10|f[t.charCodeAt(l+1)]<<4|f[t.charCodeAt(l+2)]>>2,s[u++]=e>>8&255,s[u++]=255&e),s}function s(t){return l[t>>18&63]+l[t>>12&63]+l[t>>6&63]+l[63&t]}function u(t,e,n){for(var r,i=[],o=e;o<n;o+=3)r=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(255&t[o+2]),i.push(s(r));return i.join("")}function c(t){for(var e,n=t.length,r=n%3,i=[],o=0,a=n-r;o<a;o+=16383)i.push(u(t,o,o+16383>a?a:o+16383));return 1===r?(e=t[n-1],i.push(l[e>>2]+l[e<<4&63]+"==")):2===r&&(e=(t[n-2]<<8)+t[n-1],i.push(l[e>>10]+l[e>>4&63]+l[e<<2&63]+"=")),i.join("")}e.byteLength=i,e.toByteArray=a,e.fromByteArray=c;for(var l=[],f=[],d="undefined"!=typeof Uint8Array?Uint8Array:Array,h="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",p=0,v=h.length;p<v;++p)l[p]=h[p],f[h.charCodeAt(p)]=p;f["-".charCodeAt(0)]=62,f["_".charCodeAt(0)]=63},function(t,e){e.read=function(t,e,n,r,i){var o,a,s=8*i-r-1,u=(1<<s)-1,c=u>>1,l=-7,f=n?i-1:0,d=n?-1:1,h=t[e+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+t[e+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=r;l>0;a=256*a+t[e+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,r),o-=c}return(h?-1:1)*a*Math.pow(2,o-r)},e.write=function(t,e,n,r,i,o){var a,s,u,c=8*o-i-1,l=(1<<c)-1,f=l>>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:o-1,p=r?1:-1,v=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-a))<1&&(a--,u*=2),e+=a+f>=1?d/u:d*Math.pow(2,1-f),e*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(e*u-1)*Math.pow(2,i),a+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;t[n+h]=255&s,h+=p,s/=256,i-=8);for(a=a<<i|s,c+=i;c>0;t[n+h]=255&a,h+=p,a/=256,c-=8);t[n+h-p]|=128*v}},function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},function(t,e,n){"use strict";function r(t){return"\n"===t.getText()?"":t.root.innerHTML}e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(){s.a.register({"formats/target":o()}),s.a.register(c,!0)}function o(){var t=s.a.import("parchment");return new t.Attributor.Attribute("target","target",{scope:t.Scope.INLINE})}e.a=i;var a=n(73),s=n.n(a),u=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),c=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e.create=function(e){var n=t.create.call(this,e);return n.removeAttribute("target"),n},e.prototype.format=function(e,n){return e!==this.statics.blotName||n||this.domNode.removeAttribute("target"),t.prototype.format.call(this,e,n)},e}(s.a.import("formats/link"))},function(t,e,n){"use strict";function r(t,e,n){t.linkRange=e,t.root.setAttribute("data-svt-target",n)}function i(t){t.root.setAttribute("data-mode",""),t.root.setAttribute("data-svt-target",""),delete t.linkRange}var o=n(73),a=n.n(o),s=function(){function t(t){t.on("selection-change",function(e){if(e){var n=t.getModule("scrivitoApi").getTooltip(),o=t.getFormat(e).link,a=t.getModule("scrivitoApi").getLinkRange(e);if(a&&o){r(n,a,t.getFormat(a).target||"")}else i(n)}}),t.on("text-change",function(){var e=t.getModule("scrivitoApi").getTooltip(),n=e.linkRange;n&&e.root.setAttribute("data-svt-target",t.getFormat(n).target||"")})}return t}();a.a.register("modules/scrivitoLinkTooltip",s)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(){a.a.register("modules/scrivitoApi",l)}e.a=i;var o=n(73),a=n.n(o),s=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),u=a.a.import("core/module"),c=a.a.import("formats/link"),l=function(t){function e(e){var n=t.call(this,e)||this;return n.getTooltip=function(){return e.theme.tooltip},n.getLinkRange=function(t){if(t){var n=e.scroll.scroll.descendant(c,t.index),r=n[0],i=n[1];return r?{index:t.index-i,length:r.length()}:void 0}},n}return s(e,t),e}(u)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){var e={selection:[],selectionMode:"single"};scrivito.openContentBrowser(e).then(function(e){if(e.selection&&e.selection.length){var n=e.selection[0];t.getModule("scrivitoApi").getTooltip().edit("link","/"+n)}})}var o=n(73),a=n.n(o),s=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),u=a.a.import("core/module"),c=function(t){function e(e){var n=t.call(this,e)||this;return n.fromContentBrowser=function(){return i(e)},n}return s(e,t),e}(u);a.a.register("modules/scrivitoInternalLink",c)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(73),o=n.n(i),a=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),s=o.a.import("themes/bubble"),u=o.a.import("themes/snow"),c=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.snowTheme=new u(e,n),r}return a(e,t),e.prototype.extendToolbar=function(e){var n=this;this.snowTheme.extendToolbar(e),this.snowTheme.tooltip.root.classList.add("ql-svt-tooltip-snow"),t.prototype.extendToolbar.call(this,e),this.tooltip=this.snowTheme.tooltip,this.tooltip.textbox.setAttribute("data-link","Paste or type a link"),this.tooltip.textbox.insertAdjacentHTML("beforebegin",l),this.tooltip.textbox.insertAdjacentHTML("afterend",f);var r=this.tooltip.root.querySelector("a.ql-svt-browse"),i=this.tooltip.root.querySelector("a.ql-svt-target");r.addEventListener("click",function(t){n.quill.getModule("scrivitoInternalLink").fromContentBrowser(),t.preventDefault()}),i.addEventListener("click",function(t){var e=n.tooltip.linkRange;if(e){var r=n.quill.getFormat(e).target;n.quill.formatText(e.index,e.length,"target",r?"":"_blank","user")}t.preventDefault()})},e}(s),l='\n <a class="ql-svt ql-svt-browse" title="Browse">\n <i class="scrivito_icon scrivito_icon_content_browser"></i>\n </a>\n',f='\n <a class="ql-svt ql-svt-target" title="Open link in new tab">\n <i class="scrivito_icon scrivito_icon_new_window"></i>\n <i class="scrivito_icon scrivito_icon_ok"></i>\n </a>\n';o.a.register("themes/scrivito",c)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t){return(d=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var h=n(139),p=function(t){function e(){return o(this,e),l(this,d(e).apply(this,arguments))}return c(e,[{key:"onClick",value:function(){var t=this;scrivito.openContentBrowser({selection:this._currentSelection(),selectionMode:"single"}).then(function(e){var n=e.isSelected,r=e.selection;n&&t._saveContentBrowserSelection(r)})}},{key:"_currentSelection",value:function(){var t=this._controller.getContent();return t?[t.id()]:[]}},{key:"_saveContentBrowserSelection",value:function(t){this._controller.setContent(t[0]||null)}}],[{key:"canEdit",value:function(t){return"reference"===t.type}}]),a(e,t),e}(h.a);e.a=p},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(139),o=n(339),a=n(230),s=n(231),u=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),c=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e.canEdit=function(t){return"string"===t.type},e.prototype.contentDidChange=function(){this._setCurrentContent()},e.prototype.editorWillBeActivated=function(){this._controller.setDomMode("Replace")},e.prototype.editorDomWasMounted=function(t){this._currentDomNode=t,Object(a.a)(t);var e=new s.a(t,this._controller);this._setCurrentContent(),Object(o.a)(e)},e.prototype.editorDomWasUnmounted=function(){this._currentDomNode=void 0},e.prototype._setCurrentContent=function(){this._currentDomNode&&(this._currentDomNode.textContent=this._controller.getContent())},e}(i.a);e.a=c},function(t,e,n){"use strict";function r(t,e){var n=e.jQueryElement();switch(t.keyCode||t.which){case 13:d(n)||(t.preventDefault(),n.blur());break;case 27:t.stopPropagation(),n.blur()}}function i(t){u(t)}function o(t){h(t.jQueryElement())}function a(t){v(t.jQueryElement())}function s(t){u(t).done(function(){return t.trigger("scrivito_editors:blur")}),p(t),h(t.jQueryElement())}function u(t){var e=c(t.jQueryElement());return t.save(e).done(function(){return t.trigger("scrivito_editors:save")})}function c(t){return l(t),t[0].innerText.replace(/\r\n/g,"\n").replace(/\n+$/,"")}function l(t){var e=f(t),n=e.not(t);n.length>0&&(n.remove(),t.text(e.text()))}function f(t){var e=t.data("scrivito_editors_siblings_before_edit"),n=t.siblings();return!e||n.filter(e).length<e.length?t.data("scrivito_editors_siblings_before_edit",n):t.siblings().addBack().not(e)}function d(t){return!0===t.data("scrivitoEditorsMultiline")||!1!==t.data("scrivitoEditorsMultiline")&&t.css("white-space").match(/pre/)}function h(t){if(d(t)&&!t.data("scrivito_editors_prepared_for_editing")){t.data("scrivito_editors_prepared_for_editing",!0);var e=t.html(),n=e.replace(/\r?\n/g,"<br />");e!==n&&t.html(n)}}function p(t){var e=t.jQueryElement();e.data("scrivito_editors_prepared_for_editing",!1),e.text(t.content())}function v(t){var e=document.getSelection();e.anchorNode&&e.focusNode&&(t.find(e.anchorNode).addBack(e.anchorNode).length&&t.find(e.focusNode).addBack(e.focusNode).length||e.selectAllChildren(t[0]))}function y(t){var e=t.jQueryElement();e.attr("contenteditable","true").blur(function(){return s(t)}).click(function(){return a(t)}).focus(function(){return o(t)}).keypress(function(e){return r(e,t)}).keyup(function(e){return r(e,t)}),"false"!==e.attr("data-scrivito-editors-autosave")&&e.on("cut input keypress keyup paste",function(){return i(t)}),h(e),e.on("click",function(t){e.attr("contenteditable","true"),l(e),t.timeStamp-e.data("scrivito_editors_last_click")>=m&&t.preventDefault(),e.data("scrivito_editors_last_click",t.timeStamp)})}var m=300;e.a=y},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),n.d(e,"Link",function(){return P}),n.d(e,"Obj",function(){return L}),n.d(e,"ObjSearch",function(){return I}),n.d(e,"Widget",function(){return D}),n.d(e,"createObjClass",function(){return q}),n.d(e,"createWidgetClass",function(){return R}),n.d(e,"getClass",function(){return M}),n.d(e,"provideObjClass",function(){return B}),n.d(e,"provideWidgetClass",function(){return F});var r=n(25);n.d(e,"Binary",function(){return r.a});var i=n(71);n.d(e,"FutureBinary",function(){return i.a});var o=n(219);n.d(e,"ObjFacetValue",function(){return o.a});var a=n(7);n.d(e,"load",function(){return a.a});var s=n(1);n.d(e,"ArgumentError",function(){return s.ArgumentError}),n.d(e,"ScrivitoError",function(){return s.ScrivitoError});var u=n(226);n.d(e,"configure",function(){return u.a});var c=n(137);n.d(e,"configureContentBrowser",function(){return c.a});var l=n(60);n.d(e,"currentPage",function(){return l.a}),n.d(e,"currentPageParams",function(){return l.c});var f=n(341);n.d(e,"withPage",function(){return f.a});var d=n(81);n.d(e,"finishLoading",function(){return d.a});var h=n(342);n.d(e,"isInPlaceEditingActive",function(){return h.a});var p=n(129);n.d(e,"navigateTo",function(){return p.a});var v=n(82);n.d(e,"provideEditingConfig",function(){return v.b});var y=n(343);n.d(e,"urlFor",function(){return y.a});var m=n(72);n.d(e,"useHistory",function(){return m.f});var b=n(344);n.d(e,"BackgroundImageTag",function(){return b.a});var g=n(345);n.d(e,"ChildListTag",function(){return g.a});var w=n(235);n.d(e,"ContentTag",function(){return w.a});var _=n(356);n.d(e,"CurrentPage",function(){return _.a});var k=n(358);n.d(e,"ImageTag",function(){return k.a});var O=n(233);n.d(e,"LinkTag",function(){return O.a});var E=n(360);n.d(e,"NotFoundErrorPage",function(){return E.a});var x=n(140);n.d(e,"WidgetTag",function(){return x.b});var C=n(15);n.d(e,"connect",function(){return C.a});var j=n(361);n.d(e,"provideComponent",function(){return j.a});var S=n(362);n.d(e,"registerComponent",function(){return S.a});var A=n(61),T=n(363);n.d(e,"_internal",function(){return T});var N=Object(A.a)(),P=N.Link,L=N.Obj,I=N.ObjSearch,D=N.Widget,q=N.createObjClass,R=N.createWidgetClass,M=N.getClass,B=N.provideObjClass,F=N.provideWidgetClass},function(t,e,n){"use strict";function r(t,e){return Object(i.f)(t,e)}e.a=r;var i=n(60)},function(t,e,n){"use strict";function r(){return"published"!==scrivito.currentWorkspaceId()&&(!!i.b&&i.b.isEditingMode())}e.a=r;var i=n(18)},function(t,e,n){"use strict";function r(t,e){f(t,e);var n=e||{},r=n.query,a=n.fragment,s=Object(i.c)(t),u=r?"?".concat(r):"",c=a?"#".concat(a):"";return Object(o.a)(s).concat(u).concat(c)}e.a=r;var i=n(22),o=n(136),a=n(24),s=n(39),u=n(59),c=a.a.union([u.d,u.b,u.a]),l=a.a.struct({query:a.a.maybe(a.a.String),fragment:a.a.maybe(a.a.String)}),f=Object(s.a)("urlFor",[["target",c],["options",a.a.maybe(l)]],{docPermalink:"js-sdk/urlFor"})},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){var e=o(t),n=e.backgrounds,r=e.passThroughStyle,i=a(n);return Object(f.extend)(i,r)}function o(t){var e={backgrounds:[],passThroughStyle:{}};for(var n in t)if(0!==n.indexOf("background"))e.passThroughStyle[n]=t[n];else if("background"===n){var r=t[n];e.backgrounds=Object(f.isArray)(r)?r:[r]}return e}function a(t){var e=t.map(s);return{backgroundAttachment:Object(f.pluck)(e,"backgroundAttachment").join(", "),backgroundImage:Object(f.pluck)(e,"backgroundImage").join(", "),backgroundOrigin:Object(f.pluck)(e,"backgroundOrigin").join(", "),backgroundPosition:Object(f.pluck)(e,"backgroundPosition").join(", "),backgroundRepeat:Object(f.pluck)(e,"backgroundRepeat").join(", "),backgroundSize:Object(f.pluck)(e,"backgroundSize").join(", ")}}function s(t){if(u(t))return c(t.image);if(r(t.image,h.a))return l(t.image);if(Object(v.a)(t.image)){var e=Object(m.c)(t.image).get("blob","binary");if(e)return l(e)}return c("none")}function u(t){return Object(f.isString)(t.image)}function c(t){return{backgroundAttachment:"scroll",backgroundImage:t,backgroundOrigin:"padding-box",backgroundPosition:"0% 0%",backgroundRepeat:"repeat",backgroundSize:"auto"}}function l(t){return{backgroundAttachment:"scroll",backgroundImage:"url("+Object(y.a)(t).url()+")",backgroundOrigin:"padding-box",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"}}var f=n(0),d=(n.n(f),n(14)),h=(n.n(d),n(25)),p=n(15),v=n(227),y=n(232),m=n(22),b=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),g=this&&this.__assign||Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t},w=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return b(e,t),e.prototype.render=function(){var t=this.props.style,e=this.props.tag||"div",n=Object(f.omit)(this.props,"style","tag");return d.createElement(e,g({},n,{style:i(t)}))},e.displayName="Scrivito.BackgroundImageTag",e}(d.Component);e.a=Object(p.a)(w)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return u(t)||s(t)||a()}function a(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function s(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function u(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e<t.length;e++)n[e]=t[e];return n}}function c(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");f(t.prototype,e&&e.prototype),e&&f(t,e)}function f(t,e){return(f=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function d(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function h(t,e,n){return e&&d(t.prototype,e),n&&d(t,n),t}function p(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?y(t):e}function v(t){return(v=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function y(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var m=n(87),b=n(0),g=(n.n(b),n(14)),w=n.n(g),_=n(60),k=n(15),O=n(346),E=n(349),x=function(t){function e(t){var n;return c(this,e),n=p(this,v(e).call(this,t)),n.state={hasFocus:!1},n._onMouseOver=n._onMouseOver.bind(y(y(n))),n._onMouseOut=n._onMouseOut.bind(y(y(n))),n}return h(e,[{key:"render",value:function(){var t=this,e=this.props.parent||Object(_.a)();if(!e)return null;e=e._scrivitoPrivateContent;var n,r=Object(b.omit)(this.props,"parent","tag","renderChild");return Object(m.a)()&&(r.onMouseOver=this._onMouseOver,r.onMouseOut=this._onMouseOut,r["data-scrivito-private-child-list-path"]=!0,this.state.hasFocus&&(r.className="scrivito_active scrivito_entered ".concat(r.className)),n=w.a.createElement(E.a,{key:"menuMarker",parent:e})),w.a.createElement(this.props.tag,r,[n].concat(o(e.orderedChildren().map(function(e){return w.a.createElement(O.a,{key:e.id(),child:e,renderChild:t.props.renderChild})}))))}},{key:"_onMouseOver",value:function(t){t.stopPropagation(),this.setState({hasFocus:!0})}},{key:"_onMouseOut",value:function(t){t.stopPropagation(),this.setState({hasFocus:!1})}}]),l(e,t),e}(w.a.Component);x.displayName="Scrivito.ChildListTag",x.defaultProps={tag:"ul"},e.a=Object(k.a)(x)},function(t,e,n){"use strict";function r(t){var e=t.child,n=t.renderChild,r=Object(a.a)().appModelAccessor.wrapInAppClass(e);return n?n(r):o.a.createElement("li",null,o.a.createElement(u.a,{to:r},e.get("title","string")))}var i=n(14),o=n.n(i),a=n(61),s=n(15),u=n(233);r.displayName="Scrivito.ChildListTag.ChildItem",e.a=Object(s.a)(r)},function(t,e,n){"use strict";var r=n(24),i=n(348);n.d(e,"b",function(){return r.a}),n.d(e,"a",function(){return i.a})},function(t,e,n){"use strict";function r(t,e,n,r){return["Invalid ".concat(e," supplied to ").concat(n,", should be a ").concat(a.a.getTypeName(r),"."),"Detected errors (".concat(t.length,"):")].concat(t.map(function(t,e){return" ".concat(e+1,". ").concat(t.message)})).join("\n")}function i(t){return a.a.Object.is(t)?a.a.struct(t):t}function o(t,e){var n=i(t),o="subtype"===n.meta.kind;a.a.assert(a.a.isType(n),"Invalid argument type supplied to propTypes()");var s={},u=o?n.meta.type:n;if("struct"===u.meta.kind||"interface"===u.meta.kind){var c=u.meta.props;Object.keys(c).forEach(function(t){var e=c[t],n=function t(n,i,o){var s=n[i],u=a.a.validate(s,e);if(!u.isValid()){var c=r(u.errors,"prop ".concat(a.a.stringify(i)),o,e);t.displayName=c,a.a.fail(c)}};n.tcomb=e,s[t]=n}),e&&!1===e.strict||(s.__strict__=function(t,e,n){var r=[];for(var i in t)"__strict__"!==i&&"__subtype__"!==i&&t.hasOwnProperty(i)&&!c.hasOwnProperty(i)&&r.push(i);if(r.length>0){var o=a.a.stringify(r);a.a.fail("Invalid additional prop(s):\n\n".concat(o,"\n\nsupplied to ").concat(n,"."))}})}else s.__generictype__=function(t,e,n){var i=a.a.validate(t,u);i.isValid()||a.a.fail(r(i.errors,"props",n,u))};return o&&(s.__subtype__=function(t,e,r){n.meta.predicate(t)||a.a.fail("Invalid props:\n\n ".concat(a.a.stringify(t),"\n\nsupplied to ").concat(r)+", should be a ".concat(a.a.getTypeName(n),"."))},s.__subtype__.predicate=n.meta.predicate),s}n.d(e,"a",function(){return s});var a=n(24),s=o},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var h=n(14),p=n.n(h),v=n(85),y=(n.n(v),n(15)),m=n(18),b=function(t){function e(t){var n;return o(this,e),n=l(this,f(e).call(this,t)),n._onClick=n._onClick.bind(d(d(n))),n}return c(e,[{key:"render",value:function(){var t=this;return p.a.createElement("span",{ref:function(e){return t._menuMarker=e},className:"scrivito_editing_marker",onClick:this._onClick},p.a.createElement("i",{className:"scrivito_icon"}),p.a.createElement("span",{className:"scrivito_editing_marker_title"},this.props.parent.objClass()))}},{key:"_onClick",value:function(t){t.preventDefault(),t.stopPropagation(),this._menuMarker&&m.b.showChildListMenu(Object(v.findDOMNode)(this._menuMarker),this.props.parent.id())}}]),a(e,t),e}(p.a.Component);b.displayName="Scrivito.ChildListTag.MenuMarker",e.a=Object(y.a)(b)},function(t,e,n){"use strict";function r(t){return i(t.target,t.currentTarget,Object(s.a)(t))}function i(t,e,n){if(t===e)return null;if("A"===t.nodeName){var r=t.href;if(n||"_blank"===t.getAttribute("target"))return{openInNewWindow:r};var s=o(r);return Object(a.f)(s)?{openInCurrentWindow:s.resource()}:null}return i(t.parentNode,e,n)}e.a=r;var o=n(33),a=(n.n(o),n(63)),s=n(234)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function a(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");u(t.prototype,e&&e.prototype),e&&u(t,e)}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}function f(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function h(t){return(h=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var p=n(238),v=n.n(p),y=n(14),m=n.n(y),b=n(1),g=n(22),w=n(87),_=n(62),k=n(86),O=n(15),E=n(140),x=function(t){function e(t){var n;return a(this,e),n=f(this,h(e).call(this,t)),n.state={hasError:!1},n}return l(e,[{key:"componentDidCatch",value:function(){this.setState({hasError:!0})}},{key:"shouldComponentUpdate",value:function(t){return this.props.widget.equals(t.widget)}},{key:"getChildContext",value:function(){return o({},E.a,this.props.widget)}},{key:"render",value:function(){return this.state.hasError?Object(w.a)()?m.a.createElement(E.b,null,m.a.createElement("div",{className:"content_error"},"Widget could not be rendered due to application error.")):m.a.createElement(E.b,null):m.a.createElement(C,{widget:this.props.widget})}}]),s(e,t),e}(m.a.Component),C=function(t){function e(){return a(this,e),f(this,h(e).apply(this,arguments))}return l(e,[{key:"render",value:function(){var t=Object(g.e)(Object(_.a)(),this.props.widget);return m.a.createElement(this._getAppWidgetComponent(),{widget:t})}},{key:"_getAppWidgetComponent",value:function(){var t=this.props.widget.objClass(),e=Object(k.a)(t);if(!e)throw new b.ArgumentError('No component registered for widget class "'.concat(t,'"'));return e}}]),s(e,t),e}(m.a.Component);x.displayName="Scrivito.ContentTag.WidgetContent",x.childContextTypes=o({},E.a,v.a.object),e.a=Object(O.a)(x)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(14),o=(n.n(i),n(15)),a=n(141),s=n(239),u=n(228),c=n(18),l=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),f=function(t){function e(e){var n=t.call(this,e)||this;return n._onClick=n._onClick.bind(n),n._onDragStart=n._onDragStart.bind(n),n._onDragEnd=n._onDragEnd.bind(n),n}return l(e,t),e.prototype.render=function(){var t=this;return i.createElement("span",{ref:function(e){return t._menuMarker=e},className:"scrivito_editing_marker",onClick:this._onClick,onMouseOver:this.props.onMouseOver,onMouseOut:this.props.onMouseOut,onDragStart:this._onDragStart,onDragEnd:this._onDragEnd,draggable:!0},i.createElement("i",{className:"scrivito_icon"}),i.createElement("span",{className:"scrivito_editing_marker_title"},this._title()))},e.prototype._onClick=function(t){if(t.preventDefault(),t.stopPropagation(),this._menuMarker){var e=Object(a.a)(this.props.widget),n=e.objId,r=e.widgetId;c.b.showWidgetMenu(this._menuMarker,n,r)}},e.prototype._onDragStart=function(t){Object(s.a)(t);var e=Object(a.a)(this.props.widget),n=e.objId,r=e.widgetId;c.b.onDragStart(n,r),this.props.setDragState(!0)},e.prototype._onDragEnd=function(){c.b.onDragEnd(),this.props.setDragState(!1)},e.prototype._title=function(){var t=Object(a.a)(this.props.widget),e=t.objId,n=t.widgetId;return Object(u.a)(e,n)},e.displayName="Scrivito.ContentTag.MenuMarker",e}(i.Component);e.a=Object(o.a)(f)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function f(t){return(f=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}var h=n(14),p=n.n(h),v=n(85),y=(n.n(v),n(141)),m=n(15),b=n(18),g=function(t){function e(t){var n;return o(this,e),n=l(this,f(e).call(this,t)),n._onClick=n._onClick.bind(d(d(n))),n}return c(e,[{key:"componentDidMount",value:function(){if(this._widgetPlaceholder){var t=Object(v.findDOMNode)(this._widgetPlaceholder),e=Object(y.a)(this.props.field.container()),n=e.objId,r=e.widgetId,i=this.props.field.name();b.b.registerEmptyWidgetlistDropZoneInDom({domNode:t,objId:n,widgetId:r,attributeName:i})}}},{key:"render",value:function(){var t=this;return p.a.createElement("div",{ref:function(e){return t._widgetPlaceholder=e},className:"scrivito_empty_widget_field","data-scrivito-private-dropzone":"true",onClick:this._onClick})}},{key:"_onClick",value:function(t){if(t.preventDefault(),t.stopPropagation(),this._widgetPlaceholder){var e=this.props.field.name(),n=Object(y.a)(this.props.field.container()),r=n.objId,i=n.widgetId;b.b.showWidgetlistMenu(Object(v.findDOMNode)(this._widgetPlaceholder),{objId:r,widgetId:i,attributeName:e,mousePosition:{x:t.pageX,y:t.pageY}})}}}]),a(e,t),e}(p.a.Component);g.displayName="Scrivito.ContentTag.WidgetlistPlaceholder",e.a=Object(m.a)(g)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(14),o=(n.n(i),n(85)),a=(n.n(o),n(0)),s=(n.n(a),n(237)),u=n(12),c=n(15),l=n(355),f=n(135),d=this&&this.__extends||function(){var t=Object.setPrototypeOf||r({__proto__:[]},Array)&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),h=this&&this.__assign||Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t},p=function(t){function e(e){var n=t.call(this,e)||this;return n._field=n.props.field,n.state={domMode:"None"},n._isPendingUpdate=!1,n._getContent=n._getContent.bind(n),n._setContent=n._setContent.bind(n),n._setDomMode=n._setDomMode.bind(n),n}return d(e,t),e.prototype.componentWillMount=function(){var t=this,e=this.props.editorClass;if(e){var n={getContent:this._getContent,setContent:this._setContent,setDomMode:this._setDomMode};this._editor=new e({controller:n}),this._editorWillBeActivated(),this._unsubscribe=this._field.subscribe(function(){if(t._isPendingUpdate&&t._pendingUpdateValue===t._field.getWithoutLoading())return t._isPendingUpdate=!1,void(t._pendingUpdateValue=void 0);t._contentDidChange()})}},e.prototype.componentDidMount=function(){"Replace"===this.state.domMode&&this._editorDomWasMounted()},e.prototype.componentDidUpdate=function(t,e){var n=e.domMode,r=this.state.domMode;n!==r&&("Replace"===r?this._editorDomWasMounted():this._editorDomWasUnmounted())},e.prototype.componentWillUnmount=function(){this._editorWillBeDeactivated(),this._unsubscribe&&this._unsubscribe()},e.prototype.render=function(){var t=this;if("Replace"===this.state.domMode)return i.createElement(this.props.tag,h({},Object(a.omit)(this.props.customProps,"children"),{ref:function(e){t._editorComponent=e}}));var e,n=this._editor;n&&n.onClick&&(e=function(t){return n.onClick(new l.a(t))});var r={ref:function(e){t._editorComponent=e},children:this.props.children,customProps:this.props.customProps,field:this.props.field,key:this.state.domMode,tag:this.props.tag,onClick:e};return i.createElement(s.a,r)},e.prototype._contentDidChange=function(){this._editor&&this._editor.contentDidChange()},e.prototype._editorWillBeActivated=function(){this._editor&&this._editor.editorWillBeActivated()},e.prototype._editorWillBeDeactivated=function(){this._editor&&this._editor.editorWillBeDeactivated()},e.prototype._editorDomWasMounted=function(){if(this._editor&&this._editorComponent){var t=Object(o.findDOMNode)(this._editorComponent);this._editor.editorDomWasMounted(t)}},e.prototype._editorDomWasUnmounted=function(){this._editor&&this._editor.editorDomWasUnmounted()},e.prototype._setDomMode=function(t){this.setState({domMode:t})},e.prototype._getContent=function(){var t=this;return"html"===this._field.type()?Object(u.a)(function(){return Object(f.a)(t._field.get())}).result:this._field.get()},e.prototype._setContent=function(t){this._isPendingUpdate=!0,this._pendingUpdateValue=t,this._field.update(t)},e.displayName="Scrivito.ContentTag.Editor",e}(i.Component);e.a=Object(c.a)(p)},function(t,e,n){"use strict";var r=function(){function t(t){this._internalEvent=t}return t.prototype.preventDefault=function(){this._internalEvent.preventDefault()},t.prototype.stopPropagation=function(){this._internalEvent.stopPropagation()},t}();e.a=r},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t){return(d=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var h=n(14),p=n.n(h),v=n(60),y=n(357),m=n(1),b=n(86),g=n(15),w=function(t){function e(){return o(this,e),l(this,d(e).apply(this,arguments))}return c(e,[{key:"componentDidMount",value:function(){Object(y.a)()}},{key:"componentWillUnmount",value:function(){Object(y.b)()}},{key:"render",value:function(){var t=Object(v.a)(),e=Object(v.c)();if(!t)return null;var n=t.objClass(),r=Object(b.a)(n);if(!r)throw new m.ArgumentError('No component registered for obj class "'.concat(n,'"'));return p.a.createElement(r,{page:t,params:e})}}]),a(e,t),e}(p.a.Component);w.displayName="Scrivito.CurrentPage",e.a=Object(g.a)(w)},function(t,e,n){"use strict";function r(){a+=1,Object(o.a)()}function i(){0!==a&&0===(a-=1)&&Object(o.b)()}e.a=r,e.b=i;var o=n(72),a=0},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(){return i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},i.apply(this,arguments)}function o(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function a(t,e){if(!o(t,e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");u(t.prototype,e&&e.prototype),e&&u(t,e)}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}function f(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?d(t):e}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function h(t){return(h=Object.getPrototypeOf||function(t){return t.__proto__})(t)}var p=n(14),v=n.n(p),y=n(0),m=(n.n(y),n(25)),b=n(235),g=n(42),w=n(15),_=n(359),k=n(232),O=n(1),E=n(37),x=function(t){function e(){return a(this,e),f(this,h(e).apply(this,arguments))}return l(e,[{key:"render",value:function(){if(!this.props.content)return null;var t=Object(y.omit)(this.props,"content","attribute");if(o(this.props.content,m.a))return v.a.createElement("img",i({src:Object(k.a)(this.props.content).url()},t));var e=this._getBinary();if(void 0===e)return null;var n;return null===e?(n=_.a,t["data-scrivito-image-placeholder"]=!0):n=Object(k.a)(e).url(),v.a.createElement(b.a,i({attribute:this.props.attribute,content:this.props.content,tag:"img",src:n},t))}},{key:"_getBinary",value:function(){var t=g.a.forInstance(this.props.content);if(t){var e=t.attributes[this.props.attribute];if(!e)return void Object(E.b)(new O.ArgumentError('Component "Scrivito.ImageTag" received prop "content"'+' with an object missing attribute "'.concat(this.props.attribute,'".')));var n=e[0];return"binary"===n?this.props.content.get(this.props.attribute):"reference"===n?this._getReferencedBinary():void Object(E.b)(new O.ArgumentError('Component "Scrivito.ImageTag" received prop "content"'+' with an object, whose attribute "'.concat(this.props.attribute,'"')+' is of unexpected type "'.concat(n,'".')+' Valid attribute types are "binary" and "reference".'))}}},{key:"_getReferencedBinary",value:function(){var t=this.props.content.get(this.props.attribute);if(t){var e=t.get("blob");if(e)return e}return null}}]),s(e,t),e}(v.a.Component);x.displayName="Scrivito.ImageTag",x.defaultProps={attribute:"blob"},e.a=Object(w.a)(x)},function(t,e,n){"use strict";e.a="data:image/gif;base64,R0lGODlhyADIAIAAAP///wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMjEgNzkuMTU0OTExLCAyMDEzLzEwLzI5LTExOjQ3OjE2ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDBEQjBEMDdFODMzMTFFNTg0QzY4MUNBMUVCQUU2MjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDBEQjBEMDhFODMzMTFFNTg0QzY4MUNBMUVCQUU2MjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMERCMEQwNUU4MzMxMUU1ODRDNjgxQ0ExRUJBRTYyNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowMERCMEQwNkU4MzMxMUU1ODRDNjgxQ0ExRUJBRTYyNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAAAALAAAAADIAMgAAAL/hI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8YhMKpfMpvMJjUqn1Kr1is1qt9yu9wsOi8fksvmMTqvX7Lb7DY/L5/S6/Y7P6/f8vv8PGCg4SFhoeIiYqLjI2Oj4CBkpOUlZaXmJmam5ydnp+QkaKjpKWmp6ipqqusra6voKGys7S1tre4ubq7vL2+v7CxwsPExcbHyMnKy8zNzs/AwdLT1NXW19jZ2tvc3d7f0NHi4+Tl5ufo6err7O3u7+Dh8vP09fb3+Pn6+/z9/v/w8woMCBBAsaPIgwocKFDBs6fAgxosSJFCtavIgxo8aNBhw7eixTAAA7"},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}var i=n(14),o=(n.n(i),n(60)),a=n(1),s=n(15),u=function(t){var e=t.children;return r(Object(o.b)(),a.CurrentPageNotFoundError)?e?i.createElement("div",null,e):i.createElement("div",null,i.createElement("h1",null,"The page you were looking for doesn't exist."),i.createElement("p",null,"You may have mistyped the address or the page may have moved.")):null};u.displayName="Scrivito.NotFoundErrorPage",e.a=Object(s.a)(u)},function(t,e,n){"use strict";function r(t,e){return null!=e&&"undefined"!=typeof Symbol&&e[Symbol.hasInstance]?e[Symbol.hasInstance](t):t instanceof e}function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!r(t,e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");s(t.prototype,e&&e.prototype),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function l(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?f(t):e}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t,e,n){return(d="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=h(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(n):i.value}})(t,e,n||t)}function h(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=p(t)););return t}function p(t){return(p=Object.getPrototypeOf||function(t){return t.__proto__})(t)}function v(t,e){y(e),m(e),g(e)&&(e.displayName=t);var n=Object(x.a)(e),r=b(n);Object(E.c)(t,r)}function y(t){if("function"!=typeof t)throw new O.ArgumentError("Scrivito.provideComponent expected a valid React component"+", but received ".concat(Object(C.a)(t)))}function m(t){if(t.propTypes)throw new O.ArgumentError("Custom props are not allowed when providing a component.")}function b(t){var e=function(t){function e(){return o(this,e),l(this,p(e).apply(this,arguments))}return c(e,[{key:"render",value:function(){if(this.props.widget){var t=d(p(e.prototype),"render",this).call(this);return Object(k.isArray)(t)||Object(k.isBoolean)(t)||Object(k.isNumber)(t)||Object(k.isString)(t)||null===t||t&&t.type!==j.b?_.a.createElement(j.b,{children:t}):t}return d(p(e.prototype),"render",this).call(this)}}]),a(e,t),e}(t);return e.displayName=Object(S.a)(t),e}function g(t){return!(t.displayName||t.name&&"_class"!==t.name)}e.a=v;var w=n(14),_=n.n(w),k=n(0),O=(n.n(k),n(1)),E=n(86),x=n(15),C=n(41),j=n(140),S=n(122)},function(t,e,n){"use strict";function r(t,e){Object(o.d)(t,Object(i.a)(e))}e.a=r;var i=n(15),o=n(86)},function(t,e,n){"use strict";function r(){o.a.enableForceVerification()}function i(){return o.a.currentPublicAuthorizationState()}Object.defineProperty(e,"__esModule",{value:!0}),e.enableForceVerification=r,e.currentPublicAuthorizationState=i;var o=n(21),a=n(241);n.d(e,"alwaysShowOptionMarkers",function(){return a.a});var s=n(101);n.d(e,"isFetchingActive",function(){return s.b})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(290),i=n(291),o=n(161),a=n(321),s=n(340);window.Scrivito=s;var u=Object(o.a)();u?u.installRailsApi():Object(r.a)(),Object(i.a)(u),Object(a.a)()}]);
@@ -1,2 +1,7 @@
1
1
  /*! Copyright (c) 2018 Infopark AG (https://scrivito.com) */
2
- @-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{0%{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes rotation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes rotation{0%{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@-o-keyframes rotation{0%{-o-transform:rotate(0deg)}to{-o-transform:rotate(359deg)}}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes scrivito_wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-10%,0,0) rotate(-5deg);transform:translate3d(-10%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(10%,0,0) rotate(3deg);transform:translate3d(10%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-7%,0,0) rotate(-3deg);transform:translate3d(-7%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(5%,0,0) rotate(2deg);transform:translate3d(5%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}@keyframes scrivito_wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-10%,0,0) rotate(-5deg);transform:translate3d(-10%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(10%,0,0) rotate(3deg);transform:translate3d(10%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-7%,0,0) rotate(-3deg);transform:translate3d(-7%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(5%,0,0) rotate(2deg);transform:translate3d(5%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}.scrivito_wobble{display:block;padding-top:3px;-webkit-animation-name:scrivito_wobble;animation-name:scrivito_wobble}.scrivito_animated{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.scrivito_animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@font-face{font-family:scrivito_iconsregular;src:url(data:application/font-woff;charset=utf-8;base64,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) format("woff");font-weight:400;font-style:normal}.scrivito-content-browser-items-tag-list li:before,.scrivito_icon,.scrivito_modal_prompt .scrivito_modal_body ul li:before{font-family:scrivito_iconsregular,Arial,sans-serif;font-style:normal;font-weight:400;color:#444;font-size:26px;line-height:13px!important;vertical-align:middle;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_icon.scrivito_right{float:right!important}.scrivito_icon.scrivito_blue{color:#516b8b!important}.scrivito_icon.scrivito_green{color:#658b51!important}.scrivito_icon.scrivito_red{color:#ce4848!important;text-shadow:0 0 1px #000,0 0 10px rgba(0,0,0,.3)}.scrivito_button_bar:hover .scrivito_icon.scrivito_red,.scrivito_icon.scrivito_red:hover{color:#e9adad!important}.scrivito_icon.scrivito_yellow{color:#d8d63a!important}.scrivito_button_bar:hover .scrivito_icon.scrivito_yellow,.scrivito_icon.scrivito_yellow:hover{color:#edeca4!important}.scrivito_icon.scrivito_orange{color:#ff9f00!important}.scrivito_button_bar:hover .scrivito_icon.scrivito_orange,.scrivito_icon.scrivito_orange:hover{color:#ffbc4d!important}.button .scrivito_icon:hover,ul .scrivito_icon:hover{cursor:pointer}.scrivito_icon_scrivito:after{content:"\F000"}.scrivito_icon_user:after{content:"\F00A"}.scrivito_icon_bell:after{content:"\F00C"}.scrivito_icon_pot_error:after{content:"\F00E"}.scrivito_icon_ws:after{content:"\F011"}.scrivito_icon_ws_published:after{content:"\F064"}.scrivito_icon_search:after{content:"\F013"}.scrivito_icon_duplicate:after{content:"\F015"}.scrivito_icon_copy:after{content:"\F017"}.scrivito_icon_trash:after{content:"\F018"}.scrivito_icon_stats:after{content:"\F019"}.scrivito_icon_disabled:after{content:"\F01F"}.scrivito_icon_question:after{content:"\F01C"}.scrivito_icon_attention:after{content:"\F01D"}.scrivito_icon_information:after{content:"\F01E"}.scrivito_icon_not_available:after{content:"\F01F"}.scrivito_icon_time:after{content:"\F020"}.scrivito_icon_error:after{content:"\F021"}.scrivito_icon_inv_plus:after{content:"\F022"}.scrivito_icon_refresh:after{content:"\F023"}.scrivito_icon_slidedown:after{content:"\F024"}.scrivito_icon_chevron_down:after{content:"\F025"}.scrivito_icon_chevron_up:after{content:"\F026"}.scrivito_icon_chevron_right:after{content:"\F027"}.scrivito_icon_chevron_left:after{content:"\F028"}.scrivito_icon_group:after{content:"\F029"}.scrivito_icon_new_window:after{content:"\F02C"}.scrivito_icon_settings:after{content:"\F030"}.scrivito_icon_history:after{content:"\F032"}.scrivito_icon_publish:after{content:"\F033"}.scrivito_icon_logout:after{content:"\F034"}.scrivito_icon_edited:after{content:"\F035"}.scrivito_icon_pagemenu:after{content:"\F037"}.scrivito_icon_widget:after{content:"\F03A"}.scrivito_icon_moved:after{content:"\F03C"}.scrivito_icon_edit:after{content:"\F03D"}.scrivito_icon_cancel:after{content:"\F03E"}.scrivito_icon_ok:after{content:"\F03F"}.scrivito_icon_drag:after{content:"\F042"}.scrivito_icon_title:after{content:"\F043"}.scrivito_icon_download:after{content:"\F044"}.scrivito_icon_upload:after{content:"\F045"}.scrivito_icon_comments:after{content:"\F046"}.scrivito_icon_share:after{content:"\F047"}.scrivito_icon_transfer:after{content:"\F02D"}.scrivito_icon_max:after{content:"\F049"}.scrivito_icon_min:after{content:"\F04A"}.scrivito_icon_hide_ui:after{content:"\F04B"}.scrivito_icon_connection_error:after{content:"\F04C"}.scrivito_icon_show_ui:after{content:"\F04D"}.scrivito_icon_link:after,.scrivito_icon_link_perm:after{content:"\F04E"}.scrivito_icon_rename:after{content:"\F04F"}.scrivito_icon_link_target:after{content:"\F060"}.scrivito_icon_eye:after{content:"\F063"}.scrivito_icon_no_publish:after{content:"\F065"}.scrivito_icon_structure_widget:before{content:"\F066"!important}.scrivito_icon_move_left:after{content:"\F06B"}.scrivito_icon_changes_state_edited:after{content:"\F080"}.scrivito_icon_changes_state_new:after{content:"\F082"}.scrivito_icon_changes_state_deleted:after{content:"\F083"}.scrivito_icon_plus:after{content:"\F084"}.scrivito_icon_ok2:after{content:"\F086"}.scrivito_icon_text:after{content:"\F100"}.scrivito_icon_image:after{content:"\F061"}.scrivito_icon_headline:after{content:"\F102"}.scrivito_icon_video:after{content:"\F103"}.scrivito_icon_map:after{content:"\F104"}.scrivito_icon_table:after{content:"\F105"}.scrivito_icon_slider:after{content:"\F106"}.scrivito_icon_list:after{content:"\F107"}.scrivito_icon_downloads:after{content:"\F108"}.scrivito_icon_person:after{content:"\F109"}.scrivito_icon_presentation:after{content:"\F10A"}.scrivito_icon_login:after{content:"\F10B"}.scrivito_icon_teaser:after{content:"\F10C"}.scrivito_icon_interactive:after{content:"\F10D"}.scrivito_icon_hr:after{content:"\F10E"}.scrivito_icon_1col:after{content:"\F10F"}.scrivito_icon_2cols:after{content:"\F110"}.scrivito_icon_2colsl:after{content:"\F111"}.scrivito_icon_2colsr:after{content:"\F112"}.scrivito_icon_3cols:after{content:"\F113"}.scrivito_icon_workspaces:after{content:"\F114"}.scrivito_icon_tag:after{content:"\F115"}.scrivito_icon_box:after{content:"\F11D"}.scrivito_icon_puzzle:after{content:"\F11E"}.scrivito_icon_search2:after{content:"\F11F"}.scrivito_icon_dates:after{content:"\F120"}.scrivito_icon_newsletter:after{content:"\F121"}.scrivito_icon_special:after{content:"\F122"}.scrivito_icon_ok_box_empty:after{content:"\F123"}.scrivito_icon_ok_box:after{content:"\F124"}.scrivito_icon_generic:after,.scrivito_icon_page:after,.scrivito_modal_prompt .scrivito_modal_body ul li:before{content:"\F125"}.scrivito_icon_pdf:after{content:"\F126"}.scrivito_icon_txt:after{content:"\F127"}.scrivito_icon_zip:after{content:"\F128"}.scrivito_icon_doc:after{content:"\F129"}.scrivito_icon_xls:after{content:"\F12A"}.scrivito_icon_ppt:after{content:"\F12B"}.scrivito_icon_file_plus:after{content:"\F12C"}.scrivito_icon_movie:after{content:"\F12D"}.scrivito_icon_music:after{content:"\F12E"}.scrivito_icon_list_medium:after{content:"\F12F"}.scrivito_icon_th_small:after{content:"\F130"}.scrivito_icon_th_medium:after{content:"\F131"}.scrivito_icon_th:after{content:"\F132"}.scrivito_icon_th_large:after{content:"\F133"}.scrivito_icon_content_browser:after{content:"\F135"}.scrivito_icon_sort:after{content:"\F138"}.scrivito_icon_sort_up:after{content:"\F139"}.scrivito_icon_sort_down:after{content:"\F13A"}.scrivito_icon_mobile:after{content:"\F13B"}.scrivito_icon_tablet:after{content:"\F13C"}.scrivito_icon_laptop:after{content:"\F13D"}.scrivito_icon_desktop:after{content:"\F13E"}.scrivito_icon_marker_plus:after{content:"\F13F"}.scrivito_icon_marker_minus:after{content:"\F140"}.scrivito_icon_clone:after{content:"\F03A"}.scrivito_editing_marker.scrivito_widget_moved_icon:after{font-family:scrivito_iconsregular;font-style:normal;font-weight:400;vertical-align:middle;padding:0;font-size:10px;line-height:5px;color:#eee;display:block;text-shadow:0 0 1px #111,-1px 0 3px #555;content:"\F03C";position:absolute;top:10px;right:0}@font-face{font-family:scrivito_customer_icons;src:url(data:application/x-font-woff;charset=utf-8;base64,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) format("woff");font-weight:400;font-style:normal}.scrivito_customer_icon{font-family:scrivito_customer_icons;font-style:normal;font-weight:400;color:#444;font-size:26px;line-height:13px!important;vertical-align:middle;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.scrivito_customer_icon:hover{cursor:pointer}.scrivito_customer_icon.sci_scrivito:after,.scrivito_customer_icon:after{content:"\F000"}.scrivito_customer_icon.sci_up:after{content:"\F001"}.scrivito_customer_icon.sci_right:after{content:"\F002"}.scrivito_customer_icon.sci_down:after{content:"\F003"}.scrivito_customer_icon.sci_left:after{content:"\F004"}.scrivito_customer_icon.sci_up_arrow:after{content:"\F005"}.scrivito_customer_icon.sci_down_arrow:after{content:"\F006"}.scrivito_customer_icon.sci_arrows:after{content:"\F007"}.scrivito_customer_icon.sci_user:after{content:"\F008"}.scrivito_customer_icon.sci_users:after{content:"\F009"}.scrivito_customer_icon.sci_timetable:after{content:"\F00A"}.scrivito_customer_icon.sci_cal:after{content:"\F00B"}.scrivito_customer_icon.sci_mail:after{content:"\F00C"}.scrivito_customer_icon.sci_phone:after{content:"\F00D"}.scrivito_customer_icon.sci_mobile:after{content:"\F00E"}.scrivito_customer_icon.sci_fax:after{content:"\F00F"}.scrivito_customer_icon.sci_map:after{content:"\F010"}.scrivito_customer_icon.sci_tag:after{content:"\F011"}.scrivito_customer_icon.sci_inbox:after{content:"\F012"}.scrivito_customer_icon.sci_suitcase:after{content:"\F013"}.scrivito_customer_icon.sci_lens:after{content:"\F014"}.scrivito_customer_icon.sci_new:after{content:"\F015"}.scrivito_customer_icon.sci_copy:after{content:"\F016"}.scrivito_customer_icon.sci_cut:after{content:"\F017"}.scrivito_customer_icon.sci_paste:after{content:"\F018"}.scrivito_customer_icon.sci_trashcan:after{content:"\F019"}.scrivito_customer_icon.sci_image:after{content:"\F01A"}.scrivito_customer_icon.sci_images:after{content:"\F01B"}.scrivito_customer_icon.sci_eye:after{content:"\F01C"}.scrivito_customer_icon.sci_globe:after{content:"\F01D"}.scrivito_customer_icon.sci_str_globe:after{content:"\F01E"}.scrivito_customer_icon.sci_filter:after{content:"\F01F"}.scrivito_customer_icon.sci_exit:after{content:"\F020"}.scrivito_customer_icon.sci_key:after{content:"\F021"}.scrivito_customer_icon.sci_lock:after{content:"\F022"}.scrivito_customer_icon.sci_gear:after{content:"\F023"}.scrivito_customer_icon.sci_gears:after{content:"\F024"}.scrivito_customer_icon.sci_tools:after{content:"\F025"}.scrivito_customer_icon.sci_undo:after{content:"\F026"}.scrivito_customer_icon.sci_puzzle:after{content:"\F027"}.scrivito_customer_icon.sci_text:after{content:"\F028"}.scrivito_customer_icon.sci_certificate:after{content:"\F029"}.scrivito_customer_icon.sci_database:after{content:"\F02A"}.scrivito_customer_icon.sci_chat:after{content:"\F02B"}.scrivito_customer_icon.sci_relation:after{content:"\F02C"}.scrivito_customer_icon.sci_link:after{content:"\F02D"}.scrivito_customer_icon.sci_code:after{content:"\F02E"}.scrivito_customer_icon.sci_pen:after{content:"\F02F"}.scrivito_customer_icon.sci_circ_pen:after{content:"\F030"}.scrivito_customer_icon.sci_plus:after{content:"\F031"}.scrivito_customer_icon.sci_minus:after{content:"\F032"}.scrivito_customer_icon.sci_check:after{content:"\F033"}.scrivito_customer_icon.sci_cross:after{content:"\F034"}.scrivito_customer_icon.sci_question:after{content:"\F035"}.scrivito_customer_icon.sci_exclamation:after{content:"\F036"}.scrivito_customer_icon.sci_info:after{content:"\F037"}.scrivito_customer_icon.sci_time:after{content:"\F038"}.scrivito_customer_icon.sci_inv_plus:after{content:"\F039"}.scrivito_customer_icon.sci_inv_minus:after{content:"\F03A"}.scrivito_customer_icon.sci_inv_check:after{content:"\F03B"}.scrivito_customer_icon.sci_inv_cross:after{content:"\F03C"}.scrivito_customer_icon.sci_warning:after{content:"\F03D"}.scrivito_customer_icon.sci_wand:after{content:"\F03E"}.scrivito_customer_icon.sci_folder:after{content:"\F03F"}.scrivito_customer_icon.sci_collection:after{content:"\F040"}.scrivito_customer_icon.sci_sheet:after{content:"\F041"}.scrivito_customer_icon.sci_pdf:after{content:"\F042"}.scrivito_customer_icon.sci_txt:after{content:"\F043"}.scrivito_customer_icon.sci_zip:after{content:"\F044"}.scrivito_customer_icon.sci_doc:after{content:"\F045"}.scrivito_customer_icon.sci_xls:after{content:"\F046"}.scrivito_customer_icon.sci_ppt:after{content:"\F047"}.scrivito_customer_icon.sci_video:after{content:"\F049"}.scrivito_customer_icon.sci_audio:after{content:"\F04A"}.scrivito_customer_icon.sci_list:after{content:"\F04B"}.scrivito_customer_icon.sci_thumbnails:after{content:"\F04C"}.scrivito_customer_icon.sci_rounded_square:after{content:"\F04D"}@-webkit-keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}to{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}@keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}to{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}.medium-editor-anchor-preview{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;left:0;line-height:1.4;max-width:280px;position:absolute;text-align:center;top:0;word-break:break-all;word-wrap:break-word;visibility:hidden;z-index:2000}.medium-editor-anchor-preview a{color:#fff;display:inline-block;margin:5px 5px 10px}.medium-editor-anchor-preview-active{visibility:visible}.medium-editor-dragover{background:#ddd}.medium-editor-image-loading{-webkit-animation:medium-editor-image-loading 1s infinite ease-in-out;animation:medium-editor-image-loading 1s infinite ease-in-out;background-color:#333;border-radius:100%;display:inline-block;height:40px;width:40px}.medium-editor-placeholder{position:relative}.medium-editor-placeholder:after{content:attr(data-placeholder)!important;font-style:italic;position:absolute;left:0;top:0;white-space:pre;padding:inherit;margin:inherit}.medium-editor-placeholder-relative{position:relative}.medium-editor-placeholder-relative:after{content:attr(data-placeholder)!important;font-style:italic;position:relative;white-space:pre;padding:inherit;margin:inherit}.medium-toolbar-arrow-over:before,.medium-toolbar-arrow-under:after{border-style:solid;content:"";display:block;height:0;left:50%;margin-left:-8px;position:absolute;width:0}.medium-toolbar-arrow-under:after{border-width:8px 8px 0}.medium-toolbar-arrow-over:before{border-width:0 8px 8px}.medium-editor-toolbar{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;left:0;position:absolute;top:0;visibility:hidden;z-index:2000}.medium-editor-toolbar ul{margin:0;padding:0}.medium-editor-toolbar li{float:left;list-style:none;margin:0}.medium-editor-toolbar li button{box-sizing:border-box;cursor:pointer;display:block;font-size:14px;line-height:1.33;margin:0;padding:15px;text-decoration:none}.medium-editor-toolbar li button:focus{outline:none}.medium-editor-toolbar li .medium-editor-action-underline{text-decoration:underline}.medium-editor-toolbar li .medium-editor-action-pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px;font-weight:100;padding:15px 0}.medium-editor-toolbar-active{visibility:visible}.medium-editor-sticky-toolbar{position:fixed;top:1px}.medium-editor-relative-toolbar{position:relative}.medium-editor-toolbar-active.medium-editor-stalker-toolbar{-webkit-animation:medium-editor-pop-upwards .16s forwards linear;animation:medium-editor-pop-upwards .16s forwards linear}.medium-editor-action-bold{font-weight:bolder}.medium-editor-action-italic{font-style:italic}.medium-editor-toolbar-form{display:none}.medium-editor-toolbar-form a,.medium-editor-toolbar-form input{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.medium-editor-toolbar-form .medium-editor-toolbar-form-row{line-height:14px;margin-left:5px;padding-bottom:5px}.medium-editor-toolbar-form .medium-editor-toolbar-input,.medium-editor-toolbar-form label{border:none;box-sizing:border-box;font-size:14px;margin:0;padding:6px;width:316px;display:inline-block}.medium-editor-toolbar-form .medium-editor-toolbar-input:focus,.medium-editor-toolbar-form label:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;outline:0}.medium-editor-toolbar-form a{display:inline-block;font-size:24px;font-weight:bolder;margin:0 10px;text-decoration:none}.medium-editor-toolbar-form-active{display:block}.medium-editor-toolbar-actions:after{clear:both;content:"";display:table}.medium-editor-element{word-wrap:break-word;min-height:30px}.medium-editor-element img{max-width:100%}.medium-editor-element sub{vertical-align:sub}.medium-editor-element sup{vertical-align:super}.medium-editor-hidden{display:none}.medium-toolbar-arrow-under:after{top:60px;border-color:#57ad68 transparent transparent}.medium-toolbar-arrow-over:before{top:-8px;border-color:transparent transparent #57ad68}.medium-editor-toolbar{background-color:#57ad68}.medium-editor-toolbar li{padding:0}.medium-editor-toolbar li button{min-width:60px;height:60px;border-right:1px solid #9ccea6;background-color:transparent;color:#fff;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#346a3f;color:#fff}.medium-editor-toolbar li .medium-editor-button-active{background-color:#23482a;color:#fff}.medium-editor-toolbar li .medium-editor-button-last{border-right:none}.medium-editor-toolbar-form .medium-editor-toolbar-input{height:60px;background:#57ad68;color:#fff}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder,.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form a{color:#fff}.medium-editor-toolbar-anchor-preview{background:#57ad68;color:#fff}.medium-editor-placeholder:after{color:#9ccea6}.medium-toolbar-arrow-under:after{top:auto}.medium-editor-toolbar{z-index:111112;margin:0 10px;background:rgba(67,148,57,.9);border-radius:4px}.medium-editor-toolbar li button{height:40px;min-width:40px;padding:10px;border:none;margin:1px;background:rgba(0,0,0,.1)}.medium-editor-toolbar li button *{color:inherit}.medium-editor-toolbar li button .scrivito_customer_icon{font-size:18px}.medium-editor-toolbar-form .scrivito_customer_icon{font-size:18px;min-width:40px;height:40px;line-height:40px!important;display:inline-block;text-align:center;color:#fff;margin:1px;background:rgba(0,0,0,.1)}.medium-editor-toolbar-form .scrivito_customer_icon:hover{background:rgba(0,0,0,.3)}.medium-editor-toolbar-form .medium-editor-toolbar-input{margin:1px;height:40px;background:rgba(0,0,0,.3);vertical-align:middle}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle{margin:1px;height:40px;line-height:40px!important;color:#fff;background:rgba(0,0,0,.1);display:block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle:hover{background:rgba(0,0,0,.3)}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle label{font-weight:400;padding:0;margin:0;width:100%;cursor:pointer}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle i{background:none!important}input.medium-editor-toolbar-anchor-target{display:none}input.medium-editor-toolbar-anchor-target+i{display:none!important}input.medium-editor-toolbar-anchor-target+i+i,input.medium-editor-toolbar-anchor-target:checked+i{display:inline-block!important}input.medium-editor-toolbar-anchor-target:checked+i+i{display:none!important}[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:not(:focus):before{content:attr(data-scrivito-editors-placeholder);color:rgba(64,64,64,.53);display:inline-block;font-size:13px;font-style:normal;font-weight:400;line-height:28px;margin:0;padding:0;text-decoration:none;vertical-align:middle;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:focus:after,[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:focus:before{content:"\200B";color:transparent;display:inline-block}html *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}[data-scrivito-field-type=widgetlist],[data-scrivito-private-widget]{position:relative}.scrivito_editing_marker,.scrivito_editing_marker_title,.scrivito_icon{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.scrivito_editing_marker{display:block;position:absolute;color:#fff;font-size:12px;line-height:12px;height:18px;text-align:center;padding:2px 8px;margin:-2px 0 0 -2px;vertical-align:middle;z-index:11111;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:background .6s ease-in-out;transition:background .6s ease-in-out}.scrivito_editing_marker:active,.scrivito_editing_marker:hover{-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.scrivito_editing_marker .scrivito_icon{padding:0;font-size:10px;line-height:8px;color:#fff}.scrivito_editing_marker .scrivito_icon:hover{cursor:pointer}[data-scrivito-display-mode=editing] .scrivito_editing_marker .scrivito_icon:before{content:"\F000"}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker .scrivito_icon:before{content:"\F010"}[data-scrivito-private-child-list-path]>.scrivito_editing_marker,[data-scrivito-private-widget]>.scrivito_editing_marker{right:0}[data-scrivito-private-child-list-path]{position:relative}.ui-sortable .scrivito_editing_marker:hover,.ui-sortable .scrivito_editing_marker:hover .scrivito_icon{cursor:move}.scrivito_file_dragover{background:hsla(0,0%,100%,.5);opacity:.5!important;outline:3px dashed #ccc}.scrivito_editing_marker .scrivito_editing_marker_title{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;display:block;position:absolute;top:0;right:29px;color:#fff;font-size:11px;line-height:8px;height:18px;text-align:center;padding:5px 8px;margin:0;white-space:nowrap;background:#439439;opacity:0;border-radius:3px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;pointer-events:none;max-width:200px;text-overflow:ellipsis;overflow:hidden}[data-scrivito-display-mode=added] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=deleted] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=diff] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title{opacity:1;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.scrivito_structure_marker{display:block;position:absolute;color:#fff;font-size:13px;line-height:14px;text-align:center;padding:0 8px;margin:-2px 0 0;vertical-align:middle;min-height:10px;background:#111;background:orange;background:rgba(255,165,0,.4);z-index:11111;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:background .6s ease-in-out;transition:background .6s ease-in-out}.scrivito_structure_marker:active,.scrivito_structure_marker:hover{cursor:pointer;background:orange;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.scrivito_structure_marker .scrivito_icon{padding:0;font-size:8px;line-height:8px;color:#fff}.scrivito_structure_marker .scrivito_icon:hover{cursor:pointer}.scrivito_empty_widget_field>.scrivito_structure_marker,[data-scrivito-private-widget]>.scrivito_structure_marker{left:45%}.scrivito_option_marker:hover{cursor:pointer}.scrivito_option_marker.scrivito_bottom,.scrivito_option_marker.scrivito_top{display:block;position:absolute;height:18px;width:18px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_bottom .scrivito_icon,.scrivito_option_marker.scrivito_top .scrivito_icon{font-size:16px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_option_marker.scrivito_top{top:-9px;left:50%;margin-left:-9px;border-radius:3px}[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_option_marker.scrivito_bottom{bottom:-9px;left:50%;margin-left:-9px;border-radius:3px}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget]>.scrivito_option_marker.scrivito_bottom,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget]>.scrivito_option_marker.scrivito_top{opacity:1;background:#439439}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget]>.scrivito_option_marker.scrivito_bottom,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget]>.scrivito_option_marker.scrivito_top{opacity:1;background:#ff9f00}.scrivito_option_marker.scrivito_visible{opacity:1;background:#000}.scrivito_option_marker.scrivito_left,.scrivito_option_marker.scrivito_right{display:block;position:absolute;height:18px;width:18px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_left .scrivito_icon,.scrivito_option_marker.scrivito_right .scrivito_icon{font-size:16px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_left,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_right{opacity:1;background:orange}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_left{top:50%;left:-9px;margin-top:-9px;border-radius:3px}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_right{top:50%;right:-9px;margin-top:-9px;border-radius:3px}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]{position:relative;margin-top:20px;padding:30px 0 20px;min-height:100%;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .2s linear;transition:box-shadow .2s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:after{clear:both}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget-option]{-webkit-box-shadow:0 0 0 2px #ff9f00!important;box-shadow:0 0 0 2px #ff9f00!important}.scrivito_option_marker.scrivito_handle{display:block;position:absolute;height:18px;width:26px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;top:-2px;left:50%;margin-left:-13px;border-radius:0 0 3px 3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_handle .scrivito_icon{font-size:10px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget-option] .scrivito_option_marker.scrivito_handle{opacity:1;background:orange!important}[data-scrivito-display-mode=editing] .scrivito_show_col [data-scrivito-private-structure-widget-option]{-webkit-box-shadow:0 0 0 2px rgba(255,159,0,.3);box-shadow:0 0 0 2px rgba(255,159,0,.3)}[data-scrivito-display-mode=editing] .scrivito_show_col [data-scrivito-private-structure-widget-option] .scrivito_option_marker.scrivito_handle{opacity:1;background:rgba(255,159,0,.7)}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error]{-webkit-box-shadow:0 0 0 2px #ff9f00!important;box-shadow:0 0 0 2px #ff9f00!important}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00!important;opacity:1}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_icon:before{content:"\F021"}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-validation-error] .scrivito_editing_marker,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00!important}.scrivito_element_overlay{opacity:.4;filter:alpha(opacity=40);background-color:#aaa;background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px;-webkit-animation:progress-bar-stripes 1s linear infinite;-moz-animation:progress-bar-stripes 1s linear infinite;-ms-animation:progress-bar-stripes 1s linear infinite;-o-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite;pointer-events:none}.scrivito_element_overlay img{opacity:.5;filter:alpha(opacity=50)}.scrivito_overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:-1;opacity:0;-webkit-transition:opacity .1s linear;transition:opacity .1s linear;background:rgba(0,0,0,.8)}.scrivito_overlay.scrivito_show{z-index:333333;opacity:.65;-webkit-transition:opacity .6s linear;transition:opacity .6s linear}.scrivito_overlay .scrivito_processing{display:block;margin:0 auto;text-align:center;position:absolute;left:0;top:48%;width:100%;font-size:90px;color:#fff;text-shadow:0 0 5px rgba(0,0,0,.3);-webkit-animation:rotation 5s infinite linear;-moz-animation:rotation 5s infinite linear;-o-animation:rotation 5s infinite linear;animation:rotation 5s infinite linear}.scrivito_spinning{display:inline-block;margin:0 5px 0 0;padding:0!important;-webkit-animation:rotation 4s infinite linear;-moz-animation:rotation 4s infinite linear;-o-animation:rotation 4s infinite linear;animation:rotation 4s infinite linear}[data-scrivito-display-mode=added] [data-scrivito-field-type],[data-scrivito-display-mode=deleted] [data-scrivito-field-type],[data-scrivito-display-mode=diff] [data-scrivito-field-type],[data-scrivito-display-mode=editing] [data-scrivito-field-type]{min-height:28px}[data-scrivito-display-mode=added] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=deleted] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=diff] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=widgetlist]{min-height:35px}[data-scrivito-display-mode=editing] .scrivito_empty_widget_field:empty{background:#ccc;min-height:90px;opacity:.5;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999}[data-scrivito-display-mode=editing] .scrivito_empty_widget_field:empty:after{font-family:scrivito_iconsregular;font-style:normal;font-weight:400;color:#aaa;font-size:55px;width:100%;display:block;line-height:90px;text-align:center;text-decoration:none;content:"\F084";cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_empty_widget_field.scrivito_widget_drop_allowed,.scrivito_widget_drop_placeholder{-webkit-box-shadow:0 0 5px rgba(152,187,225,.9) inset;background:rgba(152,187,225,.3);box-shadow:inset 0 0 5px rgba(152,187,225,.9);max-height:150px;min-height:100px;visibility:visible!important}.scrivito_content_upload[data-scrivito-field-type=widgetlist],.scrivito_content_upload[data-scrivito-private-widget]{background:rgba(152,187,225,.3) url("data:image/gif;base64,R0lGODlhSwAyALMKAIiIiOHh4ZSUlLi4uPPz86ampqurq+vr6/n0o8/Pz////wAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3YzY1NzlkMy1jY2ZlLTQwZjEtYTRlYS0yOWI2YmYzNTM0YzYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODk1NkRERkVBM0U0MTFFNEE1NzZCRjVDOTAzQ0E2MzUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODk1NkRERkRBM0U0MTFFNEE1NzZCRjVDOTAzQ0E2MzUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NGQ4OWM2YzktNjk0Mi00NTE0LWJjYmQtOGQwMzYzN2VlNDdiIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjdjNjU3OWQzLWNjZmUtNDBmMS1hNGVhLTI5YjZiZjM1MzRjNiIvPiA8L3JkZjpE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") no-repeat center 5px;min-height:55px}.scrivito_content_upload[data-scrivito-field-type=widgetlist] *,.scrivito_content_upload[data-scrivito-private-widget] *{opacity:.2}body.scrivito_editing_active .scrivito_empty_widget_field.scrivito_widget_drop_allowed{max-height:200px;min-height:100px}[data-scrivito-private-widget] .scrivito_empty_widget_field{min-height:100px}.ui-sortable-helper{opacity:.5}[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"].scrivito_element_overlay{width:100%;opacity:1;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999;min-height:90px;max-height:90px;opacity:.5}[data-scrivito-display-mode=added] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=added] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=deleted] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=deleted] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=diff] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=diff] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=editing] img[data-scrivito-image-placeholder]:not(.scrivito_element_overlay),[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"]:not(.scrivito_element_overlay){background:#ccc url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3NpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1MzcwM2M0NS0xOGJiLTRlMzgtYTY4NC0wODU1MGI5YjdkNTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTc4NTYxRkVFODNCMTFFNUI0QUU5MjU4NjFDQ0M1MkYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTc4NTYxRkRFODNCMTFFNUI0QUU5MjU4NjFDQ0M1MkYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzNjOWZlZDYtZWZhYy00NzI2LTliODUtZWUwODE0NjRlNmRkIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjUzNzAzYzQ1LTE4YmItNGUzOC1hNjg0LTA4NTUwYjliN2Q1OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pg3QlVQAAAMESURBVHja7J3Pi4xhAMffWcsaxFoclGRTtBIO1BYOJFqiyJTEgaKWOPhV0tbWKtse5A/garPvSZTFZQ8uDg5qXLSFG3KRi5LG92meqe1t3x/zjpl53nk/n/oepufpfZv3s8/vd9pCpVLxwB26eAQIAYQgBBCCEEAIQgAhCAGEAEIQAghBCCAEIYAQhABCACEIAYQgBBCCEEBIXulu5sV93+/YF4dLpVKBFkKXBQhBCORmUA9hRCln6Bn1K/c7WcgbzVBm5szE2j1bipsp7qDLostymmXKoLJS+aK8U/4yqLeeBcpd5bvyWplS3iqflZMIaS1mFWwGlztKMVC2zpZdQkjrOK8cj6nzQNnYwD22ziMbISFcSVBnoXKxgXuMKlcREs8iZXvCurtS3sO0rBPKbU1r+xASTU8ddZekvMc1O06tsOMUQiL4pfxIWHc2xfVXK+fmfL6sVrIeIdE8SVhvKsW1hwODeY+dXiMkgjHla0ydaeVZndcthkwYzqiVbENION+UA8qnkPIXyiml3hPJs8qakHXPOEKi+aBsUS4ok8or5aEypBxWfqb4rtcjyofUSvYhJJrfVsJp5ZCVM53yWkeVTTF1JiSlgJDWcDNBnZ1em/fJ8iLE7BbvTlj3CEIax3QzGyLKb2Tli2RdSJedbZkJwEfl2Dx1atskCGkyZlpctjOwAa+62WgWlPsD9WrbJAhpEkuVR1710GogULZYea7stZ+D2yTO050xGeZw6qVdn0Stxo2UgzZFhDSHtcqMl+xQarldr2Tu7N3FLsv8RZvTQHOW/kd5b9cQk159J4S9yqqsCXGxhdRW5jXMpt9EXlavrrWQWwEZucMlIWbD8J6Xc1wRsll57PEmpRMPwAy+T73q+XbucWFQN2uLcYeeyWzehZS9Nv48Ie7td9YhjCGQ9zFkj+/7va48gAQ/GOrvdCFjtAO6LIQAQhAC/58C/1iSFgIIQQggBCGAEIQAQhACCAGEIAQQghBACEIAIQgBhABCEAIIQQggBCGAkLzyT4ABAOS4au4Rxw5hAAAAAElFTkSuQmCC") no-repeat 50%!important;width:100%;opacity:1;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999;min-height:90px;max-height:90px;opacity:.5}[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"].scrivito_file_dragover{background-color:hsla(0,0%,80%,.5)!important}[data-scrivito-display-mode=editing] [data-scrivito-field-type=date],[data-scrivito-display-mode=editing] [data-scrivito-field-type=enum],[data-scrivito-display-mode=editing] [data-scrivito-field-type=html],[data-scrivito-display-mode=editing] [data-scrivito-field-type=linklist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=multienum],[data-scrivito-display-mode=editing] [data-scrivito-field-type=reference],[data-scrivito-display-mode=editing] [data-scrivito-field-type=referencelist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=string],[data-scrivito-display-mode=editing] [data-scrivito-field-type=text]{outline:1px solid transparent}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]{position:relative;overflow:visible;margin-bottom:10px;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:after{clear:both}[data-scrivito-display-mode=editing] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-widget]{margin-bottom:0}[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_active,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget],body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist]{-webkit-box-shadow:0 0 0 2px #439439;box-shadow:0 0 0 2px #439439}[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_active>.scrivito_editing_marker,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_editing_marker,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist] .scrivito_editing_marker{background:#439439}body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist]{min-height:100px}[data-scrivito-private-widget-placement-modification=deleted]{-webkit-box-shadow:0 0 0 2px gray;box-shadow:0 0 0 2px gray}[data-scrivito-private-widget-placement-modification=deleted] *{opacity:.7}[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=deleted] *,[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker .scrivito_icon{opacity:1}[data-scrivito-private-child-list-modification=edited],[data-scrivito-private-widget-modification=edited],[data-scrivito-private-widget-placement-modification=new]{-webkit-box-shadow:0 0 0 2px #4f749d;box-shadow:0 0 0 2px #4f749d}[data-scrivito-private-obj-modification=new],[data-scrivito-private-widget-modification=new]{-webkit-box-shadow:0 0 0 2px #4c8c07;box-shadow:0 0 0 2px #4c8c07}[data-scrivito-private-obj-modification=deleted],[data-scrivito-private-widget-modification=deleted]{-webkit-box-shadow:0 0 0 2px #ff1f01;box-shadow:0 0 0 2px #ff1f01}[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=deleted],[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=edited],[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=new]{outline:2px dotted transparent;-webkit-transition:outline-color .3s linear;transition:outline-color .3s linear}.scrivito_details_dialog [data-scrivito-field-modification=edited],[data-scrivito-field-modification=edited],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=edited]{outline:2px dotted #4f749d}.scrivito_details_dialog [data-scrivito-field-modification=new],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=new]{outline:2px dotted #4c8c07}.scrivito_details_dialog [data-scrivito-field-modification=deleted],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=deleted]{outline:2px dotted #ff1f01}[data-scrivito-field-type=html] .scrivito_insertion,[data-scrivito-field-type=string] .scrivito_insertion,[data-scrivito-field-type=text] .scrivito_insertion{background-color:rgba(76,140,7,.3)}[data-scrivito-field-type=html] .scrivito_deletion,[data-scrivito-field-type=string] .scrivito_deletion,[data-scrivito-field-type=text] .scrivito_deletion{background-color:rgba(255,31,1,.3);text-decoration:line-through}.scrivito_editing_marker{background:#439439;background:rgba(67,148,57,.5)}.scrivito_editing_marker:active,.scrivito_editing_marker:hover,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-child-list-path]>.scrivito_editing_marker{background:#439439}[data-scrivito-field-modification=edited] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=new] .scrivito_editing_marker{background:#4f749d}[data-scrivito-field-modification=new] .scrivito_editing_marker,[data-scrivito-private-widget-modification=new] .scrivito_editing_marker,[data-scrivito-private-widget-modification=new] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=new][data-scrivito-private-widget-placement-modification=new] .scrivito_editing_marker{background:#4c8c07}[data-scrivito-field-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=deleted] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=deleted][data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker{background:#ff1f01}:not([data-scrivito-private-widget-modification])[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,:not([data-scrivito-private-widget-modification])[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker .scrivito_editing_marker_title{background:gray}.scrivito_hidden,[data-scrivito-private-page-config]{display:none}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path]{position:relative;overflow:visible;min-height:25px;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker{background:rgba(31,146,210,.5);position:absolute;top:0;right:0}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker .scrivito_editing_marker_title{background:rgba(31,146,210,0);-webkit-transition:all .3s linear;transition:all .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active{-webkit-box-shadow:0 0 0 2px #1f92d2;box-shadow:0 0 0 2px #1f92d2;z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active>.scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active>.scrivito_editing_marker .scrivito_editing_marker_title{background:#1f92d2}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]{-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:after{clear:both}[data-scrivito-private-structure-widget]{position:relative;overflow:visible;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=added] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=deleted] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=diff] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]{padding-top:20px}[data-scrivito-display-mode=added] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=deleted] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=diff] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=editing] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget]{padding-top:0}[data-scrivito-private-structure-widget]>.scrivito_editing_marker{position:absolute;top:0}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]>.scrivito_editing_marker{background:rgba(255,159,0,.5)}[data-scrivito-private-structure-widget].scrivito_active{z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget].scrivito_active{-webkit-box-shadow:0 0 0 2px #ff9f00;box-shadow:0 0 0 2px #ff9f00}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget].scrivito_active>.scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]>.scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00}[data-scrivito-display-mode=editing] [data-scrivito-content-widget]{position:relative;overflow:visible;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-content-widget] .scrivito_editing_marker{background:rgba(67,148,57,.5);position:absolute;top:0;right:0}[data-scrivito-display-mode=editing] [data-scrivito-content-widget].scrivito_active{-webkit-box-shadow:0 0 0 2px #439439;box-shadow:0 0 0 2px #439439;z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-content-widget].scrivito_active>.scrivito_editing_marker{background:#439439}.scrivito_details_dialog iframe{border:0;width:100%}.scrivito_dialog{background:transparent;padding:15px;margin:0;overflow-x:hidden}.scrivito_dialog img{max-width:100%}.scrivito_dialog code{word-wrap:break-word}.scrivito_dialog .scrivito_content_group{background:#f3f3f3;padding:10px;margin:0 0 15px;border-radius:4px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.25);box-shadow:0 0 3px rgba(0,0,0,.25)}.scrivito_dialog .scrivito_content_group h1,.scrivito_dialog .scrivito_content_group h2,.scrivito_dialog .scrivito_content_group h3,.scrivito_dialog .scrivito_content_group h4,.scrivito_dialog .scrivito_content_group h5,.scrivito_dialog .scrivito_content_group h6{margin:0 0 8px;color:#666;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_dialog .scrivito_content_group img{max-width:100%;margin:0}.scrivito_dialog [data-scrivito-field-type=date],.scrivito_dialog [data-scrivito-field-type=enum],.scrivito_dialog [data-scrivito-field-type=reference]{color:#555;display:block;font-size:14px;min-height:31px;margin:0;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_dialog [data-scrivito-field-type=multienum]{color:#555;display:block;font-size:14px;height:auto;margin:0;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}[data-scrivito-field-type=referencelist] ul li{background:#fff;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_permalink_editor{position:relative}.scrivito_permalink_editor input{background:#fff;border:1px solid #ddd;border-radius:5px;color:#555;display:block;font-size:14px;min-height:32px;margin:0;padding:4px 150px 4px 12px;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_permalink_editor input:disabled{background:#ddd;cursor:not-allowed}.scrivito_permalink_editor .scrivito_editing_button{position:absolute;top:0;right:0;color:#555;cursor:pointer;border:0;display:inline-block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:14px;margin:0 10px 0 0;min-height:14px;min-width:30px;padding:8px 15px;text-align:center;vertical-align:middle;background:#fcfcfc;border-radius:5px;user-select:none;min-width:120px;padding:9px 15px;margin:0;text-decoration:none;background:#658b51;color:#fff;border-top-left-radius:0;border-bottom-left-radius:0}.scrivito_permalink_editor .scrivito_editing_button:hover{background:#7ea46a}.scrivito_permalink_editor .scrivito_editing_button:active{background:#52783e}.scrivito_permalink_editor .scrivito_clear{position:absolute;top:5px;right:125px;line-height:24px;display:block;cursor:pointer;padding:0 5px;text-align:center}.scrivito_permalink_editor .scrivito_clear:before{font-family:scrivito_iconsregular;float:left;display:block;padding:0;color:#888;content:"\F03E";font-size:18px}.scrivito_permalink_editor input.scrivito_error{color:#aa4040;background-color:rgba(170,64,64,.2);background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px}.scrivito_permalink_editor a.scrivito_disabled{cursor:not-allowed;background:#bbb}.scrivito_permalink_editor a.scrivito_disabled:hover{background:#bbb}.scrivito_permalink_editor a.scrivito_disabled.scrivito_saving,.scrivito_permalink_editor a.scrivito_disabled.scrivito_saving:hover{cursor:pointer;background:#7ea46a}.scrivito_permalink_editor div.scrivito_error{color:#aa4040;font-weight:700;padding:3px 10px;display:none}.scrivito_permalink_editor div.scrivito_error:before{font-family:scrivito_iconsregular;float:left;display:block;padding:0 7px 0 0;color:#aa4040;content:"\F021";font-weight:400}.scrivito_full_screen_panel{position:fixed;top:0;left:0;width:100%;height:100%;overflow:auto;z-index:111222111}[data-scrivito-display-mode=editing] [data-scrivito-field-type=date],[data-scrivito-display-mode=editing] [data-scrivito-field-type=reference]{cursor:pointer}[data-scrivito-field-name=_permalink].scrivito_permalink_error{background:#fff;border:1px solid #ddd;border-radius:5px;color:#aa4040;display:block;font-size:14px;min-height:31px;margin:0;padding:6px 12px;width:100%;background-color:rgba(170,64,64,.2);background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px}[data-scrivito-field-name=_permalink].scrivito_permalink_error:after{font-family:scrivito_iconsregular;float:right;display:block;padding:0 10px 0 0;color:#aa4040;content:"\F021"}.scrivito_enum_editor{list-style-type:none;margin:0;padding:2px}.scrivito_enum_editor:after,.scrivito_enum_editor:before{content:" ";display:table}.scrivito_enum_editor:after{clear:both}.scrivito_enum_editor li{position:relative;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border-radius:3px;box-shadow:0 0 4px 1px rgba(0,0,0,.1);margin:3px 4px 3px 0;padding:6px 10px 5px 25px;display:block;float:left;background:#fafafa;color:#555;font-size:13px;font-weight:400;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_enum_editor li:hover{background:#fff;cursor:pointer}.scrivito_enum_editor li.scrivito_enum_active{background:#658b51;color:#fff}.scrivito_enum_editor li.scrivito_enum_active:hover{background:#719b5a}.scrivito_enum_editor li:before{font-family:scrivito_iconsregular;font-weight:400;display:block;color:#555;font-size:14px;position:absolute;top:5px;left:5px;content:"\F136"}.scrivito_enum_editor li.scrivito_enum_active:before{content:"\F137";color:#fff}.scrivito_enum_editor.scrivito_multi li:before{content:"\F123"}.scrivito_enum_editor.scrivito_multi li.scrivito_enum_active:before{content:"\F124";color:#fff}[data-scrivito-field-type=float] input.scrivito_number_editor,[data-scrivito-field-type=integer] input.scrivito_number_editor{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:5px;color:#555;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;margin:0;min-height:32px;padding:4px 12px;width:50%;max-width:300px}[data-scrivito-field-type=float] input.scrivito_number_editor:invalid,[data-scrivito-field-type=integer] input.scrivito_number_editor:invalid,[data-scrivito-field-type] input.scrivito_number_editor[data-scrivito-editors-number-invalid=true]{border:2px solid #ce4848;background:#f4d5d5}.scrivito_backlinks_list{background:#ddd;min-height:30px}.scrivito_backlinks_list ul{list-style:none;padding:5px 10px}.scrivito_backlinks_list ul li .scrivito_icon{color:#aaa;font-size:15px;margin-right:7px}
2
+ @-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{0%{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-webkit-keyframes rotation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes rotation{0%{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@-o-keyframes rotation{0%{-o-transform:rotate(0deg)}to{-o-transform:rotate(359deg)}}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes scrivito_wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-10%,0,0) rotate(-5deg);transform:translate3d(-10%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(10%,0,0) rotate(3deg);transform:translate3d(10%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-7%,0,0) rotate(-3deg);transform:translate3d(-7%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(5%,0,0) rotate(2deg);transform:translate3d(5%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}@keyframes scrivito_wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-10%,0,0) rotate(-5deg);transform:translate3d(-10%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(10%,0,0) rotate(3deg);transform:translate3d(10%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-7%,0,0) rotate(-3deg);transform:translate3d(-7%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(5%,0,0) rotate(2deg);transform:translate3d(5%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}.scrivito_wobble{display:block;padding-top:3px;-webkit-animation-name:scrivito_wobble;animation-name:scrivito_wobble}.scrivito_animated{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.scrivito_animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@font-face{font-family:scrivito_iconsregular;src:url(data:application/font-woff;charset=utf-8;base64,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) format("woff");font-weight:400;font-style:normal}.scrivito-content-browser-items-tag-list li:before,.scrivito_icon,.scrivito_modal_prompt .scrivito_modal_body ul li:before{font-family:scrivito_iconsregular,Arial,sans-serif;font-style:normal;font-weight:400;color:#444;font-size:26px;line-height:13px!important;vertical-align:middle;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_icon.scrivito_right{float:right!important}.scrivito_icon.scrivito_blue{color:#516b8b!important}.scrivito_icon.scrivito_green{color:#658b51!important}.scrivito_icon.scrivito_red{color:#ce4848!important;text-shadow:0 0 1px #000,0 0 10px rgba(0,0,0,.3)}.scrivito_button_bar:hover .scrivito_icon.scrivito_red,.scrivito_icon.scrivito_red:hover{color:#e9adad!important}.scrivito_icon.scrivito_yellow{color:#d8d63a!important}.scrivito_button_bar:hover .scrivito_icon.scrivito_yellow,.scrivito_icon.scrivito_yellow:hover{color:#edeca4!important}.scrivito_icon.scrivito_orange{color:#ff9f00!important}.scrivito_button_bar:hover .scrivito_icon.scrivito_orange,.scrivito_icon.scrivito_orange:hover{color:#ffbc4d!important}.button .scrivito_icon:hover,ul .scrivito_icon:hover{cursor:pointer}.scrivito_icon_scrivito:after{content:"\F000"}.scrivito_icon_user:after{content:"\F00A"}.scrivito_icon_bell:after{content:"\F00C"}.scrivito_icon_pot_error:after{content:"\F00E"}.scrivito_icon_ws:after{content:"\F011"}.scrivito_icon_ws_published:after{content:"\F064"}.scrivito_icon_search:after{content:"\F013"}.scrivito_icon_duplicate:after{content:"\F015"}.scrivito_icon_copy:after{content:"\F017"}.scrivito_icon_trash:after{content:"\F018"}.scrivito_icon_stats:after{content:"\F019"}.scrivito_icon_disabled:after{content:"\F01F"}.scrivito_icon_question:after{content:"\F01C"}.scrivito_icon_attention:after{content:"\F01D"}.scrivito_icon_information:after{content:"\F01E"}.scrivito_icon_not_available:after{content:"\F01F"}.scrivito_icon_time:after{content:"\F020"}.scrivito_icon_error:after{content:"\F021"}.scrivito_icon_inv_plus:after{content:"\F022"}.scrivito_icon_refresh:after{content:"\F023"}.scrivito_icon_slidedown:after{content:"\F024"}.scrivito_icon_chevron_down:after{content:"\F025"}.scrivito_icon_chevron_up:after{content:"\F026"}.scrivito_icon_chevron_right:after{content:"\F027"}.scrivito_icon_chevron_left:after{content:"\F028"}.scrivito_icon_group:after{content:"\F029"}.scrivito_icon_new_window:after{content:"\F02C";cursor:pointer}.scrivito_icon_settings:after{content:"\F030"}.scrivito_icon_history:after{content:"\F032"}.scrivito_icon_publish:after{content:"\F033"}.scrivito_icon_logout:after{content:"\F034"}.scrivito_icon_edited:after{content:"\F035"}.scrivito_icon_pagemenu:after{content:"\F037"}.scrivito_icon_widget:after{content:"\F03A"}.scrivito_icon_moved:after{content:"\F03C"}.scrivito_icon_edit:after{content:"\F03D"}.scrivito_icon_cancel:after{content:"\F03E"}.scrivito_icon_ok:after{content:"\F03F"}.scrivito_icon_drag:after{content:"\F042"}.scrivito_icon_title:after{content:"\F043"}.scrivito_icon_download:after{content:"\F044"}.scrivito_icon_upload:after{content:"\F045"}.scrivito_icon_comments:after{content:"\F046"}.scrivito_icon_share:after{content:"\F047"}.scrivito_icon_transfer:after{content:"\F02D"}.scrivito_icon_max:after{content:"\F049"}.scrivito_icon_min:after{content:"\F04A"}.scrivito_icon_hide_ui:after{content:"\F04B"}.scrivito_icon_connection_error:after{content:"\F04C"}.scrivito_icon_show_ui:after{content:"\F04D"}.scrivito_icon_link:after,.scrivito_icon_link_perm:after{content:"\F04E"}.scrivito_icon_rename:after{content:"\F04F"}.scrivito_icon_edit_bold:after{content:"\F051"}.scrivito_icon_edit_italic:after{content:"\F052"}.scrivito_icon_edit_line-through:after{content:"\F053"}.scrivito_icon_edit_underline:after{content:"\F054"}.scrivito_icon_edit_ul:after{content:"\F055"}.scrivito_icon_edit_ol:after{content:"\F056"}.scrivito_icon_edit_delstyles:after{content:"\F057"}.scrivito_icon_edit_alignleft:after{content:"\F058"}.scrivito_icon_edit_aligncenter:after{content:"\F059"}.scrivito_icon_edit_alignright:after{content:"\F05A"}.scrivito_icon_edit_alignjustify:after{content:"\F05B"}.scrivito_icon_edit_h1:after{content:"\F05C"}.scrivito_icon_edit_h2:after{content:"\F05D"}.scrivito_icon_edit_h3:after{content:"\F05E"}.scrivito_icon_link_target:after{content:"\F060"}.scrivito_icon_eye:after{content:"\F063"}.scrivito_icon_no_publish:after{content:"\F065"}.scrivito_icon_structure_widget:before{content:"\F066"!important}.scrivito_icon_move_left:after{content:"\F06B"}.scrivito_icon_changes_state_edited:after{content:"\F080"}.scrivito_icon_changes_state_new:after{content:"\F082"}.scrivito_icon_changes_state_deleted:after{content:"\F083"}.scrivito_icon_plus:after{content:"\F084"}.scrivito_icon_ok2:after{content:"\F086"}.scrivito_icon_text:after{content:"\F100"}.scrivito_icon_image:after{content:"\F061"}.scrivito_icon_headline:after{content:"\F102"}.scrivito_icon_video:after{content:"\F103"}.scrivito_icon_map:after{content:"\F104"}.scrivito_icon_table:after{content:"\F105"}.scrivito_icon_slider:after{content:"\F106"}.scrivito_icon_list:after{content:"\F107"}.scrivito_icon_downloads:after{content:"\F108"}.scrivito_icon_person:after{content:"\F109"}.scrivito_icon_presentation:after{content:"\F10A"}.scrivito_icon_login:after{content:"\F10B"}.scrivito_icon_teaser:after{content:"\F10C"}.scrivito_icon_interactive:after{content:"\F10D"}.scrivito_icon_hr:after{content:"\F10E"}.scrivito_icon_1col:after{content:"\F10F"}.scrivito_icon_2cols:after{content:"\F110"}.scrivito_icon_2colsl:after{content:"\F111"}.scrivito_icon_2colsr:after{content:"\F112"}.scrivito_icon_3cols:after{content:"\F113"}.scrivito_icon_workspaces:after{content:"\F114"}.scrivito_icon_tag:after{content:"\F115"}.scrivito_icon_box:after{content:"\F11D"}.scrivito_icon_puzzle:after{content:"\F11E"}.scrivito_icon_search2:after{content:"\F11F"}.scrivito_icon_dates:after{content:"\F120"}.scrivito_icon_newsletter:after{content:"\F121"}.scrivito_icon_special:after{content:"\F122"}.scrivito_icon_ok_box_empty:after{content:"\F123"}.scrivito_icon_ok_box:after{content:"\F124"}.scrivito_icon_generic:after,.scrivito_icon_page:after,.scrivito_modal_prompt .scrivito_modal_body ul li:before{content:"\F125"}.scrivito_icon_pdf:after{content:"\F126"}.scrivito_icon_txt:after{content:"\F127"}.scrivito_icon_zip:after{content:"\F128"}.scrivito_icon_doc:after{content:"\F129"}.scrivito_icon_xls:after{content:"\F12A"}.scrivito_icon_ppt:after{content:"\F12B"}.scrivito_icon_file_plus:after{content:"\F12C"}.scrivito_icon_movie:after{content:"\F12D"}.scrivito_icon_music:after{content:"\F12E"}.scrivito_icon_list_medium:after{content:"\F12F"}.scrivito_icon_th_small:after{content:"\F130"}.scrivito_icon_th_medium:after{content:"\F131"}.scrivito_icon_th:after{content:"\F132"}.scrivito_icon_th_large:after{content:"\F133"}.scrivito_icon_content_browser:after{content:"\F135"}.scrivito_icon_sort:after{content:"\F138"}.scrivito_icon_sort_up:after{content:"\F139"}.scrivito_icon_sort_down:after{content:"\F13A"}.scrivito_icon_mobile:after{content:"\F13B"}.scrivito_icon_tablet:after{content:"\F13C"}.scrivito_icon_laptop:after{content:"\F13D"}.scrivito_icon_desktop:after{content:"\F13E"}.scrivito_icon_marker_plus:after{content:"\F13F"}.scrivito_icon_marker_minus:after{content:"\F140"}.scrivito_icon_clone:after{content:"\F03A"}.scrivito_editing_marker.scrivito_widget_moved_icon:after{font-family:scrivito_iconsregular;font-style:normal;font-weight:400;vertical-align:middle;padding:0;font-size:10px;line-height:5px;color:#eee;display:block;text-shadow:0 0 1px #111,-1px 0 3px #555;content:"\F03C";position:absolute;top:10px;right:0}@font-face{font-family:scrivito_customer_icons;src:url(data:application/x-font-woff;charset=utf-8;base64,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) format("woff");font-weight:400;font-style:normal}.scrivito_customer_icon{font-family:scrivito_customer_icons;font-style:normal;font-weight:400;color:#444;font-size:26px;line-height:13px!important;vertical-align:middle;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.scrivito_customer_icon:hover{cursor:pointer}.scrivito_customer_icon.sci_scrivito:after,.scrivito_customer_icon:after{content:"\F000"}.scrivito_customer_icon.sci_up:after{content:"\F001"}.scrivito_customer_icon.sci_right:after{content:"\F002"}.scrivito_customer_icon.sci_down:after{content:"\F003"}.scrivito_customer_icon.sci_left:after{content:"\F004"}.scrivito_customer_icon.sci_up_arrow:after{content:"\F005"}.scrivito_customer_icon.sci_down_arrow:after{content:"\F006"}.scrivito_customer_icon.sci_arrows:after{content:"\F007"}.scrivito_customer_icon.sci_user:after{content:"\F008"}.scrivito_customer_icon.sci_users:after{content:"\F009"}.scrivito_customer_icon.sci_timetable:after{content:"\F00A"}.scrivito_customer_icon.sci_cal:after{content:"\F00B"}.scrivito_customer_icon.sci_mail:after{content:"\F00C"}.scrivito_customer_icon.sci_phone:after{content:"\F00D"}.scrivito_customer_icon.sci_mobile:after{content:"\F00E"}.scrivito_customer_icon.sci_fax:after{content:"\F00F"}.scrivito_customer_icon.sci_map:after{content:"\F010"}.scrivito_customer_icon.sci_tag:after{content:"\F011"}.scrivito_customer_icon.sci_inbox:after{content:"\F012"}.scrivito_customer_icon.sci_suitcase:after{content:"\F013"}.scrivito_customer_icon.sci_lens:after{content:"\F014"}.scrivito_customer_icon.sci_new:after{content:"\F015"}.scrivito_customer_icon.sci_copy:after{content:"\F016"}.scrivito_customer_icon.sci_cut:after{content:"\F017"}.scrivito_customer_icon.sci_paste:after{content:"\F018"}.scrivito_customer_icon.sci_trashcan:after{content:"\F019"}.scrivito_customer_icon.sci_image:after{content:"\F01A"}.scrivito_customer_icon.sci_images:after{content:"\F01B"}.scrivito_customer_icon.sci_eye:after{content:"\F01C"}.scrivito_customer_icon.sci_globe:after{content:"\F01D"}.scrivito_customer_icon.sci_str_globe:after{content:"\F01E"}.scrivito_customer_icon.sci_filter:after{content:"\F01F"}.scrivito_customer_icon.sci_exit:after{content:"\F020"}.scrivito_customer_icon.sci_key:after{content:"\F021"}.scrivito_customer_icon.sci_lock:after{content:"\F022"}.scrivito_customer_icon.sci_gear:after{content:"\F023"}.scrivito_customer_icon.sci_gears:after{content:"\F024"}.scrivito_customer_icon.sci_tools:after{content:"\F025"}.scrivito_customer_icon.sci_undo:after{content:"\F026"}.scrivito_customer_icon.sci_puzzle:after{content:"\F027"}.scrivito_customer_icon.sci_text:after{content:"\F028"}.scrivito_customer_icon.sci_certificate:after{content:"\F029"}.scrivito_customer_icon.sci_database:after{content:"\F02A"}.scrivito_customer_icon.sci_chat:after{content:"\F02B"}.scrivito_customer_icon.sci_relation:after{content:"\F02C"}.scrivito_customer_icon.sci_link:after{content:"\F02D"}.scrivito_customer_icon.sci_code:after{content:"\F02E"}.scrivito_customer_icon.sci_pen:after{content:"\F02F"}.scrivito_customer_icon.sci_circ_pen:after{content:"\F030"}.scrivito_customer_icon.sci_plus:after{content:"\F031"}.scrivito_customer_icon.sci_minus:after{content:"\F032"}.scrivito_customer_icon.sci_check:after{content:"\F033"}.scrivito_customer_icon.sci_cross:after{content:"\F034"}.scrivito_customer_icon.sci_question:after{content:"\F035"}.scrivito_customer_icon.sci_exclamation:after{content:"\F036"}.scrivito_customer_icon.sci_info:after{content:"\F037"}.scrivito_customer_icon.sci_time:after{content:"\F038"}.scrivito_customer_icon.sci_inv_plus:after{content:"\F039"}.scrivito_customer_icon.sci_inv_minus:after{content:"\F03A"}.scrivito_customer_icon.sci_inv_check:after{content:"\F03B"}.scrivito_customer_icon.sci_inv_cross:after{content:"\F03C"}.scrivito_customer_icon.sci_warning:after{content:"\F03D"}.scrivito_customer_icon.sci_wand:after{content:"\F03E"}.scrivito_customer_icon.sci_folder:after{content:"\F03F"}.scrivito_customer_icon.sci_collection:after{content:"\F040"}.scrivito_customer_icon.sci_sheet:after{content:"\F041"}.scrivito_customer_icon.sci_pdf:after{content:"\F042"}.scrivito_customer_icon.sci_txt:after{content:"\F043"}.scrivito_customer_icon.sci_zip:after{content:"\F044"}.scrivito_customer_icon.sci_doc:after{content:"\F045"}.scrivito_customer_icon.sci_xls:after{content:"\F046"}.scrivito_customer_icon.sci_ppt:after{content:"\F047"}.scrivito_customer_icon.sci_video:after{content:"\F049"}.scrivito_customer_icon.sci_audio:after{content:"\F04A"}.scrivito_customer_icon.sci_list:after{content:"\F04B"}.scrivito_customer_icon.sci_thumbnails:after{content:"\F04C"}.scrivito_customer_icon.sci_rounded_square:after{content:"\F04D"}@-webkit-keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}to{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}@keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}to{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}.medium-editor-anchor-preview{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;left:0;line-height:1.4;max-width:280px;position:absolute;text-align:center;top:0;word-break:break-all;word-wrap:break-word;visibility:hidden;z-index:2000}.medium-editor-anchor-preview a{color:#fff;display:inline-block;margin:5px 5px 10px}.medium-editor-anchor-preview-active{visibility:visible}.medium-editor-dragover{background:#ddd}.medium-editor-image-loading{-webkit-animation:medium-editor-image-loading 1s infinite ease-in-out;animation:medium-editor-image-loading 1s infinite ease-in-out;background-color:#333;border-radius:100%;display:inline-block;height:40px;width:40px}.medium-editor-placeholder{position:relative}.medium-editor-placeholder:after{content:attr(data-placeholder)!important;font-style:italic;position:absolute;left:0;top:0;white-space:pre;padding:inherit;margin:inherit}.medium-editor-placeholder-relative{position:relative}.medium-editor-placeholder-relative:after{content:attr(data-placeholder)!important;font-style:italic;position:relative;white-space:pre;padding:inherit;margin:inherit}.medium-toolbar-arrow-over:before,.medium-toolbar-arrow-under:after{border-style:solid;content:"";display:block;height:0;left:50%;margin-left:-8px;position:absolute;width:0}.medium-toolbar-arrow-under:after{border-width:8px 8px 0}.medium-toolbar-arrow-over:before{border-width:0 8px 8px}.medium-editor-toolbar{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;left:0;position:absolute;top:0;visibility:hidden;z-index:2000}.medium-editor-toolbar ul{margin:0;padding:0}.medium-editor-toolbar li{float:left;list-style:none;margin:0}.medium-editor-toolbar li button{box-sizing:border-box;cursor:pointer;display:block;font-size:14px;line-height:1.33;margin:0;padding:15px;text-decoration:none}.medium-editor-toolbar li button:focus{outline:none}.medium-editor-toolbar li .medium-editor-action-underline{text-decoration:underline}.medium-editor-toolbar li .medium-editor-action-pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px;font-weight:100;padding:15px 0}.medium-editor-toolbar-active{visibility:visible}.medium-editor-sticky-toolbar{position:fixed;top:1px}.medium-editor-relative-toolbar{position:relative}.medium-editor-toolbar-active.medium-editor-stalker-toolbar{-webkit-animation:medium-editor-pop-upwards .16s forwards linear;animation:medium-editor-pop-upwards .16s forwards linear}.medium-editor-action-bold{font-weight:bolder}.medium-editor-action-italic{font-style:italic}.medium-editor-toolbar-form{display:none}.medium-editor-toolbar-form a,.medium-editor-toolbar-form input{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.medium-editor-toolbar-form .medium-editor-toolbar-form-row{line-height:14px;margin-left:5px;padding-bottom:5px}.medium-editor-toolbar-form .medium-editor-toolbar-input,.medium-editor-toolbar-form label{border:none;box-sizing:border-box;font-size:14px;margin:0;padding:6px;width:316px;display:inline-block}.medium-editor-toolbar-form .medium-editor-toolbar-input:focus,.medium-editor-toolbar-form label:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;outline:0}.medium-editor-toolbar-form a{display:inline-block;font-size:24px;font-weight:bolder;margin:0 10px;text-decoration:none}.medium-editor-toolbar-form-active{display:block}.medium-editor-toolbar-actions:after{clear:both;content:"";display:table}.medium-editor-element{word-wrap:break-word;min-height:30px}.medium-editor-element img{max-width:100%}.medium-editor-element sub{vertical-align:sub}.medium-editor-element sup{vertical-align:super}.medium-editor-hidden{display:none}.medium-toolbar-arrow-under:after{top:60px;border-color:#57ad68 transparent transparent}.medium-toolbar-arrow-over:before{top:-8px;border-color:transparent transparent #57ad68}.medium-editor-toolbar{background-color:#57ad68}.medium-editor-toolbar li{padding:0}.medium-editor-toolbar li button{min-width:60px;height:60px;border-right:1px solid #9ccea6;background-color:transparent;color:#fff;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#346a3f;color:#fff}.medium-editor-toolbar li .medium-editor-button-active{background-color:#23482a;color:#fff}.medium-editor-toolbar li .medium-editor-button-last{border-right:none}.medium-editor-toolbar-form .medium-editor-toolbar-input{height:60px;background:#57ad68;color:#fff}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder,.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#fff;color:hsla(0,0%,100%,.8)}.medium-editor-toolbar-form a{color:#fff}.medium-editor-toolbar-anchor-preview{background:#57ad68;color:#fff}.medium-editor-placeholder:after{color:#9ccea6}.medium-toolbar-arrow-under:after{top:auto}.medium-editor-toolbar{z-index:111112;margin:0 10px;background:rgba(67,148,57,.9);border-radius:4px}.medium-editor-toolbar li button{height:40px;min-width:40px;padding:10px;border:none;margin:1px;background:rgba(0,0,0,.1)}.medium-editor-toolbar li button *{color:inherit}.medium-editor-toolbar li button .scrivito_customer_icon{font-size:18px}.medium-editor-toolbar-form .scrivito_customer_icon{font-size:18px;min-width:40px;height:40px;line-height:40px!important;display:inline-block;text-align:center;color:#fff;margin:1px;background:rgba(0,0,0,.1)}.medium-editor-toolbar-form .scrivito_customer_icon:hover{background:rgba(0,0,0,.3)}.medium-editor-toolbar-form .medium-editor-toolbar-input{margin:1px;height:40px;background:rgba(0,0,0,.3);vertical-align:middle}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle{margin:1px;height:40px;line-height:40px!important;color:#fff;background:rgba(0,0,0,.1);display:block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle:hover{background:rgba(0,0,0,.3)}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle label{font-weight:400;padding:0;margin:0;width:100%;cursor:pointer}.medium-editor-toolbar-form .medium-editor-toolbar-anchor-target-toggle i{background:none!important}input.medium-editor-toolbar-anchor-target{display:none}input.medium-editor-toolbar-anchor-target+i{display:none!important}input.medium-editor-toolbar-anchor-target+i+i,input.medium-editor-toolbar-anchor-target:checked+i{display:inline-block!important}input.medium-editor-toolbar-anchor-target:checked+i+i{display:none!important}[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:not(:focus):before{content:attr(data-scrivito-editors-placeholder);color:rgba(64,64,64,.53);display:inline-block;font-size:13px;font-style:normal;font-weight:400;line-height:28px;margin:0;padding:0;text-decoration:none;vertical-align:middle;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:focus:after,[data-scrivito-display-mode=editing] [data-scrivito-editors-placeholder]:empty:focus:before{content:"\200B";color:transparent;display:inline-block}/*!
3
+ * Quill Editor v1.3.5
4
+ * https://quilljs.com/
5
+ * Copyright (c) 2014, Jason Chen
6
+ * Copyright (c) 2013, salesforce.com
7
+ */.ql-container{position:relative;z-index:111112}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor>*{cursor:text}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-bubble.ql-toolbar:after,.ql-bubble .ql-toolbar:after{clear:both;content:"";display:table}.ql-bubble.ql-toolbar button,.ql-bubble .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;height:24px;padding:0;width:28px;position:relative;top:0;color:hsla(0,0%,77%,.985)}.ql-bubble.ql-toolbar button svg,.ql-bubble .ql-toolbar button svg{display:none}.ql-bubble.ql-toolbar button:active:hover,.ql-bubble .ql-toolbar button:active:hover{outline:none}.ql-bubble.ql-toolbar input.ql-image[type=file],.ql-bubble .ql-toolbar input.ql-image[type=file]{display:none}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected,.ql-bubble.ql-toolbar .ql-picker-item:hover,.ql-bubble .ql-toolbar .ql-picker-item:hover,.ql-bubble.ql-toolbar .ql-picker-label.ql-active,.ql-bubble .ql-toolbar .ql-picker-label.ql-active,.ql-bubble.ql-toolbar .ql-picker-label:hover,.ql-bubble .ql-toolbar .ql-picker-label:hover,.ql-bubble.ql-toolbar button.ql-active,.ql-bubble .ql-toolbar button.ql-active,.ql-bubble.ql-toolbar button:focus,.ql-bubble .ql-toolbar button:focus,.ql-bubble.ql-toolbar button:hover,.ql-bubble .ql-toolbar button:hover{color:#fff;background:hsla(0,0%,100%,.2);border-radius:2px}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:focus .ql-fill,.ql-bubble .ql-toolbar button:focus .ql-fill,.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:hover .ql-fill,.ql-bubble .ql-toolbar button:hover .ql-fill,.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill{fill:#fff}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble.ql-toolbar button.ql-active .ql-stroke,.ql-bubble .ql-toolbar button.ql-active .ql-stroke,.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar button:focus .ql-stroke,.ql-bubble .ql-toolbar button:focus .ql-stroke,.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,.ql-bubble.ql-toolbar button:hover .ql-stroke,.ql-bubble .ql-toolbar button:hover .ql-stroke,.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,.ql-bubble .ql-toolbar button:hover .ql-stroke-miter{stroke:#fff}@media (pointer:coarse){.ql-bubble.ql-toolbar button:hover:not(.ql-active),.ql-bubble .ql-toolbar button:hover:not(.ql-active){color:#ccc}.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#ccc}.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#ccc}}.ql-bubble,.ql-bubble *{box-sizing:border-box}.ql-bubble .ql-hidden{display:none}.ql-bubble .ql-out-bottom,.ql-bubble .ql-out-top{visibility:hidden}.ql-bubble .ql-tooltip{position:absolute;transform:translateY(10px);z-index:2147483647}.ql-bubble .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-bubble .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-bubble .ql-formats{display:inline-block;vertical-align:middle}.ql-bubble .ql-formats:after{clear:both;content:"";display:table}.ql-bubble .ql-stroke{fill:none;stroke:#ccc;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-bubble .ql-stroke-miter{fill:none;stroke:#ccc;stroke-miterlimit:10;stroke-width:2}.ql-bubble .ql-fill,.ql-bubble .ql-stroke.ql-fill{fill:#ccc}.ql-bubble .ql-empty{fill:none}.ql-bubble .ql-even{fill-rule:evenodd}.ql-bubble .ql-stroke.ql-thin,.ql-bubble .ql-thin{stroke-width:1}.ql-bubble .ql-transparent{opacity:.4}.ql-bubble .ql-direction svg:last-child{display:none}.ql-bubble .ql-direction.ql-active svg:last-child{display:inline}.ql-bubble .ql-direction.ql-active svg:first-child{display:none}.ql-bubble .ql-editor h1{font-size:2em}.ql-bubble .ql-editor h2{font-size:1.5em}.ql-bubble .ql-editor h3{font-size:1.17em}.ql-bubble .ql-editor h4{font-size:1em}.ql-bubble .ql-editor h5{font-size:.83em}.ql-bubble .ql-editor h6{font-size:.67em}.ql-bubble .ql-editor a{text-decoration:underline}.ql-bubble .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-bubble .ql-editor code,.ql-bubble .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-bubble .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-bubble .ql-editor code{font-size:85%;padding:2px 4px}.ql-bubble .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-bubble .ql-editor img{max-width:100%}.ql-bubble .ql-picker{color:#ccc;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-bubble .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-bubble .ql-picker-label:before{display:inline-block;line-height:22px}.ql-bubble .ql-picker-options{background-color:#444;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-bubble .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-bubble .ql-picker.ql-expanded .ql-picker-label{color:#777;z-index:2}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-bubble .ql-color-picker,.ql-bubble .ql-icon-picker{width:28px}.ql-bubble .ql-color-picker .ql-picker-label,.ql-bubble .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-label svg,.ql-bubble .ql-icon-picker .ql-picker-label svg{right:4px}.ql-bubble .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-bubble .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-bubble .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-bubble .ql-picker.ql-header{width:98px}.ql-bubble .ql-picker.ql-header .ql-picker-item:before,.ql-bubble .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-bubble .ql-picker.ql-font{width:108px}.ql-bubble .ql-picker.ql-font .ql-picker-item:before,.ql-bubble .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-bubble .ql-picker.ql-size{width:98px}.ql-bubble .ql-picker.ql-size .ql-picker-item:before,.ql-bubble .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-bubble .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-bubble .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-bubble .ql-toolbar .ql-formats{margin:4px 4px 4px 0}.ql-bubble .ql-toolbar .ql-formats:first-child{margin-left:4px}.ql-bubble .ql-color-picker svg{margin:1px}.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,.ql-bubble .ql-color-picker .ql-picker-item:hover{border-color:#fff}.ql-bubble .ql-tooltip{background-color:rgba(44,44,44,.95);box-shadow:0 0 3px 2px hsla(0,0%,100%,.1),0 0 1px 0 rgba(0,0,0,.5);border-radius:3px;color:#fff;font-size:14px}.ql-bubble .ql-tooltip-arrow{border-left:6px solid transparent;border-right:6px solid transparent;content:" ";display:block;left:50%;margin-left:-6px;position:absolute}.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow{border-bottom:6px solid rgba(44,44,44,.95);top:-6px}.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow{border-top:6px solid rgba(44,44,44,.95);bottom:-6px}.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor{display:block}.ql-bubble .ql-tooltip.ql-editing .ql-formats{visibility:hidden}.ql-bubble .ql-tooltip-editor{display:none}.ql-bubble .ql-tooltip a.ql-svt{background:transparent;border:none;color:#fff;display:inline;position:relative;font-size:18px;line-height:18px;padding:0;width:24px;z-index:1}.ql-bubble .ql-tooltip:not(.ql-editing) a.ql-svt{display:none}.ql-bubble .ql-tooltip a.ql-svt-browse{margin-right:-26px}.ql-bubble .ql-tooltip a.ql-svt-target{margin-left:-26px}.ql-bubble .ql-tooltip a.ql-svt-target .scrivito_icon_ok{position:absolute;left:11px;top:10px;pointer-events:none;font-size:10px}.ql-bubble i{color:hsla(0,0%,77%,.985);font-size:17px}.ql-bubble [data-svt-target]:not([data-svt-target=""]) .ql-svt-target i,.ql-bubble i:hover,.ql-bubble i:hover+i{color:#fff}.ql-bubble i+i{position:absolute;left:11px;top:16px;pointer-events:none}.ql-bubble [data-svt-target=""] .ql-svt-target i+i{display:none}.ql-bubble input::placeholder{color:hsla(0,0%,100%,.4)}.ql-toolbar button:before{display:inline-block;height:24px;width:28px;font-family:scrivito_iconsregular,Arial,sans-serif;font-style:normal;font-weight:400;color:inherit;font-size:16px;line-height:24px;vertical-align:middle;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;transition:color .2s,text-shadow .2s;content:"\F000"}.ql-toolbar .ql-bold:before{content:"\F051"}.ql-toolbar .ql-italic:before{content:"\F052"}.ql-toolbar .ql-code:before{content:"\F04F"}.ql-toolbar .ql-link:before{content:"\F04E"}.ql-toolbar .ql-header[value="2"]:before{content:"\F05D"}.ql-toolbar .ql-header[value="3"]:before{content:"\F05E"}.ql-toolbar .ql-list[value=bullet]:before{content:"\F055"}.ql-toolbar .ql-list[value=ordered]:before{content:"\F056"}.ql-toolbar button.ql-active:before{text-shadow:0 0 19px #2c2c2c,0 0 10px #2c2c2c,0 0 3px #2c2c2c}.ql-toolbar button:hover:before{text-shadow:0 0 12px hsla(0,0%,100%,.5)}.ql-tooltip,.ql-tooltip a,.ql-tooltip input{font-family:Helvetica,Arial,sans-serif;font-size:16px}.ql-svt-tooltip-snow.ql-editing:not(.ql-hidden)+.ql-tooltip{visibility:hidden}.ql-svt-tooltip-snow{padding:3px 12px;white-space:nowrap}.ql-svt-tooltip-snow:before{content:"Visit:";line-height:24px;margin-right:8px}.ql-svt-tooltip-snow input[type=text]{display:none;position:relative;top:-1px;background:hsla(0,0%,100%,.2);border:none;border-radius:2px;color:#fff;font-size:13px;outline:none;height:24px;margin:0;padding:3px 26px;width:200px}.ql-svt-tooltip-snow a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-svt-tooltip-snow a.ql-action:after{border-right:1px solid hsla(0,0%,77%,.985);content:"Edit";margin-left:16px;padding-right:8px;font-size:14px}.ql-svt-tooltip-snow a.ql-remove:before{content:"Remove";margin-left:8px;font-size:14px}.ql-svt-tooltip-snow a{line-height:24px;color:hsla(0,0%,77%,.985)}.ql-svt-tooltip-snow a:hover{color:#fff}.ql-svt-tooltip-snow.ql-editing a.ql-preview,.ql-svt-tooltip-snow.ql-editing a.ql-remove{display:none}.ql-svt-tooltip-snow.ql-editing input[type=text]{display:inline-block}.ql-svt-tooltip-snow.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0;font-size:14px}.ql-svt-tooltip-snow[data-mode=link]:before{content:"Enter link:";font-size:14px}html *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}[data-scrivito-field-type=widgetlist],[data-scrivito-private-widget]{position:relative}.scrivito_editing_marker,.scrivito_editing_marker_title,.scrivito_icon{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.scrivito_editing_marker{display:block;position:absolute;color:#fff;font-size:12px;line-height:12px;height:18px;text-align:center;padding:2px 8px;margin:-2px 0 0 -2px;vertical-align:middle;z-index:11111;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:background .6s ease-in-out;transition:background .6s ease-in-out}.scrivito_editing_marker:active,.scrivito_editing_marker:hover{-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.scrivito_editing_marker .scrivito_icon{padding:0;font-size:10px;line-height:8px;color:#fff}.scrivito_editing_marker .scrivito_icon:hover{cursor:pointer}[data-scrivito-display-mode=editing] .scrivito_editing_marker .scrivito_icon:before{content:"\F000"}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker .scrivito_icon:before{content:"\F010"}[data-scrivito-private-child-list-path]>.scrivito_editing_marker,[data-scrivito-private-widget]>.scrivito_editing_marker{right:0}[data-scrivito-private-child-list-path]{position:relative}[data-scrivito-is-clickable]{cursor:pointer}.ui-sortable .scrivito_editing_marker:hover,.ui-sortable .scrivito_editing_marker:hover .scrivito_icon{cursor:move}.scrivito_file_dragover{background:hsla(0,0%,100%,.5);opacity:.5!important;outline:3px dashed #ccc}.scrivito_editing_marker .scrivito_editing_marker_title{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;display:block;position:absolute;top:0;right:29px;color:#fff;font-size:11px;line-height:8px;height:18px;text-align:center;padding:5px 8px;margin:0;white-space:nowrap;background:#439439;opacity:0;border-radius:3px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;pointer-events:none;max-width:200px;text-overflow:ellipsis;overflow:hidden}[data-scrivito-display-mode=added] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=deleted] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=diff] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_entered:hover>.scrivito_editing_marker .scrivito_editing_marker_title{opacity:1;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.scrivito_structure_marker{display:block;position:absolute;color:#fff;font-size:13px;line-height:14px;text-align:center;padding:0 8px;margin:-2px 0 0;vertical-align:middle;min-height:10px;background:#111;background:orange;background:rgba(255,165,0,.4);z-index:11111;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:background .6s ease-in-out;transition:background .6s ease-in-out}.scrivito_structure_marker:active,.scrivito_structure_marker:hover{cursor:pointer;background:orange;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.scrivito_structure_marker .scrivito_icon{padding:0;font-size:8px;line-height:8px;color:#fff}.scrivito_structure_marker .scrivito_icon:hover{cursor:pointer}.scrivito_empty_widget_field>.scrivito_structure_marker,[data-scrivito-private-widget]>.scrivito_structure_marker{left:45%}.scrivito_option_marker:hover{cursor:pointer}.scrivito_option_marker.scrivito_bottom,.scrivito_option_marker.scrivito_top{display:block;position:absolute;height:18px;width:18px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_bottom .scrivito_icon,.scrivito_option_marker.scrivito_top .scrivito_icon{font-size:16px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_option_marker.scrivito_top{top:-9px;left:50%;margin-left:-9px;border-radius:3px}[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_option_marker.scrivito_bottom{bottom:-9px;left:50%;margin-left:-9px;border-radius:3px}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget]>.scrivito_option_marker.scrivito_bottom,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget]>.scrivito_option_marker.scrivito_top{opacity:1;background:#439439}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget]>.scrivito_option_marker.scrivito_bottom,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget]>.scrivito_option_marker.scrivito_top{opacity:1;background:#ff9f00}.scrivito_option_marker.scrivito_visible{opacity:1;background:#000}.scrivito_option_marker.scrivito_left,.scrivito_option_marker.scrivito_right{display:block;position:absolute;height:18px;width:18px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_left .scrivito_icon,.scrivito_option_marker.scrivito_right .scrivito_icon{font-size:16px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_left,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_right{opacity:1;background:orange}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_left{top:50%;left:-9px;margin-top:-9px;border-radius:3px}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-widget] .scrivito_option_marker.scrivito_right{top:50%;right:-9px;margin-top:-9px;border-radius:3px}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]{position:relative;margin-top:20px;padding:30px 0 20px;min-height:100%;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .2s linear;transition:box-shadow .2s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget-option]:after{clear:both}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget-option]{-webkit-box-shadow:0 0 0 2px #ff9f00!important;box-shadow:0 0 0 2px #ff9f00!important}.scrivito_option_marker.scrivito_handle{display:block;position:absolute;height:18px;width:26px;text-align:center;padding:0;margin:0;vertical-align:middle;opacity:0;z-index:111111;top:-2px;left:50%;margin-left:-13px;border-radius:0 0 3px 3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-transition:opacty .6s ease-in-out;transition:opacty .6s ease-in-out}.scrivito_option_marker.scrivito_handle .scrivito_icon{font-size:10px!important;line-height:17px!important;color:#fff;display:block}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-structure-widget-option] .scrivito_option_marker.scrivito_handle{opacity:1;background:orange!important}[data-scrivito-display-mode=editing] .scrivito_show_col [data-scrivito-private-structure-widget-option]{-webkit-box-shadow:0 0 0 2px rgba(255,159,0,.3);box-shadow:0 0 0 2px rgba(255,159,0,.3)}[data-scrivito-display-mode=editing] .scrivito_show_col [data-scrivito-private-structure-widget-option] .scrivito_option_marker.scrivito_handle{opacity:1;background:rgba(255,159,0,.7)}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error]{-webkit-box-shadow:0 0 0 2px #ff9f00!important;box-shadow:0 0 0 2px #ff9f00!important}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00!important;opacity:1}[data-scrivito-display-mode=editing] [data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_icon:before{content:"\F021"}[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-validation-error] .scrivito_editing_marker,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-validation-error] .scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00!important}.scrivito_element_overlay{opacity:.4;filter:alpha(opacity=40);background-color:#aaa;background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px;-webkit-animation:progress-bar-stripes 1s linear infinite;-moz-animation:progress-bar-stripes 1s linear infinite;-ms-animation:progress-bar-stripes 1s linear infinite;-o-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite;pointer-events:none}.scrivito_element_overlay img{opacity:.5;filter:alpha(opacity=50)}.scrivito_overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:-1;opacity:0;-webkit-transition:opacity .1s linear;transition:opacity .1s linear;background:rgba(0,0,0,.8)}.scrivito_overlay.scrivito_show{z-index:333333;opacity:.65;-webkit-transition:opacity .6s linear;transition:opacity .6s linear}.scrivito_overlay .scrivito_processing{display:block;margin:0 auto;text-align:center;position:absolute;left:0;top:48%;width:100%;font-size:90px;color:#fff;text-shadow:0 0 5px rgba(0,0,0,.3);-webkit-animation:rotation 5s infinite linear;-moz-animation:rotation 5s infinite linear;-o-animation:rotation 5s infinite linear;animation:rotation 5s infinite linear}.scrivito_spinning{display:inline-block;margin:0 5px 0 0;padding:0!important;-webkit-animation:rotation 4s infinite linear;-moz-animation:rotation 4s infinite linear;-o-animation:rotation 4s infinite linear;animation:rotation 4s infinite linear}[data-scrivito-display-mode=added] [data-scrivito-field-type],[data-scrivito-display-mode=deleted] [data-scrivito-field-type],[data-scrivito-display-mode=diff] [data-scrivito-field-type],[data-scrivito-display-mode=editing] [data-scrivito-field-type]{min-height:28px}[data-scrivito-display-mode=added] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=deleted] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=diff] [data-scrivito-field-type=widgetlist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=widgetlist]{min-height:35px}[data-scrivito-display-mode=editing] .scrivito_empty_widget_field:empty{background:#ccc;min-height:90px;opacity:.5;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999}[data-scrivito-display-mode=editing] .scrivito_empty_widget_field:empty:after{font-family:scrivito_iconsregular;font-style:normal;font-weight:400;color:#aaa;font-size:55px;width:100%;display:block;line-height:90px;text-align:center;text-decoration:none;content:"\F084";cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_empty_widget_field.scrivito_widget_drop_allowed,.scrivito_widget_drop_placeholder{-webkit-box-shadow:0 0 5px rgba(152,187,225,.9) inset;background:rgba(152,187,225,.3);box-shadow:inset 0 0 5px rgba(152,187,225,.9);max-height:150px;min-height:100px;visibility:visible!important}.scrivito_content_upload[data-scrivito-field-type=widgetlist],.scrivito_content_upload[data-scrivito-private-widget]{background:rgba(152,187,225,.3) url("data:image/gif;base64,R0lGODlhSwAyALMKAIiIiOHh4ZSUlLi4uPPz86ampqurq+vr6/n0o8/Pz////wAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3YzY1NzlkMy1jY2ZlLTQwZjEtYTRlYS0yOWI2YmYzNTM0YzYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODk1NkRERkVBM0U0MTFFNEE1NzZCRjVDOTAzQ0E2MzUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODk1NkRERkRBM0U0MTFFNEE1NzZCRjVDOTAzQ0E2MzUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NGQ4OWM2YzktNjk0Mi00NTE0LWJjYmQtOGQwMzYzN2VlNDdiIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjdjNjU3OWQzLWNjZmUtNDBmMS1hNGVhLTI5YjZiZjM1MzRjNiIvPiA8L3JkZjpE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") no-repeat center 5px;min-height:55px}.scrivito_content_upload[data-scrivito-field-type=widgetlist] *,.scrivito_content_upload[data-scrivito-private-widget] *{opacity:.2}body.scrivito_editing_active .scrivito_empty_widget_field.scrivito_widget_drop_allowed{max-height:200px;min-height:100px}[data-scrivito-private-widget] .scrivito_empty_widget_field{min-height:100px}.ui-sortable-helper{opacity:.5}[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"].scrivito_element_overlay{width:100%;opacity:1;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999;min-height:90px;max-height:90px;opacity:.5}[data-scrivito-display-mode=added] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=added] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=deleted] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=deleted] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=diff] img[data-scrivito-image-placeholder],[data-scrivito-display-mode=diff] img[src*="scrivito/image_placeholder"],[data-scrivito-display-mode=editing] img[data-scrivito-image-placeholder]:not(.scrivito_element_overlay),[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"]:not(.scrivito_element_overlay){background:#ccc url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3NpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1MzcwM2M0NS0xOGJiLTRlMzgtYTY4NC0wODU1MGI5YjdkNTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTc4NTYxRkVFODNCMTFFNUI0QUU5MjU4NjFDQ0M1MkYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTc4NTYxRkRFODNCMTFFNUI0QUU5MjU4NjFDQ0M1MkYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzNjOWZlZDYtZWZhYy00NzI2LTliODUtZWUwODE0NjRlNmRkIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjUzNzAzYzQ1LTE4YmItNGUzOC1hNjg0LTA4NTUwYjliN2Q1OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pg3QlVQAAAMESURBVHja7J3Pi4xhAMffWcsaxFoclGRTtBIO1BYOJFqiyJTEgaKWOPhV0tbWKtse5A/garPvSZTFZQ8uDg5qXLSFG3KRi5LG92meqe1t3x/zjpl53nk/n/oepufpfZv3s8/vd9pCpVLxwB26eAQIAYQgBBCCEEAIQgAhCAGEAEIQAghBCCAEIYAQhABCACEIAYQgBBCCEEBIXulu5sV93+/YF4dLpVKBFkKXBQhBCORmUA9hRCln6Bn1K/c7WcgbzVBm5szE2j1bipsp7qDLostymmXKoLJS+aK8U/4yqLeeBcpd5bvyWplS3iqflZMIaS1mFWwGlztKMVC2zpZdQkjrOK8cj6nzQNnYwD22ziMbISFcSVBnoXKxgXuMKlcREs8iZXvCurtS3sO0rBPKbU1r+xASTU8ddZekvMc1O06tsOMUQiL4pfxIWHc2xfVXK+fmfL6sVrIeIdE8SVhvKsW1hwODeY+dXiMkgjHla0ydaeVZndcthkwYzqiVbENION+UA8qnkPIXyiml3hPJs8qakHXPOEKi+aBsUS4ok8or5aEypBxWfqb4rtcjyofUSvYhJJrfVsJp5ZCVM53yWkeVTTF1JiSlgJDWcDNBnZ1em/fJ8iLE7BbvTlj3CEIax3QzGyLKb2Tli2RdSJedbZkJwEfl2Dx1atskCGkyZlpctjOwAa+62WgWlPsD9WrbJAhpEkuVR1710GogULZYea7stZ+D2yTO050xGeZw6qVdn0Stxo2UgzZFhDSHtcqMl+xQarldr2Tu7N3FLsv8RZvTQHOW/kd5b9cQk159J4S9yqqsCXGxhdRW5jXMpt9EXlavrrWQWwEZucMlIWbD8J6Xc1wRsll57PEmpRMPwAy+T73q+XbucWFQN2uLcYeeyWzehZS9Nv48Ie7td9YhjCGQ9zFkj+/7va48gAQ/GOrvdCFjtAO6LIQAQhAC/58C/1iSFgIIQQggBCGAEIQAQhACCAGEIAQQghBACEIAIQgBhABCEAIIQQggBCGAkLzyT4ABAOS4au4Rxw5hAAAAAElFTkSuQmCC") no-repeat 50%!important;width:100%;opacity:1;visibility:visible!important;-webkit-box-shadow:0 0 0 2px #999;box-shadow:0 0 0 2px #999;min-height:90px;max-height:90px;opacity:.5}[data-scrivito-display-mode=editing] img[src*="scrivito/image_placeholder"].scrivito_file_dragover{background-color:hsla(0,0%,80%,.5)!important}[data-scrivito-display-mode=editing] [data-scrivito-field-type=date],[data-scrivito-display-mode=editing] [data-scrivito-field-type=enum],[data-scrivito-display-mode=editing] [data-scrivito-field-type=html],[data-scrivito-display-mode=editing] [data-scrivito-field-type=linklist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=multienum],[data-scrivito-display-mode=editing] [data-scrivito-field-type=reference],[data-scrivito-display-mode=editing] [data-scrivito-field-type=referencelist],[data-scrivito-display-mode=editing] [data-scrivito-field-type=string],[data-scrivito-display-mode=editing] [data-scrivito-field-type=text]{outline:1px solid transparent}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]{position:relative;overflow:visible;margin-bottom:10px;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-widget]:after{clear:both}[data-scrivito-display-mode=editing] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-widget]{margin-bottom:0}[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_active,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget],body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist]{-webkit-box-shadow:0 0 0 2px #439439;box-shadow:0 0 0 2px #439439}[data-scrivito-display-mode=editing] [data-scrivito-private-widget].scrivito_active>.scrivito_editing_marker,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] .scrivito_editing_marker,body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist] .scrivito_editing_marker{background:#439439}body.scrivito_widget_dragging_active[data-scrivito-display-mode=editing] [data-scrivito-private-widget] [data-scrivito-field-type=widgetlist]{min-height:100px}[data-scrivito-private-widget-placement-modification=deleted]{-webkit-box-shadow:0 0 0 2px gray;box-shadow:0 0 0 2px gray}[data-scrivito-private-widget-placement-modification=deleted] *{opacity:.7}[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=deleted] *,[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker .scrivito_icon{opacity:1}[data-scrivito-private-child-list-modification=edited],[data-scrivito-private-widget-modification=edited],[data-scrivito-private-widget-placement-modification=new]{-webkit-box-shadow:0 0 0 2px #4f749d;box-shadow:0 0 0 2px #4f749d}[data-scrivito-private-obj-modification=new],[data-scrivito-private-widget-modification=new]{-webkit-box-shadow:0 0 0 2px #4c8c07;box-shadow:0 0 0 2px #4c8c07}[data-scrivito-private-obj-modification=deleted],[data-scrivito-private-widget-modification=deleted]{-webkit-box-shadow:0 0 0 2px #ff1f01;box-shadow:0 0 0 2px #ff1f01}[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=deleted],[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=edited],[data-scrivito-field-type=widgetlist] [data-scrivito-field-modification=new]{outline:2px dotted transparent;-webkit-transition:outline-color .3s linear;transition:outline-color .3s linear}.scrivito_details_dialog [data-scrivito-field-modification=edited],[data-scrivito-field-modification=edited],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=edited]{outline:2px dotted #4f749d}.scrivito_details_dialog [data-scrivito-field-modification=new],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=new]{outline:2px dotted #4c8c07}.scrivito_details_dialog [data-scrivito-field-modification=deleted],[data-scrivito-field-type=widgetlist]:hover [data-scrivito-field-modification=deleted]{outline:2px dotted #ff1f01}[data-scrivito-field-type=html] .scrivito_insertion,[data-scrivito-field-type=string] .scrivito_insertion,[data-scrivito-field-type=text] .scrivito_insertion{background-color:rgba(76,140,7,.3)}[data-scrivito-field-type=html] .scrivito_deletion,[data-scrivito-field-type=string] .scrivito_deletion,[data-scrivito-field-type=text] .scrivito_deletion{background-color:rgba(255,31,1,.3);text-decoration:line-through}.scrivito_editing_marker{background:#439439;background:rgba(67,148,57,.5)}.scrivito_editing_marker:active,.scrivito_editing_marker:hover,[data-scrivito-display-mode=editing] .scrivito_active[data-scrivito-private-child-list-path]>.scrivito_editing_marker{background:#439439}[data-scrivito-field-modification=edited] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=edited][data-scrivito-private-widget-placement-modification=new] .scrivito_editing_marker{background:#4f749d}[data-scrivito-field-modification=new] .scrivito_editing_marker,[data-scrivito-private-widget-modification=new] .scrivito_editing_marker,[data-scrivito-private-widget-modification=new] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=new][data-scrivito-private-widget-placement-modification=new] .scrivito_editing_marker{background:#4c8c07}[data-scrivito-field-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=deleted] .scrivito_editing_marker,[data-scrivito-private-widget-modification=deleted] .scrivito_editing_marker .scrivito_editing_marker_title,[data-scrivito-private-widget-modification=deleted][data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker{background:#ff1f01}:not([data-scrivito-private-widget-modification])[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker,:not([data-scrivito-private-widget-modification])[data-scrivito-private-widget-placement-modification=deleted] .scrivito_editing_marker .scrivito_editing_marker_title{background:gray}.scrivito_hidden,[data-scrivito-private-page-config]{display:none}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path]{position:relative;overflow:visible;min-height:25px;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker{background:rgba(31,146,210,.5);position:absolute;top:0;right:0}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path] .scrivito_editing_marker .scrivito_editing_marker_title{background:rgba(31,146,210,0);-webkit-transition:all .3s linear;transition:all .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active{-webkit-box-shadow:0 0 0 2px #1f92d2;box-shadow:0 0 0 2px #1f92d2;z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active>.scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-child-list-path].scrivito_active>.scrivito_editing_marker .scrivito_editing_marker_title{background:#1f92d2}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]{-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:after,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:before{content:" ";display:table}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]:after{clear:both}[data-scrivito-private-structure-widget]{position:relative;overflow:visible;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=added] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=deleted] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=diff] [data-scrivito-private-structure-widget],[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]{padding-top:20px}[data-scrivito-display-mode=added] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=deleted] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=diff] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget],[data-scrivito-display-mode=editing] [data-scrivito-private-field-widget-disable-margins]>[data-scrivito-private-structure-widget]{padding-top:0}[data-scrivito-private-structure-widget]>.scrivito_editing_marker{position:absolute;top:0}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]>.scrivito_editing_marker{background:rgba(255,159,0,.5)}[data-scrivito-private-structure-widget].scrivito_active{z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget].scrivito_active{-webkit-box-shadow:0 0 0 2px #ff9f00;box-shadow:0 0 0 2px #ff9f00}[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget].scrivito_active>.scrivito_editing_marker,[data-scrivito-display-mode=editing] [data-scrivito-private-structure-widget]>.scrivito_editing_marker .scrivito_editing_marker_title{background:#ff9f00}[data-scrivito-display-mode=editing] [data-scrivito-content-widget]{position:relative;overflow:visible;-webkit-box-shadow:0 0 0 2px transparent;box-shadow:0 0 0 2px transparent;-webkit-transition:box-shadow .3s linear;transition:box-shadow .3s linear}[data-scrivito-display-mode=editing] [data-scrivito-content-widget] .scrivito_editing_marker{background:rgba(67,148,57,.5);position:absolute;top:0;right:0}[data-scrivito-display-mode=editing] [data-scrivito-content-widget].scrivito_active{-webkit-box-shadow:0 0 0 2px #439439;box-shadow:0 0 0 2px #439439;z-index:2}[data-scrivito-display-mode=editing] [data-scrivito-content-widget].scrivito_active>.scrivito_editing_marker{background:#439439}.scrivito_details_dialog iframe{border:0;width:100%}.scrivito_dialog{background:transparent;padding:15px;margin:0;overflow-x:hidden}.scrivito_dialog img{max-width:100%}.scrivito_dialog code{word-wrap:break-word}.scrivito_dialog .scrivito_content_group{background:#f3f3f3;padding:10px;margin:0 0 15px;border-radius:4px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.25);box-shadow:0 0 3px rgba(0,0,0,.25)}.scrivito_dialog .scrivito_content_group h1,.scrivito_dialog .scrivito_content_group h2,.scrivito_dialog .scrivito_content_group h3,.scrivito_dialog .scrivito_content_group h4,.scrivito_dialog .scrivito_content_group h5,.scrivito_dialog .scrivito_content_group h6{margin:0 0 8px;color:#666;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_dialog .scrivito_content_group img{max-width:100%;margin:0}.scrivito_dialog [data-scrivito-field-type=date],.scrivito_dialog [data-scrivito-field-type=enum],.scrivito_dialog [data-scrivito-field-type=reference]{color:#555;display:block;font-size:14px;min-height:31px;margin:0;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_dialog [data-scrivito-field-type=multienum]{color:#555;display:block;font-size:14px;height:auto;margin:0;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}[data-scrivito-field-type=referencelist] ul li{background:#fff;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_permalink_editor{position:relative}.scrivito_permalink_editor input{background:#fff;border:1px solid #ddd;border-radius:5px;color:#555;display:block;font-size:14px;min-height:32px;margin:0;padding:4px 150px 4px 12px;width:100%;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.scrivito_permalink_editor input:disabled{background:#ddd;cursor:not-allowed}.scrivito_permalink_editor .scrivito_editing_button{position:absolute;top:0;right:0;color:#555;cursor:pointer;border:0;display:inline-block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:14px;margin:0 10px 0 0;min-height:14px;min-width:30px;padding:8px 15px;text-align:center;vertical-align:middle;background:#fcfcfc;border-radius:5px;user-select:none;min-width:120px;padding:9px 15px;margin:0;text-decoration:none;background:#658b51;color:#fff;border-top-left-radius:0;border-bottom-left-radius:0}.scrivito_permalink_editor .scrivito_editing_button:hover{background:#7ea46a}.scrivito_permalink_editor .scrivito_editing_button:active{background:#52783e}.scrivito_permalink_editor .scrivito_clear{position:absolute;top:5px;right:125px;line-height:24px;display:block;cursor:pointer;padding:0 5px;text-align:center}.scrivito_permalink_editor .scrivito_clear:before{font-family:scrivito_iconsregular;float:left;display:block;padding:0;color:#888;content:"\F03E";font-size:18px}.scrivito_permalink_editor input.scrivito_error{color:#aa4040;background-color:rgba(170,64,64,.2);background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px}.scrivito_permalink_editor a.scrivito_disabled{cursor:not-allowed;background:#bbb}.scrivito_permalink_editor a.scrivito_disabled:hover{background:#bbb}.scrivito_permalink_editor a.scrivito_disabled.scrivito_saving,.scrivito_permalink_editor a.scrivito_disabled.scrivito_saving:hover{cursor:pointer;background:#7ea46a}.scrivito_permalink_editor div.scrivito_error{color:#aa4040;font-weight:700;padding:3px 10px;display:none}.scrivito_permalink_editor div.scrivito_error:before{font-family:scrivito_iconsregular;float:left;display:block;padding:0 7px 0 0;color:#aa4040;content:"\F021";font-weight:400}.scrivito_full_screen_panel{position:fixed;top:0;left:0;width:100%;height:100%;overflow:auto;z-index:111222111}[data-scrivito-display-mode=editing] [data-scrivito-field-type=date],[data-scrivito-display-mode=editing] [data-scrivito-field-type=reference]{cursor:pointer}[data-scrivito-field-name=_permalink].scrivito_permalink_error{background:#fff;border:1px solid #ddd;border-radius:5px;color:#aa4040;display:block;font-size:14px;min-height:31px;margin:0;padding:6px 12px;width:100%;background-color:rgba(170,64,64,.2);background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.7) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.7) 0,hsla(0,0%,100%,.7) 75%,transparent 0,transparent);background-size:40px 40px}[data-scrivito-field-name=_permalink].scrivito_permalink_error:after{font-family:scrivito_iconsregular;float:right;display:block;padding:0 10px 0 0;color:#aa4040;content:"\F021"}.scrivito_enum_editor{list-style-type:none;margin:0;padding:2px}.scrivito_enum_editor:after,.scrivito_enum_editor:before{content:" ";display:table}.scrivito_enum_editor:after{clear:both}.scrivito_enum_editor li{position:relative;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border-radius:3px;box-shadow:0 0 4px 1px rgba(0,0,0,.1);margin:3px 4px 3px 0;padding:6px 10px 5px 25px;display:block;float:left;background:#fafafa;color:#555;font-size:13px;font-weight:400;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.scrivito_enum_editor li:hover{background:#fff;cursor:pointer}.scrivito_enum_editor li.scrivito_enum_active{background:#658b51;color:#fff}.scrivito_enum_editor li.scrivito_enum_active:hover{background:#719b5a}.scrivito_enum_editor li:before{font-family:scrivito_iconsregular;font-weight:400;display:block;color:#555;font-size:14px;position:absolute;top:5px;left:5px;content:"\F136"}.scrivito_enum_editor li.scrivito_enum_active:before{content:"\F137";color:#fff}.scrivito_enum_editor.scrivito_multi li:before{content:"\F123"}.scrivito_enum_editor.scrivito_multi li.scrivito_enum_active:before{content:"\F124";color:#fff}[data-scrivito-field-type=float] input.scrivito_number_editor,[data-scrivito-field-type=integer] input.scrivito_number_editor{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:5px;color:#555;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;margin:0;min-height:32px;padding:4px 12px;width:50%;max-width:300px}[data-scrivito-field-type=float] input.scrivito_number_editor:invalid,[data-scrivito-field-type=integer] input.scrivito_number_editor:invalid,[data-scrivito-field-type] input.scrivito_number_editor[data-scrivito-editors-number-invalid=true]{border:2px solid #ce4848;background:#f4d5d5}.scrivito_backlinks_list{background:#ddd;min-height:30px}.scrivito_backlinks_list ul{list-style:none;padding:5px 10px}.scrivito_backlinks_list ul li .scrivito_icon{color:#aaa;font-size:15px;margin-right:7px}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scrivito_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Infopark AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-13 00:00:00.000000000 Z
11
+ date: 2018-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -439,7 +439,7 @@ files:
439
439
  - lib/scrivito_sdk.rb
440
440
  - lib/tasks/cache.rake
441
441
  - lib/tasks/migration.rake
442
- homepage: https://scrivito.com
442
+ homepage: https://www.scrivito.com/rails/documentation
443
443
  licenses:
444
444
  - LGPL-3.0
445
445
  metadata: {}
@@ -454,12 +454,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
454
454
  version: 2.1.0
455
455
  required_rubygems_version: !ruby/object:Gem::Requirement
456
456
  requirements:
457
- - - ">="
457
+ - - ">"
458
458
  - !ruby/object:Gem::Version
459
- version: '0'
459
+ version: 1.3.1
460
460
  requirements: []
461
461
  rubyforge_project:
462
- rubygems_version: 2.7.6
462
+ rubygems_version: 2.7.7
463
463
  signing_key:
464
464
  specification_version: 4
465
465
  summary: SDK for the Scrivito CMS